Kconfig 5.3 KB

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