Kconfig 2.9 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192
  1. menuconfig UIO
  2. tristate "Userspace I/O drivers"
  3. depends on !S390
  4. default n
  5. help
  6. Enable this to allow the userspace driver core code to be
  7. built. This code allows userspace programs easy access to
  8. kernel interrupts and memory locations, allowing some drivers
  9. to be written in userspace. Note that a small kernel driver
  10. is also required for interrupt handling to work properly.
  11. If you don't know what to do here, say N.
  12. if UIO
  13. config UIO_CIF
  14. tristate "generic Hilscher CIF Card driver"
  15. depends on PCI
  16. default n
  17. help
  18. Driver for Hilscher CIF DeviceNet and Profibus cards. This
  19. driver requires a userspace component that handles all of the
  20. heavy lifting and can be found at:
  21. http://www.osadl.org/projects/downloads/UIO/user/cif-*
  22. To compile this driver as a module, choose M here: the module
  23. will be called uio_cif.
  24. config UIO_PDRV
  25. tristate "Userspace I/O platform driver"
  26. help
  27. Generic platform driver for Userspace I/O devices.
  28. If you don't know what to do here, say N.
  29. config UIO_PDRV_GENIRQ
  30. tristate "Userspace I/O platform driver with generic IRQ handling"
  31. help
  32. Platform driver for Userspace I/O devices, including generic
  33. interrupt handling code. Shared interrupts are not supported.
  34. This kernel driver requires that the matching userspace driver
  35. handles interrupts in a special way. Userspace is responsible
  36. for acknowledging the hardware device if needed, and re-enabling
  37. interrupts in the interrupt controller using the write() syscall.
  38. If you don't know what to do here, say N.
  39. config UIO_SMX
  40. tristate "SMX cryptengine UIO interface"
  41. default n
  42. help
  43. Userspace IO interface to the Cryptography engine found on the
  44. Nias Digital SMX boards. These will be available from Q4 2008
  45. from http://www.niasdigital.com. The userspace part of this
  46. driver will be released under the GPL at the same time as the
  47. hardware and will be able to be downloaded from the same site.
  48. If you compile this as a module, it will be called uio_smx.
  49. config UIO_AEC
  50. tristate "AEC video timestamp device"
  51. depends on PCI
  52. default n
  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. default n
  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. endif