Kconfig 3.2 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091929394959697
  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 that handles all of the
  18. heavy lifting and can be found at:
  19. http://www.osadl.org/projects/downloads/UIO/user/cif-*
  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_SMX
  38. tristate "SMX cryptengine UIO interface"
  39. help
  40. Userspace IO interface to the Cryptography engine found on the
  41. Nias Digital SMX boards. These will be available from Q4 2008
  42. from http://www.niasdigital.com. The userspace part of this
  43. driver will be released under the GPL at the same time as the
  44. hardware and will be able to be downloaded from the same site.
  45. If you compile this as a module, it will be called uio_smx.
  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. 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. default n
  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. endif