Kconfig 4.3 KB

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