blob: 3073f679584b9cd229c99dd60926cb2569c5d5ee [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
Bryan Wue190d6b2007-07-17 14:43:44 +0800841config BFIN_MAC
842 tristate "Blackfin 536/537 on-chip mac support"
843 depends on NET_ETHERNET && (BF537 || BF536) && (!BF537_PORT_H)
844 select CRC32
845 select BFIN_MAC_USE_L1 if DMA_UNCACHED_NONE
846 help
847 This is the driver for blackfin on-chip mac device. Say Y if you want it
848 compiled into the kernel. This driver is also available as a module
849 ( = code which can be inserted in and removed from the running kernel
850 whenever you want). The module will be called bfin_mac.
851
852config BFIN_MAC_USE_L1
853 bool "Use L1 memory for rx/tx packets"
854 depends on BFIN_MAC && BF537
855 default y
856 help
857 To get maximum network performace, you should use L1 memory as rx/tx buffers.
858 Say N here if you want to reserve L1 memory for other uses.
859
860config BFIN_TX_DESC_NUM
861 int "Number of transmit buffer packets"
862 depends on BFIN_MAC
863 range 6 10 if BFIN_MAC_USE_L1
864 range 10 100
865 default "10"
866 help
867 Set the number of buffer packets used in driver.
868
869config BFIN_RX_DESC_NUM
870 int "Number of receive buffer packets"
871 depends on BFIN_MAC
872 range 20 100 if BFIN_MAC_USE_L1
873 range 20 800
874 default "20"
875 help
876 Set the number of buffer packets used in driver.
877
878config BFIN_MAC_RMII
879 bool "RMII PHY Interface (EXPERIMENTAL)"
880 depends on BFIN_MAC && EXPERIMENTAL
881 default n
882 help
883 Use Reduced PHY MII Interface
884
Linus Torvalds1da177e2005-04-16 15:20:36 -0700885config SMC9194
886 tristate "SMC 9194 support"
887 depends on NET_VENDOR_SMC && (ISA || MAC && BROKEN)
888 select CRC32
889 ---help---
890 This is support for the SMC9xxx based Ethernet cards. Choose this
891 option if you have a DELL laptop with the docking station, or
892 another SMC9192/9194 based chipset. Say Y if you want it compiled
893 into the kernel, and read the file
894 <file:Documentation/networking/smc9.txt> and the Ethernet-HOWTO,
895 available from <http://www.tldp.org/docs.html#howto>.
896
897 To compile this driver as a module, choose M here and read
898 <file:Documentation/networking/net-modules.txt>. The module
899 will be called smc9194.
900
Jan Engelhardtd1c0a652007-06-13 12:48:53 -0700901config SMC91X
902 tristate "SMC 91C9x/91C1xxx support"
903 select CRC32
904 select MII
905 depends on ARM || REDWOOD_5 || REDWOOD_6 || M32R || SUPERH || SOC_AU1X00 || BFIN
906 help
907 This is a driver for SMC's 91x series of Ethernet chipsets,
908 including the SMC91C94 and the SMC91C111. Say Y if you want it
909 compiled into the kernel, and read the file
910 <file:Documentation/networking/smc9.txt> and the Ethernet-HOWTO,
911 available from <http://www.linuxdoc.org/docs.html#howto>.
912
913 This driver is also available as a module ( = code which can be
914 inserted in and removed from the running kernel whenever you want).
915 The module will be called smc91x. If you want to compile it as a
916 module, say M here and read <file:Documentation/kbuild/modules.txt>
917 as well as <file:Documentation/networking/net-modules.txt>.
918
Sascha Hauer92aa6742006-06-22 07:11:13 +0200919config NET_NETX
920 tristate "NetX Ethernet support"
921 select MII
Jan Engelhardtd1c0a652007-06-13 12:48:53 -0700922 depends on ARCH_NETX
Sascha Hauer92aa6742006-06-22 07:11:13 +0200923 help
924 This is support for the Hilscher netX builtin Ethernet ports
925
926 To compile this driver as a module, choose M here and read
927 <file:Documentation/networking/net-modules.txt>. The module
928 will be called netx-eth.
929
Sascha Hauera1365272005-05-05 15:14:15 -0700930config DM9000
931 tristate "DM9000 support"
Alex Landauf40d24d2007-07-12 12:11:48 +0800932 depends on ARM || BLACKFIN || MIPS
Sascha Hauera1365272005-05-05 15:14:15 -0700933 select CRC32
934 select MII
935 ---help---
936 Support for DM9000 chipset.
937
938 To compile this driver as a module, choose M here and read
939 <file:Documentation/networking/net-modules.txt>. The module will be
940 called dm9000.
941
Dustin McIntire0a0c72c2006-04-19 20:24:51 -0700942config SMC911X
943 tristate "SMSC LAN911[5678] support"
944 select CRC32
945 select MII
Jan Engelhardtd1c0a652007-06-13 12:48:53 -0700946 depends on ARCH_PXA
Dustin McIntire0a0c72c2006-04-19 20:24:51 -0700947 help
948 This is a driver for SMSC's LAN911x series of Ethernet chipsets
949 including the new LAN9115, LAN9116, LAN9117, and LAN9118.
950 Say Y if you want it compiled into the kernel,
951 and read the Ethernet-HOWTO, available from
952 <http://www.linuxdoc.org/docs.html#howto>.
953
954 This driver is also available as a module. The module will be
955 called smc911x. If you want to compile it as a module, say M
Alexander E. Patrakov39f5fb32007-03-16 18:28:43 +0500956 here and read <file:Documentation/kbuild/modules.txt>
Dustin McIntire0a0c72c2006-04-19 20:24:51 -0700957
Linus Torvalds1da177e2005-04-16 15:20:36 -0700958config NET_VENDOR_RACAL
959 bool "Racal-Interlan (Micom) NI cards"
Jan Engelhardtd1c0a652007-06-13 12:48:53 -0700960 depends on ISA
Linus Torvalds1da177e2005-04-16 15:20:36 -0700961 help
962 If you have a network (Ethernet) card belonging to this class, such
963 as the NI5010, NI5210 or NI6210, say Y and read the Ethernet-HOWTO,
964 available from <http://www.tldp.org/docs.html#howto>.
965
966 Note that the answer to this question doesn't directly affect the
967 kernel: saying N will just cause the configurator to skip all
968 the questions about NI cards. If you say Y, you will be asked for
969 your specific card in the following questions.
970
971config NI5010
972 tristate "NI5010 support (EXPERIMENTAL)"
973 depends on NET_VENDOR_RACAL && ISA && EXPERIMENTAL && BROKEN_ON_SMP
974 ---help---
975 If you have a network (Ethernet) card of this type, say Y and read
976 the Ethernet-HOWTO, available from
977 <http://www.tldp.org/docs.html#howto>. Note that this is still
978 experimental code.
979
980 To compile this driver as a module, choose M here and read
981 <file:Documentation/networking/net-modules.txt>. The module
982 will be called ni5010.
983
984config NI52
985 tristate "NI5210 support"
986 depends on NET_VENDOR_RACAL && ISA
987 help
988 If you have a network (Ethernet) card of this type, say Y and read
989 the Ethernet-HOWTO, available from
990 <http://www.tldp.org/docs.html#howto>.
991
992 To compile this driver as a module, choose M here and read
993 <file:Documentation/networking/net-modules.txt>. The module
994 will be called ni52.
995
996config NI65
997 tristate "NI6510 support"
Al Viroa5532602005-05-04 05:39:42 +0100998 depends on NET_VENDOR_RACAL && ISA && ISA_DMA_API
Linus Torvalds1da177e2005-04-16 15:20:36 -0700999 help
1000 If you have a network (Ethernet) card of this type, say Y and read
1001 the Ethernet-HOWTO, available from
1002 <http://www.tldp.org/docs.html#howto>.
1003
1004 To compile this driver as a module, choose M here and read
1005 <file:Documentation/networking/net-modules.txt>. The module
1006 will be called ni65.
1007
1008source "drivers/net/tulip/Kconfig"
1009
1010config AT1700
1011 tristate "AT1700/1720 support (EXPERIMENTAL)"
Jan Engelhardtd1c0a652007-06-13 12:48:53 -07001012 depends on (ISA || MCA_LEGACY) && EXPERIMENTAL
Linus Torvalds1da177e2005-04-16 15:20:36 -07001013 select CRC32
1014 ---help---
1015 If you have a network (Ethernet) card of this type, say Y and read
1016 the Ethernet-HOWTO, available from
1017 <http://www.tldp.org/docs.html#howto>.
1018
1019 To compile this driver as a module, choose M here and read
1020 <file:Documentation/networking/net-modules.txt>. The module
1021 will be called at1700.
1022
1023config DEPCA
1024 tristate "DEPCA, DE10x, DE200, DE201, DE202, DE422 support"
Jan Engelhardtd1c0a652007-06-13 12:48:53 -07001025 depends on ISA || EISA || MCA
Linus Torvalds1da177e2005-04-16 15:20:36 -07001026 select CRC32
1027 ---help---
1028 If you have a network (Ethernet) card of this type, say Y and read
1029 the Ethernet-HOWTO, available from
1030 <http://www.tldp.org/docs.html#howto> as well as
1031 <file:drivers/net/depca.c>.
1032
1033 To compile this driver as a module, choose M here and read
1034 <file:Documentation/networking/net-modules.txt>. The module
1035 will be called depca.
1036
1037config HP100
1038 tristate "HP 10/100VG PCLAN (ISA, EISA, PCI) support"
Jan Engelhardtd1c0a652007-06-13 12:48:53 -07001039 depends on ISA || EISA || PCI
Linus Torvalds1da177e2005-04-16 15:20:36 -07001040 help
1041 If you have a network (Ethernet) card of this type, say Y and read
1042 the Ethernet-HOWTO, available from
1043 <http://www.tldp.org/docs.html#howto>.
1044
1045 To compile this driver as a module, choose M here and read
1046 <file:Documentation/networking/net-modules.txt>. The module
1047 will be called hp100.
1048
1049config NET_ISA
1050 bool "Other ISA cards"
Jan Engelhardtd1c0a652007-06-13 12:48:53 -07001051 depends on ISA
Linus Torvalds1da177e2005-04-16 15:20:36 -07001052 ---help---
1053 If your network (Ethernet) card hasn't been mentioned yet and its
1054 bus system (that's the way the cards talks to the other components
1055 of your computer) is ISA (as opposed to EISA, VLB or PCI), say Y.
1056 Make sure you know the name of your card. Read the Ethernet-HOWTO,
1057 available from <http://www.tldp.org/docs.html#howto>.
1058
1059 If unsure, say Y.
1060
1061 Note that the answer to this question doesn't directly affect the
1062 kernel: saying N will just cause the configurator to skip all
1063 the remaining ISA network card questions. If you say Y, you will be
1064 asked for your specific card in the following questions.
1065
1066config E2100
1067 tristate "Cabletron E21xx support"
1068 depends on NET_ISA
1069 select CRC32
1070 help
1071 If you have a network (Ethernet) card of this type, say Y and read
1072 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 e2100.
1078
1079config EWRK3
1080 tristate "EtherWORKS 3 (DE203, DE204, DE205) support"
1081 depends on NET_ISA
1082 select CRC32
1083 ---help---
1084 This driver supports the DE203, DE204 and DE205 network (Ethernet)
1085 cards. If this is for you, say Y and read
1086 <file:Documentation/networking/ewrk3.txt> in the kernel source as
1087 well as the Ethernet-HOWTO, available from
1088 <http://www.tldp.org/docs.html#howto>.
1089
1090 To compile this driver as a module, choose M here and read
1091 <file:Documentation/networking/net-modules.txt>. The module
1092 will be called ewrk3.
1093
1094config EEXPRESS
1095 tristate "EtherExpress 16 support"
1096 depends on NET_ISA
1097 ---help---
1098 If you have an EtherExpress16 network (Ethernet) card, say Y and
1099 read the Ethernet-HOWTO, available from
1100 <http://www.tldp.org/docs.html#howto>. Note that the Intel
1101 EtherExpress16 card used to be regarded as a very poor choice
1102 because the driver was very unreliable. We now have a new driver
1103 that should do better.
1104
1105 To compile this driver as a module, choose M here and read
1106 <file:Documentation/networking/net-modules.txt>. The module
1107 will be called eexpress.
1108
1109config EEXPRESS_PRO
1110 tristate "EtherExpressPro support/EtherExpress 10 (i82595) support"
1111 depends on NET_ISA
1112 ---help---
1113 If you have a network (Ethernet) card of this type, say Y. This
Jon Mason47c51432006-02-12 11:53:04 -06001114 driver supports Intel i82595{FX,TX} based boards. Note however
Linus Torvalds1da177e2005-04-16 15:20:36 -07001115 that the EtherExpress PRO/100 Ethernet card has its own separate
1116 driver. Please read the Ethernet-HOWTO, available from
1117 <http://www.tldp.org/docs.html#howto>.
1118
1119 To compile this driver as a module, choose M here and read
1120 <file:Documentation/networking/net-modules.txt>. The module
1121 will be called eepro.
1122
Linus Torvalds1da177e2005-04-16 15:20:36 -07001123config HPLAN_PLUS
1124 tristate "HP PCLAN+ (27247B and 27252A) support"
1125 depends on NET_ISA
1126 select CRC32
1127 help
1128 If you have a network (Ethernet) card of this type, say Y and read
1129 the Ethernet-HOWTO, available from
1130 <http://www.tldp.org/docs.html#howto>.
1131
1132 To compile this driver as a module, choose M here and read
1133 <file:Documentation/networking/net-modules.txt>. The module
1134 will be called hp-plus.
1135
1136config HPLAN
1137 tristate "HP PCLAN (27245 and other 27xxx series) support"
1138 depends on NET_ISA
1139 select CRC32
1140 help
1141 If you have a network (Ethernet) card of this type, say Y and read
1142 the Ethernet-HOWTO, available from
1143 <http://www.tldp.org/docs.html#howto>.
1144
1145 To compile this driver as a module, choose M here and read
1146 <file:Documentation/networking/net-modules.txt>. The module
1147 will be called hp.
1148
1149config LP486E
1150 tristate "LP486E on board Ethernet"
1151 depends on NET_ISA
1152 help
1153 Say Y here to support the 82596-based on-board Ethernet controller
1154 for the Panther motherboard, which is one of the two shipped in the
1155 Intel Professional Workstation.
1156
1157config ETH16I
1158 tristate "ICL EtherTeam 16i/32 support"
1159 depends on NET_ISA
1160 help
1161 If you have a network (Ethernet) card of this type, say Y and read
1162 the Ethernet-HOWTO, available from
1163 <http://www.tldp.org/docs.html#howto>.
1164
1165 To compile this driver as a module, choose M here and read
1166 <file:Documentation/networking/net-modules.txt>. The module
1167 will be called eth16i.
1168
1169config NE2000
1170 tristate "NE2000/NE1000 support"
Atsushi Nemoto57e386c2007-05-01 00:27:58 +09001171 depends on NET_ISA || (Q40 && m) || M32R || TOSHIBA_RBTX4927 || TOSHIBA_RBTX4938
Linus Torvalds1da177e2005-04-16 15:20:36 -07001172 select CRC32
1173 ---help---
1174 If you have a network (Ethernet) card of this type, say Y and read
1175 the Ethernet-HOWTO, available from
1176 <http://www.tldp.org/docs.html#howto>. Many Ethernet cards
1177 without a specific driver are compatible with NE2000.
1178
1179 If you have a PCI NE2000 card however, say N here and Y to "PCI
Jesper Juhl28beaf62006-03-08 00:06:31 -08001180 NE2000 and clone support" under "EISA, VLB, PCI and on board
1181 controllers" below. If you have a NE2000 card and are running on
Linus Torvalds1da177e2005-04-16 15:20:36 -07001182 an MCA system (a bus system used on some IBM PS/2 computers and
1183 laptops), say N here and Y to "NE/2 (ne2000 MCA version) support",
1184 below.
1185
1186 To compile this driver as a module, choose M here and read
1187 <file:Documentation/networking/net-modules.txt>. The module
1188 will be called ne.
1189
1190config ZNET
1191 tristate "Zenith Z-Note support (EXPERIMENTAL)"
Al Viroa5532602005-05-04 05:39:42 +01001192 depends on NET_ISA && EXPERIMENTAL && ISA_DMA_API
Linus Torvalds1da177e2005-04-16 15:20:36 -07001193 help
1194 The Zenith Z-Note notebook computer has a built-in network
1195 (Ethernet) card, and this is the Linux driver for it. Note that the
1196 IBM Thinkpad 300 is compatible with the Z-Note and is also supported
1197 by this driver. Read the Ethernet-HOWTO, available from
1198 <http://www.tldp.org/docs.html#howto>.
1199
1200config SEEQ8005
1201 tristate "SEEQ8005 support (EXPERIMENTAL)"
1202 depends on NET_ISA && EXPERIMENTAL
1203 help
1204 This is a driver for the SEEQ 8005 network (Ethernet) card. If this
1205 is for you, read the Ethernet-HOWTO, available from
1206 <http://www.tldp.org/docs.html#howto>.
1207
1208 To compile this driver as a module, choose M here and read
1209 <file:Documentation/networking/net-modules.txt>. The module
1210 will be called seeq8005.
1211
Linus Torvalds1da177e2005-04-16 15:20:36 -07001212config NE2_MCA
1213 tristate "NE/2 (ne2000 MCA version) support"
Jan Engelhardtd1c0a652007-06-13 12:48:53 -07001214 depends on MCA_LEGACY
Linus Torvalds1da177e2005-04-16 15:20:36 -07001215 select CRC32
1216 help
1217 If you have a network (Ethernet) card of this type, say Y and read
1218 the Ethernet-HOWTO, available from
1219 <http://www.tldp.org/docs.html#howto>.
1220
1221 To compile this driver as a module, choose M here and read
1222 <file:Documentation/networking/net-modules.txt>. The module
1223 will be called ne2.
1224
1225config IBMLANA
1226 tristate "IBM LAN Adapter/A support"
Jan Engelhardtd1c0a652007-06-13 12:48:53 -07001227 depends on MCA && MCA_LEGACY
Linus Torvalds1da177e2005-04-16 15:20:36 -07001228 ---help---
1229 This is a Micro Channel Ethernet adapter. You need to set
1230 CONFIG_MCA to use this driver. It is both available as an in-kernel
1231 driver and as a module.
1232
1233 To compile this driver as a module, choose M here and read
1234 <file:Documentation/networking/net-modules.txt>. The only
1235 currently supported card is the IBM LAN Adapter/A for Ethernet. It
1236 will both support 16K and 32K memory windows, however a 32K window
1237 gives a better security against packet losses. Usage of multiple
1238 boards with this driver should be possible, but has not been tested
1239 up to now due to lack of hardware.
1240
1241config IBMVETH
1242 tristate "IBM LAN Virtual Ethernet support"
Jan Engelhardtd1c0a652007-06-13 12:48:53 -07001243 depends on PPC_PSERIES
Linus Torvalds1da177e2005-04-16 15:20:36 -07001244 ---help---
1245 This driver supports virtual ethernet adapters on newer IBM iSeries
1246 and pSeries systems.
1247
1248 To compile this driver as a module, choose M here and read
1249 <file:Documentation/networking/net-modules.txt>. The module will
1250 be called ibmveth.
1251
1252config IBM_EMAC
Eugene Surovegin37448f72005-10-10 16:58:14 -07001253 tristate "PowerPC 4xx on-chip Ethernet support"
David Gibson86affd52007-06-28 11:27:57 +10001254 depends on 4xx && !PPC_MERGE
Eugene Surovegin37448f72005-10-10 16:58:14 -07001255 help
1256 This driver supports the PowerPC 4xx EMAC family of on-chip
1257 Ethernet controllers.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001258
1259config IBM_EMAC_RXB
1260 int "Number of receive buffers"
1261 depends on IBM_EMAC
Eugene Surovegin37448f72005-10-10 16:58:14 -07001262 default "128"
Linus Torvalds1da177e2005-04-16 15:20:36 -07001263
1264config IBM_EMAC_TXB
1265 int "Number of transmit buffers"
1266 depends on IBM_EMAC
Eugene Surovegin37448f72005-10-10 16:58:14 -07001267 default "64"
Linus Torvalds1da177e2005-04-16 15:20:36 -07001268
Eugene Surovegin37448f72005-10-10 16:58:14 -07001269config IBM_EMAC_POLL_WEIGHT
1270 int "MAL NAPI polling weight"
Linus Torvalds1da177e2005-04-16 15:20:36 -07001271 depends on IBM_EMAC
Eugene Surovegin37448f72005-10-10 16:58:14 -07001272 default "32"
Linus Torvalds1da177e2005-04-16 15:20:36 -07001273
Eugene Surovegin37448f72005-10-10 16:58:14 -07001274config IBM_EMAC_RX_COPY_THRESHOLD
1275 int "RX skb copy threshold (bytes)"
1276 depends on IBM_EMAC
1277 default "256"
1278
1279config IBM_EMAC_RX_SKB_HEADROOM
1280 int "Additional RX skb headroom (bytes)"
Linus Torvalds1da177e2005-04-16 15:20:36 -07001281 depends on IBM_EMAC
1282 default "0"
Eugene Surovegin37448f72005-10-10 16:58:14 -07001283 help
1284 Additional receive skb headroom. Note, that driver
1285 will always reserve at least 2 bytes to make IP header
Jon Mason47c51432006-02-12 11:53:04 -06001286 aligned, so usually there is no need to add any additional
Eugene Surovegin37448f72005-10-10 16:58:14 -07001287 headroom.
1288
1289 If unsure, set to 0.
1290
1291config IBM_EMAC_PHY_RX_CLK_FIX
1292 bool "PHY Rx clock workaround"
Eugene Surovegin1b195912005-10-29 12:45:31 -07001293 depends on IBM_EMAC && (405EP || 440GX || 440EP || 440GR)
Eugene Surovegin37448f72005-10-10 16:58:14 -07001294 help
1295 Enable this if EMAC attached to a PHY which doesn't generate
1296 RX clock if there is no link, if this is the case, you will
1297 see "TX disable timeout" or "RX disable timeout" in the system
1298 log.
1299
1300 If unsure, say N.
1301
1302config IBM_EMAC_DEBUG
1303 bool "Debugging"
1304 depends on IBM_EMAC
1305 default n
1306
1307config IBM_EMAC_ZMII
1308 bool
1309 depends on IBM_EMAC && (NP405H || NP405L || 44x)
1310 default y
1311
1312config IBM_EMAC_RGMII
1313 bool
1314 depends on IBM_EMAC && 440GX
1315 default y
1316
1317config IBM_EMAC_TAH
1318 bool
1319 depends on IBM_EMAC && 440GX
1320 default y
Linus Torvalds1da177e2005-04-16 15:20:36 -07001321
1322config NET_PCI
1323 bool "EISA, VLB, PCI and on board controllers"
Jan Engelhardtd1c0a652007-06-13 12:48:53 -07001324 depends on ISA || EISA || PCI
Linus Torvalds1da177e2005-04-16 15:20:36 -07001325 help
1326 This is another class of network cards which attach directly to the
1327 bus. If you have one of those, say Y and read the Ethernet-HOWTO,
1328 available from <http://www.tldp.org/docs.html#howto>.
1329
1330 Note that the answer to this question doesn't directly affect the
1331 kernel: saying N will just cause the configurator to skip all
1332 the questions about this class of network cards. If you say Y, you
1333 will be asked for your specific card in the following questions. If
1334 you are unsure, say Y.
1335
1336config PCNET32
1337 tristate "AMD PCnet32 PCI support"
1338 depends on NET_PCI && PCI
1339 select CRC32
1340 select MII
1341 help
1342 If you have a PCnet32 or PCnetPCI based network (Ethernet) card,
1343 answer Y here and read the Ethernet-HOWTO, available from
1344 <http://www.tldp.org/docs.html#howto>.
1345
1346 To compile this driver as a module, choose M here and read
1347 <file:Documentation/networking/net-modules.txt>. The module
1348 will be called pcnet32.
1349
Don Fry7de745e2006-09-13 10:16:53 -07001350config PCNET32_NAPI
pcnet32@verizon.net659dd832007-02-16 10:09:57 -06001351 bool "Use RX polling (NAPI)"
1352 depends on PCNET32
Don Fry7de745e2006-09-13 10:16:53 -07001353 help
1354 NAPI is a new driver API designed to reduce CPU and interrupt load
1355 when the driver is receiving lots of packets from the card. It is
1356 still somewhat experimental and thus not yet enabled by default.
1357
1358 If your estimated Rx load is 10kpps or more, or if the card will be
1359 deployed on potentially unfriendly networks (e.g. in a firewall),
1360 then say Y here.
1361
1362 See <file:Documentation/networking/NAPI_HOWTO.txt> for more
1363 information.
1364
1365 If in doubt, say N.
1366
Linus Torvalds1da177e2005-04-16 15:20:36 -07001367config AMD8111_ETH
1368 tristate "AMD 8111 (new PCI lance) support"
1369 depends on NET_PCI && PCI
1370 select CRC32
1371 select MII
1372 help
1373 If you have an AMD 8111-based PCI lance ethernet card,
1374 answer Y here and read the Ethernet-HOWTO, available from
1375 <http://www.tldp.org/docs.html#howto>.
1376
1377 To compile this driver as a module, choose M here and read
1378 <file:Documentation/networking/net-modules.txt>. The module
1379 will be called amd8111e.
Jan Engelhardtd1c0a652007-06-13 12:48:53 -07001380
Linus Torvalds1da177e2005-04-16 15:20:36 -07001381config AMD8111E_NAPI
1382 bool "Enable NAPI support"
1383 depends on AMD8111_ETH
1384 help
1385 NAPI is a new driver API designed to reduce CPU and interrupt load
1386 when the driver is receiving lots of packets from the card. It is
1387 still somewhat experimental and thus not yet enabled by default.
1388
1389 If your estimated Rx load is 10kpps or more, or if the card will be
1390 deployed on potentially unfriendly networks (e.g. in a firewall),
1391 then say Y here.
1392
1393 See <file:Documentation/networking/NAPI_HOWTO.txt> for more
1394 information.
1395
1396 If in doubt, say N.
1397
1398config ADAPTEC_STARFIRE
1399 tristate "Adaptec Starfire/DuraLAN support"
1400 depends on NET_PCI && PCI
1401 select CRC32
1402 select MII
1403 help
1404 Say Y here if you have an Adaptec Starfire (or DuraLAN) PCI network
1405 adapter. The DuraLAN chip is used on the 64 bit PCI boards from
1406 Adaptec e.g. the ANA-6922A. The older 32 bit boards use the tulip
1407 driver.
1408
1409 To compile this driver as a module, choose M here: the module
1410 will be called starfire. This is recommended.
1411
1412config ADAPTEC_STARFIRE_NAPI
1413 bool "Use Rx Polling (NAPI) (EXPERIMENTAL)"
1414 depends on ADAPTEC_STARFIRE && EXPERIMENTAL
1415 help
1416 NAPI is a new driver API designed to reduce CPU and interrupt load
1417 when the driver is receiving lots of packets from the card. It is
1418 still somewhat experimental and thus not yet enabled by default.
1419
1420 If your estimated Rx load is 10kpps or more, or if the card will be
1421 deployed on potentially unfriendly networks (e.g. in a firewall),
1422 then say Y here.
1423
1424 See <file:Documentation/networking/NAPI_HOWTO.txt> for more
1425 information.
1426
1427 If in doubt, say N.
1428
1429config AC3200
1430 tristate "Ansel Communications EISA 3200 support (EXPERIMENTAL)"
1431 depends on NET_PCI && (ISA || EISA) && EXPERIMENTAL
1432 select CRC32
1433 help
1434 If you have a network (Ethernet) card of this type, say Y and read
1435 the Ethernet-HOWTO, available from
1436 <http://www.tldp.org/docs.html#howto>.
1437
1438 To compile this driver as a module, choose M here and read
1439 <file:Documentation/networking/net-modules.txt>. The module
1440 will be called ac3200.
1441
1442config APRICOT
1443 tristate "Apricot Xen-II on board Ethernet"
1444 depends on NET_PCI && ISA
1445 help
1446 If you have a network (Ethernet) controller of this type, say Y and
1447 read the Ethernet-HOWTO, available from
1448 <http://www.tldp.org/docs.html#howto>.
1449
1450 To compile this driver as a module, choose M here and read
1451 <file:Documentation/networking/net-modules.txt>. The module will be
1452 called apricot.
1453
1454config B44
Gary Zambranofc13dca2006-06-20 15:34:46 -07001455 tristate "Broadcom 4400 ethernet support"
1456 depends on NET_PCI && PCI
Linus Torvalds1da177e2005-04-16 15:20:36 -07001457 select MII
1458 help
1459 If you have a network (Ethernet) controller of this type, say Y and
1460 read the Ethernet-HOWTO, available from
1461 <http://www.tldp.org/docs.html#howto>.
1462
1463 To compile this driver as a module, choose M here and read
1464 <file:Documentation/networking/net-modules.txt>. The module will be
1465 called b44.
1466
1467config FORCEDETH
Adrian Bunk82770082006-03-08 00:06:30 -08001468 tristate "nForce Ethernet support"
1469 depends on NET_PCI && PCI
Linus Torvalds1da177e2005-04-16 15:20:36 -07001470 help
1471 If you have a network (Ethernet) controller of this type, say Y and
1472 read the Ethernet-HOWTO, available from
1473 <http://www.tldp.org/docs.html#howto>.
1474
1475 To compile this driver as a module, choose M here and read
1476 <file:Documentation/networking/net-modules.txt>. The module will be
1477 called forcedeth.
1478
Stephen Hemmingere27cdba2006-07-31 20:37:19 -07001479config FORCEDETH_NAPI
1480 bool "Use Rx and Tx Polling (NAPI) (EXPERIMENTAL)"
1481 depends on FORCEDETH && EXPERIMENTAL
1482 help
1483 NAPI is a new driver API designed to reduce CPU and interrupt load
1484 when the driver is receiving lots of packets from the card. It is
1485 still somewhat experimental and thus not yet enabled by default.
1486
1487 If your estimated Rx load is 10kpps or more, or if the card will be
1488 deployed on potentially unfriendly networks (e.g. in a firewall),
1489 then say Y here.
1490
1491 See <file:Documentation/networking/NAPI_HOWTO.txt> for more
1492 information.
1493
1494 If in doubt, say N.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001495
1496config CS89x0
1497 tristate "CS89x0 support"
Deepak Saxena9c878962006-01-14 13:21:18 -08001498 depends on NET_PCI && (ISA || MACH_IXDP2351 || ARCH_IXDP2X01 || ARCH_PNX010X)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001499 ---help---
1500 Support for CS89x0 chipset based Ethernet cards. If you have a
1501 network (Ethernet) card of this type, say Y and read the
1502 Ethernet-HOWTO, available from
1503 <http://www.tldp.org/docs.html#howto> as well as
1504 <file:Documentation/networking/cs89x0.txt>.
1505
1506 To compile this driver as a module, choose M here and read
1507 <file:Documentation/networking/net-modules.txt>. The module will be
Jean Delvarefd85d762006-01-11 12:17:36 -08001508 called cs89x0.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001509
1510config TC35815
1511 tristate "TOSHIBA TC35815 Ethernet support"
Atsushi Nemotoeea221ce2007-03-03 23:54:59 +09001512 depends on NET_PCI && PCI && MIPS
1513 select MII
Linus Torvalds1da177e2005-04-16 15:20:36 -07001514
1515config DGRS
1516 tristate "Digi Intl. RightSwitch SE-X support"
1517 depends on NET_PCI && (PCI || EISA)
1518 ---help---
1519 This is support for the Digi International RightSwitch series of
1520 PCI/EISA Ethernet switch cards. These include the SE-4 and the SE-6
1521 models. If you have a network card of this type, say Y and read the
1522 Ethernet-HOWTO, available from
1523 <http://www.tldp.org/docs.html#howto>. More specific
1524 information is contained in <file:Documentation/networking/dgrs.txt>.
1525
1526 To compile this driver as a module, choose M here and read
1527 <file:Documentation/networking/net-modules.txt>. The module
1528 will be called dgrs.
1529
1530config EEPRO100
1531 tristate "EtherExpressPro/100 support (eepro100, original Becker driver)"
1532 depends on NET_PCI && PCI
1533 select MII
1534 help
1535 If you have an Intel EtherExpress PRO/100 PCI network (Ethernet)
1536 card, say Y and read the Ethernet-HOWTO, available from
1537 <http://www.tldp.org/docs.html#howto>.
1538
1539 To compile this driver as a module, choose M here and read
1540 <file:Documentation/networking/net-modules.txt>. The module
1541 will be called eepro100.
1542
1543
1544config E100
1545 tristate "Intel(R) PRO/100+ support"
1546 depends on NET_PCI && PCI
1547 select MII
1548 ---help---
1549 This driver supports Intel(R) PRO/100 family of adapters.
1550 To verify that your adapter is supported, find the board ID number
1551 on the adapter. Look for a label that has a barcode and a number
1552 in the format 123456-001 (six digits hyphen three digits).
1553
1554 Use the above information and the Adapter & Driver ID Guide at:
1555
1556 <http://support.intel.com/support/network/adapter/pro100/21397.htm>
1557
1558 to identify the adapter.
1559
1560 For the latest Intel PRO/100 network driver for Linux, see:
1561
1562 <http://appsr.intel.com/scripts-df/support_intel.asp>
1563
1564 More specific information on configuring the driver is in
1565 <file:Documentation/networking/e100.txt>.
1566
1567 To compile this driver as a module, choose M here and read
1568 <file:Documentation/networking/net-modules.txt>. The module
1569 will be called e100.
1570
1571config LNE390
1572 tristate "Mylex EISA LNE390A/B support (EXPERIMENTAL)"
1573 depends on NET_PCI && EISA && EXPERIMENTAL
1574 select CRC32
1575 help
1576 If you have a network (Ethernet) card of this type, say Y and read
1577 the Ethernet-HOWTO, available from
1578 <http://www.tldp.org/docs.html#howto>.
1579
1580 To compile this driver as a module, choose M here and read
1581 <file:Documentation/networking/net-modules.txt>. The module
1582 will be called lne390.
1583
1584config FEALNX
1585 tristate "Myson MTD-8xx PCI Ethernet support"
1586 depends on NET_PCI && PCI
1587 select CRC32
1588 select MII
1589 help
1590 Say Y here to support the Mysom MTD-800 family of PCI-based Ethernet
1591 cards. Specifications and data at
1592 <http://www.myson.com.hk/mtd/datasheet/>.
1593
1594config NATSEMI
1595 tristate "National Semiconductor DP8381x series PCI Ethernet support"
1596 depends on NET_PCI && PCI
1597 select CRC32
1598 help
1599 This driver is for the National Semiconductor DP83810 series,
1600 which is used in cards from PureData, NetGear, Linksys
1601 and others, including the 83815 chip.
1602 More specific information and updates are available from
1603 <http://www.scyld.com/network/natsemi.html>.
1604
1605config NE2K_PCI
1606 tristate "PCI NE2000 and clones support (see help)"
1607 depends on NET_PCI && PCI
1608 select CRC32
1609 ---help---
1610 This driver is for NE2000 compatible PCI cards. It will not work
1611 with ISA NE2000 cards (they have their own driver, "NE2000/NE1000
1612 support" below). If you have a PCI NE2000 network (Ethernet) card,
1613 say Y and read the Ethernet-HOWTO, available from
1614 <http://www.tldp.org/docs.html#howto>.
1615
1616 This driver also works for the following NE2000 clone cards:
1617 RealTek RTL-8029 Winbond 89C940 Compex RL2000 KTI ET32P2
1618 NetVin NV5000SC Via 86C926 SureCom NE34 Winbond
1619 Holtek HT80232 Holtek HT80229
1620
1621 To compile this driver as a module, choose M here and read
1622 <file:Documentation/networking/net-modules.txt>. The module
1623 will be called ne2k-pci.
1624
1625config NE3210
1626 tristate "Novell/Eagle/Microdyne NE3210 EISA support (EXPERIMENTAL)"
1627 depends on NET_PCI && EISA && EXPERIMENTAL
1628 select CRC32
1629 ---help---
1630 If you have a network (Ethernet) card of this type, say Y and read
1631 the Ethernet-HOWTO, available from
1632 <http://www.tldp.org/docs.html#howto>. Note that this driver
1633 will NOT WORK for NE3200 cards as they are completely different.
1634
1635 To compile this driver as a module, choose M here and read
1636 <file:Documentation/networking/net-modules.txt>. The module
1637 will be called ne3210.
1638
1639config ES3210
1640 tristate "Racal-Interlan EISA ES3210 support (EXPERIMENTAL)"
1641 depends on NET_PCI && EISA && EXPERIMENTAL
1642 select CRC32
1643 help
1644 If you have a network (Ethernet) card of this type, say Y and read
1645 the Ethernet-HOWTO, available from
1646 <http://www.tldp.org/docs.html#howto>.
1647
1648 To compile this driver as a module, choose M here and read
1649 <file:Documentation/networking/net-modules.txt>. The module
1650 will be called es3210.
1651
1652config 8139CP
1653 tristate "RealTek RTL-8139 C+ PCI Fast Ethernet Adapter support (EXPERIMENTAL)"
1654 depends on NET_PCI && PCI && EXPERIMENTAL
1655 select CRC32
1656 select MII
1657 help
1658 This is a driver for the Fast Ethernet PCI network cards based on
1659 the RTL8139C+ chips. If you have one of those, say Y and read
1660 the Ethernet-HOWTO, available from
1661 <http://www.tldp.org/docs.html#howto>.
1662
1663 To compile this driver as a module, choose M here: the module
1664 will be called 8139cp. This is recommended.
1665
1666config 8139TOO
Adrian Bunkf04e3f02005-05-16 21:13:03 +02001667 tristate "RealTek RTL-8129/8130/8139 PCI Fast Ethernet Adapter support"
Linus Torvalds1da177e2005-04-16 15:20:36 -07001668 depends on NET_PCI && PCI
1669 select CRC32
1670 select MII
1671 ---help---
1672 This is a driver for the Fast Ethernet PCI network cards based on
Adrian Bunkf04e3f02005-05-16 21:13:03 +02001673 the RTL 8129/8130/8139 chips. If you have one of those, say Y and
1674 read the Ethernet-HOWTO <http://www.tldp.org/docs.html#howto>.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001675
1676 To compile this driver as a module, choose M here: the module
1677 will be called 8139too. This is recommended.
1678
1679config 8139TOO_PIO
1680 bool "Use PIO instead of MMIO"
1681 default y
1682 depends on 8139TOO
1683 help
1684 This instructs the driver to use programmed I/O ports (PIO) instead
1685 of PCI shared memory (MMIO). This can possibly solve some problems
1686 in case your mainboard has memory consistency issues. If unsure,
1687 say N.
1688
1689config 8139TOO_TUNE_TWISTER
1690 bool "Support for uncommon RTL-8139 rev. K (automatic channel equalization)"
1691 depends on 8139TOO
1692 help
1693 This implements a function which might come in handy in case you
1694 are using low quality on long cabling. It is required for RealTek
1695 RTL-8139 revision K boards, and totally unused otherwise. It tries
1696 to match the transceiver to the cable characteristics. This is
1697 experimental since hardly documented by the manufacturer.
1698 If unsure, say Y.
1699
1700config 8139TOO_8129
1701 bool "Support for older RTL-8129/8130 boards"
1702 depends on 8139TOO
1703 help
1704 This enables support for the older and uncommon RTL-8129 and
1705 RTL-8130 chips, which support MII via an external transceiver,
1706 instead of an internal one. Disabling this option will save some
1707 memory by making the code size smaller. If unsure, say Y.
1708
1709config 8139_OLD_RX_RESET
1710 bool "Use older RX-reset method"
1711 depends on 8139TOO
1712 help
1713 The 8139too driver was recently updated to contain a more rapid
1714 reset sequence, in the face of severe receive errors. This "new"
1715 RX-reset method should be adequate for all boards. But if you
1716 experience problems, you can enable this option to restore the
1717 old RX-reset behavior. If unsure, say N.
1718
1719config SIS900
1720 tristate "SiS 900/7016 PCI Fast Ethernet Adapter support"
1721 depends on NET_PCI && PCI
1722 select CRC32
Adrian Bunk6da0f682005-04-30 13:52:49 +02001723 select MII
Linus Torvalds1da177e2005-04-16 15:20:36 -07001724 ---help---
1725 This is a driver for the Fast Ethernet PCI network cards based on
1726 the SiS 900 and SiS 7016 chips. The SiS 900 core is also embedded in
Adrian Bunkc3cf5602006-03-04 17:07:57 +01001727 SiS 630 and SiS 540 chipsets.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001728
1729 This driver also supports AMD 79C901 HomePNA so that you can use
1730 your phone line as a network cable.
1731
1732 To compile this driver as a module, choose M here: the module
1733 will be called sis900. This is recommended.
1734
1735config EPIC100
1736 tristate "SMC EtherPower II"
1737 depends on NET_PCI && PCI
1738 select CRC32
1739 select MII
1740 help
1741 This driver is for the SMC EtherPower II 9432 PCI Ethernet NIC,
1742 which is based on the SMC83c17x (EPIC/100).
1743 More specific information and updates are available from
1744 <http://www.scyld.com/network/epic100.html>.
1745
1746config SUNDANCE
1747 tristate "Sundance Alta support"
1748 depends on NET_PCI && PCI
1749 select CRC32
1750 select MII
1751 help
1752 This driver is for the Sundance "Alta" chip.
1753 More specific information and updates are available from
1754 <http://www.scyld.com/network/sundance.html>.
1755
1756config SUNDANCE_MMIO
1757 bool "Use MMIO instead of PIO"
1758 depends on SUNDANCE
1759 help
1760 Enable memory-mapped I/O for interaction with Sundance NIC registers.
1761 Do NOT enable this by default, PIO (enabled when MMIO is disabled)
1762 is known to solve bugs on certain chips.
1763
1764 If unsure, say N.
1765
1766config TLAN
1767 tristate "TI ThunderLAN support"
1768 depends on NET_PCI && (PCI || EISA) && !64BIT
1769 ---help---
1770 If you have a PCI Ethernet network card based on the ThunderLAN chip
1771 which is supported by this driver, say Y and read the
1772 Ethernet-HOWTO, available from
1773 <http://www.tldp.org/docs.html#howto>.
1774
1775 Devices currently supported by this driver are Compaq Netelligent,
1776 Compaq NetFlex and Olicom cards. Please read the file
1777 <file:Documentation/networking/tlan.txt> for more details.
1778
1779 To compile this driver as a module, choose M here and read
1780 <file:Documentation/networking/net-modules.txt>. The module
1781 will be called tlan.
1782
1783 Please email feedback to <torben.mathiasen@compaq.com>.
1784
1785config VIA_RHINE
1786 tristate "VIA Rhine support"
1787 depends on NET_PCI && PCI
1788 select CRC32
1789 select MII
1790 help
1791 If you have a VIA "Rhine" based network card (Rhine-I (VT86C100A),
1792 Rhine-II (VT6102), or Rhine-III (VT6105)), say Y here. Rhine-type
1793 Ethernet functions can also be found integrated on South Bridges
1794 (e.g. VT8235).
1795
1796 To compile this driver as a module, choose M here. The module
1797 will be called via-rhine.
1798
1799config VIA_RHINE_MMIO
1800 bool "Use MMIO instead of PIO"
1801 depends on VIA_RHINE
1802 help
1803 This instructs the driver to use PCI shared memory (MMIO) instead of
1804 programmed I/O ports (PIO). Enabling this gives an improvement in
1805 processing time in parts of the driver.
1806
1807 If unsure, say Y.
1808
Roger Luethi633949a2006-08-14 23:00:17 -07001809config VIA_RHINE_NAPI
1810 bool "Use Rx Polling (NAPI)"
1811 depends on VIA_RHINE
1812 help
1813 NAPI is a new driver API designed to reduce CPU and interrupt load
1814 when the driver is receiving lots of packets from the card.
1815
1816 If your estimated Rx load is 10kpps or more, or if the card will be
1817 deployed on potentially unfriendly networks (e.g. in a firewall),
1818 then say Y here.
1819
1820 See <file:Documentation/networking/NAPI_HOWTO.txt> for more
1821 information.
1822
Linus Torvalds1da177e2005-04-16 15:20:36 -07001823config LAN_SAA9730
Ralf Baechlef2b67c72006-11-29 17:10:38 +00001824 bool "Philips SAA9730 Ethernet support"
1825 depends on NET_PCI && PCI && MIPS_ATLAS
Linus Torvalds1da177e2005-04-16 15:20:36 -07001826 help
1827 The SAA9730 is a combined multimedia and peripheral controller used
1828 in thin clients, Internet access terminals, and diskless
1829 workstations.
1830 See <http://www.semiconductors.philips.com/pip/SAA9730_flyer_1>.
1831
Cesar Eduardo Barrosbf345702006-12-19 13:08:47 -08001832config SC92031
1833 tristate "Silan SC92031 PCI Fast Ethernet Adapter driver (EXPERIMENTAL)"
1834 depends on NET_PCI && PCI && EXPERIMENTAL
1835 select CRC32
1836 ---help---
1837 This is a driver for the Fast Ethernet PCI network cards based on
1838 the Silan SC92031 chip (sometimes also called Rsltek 8139D). If you
1839 have one of these, say Y here.
1840
1841 To compile this driver as a module, choose M here: the module
1842 will be called sc92031. This is recommended.
1843
Linus Torvalds1da177e2005-04-16 15:20:36 -07001844config NET_POCKET
1845 bool "Pocket and portable adapters"
Jan Engelhardtd1c0a652007-06-13 12:48:53 -07001846 depends on PARPORT
Linus Torvalds1da177e2005-04-16 15:20:36 -07001847 ---help---
1848 Cute little network (Ethernet) devices which attach to the parallel
1849 port ("pocket adapters"), commonly used with laptops. If you have
1850 one of those, say Y and read the Ethernet-HOWTO, available from
1851 <http://www.tldp.org/docs.html#howto>.
1852
1853 If you want to plug a network (or some other) card into the PCMCIA
1854 (or PC-card) slot of your laptop instead (PCMCIA is the standard for
1855 credit card size extension cards used by all modern laptops), you
1856 need the pcmcia-cs package (location contained in the file
1857 <file:Documentation/Changes>) and you can say N here.
1858
1859 Laptop users should read the Linux Laptop home page at
1860 <http://www.linux-on-laptops.com/> or
1861 Tuxmobil - Linux on Mobile Computers at <http://www.tuxmobil.org/>.
1862
1863 Note that the answer to this question doesn't directly affect the
1864 kernel: saying N will just cause the configurator to skip all
1865 the questions about this class of network devices. If you say Y, you
1866 will be asked for your specific device in the following questions.
1867
1868config ATP
1869 tristate "AT-LAN-TEC/RealTek pocket adapter support"
Grant Coady32fa2bf2005-09-10 00:14:05 +10001870 depends on NET_POCKET && PARPORT && X86
Linus Torvalds1da177e2005-04-16 15:20:36 -07001871 select CRC32
1872 ---help---
1873 This is a network (Ethernet) device which attaches to your parallel
1874 port. Read <file:drivers/net/atp.c> as well as the Ethernet-HOWTO,
1875 available from <http://www.tldp.org/docs.html#howto>, if you
1876 want to use this. If you intend to use this driver, you should have
1877 said N to the "Parallel printer support", because the two drivers
1878 don't like each other.
1879
1880 To compile this driver as a module, choose M here: the module
1881 will be called atp.
1882
1883config DE600
1884 tristate "D-Link DE600 pocket adapter support"
Grant Coady32fa2bf2005-09-10 00:14:05 +10001885 depends on NET_POCKET && PARPORT
Linus Torvalds1da177e2005-04-16 15:20:36 -07001886 ---help---
1887 This is a network (Ethernet) device which attaches to your parallel
1888 port. Read <file:Documentation/networking/DLINK.txt> as well as the
1889 Ethernet-HOWTO, available from
1890 <http://www.tldp.org/docs.html#howto>, if you want to use
1891 this. It is possible to have several devices share a single parallel
1892 port and it is safe to compile the corresponding drivers into the
1893 kernel.
1894
1895 To compile this driver as a module, choose M here: the module
1896 will be called de600.
1897
1898config DE620
1899 tristate "D-Link DE620 pocket adapter support"
Grant Coady32fa2bf2005-09-10 00:14:05 +10001900 depends on NET_POCKET && PARPORT
Linus Torvalds1da177e2005-04-16 15:20:36 -07001901 ---help---
1902 This is a network (Ethernet) device which attaches to your parallel
1903 port. Read <file:Documentation/networking/DLINK.txt> as well as the
1904 Ethernet-HOWTO, available from
1905 <http://www.tldp.org/docs.html#howto>, if you want to use
1906 this. It is possible to have several devices share a single parallel
1907 port and it is safe to compile the corresponding drivers into the
1908 kernel.
1909
1910 To compile this driver as a module, choose M here: the module
1911 will be called de620.
1912
1913config SGISEEQ
1914 tristate "SGI Seeq ethernet controller support"
Jan Engelhardtd1c0a652007-06-13 12:48:53 -07001915 depends on SGI_IP22
Linus Torvalds1da177e2005-04-16 15:20:36 -07001916 help
1917 Say Y here if you have an Seeq based Ethernet network card. This is
1918 used in many Silicon Graphics machines.
1919
1920config DECLANCE
1921 tristate "DEC LANCE ethernet controller support"
Jan Engelhardtd1c0a652007-06-13 12:48:53 -07001922 depends on MACH_DECSTATION
Linus Torvalds1da177e2005-04-16 15:20:36 -07001923 select CRC32
1924 help
1925 This driver is for the series of Ethernet controllers produced by
1926 DEC (now Compaq) based on the AMD Lance chipset, including the
1927 DEPCA series. (This chipset is better known via the NE2100 cards.)
1928
1929config 68360_ENET
1930 bool "Motorola 68360 ethernet controller"
1931 depends on M68360
1932 help
1933 Say Y here if you want to use the built-in ethernet controller of
1934 the Motorola 68360 processor.
1935
1936config FEC
Greg Ungerer2af69212005-09-12 11:18:10 +10001937 bool "FEC ethernet controller (of ColdFire CPUs)"
Greg Ungerer892b6252006-01-10 16:58:16 +10001938 depends on M523x || M527x || M5272 || M528x || M520x
Linus Torvalds1da177e2005-04-16 15:20:36 -07001939 help
1940 Say Y here if you want to use the built-in 10/100 Fast ethernet
Greg Ungerer2af69212005-09-12 11:18:10 +10001941 controller on some Motorola ColdFire processors.
1942
1943config FEC2
1944 bool "Second FEC ethernet controller (on some ColdFire CPUs)"
1945 depends on FEC
1946 help
1947 Say Y here if you want to use the second built-in 10/100 Fast
1948 ethernet controller on some Motorola ColdFire processors.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001949
1950config NE_H8300
1951 tristate "NE2000 compatible support for H8/300"
Jan Engelhardtd1c0a652007-06-13 12:48:53 -07001952 depends on H8300
Linus Torvalds1da177e2005-04-16 15:20:36 -07001953 help
1954 Say Y here if you want to use the NE2000 compatible
1955 controller on the Renesas H8/300 processor.
1956
1957source "drivers/net/fec_8xx/Kconfig"
Pantelis Antoniou48257c42005-10-28 16:25:58 -04001958source "drivers/net/fs_enet/Kconfig"
Linus Torvalds1da177e2005-04-16 15:20:36 -07001959
Jan Engelhardtd1c0a652007-06-13 12:48:53 -07001960endif # NET_ETHERNET
Linus Torvalds1da177e2005-04-16 15:20:36 -07001961
1962#
1963# Gigabit Ethernet
1964#
1965
Jan Engelhardtf30486d2007-05-10 22:52:56 -07001966menuconfig NETDEV_1000
1967 bool "Ethernet (1000 Mbit)"
Randy Dunlapcbcd2a42005-07-27 13:04:35 -07001968 depends on !UML
Jan Engelhardtf30486d2007-05-10 22:52:56 -07001969 default y
1970
1971if NETDEV_1000
Linus Torvalds1da177e2005-04-16 15:20:36 -07001972
1973config ACENIC
1974 tristate "Alteon AceNIC/3Com 3C985/NetGear GA620 Gigabit support"
1975 depends on PCI
1976 ---help---
1977 Say Y here if you have an Alteon AceNIC, 3Com 3C985(B), NetGear
1978 GA620, SGI Gigabit or Farallon PN9000-SX PCI Gigabit Ethernet
1979 adapter. The driver allows for using the Jumbo Frame option (9000
1980 bytes/frame) however it requires that your switches can handle this
1981 as well. To enable Jumbo Frames, add `mtu 9000' to your ifconfig
1982 line.
1983
1984 To compile this driver as a module, choose M here: the
1985 module will be called acenic.
1986
1987config ACENIC_OMIT_TIGON_I
1988 bool "Omit support for old Tigon I based AceNICs"
1989 depends on ACENIC
1990 help
1991 Say Y here if you only have Tigon II based AceNICs and want to leave
1992 out support for the older Tigon I based cards which are no longer
1993 being sold (ie. the original Alteon AceNIC and 3Com 3C985 (non B
1994 version)). This will reduce the size of the driver object by
1995 app. 100KB. If you are not sure whether your card is a Tigon I or a
1996 Tigon II, say N here.
1997
1998 The safe and default value for this is N.
1999
2000config DL2K
2001 tristate "D-Link DL2000-based Gigabit Ethernet support"
2002 depends on PCI
2003 select CRC32
2004 help
2005 This driver supports D-Link 2000-based gigabit ethernet cards, which
2006 includes
2007 D-Link DGE-550T Gigabit Ethernet Adapter.
2008 D-Link DL2000-based Gigabit Ethernet Adapter.
2009
2010 To compile this driver as a module, choose M here: the
2011 module will be called dl2k.
2012
2013config E1000
2014 tristate "Intel(R) PRO/1000 Gigabit Ethernet support"
2015 depends on PCI
2016 ---help---
2017 This driver supports Intel(R) PRO/1000 gigabit ethernet family of
2018 adapters. For more information on how to identify your adapter, go
2019 to the Adapter & Driver ID Guide at:
2020
2021 <http://support.intel.com/support/network/adapter/pro100/21397.htm>
2022
2023 For general information and support, go to the Intel support
2024 website at:
2025
2026 <http://support.intel.com>
2027
2028 More specific information on configuring the driver is in
2029 <file:Documentation/networking/e1000.txt>.
2030
2031 To compile this driver as a module, choose M here and read
2032 <file:Documentation/networking/net-modules.txt>. The module
2033 will be called e1000.
2034
2035config E1000_NAPI
2036 bool "Use Rx Polling (NAPI)"
2037 depends on E1000
2038 help
2039 NAPI is a new driver API designed to reduce CPU and interrupt load
2040 when the driver is receiving lots of packets from the card. It is
2041 still somewhat experimental and thus not yet enabled by default.
2042
2043 If your estimated Rx load is 10kpps or more, or if the card will be
2044 deployed on potentially unfriendly networks (e.g. in a firewall),
2045 then say Y here.
2046
2047 See <file:Documentation/networking/NAPI_HOWTO.txt> for more
2048 information.
2049
2050 If in doubt, say N.
2051
Jesse Brandeburg35ec56b2006-01-18 13:01:30 -08002052config E1000_DISABLE_PACKET_SPLIT
2053 bool "Disable Packet Split for PCI express adapters"
2054 depends on E1000
2055 help
2056 Say Y here if you want to use the legacy receive path for PCI express
James Ring9e6b4872006-03-22 00:51:11 +01002057 hardware.
Jesse Brandeburg35ec56b2006-01-18 13:01:30 -08002058
2059 If in doubt, say N.
2060
Lennert Buytenhek15d014d2005-11-11 18:23:13 +01002061source "drivers/net/ixp2000/Kconfig"
2062
Linus Torvalds1da177e2005-04-16 15:20:36 -07002063config MYRI_SBUS
2064 tristate "MyriCOM Gigabit Ethernet support"
2065 depends on SBUS
2066 help
2067 This driver supports MyriCOM Sbus gigabit Ethernet cards.
2068
2069 To compile this driver as a module, choose M here: the module
2070 will be called myri_sbus. This is recommended.
2071
2072config NS83820
Jon Mason47c51432006-02-12 11:53:04 -06002073 tristate "National Semiconductor DP83820 support"
Linus Torvalds1da177e2005-04-16 15:20:36 -07002074 depends on PCI
2075 help
2076 This is a driver for the National Semiconductor DP83820 series
2077 of gigabit ethernet MACs. Cards using this chipset include
2078 the D-Link DGE-500T, PureData's PDP8023Z-TG, SMC's SMC9462TX,
2079 SOHO-GA2000T, SOHO-GA2500T. The driver supports the use of
2080 zero copy.
2081
2082config HAMACHI
2083 tristate "Packet Engines Hamachi GNIC-II support"
2084 depends on PCI
2085 select MII
2086 help
2087 If you have a Gigabit Ethernet card of this type, say Y and read
2088 the Ethernet-HOWTO, available from
2089 <http://www.tldp.org/docs.html#howto>.
2090
2091 To compile this driver as a module, choose M here and read
2092 <file:Documentation/networking/net-modules.txt>. The module will be
2093 called hamachi.
2094
2095config YELLOWFIN
2096 tristate "Packet Engines Yellowfin Gigabit-NIC support (EXPERIMENTAL)"
2097 depends on PCI && EXPERIMENTAL
2098 select CRC32
2099 ---help---
2100 Say Y here if you have a Packet Engines G-NIC PCI Gigabit Ethernet
2101 adapter or the SYM53C885 Ethernet controller. The Gigabit adapter is
2102 used by the Beowulf Linux cluster project. See
2103 <http://cesdis.gsfc.nasa.gov/linux/drivers/yellowfin.html> for more
2104 information about this driver in particular and Beowulf in general.
2105
2106 To compile this driver as a module, choose M here: the module
2107 will be called yellowfin. This is recommended.
2108
2109config R8169
2110 tristate "Realtek 8169 gigabit ethernet support"
2111 depends on PCI
2112 select CRC32
2113 ---help---
2114 Say Y here if you have a Realtek 8169 PCI Gigabit Ethernet adapter.
2115
2116 To compile this driver as a module, choose M here: the module
2117 will be called r8169. This is recommended.
2118
2119config R8169_NAPI
2120 bool "Use Rx and Tx Polling (NAPI) (EXPERIMENTAL)"
2121 depends on R8169 && EXPERIMENTAL
2122 help
2123 NAPI is a new driver API designed to reduce CPU and interrupt load
2124 when the driver is receiving lots of packets from the card. It is
2125 still somewhat experimental and thus not yet enabled by default.
2126
2127 If your estimated Rx load is 10kpps or more, or if the card will be
2128 deployed on potentially unfriendly networks (e.g. in a firewall),
2129 then say Y here.
2130
2131 See <file:Documentation/networking/NAPI_HOWTO.txt> for more
2132 information.
2133
2134 If in doubt, say N.
2135
2136config R8169_VLAN
2137 bool "VLAN support"
2138 depends on R8169 && VLAN_8021Q
2139 ---help---
2140 Say Y here for the r8169 driver to support the functions required
2141 by the kernel 802.1Q code.
2142
2143 If in doubt, say Y.
2144
Francois Romieu890e8d02005-07-30 13:08:43 +02002145config SIS190
Francois Romieue7976372005-09-03 00:57:51 +02002146 tristate "SiS190/SiS191 gigabit ethernet support"
Adrian Bunke9985d52005-08-09 02:41:00 +02002147 depends on PCI
2148 select CRC32
2149 select MII
2150 ---help---
Francois Romieue7976372005-09-03 00:57:51 +02002151 Say Y here if you have a SiS 190 PCI Fast Ethernet adapter or
2152 a SiS 191 PCI Gigabit Ethernet adapter. Both are expected to
2153 appear in lan on motherboard designs which are based on SiS 965
2154 and SiS 966 south bridge.
Francois Romieu890e8d02005-07-30 13:08:43 +02002155
Adrian Bunke9985d52005-08-09 02:41:00 +02002156 To compile this driver as a module, choose M here: the module
2157 will be called sis190. This is recommended.
Francois Romieu890e8d02005-07-30 13:08:43 +02002158
Stephen Hemmingerbaef58b2005-05-12 20:14:36 -04002159config SKGE
Stephen Hemminger7a160c72006-02-13 15:48:08 -08002160 tristate "New SysKonnect GigaEthernet support"
2161 depends on PCI
Stephen Hemmingerbaef58b2005-05-12 20:14:36 -04002162 select CRC32
2163 ---help---
2164 This driver support the Marvell Yukon or SysKonnect SK-98xx/SK-95xx
2165 and related Gigabit Ethernet adapters. It is a new smaller driver
Stephen Hemminger46a60f22005-09-09 12:54:56 -07002166 with better performance and more complete ethtool support.
Stephen Hemmingerbaef58b2005-05-12 20:14:36 -04002167
2168 It does not support the link failover and network management
Jeff Garzike1abecc2007-07-10 12:58:33 -04002169 features available in the hardware.
Stephen Hemmingercd28ab62005-08-16 16:36:49 -07002170
Daniel Drakec6f0d752006-01-21 19:35:34 +00002171 This driver supports adapters based on the original Yukon chipset:
2172 Marvell 88E8001, Belkin F5D5005, CNet GigaCard, DLink DGE-530T,
2173 Linksys EG1032/EG1064, 3Com 3C940/3C940B, SysKonnect SK-9871/9872.
2174
2175 It does not support the newer Yukon2 chipset: a separate driver,
2176 sky2, is provided for Yukon2-based adapters.
2177
2178 To compile this driver as a module, choose M here: the module
2179 will be called skge. This is recommended.
Stephen Hemmingercd28ab62005-08-16 16:36:49 -07002180
2181config SKY2
Stephen Hemminger8a3e3bf2007-07-09 15:33:38 -07002182 tristate "SysKonnect Yukon2 support"
Stephen Hemmingerf479b322006-10-27 10:22:10 -07002183 depends on PCI
Stephen Hemmingercd28ab62005-08-16 16:36:49 -07002184 select CRC32
2185 ---help---
Matt LaPlantecab00892006-10-03 22:36:44 +02002186 This driver supports Gigabit Ethernet adapters based on the
Daniel Drakec6f0d752006-01-21 19:35:34 +00002187 Marvell Yukon 2 chipset:
2188 Marvell 88E8021/88E8022/88E8035/88E8036/88E8038/88E8050/88E8052/
2189 88E8053/88E8055/88E8061/88E8062, SysKonnect SK-9E21D/SK-9S21
2190
Stephen Hemmingerf479b322006-10-27 10:22:10 -07002191 There is companion driver for the older Marvell Yukon and
2192 Genesis based adapters: skge.
Stephen Hemmingercd28ab62005-08-16 16:36:49 -07002193
2194 To compile this driver as a module, choose M here: the module
2195 will be called sky2. This is recommended.
2196
Stephen Hemminger3cf26752007-07-09 15:33:35 -07002197config SKY2_DEBUG
2198 bool "Debugging interface"
2199 depends on SKY2 && DEBUG_FS
2200 help
2201 This option adds the ability to dump driver state for debugging.
2202 The file debugfs/sky2/ethX displays the state of the internal
2203 transmit and receive rings.
Daniel Drakec6f0d752006-01-21 19:35:34 +00002204
Stephen Hemminger3cf26752007-07-09 15:33:35 -07002205 If unsure, say N.
Linus Torvalds1da177e2005-04-16 15:20:36 -07002206
2207config VIA_VELOCITY
2208 tristate "VIA Velocity support"
Yoichi Yuasa73815532007-05-24 16:12:27 +09002209 depends on PCI
Linus Torvalds1da177e2005-04-16 15:20:36 -07002210 select CRC32
2211 select CRC_CCITT
2212 select MII
2213 help
2214 If you have a VIA "Velocity" based network card say Y here.
2215
2216 To compile this driver as a module, choose M here. The module
2217 will be called via-velocity.
2218
2219config TIGON3
2220 tristate "Broadcom Tigon3 support"
2221 depends on PCI
2222 help
2223 This driver supports Broadcom Tigon3 based gigabit Ethernet cards.
2224
2225 To compile this driver as a module, choose M here: the module
2226 will be called tg3. This is recommended.
2227
Michael Chanb6016b72005-05-26 13:03:09 -07002228config BNX2
2229 tristate "Broadcom NetXtremeII support"
2230 depends on PCI
Michael Chanfba9fe92006-06-12 22:21:25 -07002231 select CRC32
2232 select ZLIB_INFLATE
Michael Chanb6016b72005-05-26 13:03:09 -07002233 help
2234 This driver supports Broadcom NetXtremeII gigabit Ethernet cards.
2235
2236 To compile this driver as a module, choose M here: the module
2237 will be called bnx2. This is recommended.
2238
Jens Osterkampaaec0fa2005-09-05 15:19:29 -07002239config SPIDER_NET
2240 tristate "Spider Gigabit Ethernet driver"
Kou Ishizaki3342cf0e2007-02-20 16:36:14 -06002241 depends on PCI && (PPC_IBM_CELL_BLADE || PPC_CELLEB)
Christoph Hellwig9b158792006-03-15 11:30:44 +01002242 select FW_LOADER
Jens Osterkampaaec0fa2005-09-05 15:19:29 -07002243 help
2244 This driver supports the Gigabit Ethernet chips present on the
2245 Cell Processor-Based Blades from IBM.
2246
Zang Roy-r619115e123b82006-11-08 19:49:13 -08002247config TSI108_ETH
2248 tristate "Tundra TSI108 gigabit Ethernet support"
2249 depends on TSI108_BRIDGE
2250 help
2251 This driver supports Tundra TSI108 gigabit Ethernet ports.
2252 To compile this driver as a module, choose M here: the module
2253 will be called tsi108_eth.
2254
Masakazu Mokuno02c18892007-07-05 20:11:16 +09002255config GELIC_NET
2256 tristate "PS3 Gigabit Ethernet driver"
2257 depends on PPC_PS3
2258 help
2259 This driver supports the network device on the PS3 game
2260 console. This driver has built-in support for Ethernet.
2261
2262 To compile this driver as a module, choose M here: the
2263 module will be called ps3_gelic.
2264
Linus Torvalds1da177e2005-04-16 15:20:36 -07002265config GIANFAR
2266 tristate "Gianfar Ethernet"
Jon Loeligeref82a3062006-06-17 17:52:55 -05002267 depends on 85xx || 83xx || PPC_86xx
Andy Flemingbb40dcb2005-09-23 22:54:21 -04002268 select PHYLIB
Dave Jiangbf41a7c2007-04-12 10:57:06 -07002269 select CRC32
Linus Torvalds1da177e2005-04-16 15:20:36 -07002270 help
Jon Loeligeref82a3062006-06-17 17:52:55 -05002271 This driver supports the Gigabit TSEC on the MPC83xx, MPC85xx,
2272 and MPC86xx family of chips, and the FEC on the 8540.
Linus Torvalds1da177e2005-04-16 15:20:36 -07002273
2274config GFAR_NAPI
2275 bool "NAPI Support"
2276 depends on GIANFAR
2277
Li Yangce973b12006-08-14 23:00:11 -07002278config UCC_GETH
Timur Tabi7d776cb2007-03-12 15:40:27 -05002279 tristate "Freescale QE Gigabit Ethernet"
2280 depends on QUICC_ENGINE
Jan Altenberg296baae2007-06-01 00:46:29 -07002281 select PHYLIB
Li Yangce973b12006-08-14 23:00:11 -07002282 help
Timur Tabi7d776cb2007-03-12 15:40:27 -05002283 This driver supports the Gigabit Ethernet mode of the QUICC Engine,
2284 which is available on some Freescale SOCs.
Li Yangce973b12006-08-14 23:00:11 -07002285
2286config UGETH_NAPI
2287 bool "NAPI Support"
2288 depends on UCC_GETH
2289
2290config UGETH_MAGIC_PACKET
2291 bool "Magic Packet detection support"
2292 depends on UCC_GETH
2293
2294config UGETH_FILTERING
2295 bool "Mac address filtering support"
2296 depends on UCC_GETH
2297
Michael Reissd5b90492007-04-13 01:26:19 -05002298config UGETH_TX_ON_DEMAND
2299 bool "Transmit on Demand support"
Li Yangce973b12006-08-14 23:00:11 -07002300 depends on UCC_GETH
2301
Linus Torvalds1da177e2005-04-16 15:20:36 -07002302config MV643XX_ETH
2303 tristate "MV-643XX Ethernet support"
Ralf Baechle688b3d72007-07-09 16:29:16 +01002304 depends on MV64360 || MV64X60 || (PPC_MULTIPLATFORM && PPC32)
Dale Farnsworthcd6478c2006-03-03 10:01:08 -07002305 select MII
Linus Torvalds1da177e2005-04-16 15:20:36 -07002306 help
2307 This driver supports the gigabit Ethernet on the Marvell MV643XX
2308 chipset which is used in the Momenco Ocelot C and Jaguar ATX and
2309 Pegasos II, amongst other PPC and MIPS boards.
2310
Ron Mercer5a4faa872006-07-25 00:40:21 -07002311config QLA3XXX
2312 tristate "QLogic QLA3XXX Network Driver Support"
2313 depends on PCI
2314 help
2315 This driver supports QLogic ISP3XXX gigabit Ethernet cards.
2316
2317 To compile this driver as a module, choose M here: the module
2318 will be called qla3xxx.
2319
Jay Cliburnf3cc28c2007-02-08 10:42:37 -05002320config ATL1
2321 tristate "Attansic L1 Gigabit Ethernet support (EXPERIMENTAL)"
Jay Cliburna1ca14b2007-02-14 20:12:13 -06002322 depends on PCI && EXPERIMENTAL
Jay Cliburnf3cc28c2007-02-08 10:42:37 -05002323 select CRC32
2324 select MII
2325 help
2326 This driver supports the Attansic L1 gigabit ethernet adapter.
2327
2328 To compile this driver as a module, choose M here. The module
2329 will be called atl1.
2330
Jan Engelhardtf30486d2007-05-10 22:52:56 -07002331endif # NETDEV_1000
Linus Torvalds1da177e2005-04-16 15:20:36 -07002332
2333#
2334# 10 Gigabit Ethernet
2335#
2336
Jan Engelhardtf30486d2007-05-10 22:52:56 -07002337menuconfig NETDEV_10000
2338 bool "Ethernet (10000 Mbit)"
Randy Dunlapcbcd2a42005-07-27 13:04:35 -07002339 depends on !UML
Jan Engelhardtf30486d2007-05-10 22:52:56 -07002340 default y
2341
2342if NETDEV_10000
Linus Torvalds1da177e2005-04-16 15:20:36 -07002343
Christoph Lameter8199d3a2005-03-30 13:34:31 -08002344config CHELSIO_T1
2345 tristate "Chelsio 10Gb Ethernet support"
2346 depends on PCI
Stephen Hemminger57834ca2006-12-01 16:36:19 -08002347 select CRC32
Christoph Lameter8199d3a2005-03-30 13:34:31 -08002348 help
Stephen Hemmingerf1d3d382006-12-01 16:36:16 -08002349 This driver supports Chelsio gigabit and 10-gigabit
2350 Ethernet cards. More information about adapter features and
2351 performance tuning is in <file:Documentation/networking/cxgb.txt>.
Christoph Lameter8199d3a2005-03-30 13:34:31 -08002352
2353 For general information about Chelsio and our products, visit
2354 our website at <http://www.chelsio.com>.
2355
2356 For customer support, please visit our customer support page at
2357 <http://www.chelsio.com/support.htm>.
2358
2359 Please send feedback to <linux-bugs@chelsio.com>.
2360
2361 To compile this driver as a module, choose M here: the module
2362 will be called cxgb.
2363
Stephen Hemminger352c4172006-12-01 16:36:17 -08002364config CHELSIO_T1_1G
2365 bool "Chelsio gigabit Ethernet support"
2366 depends on CHELSIO_T1
2367 help
2368 Enables support for Chelsio's gigabit Ethernet PCI cards. If you
2369 are using only 10G cards say 'N' here.
2370
Stephen Hemminger7fe26a62006-12-08 11:08:33 -08002371config CHELSIO_T1_NAPI
2372 bool "Use Rx Polling (NAPI)"
2373 depends on CHELSIO_T1
2374 default y
2375 help
2376 NAPI is a driver API designed to reduce CPU and interrupt load
2377 when the driver is receiving lots of packets from the card.
2378
Divy Le Ray4d22de32007-01-18 22:04:14 -05002379config CHELSIO_T3
Divy Le Ray194c1fb2007-03-21 19:21:00 -07002380 tristate "Chelsio Communications T3 10Gb Ethernet support"
2381 depends on PCI
Divy Le Ray2e283962007-03-18 13:10:06 -07002382 select FW_LOADER
Divy Le Ray194c1fb2007-03-21 19:21:00 -07002383 help
2384 This driver supports Chelsio T3-based gigabit and 10Gb Ethernet
2385 adapters.
Divy Le Ray4d22de32007-01-18 22:04:14 -05002386
Divy Le Ray194c1fb2007-03-21 19:21:00 -07002387 For general information about Chelsio and our products, visit
2388 our website at <http://www.chelsio.com>.
Divy Le Ray4d22de32007-01-18 22:04:14 -05002389
Divy Le Ray194c1fb2007-03-21 19:21:00 -07002390 For customer support, please visit our customer support page at
2391 <http://www.chelsio.com/support.htm>.
Divy Le Ray4d22de32007-01-18 22:04:14 -05002392
Divy Le Ray194c1fb2007-03-21 19:21:00 -07002393 Please send feedback to <linux-bugs@chelsio.com>.
Divy Le Ray4d22de32007-01-18 22:04:14 -05002394
Divy Le Ray194c1fb2007-03-21 19:21:00 -07002395 To compile this driver as a module, choose M here: the module
2396 will be called cxgb3.
Divy Le Ray4d22de32007-01-18 22:04:14 -05002397
Jan-Bernd Themann7a291082006-09-13 17:44:31 +02002398config EHEA
2399 tristate "eHEA Ethernet support"
2400 depends on IBMEBUS
2401 ---help---
2402 This driver supports the IBM pSeries eHEA ethernet adapter.
2403
2404 To compile the driver as a module, choose M here. The module
2405 will be called ehea.
2406
Linus Torvalds1da177e2005-04-16 15:20:36 -07002407config IXGB
2408 tristate "Intel(R) PRO/10GbE support"
2409 depends on PCI
2410 ---help---
2411 This driver supports Intel(R) PRO/10GbE family of
2412 adapters. For more information on how to identify your adapter, go
2413 to the Adapter & Driver ID Guide at:
2414
2415 <http://support.intel.com/support/network/adapter/pro100/21397.htm>
2416
2417 For general information and support, go to the Intel support
2418 website at:
2419
2420 <http://support.intel.com>
2421
2422 More specific information on configuring the driver is in
2423 <file:Documentation/networking/ixgb.txt>.
2424
2425 To compile this driver as a module, choose M here and read
2426 <file:Documentation/networking/net-modules.txt>. The module
2427 will be called ixgb.
2428
2429config IXGB_NAPI
2430 bool "Use Rx Polling (NAPI) (EXPERIMENTAL)"
2431 depends on IXGB && EXPERIMENTAL
2432 help
2433 NAPI is a new driver API designed to reduce CPU and interrupt load
2434 when the driver is receiving lots of packets from the card. It is
2435 still somewhat experimental and thus not yet enabled by default.
2436
2437 If your estimated Rx load is 10kpps or more, or if the card will be
2438 deployed on potentially unfriendly networks (e.g. in a firewall),
2439 then say Y here.
2440
2441 See <file:Documentation/networking/NAPI_HOWTO.txt> for more
2442 information.
2443
2444 If in doubt, say N.
2445
2446config S2IO
2447 tristate "S2IO 10Gbe XFrame NIC"
2448 depends on PCI
2449 ---help---
2450 This driver supports the 10Gbe XFrame NIC of S2IO.
Akinobu Mita9eb343a2005-10-21 19:06:42 +09002451 More specific information on configuring the driver is in
2452 <file:Documentation/networking/s2io.txt>.
Linus Torvalds1da177e2005-04-16 15:20:36 -07002453
2454config S2IO_NAPI
2455 bool "Use Rx Polling (NAPI) (EXPERIMENTAL)"
2456 depends on S2IO && EXPERIMENTAL
2457 help
2458 NAPI is a new driver API designed to reduce CPU and interrupt load
2459 when the driver is receiving lots of packets from the card. It is
2460 still somewhat experimental and thus not yet enabled by default.
2461
2462 If your estimated Rx load is 10kpps or more, or if the card will be
2463 deployed on potentially unfriendly networks (e.g. in a firewall),
2464 then say Y here.
2465
2466 See <file:Documentation/networking/NAPI_HOWTO.txt> for more
2467 information.
2468
2469 If in doubt, say N.
2470
Brice Goglin0da34b62006-05-23 06:10:15 -04002471config MYRI10GE
2472 tristate "Myricom Myri-10G Ethernet support"
2473 depends on PCI
2474 select FW_LOADER
2475 select CRC32
2476 ---help---
2477 This driver supports Myricom Myri-10G Dual Protocol interface in
2478 Ethernet mode. If the eeprom on your board is not recent enough,
2479 you will need a newer firmware image.
2480 You may get this image or more information, at:
2481
Brice Goglind2794902006-09-05 21:58:50 -04002482 <http://www.myri.com/scs/download-Myri10GE.html>
Brice Goglin0da34b62006-05-23 06:10:15 -04002483
2484 To compile this driver as a module, choose M here and read
2485 <file:Documentation/networking/net-modules.txt>. The module
2486 will be called myri10ge.
2487
Amit S. Kale3d396eb2006-10-21 15:33:03 -04002488config NETXEN_NIC
2489 tristate "NetXen Multi port (1/10) Gigabit Ethernet NIC"
Randy Dunlap5ac36612006-11-16 21:39:11 -08002490 depends on PCI
Amit S. Kale3d396eb2006-10-21 15:33:03 -04002491 help
2492 This enables the support for NetXen's Gigabit Ethernet card.
2493
Olof Johanssonf5cd7872007-01-31 21:43:54 -06002494config PASEMI_MAC
2495 tristate "PA Semi 1/10Gbit MAC"
2496 depends on PPC64 && PCI
Olof Johanssonbb6e9592007-05-08 00:47:54 -05002497 select PHYLIB
Olof Johanssonf5cd7872007-01-31 21:43:54 -06002498 help
2499 This driver supports the on-chip 1/10Gbit Ethernet controller on
2500 PA Semi's PWRficient line of chips.
2501
Roland Dreier225c7b12007-05-08 18:00:38 -07002502config MLX4_CORE
2503 tristate
2504 depends on PCI
2505 default n
2506
2507config MLX4_DEBUG
2508 bool "Verbose debugging output" if (MLX4_CORE && EMBEDDED)
Paul Mundtf550d942007-05-10 12:50:28 +09002509 depends on MLX4_CORE
Roland Dreier225c7b12007-05-08 18:00:38 -07002510 default y
2511 ---help---
2512 This option causes debugging code to be compiled into the
2513 mlx4_core driver. The output can be turned on via the
2514 debug_level module parameter (which can also be set after
2515 the driver is loaded through sysfs).
2516
Jan Engelhardtf30486d2007-05-10 22:52:56 -07002517endif # NETDEV_10000
Linus Torvalds1da177e2005-04-16 15:20:36 -07002518
Linus Torvalds1da177e2005-04-16 15:20:36 -07002519source "drivers/net/tokenring/Kconfig"
2520
2521source "drivers/net/wireless/Kconfig"
2522
Jeff Garzik5b2fc492007-05-09 21:31:55 -04002523source "drivers/net/usb/Kconfig"
2524
Linus Torvalds1da177e2005-04-16 15:20:36 -07002525source "drivers/net/pcmcia/Kconfig"
Linus Torvalds1da177e2005-04-16 15:20:36 -07002526
2527source "drivers/net/wan/Kconfig"
2528
2529source "drivers/atm/Kconfig"
2530
2531source "drivers/s390/net/Kconfig"
2532
Jeremy Fitzhardinge0d160212007-07-17 18:37:06 -07002533config XEN_NETDEV_FRONTEND
2534 tristate "Xen network device frontend driver"
2535 depends on XEN
2536 default y
2537 help
2538 The network device frontend driver allows the kernel to
2539 access network devices exported exported by a virtual
2540 machine containing a physical network device driver. The
2541 frontend driver is intended for unprivileged guest domains;
2542 if you are compiling a kernel for a Xen guest, you almost
2543 certainly want to enable this.
2544
Linus Torvalds1da177e2005-04-16 15:20:36 -07002545config ISERIES_VETH
2546 tristate "iSeries Virtual Ethernet driver support"
Randy Dunlapcbcd2a42005-07-27 13:04:35 -07002547 depends on PPC_ISERIES
Linus Torvalds1da177e2005-04-16 15:20:36 -07002548
Matt Porterf89efd52005-09-09 12:10:10 -07002549config RIONET
2550 tristate "RapidIO Ethernet over messaging driver support"
Randy Dunlapa81c52a2006-11-01 21:18:58 -08002551 depends on RAPIDIO
Matt Porterf89efd52005-09-09 12:10:10 -07002552
2553config RIONET_TX_SIZE
2554 int "Number of outbound queue entries"
2555 depends on RIONET
2556 default "128"
2557
2558config RIONET_RX_SIZE
2559 int "Number of inbound queue entries"
2560 depends on RIONET
2561 default "128"
2562
Linus Torvalds1da177e2005-04-16 15:20:36 -07002563config FDDI
2564 bool "FDDI driver support"
Maciej W. Rozyckie89a2cf2007-02-05 16:28:27 -08002565 depends on (PCI || EISA || TC)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002566 help
2567 Fiber Distributed Data Interface is a high speed local area network
2568 design; essentially a replacement for high speed Ethernet. FDDI can
2569 run over copper or fiber. If you are connected to such a network and
2570 want a driver for the FDDI card in your computer, say Y here (and
2571 then also Y to the driver for your FDDI card, below). Most people
2572 will say N.
2573
2574config DEFXX
Maciej W. Rozyckie89a2cf2007-02-05 16:28:27 -08002575 tristate "Digital DEFTA/DEFEA/DEFPA adapter support"
2576 depends on FDDI && (PCI || EISA || TC)
2577 ---help---
2578 This is support for the DIGITAL series of TURBOchannel (DEFTA),
2579 EISA (DEFEA) and PCI (DEFPA) controllers which can connect you
2580 to a local FDDI network.
2581
2582 To compile this driver as a module, choose M here: the module
2583 will be called defxx. If unsure, say N.
2584
2585config DEFXX_MMIO
2586 bool
2587 prompt "Use MMIO instead of PIO" if PCI || EISA
2588 depends on DEFXX
2589 default n if PCI || EISA
2590 default y
2591 ---help---
2592 This instructs the driver to use EISA or PCI memory-mapped I/O
2593 (MMIO) as appropriate instead of programmed I/O ports (PIO).
2594 Enabling this gives an improvement in processing time in parts
2595 of the driver, but it may cause problems with EISA (DEFEA)
2596 adapters. TURBOchannel does not have the concept of I/O ports,
2597 so MMIO is always used for these (DEFTA) adapters.
2598
2599 If unsure, say N.
Linus Torvalds1da177e2005-04-16 15:20:36 -07002600
2601config SKFP
2602 tristate "SysKonnect FDDI PCI support"
2603 depends on FDDI && PCI
Akinobu Mitabc63eb92006-12-19 13:09:08 -08002604 select BITREVERSE
Linus Torvalds1da177e2005-04-16 15:20:36 -07002605 ---help---
2606 Say Y here if you have a SysKonnect FDDI PCI adapter.
2607 The following adapters are supported by this driver:
2608 - SK-5521 (SK-NET FDDI-UP)
2609 - SK-5522 (SK-NET FDDI-UP DAS)
2610 - SK-5541 (SK-NET FDDI-FP)
2611 - SK-5543 (SK-NET FDDI-LP)
2612 - SK-5544 (SK-NET FDDI-LP DAS)
2613 - SK-5821 (SK-NET FDDI-UP64)
2614 - SK-5822 (SK-NET FDDI-UP64 DAS)
2615 - SK-5841 (SK-NET FDDI-FP64)
2616 - SK-5843 (SK-NET FDDI-LP64)
2617 - SK-5844 (SK-NET FDDI-LP64 DAS)
2618 - Netelligent 100 FDDI DAS Fibre SC
2619 - Netelligent 100 FDDI SAS Fibre SC
2620 - Netelligent 100 FDDI DAS UTP
2621 - Netelligent 100 FDDI SAS UTP
2622 - Netelligent 100 FDDI SAS Fibre MIC
2623
2624 Read <file:Documentation/networking/skfp.txt> for information about
2625 the driver.
2626
2627 Questions concerning this driver can be addressed to:
2628 <linux@syskonnect.de>
2629
2630 To compile this driver as a module, choose M here: the module
2631 will be called skfp. This is recommended.
2632
2633config HIPPI
2634 bool "HIPPI driver support (EXPERIMENTAL)"
Randy Dunlapcbcd2a42005-07-27 13:04:35 -07002635 depends on EXPERIMENTAL && INET && PCI
Linus Torvalds1da177e2005-04-16 15:20:36 -07002636 help
2637 HIgh Performance Parallel Interface (HIPPI) is a 800Mbit/sec and
2638 1600Mbit/sec dual-simplex switched or point-to-point network. HIPPI
2639 can run over copper (25m) or fiber (300m on multi-mode or 10km on
2640 single-mode). HIPPI networks are commonly used for clusters and to
2641 connect to super computers. If you are connected to a HIPPI network
2642 and have a HIPPI network card in your computer that you want to use
2643 under Linux, say Y here (you must also remember to enable the driver
2644 for your HIPPI card below). Most people will say N here.
2645
2646config ROADRUNNER
2647 tristate "Essential RoadRunner HIPPI PCI adapter support (EXPERIMENTAL)"
2648 depends on HIPPI && PCI
2649 help
2650 Say Y here if this is your PCI HIPPI network card.
2651
2652 To compile this driver as a module, choose M here: the module
2653 will be called rrunner. If unsure, say N.
2654
2655config ROADRUNNER_LARGE_RINGS
2656 bool "Use large TX/RX rings (EXPERIMENTAL)"
2657 depends on ROADRUNNER
2658 help
2659 If you say Y here, the RoadRunner driver will preallocate up to 2 MB
2660 of additional memory to allow for fastest operation, both for
2661 transmitting and receiving. This memory cannot be used by any other
2662 kernel code or by user space programs. Say Y here only if you have
2663 the memory.
2664
2665config PLIP
2666 tristate "PLIP (parallel port) support"
Randy Dunlapcbcd2a42005-07-27 13:04:35 -07002667 depends on PARPORT
Linus Torvalds1da177e2005-04-16 15:20:36 -07002668 ---help---
2669 PLIP (Parallel Line Internet Protocol) is used to create a
2670 reasonably fast mini network consisting of two (or, rarely, more)
2671 local machines. A PLIP link from a Linux box is a popular means to
2672 install a Linux distribution on a machine which doesn't have a
2673 CD-ROM drive (a minimal system has to be transferred with floppies
2674 first). The kernels on both machines need to have this PLIP option
2675 enabled for this to work.
2676
2677 The PLIP driver has two modes, mode 0 and mode 1. The parallel
2678 ports (the connectors at the computers with 25 holes) are connected
2679 with "null printer" or "Turbo Laplink" cables which can transmit 4
2680 bits at a time (mode 0) or with special PLIP cables, to be used on
2681 bidirectional parallel ports only, which can transmit 8 bits at a
2682 time (mode 1); you can find the wiring of these cables in
2683 <file:Documentation/networking/PLIP.txt>. The cables can be up to
2684 15m long. Mode 0 works also if one of the machines runs DOS/Windows
2685 and has some PLIP software installed, e.g. the Crynwr PLIP packet
2686 driver (<http://oak.oakland.edu/simtel.net/msdos/pktdrvr-pre.html>)
2687 and winsock or NCSA's telnet.
2688
2689 If you want to use PLIP, say Y and read the PLIP mini-HOWTO as well
2690 as the NET-3-HOWTO, both available from
2691 <http://www.tldp.org/docs.html#howto>. Note that the PLIP
2692 protocol has been changed and this PLIP driver won't work together
2693 with the PLIP support in Linux versions 1.0.x. This option enlarges
2694 your kernel by about 8 KB.
2695
2696 To compile this driver as a module, choose M here and read
2697 <file:Documentation/networking/net-modules.txt>. The module will be
2698 called plip. If unsure, say Y or M, in case you buy a laptop
2699 later.
2700
2701config PPP
2702 tristate "PPP (point-to-point protocol) support"
Ralf Baechleb6e37e52006-07-14 12:15:40 +01002703 select SLHC
Linus Torvalds1da177e2005-04-16 15:20:36 -07002704 ---help---
2705 PPP (Point to Point Protocol) is a newer and better SLIP. It serves
2706 the same purpose: sending Internet traffic over telephone (and other
2707 serial) lines. Ask your access provider if they support it, because
2708 otherwise you can't use it; most Internet access providers these
2709 days support PPP rather than SLIP.
2710
2711 To use PPP, you need an additional program called pppd as described
2712 in the PPP-HOWTO, available at
2713 <http://www.tldp.org/docs.html#howto>. Make sure that you have
2714 the version of pppd recommended in <file:Documentation/Changes>.
2715 The PPP option enlarges your kernel by about 16 KB.
2716
2717 There are actually two versions of PPP: the traditional PPP for
2718 asynchronous lines, such as regular analog phone lines, and
2719 synchronous PPP which can be used over digital ISDN lines for
2720 example. If you want to use PPP over phone lines or other
2721 asynchronous serial lines, you need to say Y (or M) here and also to
2722 the next option, "PPP support for async serial ports". For PPP over
2723 synchronous lines, you should say Y (or M) here and to "Support
2724 synchronous PPP", below.
2725
2726 If you said Y to "Version information on all symbols" above, then
2727 you cannot compile the PPP driver into the kernel; you can then only
2728 compile it as a module. To compile this driver as a module, choose M
2729 here and read <file:Documentation/networking/net-modules.txt>.
2730 The module will be called ppp_generic.
2731
2732config PPP_MULTILINK
2733 bool "PPP multilink support (EXPERIMENTAL)"
2734 depends on PPP && EXPERIMENTAL
2735 help
2736 PPP multilink is a protocol (defined in RFC 1990) which allows you
2737 to combine several (logical or physical) lines into one logical PPP
2738 connection, so that you can utilize your full bandwidth.
2739
2740 This has to be supported at the other end as well and you need a
2741 version of the pppd daemon which understands the multilink protocol.
2742
2743 If unsure, say N.
2744
2745config PPP_FILTER
2746 bool "PPP filtering"
2747 depends on PPP
2748 help
2749 Say Y here if you want to be able to filter the packets passing over
2750 PPP interfaces. This allows you to control which packets count as
2751 activity (i.e. which packets will reset the idle timer or bring up
Jon Mason47c51432006-02-12 11:53:04 -06002752 a demand-dialed link) and which packets are to be dropped entirely.
Linus Torvalds1da177e2005-04-16 15:20:36 -07002753 You need to say Y here if you wish to use the pass-filter and
2754 active-filter options to pppd.
2755
2756 If unsure, say N.
2757
2758config PPP_ASYNC
2759 tristate "PPP support for async serial ports"
2760 depends on PPP
2761 select CRC_CCITT
2762 ---help---
2763 Say Y (or M) here if you want to be able to use PPP over standard
2764 asynchronous serial ports, such as COM1 or COM2 on a PC. If you use
2765 a modem (not a synchronous or ISDN modem) to contact your ISP, you
2766 need this option.
2767
2768 To compile this driver as a module, choose M here.
2769
2770 If unsure, say Y.
2771
2772config PPP_SYNC_TTY
2773 tristate "PPP support for sync tty ports"
2774 depends on PPP
2775 help
2776 Say Y (or M) here if you want to be able to use PPP over synchronous
2777 (HDLC) tty devices, such as the SyncLink adapter. These devices
2778 are often used for high-speed leased lines like T1/E1.
2779
2780 To compile this driver as a module, choose M here.
2781
2782config PPP_DEFLATE
2783 tristate "PPP Deflate compression"
2784 depends on PPP
2785 select ZLIB_INFLATE
2786 select ZLIB_DEFLATE
2787 ---help---
2788 Support for the Deflate compression method for PPP, which uses the
2789 Deflate algorithm (the same algorithm that gzip uses) to compress
2790 each PPP packet before it is sent over the wire. The machine at the
2791 other end of the PPP link (usually your ISP) has to support the
2792 Deflate compression method as well for this to be useful. Even if
2793 they don't support it, it is safe to say Y here.
2794
2795 To compile this driver as a module, choose M here.
2796
2797config PPP_BSDCOMP
2798 tristate "PPP BSD-Compress compression"
2799 depends on PPP
2800 ---help---
2801 Support for the BSD-Compress compression method for PPP, which uses
2802 the LZW compression method to compress each PPP packet before it is
2803 sent over the wire. The machine at the other end of the PPP link
2804 (usually your ISP) has to support the BSD-Compress compression
2805 method as well for this to be useful. Even if they don't support it,
2806 it is safe to say Y here.
2807
2808 The PPP Deflate compression method ("PPP Deflate compression",
2809 above) is preferable to BSD-Compress, because it compresses better
2810 and is patent-free.
2811
2812 Note that the BSD compression code will always be compiled as a
2813 module; it is called bsd_comp and will show up in the directory
2814 modules once you have said "make modules". If unsure, say N.
2815
Matt Domschb3f9b922005-11-08 09:40:47 -08002816config PPP_MPPE
2817 tristate "PPP MPPE compression (encryption) (EXPERIMENTAL)"
2818 depends on PPP && EXPERIMENTAL
2819 select CRYPTO
2820 select CRYPTO_SHA1
2821 select CRYPTO_ARC4
Patrick McHardybcbaecb2006-10-25 16:49:36 +10002822 select CRYPTO_ECB
Matt Domschb3f9b922005-11-08 09:40:47 -08002823 ---help---
2824 Support for the MPPE Encryption protocol, as employed by the
2825 Microsoft Point-to-Point Tunneling Protocol.
2826
2827 See http://pptpclient.sourceforge.net/ for information on
2828 configuring PPTP clients and servers to utilize this method.
2829
Linus Torvalds1da177e2005-04-16 15:20:36 -07002830config PPPOE
2831 tristate "PPP over Ethernet (EXPERIMENTAL)"
2832 depends on EXPERIMENTAL && PPP
2833 help
2834 Support for PPP over Ethernet.
2835
2836 This driver requires the latest version of pppd from the CVS
2837 repository at cvs.samba.org. Alternatively, see the
2838 RoaringPenguin package (<http://www.roaringpenguin.com/pppoe>)
2839 which contains instruction on how to use this driver (under
2840 the heading "Kernel mode PPPoE").
2841
2842config PPPOATM
2843 tristate "PPP over ATM"
2844 depends on ATM && PPP
2845 help
2846 Support PPP (Point to Point Protocol) encapsulated in ATM frames.
2847 This implementation does not yet comply with section 8 of RFC2364,
2848 which can lead to bad results if the ATM peer loses state and
2849 changes its encapsulation unilaterally.
2850
James Chapman3557baa2007-06-27 15:49:24 -07002851config PPPOL2TP
2852 tristate "PPP over L2TP (EXPERIMENTAL)"
2853 depends on EXPERIMENTAL && PPP
2854 help
2855 Support for PPP-over-L2TP socket family. L2TP is a protocol
2856 used by ISPs and enterprises to tunnel PPP traffic over UDP
2857 tunnels. L2TP is replacing PPTP for VPN uses.
2858
2859 This kernel component handles only L2TP data packets: a
2860 userland daemon handles L2TP the control protocol (tunnel
2861 and session setup). One such daemon is OpenL2TP
2862 (http://openl2tp.sourceforge.net/).
2863
Linus Torvalds1da177e2005-04-16 15:20:36 -07002864config SLIP
2865 tristate "SLIP (serial line) support"
Linus Torvalds1da177e2005-04-16 15:20:36 -07002866 ---help---
2867 Say Y if you intend to use SLIP or CSLIP (compressed SLIP) to
2868 connect to your Internet service provider or to connect to some
2869 other local Unix box or if you want to configure your Linux box as a
2870 Slip/CSlip server for other people to dial in. SLIP (Serial Line
2871 Internet Protocol) is a protocol used to send Internet traffic over
2872 serial connections such as telephone lines or null modem cables;
2873 nowadays, the protocol PPP is more commonly used for this same
2874 purpose.
2875
2876 Normally, your access provider has to support SLIP in order for you
2877 to be able to use it, but there is now a SLIP emulator called SLiRP
2878 around (available from
2879 <ftp://ibiblio.org/pub/Linux/system/network/serial/>) which
2880 allows you to use SLIP over a regular dial up shell connection. If
2881 you plan to use SLiRP, make sure to say Y to CSLIP, below. The
2882 NET-3-HOWTO, available from
2883 <http://www.tldp.org/docs.html#howto>, explains how to
2884 configure SLIP. Note that you don't need this option if you just
2885 want to run term (term is a program which gives you almost full
2886 Internet connectivity if you have a regular dial up shell account on
2887 some Internet connected Unix computer. Read
2888 <http://www.bart.nl/~patrickr/term-howto/Term-HOWTO.html>). SLIP
2889 support will enlarge your kernel by about 4 KB. If unsure, say N.
2890
2891 To compile this driver as a module, choose M here and read
2892 <file:Documentation/networking/net-modules.txt>. The module will be
2893 called slip.
2894
2895config SLIP_COMPRESSED
2896 bool "CSLIP compressed headers"
2897 depends on SLIP
Ralf Baechleb6e37e52006-07-14 12:15:40 +01002898 select SLHC
Linus Torvalds1da177e2005-04-16 15:20:36 -07002899 ---help---
2900 This protocol is faster than SLIP because it uses compression on the
2901 TCP/IP headers (not on the data itself), but it has to be supported
2902 on both ends. Ask your access provider if you are not sure and
2903 answer Y, just in case. You will still be able to use plain SLIP. If
2904 you plan to use SLiRP, the SLIP emulator (available from
2905 <ftp://ibiblio.org/pub/Linux/system/network/serial/>) which
2906 allows you to use SLIP over a regular dial up shell connection, you
2907 definitely want to say Y here. The NET-3-HOWTO, available from
2908 <http://www.tldp.org/docs.html#howto>, explains how to configure
2909 CSLIP. This won't enlarge your kernel.
2910
Ralf Baechleb6e37e52006-07-14 12:15:40 +01002911config SLHC
2912 tristate
2913 help
2914 This option enables Van Jacobsen serial line header compression
2915 routines.
2916
Linus Torvalds1da177e2005-04-16 15:20:36 -07002917config SLIP_SMART
2918 bool "Keepalive and linefill"
2919 depends on SLIP
2920 help
2921 Adds additional capabilities to the SLIP driver to support the
2922 RELCOM line fill and keepalive monitoring. Ideal on poor quality
2923 analogue lines.
2924
2925config SLIP_MODE_SLIP6
2926 bool "Six bit SLIP encapsulation"
2927 depends on SLIP
2928 help
2929 Just occasionally you may need to run IP over hostile serial
2930 networks that don't pass all control characters or are only seven
2931 bit. Saying Y here adds an extra mode you can use with SLIP:
2932 "slip6". In this mode, SLIP will only send normal ASCII symbols over
2933 the serial device. Naturally, this has to be supported at the other
2934 end of the link as well. It's good enough, for example, to run IP
2935 over the async ports of a Camtec JNT Pad. If unsure, say N.
2936
2937config NET_FC
2938 bool "Fibre Channel driver support"
Randy Dunlapcbcd2a42005-07-27 13:04:35 -07002939 depends on SCSI && PCI
Linus Torvalds1da177e2005-04-16 15:20:36 -07002940 help
2941 Fibre Channel is a high speed serial protocol mainly used to connect
2942 large storage devices to the computer; it is compatible with and
2943 intended to replace SCSI.
2944
2945 If you intend to use Fibre Channel, you need to have a Fibre channel
2946 adaptor card in your computer; say Y here and to the driver for your
2947 adaptor below. You also should have said Y to "SCSI support" and
2948 "SCSI generic support".
2949
2950config SHAPER
Jiri Slaby3b6a7922006-11-06 14:34:48 -08002951 tristate "Traffic Shaper (OBSOLETE)"
Randy Dunlapcbcd2a42005-07-27 13:04:35 -07002952 depends on EXPERIMENTAL
Linus Torvalds1da177e2005-04-16 15:20:36 -07002953 ---help---
2954 The traffic shaper is a virtual network device that allows you to
2955 limit the rate of outgoing data flow over some other network device.
2956 The traffic that you want to slow down can then be routed through
2957 these virtual devices. See
2958 <file:Documentation/networking/shaper.txt> for more information.
2959
Jiri Slaby3b6a7922006-11-06 14:34:48 -08002960 An alternative to this traffic shaper are traffic schedulers which
2961 you'll get if you say Y to "QoS and/or fair queuing" in
2962 "Networking options".
Linus Torvalds1da177e2005-04-16 15:20:36 -07002963
Linus Torvalds1da177e2005-04-16 15:20:36 -07002964 To compile this driver as a module, choose M here: the module
2965 will be called shaper. If unsure, say N.
2966
2967config NETCONSOLE
2968 tristate "Network console logging support (EXPERIMENTAL)"
Matt Mackall5e43db72005-07-27 15:24:42 -07002969 depends on EXPERIMENTAL
Linus Torvalds1da177e2005-04-16 15:20:36 -07002970 ---help---
2971 If you want to log kernel messages over the network, enable this.
2972 See <file:Documentation/networking/netconsole.txt> for details.
2973
Randy Dunlap54208992005-07-18 13:45:12 -07002974config NETPOLL
2975 def_bool NETCONSOLE
2976
Randy Dunlap54208992005-07-18 13:45:12 -07002977config NETPOLL_TRAP
2978 bool "Netpoll traffic trapping"
2979 default n
2980 depends on NETPOLL
2981
2982config NET_POLL_CONTROLLER
2983 def_bool NETPOLL
2984
Jan Engelhardtd1c0a652007-06-13 12:48:53 -07002985endif # NETDEVICES