Kconfig 3.9 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122
  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_AEC
  38. tristate "AEC video timestamp device"
  39. depends on PCI
  40. help
  41. UIO driver for the Adrienne Electronics Corporation PCI time
  42. code device.
  43. This device differs from other UIO devices since it uses I/O
  44. ports instead of memory mapped I/O. In order to make it
  45. possible for UIO to work with this device a utility, uioport,
  46. can be used to read and write the ports:
  47. git clone git://ifup.org/philips/uioport.git
  48. If you compile this as a module, it will be called uio_aec.
  49. config UIO_SERCOS3
  50. tristate "Automata Sercos III PCI card driver"
  51. depends on PCI
  52. help
  53. Userspace I/O interface for the Sercos III PCI card from
  54. Automata GmbH. The userspace part of this driver will be
  55. available for download from the Automata GmbH web site.
  56. Automata GmbH: http://www.automataweb.com
  57. Sercos III interface: http://www.sercos.com
  58. If you compile this as a module, it will be called uio_sercos3.
  59. config UIO_PCI_GENERIC
  60. tristate "Generic driver for PCI 2.3 and PCI Express cards"
  61. depends on PCI
  62. help
  63. Generic driver that you can bind, dynamically, to any
  64. PCI 2.3 compliant and PCI Express card. It is useful,
  65. primarily, for virtualization scenarios.
  66. If you compile this as a module, it will be called uio_pci_generic.
  67. config UIO_NETX
  68. tristate "Hilscher NetX Card driver"
  69. depends on PCI
  70. help
  71. Driver for Hilscher NetX based fieldbus cards (cifX, comX).
  72. This driver requires a userspace component that comes with the card
  73. or is available from Hilscher (http://www.hilscher.com).
  74. To compile this driver as a module, choose M here; the module
  75. will be called uio_netx.
  76. config UIO_PRUSS
  77. tristate "Texas Instruments PRUSS driver"
  78. depends on ARCH_DAVINCI_DA850
  79. help
  80. PRUSS driver for OMAPL138/DA850/AM18XX devices
  81. PRUSS driver requires user space components, examples and user space
  82. driver is available from below SVN repo - you may use anonymous login
  83. https://gforge.ti.com/gf/project/pru_sw/
  84. More info on API is available at below wiki
  85. http://processors.wiki.ti.com/index.php/PRU_Linux_Application_Loader
  86. To compile this driver as a module, choose M here: the module
  87. will be called uio_pruss.
  88. config UIO_MSM_SHAREDMEM
  89. bool "MSM shared memory driver"
  90. default n
  91. help
  92. Provides the clients with their respective alloted shared memory
  93. addresses which are used as transport buffer.
  94. endif