Kconfig 3.0 KB

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