Kconfig 4.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137
  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_GENIRQ
  22. tristate "Userspace I/O platform driver with generic IRQ handling"
  23. help
  24. Platform driver for Userspace I/O devices, including generic
  25. interrupt handling code. Shared interrupts are not supported.
  26. This kernel driver requires that the matching userspace driver
  27. handles interrupts in a special way. Userspace is responsible
  28. for acknowledging the hardware device if needed, and re-enabling
  29. interrupts in the interrupt controller using the write() syscall.
  30. If you don't know what to do here, say N.
  31. config UIO_DMEM_GENIRQ
  32. tristate "Userspace platform driver with generic irq and dynamic memory"
  33. depends on HAS_DMA
  34. help
  35. Platform driver for Userspace I/O devices, including generic
  36. interrupt handling code. Shared interrupts are not supported.
  37. Memory regions can be specified with the same platform device
  38. resources as the UIO_PDRV drivers, but dynamic regions can also
  39. be specified.
  40. The number and size of these regions is static,
  41. but the memory allocation is not performed until
  42. the associated device file is opened. The
  43. memory is freed once the uio device is closed.
  44. If you don't know what to do here, say N.
  45. config UIO_AEC
  46. tristate "AEC video timestamp device"
  47. depends on PCI
  48. help
  49. UIO driver for the Adrienne Electronics Corporation PCI time
  50. code device.
  51. This device differs from other UIO devices since it uses I/O
  52. ports instead of memory mapped I/O. In order to make it
  53. possible for UIO to work with this device a utility, uioport,
  54. can be used to read and write the ports:
  55. git clone git://ifup.org/philips/uioport.git
  56. If you compile this as a module, it will be called uio_aec.
  57. config UIO_SERCOS3
  58. tristate "Automata Sercos III PCI card driver"
  59. depends on PCI
  60. help
  61. Userspace I/O interface for the Sercos III PCI card from
  62. Automata GmbH. The userspace part of this driver will be
  63. available for download from the Automata GmbH web site.
  64. Automata GmbH: http://www.automataweb.com
  65. Sercos III interface: http://www.sercos.com
  66. If you compile this as a module, it will be called uio_sercos3.
  67. config UIO_PCI_GENERIC
  68. tristate "Generic driver for PCI 2.3 and PCI Express cards"
  69. depends on PCI
  70. help
  71. Generic driver that you can bind, dynamically, to any
  72. PCI 2.3 compliant and PCI Express card. It is useful,
  73. primarily, for virtualization scenarios.
  74. If you compile this as a module, it will be called uio_pci_generic.
  75. config UIO_NETX
  76. tristate "Hilscher NetX Card driver"
  77. depends on PCI
  78. help
  79. Driver for Hilscher NetX based fieldbus cards (cifX, comX).
  80. This driver requires a userspace component that comes with the card
  81. or is available from Hilscher (http://www.hilscher.com).
  82. To compile this driver as a module, choose M here; the module
  83. will be called uio_netx.
  84. config UIO_PRUSS
  85. tristate "Texas Instruments PRUSS driver"
  86. depends on ARCH_DAVINCI_DA850
  87. select GENERIC_ALLOCATOR
  88. help
  89. PRUSS driver for OMAPL138/DA850/AM18XX devices
  90. PRUSS driver requires user space components, examples and user space
  91. driver is available from below SVN repo - you may use anonymous login
  92. https://gforge.ti.com/gf/project/pru_sw/
  93. More info on API is available at below wiki
  94. http://processors.wiki.ti.com/index.php/PRU_Linux_Application_Loader
  95. To compile this driver as a module, choose M here: the module
  96. will be called uio_pruss.
  97. config UIO_MF624
  98. tristate "Humusoft MF624 DAQ PCI card driver"
  99. depends on PCI
  100. help
  101. Userspace I/O interface for the Humusoft MF624 PCI card.
  102. A sample userspace application using this driver is available
  103. (among other MF624 related information and software components)
  104. for download in a git repository:
  105. git clone git://rtime.felk.cvut.cz/mf6xx.git
  106. If you compile this as a module, it will be called uio_mf624.
  107. endif