Difference between revisions of "Device drivers"

From eLinux.org
Jump to: navigation, search
(elixir.bootlin.com)
(Sample drivers)
 
(2 intermediate revisions by the same user not shown)
Line 5: Line 5:
 
== Sample drivers ==
 
== Sample drivers ==
 
* [https://github.com/makelinux/ldt/ 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.
 
* [https://github.com/makelinux/ldt/ 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.
 +
* [https://github.com/makelinux/ldt/blob/master/pci-ldt.c PCI Linux Driver Template]
 
* [https://github.com/martinezjavier/ldd3/ LDD3 - Samples for boot Linux Device Driver, 3rd edition, updated], compiled with kernel 3.2.0
 
* [https://github.com/martinezjavier/ldd3/ LDD3 - Samples for boot Linux Device Driver, 3rd edition, updated], compiled with kernel 3.2.0
 
** [https://github.com/martinezjavier/ldd3/blob/master/pci/pci_skel.c pci_skel.c] - PCI skeleton  
 
** [https://github.com/martinezjavier/ldd3/blob/master/pci/pci_skel.c pci_skel.c] - PCI skeleton  
Line 11: Line 12:
 
** [https://github.com/martinezjavier/ldd3/blob/master/snull/snull.c snull.c] - simple network device
 
** [https://github.com/martinezjavier/ldd3/blob/master/snull/snull.c snull.c] - simple network device
 
* [https://elixir.bootlin.com/linux/latest/source/drivers/media/platform/vivid/ Virtual Video driver, uses V4L2] - works
 
* [https://elixir.bootlin.com/linux/latest/source/drivers/media/platform/vivid/ Virtual Video driver, uses V4L2] - works
* [https://elixir.bootlin.com/linux/latest/source/drivers/media/platform/mem2mem_testdev.c?v=3.18 mem2mem_testdev.c - virtual v4l2-mem2mem example device driver]
+
* [https://elixir.bootlin.com/linux/v3.18/source/drivers/media/platform/mem2mem_testdev.c mem2mem_testdev.c - virtual v4l2-mem2mem example device driver]
 
* [https://elixir.bootlin.com/linux/latest/source/drivers/usb/usb-skeleton.c usb-skeleton.c - USB driver skeleton] (can be compiled with trivial fix)
 
* [https://elixir.bootlin.com/linux/latest/source/drivers/usb/usb-skeleton.c usb-skeleton.c - USB driver skeleton] (can be compiled with trivial fix)
* [https://elixir.bootlin.com/linux/latest/source/drivers/video/fbdev/skeletonfb.c skeletonfb.c - Frame Buffer device skeleton] (can't be compiled)
+
* [https://elixir.bootlin.com/linux/v4.10/source/drivers/pci/hotplug/pcihp_skeleton.c skeletonfb.c - Frame Buffer device skeleton] (can't be compiled)
 
* [https://elixir.bootlin.com/linux/latest/source/drivers/pci/hotplug/pcihp_skeleton.c pcihp_skeleton.c - PCI Hot Plug Controller Skeleton Driver]
 
* [https://elixir.bootlin.com/linux/latest/source/drivers/pci/hotplug/pcihp_skeleton.c pcihp_skeleton.c - PCI Hot Plug Controller Skeleton Driver]
 
* [https://elixir.bootlin.com/linux/latest/source/drivers/net/loopback.c loopback.c - simple net_device implementing ifconfig  lo]
 
* [https://elixir.bootlin.com/linux/latest/source/drivers/net/loopback.c loopback.c - simple net_device implementing ifconfig  lo]

Latest revision as of 05:21, 20 October 2020

Manuals

Sample drivers

Resources

  • Device Tree - information about device tree (increasingly required for new embedded drivers)