blob: 5fb659f8b20e537c0b22ff504b182811c59a47cd [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
frederic RODO6c36a702007-07-12 19:07:24 +0200208 select PHYLIB
Haavard Skinnemoen89e57852006-11-09 14:51:17 +0100209 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
Linus Torvalds1da177e2005-04-16 15:20:36 -0700408config SUN3LANCE
409 tristate "Sun3/Sun3x on-board LANCE support"
Jan Engelhardtd1c0a652007-06-13 12:48:53 -0700410 depends on SUN3 || SUN3X
Linus Torvalds1da177e2005-04-16 15:20:36 -0700411 help
412 Most Sun3 and Sun3x motherboards (including the 3/50, 3/60 and 3/80)
413 featured an AMD Lance 10Mbit Ethernet controller on board; say Y
414 here to compile in the Linux driver for this and enable Ethernet.
415 General Linux information on the Sun 3 and 3x series (now
416 discontinued) is at
417 <http://www.angelfire.com/ca2/tech68k/sun3.html>.
418
419 If you're not building a kernel for a Sun 3, say N.
420
421config SUN3_82586
Al Viro9a482202005-08-25 06:24:56 +0100422 bool "Sun3 on-board Intel 82586 support"
Jan Engelhardtd1c0a652007-06-13 12:48:53 -0700423 depends on SUN3
Linus Torvalds1da177e2005-04-16 15:20:36 -0700424 help
425 This driver enables support for the on-board Intel 82586 based
426 Ethernet adapter found on Sun 3/1xx and 3/2xx motherboards. Note
427 that this driver does not support 82586-based adapters on additional
428 VME boards.
429
430config HPLANCE
431 bool "HP on-board LANCE support"
Jan Engelhardtd1c0a652007-06-13 12:48:53 -0700432 depends on DIO
Linus Torvalds1da177e2005-04-16 15:20:36 -0700433 select CRC32
434 help
435 If you want to use the builtin "LANCE" Ethernet controller on an
436 HP300 machine, say Y here.
437
438config LASI_82596
439 tristate "Lasi ethernet"
Jan Engelhardtd1c0a652007-06-13 12:48:53 -0700440 depends on GSC
Linus Torvalds1da177e2005-04-16 15:20:36 -0700441 help
Matthew Wilcox6de187e2006-11-18 10:05:16 -0700442 Say Y here to support the builtin Intel 82596 ethernet controller
443 found in Hewlett-Packard PA-RISC machines with 10Mbit ethernet.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700444
Thomas Bogendoerferf2ec8032007-06-28 00:49:06 +0200445config SNI_82596
446 tristate "SNI RM ethernet"
447 depends on NET_ETHERNET && SNI_RM
448 help
449 Say Y here to support the on-board Intel 82596 ethernet controller
450 built into SNI RM machines.
451
Linus Torvalds1da177e2005-04-16 15:20:36 -0700452config MIPS_JAZZ_SONIC
453 tristate "MIPS JAZZ onboard SONIC Ethernet support"
Jan Engelhardtd1c0a652007-06-13 12:48:53 -0700454 depends on MACH_JAZZ
Linus Torvalds1da177e2005-04-16 15:20:36 -0700455 help
456 This is the driver for the onboard card of MIPS Magnum 4000,
457 Acer PICA, Olivetti M700-10 and a few other identical OEM systems.
458
Linus Torvalds1da177e2005-04-16 15:20:36 -0700459config MIPS_AU1X00_ENET
460 bool "MIPS AU1000 Ethernet support"
Jan Engelhardtd1c0a652007-06-13 12:48:53 -0700461 depends on SOC_AU1X00
Herbert Valerio Riedel0638dec2006-06-01 09:41:04 +0200462 select PHYLIB
Linus Torvalds1da177e2005-04-16 15:20:36 -0700463 select CRC32
464 help
465 If you have an Alchemy Semi AU1X00 based system
466 say Y. Otherwise, say N.
467
468config NET_SB1250_MAC
469 tristate "SB1250 Ethernet support"
Jan Engelhardtd1c0a652007-06-13 12:48:53 -0700470 depends on SIBYTE_SB1xxx_SOC
Linus Torvalds1da177e2005-04-16 15:20:36 -0700471
472config SGI_IOC3_ETH
473 bool "SGI IOC3 Ethernet"
Jan Engelhardtd1c0a652007-06-13 12:48:53 -0700474 depends on PCI && SGI_IP27
Linus Torvalds1da177e2005-04-16 15:20:36 -0700475 select CRC32
476 select MII
477 help
478 If you have a network (Ethernet) card of this type, say Y and read
479 the Ethernet-HOWTO, available from
480 <http://www.tldp.org/docs.html#howto>.
481
482config SGI_IOC3_ETH_HW_RX_CSUM
483 bool "Receive hardware checksums"
484 depends on SGI_IOC3_ETH && INET
485 default y
486 help
487 The SGI IOC3 network adapter supports TCP and UDP checksums in
488 hardware to offload processing of these checksums from the CPU. At
489 the moment only acceleration of IPv4 is supported. This option
490 enables offloading for checksums on receive. If unsure, say Y.
491
492config SGI_IOC3_ETH_HW_TX_CSUM
493 bool "Transmit hardware checksums"
494 depends on SGI_IOC3_ETH && INET
495 default y
496 help
497 The SGI IOC3 network adapter supports TCP and UDP checksums in
498 hardware to offload processing of these checksums from the CPU. At
499 the moment only acceleration of IPv4 is supported. This option
500 enables offloading for checksums on transmit. If unsure, say Y.
501
Ralf Baechledcbf8472005-10-10 14:51:27 +0100502config MIPS_SIM_NET
Ralf Baechle1e2b9802007-03-18 23:21:22 +0000503 tristate "MIPS simulator Network device"
Jan Engelhardtd1c0a652007-06-13 12:48:53 -0700504 depends on MIPS_SIM
Ralf Baechledcbf8472005-10-10 14:51:27 +0100505 help
506 The MIPSNET device is a simple Ethernet network device which is
507 emulated by the MIPS Simulator.
508 If you are not using a MIPSsim or are unsure, say N.
509
Linus Torvalds1da177e2005-04-16 15:20:36 -0700510config SGI_O2MACE_ETH
511 tristate "SGI O2 MACE Fast Ethernet support"
Jan Engelhardtd1c0a652007-06-13 12:48:53 -0700512 depends on SGI_IP32=y
Linus Torvalds1da177e2005-04-16 15:20:36 -0700513
514config STNIC
515 tristate "National DP83902AV support"
Jan Engelhardtd1c0a652007-06-13 12:48:53 -0700516 depends on SUPERH
Linus Torvalds1da177e2005-04-16 15:20:36 -0700517 select CRC32
518 help
519 Support for cards based on the National Semiconductor DP83902AV
520 ST-NIC Serial Network Interface Controller for Twisted Pair. This
521 is a 10Mbit/sec Ethernet controller. Product overview and specs at
522 <http://www.national.com/pf/DP/DP83902A.html>.
523
524 If unsure, say N.
525
526config SUNLANCE
527 tristate "Sun LANCE support"
Jan Engelhardtd1c0a652007-06-13 12:48:53 -0700528 depends on SBUS
Linus Torvalds1da177e2005-04-16 15:20:36 -0700529 select CRC32
530 help
531 This driver supports the "le" interface present on all 32-bit Sparc
532 systems, on some older Ultra systems and as an Sbus option. These
533 cards are based on the AMD Lance chipset, which is better known
534 via the NE2100 cards.
535
536 To compile this driver as a module, choose M here: the module
537 will be called sunlance.
538
539config HAPPYMEAL
540 tristate "Sun Happy Meal 10/100baseT support"
Jan Engelhardtd1c0a652007-06-13 12:48:53 -0700541 depends on SBUS || PCI
Linus Torvalds1da177e2005-04-16 15:20:36 -0700542 select CRC32
543 help
544 This driver supports the "hme" interface present on most Ultra
545 systems and as an option on older Sbus systems. This driver supports
546 both PCI and Sbus devices. This driver also supports the "qfe" quad
547 100baseT device available in both PCI and Sbus configurations.
548
549 To compile this driver as a module, choose M here: the module
550 will be called sunhme.
551
552config SUNBMAC
553 tristate "Sun BigMAC 10/100baseT support (EXPERIMENTAL)"
Jan Engelhardtd1c0a652007-06-13 12:48:53 -0700554 depends on SBUS && EXPERIMENTAL
Linus Torvalds1da177e2005-04-16 15:20:36 -0700555 select CRC32
556 help
557 This driver supports the "be" interface available as an Sbus option.
558 This is Sun's older 100baseT Ethernet device.
559
560 To compile this driver as a module, choose M here: the module
561 will be called sunbmac.
562
563config SUNQE
564 tristate "Sun QuadEthernet support"
Jan Engelhardtd1c0a652007-06-13 12:48:53 -0700565 depends on SBUS
Linus Torvalds1da177e2005-04-16 15:20:36 -0700566 select CRC32
567 help
568 This driver supports the "qe" 10baseT Ethernet device, available as
569 an Sbus option. Note that this is not the same as Quad FastEthernet
570 "qfe" which is supported by the Happy Meal driver instead.
571
572 To compile this driver as a module, choose M here: the module
573 will be called sunqe.
574
575config SUNGEM
576 tristate "Sun GEM support"
Jan Engelhardtd1c0a652007-06-13 12:48:53 -0700577 depends on PCI
Linus Torvalds1da177e2005-04-16 15:20:36 -0700578 select CRC32
579 help
580 Support for the Sun GEM chip, aka Sun GigabitEthernet/P 2.0. See also
581 <http://www.sun.com/products-n-solutions/hardware/docs/pdf/806-3985-10.pdf>.
582
David S. Miller1f26dac2005-09-27 15:24:13 -0700583config CASSINI
584 tristate "Sun Cassini support"
Jan Engelhardtd1c0a652007-06-13 12:48:53 -0700585 depends on PCI
David S. Miller1f26dac2005-09-27 15:24:13 -0700586 select CRC32
587 help
588 Support for the Sun Cassini chip, aka Sun GigaSwift Ethernet. See also
589 <http://www.sun.com/products-n-solutions/hardware/docs/pdf/817-4341-10.pdf>
590
David S. Miller4c521e42007-07-09 22:23:51 -0700591config SUNVNET
592 tristate "Sun Virtual Network support"
593 depends on SUN_LDOMS
594 help
595 Support for virtual network devices under Sun Logical Domains.
596
Linus Torvalds1da177e2005-04-16 15:20:36 -0700597config NET_VENDOR_3COM
598 bool "3COM cards"
Jan Engelhardtd1c0a652007-06-13 12:48:53 -0700599 depends on ISA || EISA || MCA || PCI
Linus Torvalds1da177e2005-04-16 15:20:36 -0700600 help
601 If you have a network (Ethernet) card belonging to this class, say Y
602 and read the Ethernet-HOWTO, available from
603 <http://www.tldp.org/docs.html#howto>.
604
605 Note that the answer to this question doesn't directly affect the
606 kernel: saying N will just cause the configurator to skip all
607 the questions about 3COM cards. If you say Y, you will be asked for
608 your specific card in the following questions.
609
610config EL1
611 tristate "3c501 \"EtherLink\" support"
612 depends on NET_VENDOR_3COM && ISA
613 ---help---
614 If you have a network (Ethernet) card of this type, say Y and read
615 the Ethernet-HOWTO, available from
616 <http://www.tldp.org/docs.html#howto>. Also, consider buying a
617 new card, since the 3c501 is slow, broken, and obsolete: you will
618 have problems. Some people suggest to ping ("man ping") a nearby
619 machine every minute ("man cron") when using this card.
620
621 To compile this driver as a module, choose M here and read
622 <file:Documentation/networking/net-modules.txt>. The module
623 will be called 3c501.
624
625config EL2
626 tristate "3c503 \"EtherLink II\" support"
627 depends on NET_VENDOR_3COM && ISA
628 select CRC32
629 help
630 If you have a network (Ethernet) card of this type, say Y and read
631 the Ethernet-HOWTO, available from
632 <http://www.tldp.org/docs.html#howto>.
633
634 To compile this driver as a module, choose M here and read
635 <file:Documentation/networking/net-modules.txt>. The module
636 will be called 3c503.
637
638config ELPLUS
639 tristate "3c505 \"EtherLink Plus\" support"
Al Viroa5532602005-05-04 05:39:42 +0100640 depends on NET_VENDOR_3COM && ISA && ISA_DMA_API
Linus Torvalds1da177e2005-04-16 15:20:36 -0700641 ---help---
642 Information about this network (Ethernet) card can be found in
643 <file:Documentation/networking/3c505.txt>. If you have a card of
644 this type, say Y and read the Ethernet-HOWTO, available from
645 <http://www.tldp.org/docs.html#howto>.
646
647 To compile this driver as a module, choose M here and read
648 <file:Documentation/networking/net-modules.txt>. The module
649 will be called 3c505.
650
651config EL16
652 tristate "3c507 \"EtherLink 16\" support (EXPERIMENTAL)"
653 depends on NET_VENDOR_3COM && ISA && EXPERIMENTAL
654 help
655 If you have a network (Ethernet) card of this type, say Y and read
656 the Ethernet-HOWTO, available from
657 <http://www.tldp.org/docs.html#howto>.
658
659 To compile this driver as a module, choose M here and read
660 <file:Documentation/networking/net-modules.txt>. The module
661 will be called 3c507.
662
663config EL3
664 tristate "3c509/3c529 (MCA)/3c579 \"EtherLink III\" support"
665 depends on NET_VENDOR_3COM && (ISA || EISA || MCA)
666 ---help---
667 If you have a network (Ethernet) card belonging to the 3Com
668 EtherLinkIII series, say Y and read the Ethernet-HOWTO, available
669 from <http://www.tldp.org/docs.html#howto>.
670
671 If your card is not working you may need to use the DOS
672 setup disk to disable Plug & Play mode, and to select the default
673 media type.
674
675 To compile this driver as a module, choose M here and read
676 <file:Documentation/networking/net-modules.txt>. The module
677 will be called 3c509.
678
679config 3C515
680 tristate "3c515 ISA \"Fast EtherLink\""
Al Viroa5532602005-05-04 05:39:42 +0100681 depends on NET_VENDOR_3COM && (ISA || EISA) && ISA_DMA_API
Linus Torvalds1da177e2005-04-16 15:20:36 -0700682 help
683 If you have a 3Com ISA EtherLink XL "Corkscrew" 3c515 Fast Ethernet
684 network card, say Y and read the Ethernet-HOWTO, available from
685 <http://www.tldp.org/docs.html#howto>.
686
687 To compile this driver as a module, choose M here and read
688 <file:Documentation/networking/net-modules.txt>. The module
689 will be called 3c515.
690
691config ELMC
692 tristate "3c523 \"EtherLink/MC\" support"
693 depends on NET_VENDOR_3COM && MCA_LEGACY
694 help
695 If you have a network (Ethernet) card of this type, say Y and read
696 the Ethernet-HOWTO, available from
697 <http://www.tldp.org/docs.html#howto>.
698
699 To compile this driver as a module, choose M here and read
700 <file:Documentation/networking/net-modules.txt>. The module
701 will be called 3c523.
702
703config ELMC_II
704 tristate "3c527 \"EtherLink/MC 32\" support (EXPERIMENTAL)"
705 depends on NET_VENDOR_3COM && MCA && MCA_LEGACY
706 help
707 If you have a network (Ethernet) card of this type, say Y and read
708 the Ethernet-HOWTO, available from
709 <http://www.tldp.org/docs.html#howto>.
710
711 To compile this driver as a module, choose M here and read
712 <file:Documentation/networking/net-modules.txt>. The module
713 will be called 3c527.
714
715config VORTEX
716 tristate "3c590/3c900 series (592/595/597) \"Vortex/Boomerang\" support"
717 depends on NET_VENDOR_3COM && (PCI || EISA)
718 select MII
719 ---help---
Jon Mason47c51432006-02-12 11:53:04 -0600720 This option enables driver support for a large number of 10Mbps and
721 10/100Mbps EISA, PCI and PCMCIA 3Com network cards:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700722
723 "Vortex" (Fast EtherLink 3c590/3c592/3c595/3c597) EISA and PCI
724 "Boomerang" (EtherLink XL 3c900 or 3c905) PCI
725 "Cyclone" (3c540/3c900/3c905/3c980/3c575/3c656) PCI and Cardbus
726 "Tornado" (3c905) PCI
727 "Hurricane" (3c555/3cSOHO) PCI
728
729 If you have such a card, say Y and read the Ethernet-HOWTO,
730 available from <http://www.tldp.org/docs.html#howto>. More
731 specific information is in
732 <file:Documentation/networking/vortex.txt> and in the comments at
733 the beginning of <file:drivers/net/3c59x.c>.
734
735 To compile this support as a module, choose M here and read
736 <file:Documentation/networking/net-modules.txt>.
737
738config TYPHOON
739 tristate "3cr990 series \"Typhoon\" support"
740 depends on NET_VENDOR_3COM && PCI
741 select CRC32
742 ---help---
743 This option enables driver support for the 3cr990 series of cards:
744
745 3C990-TX, 3CR990-TX-95, 3CR990-TX-97, 3CR990-FX-95, 3CR990-FX-97,
746 3CR990SVR, 3CR990SVR95, 3CR990SVR97, 3CR990-FX-95 Server,
747 3CR990-FX-97 Server, 3C990B-TX-M, 3C990BSVR
748
749 If you have a network (Ethernet) card of this type, say Y and read
750 the Ethernet-HOWTO, available from
751 <http://www.tldp.org/docs.html#howto>.
752
753 To compile this driver as a module, choose M here and read
754 <file:Documentation/networking/net-modules.txt>. The module
755 will be called typhoon.
756
757config LANCE
758 tristate "AMD LANCE and PCnet (AT1500 and NE2100) support"
Jan Engelhardtd1c0a652007-06-13 12:48:53 -0700759 depends on ISA && ISA_DMA_API
Linus Torvalds1da177e2005-04-16 15:20:36 -0700760 help
761 If you have a network (Ethernet) card of this type, say Y and read
762 the Ethernet-HOWTO, available from
763 <http://www.tldp.org/docs.html#howto>. Some LinkSys cards are
764 of this type.
765
766 To compile this driver as a module, choose M here: the module
767 will be called lance. This is recommended.
768
769config NET_VENDOR_SMC
770 bool "Western Digital/SMC cards"
Jan Engelhardtd1c0a652007-06-13 12:48:53 -0700771 depends on ISA || MCA || EISA || MAC
Linus Torvalds1da177e2005-04-16 15:20:36 -0700772 help
773 If you have a network (Ethernet) card belonging to this class, say Y
774 and read the Ethernet-HOWTO, available from
775 <http://www.tldp.org/docs.html#howto>.
776
777 Note that the answer to this question doesn't directly affect the
778 kernel: saying N will just cause the configurator to skip all
779 the questions about Western Digital cards. If you say Y, you will be
780 asked for your specific card in the following questions.
781
782config WD80x3
783 tristate "WD80*3 support"
784 depends on NET_VENDOR_SMC && ISA
785 select CRC32
786 help
787 If you have a network (Ethernet) card of this type, say Y and read
788 the Ethernet-HOWTO, available from
789 <http://www.tldp.org/docs.html#howto>.
790
791 To compile this driver as a module, choose M here and read
792 <file:Documentation/networking/net-modules.txt>. The module
793 will be called wd.
794
795config ULTRAMCA
796 tristate "SMC Ultra MCA support"
797 depends on NET_VENDOR_SMC && MCA
798 select CRC32
799 help
800 If you have a network (Ethernet) card of this type and are running
801 an MCA based system (PS/2), say Y and read the Ethernet-HOWTO,
802 available from <http://www.tldp.org/docs.html#howto>.
803
804 To compile this driver as a module, choose M here and read
805 <file:Documentation/networking/net-modules.txt>. The module
806 will be called smc-mca.
807
808config ULTRA
809 tristate "SMC Ultra support"
810 depends on NET_VENDOR_SMC && ISA
811 select CRC32
812 ---help---
813 If you have a network (Ethernet) card of this type, say Y and read
814 the Ethernet-HOWTO, available from
815 <http://www.tldp.org/docs.html#howto>.
816
817 Important: There have been many reports that, with some motherboards
818 mixing an SMC Ultra and an Adaptec AHA154x SCSI card (or compatible,
819 such as some BusLogic models) causes corruption problems with many
820 operating systems. The Linux smc-ultra driver has a work-around for
821 this but keep it in mind if you have such a SCSI card and have
822 problems.
823
824 To compile this driver as a module, choose M here and read
825 <file:Documentation/networking/net-modules.txt>. The module
826 will be called smc-ultra.
827
828config ULTRA32
829 tristate "SMC Ultra32 EISA support"
830 depends on NET_VENDOR_SMC && EISA
831 select CRC32
832 help
833 If you have a network (Ethernet) card of this type, say Y and read
834 the Ethernet-HOWTO, available from
835 <http://www.tldp.org/docs.html#howto>.
836
837 To compile this driver as a module, choose M here and read
838 <file:Documentation/networking/net-modules.txt>. The module
839 will be called smc-ultra32.
840
Linus Torvalds1da177e2005-04-16 15:20:36 -0700841config SMC9194
842 tristate "SMC 9194 support"
843 depends on NET_VENDOR_SMC && (ISA || MAC && BROKEN)
844 select CRC32
845 ---help---
846 This is support for the SMC9xxx based Ethernet cards. Choose this
847 option if you have a DELL laptop with the docking station, or
848 another SMC9192/9194 based chipset. Say Y if you want it compiled
849 into the kernel, and read the file
850 <file:Documentation/networking/smc9.txt> and the Ethernet-HOWTO,
851 available from <http://www.tldp.org/docs.html#howto>.
852
853 To compile this driver as a module, choose M here and read
854 <file:Documentation/networking/net-modules.txt>. The module
855 will be called smc9194.
856
Jan Engelhardtd1c0a652007-06-13 12:48:53 -0700857config SMC91X
858 tristate "SMC 91C9x/91C1xxx support"
859 select CRC32
860 select MII
861 depends on ARM || REDWOOD_5 || REDWOOD_6 || M32R || SUPERH || SOC_AU1X00 || BFIN
862 help
863 This is a driver for SMC's 91x series of Ethernet chipsets,
864 including the SMC91C94 and the SMC91C111. Say Y if you want it
865 compiled into the kernel, and read the file
866 <file:Documentation/networking/smc9.txt> and the Ethernet-HOWTO,
867 available from <http://www.linuxdoc.org/docs.html#howto>.
868
869 This driver is also available as a module ( = code which can be
870 inserted in and removed from the running kernel whenever you want).
871 The module will be called smc91x. If you want to compile it as a
872 module, say M here and read <file:Documentation/kbuild/modules.txt>
873 as well as <file:Documentation/networking/net-modules.txt>.
874
Sascha Hauer92aa6742006-06-22 07:11:13 +0200875config NET_NETX
876 tristate "NetX Ethernet support"
877 select MII
Jan Engelhardtd1c0a652007-06-13 12:48:53 -0700878 depends on ARCH_NETX
Sascha Hauer92aa6742006-06-22 07:11:13 +0200879 help
880 This is support for the Hilscher netX builtin Ethernet ports
881
882 To compile this driver as a module, choose M here and read
883 <file:Documentation/networking/net-modules.txt>. The module
884 will be called netx-eth.
885
Sascha Hauera1365272005-05-05 15:14:15 -0700886config DM9000
887 tristate "DM9000 support"
Alex Landauf40d24d2007-07-12 12:11:48 +0800888 depends on ARM || BLACKFIN || MIPS
Sascha Hauera1365272005-05-05 15:14:15 -0700889 select CRC32
890 select MII
891 ---help---
892 Support for DM9000 chipset.
893
894 To compile this driver as a module, choose M here and read
895 <file:Documentation/networking/net-modules.txt>. The module will be
896 called dm9000.
897
Dustin McIntire0a0c72c2006-04-19 20:24:51 -0700898config SMC911X
899 tristate "SMSC LAN911[5678] support"
900 select CRC32
901 select MII
Jan Engelhardtd1c0a652007-06-13 12:48:53 -0700902 depends on ARCH_PXA
Dustin McIntire0a0c72c2006-04-19 20:24:51 -0700903 help
904 This is a driver for SMSC's LAN911x series of Ethernet chipsets
905 including the new LAN9115, LAN9116, LAN9117, and LAN9118.
906 Say Y if you want it compiled into the kernel,
907 and read the Ethernet-HOWTO, available from
908 <http://www.linuxdoc.org/docs.html#howto>.
909
910 This driver is also available as a module. The module will be
911 called smc911x. If you want to compile it as a module, say M
Alexander E. Patrakov39f5fb32007-03-16 18:28:43 +0500912 here and read <file:Documentation/kbuild/modules.txt>
Dustin McIntire0a0c72c2006-04-19 20:24:51 -0700913
Linus Torvalds1da177e2005-04-16 15:20:36 -0700914config NET_VENDOR_RACAL
915 bool "Racal-Interlan (Micom) NI cards"
Jan Engelhardtd1c0a652007-06-13 12:48:53 -0700916 depends on ISA
Linus Torvalds1da177e2005-04-16 15:20:36 -0700917 help
918 If you have a network (Ethernet) card belonging to this class, such
919 as the NI5010, NI5210 or NI6210, say Y and read the Ethernet-HOWTO,
920 available from <http://www.tldp.org/docs.html#howto>.
921
922 Note that the answer to this question doesn't directly affect the
923 kernel: saying N will just cause the configurator to skip all
924 the questions about NI cards. If you say Y, you will be asked for
925 your specific card in the following questions.
926
927config NI5010
928 tristate "NI5010 support (EXPERIMENTAL)"
929 depends on NET_VENDOR_RACAL && ISA && EXPERIMENTAL && BROKEN_ON_SMP
930 ---help---
931 If you have a network (Ethernet) card of this type, say Y and read
932 the Ethernet-HOWTO, available from
933 <http://www.tldp.org/docs.html#howto>. Note that this is still
934 experimental code.
935
936 To compile this driver as a module, choose M here and read
937 <file:Documentation/networking/net-modules.txt>. The module
938 will be called ni5010.
939
940config NI52
941 tristate "NI5210 support"
942 depends on NET_VENDOR_RACAL && ISA
943 help
944 If you have a network (Ethernet) card of this type, say Y and read
945 the Ethernet-HOWTO, available from
946 <http://www.tldp.org/docs.html#howto>.
947
948 To compile this driver as a module, choose M here and read
949 <file:Documentation/networking/net-modules.txt>. The module
950 will be called ni52.
951
952config NI65
953 tristate "NI6510 support"
Al Viroa5532602005-05-04 05:39:42 +0100954 depends on NET_VENDOR_RACAL && ISA && ISA_DMA_API
Linus Torvalds1da177e2005-04-16 15:20:36 -0700955 help
956 If you have a network (Ethernet) card of this type, say Y and read
957 the Ethernet-HOWTO, available from
958 <http://www.tldp.org/docs.html#howto>.
959
960 To compile this driver as a module, choose M here and read
961 <file:Documentation/networking/net-modules.txt>. The module
962 will be called ni65.
963
964source "drivers/net/tulip/Kconfig"
965
966config AT1700
967 tristate "AT1700/1720 support (EXPERIMENTAL)"
Jan Engelhardtd1c0a652007-06-13 12:48:53 -0700968 depends on (ISA || MCA_LEGACY) && EXPERIMENTAL
Linus Torvalds1da177e2005-04-16 15:20:36 -0700969 select CRC32
970 ---help---
971 If you have a network (Ethernet) card of this type, say Y and read
972 the Ethernet-HOWTO, available from
973 <http://www.tldp.org/docs.html#howto>.
974
975 To compile this driver as a module, choose M here and read
976 <file:Documentation/networking/net-modules.txt>. The module
977 will be called at1700.
978
979config DEPCA
980 tristate "DEPCA, DE10x, DE200, DE201, DE202, DE422 support"
Jan Engelhardtd1c0a652007-06-13 12:48:53 -0700981 depends on ISA || EISA || MCA
Linus Torvalds1da177e2005-04-16 15:20:36 -0700982 select CRC32
983 ---help---
984 If you have a network (Ethernet) card of this type, say Y and read
985 the Ethernet-HOWTO, available from
986 <http://www.tldp.org/docs.html#howto> as well as
987 <file:drivers/net/depca.c>.
988
989 To compile this driver as a module, choose M here and read
990 <file:Documentation/networking/net-modules.txt>. The module
991 will be called depca.
992
993config HP100
994 tristate "HP 10/100VG PCLAN (ISA, EISA, PCI) support"
Jan Engelhardtd1c0a652007-06-13 12:48:53 -0700995 depends on ISA || EISA || PCI
Linus Torvalds1da177e2005-04-16 15:20:36 -0700996 help
997 If you have a network (Ethernet) card of this type, say Y and read
998 the Ethernet-HOWTO, available from
999 <http://www.tldp.org/docs.html#howto>.
1000
1001 To compile this driver as a module, choose M here and read
1002 <file:Documentation/networking/net-modules.txt>. The module
1003 will be called hp100.
1004
1005config NET_ISA
1006 bool "Other ISA cards"
Jan Engelhardtd1c0a652007-06-13 12:48:53 -07001007 depends on ISA
Linus Torvalds1da177e2005-04-16 15:20:36 -07001008 ---help---
1009 If your network (Ethernet) card hasn't been mentioned yet and its
1010 bus system (that's the way the cards talks to the other components
1011 of your computer) is ISA (as opposed to EISA, VLB or PCI), say Y.
1012 Make sure you know the name of your card. Read the Ethernet-HOWTO,
1013 available from <http://www.tldp.org/docs.html#howto>.
1014
1015 If unsure, say Y.
1016
1017 Note that the answer to this question doesn't directly affect the
1018 kernel: saying N will just cause the configurator to skip all
1019 the remaining ISA network card questions. If you say Y, you will be
1020 asked for your specific card in the following questions.
1021
1022config E2100
1023 tristate "Cabletron E21xx support"
1024 depends on NET_ISA
1025 select CRC32
1026 help
1027 If you have a network (Ethernet) card of this type, say Y and read
1028 the Ethernet-HOWTO, available from
1029 <http://www.tldp.org/docs.html#howto>.
1030
1031 To compile this driver as a module, choose M here and read
1032 <file:Documentation/networking/net-modules.txt>. The module
1033 will be called e2100.
1034
1035config EWRK3
1036 tristate "EtherWORKS 3 (DE203, DE204, DE205) support"
1037 depends on NET_ISA
1038 select CRC32
1039 ---help---
1040 This driver supports the DE203, DE204 and DE205 network (Ethernet)
1041 cards. If this is for you, say Y and read
1042 <file:Documentation/networking/ewrk3.txt> in the kernel source as
1043 well as the Ethernet-HOWTO, available from
1044 <http://www.tldp.org/docs.html#howto>.
1045
1046 To compile this driver as a module, choose M here and read
1047 <file:Documentation/networking/net-modules.txt>. The module
1048 will be called ewrk3.
1049
1050config EEXPRESS
1051 tristate "EtherExpress 16 support"
1052 depends on NET_ISA
1053 ---help---
1054 If you have an EtherExpress16 network (Ethernet) card, say Y and
1055 read the Ethernet-HOWTO, available from
1056 <http://www.tldp.org/docs.html#howto>. Note that the Intel
1057 EtherExpress16 card used to be regarded as a very poor choice
1058 because the driver was very unreliable. We now have a new driver
1059 that should do better.
1060
1061 To compile this driver as a module, choose M here and read
1062 <file:Documentation/networking/net-modules.txt>. The module
1063 will be called eexpress.
1064
1065config EEXPRESS_PRO
1066 tristate "EtherExpressPro support/EtherExpress 10 (i82595) support"
1067 depends on NET_ISA
1068 ---help---
1069 If you have a network (Ethernet) card of this type, say Y. This
Jon Mason47c51432006-02-12 11:53:04 -06001070 driver supports Intel i82595{FX,TX} based boards. Note however
Linus Torvalds1da177e2005-04-16 15:20:36 -07001071 that the EtherExpress PRO/100 Ethernet card has its own separate
1072 driver. Please read the Ethernet-HOWTO, available from
1073 <http://www.tldp.org/docs.html#howto>.
1074
1075 To compile this driver as a module, choose M here and read
1076 <file:Documentation/networking/net-modules.txt>. The module
1077 will be called eepro.
1078
Linus Torvalds1da177e2005-04-16 15:20:36 -07001079config HPLAN_PLUS
1080 tristate "HP PCLAN+ (27247B and 27252A) support"
1081 depends on NET_ISA
1082 select CRC32
1083 help
1084 If you have a network (Ethernet) card of this type, say Y and read
1085 the Ethernet-HOWTO, available from
1086 <http://www.tldp.org/docs.html#howto>.
1087
1088 To compile this driver as a module, choose M here and read
1089 <file:Documentation/networking/net-modules.txt>. The module
1090 will be called hp-plus.
1091
1092config HPLAN
1093 tristate "HP PCLAN (27245 and other 27xxx series) support"
1094 depends on NET_ISA
1095 select CRC32
1096 help
1097 If you have a network (Ethernet) card of this type, say Y and read
1098 the Ethernet-HOWTO, available from
1099 <http://www.tldp.org/docs.html#howto>.
1100
1101 To compile this driver as a module, choose M here and read
1102 <file:Documentation/networking/net-modules.txt>. The module
1103 will be called hp.
1104
1105config LP486E
1106 tristate "LP486E on board Ethernet"
1107 depends on NET_ISA
1108 help
1109 Say Y here to support the 82596-based on-board Ethernet controller
1110 for the Panther motherboard, which is one of the two shipped in the
1111 Intel Professional Workstation.
1112
1113config ETH16I
1114 tristate "ICL EtherTeam 16i/32 support"
1115 depends on NET_ISA
1116 help
1117 If you have a network (Ethernet) card of this type, say Y and read
1118 the Ethernet-HOWTO, available from
1119 <http://www.tldp.org/docs.html#howto>.
1120
1121 To compile this driver as a module, choose M here and read
1122 <file:Documentation/networking/net-modules.txt>. The module
1123 will be called eth16i.
1124
1125config NE2000
1126 tristate "NE2000/NE1000 support"
Atsushi Nemoto57e386c2007-05-01 00:27:58 +09001127 depends on NET_ISA || (Q40 && m) || M32R || TOSHIBA_RBTX4927 || TOSHIBA_RBTX4938
Linus Torvalds1da177e2005-04-16 15:20:36 -07001128 select CRC32
1129 ---help---
1130 If you have a network (Ethernet) card of this type, say Y and read
1131 the Ethernet-HOWTO, available from
1132 <http://www.tldp.org/docs.html#howto>. Many Ethernet cards
1133 without a specific driver are compatible with NE2000.
1134
1135 If you have a PCI NE2000 card however, say N here and Y to "PCI
Jesper Juhl28beaf62006-03-08 00:06:31 -08001136 NE2000 and clone support" under "EISA, VLB, PCI and on board
1137 controllers" below. If you have a NE2000 card and are running on
Linus Torvalds1da177e2005-04-16 15:20:36 -07001138 an MCA system (a bus system used on some IBM PS/2 computers and
1139 laptops), say N here and Y to "NE/2 (ne2000 MCA version) support",
1140 below.
1141
1142 To compile this driver as a module, choose M here and read
1143 <file:Documentation/networking/net-modules.txt>. The module
1144 will be called ne.
1145
1146config ZNET
1147 tristate "Zenith Z-Note support (EXPERIMENTAL)"
Al Viroa5532602005-05-04 05:39:42 +01001148 depends on NET_ISA && EXPERIMENTAL && ISA_DMA_API
Linus Torvalds1da177e2005-04-16 15:20:36 -07001149 help
1150 The Zenith Z-Note notebook computer has a built-in network
1151 (Ethernet) card, and this is the Linux driver for it. Note that the
1152 IBM Thinkpad 300 is compatible with the Z-Note and is also supported
1153 by this driver. Read the Ethernet-HOWTO, available from
1154 <http://www.tldp.org/docs.html#howto>.
1155
1156config SEEQ8005
1157 tristate "SEEQ8005 support (EXPERIMENTAL)"
1158 depends on NET_ISA && EXPERIMENTAL
1159 help
1160 This is a driver for the SEEQ 8005 network (Ethernet) card. If this
1161 is for you, read the Ethernet-HOWTO, available from
1162 <http://www.tldp.org/docs.html#howto>.
1163
1164 To compile this driver as a module, choose M here and read
1165 <file:Documentation/networking/net-modules.txt>. The module
1166 will be called seeq8005.
1167
Linus Torvalds1da177e2005-04-16 15:20:36 -07001168config NE2_MCA
1169 tristate "NE/2 (ne2000 MCA version) support"
Jan Engelhardtd1c0a652007-06-13 12:48:53 -07001170 depends on MCA_LEGACY
Linus Torvalds1da177e2005-04-16 15:20:36 -07001171 select CRC32
1172 help
1173 If you have a network (Ethernet) card of this type, say Y and read
1174 the Ethernet-HOWTO, available from
1175 <http://www.tldp.org/docs.html#howto>.
1176
1177 To compile this driver as a module, choose M here and read
1178 <file:Documentation/networking/net-modules.txt>. The module
1179 will be called ne2.
1180
1181config IBMLANA
1182 tristate "IBM LAN Adapter/A support"
Jan Engelhardtd1c0a652007-06-13 12:48:53 -07001183 depends on MCA && MCA_LEGACY
Linus Torvalds1da177e2005-04-16 15:20:36 -07001184 ---help---
1185 This is a Micro Channel Ethernet adapter. You need to set
1186 CONFIG_MCA to use this driver. It is both available as an in-kernel
1187 driver and as a module.
1188
1189 To compile this driver as a module, choose M here and read
1190 <file:Documentation/networking/net-modules.txt>. The only
1191 currently supported card is the IBM LAN Adapter/A for Ethernet. It
1192 will both support 16K and 32K memory windows, however a 32K window
1193 gives a better security against packet losses. Usage of multiple
1194 boards with this driver should be possible, but has not been tested
1195 up to now due to lack of hardware.
1196
1197config IBMVETH
1198 tristate "IBM LAN Virtual Ethernet support"
Jan Engelhardtd1c0a652007-06-13 12:48:53 -07001199 depends on PPC_PSERIES
Linus Torvalds1da177e2005-04-16 15:20:36 -07001200 ---help---
1201 This driver supports virtual ethernet adapters on newer IBM iSeries
1202 and pSeries systems.
1203
1204 To compile this driver as a module, choose M here and read
1205 <file:Documentation/networking/net-modules.txt>. The module will
1206 be called ibmveth.
1207
1208config IBM_EMAC
Eugene Surovegin37448f72005-10-10 16:58:14 -07001209 tristate "PowerPC 4xx on-chip Ethernet support"
David Gibson86affd52007-06-28 11:27:57 +10001210 depends on 4xx && !PPC_MERGE
Eugene Surovegin37448f72005-10-10 16:58:14 -07001211 help
1212 This driver supports the PowerPC 4xx EMAC family of on-chip
1213 Ethernet controllers.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001214
1215config IBM_EMAC_RXB
1216 int "Number of receive buffers"
1217 depends on IBM_EMAC
Eugene Surovegin37448f72005-10-10 16:58:14 -07001218 default "128"
Linus Torvalds1da177e2005-04-16 15:20:36 -07001219
1220config IBM_EMAC_TXB
1221 int "Number of transmit buffers"
1222 depends on IBM_EMAC
Eugene Surovegin37448f72005-10-10 16:58:14 -07001223 default "64"
Linus Torvalds1da177e2005-04-16 15:20:36 -07001224
Eugene Surovegin37448f72005-10-10 16:58:14 -07001225config IBM_EMAC_POLL_WEIGHT
1226 int "MAL NAPI polling weight"
Linus Torvalds1da177e2005-04-16 15:20:36 -07001227 depends on IBM_EMAC
Eugene Surovegin37448f72005-10-10 16:58:14 -07001228 default "32"
Linus Torvalds1da177e2005-04-16 15:20:36 -07001229
Eugene Surovegin37448f72005-10-10 16:58:14 -07001230config IBM_EMAC_RX_COPY_THRESHOLD
1231 int "RX skb copy threshold (bytes)"
1232 depends on IBM_EMAC
1233 default "256"
1234
1235config IBM_EMAC_RX_SKB_HEADROOM
1236 int "Additional RX skb headroom (bytes)"
Linus Torvalds1da177e2005-04-16 15:20:36 -07001237 depends on IBM_EMAC
1238 default "0"
Eugene Surovegin37448f72005-10-10 16:58:14 -07001239 help
1240 Additional receive skb headroom. Note, that driver
1241 will always reserve at least 2 bytes to make IP header
Jon Mason47c51432006-02-12 11:53:04 -06001242 aligned, so usually there is no need to add any additional
Eugene Surovegin37448f72005-10-10 16:58:14 -07001243 headroom.
1244
1245 If unsure, set to 0.
1246
1247config IBM_EMAC_PHY_RX_CLK_FIX
1248 bool "PHY Rx clock workaround"
Eugene Surovegin1b195912005-10-29 12:45:31 -07001249 depends on IBM_EMAC && (405EP || 440GX || 440EP || 440GR)
Eugene Surovegin37448f72005-10-10 16:58:14 -07001250 help
1251 Enable this if EMAC attached to a PHY which doesn't generate
1252 RX clock if there is no link, if this is the case, you will
1253 see "TX disable timeout" or "RX disable timeout" in the system
1254 log.
1255
1256 If unsure, say N.
1257
1258config IBM_EMAC_DEBUG
1259 bool "Debugging"
1260 depends on IBM_EMAC
1261 default n
1262
1263config IBM_EMAC_ZMII
1264 bool
1265 depends on IBM_EMAC && (NP405H || NP405L || 44x)
1266 default y
1267
1268config IBM_EMAC_RGMII
1269 bool
1270 depends on IBM_EMAC && 440GX
1271 default y
1272
1273config IBM_EMAC_TAH
1274 bool
1275 depends on IBM_EMAC && 440GX
1276 default y
Linus Torvalds1da177e2005-04-16 15:20:36 -07001277
1278config NET_PCI
1279 bool "EISA, VLB, PCI and on board controllers"
Jan Engelhardtd1c0a652007-06-13 12:48:53 -07001280 depends on ISA || EISA || PCI
Linus Torvalds1da177e2005-04-16 15:20:36 -07001281 help
1282 This is another class of network cards which attach directly to the
1283 bus. If you have one of those, say Y and read the Ethernet-HOWTO,
1284 available from <http://www.tldp.org/docs.html#howto>.
1285
1286 Note that the answer to this question doesn't directly affect the
1287 kernel: saying N will just cause the configurator to skip all
1288 the questions about this class of network cards. If you say Y, you
1289 will be asked for your specific card in the following questions. If
1290 you are unsure, say Y.
1291
1292config PCNET32
1293 tristate "AMD PCnet32 PCI support"
1294 depends on NET_PCI && PCI
1295 select CRC32
1296 select MII
1297 help
1298 If you have a PCnet32 or PCnetPCI based network (Ethernet) card,
1299 answer Y here and read the Ethernet-HOWTO, available from
1300 <http://www.tldp.org/docs.html#howto>.
1301
1302 To compile this driver as a module, choose M here and read
1303 <file:Documentation/networking/net-modules.txt>. The module
1304 will be called pcnet32.
1305
Don Fry7de745e2006-09-13 10:16:53 -07001306config PCNET32_NAPI
pcnet32@verizon.net659dd832007-02-16 10:09:57 -06001307 bool "Use RX polling (NAPI)"
1308 depends on PCNET32
Don Fry7de745e2006-09-13 10:16:53 -07001309 help
1310 NAPI is a new driver API designed to reduce CPU and interrupt load
1311 when the driver is receiving lots of packets from the card. It is
1312 still somewhat experimental and thus not yet enabled by default.
1313
1314 If your estimated Rx load is 10kpps or more, or if the card will be
1315 deployed on potentially unfriendly networks (e.g. in a firewall),
1316 then say Y here.
1317
1318 See <file:Documentation/networking/NAPI_HOWTO.txt> for more
1319 information.
1320
1321 If in doubt, say N.
1322
Linus Torvalds1da177e2005-04-16 15:20:36 -07001323config AMD8111_ETH
1324 tristate "AMD 8111 (new PCI lance) support"
1325 depends on NET_PCI && PCI
1326 select CRC32
1327 select MII
1328 help
1329 If you have an AMD 8111-based PCI lance ethernet card,
1330 answer Y here and read the Ethernet-HOWTO, available from
1331 <http://www.tldp.org/docs.html#howto>.
1332
1333 To compile this driver as a module, choose M here and read
1334 <file:Documentation/networking/net-modules.txt>. The module
1335 will be called amd8111e.
Jan Engelhardtd1c0a652007-06-13 12:48:53 -07001336
Linus Torvalds1da177e2005-04-16 15:20:36 -07001337config AMD8111E_NAPI
1338 bool "Enable NAPI support"
1339 depends on AMD8111_ETH
1340 help
1341 NAPI is a new driver API designed to reduce CPU and interrupt load
1342 when the driver is receiving lots of packets from the card. It is
1343 still somewhat experimental and thus not yet enabled by default.
1344
1345 If your estimated Rx load is 10kpps or more, or if the card will be
1346 deployed on potentially unfriendly networks (e.g. in a firewall),
1347 then say Y here.
1348
1349 See <file:Documentation/networking/NAPI_HOWTO.txt> for more
1350 information.
1351
1352 If in doubt, say N.
1353
1354config ADAPTEC_STARFIRE
1355 tristate "Adaptec Starfire/DuraLAN support"
1356 depends on NET_PCI && PCI
1357 select CRC32
1358 select MII
1359 help
1360 Say Y here if you have an Adaptec Starfire (or DuraLAN) PCI network
1361 adapter. The DuraLAN chip is used on the 64 bit PCI boards from
1362 Adaptec e.g. the ANA-6922A. The older 32 bit boards use the tulip
1363 driver.
1364
1365 To compile this driver as a module, choose M here: the module
1366 will be called starfire. This is recommended.
1367
1368config ADAPTEC_STARFIRE_NAPI
1369 bool "Use Rx Polling (NAPI) (EXPERIMENTAL)"
1370 depends on ADAPTEC_STARFIRE && EXPERIMENTAL
1371 help
1372 NAPI is a new driver API designed to reduce CPU and interrupt load
1373 when the driver is receiving lots of packets from the card. It is
1374 still somewhat experimental and thus not yet enabled by default.
1375
1376 If your estimated Rx load is 10kpps or more, or if the card will be
1377 deployed on potentially unfriendly networks (e.g. in a firewall),
1378 then say Y here.
1379
1380 See <file:Documentation/networking/NAPI_HOWTO.txt> for more
1381 information.
1382
1383 If in doubt, say N.
1384
1385config AC3200
1386 tristate "Ansel Communications EISA 3200 support (EXPERIMENTAL)"
1387 depends on NET_PCI && (ISA || EISA) && EXPERIMENTAL
1388 select CRC32
1389 help
1390 If you have a network (Ethernet) card of this type, say Y and read
1391 the Ethernet-HOWTO, available from
1392 <http://www.tldp.org/docs.html#howto>.
1393
1394 To compile this driver as a module, choose M here and read
1395 <file:Documentation/networking/net-modules.txt>. The module
1396 will be called ac3200.
1397
1398config APRICOT
1399 tristate "Apricot Xen-II on board Ethernet"
1400 depends on NET_PCI && ISA
1401 help
1402 If you have a network (Ethernet) controller of this type, say Y and
1403 read the Ethernet-HOWTO, available from
1404 <http://www.tldp.org/docs.html#howto>.
1405
1406 To compile this driver as a module, choose M here and read
1407 <file:Documentation/networking/net-modules.txt>. The module will be
1408 called apricot.
1409
1410config B44
Gary Zambranofc13dca2006-06-20 15:34:46 -07001411 tristate "Broadcom 4400 ethernet support"
1412 depends on NET_PCI && PCI
Linus Torvalds1da177e2005-04-16 15:20:36 -07001413 select MII
1414 help
1415 If you have a network (Ethernet) controller of this type, say Y and
1416 read the Ethernet-HOWTO, available from
1417 <http://www.tldp.org/docs.html#howto>.
1418
1419 To compile this driver as a module, choose M here and read
1420 <file:Documentation/networking/net-modules.txt>. The module will be
1421 called b44.
1422
1423config FORCEDETH
Adrian Bunk82770082006-03-08 00:06:30 -08001424 tristate "nForce Ethernet support"
1425 depends on NET_PCI && PCI
Linus Torvalds1da177e2005-04-16 15:20:36 -07001426 help
1427 If you have a network (Ethernet) controller of this type, say Y and
1428 read the Ethernet-HOWTO, available from
1429 <http://www.tldp.org/docs.html#howto>.
1430
1431 To compile this driver as a module, choose M here and read
1432 <file:Documentation/networking/net-modules.txt>. The module will be
1433 called forcedeth.
1434
Stephen Hemmingere27cdba2006-07-31 20:37:19 -07001435config FORCEDETH_NAPI
1436 bool "Use Rx and Tx Polling (NAPI) (EXPERIMENTAL)"
1437 depends on FORCEDETH && EXPERIMENTAL
1438 help
1439 NAPI is a new driver API designed to reduce CPU and interrupt load
1440 when the driver is receiving lots of packets from the card. It is
1441 still somewhat experimental and thus not yet enabled by default.
1442
1443 If your estimated Rx load is 10kpps or more, or if the card will be
1444 deployed on potentially unfriendly networks (e.g. in a firewall),
1445 then say Y here.
1446
1447 See <file:Documentation/networking/NAPI_HOWTO.txt> for more
1448 information.
1449
1450 If in doubt, say N.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001451
1452config CS89x0
1453 tristate "CS89x0 support"
Deepak Saxena9c878962006-01-14 13:21:18 -08001454 depends on NET_PCI && (ISA || MACH_IXDP2351 || ARCH_IXDP2X01 || ARCH_PNX010X)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001455 ---help---
1456 Support for CS89x0 chipset based Ethernet cards. If you have a
1457 network (Ethernet) card of this type, say Y and read the
1458 Ethernet-HOWTO, available from
1459 <http://www.tldp.org/docs.html#howto> as well as
1460 <file:Documentation/networking/cs89x0.txt>.
1461
1462 To compile this driver as a module, choose M here and read
1463 <file:Documentation/networking/net-modules.txt>. The module will be
Jean Delvarefd85d762006-01-11 12:17:36 -08001464 called cs89x0.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001465
1466config TC35815
1467 tristate "TOSHIBA TC35815 Ethernet support"
Atsushi Nemotoeea221ce2007-03-03 23:54:59 +09001468 depends on NET_PCI && PCI && MIPS
1469 select MII
Linus Torvalds1da177e2005-04-16 15:20:36 -07001470
1471config DGRS
1472 tristate "Digi Intl. RightSwitch SE-X support"
1473 depends on NET_PCI && (PCI || EISA)
1474 ---help---
1475 This is support for the Digi International RightSwitch series of
1476 PCI/EISA Ethernet switch cards. These include the SE-4 and the SE-6
1477 models. If you have a network card of this type, say Y and read the
1478 Ethernet-HOWTO, available from
1479 <http://www.tldp.org/docs.html#howto>. More specific
1480 information is contained in <file:Documentation/networking/dgrs.txt>.
1481
1482 To compile this driver as a module, choose M here and read
1483 <file:Documentation/networking/net-modules.txt>. The module
1484 will be called dgrs.
1485
1486config EEPRO100
1487 tristate "EtherExpressPro/100 support (eepro100, original Becker driver)"
1488 depends on NET_PCI && PCI
1489 select MII
1490 help
1491 If you have an Intel EtherExpress PRO/100 PCI network (Ethernet)
1492 card, say Y and read the Ethernet-HOWTO, available from
1493 <http://www.tldp.org/docs.html#howto>.
1494
1495 To compile this driver as a module, choose M here and read
1496 <file:Documentation/networking/net-modules.txt>. The module
1497 will be called eepro100.
1498
1499
1500config E100
1501 tristate "Intel(R) PRO/100+ support"
1502 depends on NET_PCI && PCI
1503 select MII
1504 ---help---
1505 This driver supports Intel(R) PRO/100 family of adapters.
1506 To verify that your adapter is supported, find the board ID number
1507 on the adapter. Look for a label that has a barcode and a number
1508 in the format 123456-001 (six digits hyphen three digits).
1509
1510 Use the above information and the Adapter & Driver ID Guide at:
1511
1512 <http://support.intel.com/support/network/adapter/pro100/21397.htm>
1513
1514 to identify the adapter.
1515
1516 For the latest Intel PRO/100 network driver for Linux, see:
1517
1518 <http://appsr.intel.com/scripts-df/support_intel.asp>
1519
1520 More specific information on configuring the driver is in
1521 <file:Documentation/networking/e100.txt>.
1522
1523 To compile this driver as a module, choose M here and read
1524 <file:Documentation/networking/net-modules.txt>. The module
1525 will be called e100.
1526
1527config LNE390
1528 tristate "Mylex EISA LNE390A/B support (EXPERIMENTAL)"
1529 depends on NET_PCI && EISA && EXPERIMENTAL
1530 select CRC32
1531 help
1532 If you have a network (Ethernet) card of this type, say Y and read
1533 the Ethernet-HOWTO, available from
1534 <http://www.tldp.org/docs.html#howto>.
1535
1536 To compile this driver as a module, choose M here and read
1537 <file:Documentation/networking/net-modules.txt>. The module
1538 will be called lne390.
1539
1540config FEALNX
1541 tristate "Myson MTD-8xx PCI Ethernet support"
1542 depends on NET_PCI && PCI
1543 select CRC32
1544 select MII
1545 help
1546 Say Y here to support the Mysom MTD-800 family of PCI-based Ethernet
1547 cards. Specifications and data at
1548 <http://www.myson.com.hk/mtd/datasheet/>.
1549
1550config NATSEMI
1551 tristate "National Semiconductor DP8381x series PCI Ethernet support"
1552 depends on NET_PCI && PCI
1553 select CRC32
1554 help
1555 This driver is for the National Semiconductor DP83810 series,
1556 which is used in cards from PureData, NetGear, Linksys
1557 and others, including the 83815 chip.
1558 More specific information and updates are available from
1559 <http://www.scyld.com/network/natsemi.html>.
1560
1561config NE2K_PCI
1562 tristate "PCI NE2000 and clones support (see help)"
1563 depends on NET_PCI && PCI
1564 select CRC32
1565 ---help---
1566 This driver is for NE2000 compatible PCI cards. It will not work
1567 with ISA NE2000 cards (they have their own driver, "NE2000/NE1000
1568 support" below). If you have a PCI NE2000 network (Ethernet) card,
1569 say Y and read the Ethernet-HOWTO, available from
1570 <http://www.tldp.org/docs.html#howto>.
1571
1572 This driver also works for the following NE2000 clone cards:
1573 RealTek RTL-8029 Winbond 89C940 Compex RL2000 KTI ET32P2
1574 NetVin NV5000SC Via 86C926 SureCom NE34 Winbond
1575 Holtek HT80232 Holtek HT80229
1576
1577 To compile this driver as a module, choose M here and read
1578 <file:Documentation/networking/net-modules.txt>. The module
1579 will be called ne2k-pci.
1580
1581config NE3210
1582 tristate "Novell/Eagle/Microdyne NE3210 EISA support (EXPERIMENTAL)"
1583 depends on NET_PCI && EISA && EXPERIMENTAL
1584 select CRC32
1585 ---help---
1586 If you have a network (Ethernet) card of this type, say Y and read
1587 the Ethernet-HOWTO, available from
1588 <http://www.tldp.org/docs.html#howto>. Note that this driver
1589 will NOT WORK for NE3200 cards as they are completely different.
1590
1591 To compile this driver as a module, choose M here and read
1592 <file:Documentation/networking/net-modules.txt>. The module
1593 will be called ne3210.
1594
1595config ES3210
1596 tristate "Racal-Interlan EISA ES3210 support (EXPERIMENTAL)"
1597 depends on NET_PCI && EISA && EXPERIMENTAL
1598 select CRC32
1599 help
1600 If you have a network (Ethernet) card of this type, say Y and read
1601 the Ethernet-HOWTO, available from
1602 <http://www.tldp.org/docs.html#howto>.
1603
1604 To compile this driver as a module, choose M here and read
1605 <file:Documentation/networking/net-modules.txt>. The module
1606 will be called es3210.
1607
1608config 8139CP
1609 tristate "RealTek RTL-8139 C+ PCI Fast Ethernet Adapter support (EXPERIMENTAL)"
1610 depends on NET_PCI && PCI && EXPERIMENTAL
1611 select CRC32
1612 select MII
1613 help
1614 This is a driver for the Fast Ethernet PCI network cards based on
1615 the RTL8139C+ chips. If you have one of those, say Y and read
1616 the Ethernet-HOWTO, available from
1617 <http://www.tldp.org/docs.html#howto>.
1618
1619 To compile this driver as a module, choose M here: the module
1620 will be called 8139cp. This is recommended.
1621
1622config 8139TOO
Adrian Bunkf04e3f02005-05-16 21:13:03 +02001623 tristate "RealTek RTL-8129/8130/8139 PCI Fast Ethernet Adapter support"
Linus Torvalds1da177e2005-04-16 15:20:36 -07001624 depends on NET_PCI && PCI
1625 select CRC32
1626 select MII
1627 ---help---
1628 This is a driver for the Fast Ethernet PCI network cards based on
Adrian Bunkf04e3f02005-05-16 21:13:03 +02001629 the RTL 8129/8130/8139 chips. If you have one of those, say Y and
1630 read the Ethernet-HOWTO <http://www.tldp.org/docs.html#howto>.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001631
1632 To compile this driver as a module, choose M here: the module
1633 will be called 8139too. This is recommended.
1634
1635config 8139TOO_PIO
1636 bool "Use PIO instead of MMIO"
1637 default y
1638 depends on 8139TOO
1639 help
1640 This instructs the driver to use programmed I/O ports (PIO) instead
1641 of PCI shared memory (MMIO). This can possibly solve some problems
1642 in case your mainboard has memory consistency issues. If unsure,
1643 say N.
1644
1645config 8139TOO_TUNE_TWISTER
1646 bool "Support for uncommon RTL-8139 rev. K (automatic channel equalization)"
1647 depends on 8139TOO
1648 help
1649 This implements a function which might come in handy in case you
1650 are using low quality on long cabling. It is required for RealTek
1651 RTL-8139 revision K boards, and totally unused otherwise. It tries
1652 to match the transceiver to the cable characteristics. This is
1653 experimental since hardly documented by the manufacturer.
1654 If unsure, say Y.
1655
1656config 8139TOO_8129
1657 bool "Support for older RTL-8129/8130 boards"
1658 depends on 8139TOO
1659 help
1660 This enables support for the older and uncommon RTL-8129 and
1661 RTL-8130 chips, which support MII via an external transceiver,
1662 instead of an internal one. Disabling this option will save some
1663 memory by making the code size smaller. If unsure, say Y.
1664
1665config 8139_OLD_RX_RESET
1666 bool "Use older RX-reset method"
1667 depends on 8139TOO
1668 help
1669 The 8139too driver was recently updated to contain a more rapid
1670 reset sequence, in the face of severe receive errors. This "new"
1671 RX-reset method should be adequate for all boards. But if you
1672 experience problems, you can enable this option to restore the
1673 old RX-reset behavior. If unsure, say N.
1674
1675config SIS900
1676 tristate "SiS 900/7016 PCI Fast Ethernet Adapter support"
1677 depends on NET_PCI && PCI
1678 select CRC32
Adrian Bunk6da0f682005-04-30 13:52:49 +02001679 select MII
Linus Torvalds1da177e2005-04-16 15:20:36 -07001680 ---help---
1681 This is a driver for the Fast Ethernet PCI network cards based on
1682 the SiS 900 and SiS 7016 chips. The SiS 900 core is also embedded in
Adrian Bunkc3cf5602006-03-04 17:07:57 +01001683 SiS 630 and SiS 540 chipsets.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001684
1685 This driver also supports AMD 79C901 HomePNA so that you can use
1686 your phone line as a network cable.
1687
1688 To compile this driver as a module, choose M here: the module
1689 will be called sis900. This is recommended.
1690
1691config EPIC100
1692 tristate "SMC EtherPower II"
1693 depends on NET_PCI && PCI
1694 select CRC32
1695 select MII
1696 help
1697 This driver is for the SMC EtherPower II 9432 PCI Ethernet NIC,
1698 which is based on the SMC83c17x (EPIC/100).
1699 More specific information and updates are available from
1700 <http://www.scyld.com/network/epic100.html>.
1701
1702config SUNDANCE
1703 tristate "Sundance Alta support"
1704 depends on NET_PCI && PCI
1705 select CRC32
1706 select MII
1707 help
1708 This driver is for the Sundance "Alta" chip.
1709 More specific information and updates are available from
1710 <http://www.scyld.com/network/sundance.html>.
1711
1712config SUNDANCE_MMIO
1713 bool "Use MMIO instead of PIO"
1714 depends on SUNDANCE
1715 help
1716 Enable memory-mapped I/O for interaction with Sundance NIC registers.
1717 Do NOT enable this by default, PIO (enabled when MMIO is disabled)
1718 is known to solve bugs on certain chips.
1719
1720 If unsure, say N.
1721
1722config TLAN
1723 tristate "TI ThunderLAN support"
1724 depends on NET_PCI && (PCI || EISA) && !64BIT
1725 ---help---
1726 If you have a PCI Ethernet network card based on the ThunderLAN chip
1727 which is supported by this driver, say Y and read the
1728 Ethernet-HOWTO, available from
1729 <http://www.tldp.org/docs.html#howto>.
1730
1731 Devices currently supported by this driver are Compaq Netelligent,
1732 Compaq NetFlex and Olicom cards. Please read the file
1733 <file:Documentation/networking/tlan.txt> for more details.
1734
1735 To compile this driver as a module, choose M here and read
1736 <file:Documentation/networking/net-modules.txt>. The module
1737 will be called tlan.
1738
1739 Please email feedback to <torben.mathiasen@compaq.com>.
1740
1741config VIA_RHINE
1742 tristate "VIA Rhine support"
1743 depends on NET_PCI && PCI
1744 select CRC32
1745 select MII
1746 help
1747 If you have a VIA "Rhine" based network card (Rhine-I (VT86C100A),
1748 Rhine-II (VT6102), or Rhine-III (VT6105)), say Y here. Rhine-type
1749 Ethernet functions can also be found integrated on South Bridges
1750 (e.g. VT8235).
1751
1752 To compile this driver as a module, choose M here. The module
1753 will be called via-rhine.
1754
1755config VIA_RHINE_MMIO
1756 bool "Use MMIO instead of PIO"
1757 depends on VIA_RHINE
1758 help
1759 This instructs the driver to use PCI shared memory (MMIO) instead of
1760 programmed I/O ports (PIO). Enabling this gives an improvement in
1761 processing time in parts of the driver.
1762
1763 If unsure, say Y.
1764
Roger Luethi633949a2006-08-14 23:00:17 -07001765config VIA_RHINE_NAPI
1766 bool "Use Rx Polling (NAPI)"
1767 depends on VIA_RHINE
1768 help
1769 NAPI is a new driver API designed to reduce CPU and interrupt load
1770 when the driver is receiving lots of packets from the card.
1771
1772 If your estimated Rx load is 10kpps or more, or if the card will be
1773 deployed on potentially unfriendly networks (e.g. in a firewall),
1774 then say Y here.
1775
1776 See <file:Documentation/networking/NAPI_HOWTO.txt> for more
1777 information.
1778
Linus Torvalds1da177e2005-04-16 15:20:36 -07001779config LAN_SAA9730
Ralf Baechlef2b67c72006-11-29 17:10:38 +00001780 bool "Philips SAA9730 Ethernet support"
1781 depends on NET_PCI && PCI && MIPS_ATLAS
Linus Torvalds1da177e2005-04-16 15:20:36 -07001782 help
1783 The SAA9730 is a combined multimedia and peripheral controller used
1784 in thin clients, Internet access terminals, and diskless
1785 workstations.
1786 See <http://www.semiconductors.philips.com/pip/SAA9730_flyer_1>.
1787
Cesar Eduardo Barrosbf345702006-12-19 13:08:47 -08001788config SC92031
1789 tristate "Silan SC92031 PCI Fast Ethernet Adapter driver (EXPERIMENTAL)"
1790 depends on NET_PCI && PCI && EXPERIMENTAL
1791 select CRC32
1792 ---help---
1793 This is a driver for the Fast Ethernet PCI network cards based on
1794 the Silan SC92031 chip (sometimes also called Rsltek 8139D). If you
1795 have one of these, say Y here.
1796
1797 To compile this driver as a module, choose M here: the module
1798 will be called sc92031. This is recommended.
1799
Linus Torvalds1da177e2005-04-16 15:20:36 -07001800config NET_POCKET
1801 bool "Pocket and portable adapters"
Jan Engelhardtd1c0a652007-06-13 12:48:53 -07001802 depends on PARPORT
Linus Torvalds1da177e2005-04-16 15:20:36 -07001803 ---help---
1804 Cute little network (Ethernet) devices which attach to the parallel
1805 port ("pocket adapters"), commonly used with laptops. If you have
1806 one of those, say Y and read the Ethernet-HOWTO, available from
1807 <http://www.tldp.org/docs.html#howto>.
1808
1809 If you want to plug a network (or some other) card into the PCMCIA
1810 (or PC-card) slot of your laptop instead (PCMCIA is the standard for
1811 credit card size extension cards used by all modern laptops), you
1812 need the pcmcia-cs package (location contained in the file
1813 <file:Documentation/Changes>) and you can say N here.
1814
1815 Laptop users should read the Linux Laptop home page at
1816 <http://www.linux-on-laptops.com/> or
1817 Tuxmobil - Linux on Mobile Computers at <http://www.tuxmobil.org/>.
1818
1819 Note that the answer to this question doesn't directly affect the
1820 kernel: saying N will just cause the configurator to skip all
1821 the questions about this class of network devices. If you say Y, you
1822 will be asked for your specific device in the following questions.
1823
1824config ATP
1825 tristate "AT-LAN-TEC/RealTek pocket adapter support"
Grant Coady32fa2bf2005-09-10 00:14:05 +10001826 depends on NET_POCKET && PARPORT && X86
Linus Torvalds1da177e2005-04-16 15:20:36 -07001827 select CRC32
1828 ---help---
1829 This is a network (Ethernet) device which attaches to your parallel
1830 port. Read <file:drivers/net/atp.c> as well as the Ethernet-HOWTO,
1831 available from <http://www.tldp.org/docs.html#howto>, if you
1832 want to use this. If you intend to use this driver, you should have
1833 said N to the "Parallel printer support", because the two drivers
1834 don't like each other.
1835
1836 To compile this driver as a module, choose M here: the module
1837 will be called atp.
1838
1839config DE600
1840 tristate "D-Link DE600 pocket adapter support"
Grant Coady32fa2bf2005-09-10 00:14:05 +10001841 depends on NET_POCKET && PARPORT
Linus Torvalds1da177e2005-04-16 15:20:36 -07001842 ---help---
1843 This is a network (Ethernet) device which attaches to your parallel
1844 port. Read <file:Documentation/networking/DLINK.txt> as well as the
1845 Ethernet-HOWTO, available from
1846 <http://www.tldp.org/docs.html#howto>, if you want to use
1847 this. It is possible to have several devices share a single parallel
1848 port and it is safe to compile the corresponding drivers into the
1849 kernel.
1850
1851 To compile this driver as a module, choose M here: the module
1852 will be called de600.
1853
1854config DE620
1855 tristate "D-Link DE620 pocket adapter support"
Grant Coady32fa2bf2005-09-10 00:14:05 +10001856 depends on NET_POCKET && PARPORT
Linus Torvalds1da177e2005-04-16 15:20:36 -07001857 ---help---
1858 This is a network (Ethernet) device which attaches to your parallel
1859 port. Read <file:Documentation/networking/DLINK.txt> as well as the
1860 Ethernet-HOWTO, available from
1861 <http://www.tldp.org/docs.html#howto>, if you want to use
1862 this. It is possible to have several devices share a single parallel
1863 port and it is safe to compile the corresponding drivers into the
1864 kernel.
1865
1866 To compile this driver as a module, choose M here: the module
1867 will be called de620.
1868
1869config SGISEEQ
1870 tristate "SGI Seeq ethernet controller support"
Jan Engelhardtd1c0a652007-06-13 12:48:53 -07001871 depends on SGI_IP22
Linus Torvalds1da177e2005-04-16 15:20:36 -07001872 help
1873 Say Y here if you have an Seeq based Ethernet network card. This is
1874 used in many Silicon Graphics machines.
1875
1876config DECLANCE
1877 tristate "DEC LANCE ethernet controller support"
Jan Engelhardtd1c0a652007-06-13 12:48:53 -07001878 depends on MACH_DECSTATION
Linus Torvalds1da177e2005-04-16 15:20:36 -07001879 select CRC32
1880 help
1881 This driver is for the series of Ethernet controllers produced by
1882 DEC (now Compaq) based on the AMD Lance chipset, including the
1883 DEPCA series. (This chipset is better known via the NE2100 cards.)
1884
1885config 68360_ENET
1886 bool "Motorola 68360 ethernet controller"
1887 depends on M68360
1888 help
1889 Say Y here if you want to use the built-in ethernet controller of
1890 the Motorola 68360 processor.
1891
1892config FEC
Greg Ungerer2af69212005-09-12 11:18:10 +10001893 bool "FEC ethernet controller (of ColdFire CPUs)"
Greg Ungerer892b6252006-01-10 16:58:16 +10001894 depends on M523x || M527x || M5272 || M528x || M520x
Linus Torvalds1da177e2005-04-16 15:20:36 -07001895 help
1896 Say Y here if you want to use the built-in 10/100 Fast ethernet
Greg Ungerer2af69212005-09-12 11:18:10 +10001897 controller on some Motorola ColdFire processors.
1898
1899config FEC2
1900 bool "Second FEC ethernet controller (on some ColdFire CPUs)"
1901 depends on FEC
1902 help
1903 Say Y here if you want to use the second built-in 10/100 Fast
1904 ethernet controller on some Motorola ColdFire processors.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001905
1906config NE_H8300
1907 tristate "NE2000 compatible support for H8/300"
Jan Engelhardtd1c0a652007-06-13 12:48:53 -07001908 depends on H8300
Linus Torvalds1da177e2005-04-16 15:20:36 -07001909 help
1910 Say Y here if you want to use the NE2000 compatible
1911 controller on the Renesas H8/300 processor.
1912
1913source "drivers/net/fec_8xx/Kconfig"
Pantelis Antoniou48257c42005-10-28 16:25:58 -04001914source "drivers/net/fs_enet/Kconfig"
Linus Torvalds1da177e2005-04-16 15:20:36 -07001915
Jan Engelhardtd1c0a652007-06-13 12:48:53 -07001916endif # NET_ETHERNET
Linus Torvalds1da177e2005-04-16 15:20:36 -07001917
1918#
1919# Gigabit Ethernet
1920#
1921
Jan Engelhardtf30486d2007-05-10 22:52:56 -07001922menuconfig NETDEV_1000
1923 bool "Ethernet (1000 Mbit)"
Randy Dunlapcbcd2a42005-07-27 13:04:35 -07001924 depends on !UML
Jan Engelhardtf30486d2007-05-10 22:52:56 -07001925 default y
1926
1927if NETDEV_1000
Linus Torvalds1da177e2005-04-16 15:20:36 -07001928
1929config ACENIC
1930 tristate "Alteon AceNIC/3Com 3C985/NetGear GA620 Gigabit support"
1931 depends on PCI
1932 ---help---
1933 Say Y here if you have an Alteon AceNIC, 3Com 3C985(B), NetGear
1934 GA620, SGI Gigabit or Farallon PN9000-SX PCI Gigabit Ethernet
1935 adapter. The driver allows for using the Jumbo Frame option (9000
1936 bytes/frame) however it requires that your switches can handle this
1937 as well. To enable Jumbo Frames, add `mtu 9000' to your ifconfig
1938 line.
1939
1940 To compile this driver as a module, choose M here: the
1941 module will be called acenic.
1942
1943config ACENIC_OMIT_TIGON_I
1944 bool "Omit support for old Tigon I based AceNICs"
1945 depends on ACENIC
1946 help
1947 Say Y here if you only have Tigon II based AceNICs and want to leave
1948 out support for the older Tigon I based cards which are no longer
1949 being sold (ie. the original Alteon AceNIC and 3Com 3C985 (non B
1950 version)). This will reduce the size of the driver object by
1951 app. 100KB. If you are not sure whether your card is a Tigon I or a
1952 Tigon II, say N here.
1953
1954 The safe and default value for this is N.
1955
1956config DL2K
1957 tristate "D-Link DL2000-based Gigabit Ethernet support"
1958 depends on PCI
1959 select CRC32
1960 help
1961 This driver supports D-Link 2000-based gigabit ethernet cards, which
1962 includes
1963 D-Link DGE-550T Gigabit Ethernet Adapter.
1964 D-Link DL2000-based Gigabit Ethernet Adapter.
1965
1966 To compile this driver as a module, choose M here: the
1967 module will be called dl2k.
1968
1969config E1000
1970 tristate "Intel(R) PRO/1000 Gigabit Ethernet support"
1971 depends on PCI
1972 ---help---
1973 This driver supports Intel(R) PRO/1000 gigabit ethernet family of
1974 adapters. For more information on how to identify your adapter, go
1975 to the Adapter & Driver ID Guide at:
1976
1977 <http://support.intel.com/support/network/adapter/pro100/21397.htm>
1978
1979 For general information and support, go to the Intel support
1980 website at:
1981
1982 <http://support.intel.com>
1983
1984 More specific information on configuring the driver is in
1985 <file:Documentation/networking/e1000.txt>.
1986
1987 To compile this driver as a module, choose M here and read
1988 <file:Documentation/networking/net-modules.txt>. The module
1989 will be called e1000.
1990
1991config E1000_NAPI
1992 bool "Use Rx Polling (NAPI)"
1993 depends on E1000
1994 help
1995 NAPI is a new driver API designed to reduce CPU and interrupt load
1996 when the driver is receiving lots of packets from the card. It is
1997 still somewhat experimental and thus not yet enabled by default.
1998
1999 If your estimated Rx load is 10kpps or more, or if the card will be
2000 deployed on potentially unfriendly networks (e.g. in a firewall),
2001 then say Y here.
2002
2003 See <file:Documentation/networking/NAPI_HOWTO.txt> for more
2004 information.
2005
2006 If in doubt, say N.
2007
Jesse Brandeburg35ec56b2006-01-18 13:01:30 -08002008config E1000_DISABLE_PACKET_SPLIT
2009 bool "Disable Packet Split for PCI express adapters"
2010 depends on E1000
2011 help
2012 Say Y here if you want to use the legacy receive path for PCI express
James Ring9e6b4872006-03-22 00:51:11 +01002013 hardware.
Jesse Brandeburg35ec56b2006-01-18 13:01:30 -08002014
2015 If in doubt, say N.
2016
Lennert Buytenhek15d014d2005-11-11 18:23:13 +01002017source "drivers/net/ixp2000/Kconfig"
2018
Linus Torvalds1da177e2005-04-16 15:20:36 -07002019config MYRI_SBUS
2020 tristate "MyriCOM Gigabit Ethernet support"
2021 depends on SBUS
2022 help
2023 This driver supports MyriCOM Sbus gigabit Ethernet cards.
2024
2025 To compile this driver as a module, choose M here: the module
2026 will be called myri_sbus. This is recommended.
2027
2028config NS83820
Jon Mason47c51432006-02-12 11:53:04 -06002029 tristate "National Semiconductor DP83820 support"
Linus Torvalds1da177e2005-04-16 15:20:36 -07002030 depends on PCI
2031 help
2032 This is a driver for the National Semiconductor DP83820 series
2033 of gigabit ethernet MACs. Cards using this chipset include
2034 the D-Link DGE-500T, PureData's PDP8023Z-TG, SMC's SMC9462TX,
2035 SOHO-GA2000T, SOHO-GA2500T. The driver supports the use of
2036 zero copy.
2037
2038config HAMACHI
2039 tristate "Packet Engines Hamachi GNIC-II support"
2040 depends on PCI
2041 select MII
2042 help
2043 If you have a Gigabit Ethernet card of this type, say Y and read
2044 the Ethernet-HOWTO, available from
2045 <http://www.tldp.org/docs.html#howto>.
2046
2047 To compile this driver as a module, choose M here and read
2048 <file:Documentation/networking/net-modules.txt>. The module will be
2049 called hamachi.
2050
2051config YELLOWFIN
2052 tristate "Packet Engines Yellowfin Gigabit-NIC support (EXPERIMENTAL)"
2053 depends on PCI && EXPERIMENTAL
2054 select CRC32
2055 ---help---
2056 Say Y here if you have a Packet Engines G-NIC PCI Gigabit Ethernet
2057 adapter or the SYM53C885 Ethernet controller. The Gigabit adapter is
2058 used by the Beowulf Linux cluster project. See
2059 <http://cesdis.gsfc.nasa.gov/linux/drivers/yellowfin.html> for more
2060 information about this driver in particular and Beowulf in general.
2061
2062 To compile this driver as a module, choose M here: the module
2063 will be called yellowfin. This is recommended.
2064
2065config R8169
2066 tristate "Realtek 8169 gigabit ethernet support"
2067 depends on PCI
2068 select CRC32
2069 ---help---
2070 Say Y here if you have a Realtek 8169 PCI Gigabit Ethernet adapter.
2071
2072 To compile this driver as a module, choose M here: the module
2073 will be called r8169. This is recommended.
2074
2075config R8169_NAPI
2076 bool "Use Rx and Tx Polling (NAPI) (EXPERIMENTAL)"
2077 depends on R8169 && EXPERIMENTAL
2078 help
2079 NAPI is a new driver API designed to reduce CPU and interrupt load
2080 when the driver is receiving lots of packets from the card. It is
2081 still somewhat experimental and thus not yet enabled by default.
2082
2083 If your estimated Rx load is 10kpps or more, or if the card will be
2084 deployed on potentially unfriendly networks (e.g. in a firewall),
2085 then say Y here.
2086
2087 See <file:Documentation/networking/NAPI_HOWTO.txt> for more
2088 information.
2089
2090 If in doubt, say N.
2091
2092config R8169_VLAN
2093 bool "VLAN support"
2094 depends on R8169 && VLAN_8021Q
2095 ---help---
2096 Say Y here for the r8169 driver to support the functions required
2097 by the kernel 802.1Q code.
2098
2099 If in doubt, say Y.
2100
Francois Romieu890e8d02005-07-30 13:08:43 +02002101config SIS190
Francois Romieue7976372005-09-03 00:57:51 +02002102 tristate "SiS190/SiS191 gigabit ethernet support"
Adrian Bunke9985d52005-08-09 02:41:00 +02002103 depends on PCI
2104 select CRC32
2105 select MII
2106 ---help---
Francois Romieue7976372005-09-03 00:57:51 +02002107 Say Y here if you have a SiS 190 PCI Fast Ethernet adapter or
2108 a SiS 191 PCI Gigabit Ethernet adapter. Both are expected to
2109 appear in lan on motherboard designs which are based on SiS 965
2110 and SiS 966 south bridge.
Francois Romieu890e8d02005-07-30 13:08:43 +02002111
Adrian Bunke9985d52005-08-09 02:41:00 +02002112 To compile this driver as a module, choose M here: the module
2113 will be called sis190. This is recommended.
Francois Romieu890e8d02005-07-30 13:08:43 +02002114
Stephen Hemmingerbaef58b2005-05-12 20:14:36 -04002115config SKGE
Stephen Hemminger7a160c72006-02-13 15:48:08 -08002116 tristate "New SysKonnect GigaEthernet support"
2117 depends on PCI
Stephen Hemmingerbaef58b2005-05-12 20:14:36 -04002118 select CRC32
2119 ---help---
2120 This driver support the Marvell Yukon or SysKonnect SK-98xx/SK-95xx
2121 and related Gigabit Ethernet adapters. It is a new smaller driver
Stephen Hemminger46a60f22005-09-09 12:54:56 -07002122 with better performance and more complete ethtool support.
Stephen Hemmingerbaef58b2005-05-12 20:14:36 -04002123
2124 It does not support the link failover and network management
Jeff Garzike1abecc2007-07-10 12:58:33 -04002125 features available in the hardware.
Stephen Hemmingercd28ab62005-08-16 16:36:49 -07002126
Daniel Drakec6f0d752006-01-21 19:35:34 +00002127 This driver supports adapters based on the original Yukon chipset:
2128 Marvell 88E8001, Belkin F5D5005, CNet GigaCard, DLink DGE-530T,
2129 Linksys EG1032/EG1064, 3Com 3C940/3C940B, SysKonnect SK-9871/9872.
2130
2131 It does not support the newer Yukon2 chipset: a separate driver,
2132 sky2, is provided for Yukon2-based adapters.
2133
2134 To compile this driver as a module, choose M here: the module
2135 will be called skge. This is recommended.
Stephen Hemmingercd28ab62005-08-16 16:36:49 -07002136
2137config SKY2
Stephen Hemminger8a3e3bf2007-07-09 15:33:38 -07002138 tristate "SysKonnect Yukon2 support"
Stephen Hemmingerf479b322006-10-27 10:22:10 -07002139 depends on PCI
Stephen Hemmingercd28ab62005-08-16 16:36:49 -07002140 select CRC32
2141 ---help---
Matt LaPlantecab00892006-10-03 22:36:44 +02002142 This driver supports Gigabit Ethernet adapters based on the
Daniel Drakec6f0d752006-01-21 19:35:34 +00002143 Marvell Yukon 2 chipset:
2144 Marvell 88E8021/88E8022/88E8035/88E8036/88E8038/88E8050/88E8052/
2145 88E8053/88E8055/88E8061/88E8062, SysKonnect SK-9E21D/SK-9S21
2146
Stephen Hemmingerf479b322006-10-27 10:22:10 -07002147 There is companion driver for the older Marvell Yukon and
2148 Genesis based adapters: skge.
Stephen Hemmingercd28ab62005-08-16 16:36:49 -07002149
2150 To compile this driver as a module, choose M here: the module
2151 will be called sky2. This is recommended.
2152
Stephen Hemminger3cf26752007-07-09 15:33:35 -07002153config SKY2_DEBUG
2154 bool "Debugging interface"
2155 depends on SKY2 && DEBUG_FS
2156 help
2157 This option adds the ability to dump driver state for debugging.
2158 The file debugfs/sky2/ethX displays the state of the internal
2159 transmit and receive rings.
Daniel Drakec6f0d752006-01-21 19:35:34 +00002160
Stephen Hemminger3cf26752007-07-09 15:33:35 -07002161 If unsure, say N.
Linus Torvalds1da177e2005-04-16 15:20:36 -07002162
2163config VIA_VELOCITY
2164 tristate "VIA Velocity support"
Yoichi Yuasa73815532007-05-24 16:12:27 +09002165 depends on PCI
Linus Torvalds1da177e2005-04-16 15:20:36 -07002166 select CRC32
2167 select CRC_CCITT
2168 select MII
2169 help
2170 If you have a VIA "Velocity" based network card say Y here.
2171
2172 To compile this driver as a module, choose M here. The module
2173 will be called via-velocity.
2174
2175config TIGON3
2176 tristate "Broadcom Tigon3 support"
2177 depends on PCI
2178 help
2179 This driver supports Broadcom Tigon3 based gigabit Ethernet cards.
2180
2181 To compile this driver as a module, choose M here: the module
2182 will be called tg3. This is recommended.
2183
Michael Chanb6016b72005-05-26 13:03:09 -07002184config BNX2
2185 tristate "Broadcom NetXtremeII support"
2186 depends on PCI
Michael Chanfba9fe92006-06-12 22:21:25 -07002187 select CRC32
2188 select ZLIB_INFLATE
Michael Chanb6016b72005-05-26 13:03:09 -07002189 help
2190 This driver supports Broadcom NetXtremeII gigabit Ethernet cards.
2191
2192 To compile this driver as a module, choose M here: the module
2193 will be called bnx2. This is recommended.
2194
Jens Osterkampaaec0fa2005-09-05 15:19:29 -07002195config SPIDER_NET
2196 tristate "Spider Gigabit Ethernet driver"
Kou Ishizaki3342cf0e2007-02-20 16:36:14 -06002197 depends on PCI && (PPC_IBM_CELL_BLADE || PPC_CELLEB)
Christoph Hellwig9b158792006-03-15 11:30:44 +01002198 select FW_LOADER
Jens Osterkampaaec0fa2005-09-05 15:19:29 -07002199 help
2200 This driver supports the Gigabit Ethernet chips present on the
2201 Cell Processor-Based Blades from IBM.
2202
Zang Roy-r619115e123b82006-11-08 19:49:13 -08002203config TSI108_ETH
2204 tristate "Tundra TSI108 gigabit Ethernet support"
2205 depends on TSI108_BRIDGE
2206 help
2207 This driver supports Tundra TSI108 gigabit Ethernet ports.
2208 To compile this driver as a module, choose M here: the module
2209 will be called tsi108_eth.
2210
Masakazu Mokuno02c18892007-07-05 20:11:16 +09002211config GELIC_NET
2212 tristate "PS3 Gigabit Ethernet driver"
2213 depends on PPC_PS3
2214 help
2215 This driver supports the network device on the PS3 game
2216 console. This driver has built-in support for Ethernet.
2217
2218 To compile this driver as a module, choose M here: the
2219 module will be called ps3_gelic.
2220
Linus Torvalds1da177e2005-04-16 15:20:36 -07002221config GIANFAR
2222 tristate "Gianfar Ethernet"
Jon Loeligeref82a3062006-06-17 17:52:55 -05002223 depends on 85xx || 83xx || PPC_86xx
Andy Flemingbb40dcb2005-09-23 22:54:21 -04002224 select PHYLIB
Dave Jiangbf41a7c2007-04-12 10:57:06 -07002225 select CRC32
Linus Torvalds1da177e2005-04-16 15:20:36 -07002226 help
Jon Loeligeref82a3062006-06-17 17:52:55 -05002227 This driver supports the Gigabit TSEC on the MPC83xx, MPC85xx,
2228 and MPC86xx family of chips, and the FEC on the 8540.
Linus Torvalds1da177e2005-04-16 15:20:36 -07002229
2230config GFAR_NAPI
2231 bool "NAPI Support"
2232 depends on GIANFAR
2233
Li Yangce973b12006-08-14 23:00:11 -07002234config UCC_GETH
Timur Tabi7d776cb2007-03-12 15:40:27 -05002235 tristate "Freescale QE Gigabit Ethernet"
2236 depends on QUICC_ENGINE
Jan Altenberg296baae2007-06-01 00:46:29 -07002237 select PHYLIB
Li Yangce973b12006-08-14 23:00:11 -07002238 help
Timur Tabi7d776cb2007-03-12 15:40:27 -05002239 This driver supports the Gigabit Ethernet mode of the QUICC Engine,
2240 which is available on some Freescale SOCs.
Li Yangce973b12006-08-14 23:00:11 -07002241
2242config UGETH_NAPI
2243 bool "NAPI Support"
2244 depends on UCC_GETH
2245
2246config UGETH_MAGIC_PACKET
2247 bool "Magic Packet detection support"
2248 depends on UCC_GETH
2249
2250config UGETH_FILTERING
2251 bool "Mac address filtering support"
2252 depends on UCC_GETH
2253
Michael Reissd5b90492007-04-13 01:26:19 -05002254config UGETH_TX_ON_DEMAND
2255 bool "Transmit on Demand support"
Li Yangce973b12006-08-14 23:00:11 -07002256 depends on UCC_GETH
2257
Linus Torvalds1da177e2005-04-16 15:20:36 -07002258config MV643XX_ETH
2259 tristate "MV-643XX Ethernet support"
Ralf Baechle688b3d72007-07-09 16:29:16 +01002260 depends on MV64360 || MV64X60 || (PPC_MULTIPLATFORM && PPC32)
Dale Farnsworthcd6478c2006-03-03 10:01:08 -07002261 select MII
Linus Torvalds1da177e2005-04-16 15:20:36 -07002262 help
2263 This driver supports the gigabit Ethernet on the Marvell MV643XX
2264 chipset which is used in the Momenco Ocelot C and Jaguar ATX and
2265 Pegasos II, amongst other PPC and MIPS boards.
2266
Ron Mercer5a4faa872006-07-25 00:40:21 -07002267config QLA3XXX
2268 tristate "QLogic QLA3XXX Network Driver Support"
2269 depends on PCI
2270 help
2271 This driver supports QLogic ISP3XXX gigabit Ethernet cards.
2272
2273 To compile this driver as a module, choose M here: the module
2274 will be called qla3xxx.
2275
Jay Cliburnf3cc28c2007-02-08 10:42:37 -05002276config ATL1
2277 tristate "Attansic L1 Gigabit Ethernet support (EXPERIMENTAL)"
Jay Cliburna1ca14b2007-02-14 20:12:13 -06002278 depends on PCI && EXPERIMENTAL
Jay Cliburnf3cc28c2007-02-08 10:42:37 -05002279 select CRC32
2280 select MII
2281 help
2282 This driver supports the Attansic L1 gigabit ethernet adapter.
2283
2284 To compile this driver as a module, choose M here. The module
2285 will be called atl1.
2286
Jan Engelhardtf30486d2007-05-10 22:52:56 -07002287endif # NETDEV_1000
Linus Torvalds1da177e2005-04-16 15:20:36 -07002288
2289#
2290# 10 Gigabit Ethernet
2291#
2292
Jan Engelhardtf30486d2007-05-10 22:52:56 -07002293menuconfig NETDEV_10000
2294 bool "Ethernet (10000 Mbit)"
Randy Dunlapcbcd2a42005-07-27 13:04:35 -07002295 depends on !UML
Jan Engelhardtf30486d2007-05-10 22:52:56 -07002296 default y
2297
2298if NETDEV_10000
Linus Torvalds1da177e2005-04-16 15:20:36 -07002299
Christoph Lameter8199d3a2005-03-30 13:34:31 -08002300config CHELSIO_T1
2301 tristate "Chelsio 10Gb Ethernet support"
2302 depends on PCI
Stephen Hemminger57834ca2006-12-01 16:36:19 -08002303 select CRC32
Christoph Lameter8199d3a2005-03-30 13:34:31 -08002304 help
Stephen Hemmingerf1d3d382006-12-01 16:36:16 -08002305 This driver supports Chelsio gigabit and 10-gigabit
2306 Ethernet cards. More information about adapter features and
2307 performance tuning is in <file:Documentation/networking/cxgb.txt>.
Christoph Lameter8199d3a2005-03-30 13:34:31 -08002308
2309 For general information about Chelsio and our products, visit
2310 our website at <http://www.chelsio.com>.
2311
2312 For customer support, please visit our customer support page at
2313 <http://www.chelsio.com/support.htm>.
2314
2315 Please send feedback to <linux-bugs@chelsio.com>.
2316
2317 To compile this driver as a module, choose M here: the module
2318 will be called cxgb.
2319
Stephen Hemminger352c4172006-12-01 16:36:17 -08002320config CHELSIO_T1_1G
2321 bool "Chelsio gigabit Ethernet support"
2322 depends on CHELSIO_T1
2323 help
2324 Enables support for Chelsio's gigabit Ethernet PCI cards. If you
2325 are using only 10G cards say 'N' here.
2326
Stephen Hemminger7fe26a62006-12-08 11:08:33 -08002327config CHELSIO_T1_NAPI
2328 bool "Use Rx Polling (NAPI)"
2329 depends on CHELSIO_T1
2330 default y
2331 help
2332 NAPI is a driver API designed to reduce CPU and interrupt load
2333 when the driver is receiving lots of packets from the card.
2334
Divy Le Ray4d22de32007-01-18 22:04:14 -05002335config CHELSIO_T3
Divy Le Ray194c1fb2007-03-21 19:21:00 -07002336 tristate "Chelsio Communications T3 10Gb Ethernet support"
2337 depends on PCI
Divy Le Ray2e283962007-03-18 13:10:06 -07002338 select FW_LOADER
Divy Le Ray194c1fb2007-03-21 19:21:00 -07002339 help
2340 This driver supports Chelsio T3-based gigabit and 10Gb Ethernet
2341 adapters.
Divy Le Ray4d22de32007-01-18 22:04:14 -05002342
Divy Le Ray194c1fb2007-03-21 19:21:00 -07002343 For general information about Chelsio and our products, visit
2344 our website at <http://www.chelsio.com>.
Divy Le Ray4d22de32007-01-18 22:04:14 -05002345
Divy Le Ray194c1fb2007-03-21 19:21:00 -07002346 For customer support, please visit our customer support page at
2347 <http://www.chelsio.com/support.htm>.
Divy Le Ray4d22de32007-01-18 22:04:14 -05002348
Divy Le Ray194c1fb2007-03-21 19:21:00 -07002349 Please send feedback to <linux-bugs@chelsio.com>.
Divy Le Ray4d22de32007-01-18 22:04:14 -05002350
Divy Le Ray194c1fb2007-03-21 19:21:00 -07002351 To compile this driver as a module, choose M here: the module
2352 will be called cxgb3.
Divy Le Ray4d22de32007-01-18 22:04:14 -05002353
Jan-Bernd Themann7a291082006-09-13 17:44:31 +02002354config EHEA
2355 tristate "eHEA Ethernet support"
2356 depends on IBMEBUS
2357 ---help---
2358 This driver supports the IBM pSeries eHEA ethernet adapter.
2359
2360 To compile the driver as a module, choose M here. The module
2361 will be called ehea.
2362
Linus Torvalds1da177e2005-04-16 15:20:36 -07002363config IXGB
2364 tristate "Intel(R) PRO/10GbE support"
2365 depends on PCI
2366 ---help---
2367 This driver supports Intel(R) PRO/10GbE family of
2368 adapters. For more information on how to identify your adapter, go
2369 to the Adapter & Driver ID Guide at:
2370
2371 <http://support.intel.com/support/network/adapter/pro100/21397.htm>
2372
2373 For general information and support, go to the Intel support
2374 website at:
2375
2376 <http://support.intel.com>
2377
2378 More specific information on configuring the driver is in
2379 <file:Documentation/networking/ixgb.txt>.
2380
2381 To compile this driver as a module, choose M here and read
2382 <file:Documentation/networking/net-modules.txt>. The module
2383 will be called ixgb.
2384
2385config IXGB_NAPI
2386 bool "Use Rx Polling (NAPI) (EXPERIMENTAL)"
2387 depends on IXGB && EXPERIMENTAL
2388 help
2389 NAPI is a new driver API designed to reduce CPU and interrupt load
2390 when the driver is receiving lots of packets from the card. It is
2391 still somewhat experimental and thus not yet enabled by default.
2392
2393 If your estimated Rx load is 10kpps or more, or if the card will be
2394 deployed on potentially unfriendly networks (e.g. in a firewall),
2395 then say Y here.
2396
2397 See <file:Documentation/networking/NAPI_HOWTO.txt> for more
2398 information.
2399
2400 If in doubt, say N.
2401
2402config S2IO
2403 tristate "S2IO 10Gbe XFrame NIC"
2404 depends on PCI
2405 ---help---
2406 This driver supports the 10Gbe XFrame NIC of S2IO.
Akinobu Mita9eb343a2005-10-21 19:06:42 +09002407 More specific information on configuring the driver is in
2408 <file:Documentation/networking/s2io.txt>.
Linus Torvalds1da177e2005-04-16 15:20:36 -07002409
2410config S2IO_NAPI
2411 bool "Use Rx Polling (NAPI) (EXPERIMENTAL)"
2412 depends on S2IO && EXPERIMENTAL
2413 help
2414 NAPI is a new driver API designed to reduce CPU and interrupt load
2415 when the driver is receiving lots of packets from the card. It is
2416 still somewhat experimental and thus not yet enabled by default.
2417
2418 If your estimated Rx load is 10kpps or more, or if the card will be
2419 deployed on potentially unfriendly networks (e.g. in a firewall),
2420 then say Y here.
2421
2422 See <file:Documentation/networking/NAPI_HOWTO.txt> for more
2423 information.
2424
2425 If in doubt, say N.
2426
Brice Goglin0da34b62006-05-23 06:10:15 -04002427config MYRI10GE
2428 tristate "Myricom Myri-10G Ethernet support"
2429 depends on PCI
2430 select FW_LOADER
2431 select CRC32
2432 ---help---
2433 This driver supports Myricom Myri-10G Dual Protocol interface in
2434 Ethernet mode. If the eeprom on your board is not recent enough,
2435 you will need a newer firmware image.
2436 You may get this image or more information, at:
2437
Brice Goglind2794902006-09-05 21:58:50 -04002438 <http://www.myri.com/scs/download-Myri10GE.html>
Brice Goglin0da34b62006-05-23 06:10:15 -04002439
2440 To compile this driver as a module, choose M here and read
2441 <file:Documentation/networking/net-modules.txt>. The module
2442 will be called myri10ge.
2443
Amit S. Kale3d396eb2006-10-21 15:33:03 -04002444config NETXEN_NIC
2445 tristate "NetXen Multi port (1/10) Gigabit Ethernet NIC"
Randy Dunlap5ac36612006-11-16 21:39:11 -08002446 depends on PCI
Amit S. Kale3d396eb2006-10-21 15:33:03 -04002447 help
2448 This enables the support for NetXen's Gigabit Ethernet card.
2449
Olof Johanssonf5cd7872007-01-31 21:43:54 -06002450config PASEMI_MAC
2451 tristate "PA Semi 1/10Gbit MAC"
2452 depends on PPC64 && PCI
Olof Johanssonbb6e9592007-05-08 00:47:54 -05002453 select PHYLIB
Olof Johanssonf5cd7872007-01-31 21:43:54 -06002454 help
2455 This driver supports the on-chip 1/10Gbit Ethernet controller on
2456 PA Semi's PWRficient line of chips.
2457
Roland Dreier225c7b12007-05-08 18:00:38 -07002458config MLX4_CORE
2459 tristate
2460 depends on PCI
2461 default n
2462
2463config MLX4_DEBUG
2464 bool "Verbose debugging output" if (MLX4_CORE && EMBEDDED)
Paul Mundtf550d942007-05-10 12:50:28 +09002465 depends on MLX4_CORE
Roland Dreier225c7b12007-05-08 18:00:38 -07002466 default y
2467 ---help---
2468 This option causes debugging code to be compiled into the
2469 mlx4_core driver. The output can be turned on via the
2470 debug_level module parameter (which can also be set after
2471 the driver is loaded through sysfs).
2472
Jan Engelhardtf30486d2007-05-10 22:52:56 -07002473endif # NETDEV_10000
Linus Torvalds1da177e2005-04-16 15:20:36 -07002474
Linus Torvalds1da177e2005-04-16 15:20:36 -07002475source "drivers/net/tokenring/Kconfig"
2476
2477source "drivers/net/wireless/Kconfig"
2478
Jeff Garzik5b2fc492007-05-09 21:31:55 -04002479source "drivers/net/usb/Kconfig"
2480
Linus Torvalds1da177e2005-04-16 15:20:36 -07002481source "drivers/net/pcmcia/Kconfig"
Linus Torvalds1da177e2005-04-16 15:20:36 -07002482
2483source "drivers/net/wan/Kconfig"
2484
2485source "drivers/atm/Kconfig"
2486
2487source "drivers/s390/net/Kconfig"
2488
Jeremy Fitzhardinge0d160212007-07-17 18:37:06 -07002489config XEN_NETDEV_FRONTEND
2490 tristate "Xen network device frontend driver"
2491 depends on XEN
2492 default y
2493 help
2494 The network device frontend driver allows the kernel to
2495 access network devices exported exported by a virtual
2496 machine containing a physical network device driver. The
2497 frontend driver is intended for unprivileged guest domains;
2498 if you are compiling a kernel for a Xen guest, you almost
2499 certainly want to enable this.
2500
Linus Torvalds1da177e2005-04-16 15:20:36 -07002501config ISERIES_VETH
2502 tristate "iSeries Virtual Ethernet driver support"
Randy Dunlapcbcd2a42005-07-27 13:04:35 -07002503 depends on PPC_ISERIES
Linus Torvalds1da177e2005-04-16 15:20:36 -07002504
Matt Porterf89efd52005-09-09 12:10:10 -07002505config RIONET
2506 tristate "RapidIO Ethernet over messaging driver support"
Randy Dunlapa81c52a2006-11-01 21:18:58 -08002507 depends on RAPIDIO
Matt Porterf89efd52005-09-09 12:10:10 -07002508
2509config RIONET_TX_SIZE
2510 int "Number of outbound queue entries"
2511 depends on RIONET
2512 default "128"
2513
2514config RIONET_RX_SIZE
2515 int "Number of inbound queue entries"
2516 depends on RIONET
2517 default "128"
2518
Linus Torvalds1da177e2005-04-16 15:20:36 -07002519config FDDI
2520 bool "FDDI driver support"
Maciej W. Rozyckie89a2cf2007-02-05 16:28:27 -08002521 depends on (PCI || EISA || TC)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002522 help
2523 Fiber Distributed Data Interface is a high speed local area network
2524 design; essentially a replacement for high speed Ethernet. FDDI can
2525 run over copper or fiber. If you are connected to such a network and
2526 want a driver for the FDDI card in your computer, say Y here (and
2527 then also Y to the driver for your FDDI card, below). Most people
2528 will say N.
2529
2530config DEFXX
Maciej W. Rozyckie89a2cf2007-02-05 16:28:27 -08002531 tristate "Digital DEFTA/DEFEA/DEFPA adapter support"
2532 depends on FDDI && (PCI || EISA || TC)
2533 ---help---
2534 This is support for the DIGITAL series of TURBOchannel (DEFTA),
2535 EISA (DEFEA) and PCI (DEFPA) controllers which can connect you
2536 to a local FDDI network.
2537
2538 To compile this driver as a module, choose M here: the module
2539 will be called defxx. If unsure, say N.
2540
2541config DEFXX_MMIO
2542 bool
2543 prompt "Use MMIO instead of PIO" if PCI || EISA
2544 depends on DEFXX
2545 default n if PCI || EISA
2546 default y
2547 ---help---
2548 This instructs the driver to use EISA or PCI memory-mapped I/O
2549 (MMIO) as appropriate instead of programmed I/O ports (PIO).
2550 Enabling this gives an improvement in processing time in parts
2551 of the driver, but it may cause problems with EISA (DEFEA)
2552 adapters. TURBOchannel does not have the concept of I/O ports,
2553 so MMIO is always used for these (DEFTA) adapters.
2554
2555 If unsure, say N.
Linus Torvalds1da177e2005-04-16 15:20:36 -07002556
2557config SKFP
2558 tristate "SysKonnect FDDI PCI support"
2559 depends on FDDI && PCI
Akinobu Mitabc63eb92006-12-19 13:09:08 -08002560 select BITREVERSE
Linus Torvalds1da177e2005-04-16 15:20:36 -07002561 ---help---
2562 Say Y here if you have a SysKonnect FDDI PCI adapter.
2563 The following adapters are supported by this driver:
2564 - SK-5521 (SK-NET FDDI-UP)
2565 - SK-5522 (SK-NET FDDI-UP DAS)
2566 - SK-5541 (SK-NET FDDI-FP)
2567 - SK-5543 (SK-NET FDDI-LP)
2568 - SK-5544 (SK-NET FDDI-LP DAS)
2569 - SK-5821 (SK-NET FDDI-UP64)
2570 - SK-5822 (SK-NET FDDI-UP64 DAS)
2571 - SK-5841 (SK-NET FDDI-FP64)
2572 - SK-5843 (SK-NET FDDI-LP64)
2573 - SK-5844 (SK-NET FDDI-LP64 DAS)
2574 - Netelligent 100 FDDI DAS Fibre SC
2575 - Netelligent 100 FDDI SAS Fibre SC
2576 - Netelligent 100 FDDI DAS UTP
2577 - Netelligent 100 FDDI SAS UTP
2578 - Netelligent 100 FDDI SAS Fibre MIC
2579
2580 Read <file:Documentation/networking/skfp.txt> for information about
2581 the driver.
2582
2583 Questions concerning this driver can be addressed to:
2584 <linux@syskonnect.de>
2585
2586 To compile this driver as a module, choose M here: the module
2587 will be called skfp. This is recommended.
2588
2589config HIPPI
2590 bool "HIPPI driver support (EXPERIMENTAL)"
Randy Dunlapcbcd2a42005-07-27 13:04:35 -07002591 depends on EXPERIMENTAL && INET && PCI
Linus Torvalds1da177e2005-04-16 15:20:36 -07002592 help
2593 HIgh Performance Parallel Interface (HIPPI) is a 800Mbit/sec and
2594 1600Mbit/sec dual-simplex switched or point-to-point network. HIPPI
2595 can run over copper (25m) or fiber (300m on multi-mode or 10km on
2596 single-mode). HIPPI networks are commonly used for clusters and to
2597 connect to super computers. If you are connected to a HIPPI network
2598 and have a HIPPI network card in your computer that you want to use
2599 under Linux, say Y here (you must also remember to enable the driver
2600 for your HIPPI card below). Most people will say N here.
2601
2602config ROADRUNNER
2603 tristate "Essential RoadRunner HIPPI PCI adapter support (EXPERIMENTAL)"
2604 depends on HIPPI && PCI
2605 help
2606 Say Y here if this is your PCI HIPPI network card.
2607
2608 To compile this driver as a module, choose M here: the module
2609 will be called rrunner. If unsure, say N.
2610
2611config ROADRUNNER_LARGE_RINGS
2612 bool "Use large TX/RX rings (EXPERIMENTAL)"
2613 depends on ROADRUNNER
2614 help
2615 If you say Y here, the RoadRunner driver will preallocate up to 2 MB
2616 of additional memory to allow for fastest operation, both for
2617 transmitting and receiving. This memory cannot be used by any other
2618 kernel code or by user space programs. Say Y here only if you have
2619 the memory.
2620
2621config PLIP
2622 tristate "PLIP (parallel port) support"
Randy Dunlapcbcd2a42005-07-27 13:04:35 -07002623 depends on PARPORT
Linus Torvalds1da177e2005-04-16 15:20:36 -07002624 ---help---
2625 PLIP (Parallel Line Internet Protocol) is used to create a
2626 reasonably fast mini network consisting of two (or, rarely, more)
2627 local machines. A PLIP link from a Linux box is a popular means to
2628 install a Linux distribution on a machine which doesn't have a
2629 CD-ROM drive (a minimal system has to be transferred with floppies
2630 first). The kernels on both machines need to have this PLIP option
2631 enabled for this to work.
2632
2633 The PLIP driver has two modes, mode 0 and mode 1. The parallel
2634 ports (the connectors at the computers with 25 holes) are connected
2635 with "null printer" or "Turbo Laplink" cables which can transmit 4
2636 bits at a time (mode 0) or with special PLIP cables, to be used on
2637 bidirectional parallel ports only, which can transmit 8 bits at a
2638 time (mode 1); you can find the wiring of these cables in
2639 <file:Documentation/networking/PLIP.txt>. The cables can be up to
2640 15m long. Mode 0 works also if one of the machines runs DOS/Windows
2641 and has some PLIP software installed, e.g. the Crynwr PLIP packet
2642 driver (<http://oak.oakland.edu/simtel.net/msdos/pktdrvr-pre.html>)
2643 and winsock or NCSA's telnet.
2644
2645 If you want to use PLIP, say Y and read the PLIP mini-HOWTO as well
2646 as the NET-3-HOWTO, both available from
2647 <http://www.tldp.org/docs.html#howto>. Note that the PLIP
2648 protocol has been changed and this PLIP driver won't work together
2649 with the PLIP support in Linux versions 1.0.x. This option enlarges
2650 your kernel by about 8 KB.
2651
2652 To compile this driver as a module, choose M here and read
2653 <file:Documentation/networking/net-modules.txt>. The module will be
2654 called plip. If unsure, say Y or M, in case you buy a laptop
2655 later.
2656
2657config PPP
2658 tristate "PPP (point-to-point protocol) support"
Ralf Baechleb6e37e52006-07-14 12:15:40 +01002659 select SLHC
Linus Torvalds1da177e2005-04-16 15:20:36 -07002660 ---help---
2661 PPP (Point to Point Protocol) is a newer and better SLIP. It serves
2662 the same purpose: sending Internet traffic over telephone (and other
2663 serial) lines. Ask your access provider if they support it, because
2664 otherwise you can't use it; most Internet access providers these
2665 days support PPP rather than SLIP.
2666
2667 To use PPP, you need an additional program called pppd as described
2668 in the PPP-HOWTO, available at
2669 <http://www.tldp.org/docs.html#howto>. Make sure that you have
2670 the version of pppd recommended in <file:Documentation/Changes>.
2671 The PPP option enlarges your kernel by about 16 KB.
2672
2673 There are actually two versions of PPP: the traditional PPP for
2674 asynchronous lines, such as regular analog phone lines, and
2675 synchronous PPP which can be used over digital ISDN lines for
2676 example. If you want to use PPP over phone lines or other
2677 asynchronous serial lines, you need to say Y (or M) here and also to
2678 the next option, "PPP support for async serial ports". For PPP over
2679 synchronous lines, you should say Y (or M) here and to "Support
2680 synchronous PPP", below.
2681
2682 If you said Y to "Version information on all symbols" above, then
2683 you cannot compile the PPP driver into the kernel; you can then only
2684 compile it as a module. To compile this driver as a module, choose M
2685 here and read <file:Documentation/networking/net-modules.txt>.
2686 The module will be called ppp_generic.
2687
2688config PPP_MULTILINK
2689 bool "PPP multilink support (EXPERIMENTAL)"
2690 depends on PPP && EXPERIMENTAL
2691 help
2692 PPP multilink is a protocol (defined in RFC 1990) which allows you
2693 to combine several (logical or physical) lines into one logical PPP
2694 connection, so that you can utilize your full bandwidth.
2695
2696 This has to be supported at the other end as well and you need a
2697 version of the pppd daemon which understands the multilink protocol.
2698
2699 If unsure, say N.
2700
2701config PPP_FILTER
2702 bool "PPP filtering"
2703 depends on PPP
2704 help
2705 Say Y here if you want to be able to filter the packets passing over
2706 PPP interfaces. This allows you to control which packets count as
2707 activity (i.e. which packets will reset the idle timer or bring up
Jon Mason47c51432006-02-12 11:53:04 -06002708 a demand-dialed link) and which packets are to be dropped entirely.
Linus Torvalds1da177e2005-04-16 15:20:36 -07002709 You need to say Y here if you wish to use the pass-filter and
2710 active-filter options to pppd.
2711
2712 If unsure, say N.
2713
2714config PPP_ASYNC
2715 tristate "PPP support for async serial ports"
2716 depends on PPP
2717 select CRC_CCITT
2718 ---help---
2719 Say Y (or M) here if you want to be able to use PPP over standard
2720 asynchronous serial ports, such as COM1 or COM2 on a PC. If you use
2721 a modem (not a synchronous or ISDN modem) to contact your ISP, you
2722 need this option.
2723
2724 To compile this driver as a module, choose M here.
2725
2726 If unsure, say Y.
2727
2728config PPP_SYNC_TTY
2729 tristate "PPP support for sync tty ports"
2730 depends on PPP
2731 help
2732 Say Y (or M) here if you want to be able to use PPP over synchronous
2733 (HDLC) tty devices, such as the SyncLink adapter. These devices
2734 are often used for high-speed leased lines like T1/E1.
2735
2736 To compile this driver as a module, choose M here.
2737
2738config PPP_DEFLATE
2739 tristate "PPP Deflate compression"
2740 depends on PPP
2741 select ZLIB_INFLATE
2742 select ZLIB_DEFLATE
2743 ---help---
2744 Support for the Deflate compression method for PPP, which uses the
2745 Deflate algorithm (the same algorithm that gzip uses) to compress
2746 each PPP packet before it is sent over the wire. The machine at the
2747 other end of the PPP link (usually your ISP) has to support the
2748 Deflate compression method as well for this to be useful. Even if
2749 they don't support it, it is safe to say Y here.
2750
2751 To compile this driver as a module, choose M here.
2752
2753config PPP_BSDCOMP
2754 tristate "PPP BSD-Compress compression"
2755 depends on PPP
2756 ---help---
2757 Support for the BSD-Compress compression method for PPP, which uses
2758 the LZW compression method to compress each PPP packet before it is
2759 sent over the wire. The machine at the other end of the PPP link
2760 (usually your ISP) has to support the BSD-Compress compression
2761 method as well for this to be useful. Even if they don't support it,
2762 it is safe to say Y here.
2763
2764 The PPP Deflate compression method ("PPP Deflate compression",
2765 above) is preferable to BSD-Compress, because it compresses better
2766 and is patent-free.
2767
2768 Note that the BSD compression code will always be compiled as a
2769 module; it is called bsd_comp and will show up in the directory
2770 modules once you have said "make modules". If unsure, say N.
2771
Matt Domschb3f9b922005-11-08 09:40:47 -08002772config PPP_MPPE
2773 tristate "PPP MPPE compression (encryption) (EXPERIMENTAL)"
2774 depends on PPP && EXPERIMENTAL
2775 select CRYPTO
2776 select CRYPTO_SHA1
2777 select CRYPTO_ARC4
Patrick McHardybcbaecb2006-10-25 16:49:36 +10002778 select CRYPTO_ECB
Matt Domschb3f9b922005-11-08 09:40:47 -08002779 ---help---
2780 Support for the MPPE Encryption protocol, as employed by the
2781 Microsoft Point-to-Point Tunneling Protocol.
2782
2783 See http://pptpclient.sourceforge.net/ for information on
2784 configuring PPTP clients and servers to utilize this method.
2785
Linus Torvalds1da177e2005-04-16 15:20:36 -07002786config PPPOE
2787 tristate "PPP over Ethernet (EXPERIMENTAL)"
2788 depends on EXPERIMENTAL && PPP
2789 help
2790 Support for PPP over Ethernet.
2791
2792 This driver requires the latest version of pppd from the CVS
2793 repository at cvs.samba.org. Alternatively, see the
2794 RoaringPenguin package (<http://www.roaringpenguin.com/pppoe>)
2795 which contains instruction on how to use this driver (under
2796 the heading "Kernel mode PPPoE").
2797
2798config PPPOATM
2799 tristate "PPP over ATM"
2800 depends on ATM && PPP
2801 help
2802 Support PPP (Point to Point Protocol) encapsulated in ATM frames.
2803 This implementation does not yet comply with section 8 of RFC2364,
2804 which can lead to bad results if the ATM peer loses state and
2805 changes its encapsulation unilaterally.
2806
James Chapman3557baa2007-06-27 15:49:24 -07002807config PPPOL2TP
2808 tristate "PPP over L2TP (EXPERIMENTAL)"
2809 depends on EXPERIMENTAL && PPP
2810 help
2811 Support for PPP-over-L2TP socket family. L2TP is a protocol
2812 used by ISPs and enterprises to tunnel PPP traffic over UDP
2813 tunnels. L2TP is replacing PPTP for VPN uses.
2814
2815 This kernel component handles only L2TP data packets: a
2816 userland daemon handles L2TP the control protocol (tunnel
2817 and session setup). One such daemon is OpenL2TP
2818 (http://openl2tp.sourceforge.net/).
2819
Linus Torvalds1da177e2005-04-16 15:20:36 -07002820config SLIP
2821 tristate "SLIP (serial line) support"
Linus Torvalds1da177e2005-04-16 15:20:36 -07002822 ---help---
2823 Say Y if you intend to use SLIP or CSLIP (compressed SLIP) to
2824 connect to your Internet service provider or to connect to some
2825 other local Unix box or if you want to configure your Linux box as a
2826 Slip/CSlip server for other people to dial in. SLIP (Serial Line
2827 Internet Protocol) is a protocol used to send Internet traffic over
2828 serial connections such as telephone lines or null modem cables;
2829 nowadays, the protocol PPP is more commonly used for this same
2830 purpose.
2831
2832 Normally, your access provider has to support SLIP in order for you
2833 to be able to use it, but there is now a SLIP emulator called SLiRP
2834 around (available from
2835 <ftp://ibiblio.org/pub/Linux/system/network/serial/>) which
2836 allows you to use SLIP over a regular dial up shell connection. If
2837 you plan to use SLiRP, make sure to say Y to CSLIP, below. The
2838 NET-3-HOWTO, available from
2839 <http://www.tldp.org/docs.html#howto>, explains how to
2840 configure SLIP. Note that you don't need this option if you just
2841 want to run term (term is a program which gives you almost full
2842 Internet connectivity if you have a regular dial up shell account on
2843 some Internet connected Unix computer. Read
2844 <http://www.bart.nl/~patrickr/term-howto/Term-HOWTO.html>). SLIP
2845 support will enlarge your kernel by about 4 KB. If unsure, say N.
2846
2847 To compile this driver as a module, choose M here and read
2848 <file:Documentation/networking/net-modules.txt>. The module will be
2849 called slip.
2850
2851config SLIP_COMPRESSED
2852 bool "CSLIP compressed headers"
2853 depends on SLIP
Ralf Baechleb6e37e52006-07-14 12:15:40 +01002854 select SLHC
Linus Torvalds1da177e2005-04-16 15:20:36 -07002855 ---help---
2856 This protocol is faster than SLIP because it uses compression on the
2857 TCP/IP headers (not on the data itself), but it has to be supported
2858 on both ends. Ask your access provider if you are not sure and
2859 answer Y, just in case. You will still be able to use plain SLIP. If
2860 you plan to use SLiRP, the SLIP emulator (available from
2861 <ftp://ibiblio.org/pub/Linux/system/network/serial/>) which
2862 allows you to use SLIP over a regular dial up shell connection, you
2863 definitely want to say Y here. The NET-3-HOWTO, available from
2864 <http://www.tldp.org/docs.html#howto>, explains how to configure
2865 CSLIP. This won't enlarge your kernel.
2866
Ralf Baechleb6e37e52006-07-14 12:15:40 +01002867config SLHC
2868 tristate
2869 help
2870 This option enables Van Jacobsen serial line header compression
2871 routines.
2872
Linus Torvalds1da177e2005-04-16 15:20:36 -07002873config SLIP_SMART
2874 bool "Keepalive and linefill"
2875 depends on SLIP
2876 help
2877 Adds additional capabilities to the SLIP driver to support the
2878 RELCOM line fill and keepalive monitoring. Ideal on poor quality
2879 analogue lines.
2880
2881config SLIP_MODE_SLIP6
2882 bool "Six bit SLIP encapsulation"
2883 depends on SLIP
2884 help
2885 Just occasionally you may need to run IP over hostile serial
2886 networks that don't pass all control characters or are only seven
2887 bit. Saying Y here adds an extra mode you can use with SLIP:
2888 "slip6". In this mode, SLIP will only send normal ASCII symbols over
2889 the serial device. Naturally, this has to be supported at the other
2890 end of the link as well. It's good enough, for example, to run IP
2891 over the async ports of a Camtec JNT Pad. If unsure, say N.
2892
2893config NET_FC
2894 bool "Fibre Channel driver support"
Randy Dunlapcbcd2a42005-07-27 13:04:35 -07002895 depends on SCSI && PCI
Linus Torvalds1da177e2005-04-16 15:20:36 -07002896 help
2897 Fibre Channel is a high speed serial protocol mainly used to connect
2898 large storage devices to the computer; it is compatible with and
2899 intended to replace SCSI.
2900
2901 If you intend to use Fibre Channel, you need to have a Fibre channel
2902 adaptor card in your computer; say Y here and to the driver for your
2903 adaptor below. You also should have said Y to "SCSI support" and
2904 "SCSI generic support".
2905
2906config SHAPER
Jiri Slaby3b6a7922006-11-06 14:34:48 -08002907 tristate "Traffic Shaper (OBSOLETE)"
Randy Dunlapcbcd2a42005-07-27 13:04:35 -07002908 depends on EXPERIMENTAL
Linus Torvalds1da177e2005-04-16 15:20:36 -07002909 ---help---
2910 The traffic shaper is a virtual network device that allows you to
2911 limit the rate of outgoing data flow over some other network device.
2912 The traffic that you want to slow down can then be routed through
2913 these virtual devices. See
2914 <file:Documentation/networking/shaper.txt> for more information.
2915
Jiri Slaby3b6a7922006-11-06 14:34:48 -08002916 An alternative to this traffic shaper are traffic schedulers which
2917 you'll get if you say Y to "QoS and/or fair queuing" in
2918 "Networking options".
Linus Torvalds1da177e2005-04-16 15:20:36 -07002919
Linus Torvalds1da177e2005-04-16 15:20:36 -07002920 To compile this driver as a module, choose M here: the module
2921 will be called shaper. If unsure, say N.
2922
2923config NETCONSOLE
2924 tristate "Network console logging support (EXPERIMENTAL)"
Matt Mackall5e43db72005-07-27 15:24:42 -07002925 depends on EXPERIMENTAL
Linus Torvalds1da177e2005-04-16 15:20:36 -07002926 ---help---
2927 If you want to log kernel messages over the network, enable this.
2928 See <file:Documentation/networking/netconsole.txt> for details.
2929
Randy Dunlap54208992005-07-18 13:45:12 -07002930config NETPOLL
2931 def_bool NETCONSOLE
2932
Randy Dunlap54208992005-07-18 13:45:12 -07002933config NETPOLL_TRAP
2934 bool "Netpoll traffic trapping"
2935 default n
2936 depends on NETPOLL
2937
2938config NET_POLL_CONTROLLER
2939 def_bool NETPOLL
2940
Jan Engelhardtd1c0a652007-06-13 12:48:53 -07002941endif # NETDEVICES