1# 2# FDDI network device configuration 3# 4 5config 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 16if FDDI 17 18config DEFZA 19 tristate "DEC FDDIcontroller 700/700-C (DEFZA-xx) support" 20 depends on FDDI && TC 21 help 22 This is support for the DEC FDDIcontroller 700 (DEFZA-AA, fiber) 23 and 700-C (DEFZA-CA, copper) TURBOchannel network cards which 24 can connect you to a local FDDI network. 25 26 To compile this driver as a module, choose M here: the module 27 will be called defza. If unsure, say N. 28 29config DEFXX 30 tristate "Digital DEFTA/DEFEA/DEFPA adapter support" 31 depends on FDDI && (PCI || EISA || TC) 32 ---help--- 33 This is support for the DIGITAL series of TURBOchannel (DEFTA), 34 EISA (DEFEA) and PCI (DEFPA) controllers which can connect you 35 to a local FDDI network. 36 37 To compile this driver as a module, choose M here: the module 38 will be called defxx. If unsure, say N. 39 40config DEFXX_MMIO 41 bool 42 prompt "Use MMIO instead of PIO" if PCI || EISA 43 depends on DEFXX 44 default n if PCI || EISA 45 default y 46 ---help--- 47 This instructs the driver to use EISA or PCI memory-mapped I/O 48 (MMIO) as appropriate instead of programmed I/O ports (PIO). 49 Enabling this gives an improvement in processing time in parts 50 of the driver, but it may cause problems with EISA (DEFEA) 51 adapters. TURBOchannel does not have the concept of I/O ports, 52 so MMIO is always used for these (DEFTA) adapters. 53 54 If unsure, say N. 55 56config SKFP 57 tristate "SysKonnect FDDI PCI support" 58 depends on FDDI && PCI 59 select BITREVERSE 60 ---help--- 61 Say Y here if you have a SysKonnect FDDI PCI adapter. 62 The following adapters are supported by this driver: 63 - SK-5521 (SK-NET FDDI-UP) 64 - SK-5522 (SK-NET FDDI-UP DAS) 65 - SK-5541 (SK-NET FDDI-FP) 66 - SK-5543 (SK-NET FDDI-LP) 67 - SK-5544 (SK-NET FDDI-LP DAS) 68 - SK-5821 (SK-NET FDDI-UP64) 69 - SK-5822 (SK-NET FDDI-UP64 DAS) 70 - SK-5841 (SK-NET FDDI-FP64) 71 - SK-5843 (SK-NET FDDI-LP64) 72 - SK-5844 (SK-NET FDDI-LP64 DAS) 73 - Netelligent 100 FDDI DAS Fibre SC 74 - Netelligent 100 FDDI SAS Fibre SC 75 - Netelligent 100 FDDI DAS UTP 76 - Netelligent 100 FDDI SAS UTP 77 - Netelligent 100 FDDI SAS Fibre MIC 78 79 Read <file:Documentation/networking/skfp.txt> for information about 80 the driver. 81 82 Questions concerning this driver can be addressed to: 83 <linux@syskonnect.de> 84 85 To compile this driver as a module, choose M here: the module 86 will be called skfp. This is recommended. 87 88endif # FDDI 89