Device drivers
External links:
- LDT - Linux Driver Template - sample template of Linux device driver for learning and starting source for a custom driver. Implements UART char device driver for example. Uses following Linux facilities: module, platform driver, file operations (read/write, mmap, ioctl, blocking and nonblocking mode, polling), kfifo, completion, interrupt, tasklet, work, kthread, timer, misc device, proc fs, UART 0x3f8, HW loopback, SW loopback, ftracer. The code is in working condition and runs with test script.
- Samples for boot Linux Device Driver, 3rd edition, updated, compiled with kernel 3.2.0
- USB driver skeleton (can be compiled with trivial fix)
- Frame Buffer device skeleton (can't be compiled)
- PCI Hot Plug Controller Skeleton Driver
- Linux kernel internals reference, wikibook
- Linux Device Drivers, 3rd Edition