vote up 3 vote down star
6

I want to code drivers in C in linux os, though I think its very tough. Can I get some hints as to how to start or books to follow? Drivers can be from my USB port to graphics card!!

I know as to where I can search for books, I would like to know as to what the basic knowledge I should start with. Do I need to have hardware knowledge and which specific books are good for novice like me?

flag

51% accept rate
5  
start with not ending every sentence with "!!". ;-) – Evan Teran Jun 10 at 15:25
@mekasperasky: you should work on your "accept rate", please. – jldupont Oct 29 at 13:11

7 Answers

vote up 1 vote down

you have here a really good example

http://www.linuxjournal.com/article/7353

link|flag
vote up 0 vote down

Just look at the source codes of current drivers. I wrote my usb rndis driver by only reading the comments put above the codes.

Get the kernel source and look at /drivers directory. Usb drivers are in usb directory, however usb drivers about networking are resided in /net/usb.

You can learn lots by reading the comments.

link|flag
vote up 4 vote down

Several texts:

link|flag
vote up 2 vote down

Before you jump into designing drivers you should first get exceptional C skills and probably some Linux Kernel know-how. Desigining drivers is not trivial and might scare you off if you are not used to programming on a low-level.

I might recommend The C programming Language if you are not accustomed to C as it is, in my opinion, the primer on C if you have some programming background.

link|flag
4  
Solid C skills are certainly a good idea, but there's nothing scary about kernel and driver development. The stakes are just higher when you make a mistake. :-) – Steve Madsen Jun 10 at 15:31
vote up 15 vote down

Start with Linux Device Drivers by Rubini and Corbet, published by O'Reilly.

It's also available as a free PDF download.

link|flag
2  
Bar none, the only reference required. – Jamie Jun 10 at 15:45
vote up 6 vote down

"Linux Device Drivers" (the O'Reilley book) by Rubini and Corbet is the definitive book for Linux Device Drivers.

Cool! see the free pdf version in Roddy's answer & kristina's comment!

link|flag
1  
The third edition is also available free online at lwn.net/Kernel/LDD3. – kristina Jun 10 at 14:12
vote up 2 vote down

try amazon !! there is many books there for drivers . some have samples 2 !!

link|flag
3  
Why the downvote? I like how the style matches the question's. – aib Jun 10 at 14:41
1  
Because it's not considered helpful, I think. – Roddy Jun 10 at 14:59

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.