Kconfig 4.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130
  1. menuconfig UIO
  2. tristate "Userspace I/O drivers"
  3. help
  4. Enable this to allow the userspace driver core code to be
  5. built. This code allows userspace programs easy access to
  6. kernel interrupts and memory locations, allowing some drivers
  7. to be written in userspace. Note that a small kernel driver
  8. is also required for interrupt handling to work properly.
  9. If you don't know what to do here, say N.
  10. if UIO
  11. config UIO_CIF
  12. tristate "generic Hilscher CIF Card driver"
  13. depends on PCI
  14. help
  15. Driver for Hilscher CIF DeviceNet and Profibus cards. This
  16. driver requires a userspace component called cif that handles
  17. all of the heavy lifting and can be found at:
  18. <http://www.osadl.org/projects/downloads/UIO/user/>
  19. To compile this driver as a module, choose M here: the module
  20. will be called uio_cif.
  21. config UIO_PDRV
  22. tristate "Userspace I/O platform driver"
  23. help
  24. Generic platform driver for Userspace I/O devices.
  25. If you don't know what to do here, say N.
  26. config UIO_PDRV_GENIRQ
  27. tristate "Userspace I/O platform driver with generic IRQ handling"
  28. help
  29. Platform driver for Userspace I/O devices, including generic
  30. interrupt handling code. Shared interrupts are not supported.
  31. This kernel driver requires that the matching userspace driver
  32. handles interrupts in a special way. Userspace is responsible
  33. for acknowledging the hardware device if needed, and re-enabling
  34. interrupts in the interrupt controller using the write() syscall.
  35. If you don't know what to do here, say N.
  36. config UIO_DMEM_GENIRQ
  37. tristate "Userspace platform driver with generic irq and dynamic memory"
  38. help
  39. Platform driver for Userspace I/O devices, including generic
  40. interrupt handling code. Shared interrupts are not supported.
  41. Memory regions can be specified with the same platform device
  42. resources as the UIO_PDRV drivers, but dynamic regions can also
  43. be specified.
  44. The number and size of these regions is static,
  45. but the memory allocation is not performed until
  46. the associated device file is opened. The
  47. memory is freed once the uio device is closed.
  48. If you don't know what to do here, say N.
  49. config UIO_AEC
  50. tristate "AEC video timestamp device"
  51. depends on PCI
  52. help
  53. UIO driver for the Adrienne Electronics Corporation PCI time
  54. code device.
  55. This device differs from other UIO devices since it uses I/O
  56. ports instead of memory mapped I/O. In order to make it
  57. possible for UIO to work with this device a utility, uioport,
  58. can be used to read and write the ports:
  59. git clone git://ifup.org/philips/uioport.git
  60. If you compile this as a module, it will be called uio_aec.
  61. config UIO_SERCOS3
  62. tristate "Automata Sercos III PCI card driver"
  63. depends on PCI
  64. help
  65. Userspace I/O interface for the Sercos III PCI card from
  66. Automata GmbH. The userspace part of this driver will be
  67. available for download from the Automata GmbH web site.
  68. Automata GmbH: http://www.automataweb.com
  69. Sercos III interface: http://www.sercos.com
  70. If you compile this as a module, it will be called uio_sercos3.
  71. config UIO_PCI_GENERIC
  72. tristate "Generic driver for PCI 2.3 and PCI Express cards"
  73. depends on PCI
  74. help
  75. Generic driver that you can bind, dynamically, to any
  76. PCI 2.3 compliant and PCI Express card. It is useful,
  77. primarily, for virtualization scenarios.
  78. If you compile this as a module, it will be called uio_pci_generic.
  79. config UIO_NETX
  80. tristate "Hilscher NetX Card driver"
  81. depends on PCI
  82. help
  83. Driver for Hilscher NetX based fieldbus cards (cifX, comX).
  84. This driver requires a userspace component that comes with the card
  85. or is available from Hilscher (http://www.hilscher.com).
  86. To compile this driver as a module, choose M here; the module
  87. will be called uio_netx.
  88. config UIO_PRUSS
  89. tristate "Texas Instruments PRUSS driver"
  90. depends on ARCH_DAVINCI_DA850
  91. select GENERIC_ALLOCATOR
  92. help
  93. PRUSS driver for OMAPL138/DA850/AM18XX devices
  94. PRUSS driver requires user space components, examples and user space
  95. driver is available from below SVN repo - you may use anonymous login
  96. https://gforge.ti.com/gf/project/pru_sw/
  97. More info on API is available at below wiki
  98. http://processors.wiki.ti.com/index.php/PRU_Linux_Application_Loader
  99. To compile this driver as a module, choose M here: the module
  100. will be called uio_pruss.
  101. endif