Kconfig 2.6 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980
  1. #
  2. # FDDI network device configuration
  3. #
  4. config FDDI
  5. tristate "FDDI driver support"
  6. depends on PCI || EISA || TC
  7. ---help---
  8. Fiber Distributed Data Interface is a high speed local area network
  9. design; essentially a replacement for high speed Ethernet. FDDI can
  10. run over copper or fiber. If you are connected to such a network and
  11. want a driver for the FDDI card in your computer, say Y here (and
  12. then also Y to the driver for your FDDI card, below). Most people
  13. will say N.
  14. if FDDI
  15. config DEFXX
  16. tristate "Digital DEFTA/DEFEA/DEFPA adapter support"
  17. depends on FDDI && (PCI || EISA || TC)
  18. ---help---
  19. This is support for the DIGITAL series of TURBOchannel (DEFTA),
  20. EISA (DEFEA) and PCI (DEFPA) controllers which can connect you
  21. to a local FDDI network.
  22. To compile this driver as a module, choose M here: the module
  23. will be called defxx. If unsure, say N.
  24. config DEFXX_MMIO
  25. bool
  26. prompt "Use MMIO instead of IOP" if PCI || EISA
  27. depends on DEFXX
  28. default n if EISA
  29. default y
  30. ---help---
  31. This instructs the driver to use EISA or PCI memory-mapped I/O
  32. (MMIO) as appropriate instead of programmed I/O ports (IOP).
  33. Enabling this gives an improvement in processing time in parts
  34. of the driver, but it requires a memory window to be configured
  35. for EISA (DEFEA) adapters that may not always be available.
  36. Conversely some PCIe host bridges do not support IOP, so MMIO
  37. may be required to access PCI (DEFPA) adapters on downstream PCI
  38. buses with some systems. TURBOchannel does not have the concept
  39. of I/O ports, so MMIO is always used for these (DEFTA) adapters.
  40. If unsure, say N.
  41. config SKFP
  42. tristate "SysKonnect FDDI PCI support"
  43. depends on FDDI && PCI
  44. select BITREVERSE
  45. ---help---
  46. Say Y here if you have a SysKonnect FDDI PCI adapter.
  47. The following adapters are supported by this driver:
  48. - SK-5521 (SK-NET FDDI-UP)
  49. - SK-5522 (SK-NET FDDI-UP DAS)
  50. - SK-5541 (SK-NET FDDI-FP)
  51. - SK-5543 (SK-NET FDDI-LP)
  52. - SK-5544 (SK-NET FDDI-LP DAS)
  53. - SK-5821 (SK-NET FDDI-UP64)
  54. - SK-5822 (SK-NET FDDI-UP64 DAS)
  55. - SK-5841 (SK-NET FDDI-FP64)
  56. - SK-5843 (SK-NET FDDI-LP64)
  57. - SK-5844 (SK-NET FDDI-LP64 DAS)
  58. - Netelligent 100 FDDI DAS Fibre SC
  59. - Netelligent 100 FDDI SAS Fibre SC
  60. - Netelligent 100 FDDI DAS UTP
  61. - Netelligent 100 FDDI SAS UTP
  62. - Netelligent 100 FDDI SAS Fibre MIC
  63. Read <file:Documentation/networking/skfp.txt> for information about
  64. the driver.
  65. Questions concerning this driver can be addressed to:
  66. <linux@syskonnect.de>
  67. To compile this driver as a module, choose M here: the module
  68. will be called skfp. This is recommended.
  69. endif # FDDI