Loading...
1# SPDX-License-Identifier: GPL-2.0-only
2#
3# AMD network device configuration
4#
5
6config NET_VENDOR_AMD
7 bool "AMD devices"
8 default y
9 depends on DIO || MACH_DECSTATION || MVME147 || ATARI || SUN3 || \
10 SUN3X || SBUS || PCI || ZORRO || (ISA && ISA_DMA_API) || \
11 ISA || EISA || PCMCIA || ARM64
12 help
13 If you have a network (Ethernet) chipset belonging to this class,
14 say Y.
15
16 Note that the answer to this question does not directly affect
17 the kernel: saying N will just cause the configurator to skip all
18 the questions regarding AMD chipsets. If you say Y, you will be asked
19 for your specific chipset/driver in the following questions.
20
21if NET_VENDOR_AMD
22
23config A2065
24 tristate "A2065 support"
25 depends on ZORRO
26 select CRC32
27 help
28 If you have a Commodore A2065 Ethernet adapter, say Y. Otherwise,
29 say N.
30
31 To compile this driver as a module, choose M here: the module
32 will be called a2065.
33
34config AMD8111_ETH
35 tristate "AMD 8111 (new PCI LANCE) support"
36 depends on PCI
37 select CRC32
38 select MII
39 help
40 If you have an AMD 8111-based PCI LANCE ethernet card,
41 answer Y here.
42
43 To compile this driver as a module, choose M here. The module
44 will be called amd8111e.
45
46config LANCE
47 tristate "AMD LANCE and PCnet (AT1500 and NE2100) support"
48 depends on ISA && ISA_DMA_API && !ARM && !PPC32
49 select NETDEV_LEGACY_INIT
50 help
51 If you have a network (Ethernet) card of this type, say Y here.
52 Some LinkSys cards are of this type.
53
54 To compile this driver as a module, choose M here: the module
55 will be called lance. This is recommended.
56
57config PCNET32
58 tristate "AMD PCnet32 PCI support"
59 depends on PCI
60 select CRC32
61 select MII
62 help
63 If you have a PCnet32 or PCnetPCI based network (Ethernet) card,
64 answer Y here.
65
66 To compile this driver as a module, choose M here. The module
67 will be called pcnet32.
68
69config ARIADNE
70 tristate "Ariadne support"
71 depends on ZORRO
72 help
73 If you have a Village Tronic Ariadne Ethernet adapter, say Y.
74 Otherwise, say N.
75
76 To compile this driver as a module, choose M here: the module
77 will be called ariadne.
78
79config ATARILANCE
80 tristate "Atari LANCE support"
81 depends on ATARI
82 help
83 Say Y to include support for several Atari Ethernet adapters based
84 on the AMD LANCE chipset: RieblCard (with or without battery), or
85 PAMCard VME (also the version by Rhotron, with different addresses).
86
87config DECLANCE
88 tristate "DEC LANCE ethernet controller support"
89 depends on MACH_DECSTATION
90 select CRC32
91 help
92 This driver is for the series of Ethernet controllers produced by
93 DEC (now Compaq) based on the AMD LANCE chipset, including the
94 DEPCA series. (This chipset is better known via the NE2100 cards.)
95
96config HPLANCE
97 tristate "HP on-board LANCE support"
98 depends on DIO
99 select CRC32
100 help
101 If you want to use the builtin "LANCE" Ethernet controller on an
102 HP300 machine, say Y here.
103
104config MIPS_AU1X00_ENET
105 tristate "MIPS AU1000 Ethernet support"
106 depends on MIPS_ALCHEMY
107 select PHYLIB
108 select CRC32
109 help
110 If you have an Alchemy Semi AU1X00 based system
111 say Y. Otherwise, say N.
112
113config MVME147_NET
114 tristate "MVME147 (LANCE) Ethernet support"
115 depends on MVME147
116 select CRC32
117 help
118 Support for the on-board Ethernet interface on the Motorola MVME147
119 single-board computer. Say Y here to include the
120 driver for this chip in your kernel.
121 To compile this driver as a module, choose M here.
122
123config PCMCIA_NMCLAN
124 tristate "New Media PCMCIA support"
125 depends on PCMCIA
126 help
127 Say Y here if you intend to attach a New Media Ethernet or LiveWire
128 PCMCIA (PC-card) Ethernet card to your computer.
129
130 To compile this driver as a module, choose M here: the module will be
131 called nmclan_cs. If unsure, say N.
132
133config SUN3LANCE
134 tristate "Sun3/Sun3x on-board LANCE support"
135 depends on (SUN3 || SUN3X)
136 help
137 Most Sun3 and Sun3x motherboards (including the 3/50, 3/60 and 3/80)
138 featured an AMD LANCE 10Mbit Ethernet controller on board; say Y
139 here to compile in the Linux driver for this and enable Ethernet.
140 General Linux information on the Sun 3 and 3x series (now
141 discontinued) is at
142 <http://www.angelfire.com/ca2/tech68k/sun3.html>.
143
144 If you're not building a kernel for a Sun 3, say N.
145
146config SUNLANCE
147 tristate "Sun LANCE support"
148 depends on SBUS
149 select CRC32
150 help
151 This driver supports the "le" interface present on all 32-bit Sparc
152 systems, on some older Ultra systems and as an Sbus option. These
153 cards are based on the AMD LANCE chipset, which is better known
154 via the NE2100 cards.
155
156 To compile this driver as a module, choose M here: the module
157 will be called sunlance.
158
159config AMD_XGBE
160 tristate "AMD 10GbE Ethernet driver"
161 depends on (OF_ADDRESS || ACPI || PCI) && HAS_IOMEM
162 depends on X86 || ARM64 || COMPILE_TEST
163 depends on PTP_1588_CLOCK_OPTIONAL
164 select BITREVERSE
165 select CRC32
166 select PHYLIB
167 select AMD_XGBE_HAVE_ECC if X86
168 help
169 This driver supports the AMD 10GbE Ethernet device found on an
170 AMD SoC.
171
172 To compile this driver as a module, choose M here: the module
173 will be called amd-xgbe.
174
175config AMD_XGBE_DCB
176 bool "Data Center Bridging (DCB) support"
177 default n
178 depends on AMD_XGBE && DCB
179 help
180 Say Y here to enable Data Center Bridging (DCB) support in the
181 driver.
182
183 If unsure, say N.
184
185config AMD_XGBE_HAVE_ECC
186 bool
187 default n
188
189config PDS_CORE
190 tristate "AMD/Pensando Data Systems Core Device Support"
191 depends on 64BIT && PCI
192 select AUXILIARY_BUS
193 select NET_DEVLINK
194 help
195 This enables the support for the AMD/Pensando Core device family of
196 adapters. More specific information on this driver can be
197 found in
198 <file:Documentation/networking/device_drivers/ethernet/amd/pds_core.rst>.
199
200 To compile this driver as a module, choose M here. The module
201 will be called pds_core.
202
203endif # NET_VENDOR_AMD
1#
2# AMD network device configuration
3#
4
5config NET_VENDOR_AMD
6 bool "AMD devices"
7 default y
8 depends on DIO || MACH_DECSTATION || MVME147 || ATARI || SUN3 || \
9 SUN3X || SBUS || PCI || ZORRO || (ISA && ISA_DMA_API) || \
10 (ARM && ARCH_EBSA110) || ISA || EISA || MCA || PCMCIA
11 ---help---
12 If you have a network (Ethernet) chipset belonging to this class,
13 say Y.
14
15 Note that the answer to this question does not directly affect
16 the kernel: saying N will just case the configurator to skip all
17 the questions regarding AMD chipsets. If you say Y, you will be asked
18 for your specific chipset/driver in the following questions.
19
20if NET_VENDOR_AMD
21
22config A2065
23 tristate "A2065 support"
24 depends on ZORRO
25 select CRC32
26 ---help---
27 If you have a Commodore A2065 Ethernet adapter, say Y. Otherwise,
28 say N.
29
30 To compile this driver as a module, choose M here: the module
31 will be called a2065.
32
33config AMD8111_ETH
34 tristate "AMD 8111 (new PCI LANCE) support"
35 depends on PCI
36 select CRC32
37 select NET_CORE
38 select MII
39 ---help---
40 If you have an AMD 8111-based PCI LANCE ethernet card,
41 answer Y here and read the Ethernet-HOWTO, available from
42 <http://www.tldp.org/docs.html#howto>.
43
44 To compile this driver as a module, choose M here. The module
45 will be called amd8111e.
46
47config LANCE
48 tristate "AMD LANCE and PCnet (AT1500 and NE2100) support"
49 depends on ISA && ISA_DMA_API
50 ---help---
51 If you have a network (Ethernet) card of this type, say Y and read
52 the Ethernet-HOWTO, available from
53 <http://www.tldp.org/docs.html#howto>. Some LinkSys cards are
54 of this type.
55
56 To compile this driver as a module, choose M here: the module
57 will be called lance. This is recommended.
58
59config PCNET32
60 tristate "AMD PCnet32 PCI support"
61 depends on PCI
62 select CRC32
63 select NET_CORE
64 select MII
65 ---help---
66 If you have a PCnet32 or PCnetPCI based network (Ethernet) card,
67 answer Y here and read the Ethernet-HOWTO, available from
68 <http://www.tldp.org/docs.html#howto>.
69
70 To compile this driver as a module, choose M here. The module
71 will be called pcnet32.
72
73config ARIADNE
74 tristate "Ariadne support"
75 depends on ZORRO
76 ---help---
77 If you have a Village Tronic Ariadne Ethernet adapter, say Y.
78 Otherwise, say N.
79
80 To compile this driver as a module, choose M here: the module
81 will be called ariadne.
82
83config ARM_AM79C961A
84 bool "ARM EBSA110 AM79C961A support"
85 depends on ARM && ARCH_EBSA110
86 select CRC32
87 ---help---
88 If you wish to compile a kernel for the EBSA-110, then you should
89 always answer Y to this.
90
91config ATARILANCE
92 tristate "Atari LANCE support"
93 depends on ATARI
94 ---help---
95 Say Y to include support for several Atari Ethernet adapters based
96 on the AMD LANCE chipset: RieblCard (with or without battery), or
97 PAMCard VME (also the version by Rhotron, with different addresses).
98
99config DECLANCE
100 tristate "DEC LANCE ethernet controller support"
101 depends on MACH_DECSTATION
102 select CRC32
103 ---help---
104 This driver is for the series of Ethernet controllers produced by
105 DEC (now Compaq) based on the AMD LANCE chipset, including the
106 DEPCA series. (This chipset is better known via the NE2100 cards.)
107
108config DEPCA
109 tristate "DEPCA, DE10x, DE200, DE201, DE202, DE422 support"
110 depends on (ISA || EISA || MCA)
111 select CRC32
112 ---help---
113 If you have a network (Ethernet) card of this type, say Y and read
114 the Ethernet-HOWTO, available from
115 <http://www.tldp.org/docs.html#howto> as well as
116 <file:drivers/net/ethernet/amd/depca.c>.
117
118 To compile this driver as a module, choose M here. The module
119 will be called depca.
120
121config HPLANCE
122 bool "HP on-board LANCE support"
123 depends on DIO
124 select CRC32
125 ---help---
126 If you want to use the builtin "LANCE" Ethernet controller on an
127 HP300 machine, say Y here.
128
129config MIPS_AU1X00_ENET
130 tristate "MIPS AU1000 Ethernet support"
131 depends on MIPS_ALCHEMY
132 select PHYLIB
133 select CRC32
134 ---help---
135 If you have an Alchemy Semi AU1X00 based system
136 say Y. Otherwise, say N.
137
138config MVME147_NET
139 tristate "MVME147 (LANCE) Ethernet support"
140 depends on MVME147
141 select CRC32
142 ---help---
143 Support for the on-board Ethernet interface on the Motorola MVME147
144 single-board computer. Say Y here to include the
145 driver for this chip in your kernel.
146 To compile this driver as a module, choose M here.
147
148config PCMCIA_NMCLAN
149 tristate "New Media PCMCIA support"
150 depends on PCMCIA
151 help
152 Say Y here if you intend to attach a New Media Ethernet or LiveWire
153 PCMCIA (PC-card) Ethernet card to your computer.
154
155 To compile this driver as a module, choose M here: the module will be
156 called nmclan_cs. If unsure, say N.
157
158config NI65
159 tristate "NI6510 support"
160 depends on ISA && ISA_DMA_API
161 ---help---
162 If you have a network (Ethernet) card of this type, say Y and read
163 the Ethernet-HOWTO, available from
164 <http://www.tldp.org/docs.html#howto>.
165
166 To compile this driver as a module, choose M here. The module
167 will be called ni65.
168
169config SUN3LANCE
170 tristate "Sun3/Sun3x on-board LANCE support"
171 depends on (SUN3 || SUN3X)
172 ---help---
173 Most Sun3 and Sun3x motherboards (including the 3/50, 3/60 and 3/80)
174 featured an AMD LANCE 10Mbit Ethernet controller on board; say Y
175 here to compile in the Linux driver for this and enable Ethernet.
176 General Linux information on the Sun 3 and 3x series (now
177 discontinued) is at
178 <http://www.angelfire.com/ca2/tech68k/sun3.html>.
179
180 If you're not building a kernel for a Sun 3, say N.
181
182config SUNLANCE
183 tristate "Sun LANCE support"
184 depends on SBUS
185 select CRC32
186 ---help---
187 This driver supports the "le" interface present on all 32-bit Sparc
188 systems, on some older Ultra systems and as an Sbus option. These
189 cards are based on the AMD LANCE chipset, which is better known
190 via the NE2100 cards.
191
192 To compile this driver as a module, choose M here: the module
193 will be called sunlance.
194
195endif # NET_VENDOR_AMD