blob: d17d64eb7065e251e7b6f09f6060a9671b271e03 [file] [log] [blame]
Linus Torvalds1da177e2005-04-16 15:20:36 -07001
2#
3# Network device configuration
4#
5
Jan Engelhardtd1c0a652007-06-13 12:48:53 -07006menuconfig NETDEVICES
Paolo 'Blaisorblade' Giarrussoce2d2ae2006-01-18 17:42:59 -08007 default y if UML
Linus Torvalds1da177e2005-04-16 15:20:36 -07008 bool "Network device support"
9 ---help---
10 You can say N here if you don't intend to connect your Linux box to
11 any other computer at all.
12
13 You'll have to say Y if your computer contains a network card that
14 you want to use under Linux. If you are going to run SLIP or PPP over
15 telephone line or null modem cable you need say Y here. Connecting
16 two machines with parallel ports using PLIP needs this, as well as
17 AX.25/KISS for sending Internet traffic over amateur radio links.
18
19 See also "The Linux Network Administrator's Guide" by Olaf Kirch and
20 Terry Dawson. Available at <http://www.tldp.org/guides.html>.
21
22 If unsure, say Y.
23
Randy Dunlap1618cb02006-09-25 23:11:21 -070024# All the following symbols are dependent on NETDEVICES - do not repeat
25# that for each of the symbols.
26if NETDEVICES
Randy Dunlapcbcd2a42005-07-27 13:04:35 -070027
Peter P Waskiewicz Jrf25f4e42007-07-06 13:36:20 -070028config NETDEVICES_MULTIQUEUE
29 bool "Netdevice multiple hardware queue support"
30 ---help---
31 Say Y here if you want to allow the network stack to use multiple
32 hardware TX queues on an ethernet device.
33
34 Most people will say N here.
35
Jamal Hadi Salim253af422006-01-08 22:34:25 -080036config IFB
37 tristate "Intermediate Functional Block support"
38 depends on NET_CLS_ACT
39 ---help---
Matt LaPlante3cb2fcc2006-11-30 05:22:59 +010040 This is an intermediate driver that allows sharing of
Jamal Hadi Salim253af422006-01-08 22:34:25 -080041 resources.
42 To compile this driver as a module, choose M here: the module
43 will be called ifb. If you want to use more than one ifb
44 device at a time, you need to compile this driver as a module.
45 Instead of 'ifb', the devices will then be called 'ifb0',
46 'ifb1' etc.
47 Look at the iproute2 documentation directory for usage etc
48
Linus Torvalds1da177e2005-04-16 15:20:36 -070049config DUMMY
50 tristate "Dummy net driver support"
Linus Torvalds1da177e2005-04-16 15:20:36 -070051 ---help---
52 This is essentially a bit-bucket device (i.e. traffic you send to
53 this device is consigned into oblivion) with a configurable IP
54 address. It is most commonly used in order to make your currently
55 inactive SLIP address seem like a real address for local programs.
56 If you use SLIP or PPP, you might want to say Y here. Since this
57 thing often comes in handy, the default is Y. It won't enlarge your
58 kernel either. What a deal. Read about it in the Network
59 Administrator's Guide, available from
60 <http://www.tldp.org/docs.html#guide>.
61
62 To compile this driver as a module, choose M here: the module
63 will be called dummy. If you want to use more than one dummy
64 device at a time, you need to compile this driver as a module.
65 Instead of 'dummy', the devices will then be called 'dummy0',
66 'dummy1' etc.
67
68config BONDING
69 tristate "Bonding driver support"
Linus Torvalds1da177e2005-04-16 15:20:36 -070070 depends on INET
71 ---help---
72 Say 'Y' or 'M' if you wish to be able to 'bond' multiple Ethernet
73 Channels together. This is called 'Etherchannel' by Cisco,
74 'Trunking' by Sun, 802.3ad by the IEEE, and 'Bonding' in Linux.
75
76 The driver supports multiple bonding modes to allow for both high
Jon Mason47c51432006-02-12 11:53:04 -060077 performance and high availability operation.
Linus Torvalds1da177e2005-04-16 15:20:36 -070078
79 Refer to <file:Documentation/networking/bonding.txt> for more
80 information.
81
82 To compile this driver as a module, choose M here: the module
83 will be called bonding.
84
Patrick McHardyb863ceb2007-07-14 18:55:06 -070085config MACVLAN
86 tristate "MAC-VLAN support (EXPERIMENTAL)"
87 depends on EXPERIMENTAL
88 ---help---
89 This allows one to create virtual interfaces that map packets to
90 or from specific MAC addresses to a particular interface.
91
92 To compile this driver as a module, choose M here: the module
93 will be called macvlan.
94
Linus Torvalds1da177e2005-04-16 15:20:36 -070095config EQUALIZER
96 tristate "EQL (serial line load balancing) support"
Linus Torvalds1da177e2005-04-16 15:20:36 -070097 ---help---
98 If you have two serial connections to some other computer (this
99 usually requires two modems and two telephone lines) and you use
100 SLIP (the protocol for sending Internet traffic over telephone
101 lines) or PPP (a better SLIP) on them, you can make them behave like
102 one double speed connection using this driver. Naturally, this has
103 to be supported at the other end as well, either with a similar EQL
104 Linux driver or with a Livingston Portmaster 2e.
105
106 Say Y if you want this and read
107 <file:Documentation/networking/eql.txt>. You may also want to read
108 section 6.2 of the NET-3-HOWTO, available from
109 <http://www.tldp.org/docs.html#howto>.
110
111 To compile this driver as a module, choose M here: the module
112 will be called eql. If unsure, say N.
113
114config TUN
115 tristate "Universal TUN/TAP device driver support"
Linus Torvalds1da177e2005-04-16 15:20:36 -0700116 select CRC32
117 ---help---
118 TUN/TAP provides packet reception and transmission for user space
119 programs. It can be viewed as a simple Point-to-Point or Ethernet
120 device, which instead of receiving packets from a physical media,
121 receives them from user space program and instead of sending packets
122 via physical media writes them to the user space program.
123
124 When a program opens /dev/net/tun, driver creates and registers
125 corresponding net device tunX or tapX. After a program closed above
126 devices, driver will automatically delete tunXX or tapXX device and
127 all routes corresponding to it.
128
129 Please read <file:Documentation/networking/tuntap.txt> for more
130 information.
131
132 To compile this driver as a module, choose M here: the module
133 will be called tun.
134
135 If you don't know what to use this for, you don't need it.
136
137config NET_SB1000
138 tristate "General Instruments Surfboard 1000"
Randy Dunlapcbcd2a42005-07-27 13:04:35 -0700139 depends on PNP
Linus Torvalds1da177e2005-04-16 15:20:36 -0700140 ---help---
141 This is a driver for the General Instrument (also known as
142 NextLevel) SURFboard 1000 internal
143 cable modem. This is an ISA card which is used by a number of cable
144 TV companies to provide cable modem access. It's a one-way
145 downstream-only cable modem, meaning that your upstream net link is
146 provided by your regular phone modem.
147
148 At present this driver only compiles as a module, so say M here if
149 you have this card. The module will be called sb1000. Then read
150 <file:Documentation/networking/README.sb1000> for information on how
151 to use this module, as it needs special ppp scripts for establishing
152 a connection. Further documentation and the necessary scripts can be
153 found at:
154
155 <http://www.jacksonville.net/~fventuri/>
156 <http://home.adelphia.net/~siglercm/sb1000.html>
157 <http://linuxpower.cx/~cable/>
158
159 If you don't have this card, of course say N.
160
Adrian Bunkf65fd8f2006-01-05 22:45:41 -0800161source "drivers/net/arcnet/Kconfig"
Linus Torvalds1da177e2005-04-16 15:20:36 -0700162
Andy Fleming00db8182005-07-30 19:31:23 -0400163source "drivers/net/phy/Kconfig"
164
Linus Torvalds1da177e2005-04-16 15:20:36 -0700165#
166# Ethernet
167#
168
Jan Engelhardtd1c0a652007-06-13 12:48:53 -0700169menuconfig NET_ETHERNET
Linus Torvalds1da177e2005-04-16 15:20:36 -0700170 bool "Ethernet (10 or 100Mbit)"
Jan Engelhardtd1c0a652007-06-13 12:48:53 -0700171 depends on !UML
Linus Torvalds1da177e2005-04-16 15:20:36 -0700172 ---help---
173 Ethernet (also called IEEE 802.3 or ISO 8802-2) is the most common
174 type of Local Area Network (LAN) in universities and companies.
175
176 Common varieties of Ethernet are: 10BASE-2 or Thinnet (10 Mbps over
177 coaxial cable, linking computers in a chain), 10BASE-T or twisted
178 pair (10 Mbps over twisted pair cable, linking computers to central
179 hubs), 10BASE-F (10 Mbps over optical fiber links, using hubs),
180 100BASE-TX (100 Mbps over two twisted pair cables, using hubs),
181 100BASE-T4 (100 Mbps over 4 standard voice-grade twisted pair
182 cables, using hubs), 100BASE-FX (100 Mbps over optical fiber links)
183 [the 100BASE varieties are also known as Fast Ethernet], and Gigabit
184 Ethernet (1 Gbps over optical fiber or short copper links).
185
186 If your Linux machine will be connected to an Ethernet and you have
187 an Ethernet network interface card (NIC) installed in your computer,
188 say Y here and read the Ethernet-HOWTO, available from
189 <http://www.tldp.org/docs.html#howto>. You will then also have
190 to say Y to the driver for your particular NIC.
191
192 Note that the answer to this question won't directly affect the
193 kernel: saying N will just cause the configurator to skip all
194 the questions about Ethernet network cards. If unsure, say N.
195
Jan Engelhardtd1c0a652007-06-13 12:48:53 -0700196if NET_ETHERNET
197
Linus Torvalds1da177e2005-04-16 15:20:36 -0700198config MII
199 tristate "Generic Media Independent Interface device support"
Linus Torvalds1da177e2005-04-16 15:20:36 -0700200 help
201 Most ethernet controllers have MII transceiver either as an external
202 or internal device. It is safe to say Y or M here even if your
203 ethernet card lack MII.
204
Haavard Skinnemoen89e57852006-11-09 14:51:17 +0100205config MACB
206 tristate "Atmel MACB support"
Jan Engelhardtd1c0a652007-06-13 12:48:53 -0700207 depends on AVR32 || ARCH_AT91SAM9260 || ARCH_AT91SAM9263
Haavard Skinnemoen89e57852006-11-09 14:51:17 +0100208 select MII
209 help
210 The Atmel MACB ethernet interface is found on many AT32 and AT91
211 parts. Say Y to include support for the MACB chip.
212
213 To compile this driver as a module, choose M here: the module
214 will be called macb.
215
Linus Torvalds1da177e2005-04-16 15:20:36 -0700216source "drivers/net/arm/Kconfig"
217
Ben Dooks825a2ff2007-07-03 16:53:09 +0100218config AX88796
219 tristate "ASIX AX88796 NE2000 clone support"
Jeff Garzikdef47c52007-07-10 14:06:48 -0400220 depends on ARM || MIPS
Ben Dooks825a2ff2007-07-03 16:53:09 +0100221 select CRC32
222 select MII
223 help
224 AX88796 driver, using platform bus to provide
225 chip detection and resources
226
Linus Torvalds1da177e2005-04-16 15:20:36 -0700227config MACE
228 tristate "MACE (Power Mac ethernet) support"
Jan Engelhardtd1c0a652007-06-13 12:48:53 -0700229 depends on PPC_PMAC && PPC32
Linus Torvalds1da177e2005-04-16 15:20:36 -0700230 select CRC32
231 help
232 Power Macintoshes and clones with Ethernet built-in on the
233 motherboard will usually use a MACE (Medium Access Control for
234 Ethernet) interface. Say Y to include support for the MACE chip.
235
236 To compile this driver as a module, choose M here: the module
237 will be called mace.
238
239config MACE_AAUI_PORT
240 bool "Use AAUI port instead of TP by default"
241 depends on MACE
242 help
243 Some Apple machines (notably the Apple Network Server) which use the
244 MACE ethernet chip have an Apple AUI port (small 15-pin connector),
245 instead of an 8-pin RJ45 connector for twisted-pair ethernet. Say
246 Y here if you have such a machine. If unsure, say N.
247 The driver will default to AAUI on ANS anyway, and if you use it as
248 a module, you can provide the port_aaui=0|1 to force the driver.
249
250config BMAC
251 tristate "BMAC (G3 ethernet) support"
Jan Engelhardtd1c0a652007-06-13 12:48:53 -0700252 depends on PPC_PMAC && PPC32
Linus Torvalds1da177e2005-04-16 15:20:36 -0700253 select CRC32
254 help
255 Say Y for support of BMAC Ethernet interfaces. These are used on G3
256 computers.
257
258 To compile this driver as a module, choose M here: the module
259 will be called bmac.
260
Linus Torvalds1da177e2005-04-16 15:20:36 -0700261config ARIADNE
262 tristate "Ariadne support"
Jan Engelhardtd1c0a652007-06-13 12:48:53 -0700263 depends on ZORRO
Linus Torvalds1da177e2005-04-16 15:20:36 -0700264 help
265 If you have a Village Tronic Ariadne Ethernet adapter, say Y.
266 Otherwise, say N.
267
268 To compile this driver as a module, choose M here: the module
269 will be called ariadne.
270
271config A2065
272 tristate "A2065 support"
Jan Engelhardtd1c0a652007-06-13 12:48:53 -0700273 depends on ZORRO
Linus Torvalds1da177e2005-04-16 15:20:36 -0700274 select CRC32
275 help
276 If you have a Commodore A2065 Ethernet adapter, say Y. Otherwise,
277 say N.
278
279 To compile this driver as a module, choose M here: the module
280 will be called a2065.
281
282config HYDRA
283 tristate "Hydra support"
Jan Engelhardtd1c0a652007-06-13 12:48:53 -0700284 depends on ZORRO
Linus Torvalds1da177e2005-04-16 15:20:36 -0700285 select CRC32
286 help
287 If you have a Hydra Ethernet adapter, say Y. Otherwise, say N.
288
289 To compile this driver as a module, choose M here: the module
290 will be called hydra.
291
292config ZORRO8390
293 tristate "Zorro NS8390-based Ethernet support"
Jan Engelhardtd1c0a652007-06-13 12:48:53 -0700294 depends on ZORRO
Linus Torvalds1da177e2005-04-16 15:20:36 -0700295 select CRC32
296 help
297 This driver is for Zorro Ethernet cards using an NS8390-compatible
298 chipset, like the Village Tronic Ariadne II and the Individual
299 Computers X-Surf Ethernet cards. If you have such a card, say Y.
300 Otherwise, say N.
301
302 To compile this driver as a module, choose M here: the module
303 will be called zorro8390.
304
305config APNE
306 tristate "PCMCIA NE2000 support"
Jan Engelhardtd1c0a652007-06-13 12:48:53 -0700307 depends on AMIGA_PCMCIA
Linus Torvalds1da177e2005-04-16 15:20:36 -0700308 select CRC32
309 help
310 If you have a PCMCIA NE2000 compatible adapter, say Y. Otherwise,
311 say N.
312
313 To compile this driver as a module, choose M here: the module
314 will be called apne.
315
316config APOLLO_ELPLUS
317 tristate "Apollo 3c505 support"
Jan Engelhardtd1c0a652007-06-13 12:48:53 -0700318 depends on APOLLO
Linus Torvalds1da177e2005-04-16 15:20:36 -0700319 help
320 Say Y or M here if your Apollo has a 3Com 3c505 ISA Ethernet card.
321 If you don't have one made for Apollos, you can use one from a PC,
322 except that your Apollo won't be able to boot from it (because the
323 code in the ROM will be for a PC).
324
325config MAC8390
326 bool "Macintosh NS 8390 based ethernet cards"
Jan Engelhardtd1c0a652007-06-13 12:48:53 -0700327 depends on MAC
Linus Torvalds1da177e2005-04-16 15:20:36 -0700328 select CRC32
329 help
330 If you want to include a driver to support Nubus or LC-PDS
331 Ethernet cards using an NS8390 chipset or its equivalent, say Y
332 and read the Ethernet-HOWTO, available from
333 <http://www.tldp.org/docs.html#howto>.
334
335config MAC89x0
336 tristate "Macintosh CS89x0 based ethernet cards"
Jan Engelhardtd1c0a652007-06-13 12:48:53 -0700337 depends on MAC
Linus Torvalds1da177e2005-04-16 15:20:36 -0700338 ---help---
339 Support for CS89x0 chipset based Ethernet cards. If you have a
340 Nubus or LC-PDS network (Ethernet) card of this type, say Y and
341 read the Ethernet-HOWTO, available from
342 <http://www.tldp.org/docs.html#howto>.
343
344 To compile this driver as a module, choose M here and read
345 <file:Documentation/networking/net-modules.txt>. This module will
346 be called mac89x0.
347
348config MACSONIC
349 tristate "Macintosh SONIC based ethernet (onboard, NuBus, LC, CS)"
Jan Engelhardtd1c0a652007-06-13 12:48:53 -0700350 depends on MAC
Linus Torvalds1da177e2005-04-16 15:20:36 -0700351 ---help---
352 Support for NatSemi SONIC based Ethernet devices. This includes
353 the onboard Ethernet in many Quadras as well as some LC-PDS,
354 a few Nubus and all known Comm Slot Ethernet cards. If you have
355 one of these say Y and read the Ethernet-HOWTO, available from
356 <http://www.tldp.org/docs.html#howto>.
357
358 To compile this driver as a module, choose M here and read
359 <file:Documentation/networking/net-modules.txt>. This module will
360 be called macsonic.
361
362config MACMACE
Finn Thain8b6aaab2007-05-01 22:33:01 +0200363 bool "Macintosh (AV) onboard MACE ethernet"
Jan Engelhardtd1c0a652007-06-13 12:48:53 -0700364 depends on MAC
Linus Torvalds1da177e2005-04-16 15:20:36 -0700365 select CRC32
366 help
367 Support for the onboard AMD 79C940 MACE Ethernet controller used in
368 the 660AV and 840AV Macintosh. If you have one of these Macintoshes
369 say Y and read the Ethernet-HOWTO, available from
370 <http://www.tldp.org/docs.html#howto>.
371
372config MVME147_NET
373 tristate "MVME147 (Lance) Ethernet support"
Jan Engelhardtd1c0a652007-06-13 12:48:53 -0700374 depends on MVME147
Linus Torvalds1da177e2005-04-16 15:20:36 -0700375 select CRC32
376 help
377 Support for the on-board Ethernet interface on the Motorola MVME147
378 single-board computer. Say Y here to include the
379 driver for this chip in your kernel.
380 To compile this driver as a module, choose M here.
381
382config MVME16x_NET
383 tristate "MVME16x Ethernet support"
Jan Engelhardtd1c0a652007-06-13 12:48:53 -0700384 depends on MVME16x
Linus Torvalds1da177e2005-04-16 15:20:36 -0700385 help
386 This is the driver for the Ethernet interface on the Motorola
387 MVME162, 166, 167, 172 and 177 boards. Say Y here to include the
388 driver for this chip in your kernel.
389 To compile this driver as a module, choose M here.
390
391config BVME6000_NET
392 tristate "BVME6000 Ethernet support"
Jan Engelhardtd1c0a652007-06-13 12:48:53 -0700393 depends on BVME6000
Linus Torvalds1da177e2005-04-16 15:20:36 -0700394 help
395 This is the driver for the Ethernet interface on BVME4000 and
396 BVME6000 VME boards. Say Y here to include the driver for this chip
397 in your kernel.
398 To compile this driver as a module, choose M here.
399
400config ATARILANCE
401 tristate "Atari Lance support"
Jan Engelhardtd1c0a652007-06-13 12:48:53 -0700402 depends on ATARI
Linus Torvalds1da177e2005-04-16 15:20:36 -0700403 help
404 Say Y to include support for several Atari Ethernet adapters based
405 on the AMD Lance chipset: RieblCard (with or without battery), or
406 PAMCard VME (also the version by Rhotron, with different addresses).
407
408config ATARI_BIONET
409 tristate "BioNet-100 support"
Jan Engelhardtd1c0a652007-06-13 12:48:53 -0700410 depends on ATARI && ATARI_ACSI && BROKEN
Linus Torvalds1da177e2005-04-16 15:20:36 -0700411 help
412 Say Y to include support for BioData's BioNet-100 Ethernet adapter
413 for the ACSI port. The driver works (has to work...) with a polled
414 I/O scheme, so it's rather slow :-(
415
416config ATARI_PAMSNET
417 tristate "PAMsNet support"
Jan Engelhardtd1c0a652007-06-13 12:48:53 -0700418 depends on ATARI && ATARI_ACSI && BROKEN
Linus Torvalds1da177e2005-04-16 15:20:36 -0700419 help
420 Say Y to include support for the PAMsNet Ethernet adapter for the
421 ACSI port ("ACSI node"). The driver works (has to work...) with a
422 polled I/O scheme, so it's rather slow :-(
423
424config SUN3LANCE
425 tristate "Sun3/Sun3x on-board LANCE support"
Jan Engelhardtd1c0a652007-06-13 12:48:53 -0700426 depends on SUN3 || SUN3X
Linus Torvalds1da177e2005-04-16 15:20:36 -0700427 help
428 Most Sun3 and Sun3x motherboards (including the 3/50, 3/60 and 3/80)
429 featured an AMD Lance 10Mbit Ethernet controller on board; say Y
430 here to compile in the Linux driver for this and enable Ethernet.
431 General Linux information on the Sun 3 and 3x series (now
432 discontinued) is at
433 <http://www.angelfire.com/ca2/tech68k/sun3.html>.
434
435 If you're not building a kernel for a Sun 3, say N.
436
437config SUN3_82586
Al Viro9a482202005-08-25 06:24:56 +0100438 bool "Sun3 on-board Intel 82586 support"
Jan Engelhardtd1c0a652007-06-13 12:48:53 -0700439 depends on SUN3
Linus Torvalds1da177e2005-04-16 15:20:36 -0700440 help
441 This driver enables support for the on-board Intel 82586 based
442 Ethernet adapter found on Sun 3/1xx and 3/2xx motherboards. Note
443 that this driver does not support 82586-based adapters on additional
444 VME boards.
445
446config HPLANCE
447 bool "HP on-board LANCE support"
Jan Engelhardtd1c0a652007-06-13 12:48:53 -0700448 depends on DIO
Linus Torvalds1da177e2005-04-16 15:20:36 -0700449 select CRC32
450 help
451 If you want to use the builtin "LANCE" Ethernet controller on an
452 HP300 machine, say Y here.
453
454config LASI_82596
455 tristate "Lasi ethernet"
Jan Engelhardtd1c0a652007-06-13 12:48:53 -0700456 depends on GSC
Linus Torvalds1da177e2005-04-16 15:20:36 -0700457 help
Matthew Wilcox6de187e2006-11-18 10:05:16 -0700458 Say Y here to support the builtin Intel 82596 ethernet controller
459 found in Hewlett-Packard PA-RISC machines with 10Mbit ethernet.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700460
Thomas Bogendoerferf2ec8032007-06-28 00:49:06 +0200461config SNI_82596
462 tristate "SNI RM ethernet"
463 depends on NET_ETHERNET && SNI_RM
464 help
465 Say Y here to support the on-board Intel 82596 ethernet controller
466 built into SNI RM machines.
467
Linus Torvalds1da177e2005-04-16 15:20:36 -0700468config MIPS_JAZZ_SONIC
469 tristate "MIPS JAZZ onboard SONIC Ethernet support"
Jan Engelhardtd1c0a652007-06-13 12:48:53 -0700470 depends on MACH_JAZZ
Linus Torvalds1da177e2005-04-16 15:20:36 -0700471 help
472 This is the driver for the onboard card of MIPS Magnum 4000,
473 Acer PICA, Olivetti M700-10 and a few other identical OEM systems.
474
Linus Torvalds1da177e2005-04-16 15:20:36 -0700475config MIPS_AU1X00_ENET
476 bool "MIPS AU1000 Ethernet support"
Jan Engelhardtd1c0a652007-06-13 12:48:53 -0700477 depends on SOC_AU1X00
Herbert Valerio Riedel0638dec2006-06-01 09:41:04 +0200478 select PHYLIB
Linus Torvalds1da177e2005-04-16 15:20:36 -0700479 select CRC32
480 help
481 If you have an Alchemy Semi AU1X00 based system
482 say Y. Otherwise, say N.
483
484config NET_SB1250_MAC
485 tristate "SB1250 Ethernet support"
Jan Engelhardtd1c0a652007-06-13 12:48:53 -0700486 depends on SIBYTE_SB1xxx_SOC
Linus Torvalds1da177e2005-04-16 15:20:36 -0700487
488config SGI_IOC3_ETH
489 bool "SGI IOC3 Ethernet"
Jan Engelhardtd1c0a652007-06-13 12:48:53 -0700490 depends on PCI && SGI_IP27
Linus Torvalds1da177e2005-04-16 15:20:36 -0700491 select CRC32
492 select MII
493 help
494 If you have a network (Ethernet) card of this type, say Y and read
495 the Ethernet-HOWTO, available from
496 <http://www.tldp.org/docs.html#howto>.
497
498config SGI_IOC3_ETH_HW_RX_CSUM
499 bool "Receive hardware checksums"
500 depends on SGI_IOC3_ETH && INET
501 default y
502 help
503 The SGI IOC3 network adapter supports TCP and UDP checksums in
504 hardware to offload processing of these checksums from the CPU. At
505 the moment only acceleration of IPv4 is supported. This option
506 enables offloading for checksums on receive. If unsure, say Y.
507
508config SGI_IOC3_ETH_HW_TX_CSUM
509 bool "Transmit hardware checksums"
510 depends on SGI_IOC3_ETH && INET
511 default y
512 help
513 The SGI IOC3 network adapter supports TCP and UDP checksums in
514 hardware to offload processing of these checksums from the CPU. At
515 the moment only acceleration of IPv4 is supported. This option
516 enables offloading for checksums on transmit. If unsure, say Y.
517
Ralf Baechledcbf8472005-10-10 14:51:27 +0100518config MIPS_SIM_NET
Ralf Baechle1e2b9802007-03-18 23:21:22 +0000519 tristate "MIPS simulator Network device"
Jan Engelhardtd1c0a652007-06-13 12:48:53 -0700520 depends on MIPS_SIM
Ralf Baechledcbf8472005-10-10 14:51:27 +0100521 help
522 The MIPSNET device is a simple Ethernet network device which is
523 emulated by the MIPS Simulator.
524 If you are not using a MIPSsim or are unsure, say N.
525
Linus Torvalds1da177e2005-04-16 15:20:36 -0700526config SGI_O2MACE_ETH
527 tristate "SGI O2 MACE Fast Ethernet support"
Jan Engelhardtd1c0a652007-06-13 12:48:53 -0700528 depends on SGI_IP32=y
Linus Torvalds1da177e2005-04-16 15:20:36 -0700529
530config STNIC
531 tristate "National DP83902AV support"
Jan Engelhardtd1c0a652007-06-13 12:48:53 -0700532 depends on SUPERH
Linus Torvalds1da177e2005-04-16 15:20:36 -0700533 select CRC32
534 help
535 Support for cards based on the National Semiconductor DP83902AV
536 ST-NIC Serial Network Interface Controller for Twisted Pair. This
537 is a 10Mbit/sec Ethernet controller. Product overview and specs at
538 <http://www.national.com/pf/DP/DP83902A.html>.
539
540 If unsure, say N.
541
542config SUNLANCE
543 tristate "Sun LANCE support"
Jan Engelhardtd1c0a652007-06-13 12:48:53 -0700544 depends on SBUS
Linus Torvalds1da177e2005-04-16 15:20:36 -0700545 select CRC32
546 help
547 This driver supports the "le" interface present on all 32-bit Sparc
548 systems, on some older Ultra systems and as an Sbus option. These
549 cards are based on the AMD Lance chipset, which is better known
550 via the NE2100 cards.
551
552 To compile this driver as a module, choose M here: the module
553 will be called sunlance.
554
555config HAPPYMEAL
556 tristate "Sun Happy Meal 10/100baseT support"
Jan Engelhardtd1c0a652007-06-13 12:48:53 -0700557 depends on SBUS || PCI
Linus Torvalds1da177e2005-04-16 15:20:36 -0700558 select CRC32
559 help
560 This driver supports the "hme" interface present on most Ultra
561 systems and as an option on older Sbus systems. This driver supports
562 both PCI and Sbus devices. This driver also supports the "qfe" quad
563 100baseT device available in both PCI and Sbus configurations.
564
565 To compile this driver as a module, choose M here: the module
566 will be called sunhme.
567
568config SUNBMAC
569 tristate "Sun BigMAC 10/100baseT support (EXPERIMENTAL)"
Jan Engelhardtd1c0a652007-06-13 12:48:53 -0700570 depends on SBUS && EXPERIMENTAL
Linus Torvalds1da177e2005-04-16 15:20:36 -0700571 select CRC32
572 help
573 This driver supports the "be" interface available as an Sbus option.
574 This is Sun's older 100baseT Ethernet device.
575
576 To compile this driver as a module, choose M here: the module
577 will be called sunbmac.
578
579config SUNQE
580 tristate "Sun QuadEthernet support"
Jan Engelhardtd1c0a652007-06-13 12:48:53 -0700581 depends on SBUS
Linus Torvalds1da177e2005-04-16 15:20:36 -0700582 select CRC32
583 help
584 This driver supports the "qe" 10baseT Ethernet device, available as
585 an Sbus option. Note that this is not the same as Quad FastEthernet
586 "qfe" which is supported by the Happy Meal driver instead.
587
588 To compile this driver as a module, choose M here: the module
589 will be called sunqe.
590
591config SUNGEM
592 tristate "Sun GEM support"
Jan Engelhardtd1c0a652007-06-13 12:48:53 -0700593 depends on PCI
Linus Torvalds1da177e2005-04-16 15:20:36 -0700594 select CRC32
595 help
596 Support for the Sun GEM chip, aka Sun GigabitEthernet/P 2.0. See also
597 <http://www.sun.com/products-n-solutions/hardware/docs/pdf/806-3985-10.pdf>.
598
David S. Miller1f26dac2005-09-27 15:24:13 -0700599config CASSINI
600 tristate "Sun Cassini support"
Jan Engelhardtd1c0a652007-06-13 12:48:53 -0700601 depends on PCI
David S. Miller1f26dac2005-09-27 15:24:13 -0700602 select CRC32
603 help
604 Support for the Sun Cassini chip, aka Sun GigaSwift Ethernet. See also
605 <http://www.sun.com/products-n-solutions/hardware/docs/pdf/817-4341-10.pdf>
606
Linus Torvalds1da177e2005-04-16 15:20:36 -0700607config NET_VENDOR_3COM
608 bool "3COM cards"
Jan Engelhardtd1c0a652007-06-13 12:48:53 -0700609 depends on ISA || EISA || MCA || PCI
Linus Torvalds1da177e2005-04-16 15:20:36 -0700610 help
611 If you have a network (Ethernet) card belonging to this class, say Y
612 and read the Ethernet-HOWTO, available from
613 <http://www.tldp.org/docs.html#howto>.
614
615 Note that the answer to this question doesn't directly affect the
616 kernel: saying N will just cause the configurator to skip all
617 the questions about 3COM cards. If you say Y, you will be asked for
618 your specific card in the following questions.
619
620config EL1
621 tristate "3c501 \"EtherLink\" support"
622 depends on NET_VENDOR_3COM && ISA
623 ---help---
624 If you have a network (Ethernet) card of this type, say Y and read
625 the Ethernet-HOWTO, available from
626 <http://www.tldp.org/docs.html#howto>. Also, consider buying a
627 new card, since the 3c501 is slow, broken, and obsolete: you will
628 have problems. Some people suggest to ping ("man ping") a nearby
629 machine every minute ("man cron") when using this card.
630
631 To compile this driver as a module, choose M here and read
632 <file:Documentation/networking/net-modules.txt>. The module
633 will be called 3c501.
634
635config EL2
636 tristate "3c503 \"EtherLink II\" support"
637 depends on NET_VENDOR_3COM && ISA
638 select CRC32
639 help
640 If you have a network (Ethernet) card of this type, say Y and read
641 the Ethernet-HOWTO, available from
642 <http://www.tldp.org/docs.html#howto>.
643
644 To compile this driver as a module, choose M here and read
645 <file:Documentation/networking/net-modules.txt>. The module
646 will be called 3c503.
647
648config ELPLUS
649 tristate "3c505 \"EtherLink Plus\" support"
Al Viroa5532602005-05-04 05:39:42 +0100650 depends on NET_VENDOR_3COM && ISA && ISA_DMA_API
Linus Torvalds1da177e2005-04-16 15:20:36 -0700651 ---help---
652 Information about this network (Ethernet) card can be found in
653 <file:Documentation/networking/3c505.txt>. If you have a card of
654 this type, say Y and read the Ethernet-HOWTO, available from
655 <http://www.tldp.org/docs.html#howto>.
656
657 To compile this driver as a module, choose M here and read
658 <file:Documentation/networking/net-modules.txt>. The module
659 will be called 3c505.
660
661config EL16
662 tristate "3c507 \"EtherLink 16\" support (EXPERIMENTAL)"
663 depends on NET_VENDOR_3COM && ISA && EXPERIMENTAL
664 help
665 If you have a network (Ethernet) card of this type, say Y and read
666 the Ethernet-HOWTO, available from
667 <http://www.tldp.org/docs.html#howto>.
668
669 To compile this driver as a module, choose M here and read
670 <file:Documentation/networking/net-modules.txt>. The module
671 will be called 3c507.
672
673config EL3
674 tristate "3c509/3c529 (MCA)/3c579 \"EtherLink III\" support"
675 depends on NET_VENDOR_3COM && (ISA || EISA || MCA)
676 ---help---
677 If you have a network (Ethernet) card belonging to the 3Com
678 EtherLinkIII series, say Y and read the Ethernet-HOWTO, available
679 from <http://www.tldp.org/docs.html#howto>.
680
681 If your card is not working you may need to use the DOS
682 setup disk to disable Plug & Play mode, and to select the default
683 media type.
684
685 To compile this driver as a module, choose M here and read
686 <file:Documentation/networking/net-modules.txt>. The module
687 will be called 3c509.
688
689config 3C515
690 tristate "3c515 ISA \"Fast EtherLink\""
Al Viroa5532602005-05-04 05:39:42 +0100691 depends on NET_VENDOR_3COM && (ISA || EISA) && ISA_DMA_API
Linus Torvalds1da177e2005-04-16 15:20:36 -0700692 help
693 If you have a 3Com ISA EtherLink XL "Corkscrew" 3c515 Fast Ethernet
694 network card, say Y and read the Ethernet-HOWTO, available from
695 <http://www.tldp.org/docs.html#howto>.
696
697 To compile this driver as a module, choose M here and read
698 <file:Documentation/networking/net-modules.txt>. The module
699 will be called 3c515.
700
701config ELMC
702 tristate "3c523 \"EtherLink/MC\" support"
703 depends on NET_VENDOR_3COM && MCA_LEGACY
704 help
705 If you have a network (Ethernet) card of this type, say Y and read
706 the Ethernet-HOWTO, available from
707 <http://www.tldp.org/docs.html#howto>.
708
709 To compile this driver as a module, choose M here and read
710 <file:Documentation/networking/net-modules.txt>. The module
711 will be called 3c523.
712
713config ELMC_II
714 tristate "3c527 \"EtherLink/MC 32\" support (EXPERIMENTAL)"
715 depends on NET_VENDOR_3COM && MCA && MCA_LEGACY
716 help
717 If you have a network (Ethernet) card of this type, say Y and read
718 the Ethernet-HOWTO, available from
719 <http://www.tldp.org/docs.html#howto>.
720
721 To compile this driver as a module, choose M here and read
722 <file:Documentation/networking/net-modules.txt>. The module
723 will be called 3c527.
724
725config VORTEX
726 tristate "3c590/3c900 series (592/595/597) \"Vortex/Boomerang\" support"
727 depends on NET_VENDOR_3COM && (PCI || EISA)
728 select MII
729 ---help---
Jon Mason47c51432006-02-12 11:53:04 -0600730 This option enables driver support for a large number of 10Mbps and
731 10/100Mbps EISA, PCI and PCMCIA 3Com network cards:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700732
733 "Vortex" (Fast EtherLink 3c590/3c592/3c595/3c597) EISA and PCI
734 "Boomerang" (EtherLink XL 3c900 or 3c905) PCI
735 "Cyclone" (3c540/3c900/3c905/3c980/3c575/3c656) PCI and Cardbus
736 "Tornado" (3c905) PCI
737 "Hurricane" (3c555/3cSOHO) PCI
738
739 If you have such a card, say Y and read the Ethernet-HOWTO,
740 available from <http://www.tldp.org/docs.html#howto>. More
741 specific information is in
742 <file:Documentation/networking/vortex.txt> and in the comments at
743 the beginning of <file:drivers/net/3c59x.c>.
744
745 To compile this support as a module, choose M here and read
746 <file:Documentation/networking/net-modules.txt>.
747
748config TYPHOON
749 tristate "3cr990 series \"Typhoon\" support"
750 depends on NET_VENDOR_3COM && PCI
751 select CRC32
752 ---help---
753 This option enables driver support for the 3cr990 series of cards:
754
755 3C990-TX, 3CR990-TX-95, 3CR990-TX-97, 3CR990-FX-95, 3CR990-FX-97,
756 3CR990SVR, 3CR990SVR95, 3CR990SVR97, 3CR990-FX-95 Server,
757 3CR990-FX-97 Server, 3C990B-TX-M, 3C990BSVR
758
759 If you have a network (Ethernet) card of this type, say Y and read
760 the Ethernet-HOWTO, available from
761 <http://www.tldp.org/docs.html#howto>.
762
763 To compile this driver as a module, choose M here and read
764 <file:Documentation/networking/net-modules.txt>. The module
765 will be called typhoon.
766
767config LANCE
768 tristate "AMD LANCE and PCnet (AT1500 and NE2100) support"
Jan Engelhardtd1c0a652007-06-13 12:48:53 -0700769 depends on ISA && ISA_DMA_API
Linus Torvalds1da177e2005-04-16 15:20:36 -0700770 help
771 If you have a network (Ethernet) card of this type, say Y and read
772 the Ethernet-HOWTO, available from
773 <http://www.tldp.org/docs.html#howto>. Some LinkSys cards are
774 of this type.
775
776 To compile this driver as a module, choose M here: the module
777 will be called lance. This is recommended.
778
779config NET_VENDOR_SMC
780 bool "Western Digital/SMC cards"
Jan Engelhardtd1c0a652007-06-13 12:48:53 -0700781 depends on ISA || MCA || EISA || MAC
Linus Torvalds1da177e2005-04-16 15:20:36 -0700782 help
783 If you have a network (Ethernet) card belonging to this class, say Y
784 and read the Ethernet-HOWTO, available from
785 <http://www.tldp.org/docs.html#howto>.
786
787 Note that the answer to this question doesn't directly affect the
788 kernel: saying N will just cause the configurator to skip all
789 the questions about Western Digital cards. If you say Y, you will be
790 asked for your specific card in the following questions.
791
792config WD80x3
793 tristate "WD80*3 support"
794 depends on NET_VENDOR_SMC && ISA
795 select CRC32
796 help
797 If you have a network (Ethernet) card of this type, say Y and read
798 the Ethernet-HOWTO, available from
799 <http://www.tldp.org/docs.html#howto>.
800
801 To compile this driver as a module, choose M here and read
802 <file:Documentation/networking/net-modules.txt>. The module
803 will be called wd.
804
805config ULTRAMCA
806 tristate "SMC Ultra MCA support"
807 depends on NET_VENDOR_SMC && MCA
808 select CRC32
809 help
810 If you have a network (Ethernet) card of this type and are running
811 an MCA based system (PS/2), say Y and read the Ethernet-HOWTO,
812 available from <http://www.tldp.org/docs.html#howto>.
813
814 To compile this driver as a module, choose M here and read
815 <file:Documentation/networking/net-modules.txt>. The module
816 will be called smc-mca.
817
818config ULTRA
819 tristate "SMC Ultra support"
820 depends on NET_VENDOR_SMC && ISA
821 select CRC32
822 ---help---
823 If you have a network (Ethernet) card of this type, say Y and read
824 the Ethernet-HOWTO, available from
825 <http://www.tldp.org/docs.html#howto>.
826
827 Important: There have been many reports that, with some motherboards
828 mixing an SMC Ultra and an Adaptec AHA154x SCSI card (or compatible,
829 such as some BusLogic models) causes corruption problems with many
830 operating systems. The Linux smc-ultra driver has a work-around for
831 this but keep it in mind if you have such a SCSI card and have
832 problems.
833
834 To compile this driver as a module, choose M here and read
835 <file:Documentation/networking/net-modules.txt>. The module
836 will be called smc-ultra.
837
838config ULTRA32
839 tristate "SMC Ultra32 EISA support"
840 depends on NET_VENDOR_SMC && EISA
841 select CRC32
842 help
843 If you have a network (Ethernet) card of this type, say Y and read
844 the Ethernet-HOWTO, available from
845 <http://www.tldp.org/docs.html#howto>.
846
847 To compile this driver as a module, choose M here and read
848 <file:Documentation/networking/net-modules.txt>. The module
849 will be called smc-ultra32.
850
Linus Torvalds1da177e2005-04-16 15:20:36 -0700851config SMC9194
852 tristate "SMC 9194 support"
853 depends on NET_VENDOR_SMC && (ISA || MAC && BROKEN)
854 select CRC32
855 ---help---
856 This is support for the SMC9xxx based Ethernet cards. Choose this
857 option if you have a DELL laptop with the docking station, or
858 another SMC9192/9194 based chipset. Say Y if you want it compiled
859 into the kernel, and read the file
860 <file:Documentation/networking/smc9.txt> and the Ethernet-HOWTO,
861 available from <http://www.tldp.org/docs.html#howto>.
862
863 To compile this driver as a module, choose M here and read
864 <file:Documentation/networking/net-modules.txt>. The module
865 will be called smc9194.
866
Jan Engelhardtd1c0a652007-06-13 12:48:53 -0700867config SMC91X
868 tristate "SMC 91C9x/91C1xxx support"
869 select CRC32
870 select MII
871 depends on ARM || REDWOOD_5 || REDWOOD_6 || M32R || SUPERH || SOC_AU1X00 || BFIN
872 help
873 This is a driver for SMC's 91x series of Ethernet chipsets,
874 including the SMC91C94 and the SMC91C111. Say Y if you want it
875 compiled into the kernel, and read the file
876 <file:Documentation/networking/smc9.txt> and the Ethernet-HOWTO,
877 available from <http://www.linuxdoc.org/docs.html#howto>.
878
879 This driver is also available as a module ( = code which can be
880 inserted in and removed from the running kernel whenever you want).
881 The module will be called smc91x. If you want to compile it as a
882 module, say M here and read <file:Documentation/kbuild/modules.txt>
883 as well as <file:Documentation/networking/net-modules.txt>.
884
Sascha Hauer92aa6742006-06-22 07:11:13 +0200885config NET_NETX
886 tristate "NetX Ethernet support"
887 select MII
Jan Engelhardtd1c0a652007-06-13 12:48:53 -0700888 depends on ARCH_NETX
Sascha Hauer92aa6742006-06-22 07:11:13 +0200889 help
890 This is support for the Hilscher netX builtin Ethernet ports
891
892 To compile this driver as a module, choose M here and read
893 <file:Documentation/networking/net-modules.txt>. The module
894 will be called netx-eth.
895
Sascha Hauera1365272005-05-05 15:14:15 -0700896config DM9000
897 tristate "DM9000 support"
Alex Landauf40d24d2007-07-12 12:11:48 +0800898 depends on ARM || BLACKFIN || MIPS
Sascha Hauera1365272005-05-05 15:14:15 -0700899 select CRC32
900 select MII
901 ---help---
902 Support for DM9000 chipset.
903
904 To compile this driver as a module, choose M here and read
905 <file:Documentation/networking/net-modules.txt>. The module will be
906 called dm9000.
907
Dustin McIntire0a0c72c2006-04-19 20:24:51 -0700908config SMC911X
909 tristate "SMSC LAN911[5678] support"
910 select CRC32
911 select MII
Jan Engelhardtd1c0a652007-06-13 12:48:53 -0700912 depends on ARCH_PXA
Dustin McIntire0a0c72c2006-04-19 20:24:51 -0700913 help
914 This is a driver for SMSC's LAN911x series of Ethernet chipsets
915 including the new LAN9115, LAN9116, LAN9117, and LAN9118.
916 Say Y if you want it compiled into the kernel,
917 and read the Ethernet-HOWTO, available from
918 <http://www.linuxdoc.org/docs.html#howto>.
919
920 This driver is also available as a module. The module will be
921 called smc911x. If you want to compile it as a module, say M
Alexander E. Patrakov39f5fb32007-03-16 18:28:43 +0500922 here and read <file:Documentation/kbuild/modules.txt>
Dustin McIntire0a0c72c2006-04-19 20:24:51 -0700923
Linus Torvalds1da177e2005-04-16 15:20:36 -0700924config NET_VENDOR_RACAL
925 bool "Racal-Interlan (Micom) NI cards"
Jan Engelhardtd1c0a652007-06-13 12:48:53 -0700926 depends on ISA
Linus Torvalds1da177e2005-04-16 15:20:36 -0700927 help
928 If you have a network (Ethernet) card belonging to this class, such
929 as the NI5010, NI5210 or NI6210, say Y and read the Ethernet-HOWTO,
930 available from <http://www.tldp.org/docs.html#howto>.
931
932 Note that the answer to this question doesn't directly affect the
933 kernel: saying N will just cause the configurator to skip all
934 the questions about NI cards. If you say Y, you will be asked for
935 your specific card in the following questions.
936
937config NI5010
938 tristate "NI5010 support (EXPERIMENTAL)"
939 depends on NET_VENDOR_RACAL && ISA && EXPERIMENTAL && BROKEN_ON_SMP
940 ---help---
941 If you have a network (Ethernet) card of this type, say Y and read
942 the Ethernet-HOWTO, available from
943 <http://www.tldp.org/docs.html#howto>. Note that this is still
944 experimental code.
945
946 To compile this driver as a module, choose M here and read
947 <file:Documentation/networking/net-modules.txt>. The module
948 will be called ni5010.
949
950config NI52
951 tristate "NI5210 support"
952 depends on NET_VENDOR_RACAL && ISA
953 help
954 If you have a network (Ethernet) card of this type, say Y and read
955 the Ethernet-HOWTO, available from
956 <http://www.tldp.org/docs.html#howto>.
957
958 To compile this driver as a module, choose M here and read
959 <file:Documentation/networking/net-modules.txt>. The module
960 will be called ni52.
961
962config NI65
963 tristate "NI6510 support"
Al Viroa5532602005-05-04 05:39:42 +0100964 depends on NET_VENDOR_RACAL && ISA && ISA_DMA_API
Linus Torvalds1da177e2005-04-16 15:20:36 -0700965 help
966 If you have a network (Ethernet) card of this type, say Y and read
967 the Ethernet-HOWTO, available from
968 <http://www.tldp.org/docs.html#howto>.
969
970 To compile this driver as a module, choose M here and read
971 <file:Documentation/networking/net-modules.txt>. The module
972 will be called ni65.
973
974source "drivers/net/tulip/Kconfig"
975
976config AT1700
977 tristate "AT1700/1720 support (EXPERIMENTAL)"
Jan Engelhardtd1c0a652007-06-13 12:48:53 -0700978 depends on (ISA || MCA_LEGACY) && EXPERIMENTAL
Linus Torvalds1da177e2005-04-16 15:20:36 -0700979 select CRC32
980 ---help---
981 If you have a network (Ethernet) card of this type, say Y and read
982 the Ethernet-HOWTO, available from
983 <http://www.tldp.org/docs.html#howto>.
984
985 To compile this driver as a module, choose M here and read
986 <file:Documentation/networking/net-modules.txt>. The module
987 will be called at1700.
988
989config DEPCA
990 tristate "DEPCA, DE10x, DE200, DE201, DE202, DE422 support"
Jan Engelhardtd1c0a652007-06-13 12:48:53 -0700991 depends on ISA || EISA || MCA
Linus Torvalds1da177e2005-04-16 15:20:36 -0700992 select CRC32
993 ---help---
994 If you have a network (Ethernet) card of this type, say Y and read
995 the Ethernet-HOWTO, available from
996 <http://www.tldp.org/docs.html#howto> as well as
997 <file:drivers/net/depca.c>.
998
999 To compile this driver as a module, choose M here and read
1000 <file:Documentation/networking/net-modules.txt>. The module
1001 will be called depca.
1002
1003config HP100
1004 tristate "HP 10/100VG PCLAN (ISA, EISA, PCI) support"
Jan Engelhardtd1c0a652007-06-13 12:48:53 -07001005 depends on ISA || EISA || PCI
Linus Torvalds1da177e2005-04-16 15:20:36 -07001006 help
1007 If you have a network (Ethernet) card of this type, say Y and read
1008 the Ethernet-HOWTO, available from
1009 <http://www.tldp.org/docs.html#howto>.
1010
1011 To compile this driver as a module, choose M here and read
1012 <file:Documentation/networking/net-modules.txt>. The module
1013 will be called hp100.
1014
1015config NET_ISA
1016 bool "Other ISA cards"
Jan Engelhardtd1c0a652007-06-13 12:48:53 -07001017 depends on ISA
Linus Torvalds1da177e2005-04-16 15:20:36 -07001018 ---help---
1019 If your network (Ethernet) card hasn't been mentioned yet and its
1020 bus system (that's the way the cards talks to the other components
1021 of your computer) is ISA (as opposed to EISA, VLB or PCI), say Y.
1022 Make sure you know the name of your card. Read the Ethernet-HOWTO,
1023 available from <http://www.tldp.org/docs.html#howto>.
1024
1025 If unsure, say Y.
1026
1027 Note that the answer to this question doesn't directly affect the
1028 kernel: saying N will just cause the configurator to skip all
1029 the remaining ISA network card questions. If you say Y, you will be
1030 asked for your specific card in the following questions.
1031
1032config E2100
1033 tristate "Cabletron E21xx support"
1034 depends on NET_ISA
1035 select CRC32
1036 help
1037 If you have a network (Ethernet) card of this type, say Y and read
1038 the Ethernet-HOWTO, available from
1039 <http://www.tldp.org/docs.html#howto>.
1040
1041 To compile this driver as a module, choose M here and read
1042 <file:Documentation/networking/net-modules.txt>. The module
1043 will be called e2100.
1044
1045config EWRK3
1046 tristate "EtherWORKS 3 (DE203, DE204, DE205) support"
1047 depends on NET_ISA
1048 select CRC32
1049 ---help---
1050 This driver supports the DE203, DE204 and DE205 network (Ethernet)
1051 cards. If this is for you, say Y and read
1052 <file:Documentation/networking/ewrk3.txt> in the kernel source as
1053 well as the Ethernet-HOWTO, available from
1054 <http://www.tldp.org/docs.html#howto>.
1055
1056 To compile this driver as a module, choose M here and read
1057 <file:Documentation/networking/net-modules.txt>. The module
1058 will be called ewrk3.
1059
1060config EEXPRESS
1061 tristate "EtherExpress 16 support"
1062 depends on NET_ISA
1063 ---help---
1064 If you have an EtherExpress16 network (Ethernet) card, say Y and
1065 read the Ethernet-HOWTO, available from
1066 <http://www.tldp.org/docs.html#howto>. Note that the Intel
1067 EtherExpress16 card used to be regarded as a very poor choice
1068 because the driver was very unreliable. We now have a new driver
1069 that should do better.
1070
1071 To compile this driver as a module, choose M here and read
1072 <file:Documentation/networking/net-modules.txt>. The module
1073 will be called eexpress.
1074
1075config EEXPRESS_PRO
1076 tristate "EtherExpressPro support/EtherExpress 10 (i82595) support"
1077 depends on NET_ISA
1078 ---help---
1079 If you have a network (Ethernet) card of this type, say Y. This
Jon Mason47c51432006-02-12 11:53:04 -06001080 driver supports Intel i82595{FX,TX} based boards. Note however
Linus Torvalds1da177e2005-04-16 15:20:36 -07001081 that the EtherExpress PRO/100 Ethernet card has its own separate
1082 driver. Please read the Ethernet-HOWTO, available from
1083 <http://www.tldp.org/docs.html#howto>.
1084
1085 To compile this driver as a module, choose M here and read
1086 <file:Documentation/networking/net-modules.txt>. The module
1087 will be called eepro.
1088
Linus Torvalds1da177e2005-04-16 15:20:36 -07001089config HPLAN_PLUS
1090 tristate "HP PCLAN+ (27247B and 27252A) support"
1091 depends on NET_ISA
1092 select CRC32
1093 help
1094 If you have a network (Ethernet) card of this type, say Y and read
1095 the Ethernet-HOWTO, available from
1096 <http://www.tldp.org/docs.html#howto>.
1097
1098 To compile this driver as a module, choose M here and read
1099 <file:Documentation/networking/net-modules.txt>. The module
1100 will be called hp-plus.
1101
1102config HPLAN
1103 tristate "HP PCLAN (27245 and other 27xxx series) support"
1104 depends on NET_ISA
1105 select CRC32
1106 help
1107 If you have a network (Ethernet) card of this type, say Y and read
1108 the Ethernet-HOWTO, available from
1109 <http://www.tldp.org/docs.html#howto>.
1110
1111 To compile this driver as a module, choose M here and read
1112 <file:Documentation/networking/net-modules.txt>. The module
1113 will be called hp.
1114
1115config LP486E
1116 tristate "LP486E on board Ethernet"
1117 depends on NET_ISA
1118 help
1119 Say Y here to support the 82596-based on-board Ethernet controller
1120 for the Panther motherboard, which is one of the two shipped in the
1121 Intel Professional Workstation.
1122
1123config ETH16I
1124 tristate "ICL EtherTeam 16i/32 support"
1125 depends on NET_ISA
1126 help
1127 If you have a network (Ethernet) card of this type, say Y and read
1128 the Ethernet-HOWTO, available from
1129 <http://www.tldp.org/docs.html#howto>.
1130
1131 To compile this driver as a module, choose M here and read
1132 <file:Documentation/networking/net-modules.txt>. The module
1133 will be called eth16i.
1134
1135config NE2000
1136 tristate "NE2000/NE1000 support"
Atsushi Nemoto57e386c2007-05-01 00:27:58 +09001137 depends on NET_ISA || (Q40 && m) || M32R || TOSHIBA_RBTX4927 || TOSHIBA_RBTX4938
Linus Torvalds1da177e2005-04-16 15:20:36 -07001138 select CRC32
1139 ---help---
1140 If you have a network (Ethernet) card of this type, say Y and read
1141 the Ethernet-HOWTO, available from
1142 <http://www.tldp.org/docs.html#howto>. Many Ethernet cards
1143 without a specific driver are compatible with NE2000.
1144
1145 If you have a PCI NE2000 card however, say N here and Y to "PCI
Jesper Juhl28beaf62006-03-08 00:06:31 -08001146 NE2000 and clone support" under "EISA, VLB, PCI and on board
1147 controllers" below. If you have a NE2000 card and are running on
Linus Torvalds1da177e2005-04-16 15:20:36 -07001148 an MCA system (a bus system used on some IBM PS/2 computers and
1149 laptops), say N here and Y to "NE/2 (ne2000 MCA version) support",
1150 below.
1151
1152 To compile this driver as a module, choose M here and read
1153 <file:Documentation/networking/net-modules.txt>. The module
1154 will be called ne.
1155
1156config ZNET
1157 tristate "Zenith Z-Note support (EXPERIMENTAL)"
Al Viroa5532602005-05-04 05:39:42 +01001158 depends on NET_ISA && EXPERIMENTAL && ISA_DMA_API
Linus Torvalds1da177e2005-04-16 15:20:36 -07001159 help
1160 The Zenith Z-Note notebook computer has a built-in network
1161 (Ethernet) card, and this is the Linux driver for it. Note that the
1162 IBM Thinkpad 300 is compatible with the Z-Note and is also supported
1163 by this driver. Read the Ethernet-HOWTO, available from
1164 <http://www.tldp.org/docs.html#howto>.
1165
1166config SEEQ8005
1167 tristate "SEEQ8005 support (EXPERIMENTAL)"
1168 depends on NET_ISA && EXPERIMENTAL
1169 help
1170 This is a driver for the SEEQ 8005 network (Ethernet) card. If this
1171 is for you, read the Ethernet-HOWTO, available from
1172 <http://www.tldp.org/docs.html#howto>.
1173
1174 To compile this driver as a module, choose M here and read
1175 <file:Documentation/networking/net-modules.txt>. The module
1176 will be called seeq8005.
1177
Linus Torvalds1da177e2005-04-16 15:20:36 -07001178config NE2_MCA
1179 tristate "NE/2 (ne2000 MCA version) support"
Jan Engelhardtd1c0a652007-06-13 12:48:53 -07001180 depends on MCA_LEGACY
Linus Torvalds1da177e2005-04-16 15:20:36 -07001181 select CRC32
1182 help
1183 If you have a network (Ethernet) card of this type, say Y and read
1184 the Ethernet-HOWTO, available from
1185 <http://www.tldp.org/docs.html#howto>.
1186
1187 To compile this driver as a module, choose M here and read
1188 <file:Documentation/networking/net-modules.txt>. The module
1189 will be called ne2.
1190
1191config IBMLANA
1192 tristate "IBM LAN Adapter/A support"
Jan Engelhardtd1c0a652007-06-13 12:48:53 -07001193 depends on MCA && MCA_LEGACY
Linus Torvalds1da177e2005-04-16 15:20:36 -07001194 ---help---
1195 This is a Micro Channel Ethernet adapter. You need to set
1196 CONFIG_MCA to use this driver. It is both available as an in-kernel
1197 driver and as a module.
1198
1199 To compile this driver as a module, choose M here and read
1200 <file:Documentation/networking/net-modules.txt>. The only
1201 currently supported card is the IBM LAN Adapter/A for Ethernet. It
1202 will both support 16K and 32K memory windows, however a 32K window
1203 gives a better security against packet losses. Usage of multiple
1204 boards with this driver should be possible, but has not been tested
1205 up to now due to lack of hardware.
1206
1207config IBMVETH
1208 tristate "IBM LAN Virtual Ethernet support"
Jan Engelhardtd1c0a652007-06-13 12:48:53 -07001209 depends on PPC_PSERIES
Linus Torvalds1da177e2005-04-16 15:20:36 -07001210 ---help---
1211 This driver supports virtual ethernet adapters on newer IBM iSeries
1212 and pSeries systems.
1213
1214 To compile this driver as a module, choose M here and read
1215 <file:Documentation/networking/net-modules.txt>. The module will
1216 be called ibmveth.
1217
1218config IBM_EMAC
Eugene Surovegin37448f72005-10-10 16:58:14 -07001219 tristate "PowerPC 4xx on-chip Ethernet support"
David Gibson86affd52007-06-28 11:27:57 +10001220 depends on 4xx && !PPC_MERGE
Eugene Surovegin37448f72005-10-10 16:58:14 -07001221 help
1222 This driver supports the PowerPC 4xx EMAC family of on-chip
1223 Ethernet controllers.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001224
1225config IBM_EMAC_RXB
1226 int "Number of receive buffers"
1227 depends on IBM_EMAC
Eugene Surovegin37448f72005-10-10 16:58:14 -07001228 default "128"
Linus Torvalds1da177e2005-04-16 15:20:36 -07001229
1230config IBM_EMAC_TXB
1231 int "Number of transmit buffers"
1232 depends on IBM_EMAC
Eugene Surovegin37448f72005-10-10 16:58:14 -07001233 default "64"
Linus Torvalds1da177e2005-04-16 15:20:36 -07001234
Eugene Surovegin37448f72005-10-10 16:58:14 -07001235config IBM_EMAC_POLL_WEIGHT
1236 int "MAL NAPI polling weight"
Linus Torvalds1da177e2005-04-16 15:20:36 -07001237 depends on IBM_EMAC
Eugene Surovegin37448f72005-10-10 16:58:14 -07001238 default "32"
Linus Torvalds1da177e2005-04-16 15:20:36 -07001239
Eugene Surovegin37448f72005-10-10 16:58:14 -07001240config IBM_EMAC_RX_COPY_THRESHOLD
1241 int "RX skb copy threshold (bytes)"
1242 depends on IBM_EMAC
1243 default "256"
1244
1245config IBM_EMAC_RX_SKB_HEADROOM
1246 int "Additional RX skb headroom (bytes)"
Linus Torvalds1da177e2005-04-16 15:20:36 -07001247 depends on IBM_EMAC
1248 default "0"
Eugene Surovegin37448f72005-10-10 16:58:14 -07001249 help
1250 Additional receive skb headroom. Note, that driver
1251 will always reserve at least 2 bytes to make IP header
Jon Mason47c51432006-02-12 11:53:04 -06001252 aligned, so usually there is no need to add any additional
Eugene Surovegin37448f72005-10-10 16:58:14 -07001253 headroom.
1254
1255 If unsure, set to 0.
1256
1257config IBM_EMAC_PHY_RX_CLK_FIX
1258 bool "PHY Rx clock workaround"
Eugene Surovegin1b195912005-10-29 12:45:31 -07001259 depends on IBM_EMAC && (405EP || 440GX || 440EP || 440GR)
Eugene Surovegin37448f72005-10-10 16:58:14 -07001260 help
1261 Enable this if EMAC attached to a PHY which doesn't generate
1262 RX clock if there is no link, if this is the case, you will
1263 see "TX disable timeout" or "RX disable timeout" in the system
1264 log.
1265
1266 If unsure, say N.
1267
1268config IBM_EMAC_DEBUG
1269 bool "Debugging"
1270 depends on IBM_EMAC
1271 default n
1272
1273config IBM_EMAC_ZMII
1274 bool
1275 depends on IBM_EMAC && (NP405H || NP405L || 44x)
1276 default y
1277
1278config IBM_EMAC_RGMII
1279 bool
1280 depends on IBM_EMAC && 440GX
1281 default y
1282
1283config IBM_EMAC_TAH
1284 bool
1285 depends on IBM_EMAC && 440GX
1286 default y
Linus Torvalds1da177e2005-04-16 15:20:36 -07001287
1288config NET_PCI
1289 bool "EISA, VLB, PCI and on board controllers"
Jan Engelhardtd1c0a652007-06-13 12:48:53 -07001290 depends on ISA || EISA || PCI
Linus Torvalds1da177e2005-04-16 15:20:36 -07001291 help
1292 This is another class of network cards which attach directly to the
1293 bus. If you have one of those, say Y and read the Ethernet-HOWTO,
1294 available from <http://www.tldp.org/docs.html#howto>.
1295
1296 Note that the answer to this question doesn't directly affect the
1297 kernel: saying N will just cause the configurator to skip all
1298 the questions about this class of network cards. If you say Y, you
1299 will be asked for your specific card in the following questions. If
1300 you are unsure, say Y.
1301
1302config PCNET32
1303 tristate "AMD PCnet32 PCI support"
1304 depends on NET_PCI && PCI
1305 select CRC32
1306 select MII
1307 help
1308 If you have a PCnet32 or PCnetPCI based network (Ethernet) card,
1309 answer Y here and read the Ethernet-HOWTO, available from
1310 <http://www.tldp.org/docs.html#howto>.
1311
1312 To compile this driver as a module, choose M here and read
1313 <file:Documentation/networking/net-modules.txt>. The module
1314 will be called pcnet32.
1315
Don Fry7de745e2006-09-13 10:16:53 -07001316config PCNET32_NAPI
pcnet32@verizon.net659dd832007-02-16 10:09:57 -06001317 bool "Use RX polling (NAPI)"
1318 depends on PCNET32
Don Fry7de745e2006-09-13 10:16:53 -07001319 help
1320 NAPI is a new driver API designed to reduce CPU and interrupt load
1321 when the driver is receiving lots of packets from the card. It is
1322 still somewhat experimental and thus not yet enabled by default.
1323
1324 If your estimated Rx load is 10kpps or more, or if the card will be
1325 deployed on potentially unfriendly networks (e.g. in a firewall),
1326 then say Y here.
1327
1328 See <file:Documentation/networking/NAPI_HOWTO.txt> for more
1329 information.
1330
1331 If in doubt, say N.
1332
Linus Torvalds1da177e2005-04-16 15:20:36 -07001333config AMD8111_ETH
1334 tristate "AMD 8111 (new PCI lance) support"
1335 depends on NET_PCI && PCI
1336 select CRC32
1337 select MII
1338 help
1339 If you have an AMD 8111-based PCI lance ethernet card,
1340 answer Y here and read the Ethernet-HOWTO, available from
1341 <http://www.tldp.org/docs.html#howto>.
1342
1343 To compile this driver as a module, choose M here and read
1344 <file:Documentation/networking/net-modules.txt>. The module
1345 will be called amd8111e.
Jan Engelhardtd1c0a652007-06-13 12:48:53 -07001346
Linus Torvalds1da177e2005-04-16 15:20:36 -07001347config AMD8111E_NAPI
1348 bool "Enable NAPI support"
1349 depends on AMD8111_ETH
1350 help
1351 NAPI is a new driver API designed to reduce CPU and interrupt load
1352 when the driver is receiving lots of packets from the card. It is
1353 still somewhat experimental and thus not yet enabled by default.
1354
1355 If your estimated Rx load is 10kpps or more, or if the card will be
1356 deployed on potentially unfriendly networks (e.g. in a firewall),
1357 then say Y here.
1358
1359 See <file:Documentation/networking/NAPI_HOWTO.txt> for more
1360 information.
1361
1362 If in doubt, say N.
1363
1364config ADAPTEC_STARFIRE
1365 tristate "Adaptec Starfire/DuraLAN support"
1366 depends on NET_PCI && PCI
1367 select CRC32
1368 select MII
1369 help
1370 Say Y here if you have an Adaptec Starfire (or DuraLAN) PCI network
1371 adapter. The DuraLAN chip is used on the 64 bit PCI boards from
1372 Adaptec e.g. the ANA-6922A. The older 32 bit boards use the tulip
1373 driver.
1374
1375 To compile this driver as a module, choose M here: the module
1376 will be called starfire. This is recommended.
1377
1378config ADAPTEC_STARFIRE_NAPI
1379 bool "Use Rx Polling (NAPI) (EXPERIMENTAL)"
1380 depends on ADAPTEC_STARFIRE && EXPERIMENTAL
1381 help
1382 NAPI is a new driver API designed to reduce CPU and interrupt load
1383 when the driver is receiving lots of packets from the card. It is
1384 still somewhat experimental and thus not yet enabled by default.
1385
1386 If your estimated Rx load is 10kpps or more, or if the card will be
1387 deployed on potentially unfriendly networks (e.g. in a firewall),
1388 then say Y here.
1389
1390 See <file:Documentation/networking/NAPI_HOWTO.txt> for more
1391 information.
1392
1393 If in doubt, say N.
1394
1395config AC3200
1396 tristate "Ansel Communications EISA 3200 support (EXPERIMENTAL)"
1397 depends on NET_PCI && (ISA || EISA) && EXPERIMENTAL
1398 select CRC32
1399 help
1400 If you have a network (Ethernet) card of this type, say Y and read
1401 the Ethernet-HOWTO, available from
1402 <http://www.tldp.org/docs.html#howto>.
1403
1404 To compile this driver as a module, choose M here and read
1405 <file:Documentation/networking/net-modules.txt>. The module
1406 will be called ac3200.
1407
1408config APRICOT
1409 tristate "Apricot Xen-II on board Ethernet"
1410 depends on NET_PCI && ISA
1411 help
1412 If you have a network (Ethernet) controller of this type, say Y and
1413 read the Ethernet-HOWTO, available from
1414 <http://www.tldp.org/docs.html#howto>.
1415
1416 To compile this driver as a module, choose M here and read
1417 <file:Documentation/networking/net-modules.txt>. The module will be
1418 called apricot.
1419
1420config B44
Gary Zambranofc13dca2006-06-20 15:34:46 -07001421 tristate "Broadcom 4400 ethernet support"
1422 depends on NET_PCI && PCI
Linus Torvalds1da177e2005-04-16 15:20:36 -07001423 select MII
1424 help
1425 If you have a network (Ethernet) controller of this type, say Y and
1426 read the Ethernet-HOWTO, available from
1427 <http://www.tldp.org/docs.html#howto>.
1428
1429 To compile this driver as a module, choose M here and read
1430 <file:Documentation/networking/net-modules.txt>. The module will be
1431 called b44.
1432
1433config FORCEDETH
Adrian Bunk82770082006-03-08 00:06:30 -08001434 tristate "nForce Ethernet support"
1435 depends on NET_PCI && PCI
Linus Torvalds1da177e2005-04-16 15:20:36 -07001436 help
1437 If you have a network (Ethernet) controller of this type, say Y and
1438 read the Ethernet-HOWTO, available from
1439 <http://www.tldp.org/docs.html#howto>.
1440
1441 To compile this driver as a module, choose M here and read
1442 <file:Documentation/networking/net-modules.txt>. The module will be
1443 called forcedeth.
1444
Stephen Hemmingere27cdba2006-07-31 20:37:19 -07001445config FORCEDETH_NAPI
1446 bool "Use Rx and Tx Polling (NAPI) (EXPERIMENTAL)"
1447 depends on FORCEDETH && EXPERIMENTAL
1448 help
1449 NAPI is a new driver API designed to reduce CPU and interrupt load
1450 when the driver is receiving lots of packets from the card. It is
1451 still somewhat experimental and thus not yet enabled by default.
1452
1453 If your estimated Rx load is 10kpps or more, or if the card will be
1454 deployed on potentially unfriendly networks (e.g. in a firewall),
1455 then say Y here.
1456
1457 See <file:Documentation/networking/NAPI_HOWTO.txt> for more
1458 information.
1459
1460 If in doubt, say N.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001461
1462config CS89x0
1463 tristate "CS89x0 support"
Deepak Saxena9c878962006-01-14 13:21:18 -08001464 depends on NET_PCI && (ISA || MACH_IXDP2351 || ARCH_IXDP2X01 || ARCH_PNX010X)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001465 ---help---
1466 Support for CS89x0 chipset based Ethernet cards. If you have a
1467 network (Ethernet) card of this type, say Y and read the
1468 Ethernet-HOWTO, available from
1469 <http://www.tldp.org/docs.html#howto> as well as
1470 <file:Documentation/networking/cs89x0.txt>.
1471
1472 To compile this driver as a module, choose M here and read
1473 <file:Documentation/networking/net-modules.txt>. The module will be
Jean Delvarefd85d762006-01-11 12:17:36 -08001474 called cs89x0.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001475
1476config TC35815
1477 tristate "TOSHIBA TC35815 Ethernet support"
Atsushi Nemotoeea221ce42007-03-03 23:54:59 +09001478 depends on NET_PCI && PCI && MIPS
1479 select MII
Linus Torvalds1da177e2005-04-16 15:20:36 -07001480
1481config DGRS
1482 tristate "Digi Intl. RightSwitch SE-X support"
1483 depends on NET_PCI && (PCI || EISA)
1484 ---help---
1485 This is support for the Digi International RightSwitch series of
1486 PCI/EISA Ethernet switch cards. These include the SE-4 and the SE-6
1487 models. If you have a network card of this type, say Y and read the
1488 Ethernet-HOWTO, available from
1489 <http://www.tldp.org/docs.html#howto>. More specific
1490 information is contained in <file:Documentation/networking/dgrs.txt>.
1491
1492 To compile this driver as a module, choose M here and read
1493 <file:Documentation/networking/net-modules.txt>. The module
1494 will be called dgrs.
1495
1496config EEPRO100
1497 tristate "EtherExpressPro/100 support (eepro100, original Becker driver)"
1498 depends on NET_PCI && PCI
1499 select MII
1500 help
1501 If you have an Intel EtherExpress PRO/100 PCI network (Ethernet)
1502 card, say Y and read the Ethernet-HOWTO, available from
1503 <http://www.tldp.org/docs.html#howto>.
1504
1505 To compile this driver as a module, choose M here and read
1506 <file:Documentation/networking/net-modules.txt>. The module
1507 will be called eepro100.
1508
1509
1510config E100
1511 tristate "Intel(R) PRO/100+ support"
1512 depends on NET_PCI && PCI
1513 select MII
1514 ---help---
1515 This driver supports Intel(R) PRO/100 family of adapters.
1516 To verify that your adapter is supported, find the board ID number
1517 on the adapter. Look for a label that has a barcode and a number
1518 in the format 123456-001 (six digits hyphen three digits).
1519
1520 Use the above information and the Adapter & Driver ID Guide at:
1521
1522 <http://support.intel.com/support/network/adapter/pro100/21397.htm>
1523
1524 to identify the adapter.
1525
1526 For the latest Intel PRO/100 network driver for Linux, see:
1527
1528 <http://appsr.intel.com/scripts-df/support_intel.asp>
1529
1530 More specific information on configuring the driver is in
1531 <file:Documentation/networking/e100.txt>.
1532
1533 To compile this driver as a module, choose M here and read
1534 <file:Documentation/networking/net-modules.txt>. The module
1535 will be called e100.
1536
1537config LNE390
1538 tristate "Mylex EISA LNE390A/B support (EXPERIMENTAL)"
1539 depends on NET_PCI && EISA && EXPERIMENTAL
1540 select CRC32
1541 help
1542 If you have a network (Ethernet) card of this type, say Y and read
1543 the Ethernet-HOWTO, available from
1544 <http://www.tldp.org/docs.html#howto>.
1545
1546 To compile this driver as a module, choose M here and read
1547 <file:Documentation/networking/net-modules.txt>. The module
1548 will be called lne390.
1549
1550config FEALNX
1551 tristate "Myson MTD-8xx PCI Ethernet support"
1552 depends on NET_PCI && PCI
1553 select CRC32
1554 select MII
1555 help
1556 Say Y here to support the Mysom MTD-800 family of PCI-based Ethernet
1557 cards. Specifications and data at
1558 <http://www.myson.com.hk/mtd/datasheet/>.
1559
1560config NATSEMI
1561 tristate "National Semiconductor DP8381x series PCI Ethernet support"
1562 depends on NET_PCI && PCI
1563 select CRC32
1564 help
1565 This driver is for the National Semiconductor DP83810 series,
1566 which is used in cards from PureData, NetGear, Linksys
1567 and others, including the 83815 chip.
1568 More specific information and updates are available from
1569 <http://www.scyld.com/network/natsemi.html>.
1570
1571config NE2K_PCI
1572 tristate "PCI NE2000 and clones support (see help)"
1573 depends on NET_PCI && PCI
1574 select CRC32
1575 ---help---
1576 This driver is for NE2000 compatible PCI cards. It will not work
1577 with ISA NE2000 cards (they have their own driver, "NE2000/NE1000
1578 support" below). If you have a PCI NE2000 network (Ethernet) card,
1579 say Y and read the Ethernet-HOWTO, available from
1580 <http://www.tldp.org/docs.html#howto>.
1581
1582 This driver also works for the following NE2000 clone cards:
1583 RealTek RTL-8029 Winbond 89C940 Compex RL2000 KTI ET32P2
1584 NetVin NV5000SC Via 86C926 SureCom NE34 Winbond
1585 Holtek HT80232 Holtek HT80229
1586
1587 To compile this driver as a module, choose M here and read
1588 <file:Documentation/networking/net-modules.txt>. The module
1589 will be called ne2k-pci.
1590
1591config NE3210
1592 tristate "Novell/Eagle/Microdyne NE3210 EISA support (EXPERIMENTAL)"
1593 depends on NET_PCI && EISA && EXPERIMENTAL
1594 select CRC32
1595 ---help---
1596 If you have a network (Ethernet) card of this type, say Y and read
1597 the Ethernet-HOWTO, available from
1598 <http://www.tldp.org/docs.html#howto>. Note that this driver
1599 will NOT WORK for NE3200 cards as they are completely different.
1600
1601 To compile this driver as a module, choose M here and read
1602 <file:Documentation/networking/net-modules.txt>. The module
1603 will be called ne3210.
1604
1605config ES3210
1606 tristate "Racal-Interlan EISA ES3210 support (EXPERIMENTAL)"
1607 depends on NET_PCI && EISA && EXPERIMENTAL
1608 select CRC32
1609 help
1610 If you have a network (Ethernet) card of this type, say Y and read
1611 the Ethernet-HOWTO, available from
1612 <http://www.tldp.org/docs.html#howto>.
1613
1614 To compile this driver as a module, choose M here and read
1615 <file:Documentation/networking/net-modules.txt>. The module
1616 will be called es3210.
1617
1618config 8139CP
1619 tristate "RealTek RTL-8139 C+ PCI Fast Ethernet Adapter support (EXPERIMENTAL)"
1620 depends on NET_PCI && PCI && EXPERIMENTAL
1621 select CRC32
1622 select MII
1623 help
1624 This is a driver for the Fast Ethernet PCI network cards based on
1625 the RTL8139C+ chips. If you have one of those, say Y and read
1626 the Ethernet-HOWTO, available from
1627 <http://www.tldp.org/docs.html#howto>.
1628
1629 To compile this driver as a module, choose M here: the module
1630 will be called 8139cp. This is recommended.
1631
1632config 8139TOO
Adrian Bunkf04e3f02005-05-16 21:13:03 +02001633 tristate "RealTek RTL-8129/8130/8139 PCI Fast Ethernet Adapter support"
Linus Torvalds1da177e2005-04-16 15:20:36 -07001634 depends on NET_PCI && PCI
1635 select CRC32
1636 select MII
1637 ---help---
1638 This is a driver for the Fast Ethernet PCI network cards based on
Adrian Bunkf04e3f02005-05-16 21:13:03 +02001639 the RTL 8129/8130/8139 chips. If you have one of those, say Y and
1640 read the Ethernet-HOWTO <http://www.tldp.org/docs.html#howto>.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001641
1642 To compile this driver as a module, choose M here: the module
1643 will be called 8139too. This is recommended.
1644
1645config 8139TOO_PIO
1646 bool "Use PIO instead of MMIO"
1647 default y
1648 depends on 8139TOO
1649 help
1650 This instructs the driver to use programmed I/O ports (PIO) instead
1651 of PCI shared memory (MMIO). This can possibly solve some problems
1652 in case your mainboard has memory consistency issues. If unsure,
1653 say N.
1654
1655config 8139TOO_TUNE_TWISTER
1656 bool "Support for uncommon RTL-8139 rev. K (automatic channel equalization)"
1657 depends on 8139TOO
1658 help
1659 This implements a function which might come in handy in case you
1660 are using low quality on long cabling. It is required for RealTek
1661 RTL-8139 revision K boards, and totally unused otherwise. It tries
1662 to match the transceiver to the cable characteristics. This is
1663 experimental since hardly documented by the manufacturer.
1664 If unsure, say Y.
1665
1666config 8139TOO_8129
1667 bool "Support for older RTL-8129/8130 boards"
1668 depends on 8139TOO
1669 help
1670 This enables support for the older and uncommon RTL-8129 and
1671 RTL-8130 chips, which support MII via an external transceiver,
1672 instead of an internal one. Disabling this option will save some
1673 memory by making the code size smaller. If unsure, say Y.
1674
1675config 8139_OLD_RX_RESET
1676 bool "Use older RX-reset method"
1677 depends on 8139TOO
1678 help
1679 The 8139too driver was recently updated to contain a more rapid
1680 reset sequence, in the face of severe receive errors. This "new"
1681 RX-reset method should be adequate for all boards. But if you
1682 experience problems, you can enable this option to restore the
1683 old RX-reset behavior. If unsure, say N.
1684
1685config SIS900
1686 tristate "SiS 900/7016 PCI Fast Ethernet Adapter support"
1687 depends on NET_PCI && PCI
1688 select CRC32
Adrian Bunk6da0f682005-04-30 13:52:49 +02001689 select MII
Linus Torvalds1da177e2005-04-16 15:20:36 -07001690 ---help---
1691 This is a driver for the Fast Ethernet PCI network cards based on
1692 the SiS 900 and SiS 7016 chips. The SiS 900 core is also embedded in
Adrian Bunkc3cf5602006-03-04 17:07:57 +01001693 SiS 630 and SiS 540 chipsets.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001694
1695 This driver also supports AMD 79C901 HomePNA so that you can use
1696 your phone line as a network cable.
1697
1698 To compile this driver as a module, choose M here: the module
1699 will be called sis900. This is recommended.
1700
1701config EPIC100
1702 tristate "SMC EtherPower II"
1703 depends on NET_PCI && PCI
1704 select CRC32
1705 select MII
1706 help
1707 This driver is for the SMC EtherPower II 9432 PCI Ethernet NIC,
1708 which is based on the SMC83c17x (EPIC/100).
1709 More specific information and updates are available from
1710 <http://www.scyld.com/network/epic100.html>.
1711
1712config SUNDANCE
1713 tristate "Sundance Alta support"
1714 depends on NET_PCI && PCI
1715 select CRC32
1716 select MII
1717 help
1718 This driver is for the Sundance "Alta" chip.
1719 More specific information and updates are available from
1720 <http://www.scyld.com/network/sundance.html>.
1721
1722config SUNDANCE_MMIO
1723 bool "Use MMIO instead of PIO"
1724 depends on SUNDANCE
1725 help
1726 Enable memory-mapped I/O for interaction with Sundance NIC registers.
1727 Do NOT enable this by default, PIO (enabled when MMIO is disabled)
1728 is known to solve bugs on certain chips.
1729
1730 If unsure, say N.
1731
1732config TLAN
1733 tristate "TI ThunderLAN support"
1734 depends on NET_PCI && (PCI || EISA) && !64BIT
1735 ---help---
1736 If you have a PCI Ethernet network card based on the ThunderLAN chip
1737 which is supported by this driver, say Y and read the
1738 Ethernet-HOWTO, available from
1739 <http://www.tldp.org/docs.html#howto>.
1740
1741 Devices currently supported by this driver are Compaq Netelligent,
1742 Compaq NetFlex and Olicom cards. Please read the file
1743 <file:Documentation/networking/tlan.txt> for more details.
1744
1745 To compile this driver as a module, choose M here and read
1746 <file:Documentation/networking/net-modules.txt>. The module
1747 will be called tlan.
1748
1749 Please email feedback to <torben.mathiasen@compaq.com>.
1750
1751config VIA_RHINE
1752 tristate "VIA Rhine support"
1753 depends on NET_PCI && PCI
1754 select CRC32
1755 select MII
1756 help
1757 If you have a VIA "Rhine" based network card (Rhine-I (VT86C100A),
1758 Rhine-II (VT6102), or Rhine-III (VT6105)), say Y here. Rhine-type
1759 Ethernet functions can also be found integrated on South Bridges
1760 (e.g. VT8235).
1761
1762 To compile this driver as a module, choose M here. The module
1763 will be called via-rhine.
1764
1765config VIA_RHINE_MMIO
1766 bool "Use MMIO instead of PIO"
1767 depends on VIA_RHINE
1768 help
1769 This instructs the driver to use PCI shared memory (MMIO) instead of
1770 programmed I/O ports (PIO). Enabling this gives an improvement in
1771 processing time in parts of the driver.
1772
1773 If unsure, say Y.
1774
Roger Luethi633949a2006-08-14 23:00:17 -07001775config VIA_RHINE_NAPI
1776 bool "Use Rx Polling (NAPI)"
1777 depends on VIA_RHINE
1778 help
1779 NAPI is a new driver API designed to reduce CPU and interrupt load
1780 when the driver is receiving lots of packets from the card.
1781
1782 If your estimated Rx load is 10kpps or more, or if the card will be
1783 deployed on potentially unfriendly networks (e.g. in a firewall),
1784 then say Y here.
1785
1786 See <file:Documentation/networking/NAPI_HOWTO.txt> for more
1787 information.
1788
Linus Torvalds1da177e2005-04-16 15:20:36 -07001789config LAN_SAA9730
Ralf Baechlef2b67c72006-11-29 17:10:38 +00001790 bool "Philips SAA9730 Ethernet support"
1791 depends on NET_PCI && PCI && MIPS_ATLAS
Linus Torvalds1da177e2005-04-16 15:20:36 -07001792 help
1793 The SAA9730 is a combined multimedia and peripheral controller used
1794 in thin clients, Internet access terminals, and diskless
1795 workstations.
1796 See <http://www.semiconductors.philips.com/pip/SAA9730_flyer_1>.
1797
Cesar Eduardo Barrosbf345702006-12-19 13:08:47 -08001798config SC92031
1799 tristate "Silan SC92031 PCI Fast Ethernet Adapter driver (EXPERIMENTAL)"
1800 depends on NET_PCI && PCI && EXPERIMENTAL
1801 select CRC32
1802 ---help---
1803 This is a driver for the Fast Ethernet PCI network cards based on
1804 the Silan SC92031 chip (sometimes also called Rsltek 8139D). If you
1805 have one of these, say Y here.
1806
1807 To compile this driver as a module, choose M here: the module
1808 will be called sc92031. This is recommended.
1809
Linus Torvalds1da177e2005-04-16 15:20:36 -07001810config NET_POCKET
1811 bool "Pocket and portable adapters"
Jan Engelhardtd1c0a652007-06-13 12:48:53 -07001812 depends on PARPORT
Linus Torvalds1da177e2005-04-16 15:20:36 -07001813 ---help---
1814 Cute little network (Ethernet) devices which attach to the parallel
1815 port ("pocket adapters"), commonly used with laptops. If you have
1816 one of those, say Y and read the Ethernet-HOWTO, available from
1817 <http://www.tldp.org/docs.html#howto>.
1818
1819 If you want to plug a network (or some other) card into the PCMCIA
1820 (or PC-card) slot of your laptop instead (PCMCIA is the standard for
1821 credit card size extension cards used by all modern laptops), you
1822 need the pcmcia-cs package (location contained in the file
1823 <file:Documentation/Changes>) and you can say N here.
1824
1825 Laptop users should read the Linux Laptop home page at
1826 <http://www.linux-on-laptops.com/> or
1827 Tuxmobil - Linux on Mobile Computers at <http://www.tuxmobil.org/>.
1828
1829 Note that the answer to this question doesn't directly affect the
1830 kernel: saying N will just cause the configurator to skip all
1831 the questions about this class of network devices. If you say Y, you
1832 will be asked for your specific device in the following questions.
1833
1834config ATP
1835 tristate "AT-LAN-TEC/RealTek pocket adapter support"
Grant Coady32fa2bf2005-09-10 00:14:05 +10001836 depends on NET_POCKET && PARPORT && X86
Linus Torvalds1da177e2005-04-16 15:20:36 -07001837 select CRC32
1838 ---help---
1839 This is a network (Ethernet) device which attaches to your parallel
1840 port. Read <file:drivers/net/atp.c> as well as the Ethernet-HOWTO,
1841 available from <http://www.tldp.org/docs.html#howto>, if you
1842 want to use this. If you intend to use this driver, you should have
1843 said N to the "Parallel printer support", because the two drivers
1844 don't like each other.
1845
1846 To compile this driver as a module, choose M here: the module
1847 will be called atp.
1848
1849config DE600
1850 tristate "D-Link DE600 pocket adapter support"
Grant Coady32fa2bf2005-09-10 00:14:05 +10001851 depends on NET_POCKET && PARPORT
Linus Torvalds1da177e2005-04-16 15:20:36 -07001852 ---help---
1853 This is a network (Ethernet) device which attaches to your parallel
1854 port. Read <file:Documentation/networking/DLINK.txt> as well as the
1855 Ethernet-HOWTO, available from
1856 <http://www.tldp.org/docs.html#howto>, if you want to use
1857 this. It is possible to have several devices share a single parallel
1858 port and it is safe to compile the corresponding drivers into the
1859 kernel.
1860
1861 To compile this driver as a module, choose M here: the module
1862 will be called de600.
1863
1864config DE620
1865 tristate "D-Link DE620 pocket adapter support"
Grant Coady32fa2bf2005-09-10 00:14:05 +10001866 depends on NET_POCKET && PARPORT
Linus Torvalds1da177e2005-04-16 15:20:36 -07001867 ---help---
1868 This is a network (Ethernet) device which attaches to your parallel
1869 port. Read <file:Documentation/networking/DLINK.txt> as well as the
1870 Ethernet-HOWTO, available from
1871 <http://www.tldp.org/docs.html#howto>, if you want to use
1872 this. It is possible to have several devices share a single parallel
1873 port and it is safe to compile the corresponding drivers into the
1874 kernel.
1875
1876 To compile this driver as a module, choose M here: the module
1877 will be called de620.
1878
1879config SGISEEQ
1880 tristate "SGI Seeq ethernet controller support"
Jan Engelhardtd1c0a652007-06-13 12:48:53 -07001881 depends on SGI_IP22
Linus Torvalds1da177e2005-04-16 15:20:36 -07001882 help
1883 Say Y here if you have an Seeq based Ethernet network card. This is
1884 used in many Silicon Graphics machines.
1885
1886config DECLANCE
1887 tristate "DEC LANCE ethernet controller support"
Jan Engelhardtd1c0a652007-06-13 12:48:53 -07001888 depends on MACH_DECSTATION
Linus Torvalds1da177e2005-04-16 15:20:36 -07001889 select CRC32
1890 help
1891 This driver is for the series of Ethernet controllers produced by
1892 DEC (now Compaq) based on the AMD Lance chipset, including the
1893 DEPCA series. (This chipset is better known via the NE2100 cards.)
1894
1895config 68360_ENET
1896 bool "Motorola 68360 ethernet controller"
1897 depends on M68360
1898 help
1899 Say Y here if you want to use the built-in ethernet controller of
1900 the Motorola 68360 processor.
1901
1902config FEC
Greg Ungerer2af69212005-09-12 11:18:10 +10001903 bool "FEC ethernet controller (of ColdFire CPUs)"
Greg Ungerer892b6252006-01-10 16:58:16 +10001904 depends on M523x || M527x || M5272 || M528x || M520x
Linus Torvalds1da177e2005-04-16 15:20:36 -07001905 help
1906 Say Y here if you want to use the built-in 10/100 Fast ethernet
Greg Ungerer2af69212005-09-12 11:18:10 +10001907 controller on some Motorola ColdFire processors.
1908
1909config FEC2
1910 bool "Second FEC ethernet controller (on some ColdFire CPUs)"
1911 depends on FEC
1912 help
1913 Say Y here if you want to use the second built-in 10/100 Fast
1914 ethernet controller on some Motorola ColdFire processors.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001915
1916config NE_H8300
1917 tristate "NE2000 compatible support for H8/300"
Jan Engelhardtd1c0a652007-06-13 12:48:53 -07001918 depends on H8300
Linus Torvalds1da177e2005-04-16 15:20:36 -07001919 help
1920 Say Y here if you want to use the NE2000 compatible
1921 controller on the Renesas H8/300 processor.
1922
1923source "drivers/net/fec_8xx/Kconfig"
Pantelis Antoniou48257c42005-10-28 16:25:58 -04001924source "drivers/net/fs_enet/Kconfig"
Linus Torvalds1da177e2005-04-16 15:20:36 -07001925
Jan Engelhardtd1c0a652007-06-13 12:48:53 -07001926endif # NET_ETHERNET
Linus Torvalds1da177e2005-04-16 15:20:36 -07001927
1928#
1929# Gigabit Ethernet
1930#
1931
Jan Engelhardtf30486d2007-05-10 22:52:56 -07001932menuconfig NETDEV_1000
1933 bool "Ethernet (1000 Mbit)"
Randy Dunlapcbcd2a42005-07-27 13:04:35 -07001934 depends on !UML
Jan Engelhardtf30486d2007-05-10 22:52:56 -07001935 default y
1936
1937if NETDEV_1000
Linus Torvalds1da177e2005-04-16 15:20:36 -07001938
1939config ACENIC
1940 tristate "Alteon AceNIC/3Com 3C985/NetGear GA620 Gigabit support"
1941 depends on PCI
1942 ---help---
1943 Say Y here if you have an Alteon AceNIC, 3Com 3C985(B), NetGear
1944 GA620, SGI Gigabit or Farallon PN9000-SX PCI Gigabit Ethernet
1945 adapter. The driver allows for using the Jumbo Frame option (9000
1946 bytes/frame) however it requires that your switches can handle this
1947 as well. To enable Jumbo Frames, add `mtu 9000' to your ifconfig
1948 line.
1949
1950 To compile this driver as a module, choose M here: the
1951 module will be called acenic.
1952
1953config ACENIC_OMIT_TIGON_I
1954 bool "Omit support for old Tigon I based AceNICs"
1955 depends on ACENIC
1956 help
1957 Say Y here if you only have Tigon II based AceNICs and want to leave
1958 out support for the older Tigon I based cards which are no longer
1959 being sold (ie. the original Alteon AceNIC and 3Com 3C985 (non B
1960 version)). This will reduce the size of the driver object by
1961 app. 100KB. If you are not sure whether your card is a Tigon I or a
1962 Tigon II, say N here.
1963
1964 The safe and default value for this is N.
1965
1966config DL2K
1967 tristate "D-Link DL2000-based Gigabit Ethernet support"
1968 depends on PCI
1969 select CRC32
1970 help
1971 This driver supports D-Link 2000-based gigabit ethernet cards, which
1972 includes
1973 D-Link DGE-550T Gigabit Ethernet Adapter.
1974 D-Link DL2000-based Gigabit Ethernet Adapter.
1975
1976 To compile this driver as a module, choose M here: the
1977 module will be called dl2k.
1978
1979config E1000
1980 tristate "Intel(R) PRO/1000 Gigabit Ethernet support"
1981 depends on PCI
1982 ---help---
1983 This driver supports Intel(R) PRO/1000 gigabit ethernet family of
1984 adapters. For more information on how to identify your adapter, go
1985 to the Adapter & Driver ID Guide at:
1986
1987 <http://support.intel.com/support/network/adapter/pro100/21397.htm>
1988
1989 For general information and support, go to the Intel support
1990 website at:
1991
1992 <http://support.intel.com>
1993
1994 More specific information on configuring the driver is in
1995 <file:Documentation/networking/e1000.txt>.
1996
1997 To compile this driver as a module, choose M here and read
1998 <file:Documentation/networking/net-modules.txt>. The module
1999 will be called e1000.
2000
2001config E1000_NAPI
2002 bool "Use Rx Polling (NAPI)"
2003 depends on E1000
2004 help
2005 NAPI is a new driver API designed to reduce CPU and interrupt load
2006 when the driver is receiving lots of packets from the card. It is
2007 still somewhat experimental and thus not yet enabled by default.
2008
2009 If your estimated Rx load is 10kpps or more, or if the card will be
2010 deployed on potentially unfriendly networks (e.g. in a firewall),
2011 then say Y here.
2012
2013 See <file:Documentation/networking/NAPI_HOWTO.txt> for more
2014 information.
2015
2016 If in doubt, say N.
2017
Jesse Brandeburg35ec56b2006-01-18 13:01:30 -08002018config E1000_DISABLE_PACKET_SPLIT
2019 bool "Disable Packet Split for PCI express adapters"
2020 depends on E1000
2021 help
2022 Say Y here if you want to use the legacy receive path for PCI express
James Ring9e6b4872006-03-22 00:51:11 +01002023 hardware.
Jesse Brandeburg35ec56b2006-01-18 13:01:30 -08002024
2025 If in doubt, say N.
2026
Lennert Buytenhek15d014d2005-11-11 18:23:13 +01002027source "drivers/net/ixp2000/Kconfig"
2028
Linus Torvalds1da177e2005-04-16 15:20:36 -07002029config MYRI_SBUS
2030 tristate "MyriCOM Gigabit Ethernet support"
2031 depends on SBUS
2032 help
2033 This driver supports MyriCOM Sbus gigabit Ethernet cards.
2034
2035 To compile this driver as a module, choose M here: the module
2036 will be called myri_sbus. This is recommended.
2037
2038config NS83820
Jon Mason47c51432006-02-12 11:53:04 -06002039 tristate "National Semiconductor DP83820 support"
Linus Torvalds1da177e2005-04-16 15:20:36 -07002040 depends on PCI
2041 help
2042 This is a driver for the National Semiconductor DP83820 series
2043 of gigabit ethernet MACs. Cards using this chipset include
2044 the D-Link DGE-500T, PureData's PDP8023Z-TG, SMC's SMC9462TX,
2045 SOHO-GA2000T, SOHO-GA2500T. The driver supports the use of
2046 zero copy.
2047
2048config HAMACHI
2049 tristate "Packet Engines Hamachi GNIC-II support"
2050 depends on PCI
2051 select MII
2052 help
2053 If you have a Gigabit Ethernet card of this type, say Y and read
2054 the Ethernet-HOWTO, available from
2055 <http://www.tldp.org/docs.html#howto>.
2056
2057 To compile this driver as a module, choose M here and read
2058 <file:Documentation/networking/net-modules.txt>. The module will be
2059 called hamachi.
2060
2061config YELLOWFIN
2062 tristate "Packet Engines Yellowfin Gigabit-NIC support (EXPERIMENTAL)"
2063 depends on PCI && EXPERIMENTAL
2064 select CRC32
2065 ---help---
2066 Say Y here if you have a Packet Engines G-NIC PCI Gigabit Ethernet
2067 adapter or the SYM53C885 Ethernet controller. The Gigabit adapter is
2068 used by the Beowulf Linux cluster project. See
2069 <http://cesdis.gsfc.nasa.gov/linux/drivers/yellowfin.html> for more
2070 information about this driver in particular and Beowulf in general.
2071
2072 To compile this driver as a module, choose M here: the module
2073 will be called yellowfin. This is recommended.
2074
2075config R8169
2076 tristate "Realtek 8169 gigabit ethernet support"
2077 depends on PCI
2078 select CRC32
2079 ---help---
2080 Say Y here if you have a Realtek 8169 PCI Gigabit Ethernet adapter.
2081
2082 To compile this driver as a module, choose M here: the module
2083 will be called r8169. This is recommended.
2084
2085config R8169_NAPI
2086 bool "Use Rx and Tx Polling (NAPI) (EXPERIMENTAL)"
2087 depends on R8169 && EXPERIMENTAL
2088 help
2089 NAPI is a new driver API designed to reduce CPU and interrupt load
2090 when the driver is receiving lots of packets from the card. It is
2091 still somewhat experimental and thus not yet enabled by default.
2092
2093 If your estimated Rx load is 10kpps or more, or if the card will be
2094 deployed on potentially unfriendly networks (e.g. in a firewall),
2095 then say Y here.
2096
2097 See <file:Documentation/networking/NAPI_HOWTO.txt> for more
2098 information.
2099
2100 If in doubt, say N.
2101
2102config R8169_VLAN
2103 bool "VLAN support"
2104 depends on R8169 && VLAN_8021Q
2105 ---help---
2106 Say Y here for the r8169 driver to support the functions required
2107 by the kernel 802.1Q code.
2108
2109 If in doubt, say Y.
2110
Francois Romieu890e8d02005-07-30 13:08:43 +02002111config SIS190
Francois Romieue7976372005-09-03 00:57:51 +02002112 tristate "SiS190/SiS191 gigabit ethernet support"
Adrian Bunke9985d52005-08-09 02:41:00 +02002113 depends on PCI
2114 select CRC32
2115 select MII
2116 ---help---
Francois Romieue7976372005-09-03 00:57:51 +02002117 Say Y here if you have a SiS 190 PCI Fast Ethernet adapter or
2118 a SiS 191 PCI Gigabit Ethernet adapter. Both are expected to
2119 appear in lan on motherboard designs which are based on SiS 965
2120 and SiS 966 south bridge.
Francois Romieu890e8d02005-07-30 13:08:43 +02002121
Adrian Bunke9985d52005-08-09 02:41:00 +02002122 To compile this driver as a module, choose M here: the module
2123 will be called sis190. This is recommended.
Francois Romieu890e8d02005-07-30 13:08:43 +02002124
Stephen Hemmingerbaef58b2005-05-12 20:14:36 -04002125config SKGE
Stephen Hemminger7a160c72006-02-13 15:48:08 -08002126 tristate "New SysKonnect GigaEthernet support"
2127 depends on PCI
Stephen Hemmingerbaef58b2005-05-12 20:14:36 -04002128 select CRC32
2129 ---help---
2130 This driver support the Marvell Yukon or SysKonnect SK-98xx/SK-95xx
2131 and related Gigabit Ethernet adapters. It is a new smaller driver
Stephen Hemminger46a60f22005-09-09 12:54:56 -07002132 with better performance and more complete ethtool support.
Stephen Hemmingerbaef58b2005-05-12 20:14:36 -04002133
2134 It does not support the link failover and network management
Jeff Garzike1abecc2007-07-10 12:58:33 -04002135 features available in the hardware.
Stephen Hemmingercd28ab62005-08-16 16:36:49 -07002136
Daniel Drakec6f0d752006-01-21 19:35:34 +00002137 This driver supports adapters based on the original Yukon chipset:
2138 Marvell 88E8001, Belkin F5D5005, CNet GigaCard, DLink DGE-530T,
2139 Linksys EG1032/EG1064, 3Com 3C940/3C940B, SysKonnect SK-9871/9872.
2140
2141 It does not support the newer Yukon2 chipset: a separate driver,
2142 sky2, is provided for Yukon2-based adapters.
2143
2144 To compile this driver as a module, choose M here: the module
2145 will be called skge. This is recommended.
Stephen Hemmingercd28ab62005-08-16 16:36:49 -07002146
2147config SKY2
Stephen Hemminger8a3e3bf2007-07-09 15:33:38 -07002148 tristate "SysKonnect Yukon2 support"
Stephen Hemmingerf479b322006-10-27 10:22:10 -07002149 depends on PCI
Stephen Hemmingercd28ab62005-08-16 16:36:49 -07002150 select CRC32
2151 ---help---
Matt LaPlantecab00892006-10-03 22:36:44 +02002152 This driver supports Gigabit Ethernet adapters based on the
Daniel Drakec6f0d752006-01-21 19:35:34 +00002153 Marvell Yukon 2 chipset:
2154 Marvell 88E8021/88E8022/88E8035/88E8036/88E8038/88E8050/88E8052/
2155 88E8053/88E8055/88E8061/88E8062, SysKonnect SK-9E21D/SK-9S21
2156
Stephen Hemmingerf479b322006-10-27 10:22:10 -07002157 There is companion driver for the older Marvell Yukon and
2158 Genesis based adapters: skge.
Stephen Hemmingercd28ab62005-08-16 16:36:49 -07002159
2160 To compile this driver as a module, choose M here: the module
2161 will be called sky2. This is recommended.
2162
Stephen Hemminger3cf26752007-07-09 15:33:35 -07002163config SKY2_DEBUG
2164 bool "Debugging interface"
2165 depends on SKY2 && DEBUG_FS
2166 help
2167 This option adds the ability to dump driver state for debugging.
2168 The file debugfs/sky2/ethX displays the state of the internal
2169 transmit and receive rings.
Daniel Drakec6f0d752006-01-21 19:35:34 +00002170
Stephen Hemminger3cf26752007-07-09 15:33:35 -07002171 If unsure, say N.
Linus Torvalds1da177e2005-04-16 15:20:36 -07002172
2173config VIA_VELOCITY
2174 tristate "VIA Velocity support"
Yoichi Yuasa73815532007-05-24 16:12:27 +09002175 depends on PCI
Linus Torvalds1da177e2005-04-16 15:20:36 -07002176 select CRC32
2177 select CRC_CCITT
2178 select MII
2179 help
2180 If you have a VIA "Velocity" based network card say Y here.
2181
2182 To compile this driver as a module, choose M here. The module
2183 will be called via-velocity.
2184
2185config TIGON3
2186 tristate "Broadcom Tigon3 support"
2187 depends on PCI
2188 help
2189 This driver supports Broadcom Tigon3 based gigabit Ethernet cards.
2190
2191 To compile this driver as a module, choose M here: the module
2192 will be called tg3. This is recommended.
2193
Michael Chanb6016b72005-05-26 13:03:09 -07002194config BNX2
2195 tristate "Broadcom NetXtremeII support"
2196 depends on PCI
Michael Chanfba9fe92006-06-12 22:21:25 -07002197 select CRC32
2198 select ZLIB_INFLATE
Michael Chanb6016b72005-05-26 13:03:09 -07002199 help
2200 This driver supports Broadcom NetXtremeII gigabit Ethernet cards.
2201
2202 To compile this driver as a module, choose M here: the module
2203 will be called bnx2. This is recommended.
2204
Jens Osterkampaaec0fa2005-09-05 15:19:29 -07002205config SPIDER_NET
2206 tristate "Spider Gigabit Ethernet driver"
Kou Ishizaki3342cf0e2007-02-20 16:36:14 -06002207 depends on PCI && (PPC_IBM_CELL_BLADE || PPC_CELLEB)
Christoph Hellwig9b158792006-03-15 11:30:44 +01002208 select FW_LOADER
Jens Osterkampaaec0fa2005-09-05 15:19:29 -07002209 help
2210 This driver supports the Gigabit Ethernet chips present on the
2211 Cell Processor-Based Blades from IBM.
2212
Zang Roy-r619115e123b82006-11-08 19:49:13 -08002213config TSI108_ETH
2214 tristate "Tundra TSI108 gigabit Ethernet support"
2215 depends on TSI108_BRIDGE
2216 help
2217 This driver supports Tundra TSI108 gigabit Ethernet ports.
2218 To compile this driver as a module, choose M here: the module
2219 will be called tsi108_eth.
2220
Masakazu Mokuno02c18892007-07-05 20:11:16 +09002221config GELIC_NET
2222 tristate "PS3 Gigabit Ethernet driver"
2223 depends on PPC_PS3
2224 help
2225 This driver supports the network device on the PS3 game
2226 console. This driver has built-in support for Ethernet.
2227
2228 To compile this driver as a module, choose M here: the
2229 module will be called ps3_gelic.
2230
Linus Torvalds1da177e2005-04-16 15:20:36 -07002231config GIANFAR
2232 tristate "Gianfar Ethernet"
Jon Loeligeref82a3062006-06-17 17:52:55 -05002233 depends on 85xx || 83xx || PPC_86xx
Andy Flemingbb40dcb2005-09-23 22:54:21 -04002234 select PHYLIB
Dave Jiangbf41a7c2007-04-12 10:57:06 -07002235 select CRC32
Linus Torvalds1da177e2005-04-16 15:20:36 -07002236 help
Jon Loeligeref82a3062006-06-17 17:52:55 -05002237 This driver supports the Gigabit TSEC on the MPC83xx, MPC85xx,
2238 and MPC86xx family of chips, and the FEC on the 8540.
Linus Torvalds1da177e2005-04-16 15:20:36 -07002239
2240config GFAR_NAPI
2241 bool "NAPI Support"
2242 depends on GIANFAR
2243
Li Yangce973b12006-08-14 23:00:11 -07002244config UCC_GETH
Timur Tabi7d776cb2007-03-12 15:40:27 -05002245 tristate "Freescale QE Gigabit Ethernet"
2246 depends on QUICC_ENGINE
Jan Altenberg296baae2007-06-01 00:46:29 -07002247 select PHYLIB
Li Yangce973b12006-08-14 23:00:11 -07002248 help
Timur Tabi7d776cb2007-03-12 15:40:27 -05002249 This driver supports the Gigabit Ethernet mode of the QUICC Engine,
2250 which is available on some Freescale SOCs.
Li Yangce973b12006-08-14 23:00:11 -07002251
2252config UGETH_NAPI
2253 bool "NAPI Support"
2254 depends on UCC_GETH
2255
2256config UGETH_MAGIC_PACKET
2257 bool "Magic Packet detection support"
2258 depends on UCC_GETH
2259
2260config UGETH_FILTERING
2261 bool "Mac address filtering support"
2262 depends on UCC_GETH
2263
Michael Reissd5b90492007-04-13 01:26:19 -05002264config UGETH_TX_ON_DEMAND
2265 bool "Transmit on Demand support"
Li Yangce973b12006-08-14 23:00:11 -07002266 depends on UCC_GETH
2267
Linus Torvalds1da177e2005-04-16 15:20:36 -07002268config MV643XX_ETH
2269 tristate "MV-643XX Ethernet support"
Ralf Baechle688b3d72007-07-09 16:29:16 +01002270 depends on MV64360 || MV64X60 || (PPC_MULTIPLATFORM && PPC32)
Dale Farnsworthcd6478c2006-03-03 10:01:08 -07002271 select MII
Linus Torvalds1da177e2005-04-16 15:20:36 -07002272 help
2273 This driver supports the gigabit Ethernet on the Marvell MV643XX
2274 chipset which is used in the Momenco Ocelot C and Jaguar ATX and
2275 Pegasos II, amongst other PPC and MIPS boards.
2276
Ron Mercer5a4faa872006-07-25 00:40:21 -07002277config QLA3XXX
2278 tristate "QLogic QLA3XXX Network Driver Support"
2279 depends on PCI
2280 help
2281 This driver supports QLogic ISP3XXX gigabit Ethernet cards.
2282
2283 To compile this driver as a module, choose M here: the module
2284 will be called qla3xxx.
2285
Jay Cliburnf3cc28c2007-02-08 10:42:37 -05002286config ATL1
2287 tristate "Attansic L1 Gigabit Ethernet support (EXPERIMENTAL)"
Jay Cliburna1ca14b2007-02-14 20:12:13 -06002288 depends on PCI && EXPERIMENTAL
Jay Cliburnf3cc28c2007-02-08 10:42:37 -05002289 select CRC32
2290 select MII
2291 help
2292 This driver supports the Attansic L1 gigabit ethernet adapter.
2293
2294 To compile this driver as a module, choose M here. The module
2295 will be called atl1.
2296
Jan Engelhardtf30486d2007-05-10 22:52:56 -07002297endif # NETDEV_1000
Linus Torvalds1da177e2005-04-16 15:20:36 -07002298
2299#
2300# 10 Gigabit Ethernet
2301#
2302
Jan Engelhardtf30486d2007-05-10 22:52:56 -07002303menuconfig NETDEV_10000
2304 bool "Ethernet (10000 Mbit)"
Randy Dunlapcbcd2a42005-07-27 13:04:35 -07002305 depends on !UML
Jan Engelhardtf30486d2007-05-10 22:52:56 -07002306 default y
2307
2308if NETDEV_10000
Linus Torvalds1da177e2005-04-16 15:20:36 -07002309
Christoph Lameter8199d3a2005-03-30 13:34:31 -08002310config CHELSIO_T1
2311 tristate "Chelsio 10Gb Ethernet support"
2312 depends on PCI
Stephen Hemminger57834ca2006-12-01 16:36:19 -08002313 select CRC32
Christoph Lameter8199d3a2005-03-30 13:34:31 -08002314 help
Stephen Hemmingerf1d3d382006-12-01 16:36:16 -08002315 This driver supports Chelsio gigabit and 10-gigabit
2316 Ethernet cards. More information about adapter features and
2317 performance tuning is in <file:Documentation/networking/cxgb.txt>.
Christoph Lameter8199d3a2005-03-30 13:34:31 -08002318
2319 For general information about Chelsio and our products, visit
2320 our website at <http://www.chelsio.com>.
2321
2322 For customer support, please visit our customer support page at
2323 <http://www.chelsio.com/support.htm>.
2324
2325 Please send feedback to <linux-bugs@chelsio.com>.
2326
2327 To compile this driver as a module, choose M here: the module
2328 will be called cxgb.
2329
Stephen Hemminger352c4172006-12-01 16:36:17 -08002330config CHELSIO_T1_1G
2331 bool "Chelsio gigabit Ethernet support"
2332 depends on CHELSIO_T1
2333 help
2334 Enables support for Chelsio's gigabit Ethernet PCI cards. If you
2335 are using only 10G cards say 'N' here.
2336
Stephen Hemminger7fe26a62006-12-08 11:08:33 -08002337config CHELSIO_T1_NAPI
2338 bool "Use Rx Polling (NAPI)"
2339 depends on CHELSIO_T1
2340 default y
2341 help
2342 NAPI is a driver API designed to reduce CPU and interrupt load
2343 when the driver is receiving lots of packets from the card.
2344
Divy Le Ray4d22de32007-01-18 22:04:14 -05002345config CHELSIO_T3
Divy Le Ray194c1fb2007-03-21 19:21:00 -07002346 tristate "Chelsio Communications T3 10Gb Ethernet support"
2347 depends on PCI
Divy Le Ray2e283962007-03-18 13:10:06 -07002348 select FW_LOADER
Divy Le Ray194c1fb2007-03-21 19:21:00 -07002349 help
2350 This driver supports Chelsio T3-based gigabit and 10Gb Ethernet
2351 adapters.
Divy Le Ray4d22de32007-01-18 22:04:14 -05002352
Divy Le Ray194c1fb2007-03-21 19:21:00 -07002353 For general information about Chelsio and our products, visit
2354 our website at <http://www.chelsio.com>.
Divy Le Ray4d22de32007-01-18 22:04:14 -05002355
Divy Le Ray194c1fb2007-03-21 19:21:00 -07002356 For customer support, please visit our customer support page at
2357 <http://www.chelsio.com/support.htm>.
Divy Le Ray4d22de32007-01-18 22:04:14 -05002358
Divy Le Ray194c1fb2007-03-21 19:21:00 -07002359 Please send feedback to <linux-bugs@chelsio.com>.
Divy Le Ray4d22de32007-01-18 22:04:14 -05002360
Divy Le Ray194c1fb2007-03-21 19:21:00 -07002361 To compile this driver as a module, choose M here: the module
2362 will be called cxgb3.
Divy Le Ray4d22de32007-01-18 22:04:14 -05002363
Jan-Bernd Themann7a291082006-09-13 17:44:31 +02002364config EHEA
2365 tristate "eHEA Ethernet support"
2366 depends on IBMEBUS
2367 ---help---
2368 This driver supports the IBM pSeries eHEA ethernet adapter.
2369
2370 To compile the driver as a module, choose M here. The module
2371 will be called ehea.
2372
Linus Torvalds1da177e2005-04-16 15:20:36 -07002373config IXGB
2374 tristate "Intel(R) PRO/10GbE support"
2375 depends on PCI
2376 ---help---
2377 This driver supports Intel(R) PRO/10GbE family of
2378 adapters. For more information on how to identify your adapter, go
2379 to the Adapter & Driver ID Guide at:
2380
2381 <http://support.intel.com/support/network/adapter/pro100/21397.htm>
2382
2383 For general information and support, go to the Intel support
2384 website at:
2385
2386 <http://support.intel.com>
2387
2388 More specific information on configuring the driver is in
2389 <file:Documentation/networking/ixgb.txt>.
2390
2391 To compile this driver as a module, choose M here and read
2392 <file:Documentation/networking/net-modules.txt>. The module
2393 will be called ixgb.
2394
2395config IXGB_NAPI
2396 bool "Use Rx Polling (NAPI) (EXPERIMENTAL)"
2397 depends on IXGB && EXPERIMENTAL
2398 help
2399 NAPI is a new driver API designed to reduce CPU and interrupt load
2400 when the driver is receiving lots of packets from the card. It is
2401 still somewhat experimental and thus not yet enabled by default.
2402
2403 If your estimated Rx load is 10kpps or more, or if the card will be
2404 deployed on potentially unfriendly networks (e.g. in a firewall),
2405 then say Y here.
2406
2407 See <file:Documentation/networking/NAPI_HOWTO.txt> for more
2408 information.
2409
2410 If in doubt, say N.
2411
2412config S2IO
2413 tristate "S2IO 10Gbe XFrame NIC"
2414 depends on PCI
2415 ---help---
2416 This driver supports the 10Gbe XFrame NIC of S2IO.
Akinobu Mita9eb343a2005-10-21 19:06:42 +09002417 More specific information on configuring the driver is in
2418 <file:Documentation/networking/s2io.txt>.
Linus Torvalds1da177e2005-04-16 15:20:36 -07002419
2420config S2IO_NAPI
2421 bool "Use Rx Polling (NAPI) (EXPERIMENTAL)"
2422 depends on S2IO && EXPERIMENTAL
2423 help
2424 NAPI is a new driver API designed to reduce CPU and interrupt load
2425 when the driver is receiving lots of packets from the card. It is
2426 still somewhat experimental and thus not yet enabled by default.
2427
2428 If your estimated Rx load is 10kpps or more, or if the card will be
2429 deployed on potentially unfriendly networks (e.g. in a firewall),
2430 then say Y here.
2431
2432 See <file:Documentation/networking/NAPI_HOWTO.txt> for more
2433 information.
2434
2435 If in doubt, say N.
2436
Brice Goglin0da34b62006-05-23 06:10:15 -04002437config MYRI10GE
2438 tristate "Myricom Myri-10G Ethernet support"
2439 depends on PCI
2440 select FW_LOADER
2441 select CRC32
2442 ---help---
2443 This driver supports Myricom Myri-10G Dual Protocol interface in
2444 Ethernet mode. If the eeprom on your board is not recent enough,
2445 you will need a newer firmware image.
2446 You may get this image or more information, at:
2447
Brice Goglind2794902006-09-05 21:58:50 -04002448 <http://www.myri.com/scs/download-Myri10GE.html>
Brice Goglin0da34b62006-05-23 06:10:15 -04002449
2450 To compile this driver as a module, choose M here and read
2451 <file:Documentation/networking/net-modules.txt>. The module
2452 will be called myri10ge.
2453
Amit S. Kale3d396eb2006-10-21 15:33:03 -04002454config NETXEN_NIC
2455 tristate "NetXen Multi port (1/10) Gigabit Ethernet NIC"
Randy Dunlap5ac36612006-11-16 21:39:11 -08002456 depends on PCI
Amit S. Kale3d396eb2006-10-21 15:33:03 -04002457 help
2458 This enables the support for NetXen's Gigabit Ethernet card.
2459
Olof Johanssonf5cd7872007-01-31 21:43:54 -06002460config PASEMI_MAC
2461 tristate "PA Semi 1/10Gbit MAC"
2462 depends on PPC64 && PCI
Olof Johanssonbb6e9592007-05-08 00:47:54 -05002463 select PHYLIB
Olof Johanssonf5cd7872007-01-31 21:43:54 -06002464 help
2465 This driver supports the on-chip 1/10Gbit Ethernet controller on
2466 PA Semi's PWRficient line of chips.
2467
Roland Dreier225c7b12007-05-08 18:00:38 -07002468config MLX4_CORE
2469 tristate
2470 depends on PCI
2471 default n
2472
2473config MLX4_DEBUG
2474 bool "Verbose debugging output" if (MLX4_CORE && EMBEDDED)
Paul Mundtf550d942007-05-10 12:50:28 +09002475 depends on MLX4_CORE
Roland Dreier225c7b12007-05-08 18:00:38 -07002476 default y
2477 ---help---
2478 This option causes debugging code to be compiled into the
2479 mlx4_core driver. The output can be turned on via the
2480 debug_level module parameter (which can also be set after
2481 the driver is loaded through sysfs).
2482
Jan Engelhardtf30486d2007-05-10 22:52:56 -07002483endif # NETDEV_10000
Linus Torvalds1da177e2005-04-16 15:20:36 -07002484
Linus Torvalds1da177e2005-04-16 15:20:36 -07002485source "drivers/net/tokenring/Kconfig"
2486
2487source "drivers/net/wireless/Kconfig"
2488
Jeff Garzik5b2fc492007-05-09 21:31:55 -04002489source "drivers/net/usb/Kconfig"
2490
Linus Torvalds1da177e2005-04-16 15:20:36 -07002491source "drivers/net/pcmcia/Kconfig"
Linus Torvalds1da177e2005-04-16 15:20:36 -07002492
2493source "drivers/net/wan/Kconfig"
2494
2495source "drivers/atm/Kconfig"
2496
2497source "drivers/s390/net/Kconfig"
2498
2499config ISERIES_VETH
2500 tristate "iSeries Virtual Ethernet driver support"
Randy Dunlapcbcd2a42005-07-27 13:04:35 -07002501 depends on PPC_ISERIES
Linus Torvalds1da177e2005-04-16 15:20:36 -07002502
Matt Porterf89efd52005-09-09 12:10:10 -07002503config RIONET
2504 tristate "RapidIO Ethernet over messaging driver support"
Randy Dunlapa81c52a2006-11-01 21:18:58 -08002505 depends on RAPIDIO
Matt Porterf89efd52005-09-09 12:10:10 -07002506
2507config RIONET_TX_SIZE
2508 int "Number of outbound queue entries"
2509 depends on RIONET
2510 default "128"
2511
2512config RIONET_RX_SIZE
2513 int "Number of inbound queue entries"
2514 depends on RIONET
2515 default "128"
2516
Linus Torvalds1da177e2005-04-16 15:20:36 -07002517config FDDI
2518 bool "FDDI driver support"
Maciej W. Rozyckie89a2cf2007-02-05 16:28:27 -08002519 depends on (PCI || EISA || TC)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002520 help
2521 Fiber Distributed Data Interface is a high speed local area network
2522 design; essentially a replacement for high speed Ethernet. FDDI can
2523 run over copper or fiber. If you are connected to such a network and
2524 want a driver for the FDDI card in your computer, say Y here (and
2525 then also Y to the driver for your FDDI card, below). Most people
2526 will say N.
2527
2528config DEFXX
Maciej W. Rozyckie89a2cf2007-02-05 16:28:27 -08002529 tristate "Digital DEFTA/DEFEA/DEFPA adapter support"
2530 depends on FDDI && (PCI || EISA || TC)
2531 ---help---
2532 This is support for the DIGITAL series of TURBOchannel (DEFTA),
2533 EISA (DEFEA) and PCI (DEFPA) controllers which can connect you
2534 to a local FDDI network.
2535
2536 To compile this driver as a module, choose M here: the module
2537 will be called defxx. If unsure, say N.
2538
2539config DEFXX_MMIO
2540 bool
2541 prompt "Use MMIO instead of PIO" if PCI || EISA
2542 depends on DEFXX
2543 default n if PCI || EISA
2544 default y
2545 ---help---
2546 This instructs the driver to use EISA or PCI memory-mapped I/O
2547 (MMIO) as appropriate instead of programmed I/O ports (PIO).
2548 Enabling this gives an improvement in processing time in parts
2549 of the driver, but it may cause problems with EISA (DEFEA)
2550 adapters. TURBOchannel does not have the concept of I/O ports,
2551 so MMIO is always used for these (DEFTA) adapters.
2552
2553 If unsure, say N.
Linus Torvalds1da177e2005-04-16 15:20:36 -07002554
2555config SKFP
2556 tristate "SysKonnect FDDI PCI support"
2557 depends on FDDI && PCI
Akinobu Mitabc63eb92006-12-19 13:09:08 -08002558 select BITREVERSE
Linus Torvalds1da177e2005-04-16 15:20:36 -07002559 ---help---
2560 Say Y here if you have a SysKonnect FDDI PCI adapter.
2561 The following adapters are supported by this driver:
2562 - SK-5521 (SK-NET FDDI-UP)
2563 - SK-5522 (SK-NET FDDI-UP DAS)
2564 - SK-5541 (SK-NET FDDI-FP)
2565 - SK-5543 (SK-NET FDDI-LP)
2566 - SK-5544 (SK-NET FDDI-LP DAS)
2567 - SK-5821 (SK-NET FDDI-UP64)
2568 - SK-5822 (SK-NET FDDI-UP64 DAS)
2569 - SK-5841 (SK-NET FDDI-FP64)
2570 - SK-5843 (SK-NET FDDI-LP64)
2571 - SK-5844 (SK-NET FDDI-LP64 DAS)
2572 - Netelligent 100 FDDI DAS Fibre SC
2573 - Netelligent 100 FDDI SAS Fibre SC
2574 - Netelligent 100 FDDI DAS UTP
2575 - Netelligent 100 FDDI SAS UTP
2576 - Netelligent 100 FDDI SAS Fibre MIC
2577
2578 Read <file:Documentation/networking/skfp.txt> for information about
2579 the driver.
2580
2581 Questions concerning this driver can be addressed to:
2582 <linux@syskonnect.de>
2583
2584 To compile this driver as a module, choose M here: the module
2585 will be called skfp. This is recommended.
2586
2587config HIPPI
2588 bool "HIPPI driver support (EXPERIMENTAL)"
Randy Dunlapcbcd2a42005-07-27 13:04:35 -07002589 depends on EXPERIMENTAL && INET && PCI
Linus Torvalds1da177e2005-04-16 15:20:36 -07002590 help
2591 HIgh Performance Parallel Interface (HIPPI) is a 800Mbit/sec and
2592 1600Mbit/sec dual-simplex switched or point-to-point network. HIPPI
2593 can run over copper (25m) or fiber (300m on multi-mode or 10km on
2594 single-mode). HIPPI networks are commonly used for clusters and to
2595 connect to super computers. If you are connected to a HIPPI network
2596 and have a HIPPI network card in your computer that you want to use
2597 under Linux, say Y here (you must also remember to enable the driver
2598 for your HIPPI card below). Most people will say N here.
2599
2600config ROADRUNNER
2601 tristate "Essential RoadRunner HIPPI PCI adapter support (EXPERIMENTAL)"
2602 depends on HIPPI && PCI
2603 help
2604 Say Y here if this is your PCI HIPPI network card.
2605
2606 To compile this driver as a module, choose M here: the module
2607 will be called rrunner. If unsure, say N.
2608
2609config ROADRUNNER_LARGE_RINGS
2610 bool "Use large TX/RX rings (EXPERIMENTAL)"
2611 depends on ROADRUNNER
2612 help
2613 If you say Y here, the RoadRunner driver will preallocate up to 2 MB
2614 of additional memory to allow for fastest operation, both for
2615 transmitting and receiving. This memory cannot be used by any other
2616 kernel code or by user space programs. Say Y here only if you have
2617 the memory.
2618
2619config PLIP
2620 tristate "PLIP (parallel port) support"
Randy Dunlapcbcd2a42005-07-27 13:04:35 -07002621 depends on PARPORT
Linus Torvalds1da177e2005-04-16 15:20:36 -07002622 ---help---
2623 PLIP (Parallel Line Internet Protocol) is used to create a
2624 reasonably fast mini network consisting of two (or, rarely, more)
2625 local machines. A PLIP link from a Linux box is a popular means to
2626 install a Linux distribution on a machine which doesn't have a
2627 CD-ROM drive (a minimal system has to be transferred with floppies
2628 first). The kernels on both machines need to have this PLIP option
2629 enabled for this to work.
2630
2631 The PLIP driver has two modes, mode 0 and mode 1. The parallel
2632 ports (the connectors at the computers with 25 holes) are connected
2633 with "null printer" or "Turbo Laplink" cables which can transmit 4
2634 bits at a time (mode 0) or with special PLIP cables, to be used on
2635 bidirectional parallel ports only, which can transmit 8 bits at a
2636 time (mode 1); you can find the wiring of these cables in
2637 <file:Documentation/networking/PLIP.txt>. The cables can be up to
2638 15m long. Mode 0 works also if one of the machines runs DOS/Windows
2639 and has some PLIP software installed, e.g. the Crynwr PLIP packet
2640 driver (<http://oak.oakland.edu/simtel.net/msdos/pktdrvr-pre.html>)
2641 and winsock or NCSA's telnet.
2642
2643 If you want to use PLIP, say Y and read the PLIP mini-HOWTO as well
2644 as the NET-3-HOWTO, both available from
2645 <http://www.tldp.org/docs.html#howto>. Note that the PLIP
2646 protocol has been changed and this PLIP driver won't work together
2647 with the PLIP support in Linux versions 1.0.x. This option enlarges
2648 your kernel by about 8 KB.
2649
2650 To compile this driver as a module, choose M here and read
2651 <file:Documentation/networking/net-modules.txt>. The module will be
2652 called plip. If unsure, say Y or M, in case you buy a laptop
2653 later.
2654
2655config PPP
2656 tristate "PPP (point-to-point protocol) support"
Ralf Baechleb6e37e52006-07-14 12:15:40 +01002657 select SLHC
Linus Torvalds1da177e2005-04-16 15:20:36 -07002658 ---help---
2659 PPP (Point to Point Protocol) is a newer and better SLIP. It serves
2660 the same purpose: sending Internet traffic over telephone (and other
2661 serial) lines. Ask your access provider if they support it, because
2662 otherwise you can't use it; most Internet access providers these
2663 days support PPP rather than SLIP.
2664
2665 To use PPP, you need an additional program called pppd as described
2666 in the PPP-HOWTO, available at
2667 <http://www.tldp.org/docs.html#howto>. Make sure that you have
2668 the version of pppd recommended in <file:Documentation/Changes>.
2669 The PPP option enlarges your kernel by about 16 KB.
2670
2671 There are actually two versions of PPP: the traditional PPP for
2672 asynchronous lines, such as regular analog phone lines, and
2673 synchronous PPP which can be used over digital ISDN lines for
2674 example. If you want to use PPP over phone lines or other
2675 asynchronous serial lines, you need to say Y (or M) here and also to
2676 the next option, "PPP support for async serial ports". For PPP over
2677 synchronous lines, you should say Y (or M) here and to "Support
2678 synchronous PPP", below.
2679
2680 If you said Y to "Version information on all symbols" above, then
2681 you cannot compile the PPP driver into the kernel; you can then only
2682 compile it as a module. To compile this driver as a module, choose M
2683 here and read <file:Documentation/networking/net-modules.txt>.
2684 The module will be called ppp_generic.
2685
2686config PPP_MULTILINK
2687 bool "PPP multilink support (EXPERIMENTAL)"
2688 depends on PPP && EXPERIMENTAL
2689 help
2690 PPP multilink is a protocol (defined in RFC 1990) which allows you
2691 to combine several (logical or physical) lines into one logical PPP
2692 connection, so that you can utilize your full bandwidth.
2693
2694 This has to be supported at the other end as well and you need a
2695 version of the pppd daemon which understands the multilink protocol.
2696
2697 If unsure, say N.
2698
2699config PPP_FILTER
2700 bool "PPP filtering"
2701 depends on PPP
2702 help
2703 Say Y here if you want to be able to filter the packets passing over
2704 PPP interfaces. This allows you to control which packets count as
2705 activity (i.e. which packets will reset the idle timer or bring up
Jon Mason47c51432006-02-12 11:53:04 -06002706 a demand-dialed link) and which packets are to be dropped entirely.
Linus Torvalds1da177e2005-04-16 15:20:36 -07002707 You need to say Y here if you wish to use the pass-filter and
2708 active-filter options to pppd.
2709
2710 If unsure, say N.
2711
2712config PPP_ASYNC
2713 tristate "PPP support for async serial ports"
2714 depends on PPP
2715 select CRC_CCITT
2716 ---help---
2717 Say Y (or M) here if you want to be able to use PPP over standard
2718 asynchronous serial ports, such as COM1 or COM2 on a PC. If you use
2719 a modem (not a synchronous or ISDN modem) to contact your ISP, you
2720 need this option.
2721
2722 To compile this driver as a module, choose M here.
2723
2724 If unsure, say Y.
2725
2726config PPP_SYNC_TTY
2727 tristate "PPP support for sync tty ports"
2728 depends on PPP
2729 help
2730 Say Y (or M) here if you want to be able to use PPP over synchronous
2731 (HDLC) tty devices, such as the SyncLink adapter. These devices
2732 are often used for high-speed leased lines like T1/E1.
2733
2734 To compile this driver as a module, choose M here.
2735
2736config PPP_DEFLATE
2737 tristate "PPP Deflate compression"
2738 depends on PPP
2739 select ZLIB_INFLATE
2740 select ZLIB_DEFLATE
2741 ---help---
2742 Support for the Deflate compression method for PPP, which uses the
2743 Deflate algorithm (the same algorithm that gzip uses) to compress
2744 each PPP packet before it is sent over the wire. The machine at the
2745 other end of the PPP link (usually your ISP) has to support the
2746 Deflate compression method as well for this to be useful. Even if
2747 they don't support it, it is safe to say Y here.
2748
2749 To compile this driver as a module, choose M here.
2750
2751config PPP_BSDCOMP
2752 tristate "PPP BSD-Compress compression"
2753 depends on PPP
2754 ---help---
2755 Support for the BSD-Compress compression method for PPP, which uses
2756 the LZW compression method to compress each PPP packet before it is
2757 sent over the wire. The machine at the other end of the PPP link
2758 (usually your ISP) has to support the BSD-Compress compression
2759 method as well for this to be useful. Even if they don't support it,
2760 it is safe to say Y here.
2761
2762 The PPP Deflate compression method ("PPP Deflate compression",
2763 above) is preferable to BSD-Compress, because it compresses better
2764 and is patent-free.
2765
2766 Note that the BSD compression code will always be compiled as a
2767 module; it is called bsd_comp and will show up in the directory
2768 modules once you have said "make modules". If unsure, say N.
2769
Matt Domschb3f9b922005-11-08 09:40:47 -08002770config PPP_MPPE
2771 tristate "PPP MPPE compression (encryption) (EXPERIMENTAL)"
2772 depends on PPP && EXPERIMENTAL
2773 select CRYPTO
2774 select CRYPTO_SHA1
2775 select CRYPTO_ARC4
Patrick McHardybcbaecb2006-10-25 16:49:36 +10002776 select CRYPTO_ECB
Matt Domschb3f9b922005-11-08 09:40:47 -08002777 ---help---
2778 Support for the MPPE Encryption protocol, as employed by the
2779 Microsoft Point-to-Point Tunneling Protocol.
2780
2781 See http://pptpclient.sourceforge.net/ for information on
2782 configuring PPTP clients and servers to utilize this method.
2783
Linus Torvalds1da177e2005-04-16 15:20:36 -07002784config PPPOE
2785 tristate "PPP over Ethernet (EXPERIMENTAL)"
2786 depends on EXPERIMENTAL && PPP
2787 help
2788 Support for PPP over Ethernet.
2789
2790 This driver requires the latest version of pppd from the CVS
2791 repository at cvs.samba.org. Alternatively, see the
2792 RoaringPenguin package (<http://www.roaringpenguin.com/pppoe>)
2793 which contains instruction on how to use this driver (under
2794 the heading "Kernel mode PPPoE").
2795
2796config PPPOATM
2797 tristate "PPP over ATM"
2798 depends on ATM && PPP
2799 help
2800 Support PPP (Point to Point Protocol) encapsulated in ATM frames.
2801 This implementation does not yet comply with section 8 of RFC2364,
2802 which can lead to bad results if the ATM peer loses state and
2803 changes its encapsulation unilaterally.
2804
James Chapman3557baa2007-06-27 15:49:24 -07002805config PPPOL2TP
2806 tristate "PPP over L2TP (EXPERIMENTAL)"
2807 depends on EXPERIMENTAL && PPP
2808 help
2809 Support for PPP-over-L2TP socket family. L2TP is a protocol
2810 used by ISPs and enterprises to tunnel PPP traffic over UDP
2811 tunnels. L2TP is replacing PPTP for VPN uses.
2812
2813 This kernel component handles only L2TP data packets: a
2814 userland daemon handles L2TP the control protocol (tunnel
2815 and session setup). One such daemon is OpenL2TP
2816 (http://openl2tp.sourceforge.net/).
2817
Linus Torvalds1da177e2005-04-16 15:20:36 -07002818config SLIP
2819 tristate "SLIP (serial line) support"
Linus Torvalds1da177e2005-04-16 15:20:36 -07002820 ---help---
2821 Say Y if you intend to use SLIP or CSLIP (compressed SLIP) to
2822 connect to your Internet service provider or to connect to some
2823 other local Unix box or if you want to configure your Linux box as a
2824 Slip/CSlip server for other people to dial in. SLIP (Serial Line
2825 Internet Protocol) is a protocol used to send Internet traffic over
2826 serial connections such as telephone lines or null modem cables;
2827 nowadays, the protocol PPP is more commonly used for this same
2828 purpose.
2829
2830 Normally, your access provider has to support SLIP in order for you
2831 to be able to use it, but there is now a SLIP emulator called SLiRP
2832 around (available from
2833 <ftp://ibiblio.org/pub/Linux/system/network/serial/>) which
2834 allows you to use SLIP over a regular dial up shell connection. If
2835 you plan to use SLiRP, make sure to say Y to CSLIP, below. The
2836 NET-3-HOWTO, available from
2837 <http://www.tldp.org/docs.html#howto>, explains how to
2838 configure SLIP. Note that you don't need this option if you just
2839 want to run term (term is a program which gives you almost full
2840 Internet connectivity if you have a regular dial up shell account on
2841 some Internet connected Unix computer. Read
2842 <http://www.bart.nl/~patrickr/term-howto/Term-HOWTO.html>). SLIP
2843 support will enlarge your kernel by about 4 KB. If unsure, say N.
2844
2845 To compile this driver as a module, choose M here and read
2846 <file:Documentation/networking/net-modules.txt>. The module will be
2847 called slip.
2848
2849config SLIP_COMPRESSED
2850 bool "CSLIP compressed headers"
2851 depends on SLIP
Ralf Baechleb6e37e52006-07-14 12:15:40 +01002852 select SLHC
Linus Torvalds1da177e2005-04-16 15:20:36 -07002853 ---help---
2854 This protocol is faster than SLIP because it uses compression on the
2855 TCP/IP headers (not on the data itself), but it has to be supported
2856 on both ends. Ask your access provider if you are not sure and
2857 answer Y, just in case. You will still be able to use plain SLIP. If
2858 you plan to use SLiRP, the SLIP emulator (available from
2859 <ftp://ibiblio.org/pub/Linux/system/network/serial/>) which
2860 allows you to use SLIP over a regular dial up shell connection, you
2861 definitely want to say Y here. The NET-3-HOWTO, available from
2862 <http://www.tldp.org/docs.html#howto>, explains how to configure
2863 CSLIP. This won't enlarge your kernel.
2864
Ralf Baechleb6e37e52006-07-14 12:15:40 +01002865config SLHC
2866 tristate
2867 help
2868 This option enables Van Jacobsen serial line header compression
2869 routines.
2870
Linus Torvalds1da177e2005-04-16 15:20:36 -07002871config SLIP_SMART
2872 bool "Keepalive and linefill"
2873 depends on SLIP
2874 help
2875 Adds additional capabilities to the SLIP driver to support the
2876 RELCOM line fill and keepalive monitoring. Ideal on poor quality
2877 analogue lines.
2878
2879config SLIP_MODE_SLIP6
2880 bool "Six bit SLIP encapsulation"
2881 depends on SLIP
2882 help
2883 Just occasionally you may need to run IP over hostile serial
2884 networks that don't pass all control characters or are only seven
2885 bit. Saying Y here adds an extra mode you can use with SLIP:
2886 "slip6". In this mode, SLIP will only send normal ASCII symbols over
2887 the serial device. Naturally, this has to be supported at the other
2888 end of the link as well. It's good enough, for example, to run IP
2889 over the async ports of a Camtec JNT Pad. If unsure, say N.
2890
2891config NET_FC
2892 bool "Fibre Channel driver support"
Randy Dunlapcbcd2a42005-07-27 13:04:35 -07002893 depends on SCSI && PCI
Linus Torvalds1da177e2005-04-16 15:20:36 -07002894 help
2895 Fibre Channel is a high speed serial protocol mainly used to connect
2896 large storage devices to the computer; it is compatible with and
2897 intended to replace SCSI.
2898
2899 If you intend to use Fibre Channel, you need to have a Fibre channel
2900 adaptor card in your computer; say Y here and to the driver for your
2901 adaptor below. You also should have said Y to "SCSI support" and
2902 "SCSI generic support".
2903
2904config SHAPER
Jiri Slaby3b6a7922006-11-06 14:34:48 -08002905 tristate "Traffic Shaper (OBSOLETE)"
Randy Dunlapcbcd2a42005-07-27 13:04:35 -07002906 depends on EXPERIMENTAL
Linus Torvalds1da177e2005-04-16 15:20:36 -07002907 ---help---
2908 The traffic shaper is a virtual network device that allows you to
2909 limit the rate of outgoing data flow over some other network device.
2910 The traffic that you want to slow down can then be routed through
2911 these virtual devices. See
2912 <file:Documentation/networking/shaper.txt> for more information.
2913
Jiri Slaby3b6a7922006-11-06 14:34:48 -08002914 An alternative to this traffic shaper are traffic schedulers which
2915 you'll get if you say Y to "QoS and/or fair queuing" in
2916 "Networking options".
Linus Torvalds1da177e2005-04-16 15:20:36 -07002917
Linus Torvalds1da177e2005-04-16 15:20:36 -07002918 To compile this driver as a module, choose M here: the module
2919 will be called shaper. If unsure, say N.
2920
2921config NETCONSOLE
2922 tristate "Network console logging support (EXPERIMENTAL)"
Matt Mackall5e43db72005-07-27 15:24:42 -07002923 depends on EXPERIMENTAL
Linus Torvalds1da177e2005-04-16 15:20:36 -07002924 ---help---
2925 If you want to log kernel messages over the network, enable this.
2926 See <file:Documentation/networking/netconsole.txt> for details.
2927
Randy Dunlap54208992005-07-18 13:45:12 -07002928config NETPOLL
2929 def_bool NETCONSOLE
2930
Randy Dunlap54208992005-07-18 13:45:12 -07002931config NETPOLL_TRAP
2932 bool "Netpoll traffic trapping"
2933 default n
2934 depends on NETPOLL
2935
2936config NET_POLL_CONTROLLER
2937 def_bool NETPOLL
2938
Jan Engelhardtd1c0a652007-06-13 12:48:53 -07002939endif # NETDEVICES