135 lines · plain
1# SPDX-License-Identifier: GPL-2.0-only2#3# Arcnet configuration4#5 6menuconfig ARCNET7 depends on NETDEVICES && (ISA || PCI || PCMCIA) && HAS_IOPORT8 tristate "ARCnet support"9 help10 If you have a network card of this type, say Y and check out the11 (arguably) beautiful poetry in12 <file:Documentation/networking/arcnet.rst>.13 14 You need both this driver, and the driver for the particular ARCnet15 chipset of your card. If you don't know, then it's probably a16 COM90xx type card, so say Y (or M) to "ARCnet COM90xx chipset17 support" below.18 19 To compile this driver as a module, choose M here. The module will20 be called arcnet.21 22if ARCNET23 24config ARCNET_120125 tristate "Enable standard ARCNet packet format (RFC 1201)"26 help27 This allows you to use RFC1201 with your ARCnet card via the virtual28 arc0 device. You need to say Y here to communicate with29 industry-standard RFC1201 implementations, like the arcether.com30 packet driver or most DOS/Windows ODI drivers. Please read the31 ARCnet documentation in <file:Documentation/networking/arcnet.rst>32 for more information about using arc0.33 34config ARCNET_105135 tristate "Enable old ARCNet packet format (RFC 1051)"36 help37 This allows you to use RFC1051 with your ARCnet card via the virtual38 arc0s device. You only need arc0s if you want to talk to ARCnet39 software complying with the "old" standard, specifically, the DOS40 arcnet.com packet driver, Amigas running AmiTCP, and some variants41 of NetBSD. You do not need to say Y here to communicate with42 industry-standard RFC1201 implementations, like the arcether.com43 packet driver or most DOS/Windows ODI drivers. RFC1201 is included44 automatically as the arc0 device. Please read the ARCnet45 documentation in <file:Documentation/networking/arcnet.rst> for more46 information about using arc0e and arc0s.47 48config ARCNET_RAW49 tristate "Enable raw mode packet interface"50 help51 ARCnet "raw mode" packet encapsulation, no soft headers. Unlikely52 to work unless talking to a copy of the same Linux arcnet driver,53 but perhaps marginally faster in that case.54 55config ARCNET_CAP56 tristate "Enable CAP mode packet interface"57 help58 ARCnet "cap mode" packet encapsulation. Used to get the hardware59 acknowledge back to userspace. After the initial protocol byte every60 packet is stuffed with an extra 4 byte "cookie" which doesn't61 actually appear on the network. After transmit the driver will send62 back a packet with protocol byte 0 containing the status of the63 transmission:64 0=no hardware acknowledge65 1=excessive nak66 2=transmission accepted by the receiver hardware67 68 Received packets are also stuffed with the extra 4 bytes but it will69 be random data.70 71 Cap only listens to protocol 1-8.72 73config ARCNET_COM90xx74 tristate "ARCnet COM90xx (normal) chipset driver"75 help76 This is the chipset driver for the standard COM90xx cards. If you77 have always used the old ARCnet driver without knowing what type of78 card you had, this is probably the one for you.79 80 To compile this driver as a module, choose M here. The module will81 be called com90xx.82 83config ARCNET_COM90xxIO84 tristate "ARCnet COM90xx (IO mapped) chipset driver"85 help86 This is the chipset driver for the COM90xx cards, using them in87 IO-mapped mode instead of memory-mapped mode. This is slower than88 the normal driver. Only use it if your card doesn't support shared89 memory.90 91 To compile this driver as a module, choose M here. The module will92 be called com90io.93 94config ARCNET_RIM_I95 tristate "ARCnet COM90xx (RIM I) chipset driver"96 help97 This is yet another chipset driver for the COM90xx cards, but this98 time only using memory-mapped mode, and no IO ports at all. This99 driver is completely untested, so if you have one of these cards,100 please mail <dwmw2@infradead.org>, especially if it works!101 102 To compile this driver as a module, choose M here. The module will103 be called arc-rimi.104 105config ARCNET_COM20020106 tristate "ARCnet COM20020 chipset driver"107 depends on LEDS_CLASS108 help109 This is the driver for the new COM20020 chipset. It supports such110 things as promiscuous mode, so packet sniffing is possible, and111 extra diagnostic information.112 113 To compile this driver as a module, choose M here. The module will114 be called com20020.115 116config ARCNET_COM20020_ISA117 tristate "Support for COM20020 on ISA"118 depends on ARCNET_COM20020 && ISA119 120config ARCNET_COM20020_PCI121 tristate "Support for COM20020 on PCI"122 depends on ARCNET_COM20020 && PCI123 124config ARCNET_COM20020_CS125 tristate "COM20020 ARCnet PCMCIA support"126 depends on ARCNET_COM20020 && PCMCIA127 help128 Say Y here if you intend to attach this type of ARCnet PCMCIA card129 to your computer.130 131 To compile this driver as a module, choose M here: the module will be132 called com20020_cs. If unsure, say N.133 134endif # ARCNET135