Kconfig 1.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142
  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 UIO && 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_SMX
  25. tristate "SMX cryptengine UIO interface"
  26. depends on UIO
  27. default n
  28. help
  29. Userspace IO interface to the Cryptography engine found on the
  30. Nias Digital SMX boards. These will be available from Q4 2008
  31. from http://www.niasdigital.com. The userspace part of this
  32. driver will be released under the GPL at the same time as the
  33. hardware and will be able to be downloaded from the same site.
  34. If you compile this as a module, it will be called uio_smx.
  35. endif