xref: /linux/drivers/net/ethernet/3com/Kconfig (revision a7fbf27d77b1c993cbe097f35bb44f98a54a6b09)
1# SPDX-License-Identifier: GPL-2.0-only
2#
3# 3Com Ethernet device configuration
4#
5
6config NET_VENDOR_3COM
7	bool "3Com devices"
8	default y
9	depends on ISA || EISA || PCI || PCMCIA
10	help
11	  If you have a network (Ethernet) card belonging to this class, say Y.
12
13	  Note that the answer to this question doesn't directly affect the
14	  kernel: saying N will just cause the configurator to skip all
15	  the questions about 3Com cards. If you say Y, you will be asked for
16	  your specific card in the following questions.
17
18if NET_VENDOR_3COM
19
20config PCMCIA_3C589
21	tristate "3Com 3c589 PCMCIA support"
22	depends on PCMCIA && HAS_IOPORT
23	help
24	  Say Y here if you intend to attach a 3Com 3c589 or compatible PCMCIA
25	  (PC-card) Ethernet card to your computer.
26
27	  To compile this driver as a module, choose M here: the module will be
28	  called 3c589_cs.  If unsure, say N.
29
30config VORTEX
31	tristate "3c590/3c900 series (592/595/597) \"Vortex/Boomerang\" support"
32	depends on (PCI || EISA) && HAS_IOPORT_MAP
33	select MII
34	help
35	  This option enables driver support for a large number of 10Mbps and
36	  10/100Mbps EISA, PCI and Cardbus 3Com network cards:
37
38	  "Vortex"    (Fast EtherLink 3c590/3c592/3c595/3c597) EISA and PCI
39	  "Boomerang" (EtherLink XL 3c900 or 3c905)            PCI
40	  "Cyclone"   (3c540/3c900/3c905/3c980/3c575/3c656)    PCI and Cardbus
41	  "Tornado"   (3c905)                                  PCI
42	  "Hurricane" (3c555/3cSOHO)                           PCI
43
44	  If you have such a card, say Y here.  More specific information is in
45	  <file:Documentation/networking/device_drivers/ethernet/3com/vortex.rst>
46	  and in the comments at the beginning of
47	  <file:drivers/net/ethernet/3com/3c59x.c>.
48
49	  To compile this support as a module, choose M here.
50
51config TYPHOON
52	tristate "3cr990 series \"Typhoon\" support"
53	depends on PCI
54	select CRC32
55	help
56	  This option enables driver support for the 3cr990 series of cards:
57
58	  3C990-TX, 3CR990-TX-95, 3CR990-TX-97, 3CR990-FX-95, 3CR990-FX-97,
59	  3CR990SVR, 3CR990SVR95, 3CR990SVR97, 3CR990-FX-95 Server,
60	  3CR990-FX-97 Server, 3C990B-TX-M, 3C990BSVR
61
62	  If you have a network (Ethernet) card of this type, say Y here.
63
64	  To compile this driver as a module, choose M here. The module
65	  will be called typhoon.
66
67endif # NET_VENDOR_3COM
68