Kconfig 2.4 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677
  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 PIO" if PCI || EISA
  27. depends on DEFXX
  28. default n if PCI || 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 (PIO).
  33. Enabling this gives an improvement in processing time in parts
  34. of the driver, but it may cause problems with EISA (DEFEA)
  35. adapters. TURBOchannel does not have the concept of I/O ports,
  36. so MMIO is always used for these (DEFTA) adapters.
  37. If unsure, say N.
  38. config SKFP
  39. tristate "SysKonnect FDDI PCI support"
  40. depends on FDDI && PCI
  41. select BITREVERSE
  42. ---help---
  43. Say Y here if you have a SysKonnect FDDI PCI adapter.
  44. The following adapters are supported by this driver:
  45. - SK-5521 (SK-NET FDDI-UP)
  46. - SK-5522 (SK-NET FDDI-UP DAS)
  47. - SK-5541 (SK-NET FDDI-FP)
  48. - SK-5543 (SK-NET FDDI-LP)
  49. - SK-5544 (SK-NET FDDI-LP DAS)
  50. - SK-5821 (SK-NET FDDI-UP64)
  51. - SK-5822 (SK-NET FDDI-UP64 DAS)
  52. - SK-5841 (SK-NET FDDI-FP64)
  53. - SK-5843 (SK-NET FDDI-LP64)
  54. - SK-5844 (SK-NET FDDI-LP64 DAS)
  55. - Netelligent 100 FDDI DAS Fibre SC
  56. - Netelligent 100 FDDI SAS Fibre SC
  57. - Netelligent 100 FDDI DAS UTP
  58. - Netelligent 100 FDDI SAS UTP
  59. - Netelligent 100 FDDI SAS Fibre MIC
  60. Read <file:Documentation/networking/skfp.txt> for information about
  61. the driver.
  62. Questions concerning this driver can be addressed to:
  63. <linux@syskonnect.de>
  64. To compile this driver as a module, choose M here: the module
  65. will be called skfp. This is recommended.
  66. endif # FDDI