ipv4: cleanup: remove unnecessary include.
[GitHub/mt8127/android_kernel_alcatel_ttab.git] / drivers / net / Kconfig
CommitLineData
1da177e4
LT
1#
2# Network device configuration
3#
4
d1c0a65f 5menuconfig NETDEVICES
ce2d2aed 6 default y if UML
e0009820 7 depends on NET
1da177e4
LT
8 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
1618cb0c
RD
24# All the following symbols are dependent on NETDEVICES - do not repeat
25# that for each of the symbols.
26if NETDEVICES
cbcd2a4c 27
d44c3a2e
SH
28config COMPAT_NET_DEV_OPS
29 default y
eb39c57f 30 bool "Enable older network device API compatibility"
d44c3a2e 31 ---help---
eb39c57f 32 This option enables kernel compatibility with older network devices
d44c3a2e
SH
33 that do not use net_device_ops interface.
34
35 If unsure, say Y.
36
253af423
JHS
37config IFB
38 tristate "Intermediate Functional Block support"
39 depends on NET_CLS_ACT
40 ---help---
3cb2fccc 41 This is an intermediate driver that allows sharing of
253af423
JHS
42 resources.
43 To compile this driver as a module, choose M here: the module
44 will be called ifb. If you want to use more than one ifb
45 device at a time, you need to compile this driver as a module.
46 Instead of 'ifb', the devices will then be called 'ifb0',
47 'ifb1' etc.
48 Look at the iproute2 documentation directory for usage etc
49
1da177e4
LT
50config DUMMY
51 tristate "Dummy net driver support"
1da177e4
LT
52 ---help---
53 This is essentially a bit-bucket device (i.e. traffic you send to
54 this device is consigned into oblivion) with a configurable IP
55 address. It is most commonly used in order to make your currently
56 inactive SLIP address seem like a real address for local programs.
57 If you use SLIP or PPP, you might want to say Y here. Since this
58 thing often comes in handy, the default is Y. It won't enlarge your
59 kernel either. What a deal. Read about it in the Network
60 Administrator's Guide, available from
61 <http://www.tldp.org/docs.html#guide>.
62
63 To compile this driver as a module, choose M here: the module
64 will be called dummy. If you want to use more than one dummy
65 device at a time, you need to compile this driver as a module.
66 Instead of 'dummy', the devices will then be called 'dummy0',
67 'dummy1' etc.
68
69config BONDING
70 tristate "Bonding driver support"
1da177e4 71 depends on INET
305d552a 72 depends on IPV6 || IPV6=n
1da177e4
LT
73 ---help---
74 Say 'Y' or 'M' if you wish to be able to 'bond' multiple Ethernet
75 Channels together. This is called 'Etherchannel' by Cisco,
76 'Trunking' by Sun, 802.3ad by the IEEE, and 'Bonding' in Linux.
77
78 The driver supports multiple bonding modes to allow for both high
47c51431 79 performance and high availability operation.
1da177e4
LT
80
81 Refer to <file:Documentation/networking/bonding.txt> for more
82 information.
83
84 To compile this driver as a module, choose M here: the module
85 will be called bonding.
86
b863ceb7
PM
87config MACVLAN
88 tristate "MAC-VLAN support (EXPERIMENTAL)"
89 depends on EXPERIMENTAL
90 ---help---
91 This allows one to create virtual interfaces that map packets to
92 or from specific MAC addresses to a particular interface.
93
3dbf8d56
PM
94 Macvlan devices can be added using the "ip" command from the
95 iproute2 package starting with the iproute2-2.6.23 release:
96
97 "ip link add link <real dev> [ address MAC ] [ NAME ] type macvlan"
98
b863ceb7
PM
99 To compile this driver as a module, choose M here: the module
100 will be called macvlan.
101
1da177e4
LT
102config EQUALIZER
103 tristate "EQL (serial line load balancing) support"
1da177e4
LT
104 ---help---
105 If you have two serial connections to some other computer (this
106 usually requires two modems and two telephone lines) and you use
107 SLIP (the protocol for sending Internet traffic over telephone
108 lines) or PPP (a better SLIP) on them, you can make them behave like
109 one double speed connection using this driver. Naturally, this has
110 to be supported at the other end as well, either with a similar EQL
111 Linux driver or with a Livingston Portmaster 2e.
112
113 Say Y if you want this and read
114 <file:Documentation/networking/eql.txt>. You may also want to read
115 section 6.2 of the NET-3-HOWTO, available from
116 <http://www.tldp.org/docs.html#howto>.
117
118 To compile this driver as a module, choose M here: the module
119 will be called eql. If unsure, say N.
120
121config TUN
122 tristate "Universal TUN/TAP device driver support"
1da177e4
LT
123 select CRC32
124 ---help---
125 TUN/TAP provides packet reception and transmission for user space
126 programs. It can be viewed as a simple Point-to-Point or Ethernet
127 device, which instead of receiving packets from a physical media,
128 receives them from user space program and instead of sending packets
129 via physical media writes them to the user space program.
130
131 When a program opens /dev/net/tun, driver creates and registers
132 corresponding net device tunX or tapX. After a program closed above
133 devices, driver will automatically delete tunXX or tapXX device and
134 all routes corresponding to it.
135
136 Please read <file:Documentation/networking/tuntap.txt> for more
137 information.
138
139 To compile this driver as a module, choose M here: the module
140 will be called tun.
141
142 If you don't know what to use this for, you don't need it.
143
e314dbdc 144config VETH
6a9a0250 145 tristate "Virtual ethernet pair device"
e314dbdc 146 ---help---
6a9a0250
RR
147 This device is a local ethernet tunnel. Devices are created in pairs.
148 When one end receives the packet it appears on its pair and vice
149 versa.
e314dbdc 150
1da177e4
LT
151config NET_SB1000
152 tristate "General Instruments Surfboard 1000"
cbcd2a4c 153 depends on PNP
1da177e4
LT
154 ---help---
155 This is a driver for the General Instrument (also known as
156 NextLevel) SURFboard 1000 internal
157 cable modem. This is an ISA card which is used by a number of cable
158 TV companies to provide cable modem access. It's a one-way
159 downstream-only cable modem, meaning that your upstream net link is
160 provided by your regular phone modem.
161
162 At present this driver only compiles as a module, so say M here if
163 you have this card. The module will be called sb1000. Then read
164 <file:Documentation/networking/README.sb1000> for information on how
165 to use this module, as it needs special ppp scripts for establishing
166 a connection. Further documentation and the necessary scripts can be
167 found at:
168
169 <http://www.jacksonville.net/~fventuri/>
170 <http://home.adelphia.net/~siglercm/sb1000.html>
171 <http://linuxpower.cx/~cable/>
172
173 If you don't have this card, of course say N.
174
f65fd8fb 175source "drivers/net/arcnet/Kconfig"
1da177e4 176
00db8189
AF
177source "drivers/net/phy/Kconfig"
178
1da177e4
LT
179#
180# Ethernet
181#
182
d1c0a65f 183menuconfig NET_ETHERNET
1da177e4 184 bool "Ethernet (10 or 100Mbit)"
d1c0a65f 185 depends on !UML
1da177e4
LT
186 ---help---
187 Ethernet (also called IEEE 802.3 or ISO 8802-2) is the most common
188 type of Local Area Network (LAN) in universities and companies.
189
190 Common varieties of Ethernet are: 10BASE-2 or Thinnet (10 Mbps over
191 coaxial cable, linking computers in a chain), 10BASE-T or twisted
192 pair (10 Mbps over twisted pair cable, linking computers to central
193 hubs), 10BASE-F (10 Mbps over optical fiber links, using hubs),
194 100BASE-TX (100 Mbps over two twisted pair cables, using hubs),
195 100BASE-T4 (100 Mbps over 4 standard voice-grade twisted pair
196 cables, using hubs), 100BASE-FX (100 Mbps over optical fiber links)
197 [the 100BASE varieties are also known as Fast Ethernet], and Gigabit
198 Ethernet (1 Gbps over optical fiber or short copper links).
199
200 If your Linux machine will be connected to an Ethernet and you have
201 an Ethernet network interface card (NIC) installed in your computer,
202 say Y here and read the Ethernet-HOWTO, available from
203 <http://www.tldp.org/docs.html#howto>. You will then also have
204 to say Y to the driver for your particular NIC.
205
206 Note that the answer to this question won't directly affect the
207 kernel: saying N will just cause the configurator to skip all
208 the questions about Ethernet network cards. If unsure, say N.
209
d1c0a65f
JE
210if NET_ETHERNET
211
1da177e4
LT
212config MII
213 tristate "Generic Media Independent Interface device support"
1da177e4
LT
214 help
215 Most ethernet controllers have MII transceiver either as an external
216 or internal device. It is safe to say Y or M here even if your
217 ethernet card lack MII.
218
89e5785f
HS
219config MACB
220 tristate "Atmel MACB support"
61352667 221 depends on AVR32 || ARCH_AT91SAM9260 || ARCH_AT91SAM9263 || ARCH_AT91SAM9G20 || ARCH_AT91CAP9
6c36a707 222 select PHYLIB
89e5785f
HS
223 help
224 The Atmel MACB ethernet interface is found on many AT32 and AT91
225 parts. Say Y to include support for the MACB chip.
226
227 To compile this driver as a module, choose M here: the module
228 will be called macb.
229
1da177e4
LT
230source "drivers/net/arm/Kconfig"
231
825a2ff1
BD
232config AX88796
233 tristate "ASIX AX88796 NE2000 clone support"
8687991a 234 depends on ARM || MIPS || SUPERH
825a2ff1
BD
235 select CRC32
236 select MII
237 help
238 AX88796 driver, using platform bus to provide
239 chip detection and resources
240
89e536a1
MD
241config AX88796_93CX6
242 bool "ASIX AX88796 external 93CX6 eeprom support"
243 depends on AX88796
244 select EEPROM_93CX6
245 help
246 Select this if your platform comes with an external 93CX6 eeprom.
247
1da177e4
LT
248config MACE
249 tristate "MACE (Power Mac ethernet) support"
d1c0a65f 250 depends on PPC_PMAC && PPC32
1da177e4
LT
251 select CRC32
252 help
253 Power Macintoshes and clones with Ethernet built-in on the
254 motherboard will usually use a MACE (Medium Access Control for
255 Ethernet) interface. Say Y to include support for the MACE chip.
256
257 To compile this driver as a module, choose M here: the module
258 will be called mace.
259
260config MACE_AAUI_PORT
261 bool "Use AAUI port instead of TP by default"
262 depends on MACE
263 help
264 Some Apple machines (notably the Apple Network Server) which use the
265 MACE ethernet chip have an Apple AUI port (small 15-pin connector),
266 instead of an 8-pin RJ45 connector for twisted-pair ethernet. Say
267 Y here if you have such a machine. If unsure, say N.
268 The driver will default to AAUI on ANS anyway, and if you use it as
269 a module, you can provide the port_aaui=0|1 to force the driver.
270
271config BMAC
272 tristate "BMAC (G3 ethernet) support"
d1c0a65f 273 depends on PPC_PMAC && PPC32
1da177e4
LT
274 select CRC32
275 help
276 Say Y for support of BMAC Ethernet interfaces. These are used on G3
277 computers.
278
279 To compile this driver as a module, choose M here: the module
280 will be called bmac.
281
1da177e4
LT
282config ARIADNE
283 tristate "Ariadne support"
d1c0a65f 284 depends on ZORRO
1da177e4
LT
285 help
286 If you have a Village Tronic Ariadne Ethernet adapter, say Y.
287 Otherwise, say N.
288
289 To compile this driver as a module, choose M here: the module
290 will be called ariadne.
291
292config A2065
293 tristate "A2065 support"
d1c0a65f 294 depends on ZORRO
1da177e4
LT
295 select CRC32
296 help
297 If you have a Commodore A2065 Ethernet adapter, say Y. Otherwise,
298 say N.
299
300 To compile this driver as a module, choose M here: the module
301 will be called a2065.
302
303config HYDRA
304 tristate "Hydra support"
d1c0a65f 305 depends on ZORRO
1da177e4
LT
306 select CRC32
307 help
308 If you have a Hydra Ethernet adapter, say Y. Otherwise, say N.
309
310 To compile this driver as a module, choose M here: the module
311 will be called hydra.
312
313config ZORRO8390
314 tristate "Zorro NS8390-based Ethernet support"
d1c0a65f 315 depends on ZORRO
1da177e4
LT
316 select CRC32
317 help
318 This driver is for Zorro Ethernet cards using an NS8390-compatible
319 chipset, like the Village Tronic Ariadne II and the Individual
320 Computers X-Surf Ethernet cards. If you have such a card, say Y.
321 Otherwise, say N.
322
323 To compile this driver as a module, choose M here: the module
324 will be called zorro8390.
325
326config APNE
327 tristate "PCMCIA NE2000 support"
d1c0a65f 328 depends on AMIGA_PCMCIA
1da177e4
LT
329 select CRC32
330 help
331 If you have a PCMCIA NE2000 compatible adapter, say Y. Otherwise,
332 say N.
333
334 To compile this driver as a module, choose M here: the module
335 will be called apne.
336
1da177e4
LT
337config MAC8390
338 bool "Macintosh NS 8390 based ethernet cards"
d1c0a65f 339 depends on MAC
1da177e4
LT
340 select CRC32
341 help
342 If you want to include a driver to support Nubus or LC-PDS
343 Ethernet cards using an NS8390 chipset or its equivalent, say Y
344 and read the Ethernet-HOWTO, available from
345 <http://www.tldp.org/docs.html#howto>.
346
347config MAC89x0
348 tristate "Macintosh CS89x0 based ethernet cards"
d1c0a65f 349 depends on MAC
1da177e4
LT
350 ---help---
351 Support for CS89x0 chipset based Ethernet cards. If you have a
352 Nubus or LC-PDS network (Ethernet) card of this type, say Y and
353 read the Ethernet-HOWTO, available from
354 <http://www.tldp.org/docs.html#howto>.
355
57ce45dd 356 To compile this driver as a module, choose M here. This module will
1da177e4
LT
357 be called mac89x0.
358
359config MACSONIC
360 tristate "Macintosh SONIC based ethernet (onboard, NuBus, LC, CS)"
d1c0a65f 361 depends on MAC
1da177e4
LT
362 ---help---
363 Support for NatSemi SONIC based Ethernet devices. This includes
364 the onboard Ethernet in many Quadras as well as some LC-PDS,
365 a few Nubus and all known Comm Slot Ethernet cards. If you have
366 one of these say Y and read the Ethernet-HOWTO, available from
367 <http://www.tldp.org/docs.html#howto>.
368
57ce45dd 369 To compile this driver as a module, choose M here. This module will
1da177e4
LT
370 be called macsonic.
371
372config MACMACE
8b6aaab8 373 bool "Macintosh (AV) onboard MACE ethernet"
d1c0a65f 374 depends on MAC
1da177e4
LT
375 select CRC32
376 help
377 Support for the onboard AMD 79C940 MACE Ethernet controller used in
378 the 660AV and 840AV Macintosh. If you have one of these Macintoshes
379 say Y and read the Ethernet-HOWTO, available from
380 <http://www.tldp.org/docs.html#howto>.
381
382config MVME147_NET
383 tristate "MVME147 (Lance) Ethernet support"
d1c0a65f 384 depends on MVME147
1da177e4
LT
385 select CRC32
386 help
387 Support for the on-board Ethernet interface on the Motorola MVME147
388 single-board computer. Say Y here to include the
389 driver for this chip in your kernel.
390 To compile this driver as a module, choose M here.
391
392config MVME16x_NET
393 tristate "MVME16x Ethernet support"
d1c0a65f 394 depends on MVME16x
1da177e4
LT
395 help
396 This is the driver for the Ethernet interface on the Motorola
397 MVME162, 166, 167, 172 and 177 boards. Say Y here to include the
398 driver for this chip in your kernel.
399 To compile this driver as a module, choose M here.
400
401config BVME6000_NET
402 tristate "BVME6000 Ethernet support"
d1c0a65f 403 depends on BVME6000
1da177e4
LT
404 help
405 This is the driver for the Ethernet interface on BVME4000 and
406 BVME6000 VME boards. Say Y here to include the driver for this chip
407 in your kernel.
408 To compile this driver as a module, choose M here.
409
410config ATARILANCE
411 tristate "Atari Lance support"
d1c0a65f 412 depends on ATARI
1da177e4
LT
413 help
414 Say Y to include support for several Atari Ethernet adapters based
415 on the AMD Lance chipset: RieblCard (with or without battery), or
416 PAMCard VME (also the version by Rhotron, with different addresses).
417
1da177e4
LT
418config SUN3LANCE
419 tristate "Sun3/Sun3x on-board LANCE support"
d1c0a65f 420 depends on SUN3 || SUN3X
1da177e4
LT
421 help
422 Most Sun3 and Sun3x motherboards (including the 3/50, 3/60 and 3/80)
423 featured an AMD Lance 10Mbit Ethernet controller on board; say Y
424 here to compile in the Linux driver for this and enable Ethernet.
425 General Linux information on the Sun 3 and 3x series (now
426 discontinued) is at
427 <http://www.angelfire.com/ca2/tech68k/sun3.html>.
428
429 If you're not building a kernel for a Sun 3, say N.
430
431config SUN3_82586
9a482206 432 bool "Sun3 on-board Intel 82586 support"
d1c0a65f 433 depends on SUN3
1da177e4
LT
434 help
435 This driver enables support for the on-board Intel 82586 based
436 Ethernet adapter found on Sun 3/1xx and 3/2xx motherboards. Note
437 that this driver does not support 82586-based adapters on additional
438 VME boards.
439
440config HPLANCE
441 bool "HP on-board LANCE support"
d1c0a65f 442 depends on DIO
1da177e4
LT
443 select CRC32
444 help
445 If you want to use the builtin "LANCE" Ethernet controller on an
446 HP300 machine, say Y here.
447
448config LASI_82596
449 tristate "Lasi ethernet"
d1c0a65f 450 depends on GSC
1da177e4 451 help
6de187ee
MW
452 Say Y here to support the builtin Intel 82596 ethernet controller
453 found in Hewlett-Packard PA-RISC machines with 10Mbit ethernet.
1da177e4 454
f2ec8030
TB
455config SNI_82596
456 tristate "SNI RM ethernet"
457 depends on NET_ETHERNET && SNI_RM
458 help
459 Say Y here to support the on-board Intel 82596 ethernet controller
460 built into SNI RM machines.
461
ef11291b
FF
462config KORINA
463 tristate "Korina (IDT RC32434) Ethernet support"
f57b2061 464 depends on NET_ETHERNET && MIKROTIK_RB532
ef11291b
FF
465 help
466 If you have a Mikrotik RouterBoard 500 or IDT RC32434
467 based system say Y. Otherwise say N.
468
1da177e4
LT
469config MIPS_JAZZ_SONIC
470 tristate "MIPS JAZZ onboard SONIC Ethernet support"
d1c0a65f 471 depends on MACH_JAZZ
1da177e4
LT
472 help
473 This is the driver for the onboard card of MIPS Magnum 4000,
474 Acer PICA, Olivetti M700-10 and a few other identical OEM systems.
475
74f2a5f0
CZ
476config XTENSA_XT2000_SONIC
477 tristate "Xtensa XT2000 onboard SONIC Ethernet support"
478 depends on XTENSA_PLATFORM_XT2000
479 help
480 This is the driver for the onboard card of the Xtensa XT2000 board.
481
1da177e4
LT
482config MIPS_AU1X00_ENET
483 bool "MIPS AU1000 Ethernet support"
d1c0a65f 484 depends on SOC_AU1X00
0638dec0 485 select PHYLIB
1da177e4
LT
486 select CRC32
487 help
488 If you have an Alchemy Semi AU1X00 based system
489 say Y. Otherwise, say N.
490
1da177e4
LT
491config SGI_IOC3_ETH
492 bool "SGI IOC3 Ethernet"
d1c0a65f 493 depends on PCI && SGI_IP27
1da177e4
LT
494 select CRC32
495 select MII
496 help
497 If you have a network (Ethernet) card of this type, say Y and read
498 the Ethernet-HOWTO, available from
499 <http://www.tldp.org/docs.html#howto>.
500
dcbf8477 501config MIPS_SIM_NET
1e2b980f 502 tristate "MIPS simulator Network device"
d1c0a65f 503 depends on MIPS_SIM
dcbf8477
RB
504 help
505 The MIPSNET device is a simple Ethernet network device which is
506 emulated by the MIPS Simulator.
507 If you are not using a MIPSsim or are unsure, say N.
508
1da177e4
LT
509config SGI_O2MACE_ETH
510 tristate "SGI O2 MACE Fast Ethernet support"
d1c0a65f 511 depends on SGI_IP32=y
1da177e4
LT
512
513config STNIC
514 tristate "National DP83902AV support"
d1c0a65f 515 depends on SUPERH
1da177e4
LT
516 select CRC32
517 help
518 Support for cards based on the National Semiconductor DP83902AV
519 ST-NIC Serial Network Interface Controller for Twisted Pair. This
520 is a 10Mbit/sec Ethernet controller. Product overview and specs at
521 <http://www.national.com/pf/DP/DP83902A.html>.
522
523 If unsure, say N.
524
86a74ff2
NI
525config SH_ETH
526 tristate "Renesas SuperH Ethernet support"
527 depends on SUPERH && \
71557a37
YS
528 (CPU_SUBTYPE_SH7710 || CPU_SUBTYPE_SH7712 || CPU_SUBTYPE_SH7763 || \
529 CPU_SUBTYPE_SH7619)
86a74ff2
NI
530 select CRC32
531 select MII
532 select MDIO_BITBANG
533 select PHYLIB
534 help
535 Renesas SuperH Ethernet device driver.
71557a37 536 This driver support SH7710, SH7712, SH7763 and SH7619.
86a74ff2 537
1da177e4
LT
538config SUNLANCE
539 tristate "Sun LANCE support"
d1c0a65f 540 depends on SBUS
1da177e4
LT
541 select CRC32
542 help
543 This driver supports the "le" interface present on all 32-bit Sparc
544 systems, on some older Ultra systems and as an Sbus option. These
545 cards are based on the AMD Lance chipset, which is better known
546 via the NE2100 cards.
547
548 To compile this driver as a module, choose M here: the module
549 will be called sunlance.
550
551config HAPPYMEAL
552 tristate "Sun Happy Meal 10/100baseT support"
d1c0a65f 553 depends on SBUS || PCI
1da177e4
LT
554 select CRC32
555 help
556 This driver supports the "hme" interface present on most Ultra
557 systems and as an option on older Sbus systems. This driver supports
558 both PCI and Sbus devices. This driver also supports the "qfe" quad
559 100baseT device available in both PCI and Sbus configurations.
560
561 To compile this driver as a module, choose M here: the module
562 will be called sunhme.
563
564config SUNBMAC
565 tristate "Sun BigMAC 10/100baseT support (EXPERIMENTAL)"
d1c0a65f 566 depends on SBUS && EXPERIMENTAL
1da177e4
LT
567 select CRC32
568 help
569 This driver supports the "be" interface available as an Sbus option.
570 This is Sun's older 100baseT Ethernet device.
571
572 To compile this driver as a module, choose M here: the module
573 will be called sunbmac.
574
575config SUNQE
576 tristate "Sun QuadEthernet support"
d1c0a65f 577 depends on SBUS
1da177e4
LT
578 select CRC32
579 help
580 This driver supports the "qe" 10baseT Ethernet device, available as
581 an Sbus option. Note that this is not the same as Quad FastEthernet
582 "qfe" which is supported by the Happy Meal driver instead.
583
584 To compile this driver as a module, choose M here: the module
585 will be called sunqe.
586
587config SUNGEM
588 tristate "Sun GEM support"
d1c0a65f 589 depends on PCI
1da177e4
LT
590 select CRC32
591 help
592 Support for the Sun GEM chip, aka Sun GigabitEthernet/P 2.0. See also
593 <http://www.sun.com/products-n-solutions/hardware/docs/pdf/806-3985-10.pdf>.
594
1f26dac3
DM
595config CASSINI
596 tristate "Sun Cassini support"
d1c0a65f 597 depends on PCI
1f26dac3
DM
598 select CRC32
599 help
600 Support for the Sun Cassini chip, aka Sun GigaSwift Ethernet. See also
601 <http://www.sun.com/products-n-solutions/hardware/docs/pdf/817-4341-10.pdf>
602
4c521e42
DM
603config SUNVNET
604 tristate "Sun Virtual Network support"
605 depends on SUN_LDOMS
606 help
607 Support for virtual network devices under Sun Logical Domains.
608
1da177e4
LT
609config NET_VENDOR_3COM
610 bool "3COM cards"
d1c0a65f 611 depends on ISA || EISA || MCA || PCI
1da177e4
LT
612 help
613 If you have a network (Ethernet) card belonging to this class, say Y
614 and read the Ethernet-HOWTO, available from
615 <http://www.tldp.org/docs.html#howto>.
616
617 Note that the answer to this question doesn't directly affect the
618 kernel: saying N will just cause the configurator to skip all
619 the questions about 3COM cards. If you say Y, you will be asked for
620 your specific card in the following questions.
621
622config EL1
623 tristate "3c501 \"EtherLink\" support"
624 depends on NET_VENDOR_3COM && ISA
625 ---help---
626 If you have a network (Ethernet) card of this type, say Y and read
627 the Ethernet-HOWTO, available from
628 <http://www.tldp.org/docs.html#howto>. Also, consider buying a
629 new card, since the 3c501 is slow, broken, and obsolete: you will
630 have problems. Some people suggest to ping ("man ping") a nearby
631 machine every minute ("man cron") when using this card.
632
57ce45dd 633 To compile this driver as a module, choose M here. The module
1da177e4
LT
634 will be called 3c501.
635
636config EL2
637 tristate "3c503 \"EtherLink II\" support"
638 depends on NET_VENDOR_3COM && ISA
639 select CRC32
640 help
641 If you have a network (Ethernet) card of this type, say Y and read
642 the Ethernet-HOWTO, available from
643 <http://www.tldp.org/docs.html#howto>.
644
57ce45dd 645 To compile this driver as a module, choose M here. The module
1da177e4
LT
646 will be called 3c503.
647
648config ELPLUS
649 tristate "3c505 \"EtherLink Plus\" support"
a5532606 650 depends on NET_VENDOR_3COM && ISA && ISA_DMA_API
1da177e4
LT
651 ---help---
652 Information about this network (Ethernet) card can be found in
653 <file:Documentation/networking/3c505.txt>. If you have a card of
654 this type, say Y and read the Ethernet-HOWTO, available from
655 <http://www.tldp.org/docs.html#howto>.
656
57ce45dd 657 To compile this driver as a module, choose M here. The module
1da177e4
LT
658 will be called 3c505.
659
660config EL16
661 tristate "3c507 \"EtherLink 16\" support (EXPERIMENTAL)"
662 depends on NET_VENDOR_3COM && ISA && EXPERIMENTAL
663 help
664 If you have a network (Ethernet) card of this type, say Y and read
665 the Ethernet-HOWTO, available from
666 <http://www.tldp.org/docs.html#howto>.
667
57ce45dd 668 To compile this driver as a module, choose M here. The module
1da177e4
LT
669 will be called 3c507.
670
671config EL3
672 tristate "3c509/3c529 (MCA)/3c579 \"EtherLink III\" support"
673 depends on NET_VENDOR_3COM && (ISA || EISA || MCA)
674 ---help---
675 If you have a network (Ethernet) card belonging to the 3Com
676 EtherLinkIII series, say Y and read the Ethernet-HOWTO, available
677 from <http://www.tldp.org/docs.html#howto>.
678
679 If your card is not working you may need to use the DOS
680 setup disk to disable Plug & Play mode, and to select the default
681 media type.
682
57ce45dd 683 To compile this driver as a module, choose M here. The module
1da177e4
LT
684 will be called 3c509.
685
686config 3C515
687 tristate "3c515 ISA \"Fast EtherLink\""
a5532606 688 depends on NET_VENDOR_3COM && (ISA || EISA) && ISA_DMA_API
1da177e4
LT
689 help
690 If you have a 3Com ISA EtherLink XL "Corkscrew" 3c515 Fast Ethernet
691 network card, say Y and read the Ethernet-HOWTO, available from
692 <http://www.tldp.org/docs.html#howto>.
693
57ce45dd 694 To compile this driver as a module, choose M here. The module
1da177e4
LT
695 will be called 3c515.
696
697config ELMC
698 tristate "3c523 \"EtherLink/MC\" support"
699 depends on NET_VENDOR_3COM && MCA_LEGACY
700 help
701 If you have a network (Ethernet) card of this type, say Y and read
702 the Ethernet-HOWTO, available from
703 <http://www.tldp.org/docs.html#howto>.
704
57ce45dd 705 To compile this driver as a module, choose M here. The module
1da177e4
LT
706 will be called 3c523.
707
708config ELMC_II
709 tristate "3c527 \"EtherLink/MC 32\" support (EXPERIMENTAL)"
710 depends on NET_VENDOR_3COM && MCA && MCA_LEGACY
711 help
712 If you have a network (Ethernet) card of this type, say Y and read
713 the Ethernet-HOWTO, available from
714 <http://www.tldp.org/docs.html#howto>.
715
57ce45dd 716 To compile this driver as a module, choose M here. The module
1da177e4
LT
717 will be called 3c527.
718
719config VORTEX
720 tristate "3c590/3c900 series (592/595/597) \"Vortex/Boomerang\" support"
721 depends on NET_VENDOR_3COM && (PCI || EISA)
722 select MII
723 ---help---
47c51431
JM
724 This option enables driver support for a large number of 10Mbps and
725 10/100Mbps EISA, PCI and PCMCIA 3Com network cards:
1da177e4
LT
726
727 "Vortex" (Fast EtherLink 3c590/3c592/3c595/3c597) EISA and PCI
728 "Boomerang" (EtherLink XL 3c900 or 3c905) PCI
729 "Cyclone" (3c540/3c900/3c905/3c980/3c575/3c656) PCI and Cardbus
730 "Tornado" (3c905) PCI
731 "Hurricane" (3c555/3cSOHO) PCI
732
733 If you have such a card, say Y and read the Ethernet-HOWTO,
734 available from <http://www.tldp.org/docs.html#howto>. More
735 specific information is in
736 <file:Documentation/networking/vortex.txt> and in the comments at
737 the beginning of <file:drivers/net/3c59x.c>.
738
57ce45dd 739 To compile this support as a module, choose M here.
1da177e4
LT
740
741config TYPHOON
742 tristate "3cr990 series \"Typhoon\" support"
743 depends on NET_VENDOR_3COM && PCI
744 select CRC32
745 ---help---
746 This option enables driver support for the 3cr990 series of cards:
747
748 3C990-TX, 3CR990-TX-95, 3CR990-TX-97, 3CR990-FX-95, 3CR990-FX-97,
749 3CR990SVR, 3CR990SVR95, 3CR990SVR97, 3CR990-FX-95 Server,
750 3CR990-FX-97 Server, 3C990B-TX-M, 3C990BSVR
751
752 If you have a network (Ethernet) card of this type, say Y and read
753 the Ethernet-HOWTO, available from
754 <http://www.tldp.org/docs.html#howto>.
755
57ce45dd 756 To compile this driver as a module, choose M here. The module
1da177e4
LT
757 will be called typhoon.
758
759config LANCE
760 tristate "AMD LANCE and PCnet (AT1500 and NE2100) support"
d1c0a65f 761 depends on ISA && ISA_DMA_API
1da177e4
LT
762 help
763 If you have a network (Ethernet) card of this type, say Y and read
764 the Ethernet-HOWTO, available from
765 <http://www.tldp.org/docs.html#howto>. Some LinkSys cards are
766 of this type.
767
768 To compile this driver as a module, choose M here: the module
769 will be called lance. This is recommended.
770
771config NET_VENDOR_SMC
772 bool "Western Digital/SMC cards"
d1c0a65f 773 depends on ISA || MCA || EISA || MAC
1da177e4
LT
774 help
775 If you have a network (Ethernet) card belonging to this class, say Y
776 and read the Ethernet-HOWTO, available from
777 <http://www.tldp.org/docs.html#howto>.
778
779 Note that the answer to this question doesn't directly affect the
780 kernel: saying N will just cause the configurator to skip all
781 the questions about Western Digital cards. If you say Y, you will be
782 asked for your specific card in the following questions.
783
784config WD80x3
785 tristate "WD80*3 support"
786 depends on NET_VENDOR_SMC && ISA
787 select CRC32
788 help
789 If you have a network (Ethernet) card of this type, say Y and read
790 the Ethernet-HOWTO, available from
791 <http://www.tldp.org/docs.html#howto>.
792
57ce45dd 793 To compile this driver as a module, choose M here. The module
1da177e4
LT
794 will be called wd.
795
796config ULTRAMCA
797 tristate "SMC Ultra MCA support"
798 depends on NET_VENDOR_SMC && MCA
799 select CRC32
800 help
801 If you have a network (Ethernet) card of this type and are running
802 an MCA based system (PS/2), say Y and read the Ethernet-HOWTO,
803 available from <http://www.tldp.org/docs.html#howto>.
804
57ce45dd 805 To compile this driver as a module, choose M here. The module
1da177e4
LT
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
57ce45dd 824 To compile this driver as a module, choose M here. The module
1da177e4
LT
825 will be called smc-ultra.
826
827config ULTRA32
828 tristate "SMC Ultra32 EISA support"
829 depends on NET_VENDOR_SMC && EISA
830 select CRC32
831 help
832 If you have a network (Ethernet) card of this type, say Y and read
833 the Ethernet-HOWTO, available from
834 <http://www.tldp.org/docs.html#howto>.
835
57ce45dd 836 To compile this driver as a module, choose M here. The module
1da177e4
LT
837 will be called smc-ultra32.
838
e190d6b1 839config BFIN_MAC
736783b8 840 tristate "Blackfin on-chip MAC support"
33a2a2b4 841 depends on NET_ETHERNET && (BF516 || BF518 || BF526 || BF527 || BF536 || BF537)
e190d6b1 842 select CRC32
eeb70af9
BW
843 select MII
844 select PHYLIB
e190d6b1
BW
845 select BFIN_MAC_USE_L1 if DMA_UNCACHED_NONE
846 help
736783b8 847 This is the driver for Blackfin on-chip mac device. Say Y if you want it
e190d6b1
BW
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"
6893ff1c 854 depends on BFIN_MAC && (BF527 || BF537)
e190d6b1
BW
855 default y
856 help
01dd2fbf 857 To get maximum network performance, you should use L1 memory as rx/tx buffers.
e190d6b1
BW
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
6893ff1c
MH
881 default y if BFIN527_EZKIT
882 default n if BFIN537_STAMP
e190d6b1
BW
883 help
884 Use Reduced PHY MII Interface
885
d1c0a65f
JE
886config SMC9194
887 tristate "SMC 9194 support"
888 depends on NET_VENDOR_SMC && (ISA || MAC && BROKEN)
889 select CRC32
890 ---help---
891 This is support for the SMC9xxx based Ethernet cards. Choose this
892 option if you have a DELL laptop with the docking station, or
893 another SMC9192/9194 based chipset. Say Y if you want it compiled
894 into the kernel, and read the file
895 <file:Documentation/networking/smc9.txt> and the Ethernet-HOWTO,
896 available from <http://www.tldp.org/docs.html#howto>.
897
57ce45dd 898 To compile this driver as a module, choose M here. The module
d1c0a65f
JE
899 will be called smc9194.
900
1da177e4
LT
901config SMC91X
902 tristate "SMC 91C9x/91C1xxx support"
903 select CRC32
904 select MII
b920de1b 905 depends on ARM || REDWOOD_5 || REDWOOD_6 || M32R || SUPERH || \
cde0d910 906 MIPS || BLACKFIN || MN10300
1da177e4
LT
907 help
908 This is a driver for SMC's 91x series of Ethernet chipsets,
909 including the SMC91C94 and the SMC91C111. Say Y if you want it
910 compiled into the kernel, and read the file
911 <file:Documentation/networking/smc9.txt> and the Ethernet-HOWTO,
912 available from <http://www.linuxdoc.org/docs.html#howto>.
913
914 This driver is also available as a module ( = code which can be
915 inserted in and removed from the running kernel whenever you want).
916 The module will be called smc91x. If you want to compile it as a
57ce45dd 917 module, say M here and read <file:Documentation/kbuild/modules.txt>.
1da177e4 918
92aa674d
SH
919config NET_NETX
920 tristate "NetX Ethernet support"
921 select MII
d1c0a65f 922 depends on ARCH_NETX
92aa674d
SH
923 help
924 This is support for the Hilscher netX builtin Ethernet ports
925
57ce45dd 926 To compile this driver as a module, choose M here. The module
92aa674d
SH
927 will be called netx-eth.
928
a1365275
SH
929config DM9000
930 tristate "DM9000 support"
f40d24d9 931 depends on ARM || BLACKFIN || MIPS
a1365275
SH
932 select CRC32
933 select MII
934 ---help---
935 Support for DM9000 chipset.
936
57ce45dd
AB
937 To compile this driver as a module, choose M here. The module
938 will be called dm9000.
a1365275 939
485ca22a
BD
940config DM9000_DEBUGLEVEL
941 int "DM9000 maximum debug level"
942 depends on DM9000
943 default 4
944 help
945 The maximum level of debugging code compiled into the DM9000
946 driver.
947
f8dd0ecb
BD
948config DM9000_FORCE_SIMPLE_PHY_POLL
949 bool "Force simple NSR based PHY polling"
950 depends on DM9000
951 ---help---
952 This configuration forces the DM9000 to use the NSR's LinkStatus
953 bit to determine if the link is up or down instead of the more
954 costly MII PHY reads. Note, this will not work if the chip is
955 operating with an external PHY.
956
3ec9c11d
CL
957config ENC28J60
958 tristate "ENC28J60 support"
959 depends on EXPERIMENTAL && SPI && NET_ETHERNET
960 select CRC32
961 ---help---
962 Support for the Microchip EN28J60 ethernet chip.
963
2bfc79de 964 To compile this driver as a module, choose M here. The module will be
3ec9c11d
CL
965 called enc28j60.
966
967config ENC28J60_WRITEVERIFY
968 bool "Enable write verify"
969 depends on ENC28J60
970 ---help---
971 Enable the verify after the buffer write useful for debugging purpose.
972 If unsure, say N.
973
a1702857
TR
974config ETHOC
975 tristate "OpenCores 10/100 Mbps Ethernet MAC support"
eeb5f5c9 976 depends on NET_ETHERNET && HAS_IOMEM
a1702857
TR
977 select MII
978 select PHYLIB
c5cacb3b
RD
979 select CRC32
980 select BITREVERSE
a1702857
TR
981 help
982 Say Y here if you want to use the OpenCores 10/100 Mbps Ethernet MAC.
983
0a0c72c9
DM
984config SMC911X
985 tristate "SMSC LAN911[5678] support"
986 select CRC32
987 select MII
bd2c4972 988 depends on ARM || SUPERH
0a0c72c9
DM
989 help
990 This is a driver for SMSC's LAN911x series of Ethernet chipsets
991 including the new LAN9115, LAN9116, LAN9117, and LAN9118.
992 Say Y if you want it compiled into the kernel,
993 and read the Ethernet-HOWTO, available from
994 <http://www.linuxdoc.org/docs.html#howto>.
995
996 This driver is also available as a module. The module will be
997 called smc911x. If you want to compile it as a module, say M
39f5fb30 998 here and read <file:Documentation/kbuild/modules.txt>
0a0c72c9 999
fd9abb3d
SG
1000config SMSC911X
1001 tristate "SMSC LAN911x/LAN921x families embedded ethernet support"
1002 depends on ARM || SUPERH
1003 select CRC32
1004 select MII
1005 select PHYLIB
1006 ---help---
1007 Say Y here if you want support for SMSC LAN911x and LAN921x families
1008 of ethernet controllers.
1009
1010 To compile this driver as a module, choose M here and read
1011 <file:Documentation/networking/net-modules.txt>. The module
1012 will be called smsc911x.
1013
1da177e4
LT
1014config NET_VENDOR_RACAL
1015 bool "Racal-Interlan (Micom) NI cards"
d1c0a65f 1016 depends on ISA
1da177e4
LT
1017 help
1018 If you have a network (Ethernet) card belonging to this class, such
1019 as the NI5010, NI5210 or NI6210, say Y and read the Ethernet-HOWTO,
1020 available from <http://www.tldp.org/docs.html#howto>.
1021
1022 Note that the answer to this question doesn't directly affect the
1023 kernel: saying N will just cause the configurator to skip all
1024 the questions about NI cards. If you say Y, you will be asked for
1025 your specific card in the following questions.
1026
1027config NI5010
1028 tristate "NI5010 support (EXPERIMENTAL)"
1029 depends on NET_VENDOR_RACAL && ISA && EXPERIMENTAL && BROKEN_ON_SMP
1030 ---help---
1031 If you have a network (Ethernet) card of this type, say Y and read
1032 the Ethernet-HOWTO, available from
1033 <http://www.tldp.org/docs.html#howto>. Note that this is still
1034 experimental code.
1035
57ce45dd 1036 To compile this driver as a module, choose M here. The module
1da177e4
LT
1037 will be called ni5010.
1038
1039config NI52
1040 tristate "NI5210 support"
1041 depends on NET_VENDOR_RACAL && ISA
1042 help
1043 If you have a network (Ethernet) card of this type, say Y and read
1044 the Ethernet-HOWTO, available from
1045 <http://www.tldp.org/docs.html#howto>.
1046
57ce45dd 1047 To compile this driver as a module, choose M here. The module
1da177e4
LT
1048 will be called ni52.
1049
1050config NI65
1051 tristate "NI6510 support"
a5532606 1052 depends on NET_VENDOR_RACAL && ISA && ISA_DMA_API
1da177e4
LT
1053 help
1054 If you have a network (Ethernet) card of this type, say Y and read
1055 the Ethernet-HOWTO, available from
1056 <http://www.tldp.org/docs.html#howto>.
1057
57ce45dd 1058 To compile this driver as a module, choose M here. The module
1da177e4
LT
1059 will be called ni65.
1060
47964174
IY
1061config DNET
1062 tristate "Dave ethernet support (DNET)"
4b97926d 1063 depends on NET_ETHERNET && HAS_IOMEM
47964174
IY
1064 select PHYLIB
1065 help
1066 The Dave ethernet interface (DNET) is found on Qong Board FPGA.
1067 Say Y to include support for the DNET chip.
1068
1069 To compile this driver as a module, choose M here: the module
1070 will be called dnet.
1071
1da177e4
LT
1072source "drivers/net/tulip/Kconfig"
1073
1074config AT1700
1075 tristate "AT1700/1720 support (EXPERIMENTAL)"
d1c0a65f 1076 depends on (ISA || MCA_LEGACY) && EXPERIMENTAL
1da177e4
LT
1077 select CRC32
1078 ---help---
1079 If you have a network (Ethernet) card of this type, say Y and read
1080 the Ethernet-HOWTO, available from
1081 <http://www.tldp.org/docs.html#howto>.
1082
57ce45dd 1083 To compile this driver as a module, choose M here. The module
1da177e4
LT
1084 will be called at1700.
1085
1086config DEPCA
1087 tristate "DEPCA, DE10x, DE200, DE201, DE202, DE422 support"
d1c0a65f 1088 depends on ISA || EISA || MCA
1da177e4
LT
1089 select CRC32
1090 ---help---
1091 If you have a network (Ethernet) card of this type, say Y and read
1092 the Ethernet-HOWTO, available from
1093 <http://www.tldp.org/docs.html#howto> as well as
1094 <file:drivers/net/depca.c>.
1095
57ce45dd 1096 To compile this driver as a module, choose M here. The module
1da177e4
LT
1097 will be called depca.
1098
1099config HP100
1100 tristate "HP 10/100VG PCLAN (ISA, EISA, PCI) support"
d1c0a65f 1101 depends on ISA || EISA || PCI
1da177e4
LT
1102 help
1103 If you have a network (Ethernet) card of this type, say Y and read
1104 the Ethernet-HOWTO, available from
1105 <http://www.tldp.org/docs.html#howto>.
1106
57ce45dd 1107 To compile this driver as a module, choose M here. The module
1da177e4
LT
1108 will be called hp100.
1109
1110config NET_ISA
1111 bool "Other ISA cards"
d1c0a65f 1112 depends on ISA
1da177e4
LT
1113 ---help---
1114 If your network (Ethernet) card hasn't been mentioned yet and its
1115 bus system (that's the way the cards talks to the other components
1116 of your computer) is ISA (as opposed to EISA, VLB or PCI), say Y.
1117 Make sure you know the name of your card. Read the Ethernet-HOWTO,
1118 available from <http://www.tldp.org/docs.html#howto>.
1119
1120 If unsure, say Y.
1121
1122 Note that the answer to this question doesn't directly affect the
1123 kernel: saying N will just cause the configurator to skip all
1124 the remaining ISA network card questions. If you say Y, you will be
1125 asked for your specific card in the following questions.
1126
1127config E2100
1128 tristate "Cabletron E21xx support"
1129 depends on NET_ISA
1130 select CRC32
1131 help
1132 If you have a network (Ethernet) card of this type, say Y and read
1133 the Ethernet-HOWTO, available from
1134 <http://www.tldp.org/docs.html#howto>.
1135
57ce45dd 1136 To compile this driver as a module, choose M here. The module
1da177e4
LT
1137 will be called e2100.
1138
1139config EWRK3
1140 tristate "EtherWORKS 3 (DE203, DE204, DE205) support"
1141 depends on NET_ISA
1142 select CRC32
1143 ---help---
1144 This driver supports the DE203, DE204 and DE205 network (Ethernet)
1145 cards. If this is for you, say Y and read
1146 <file:Documentation/networking/ewrk3.txt> in the kernel source as
1147 well as the Ethernet-HOWTO, available from
1148 <http://www.tldp.org/docs.html#howto>.
1149
57ce45dd 1150 To compile this driver as a module, choose M here. The module
1da177e4
LT
1151 will be called ewrk3.
1152
1153config EEXPRESS
1154 tristate "EtherExpress 16 support"
1155 depends on NET_ISA
1156 ---help---
1157 If you have an EtherExpress16 network (Ethernet) card, say Y and
1158 read the Ethernet-HOWTO, available from
1159 <http://www.tldp.org/docs.html#howto>. Note that the Intel
1160 EtherExpress16 card used to be regarded as a very poor choice
1161 because the driver was very unreliable. We now have a new driver
1162 that should do better.
1163
57ce45dd 1164 To compile this driver as a module, choose M here. The module
1da177e4
LT
1165 will be called eexpress.
1166
1167config EEXPRESS_PRO
1168 tristate "EtherExpressPro support/EtherExpress 10 (i82595) support"
1169 depends on NET_ISA
1170 ---help---
1171 If you have a network (Ethernet) card of this type, say Y. This
47c51431 1172 driver supports Intel i82595{FX,TX} based boards. Note however
1da177e4
LT
1173 that the EtherExpress PRO/100 Ethernet card has its own separate
1174 driver. Please read the Ethernet-HOWTO, available from
1175 <http://www.tldp.org/docs.html#howto>.
1176
57ce45dd 1177 To compile this driver as a module, choose M here. The module
1da177e4
LT
1178 will be called eepro.
1179
1da177e4
LT
1180config HPLAN_PLUS
1181 tristate "HP PCLAN+ (27247B and 27252A) support"
1182 depends on NET_ISA
1183 select CRC32
1184 help
1185 If you have a network (Ethernet) card of this type, say Y and read
1186 the Ethernet-HOWTO, available from
1187 <http://www.tldp.org/docs.html#howto>.
1188
57ce45dd 1189 To compile this driver as a module, choose M here. The module
1da177e4
LT
1190 will be called hp-plus.
1191
1192config HPLAN
1193 tristate "HP PCLAN (27245 and other 27xxx series) support"
1194 depends on NET_ISA
1195 select CRC32
1196 help
1197 If you have a network (Ethernet) card of this type, say Y and read
1198 the Ethernet-HOWTO, available from
1199 <http://www.tldp.org/docs.html#howto>.
1200
57ce45dd 1201 To compile this driver as a module, choose M here. The module
1da177e4
LT
1202 will be called hp.
1203
1204config LP486E
1205 tristate "LP486E on board Ethernet"
1206 depends on NET_ISA
1207 help
1208 Say Y here to support the 82596-based on-board Ethernet controller
1209 for the Panther motherboard, which is one of the two shipped in the
1210 Intel Professional Workstation.
1211
1212config ETH16I
1213 tristate "ICL EtherTeam 16i/32 support"
1214 depends on NET_ISA
1215 help
1216 If you have a network (Ethernet) card of this type, say Y and read
1217 the Ethernet-HOWTO, available from
1218 <http://www.tldp.org/docs.html#howto>.
1219
57ce45dd 1220 To compile this driver as a module, choose M here. The module
1da177e4
LT
1221 will be called eth16i.
1222
1223config NE2000
1224 tristate "NE2000/NE1000 support"
c7e65c17 1225 depends on NET_ISA || (Q40 && m) || M32R || MACH_TX49XX
1da177e4
LT
1226 select CRC32
1227 ---help---
1228 If you have a network (Ethernet) card of this type, say Y and read
1229 the Ethernet-HOWTO, available from
1230 <http://www.tldp.org/docs.html#howto>. Many Ethernet cards
1231 without a specific driver are compatible with NE2000.
1232
1233 If you have a PCI NE2000 card however, say N here and Y to "PCI
28beaf65
JJ
1234 NE2000 and clone support" under "EISA, VLB, PCI and on board
1235 controllers" below. If you have a NE2000 card and are running on
1da177e4
LT
1236 an MCA system (a bus system used on some IBM PS/2 computers and
1237 laptops), say N here and Y to "NE/2 (ne2000 MCA version) support",
1238 below.
1239
57ce45dd 1240 To compile this driver as a module, choose M here. The module
1da177e4
LT
1241 will be called ne.
1242
1243config ZNET
1244 tristate "Zenith Z-Note support (EXPERIMENTAL)"
a5532606 1245 depends on NET_ISA && EXPERIMENTAL && ISA_DMA_API
1da177e4
LT
1246 help
1247 The Zenith Z-Note notebook computer has a built-in network
1248 (Ethernet) card, and this is the Linux driver for it. Note that the
1249 IBM Thinkpad 300 is compatible with the Z-Note and is also supported
1250 by this driver. Read the Ethernet-HOWTO, available from
1251 <http://www.tldp.org/docs.html#howto>.
1252
1253config SEEQ8005
1254 tristate "SEEQ8005 support (EXPERIMENTAL)"
1255 depends on NET_ISA && EXPERIMENTAL
1256 help
1257 This is a driver for the SEEQ 8005 network (Ethernet) card. If this
1258 is for you, read the Ethernet-HOWTO, available from
1259 <http://www.tldp.org/docs.html#howto>.
1260
57ce45dd 1261 To compile this driver as a module, choose M here. The module
1da177e4
LT
1262 will be called seeq8005.
1263
1da177e4
LT
1264config NE2_MCA
1265 tristate "NE/2 (ne2000 MCA version) support"
d1c0a65f 1266 depends on MCA_LEGACY
1da177e4
LT
1267 select CRC32
1268 help
1269 If you have a network (Ethernet) card of this type, say Y and read
1270 the Ethernet-HOWTO, available from
1271 <http://www.tldp.org/docs.html#howto>.
1272
57ce45dd 1273 To compile this driver as a module, choose M here. The module
1da177e4
LT
1274 will be called ne2.
1275
1276config IBMLANA
1277 tristate "IBM LAN Adapter/A support"
e6353f30 1278 depends on MCA
1da177e4
LT
1279 ---help---
1280 This is a Micro Channel Ethernet adapter. You need to set
1281 CONFIG_MCA to use this driver. It is both available as an in-kernel
1282 driver and as a module.
1283
57ce45dd 1284 To compile this driver as a module, choose M here. The only
1da177e4
LT
1285 currently supported card is the IBM LAN Adapter/A for Ethernet. It
1286 will both support 16K and 32K memory windows, however a 32K window
1287 gives a better security against packet losses. Usage of multiple
1288 boards with this driver should be possible, but has not been tested
1289 up to now due to lack of hardware.
1290
1291config IBMVETH
1292 tristate "IBM LAN Virtual Ethernet support"
d1c0a65f 1293 depends on PPC_PSERIES
1da177e4
LT
1294 ---help---
1295 This driver supports virtual ethernet adapters on newer IBM iSeries
1296 and pSeries systems.
1297
57ce45dd 1298 To compile this driver as a module, choose M here. The module will
1da177e4
LT
1299 be called ibmveth.
1300
1d3bb996 1301source "drivers/net/ibm_newemac/Kconfig"
1da177e4
LT
1302
1303config NET_PCI
1304 bool "EISA, VLB, PCI and on board controllers"
d1c0a65f 1305 depends on ISA || EISA || PCI
1da177e4
LT
1306 help
1307 This is another class of network cards which attach directly to the
1308 bus. If you have one of those, say Y and read the Ethernet-HOWTO,
1309 available from <http://www.tldp.org/docs.html#howto>.
1310
1311 Note that the answer to this question doesn't directly affect the
1312 kernel: saying N will just cause the configurator to skip all
1313 the questions about this class of network cards. If you say Y, you
1314 will be asked for your specific card in the following questions. If
1315 you are unsure, say Y.
1316
1317config PCNET32
1318 tristate "AMD PCnet32 PCI support"
1319 depends on NET_PCI && PCI
1320 select CRC32
1321 select MII
1322 help
1323 If you have a PCnet32 or PCnetPCI based network (Ethernet) card,
1324 answer Y here and read the Ethernet-HOWTO, available from
1325 <http://www.tldp.org/docs.html#howto>.
1326
57ce45dd 1327 To compile this driver as a module, choose M here. The module
1da177e4
LT
1328 will be called pcnet32.
1329
1330config AMD8111_ETH
1331 tristate "AMD 8111 (new PCI lance) support"
1332 depends on NET_PCI && PCI
1333 select CRC32
1334 select MII
1335 help
1336 If you have an AMD 8111-based PCI lance ethernet card,
1337 answer Y here and read the Ethernet-HOWTO, available from
1338 <http://www.tldp.org/docs.html#howto>.
1339
57ce45dd 1340 To compile this driver as a module, choose M here. The module
1da177e4 1341 will be called amd8111e.
d1c0a65f 1342
1da177e4
LT
1343config ADAPTEC_STARFIRE
1344 tristate "Adaptec Starfire/DuraLAN support"
1345 depends on NET_PCI && PCI
1346 select CRC32
1347 select MII
1348 help
1349 Say Y here if you have an Adaptec Starfire (or DuraLAN) PCI network
1350 adapter. The DuraLAN chip is used on the 64 bit PCI boards from
1351 Adaptec e.g. the ANA-6922A. The older 32 bit boards use the tulip
1352 driver.
1353
1354 To compile this driver as a module, choose M here: the module
1355 will be called starfire. This is recommended.
1356
1da177e4
LT
1357config AC3200
1358 tristate "Ansel Communications EISA 3200 support (EXPERIMENTAL)"
1359 depends on NET_PCI && (ISA || EISA) && EXPERIMENTAL
1360 select CRC32
1361 help
1362 If you have a network (Ethernet) card of this type, say Y and read
1363 the Ethernet-HOWTO, available from
1364 <http://www.tldp.org/docs.html#howto>.
1365
57ce45dd 1366 To compile this driver as a module, choose M here. The module
1da177e4
LT
1367 will be called ac3200.
1368
1369config APRICOT
1370 tristate "Apricot Xen-II on board Ethernet"
1371 depends on NET_PCI && ISA
1372 help
1373 If you have a network (Ethernet) controller of this type, say Y and
1374 read the Ethernet-HOWTO, available from
1375 <http://www.tldp.org/docs.html#howto>.
1376
57ce45dd
AB
1377 To compile this driver as a module, choose M here. The module
1378 will be called apricot.
1da177e4
LT
1379
1380config B44
753f4920 1381 tristate "Broadcom 440x/47xx ethernet support"
46cb69cc 1382 depends on SSB_POSSIBLE && HAS_DMA
753f4920 1383 select SSB
1da177e4
LT
1384 select MII
1385 help
753f4920
MB
1386 If you have a network (Ethernet) controller of this type, say Y
1387 or M and read the Ethernet-HOWTO, available from
1da177e4
LT
1388 <http://www.tldp.org/docs.html#howto>.
1389
57ce45dd
AB
1390 To compile this driver as a module, choose M here. The module
1391 will be called b44.
1da177e4 1392
753f4920
MB
1393# Auto-select SSB PCI-HOST support, if possible
1394config B44_PCI_AUTOSELECT
1395 bool
1396 depends on B44 && SSB_PCIHOST_POSSIBLE
1397 select SSB_PCIHOST
1398 default y
1399
1400# Auto-select SSB PCICORE driver, if possible
1401config B44_PCICORE_AUTOSELECT
1402 bool
1403 depends on B44 && SSB_DRIVER_PCICORE_POSSIBLE
1404 select SSB_DRIVER_PCICORE
1405 default y
1406
1407config B44_PCI
1408 bool
1409 depends on B44_PCI_AUTOSELECT && B44_PCICORE_AUTOSELECT
1410 default y
1411
1da177e4 1412config FORCEDETH
82770086
AB
1413 tristate "nForce Ethernet support"
1414 depends on NET_PCI && PCI
1da177e4
LT
1415 help
1416 If you have a network (Ethernet) controller of this type, say Y and
1417 read the Ethernet-HOWTO, available from
1418 <http://www.tldp.org/docs.html#howto>.
1419
57ce45dd
AB
1420 To compile this driver as a module, choose M here. The module
1421 will be called forcedeth.
1da177e4 1422
e27cdba5 1423config FORCEDETH_NAPI
bf45abeb 1424 bool "Use Rx Polling (NAPI) (EXPERIMENTAL)"
e27cdba5
SH
1425 depends on FORCEDETH && EXPERIMENTAL
1426 help
1427 NAPI is a new driver API designed to reduce CPU and interrupt load
1428 when the driver is receiving lots of packets from the card. It is
1429 still somewhat experimental and thus not yet enabled by default.
1430
1431 If your estimated Rx load is 10kpps or more, or if the card will be
1432 deployed on potentially unfriendly networks (e.g. in a firewall),
1433 then say Y here.
1434
e27cdba5 1435 If in doubt, say N.
1da177e4
LT
1436
1437config CS89x0
1438 tristate "CS89x0 support"
0ac4ed9d
GC
1439 depends on NET_ETHERNET && (ISA || EISA || MACH_IXDP2351 \
1440 || ARCH_IXDP2X01 || ARCH_PNX010X || MACH_MX31ADS)
1da177e4
LT
1441 ---help---
1442 Support for CS89x0 chipset based Ethernet cards. If you have a
1443 network (Ethernet) card of this type, say Y and read the
1444 Ethernet-HOWTO, available from
1445 <http://www.tldp.org/docs.html#howto> as well as
1446 <file:Documentation/networking/cs89x0.txt>.
1447
57ce45dd
AB
1448 To compile this driver as a module, choose M here. The module
1449 will be called cs89x0.
1da177e4 1450
0ac4ed9d
GC
1451config CS89x0_NONISA_IRQ
1452 def_bool y
1453 depends on CS89x0 != n
1454 depends on MACH_IXDP2351 || ARCH_IXDP2X01 || ARCH_PNX010X || MACH_MX31ADS
1455
1da177e4
LT
1456config TC35815
1457 tristate "TOSHIBA TC35815 Ethernet support"
eea221ce 1458 depends on NET_PCI && PCI && MIPS
c6686fe3 1459 select PHYLIB
1da177e4 1460
1da177e4
LT
1461config E100
1462 tristate "Intel(R) PRO/100+ support"
1463 depends on NET_PCI && PCI
1464 select MII
1465 ---help---
1466 This driver supports Intel(R) PRO/100 family of adapters.
1467 To verify that your adapter is supported, find the board ID number
1468 on the adapter. Look for a label that has a barcode and a number
1469 in the format 123456-001 (six digits hyphen three digits).
1470
1471 Use the above information and the Adapter & Driver ID Guide at:
1472
1473 <http://support.intel.com/support/network/adapter/pro100/21397.htm>
1474
1475 to identify the adapter.
1476
1477 For the latest Intel PRO/100 network driver for Linux, see:
1478
1479 <http://appsr.intel.com/scripts-df/support_intel.asp>
1480
1481 More specific information on configuring the driver is in
1482 <file:Documentation/networking/e100.txt>.
1483
57ce45dd 1484 To compile this driver as a module, choose M here. The module
1da177e4
LT
1485 will be called e100.
1486
1487config LNE390
1488 tristate "Mylex EISA LNE390A/B support (EXPERIMENTAL)"
1489 depends on NET_PCI && EISA && EXPERIMENTAL
1490 select CRC32
1491 help
1492 If you have a network (Ethernet) card of this type, say Y and read
1493 the Ethernet-HOWTO, available from
1494 <http://www.tldp.org/docs.html#howto>.
1495
57ce45dd 1496 To compile this driver as a module, choose M here. The module
1da177e4
LT
1497 will be called lne390.
1498
1499config FEALNX
1500 tristate "Myson MTD-8xx PCI Ethernet support"
1501 depends on NET_PCI && PCI
1502 select CRC32
1503 select MII
1504 help
1505 Say Y here to support the Mysom MTD-800 family of PCI-based Ethernet
1506 cards. Specifications and data at
1507 <http://www.myson.com.hk/mtd/datasheet/>.
1508
1509config NATSEMI
1510 tristate "National Semiconductor DP8381x series PCI Ethernet support"
1511 depends on NET_PCI && PCI
1512 select CRC32
1513 help
1514 This driver is for the National Semiconductor DP83810 series,
1515 which is used in cards from PureData, NetGear, Linksys
1516 and others, including the 83815 chip.
1517 More specific information and updates are available from
1518 <http://www.scyld.com/network/natsemi.html>.
1519
1520config NE2K_PCI
1521 tristate "PCI NE2000 and clones support (see help)"
1522 depends on NET_PCI && PCI
1523 select CRC32
1524 ---help---
1525 This driver is for NE2000 compatible PCI cards. It will not work
1526 with ISA NE2000 cards (they have their own driver, "NE2000/NE1000
1527 support" below). If you have a PCI NE2000 network (Ethernet) card,
1528 say Y and read the Ethernet-HOWTO, available from
1529 <http://www.tldp.org/docs.html#howto>.
1530
1531 This driver also works for the following NE2000 clone cards:
1532 RealTek RTL-8029 Winbond 89C940 Compex RL2000 KTI ET32P2
1533 NetVin NV5000SC Via 86C926 SureCom NE34 Winbond
1534 Holtek HT80232 Holtek HT80229
1535
57ce45dd 1536 To compile this driver as a module, choose M here. The module
1da177e4
LT
1537 will be called ne2k-pci.
1538
1539config NE3210
1540 tristate "Novell/Eagle/Microdyne NE3210 EISA support (EXPERIMENTAL)"
1541 depends on NET_PCI && EISA && EXPERIMENTAL
1542 select CRC32
1543 ---help---
1544 If you have a network (Ethernet) card of this type, say Y and read
1545 the Ethernet-HOWTO, available from
1546 <http://www.tldp.org/docs.html#howto>. Note that this driver
1547 will NOT WORK for NE3200 cards as they are completely different.
1548
57ce45dd 1549 To compile this driver as a module, choose M here. The module
1da177e4
LT
1550 will be called ne3210.
1551
1552config ES3210
1553 tristate "Racal-Interlan EISA ES3210 support (EXPERIMENTAL)"
1554 depends on NET_PCI && EISA && EXPERIMENTAL
1555 select CRC32
1556 help
1557 If you have a network (Ethernet) card of this type, say Y and read
1558 the Ethernet-HOWTO, available from
1559 <http://www.tldp.org/docs.html#howto>.
1560
57ce45dd 1561 To compile this driver as a module, choose M here. The module
1da177e4
LT
1562 will be called es3210.
1563
1564config 8139CP
1565 tristate "RealTek RTL-8139 C+ PCI Fast Ethernet Adapter support (EXPERIMENTAL)"
1566 depends on NET_PCI && PCI && EXPERIMENTAL
1567 select CRC32
1568 select MII
1569 help
1570 This is a driver for the Fast Ethernet PCI network cards based on
1571 the RTL8139C+ chips. If you have one of those, say Y and read
1572 the Ethernet-HOWTO, available from
1573 <http://www.tldp.org/docs.html#howto>.
1574
1575 To compile this driver as a module, choose M here: the module
1576 will be called 8139cp. This is recommended.
1577
1578config 8139TOO
f04e3f09 1579 tristate "RealTek RTL-8129/8130/8139 PCI Fast Ethernet Adapter support"
1da177e4
LT
1580 depends on NET_PCI && PCI
1581 select CRC32
1582 select MII
1583 ---help---
1584 This is a driver for the Fast Ethernet PCI network cards based on
f04e3f09
AB
1585 the RTL 8129/8130/8139 chips. If you have one of those, say Y and
1586 read the Ethernet-HOWTO <http://www.tldp.org/docs.html#howto>.
1da177e4
LT
1587
1588 To compile this driver as a module, choose M here: the module
1589 will be called 8139too. This is recommended.
1590
1591config 8139TOO_PIO
1592 bool "Use PIO instead of MMIO"
1593 default y
1594 depends on 8139TOO
1595 help
1596 This instructs the driver to use programmed I/O ports (PIO) instead
1597 of PCI shared memory (MMIO). This can possibly solve some problems
1598 in case your mainboard has memory consistency issues. If unsure,
1599 say N.
1600
1601config 8139TOO_TUNE_TWISTER
1602 bool "Support for uncommon RTL-8139 rev. K (automatic channel equalization)"
1603 depends on 8139TOO
1604 help
1605 This implements a function which might come in handy in case you
1606 are using low quality on long cabling. It is required for RealTek
1607 RTL-8139 revision K boards, and totally unused otherwise. It tries
1608 to match the transceiver to the cable characteristics. This is
1609 experimental since hardly documented by the manufacturer.
1610 If unsure, say Y.
1611
1612config 8139TOO_8129
1613 bool "Support for older RTL-8129/8130 boards"
1614 depends on 8139TOO
1615 help
1616 This enables support for the older and uncommon RTL-8129 and
1617 RTL-8130 chips, which support MII via an external transceiver,
1618 instead of an internal one. Disabling this option will save some
1619 memory by making the code size smaller. If unsure, say Y.
1620
1621config 8139_OLD_RX_RESET
1622 bool "Use older RX-reset method"
1623 depends on 8139TOO
1624 help
1625 The 8139too driver was recently updated to contain a more rapid
1626 reset sequence, in the face of severe receive errors. This "new"
1627 RX-reset method should be adequate for all boards. But if you
1628 experience problems, you can enable this option to restore the
1629 old RX-reset behavior. If unsure, say N.
1630
7a47dd7a 1631config R6040
68334115 1632 tristate "RDC R6040 Fast Ethernet Adapter support"
7a47dd7a
SW
1633 depends on NET_PCI && PCI
1634 select CRC32
1635 select MII
1636 help
1637 This is a driver for the R6040 Fast Ethernet MACs found in the
1638 the RDC R-321x System-on-chips.
1639
1640 To compile this driver as a module, choose M here: the module
1641 will be called r6040. This is recommended.
1642
1da177e4
LT
1643config SIS900
1644 tristate "SiS 900/7016 PCI Fast Ethernet Adapter support"
1645 depends on NET_PCI && PCI
1646 select CRC32
6da0f685 1647 select MII
1da177e4
LT
1648 ---help---
1649 This is a driver for the Fast Ethernet PCI network cards based on
1650 the SiS 900 and SiS 7016 chips. The SiS 900 core is also embedded in
c3cf560e 1651 SiS 630 and SiS 540 chipsets.
1da177e4
LT
1652
1653 This driver also supports AMD 79C901 HomePNA so that you can use
1654 your phone line as a network cable.
1655
1656 To compile this driver as a module, choose M here: the module
1657 will be called sis900. This is recommended.
1658
1659config EPIC100
1660 tristate "SMC EtherPower II"
1661 depends on NET_PCI && PCI
1662 select CRC32
1663 select MII
1664 help
1665 This driver is for the SMC EtherPower II 9432 PCI Ethernet NIC,
1666 which is based on the SMC83c17x (EPIC/100).
1667 More specific information and updates are available from
1668 <http://www.scyld.com/network/epic100.html>.
1669
2cb37728
SG
1670config SMSC9420
1671 tristate "SMSC LAN9420 PCI ethernet adapter support"
1672 depends on NET_PCI && PCI
1673 select CRC32
1674 select PHYLIB
1675 select SMSC_PHY
1676 help
1677 This is a driver for SMSC's LAN9420 PCI ethernet adapter.
1678 Say Y if you want it compiled into the kernel,
1679 and read the Ethernet-HOWTO, available from
1680 <http://www.linuxdoc.org/docs.html#howto>.
1681
1682 This driver is also available as a module. The module will be
1683 called smsc9420. If you want to compile it as a module, say M
1684 here and read <file:Documentation/kbuild/modules.txt>
1685
1da177e4
LT
1686config SUNDANCE
1687 tristate "Sundance Alta support"
1688 depends on NET_PCI && PCI
1689 select CRC32
1690 select MII
1691 help
1692 This driver is for the Sundance "Alta" chip.
1693 More specific information and updates are available from
1694 <http://www.scyld.com/network/sundance.html>.
1695
1696config SUNDANCE_MMIO
1697 bool "Use MMIO instead of PIO"
1698 depends on SUNDANCE
1699 help
1700 Enable memory-mapped I/O for interaction with Sundance NIC registers.
1701 Do NOT enable this by default, PIO (enabled when MMIO is disabled)
1702 is known to solve bugs on certain chips.
1703
1704 If unsure, say N.
1705
1706config TLAN
1707 tristate "TI ThunderLAN support"
93e16847 1708 depends on NET_PCI && (PCI || EISA)
1da177e4
LT
1709 ---help---
1710 If you have a PCI Ethernet network card based on the ThunderLAN chip
1711 which is supported by this driver, say Y and read the
1712 Ethernet-HOWTO, available from
1713 <http://www.tldp.org/docs.html#howto>.
1714
1715 Devices currently supported by this driver are Compaq Netelligent,
1716 Compaq NetFlex and Olicom cards. Please read the file
1717 <file:Documentation/networking/tlan.txt> for more details.
1718
57ce45dd 1719 To compile this driver as a module, choose M here. The module
1da177e4
LT
1720 will be called tlan.
1721
1722 Please email feedback to <torben.mathiasen@compaq.com>.
1723
1724config VIA_RHINE
1725 tristate "VIA Rhine support"
1726 depends on NET_PCI && PCI
1727 select CRC32
1728 select MII
1729 help
1730 If you have a VIA "Rhine" based network card (Rhine-I (VT86C100A),
1731 Rhine-II (VT6102), or Rhine-III (VT6105)), say Y here. Rhine-type
1732 Ethernet functions can also be found integrated on South Bridges
1733 (e.g. VT8235).
1734
1735 To compile this driver as a module, choose M here. The module
1736 will be called via-rhine.
1737
1738config VIA_RHINE_MMIO
1739 bool "Use MMIO instead of PIO"
1740 depends on VIA_RHINE
1741 help
1742 This instructs the driver to use PCI shared memory (MMIO) instead of
1743 programmed I/O ports (PIO). Enabling this gives an improvement in
1744 processing time in parts of the driver.
1745
1746 If unsure, say Y.
1747
bf345707
CEB
1748config SC92031
1749 tristate "Silan SC92031 PCI Fast Ethernet Adapter driver (EXPERIMENTAL)"
1750 depends on NET_PCI && PCI && EXPERIMENTAL
1751 select CRC32
1752 ---help---
1753 This is a driver for the Fast Ethernet PCI network cards based on
1754 the Silan SC92031 chip (sometimes also called Rsltek 8139D). If you
1755 have one of these, say Y here.
1756
1757 To compile this driver as a module, choose M here: the module
1758 will be called sc92031. This is recommended.
1759
d95b39c3
MC
1760config CPMAC
1761 tristate "TI AR7 CPMAC Ethernet support (EXPERIMENTAL)"
8353ec7b 1762 depends on NET_ETHERNET && EXPERIMENTAL && AR7 && BROKEN
d95b39c3 1763 select PHYLIB
d95b39c3
MC
1764 help
1765 TI AR7 CPMAC Ethernet support
1766
1da177e4
LT
1767config NET_POCKET
1768 bool "Pocket and portable adapters"
d1c0a65f 1769 depends on PARPORT
1da177e4
LT
1770 ---help---
1771 Cute little network (Ethernet) devices which attach to the parallel
1772 port ("pocket adapters"), commonly used with laptops. If you have
1773 one of those, say Y and read the Ethernet-HOWTO, available from
1774 <http://www.tldp.org/docs.html#howto>.
1775
1776 If you want to plug a network (or some other) card into the PCMCIA
1777 (or PC-card) slot of your laptop instead (PCMCIA is the standard for
1778 credit card size extension cards used by all modern laptops), you
1779 need the pcmcia-cs package (location contained in the file
1780 <file:Documentation/Changes>) and you can say N here.
1781
1782 Laptop users should read the Linux Laptop home page at
1783 <http://www.linux-on-laptops.com/> or
1784 Tuxmobil - Linux on Mobile Computers at <http://www.tuxmobil.org/>.
1785
1786 Note that the answer to this question doesn't directly affect the
1787 kernel: saying N will just cause the configurator to skip all
1788 the questions about this class of network devices. If you say Y, you
1789 will be asked for your specific device in the following questions.
1790
1791config ATP
1792 tristate "AT-LAN-TEC/RealTek pocket adapter support"
32fa2bfc 1793 depends on NET_POCKET && PARPORT && X86
1da177e4
LT
1794 select CRC32
1795 ---help---
1796 This is a network (Ethernet) device which attaches to your parallel
1797 port. Read <file:drivers/net/atp.c> as well as the Ethernet-HOWTO,
1798 available from <http://www.tldp.org/docs.html#howto>, if you
1799 want to use this. If you intend to use this driver, you should have
1800 said N to the "Parallel printer support", because the two drivers
1801 don't like each other.
1802
1803 To compile this driver as a module, choose M here: the module
1804 will be called atp.
1805
1806config DE600
1807 tristate "D-Link DE600 pocket adapter support"
32fa2bfc 1808 depends on NET_POCKET && PARPORT
1da177e4
LT
1809 ---help---
1810 This is a network (Ethernet) device which attaches to your parallel
1811 port. Read <file:Documentation/networking/DLINK.txt> as well as the
1812 Ethernet-HOWTO, available from
1813 <http://www.tldp.org/docs.html#howto>, if you want to use
1814 this. It is possible to have several devices share a single parallel
1815 port and it is safe to compile the corresponding drivers into the
1816 kernel.
1817
1818 To compile this driver as a module, choose M here: the module
1819 will be called de600.
1820
1821config DE620
1822 tristate "D-Link DE620 pocket adapter support"
32fa2bfc 1823 depends on NET_POCKET && PARPORT
1da177e4
LT
1824 ---help---
1825 This is a network (Ethernet) device which attaches to your parallel
1826 port. Read <file:Documentation/networking/DLINK.txt> as well as the
1827 Ethernet-HOWTO, available from
1828 <http://www.tldp.org/docs.html#howto>, if you want to use
1829 this. It is possible to have several devices share a single parallel
1830 port and it is safe to compile the corresponding drivers into the
1831 kernel.
1832
1833 To compile this driver as a module, choose M here: the module
1834 will be called de620.
1835
1836config SGISEEQ
1837 tristate "SGI Seeq ethernet controller support"
49b11bc3 1838 depends on SGI_HAS_SEEQ
1da177e4
LT
1839 help
1840 Say Y here if you have an Seeq based Ethernet network card. This is
1841 used in many Silicon Graphics machines.
1842
1843config DECLANCE
1844 tristate "DEC LANCE ethernet controller support"
d1c0a65f 1845 depends on MACH_DECSTATION
1da177e4
LT
1846 select CRC32
1847 help
1848 This driver is for the series of Ethernet controllers produced by
1849 DEC (now Compaq) based on the AMD Lance chipset, including the
1850 DEPCA series. (This chipset is better known via the NE2100 cards.)
1851
1852config 68360_ENET
1853 bool "Motorola 68360 ethernet controller"
1854 depends on M68360
1855 help
1856 Say Y here if you want to use the built-in ethernet controller of
1857 the Motorola 68360 processor.
1858
1859config FEC
2af6921f 1860 bool "FEC ethernet controller (of ColdFire CPUs)"
b3ff29d2 1861 depends on M523x || M527x || M5272 || M528x || M520x || M532x || MACH_MX27
1da177e4
LT
1862 help
1863 Say Y here if you want to use the built-in 10/100 Fast ethernet
196719ec 1864 controller on some Motorola ColdFire and Freescale i.MX processors.
2af6921f
GU
1865
1866config FEC2
1867 bool "Second FEC ethernet controller (on some ColdFire CPUs)"
1868 depends on FEC
1869 help
1870 Say Y here if you want to use the second built-in 10/100 Fast
1871 ethernet controller on some Motorola ColdFire processors.
1da177e4 1872
5d031e9e
DP
1873config FEC_MPC52xx
1874 tristate "MPC52xx FEC driver"
847cdf42 1875 depends on PPC_MPC52xx && PPC_BESTCOMM
5d031e9e
DP
1876 select CRC32
1877 select PHYLIB
847cdf42 1878 select PPC_BESTCOMM_FEC
5d031e9e
DP
1879 ---help---
1880 This option enables support for the MPC5200's on-chip
1881 Fast Ethernet Controller
1882 If compiled as module, it will be called 'fec_mpc52xx.ko'.
1883
1884config FEC_MPC52xx_MDIO
1885 bool "MPC52xx FEC MDIO bus driver"
1886 depends on FEC_MPC52xx
1887 default y
1888 ---help---
1889 The MPC5200's FEC can connect to the Ethernet either with
1890 an external MII PHY chip or 10 Mbps 7-wire interface
1891 (Motorola? industry standard).
1892 If your board uses an external PHY connected to FEC, enable this.
1893 If not sure, enable.
1894 If compiled as module, it will be called 'fec_mpc52xx_phy.ko'.
1895
1da177e4
LT
1896config NE_H8300
1897 tristate "NE2000 compatible support for H8/300"
d1c0a65f 1898 depends on H8300
1da177e4
LT
1899 help
1900 Say Y here if you want to use the NE2000 compatible
1901 controller on the Renesas H8/300 processor.
1902
452c1ce2
CS
1903config ATL2
1904 tristate "Atheros L2 Fast Ethernet support"
1905 depends on PCI
1906 select CRC32
1907 select MII
1908 help
1909 This driver supports the Atheros L2 fast ethernet adapter.
1910
1911 To compile this driver as a module, choose M here. The module
1912 will be called atl2.
1913
48257c4f 1914source "drivers/net/fs_enet/Kconfig"
1da177e4 1915
d1c0a65f 1916endif # NET_ETHERNET
1da177e4
LT
1917
1918#
1919# Gigabit Ethernet
1920#
1921
f30486d5
JE
1922menuconfig NETDEV_1000
1923 bool "Ethernet (1000 Mbit)"
cbcd2a4c 1924 depends on !UML
f30486d5 1925 default y
06bfb7eb
JE
1926 ---help---
1927 Ethernet (also called IEEE 802.3 or ISO 8802-2) is the most common
1928 type of Local Area Network (LAN) in universities and companies.
1929
1930 Say Y here to get to see options for Gigabit Ethernet drivers.
1931 This option alone does not add any kernel code.
1932 Note that drivers supporting both 100 and 1000 MBit may be listed
1933 under "Ethernet (10 or 100MBit)" instead.
1934
1935 If you say N, all options in this submenu will be skipped and disabled.
f30486d5
JE
1936
1937if NETDEV_1000
1da177e4
LT
1938
1939config ACENIC
1940 tristate "Alteon AceNIC/3Com 3C985/NetGear GA620 Gigabit support"
1941 depends on PCI
1942 ---help---
1943 Say Y here if you have an Alteon AceNIC, 3Com 3C985(B), NetGear
1944 GA620, SGI Gigabit or Farallon PN9000-SX PCI Gigabit Ethernet
1945 adapter. The driver allows for using the Jumbo Frame option (9000
1946 bytes/frame) however it requires that your switches can handle this
1947 as well. To enable Jumbo Frames, add `mtu 9000' to your ifconfig
1948 line.
1949
1950 To compile this driver as a module, choose M here: the
1951 module will be called acenic.
1952
1953config ACENIC_OMIT_TIGON_I
1954 bool "Omit support for old Tigon I based AceNICs"
1955 depends on ACENIC
1956 help
1957 Say Y here if you only have Tigon II based AceNICs and want to leave
1958 out support for the older Tigon I based cards which are no longer
1959 being sold (ie. the original Alteon AceNIC and 3Com 3C985 (non B
1960 version)). This will reduce the size of the driver object by
1961 app. 100KB. If you are not sure whether your card is a Tigon I or a
1962 Tigon II, say N here.
1963
1964 The safe and default value for this is N.
1965
1966config DL2K
df950828 1967 tristate "DL2000/TC902x-based Gigabit Ethernet support"
1da177e4
LT
1968 depends on PCI
1969 select CRC32
1970 help
df950828
K
1971 This driver supports DL2000/TC902x-based Gigabit ethernet cards,
1972 which includes
1da177e4
LT
1973 D-Link DGE-550T Gigabit Ethernet Adapter.
1974 D-Link DL2000-based Gigabit Ethernet Adapter.
df950828 1975 Sundance/Tamarack TC902x Gigabit Ethernet Adapter.
1da177e4
LT
1976
1977 To compile this driver as a module, choose M here: the
1978 module will be called dl2k.
1979
1980config E1000
1981 tristate "Intel(R) PRO/1000 Gigabit Ethernet support"
1982 depends on PCI
1983 ---help---
1984 This driver supports Intel(R) PRO/1000 gigabit ethernet family of
1985 adapters. For more information on how to identify your adapter, go
1986 to the Adapter & Driver ID Guide at:
1987
1988 <http://support.intel.com/support/network/adapter/pro100/21397.htm>
1989
1990 For general information and support, go to the Intel support
1991 website at:
1992
1993 <http://support.intel.com>
1994
1995 More specific information on configuring the driver is in
1996 <file:Documentation/networking/e1000.txt>.
1997
57ce45dd 1998 To compile this driver as a module, choose M here. The module
1da177e4
LT
1999 will be called e1000.
2000
bc7f75fa
AK
2001config E1000E
2002 tristate "Intel(R) PRO/1000 PCI-Express Gigabit Ethernet support"
7ac86bf6 2003 depends on PCI && (!SPARC32 || BROKEN)
bc7f75fa
AK
2004 ---help---
2005 This driver supports the PCI-Express Intel(R) PRO/1000 gigabit
2006 ethernet family of adapters. For PCI or PCI-X e1000 adapters,
2007 use the regular e1000 driver For more information on how to
2008 identify your adapter, go to the Adapter & Driver ID Guide at:
2009
2010 <http://support.intel.com/support/network/adapter/pro100/21397.htm>
2011
2012 For general information and support, go to the Intel support
2013 website at:
2014
2015 <http://support.intel.com>
2016
57ce45dd 2017 To compile this driver as a module, choose M here. The module
bc7f75fa
AK
2018 will be called e1000e.
2019
ab7a9831
SH
2020config IP1000
2021 tristate "IP1000 Gigabit Ethernet support"
2022 depends on PCI && EXPERIMENTAL
2023 select MII
2024 ---help---
2025 This driver supports IP1000 gigabit Ethernet cards.
2026
2027 To compile this driver as a module, choose M here: the module
2028 will be called ipg. This is recommended.
2029
9d5c8243 2030config IGB
3ef6b235 2031 tristate "Intel(R) 82575/82576 PCI-Express Gigabit Ethernet support"
9d5c8243
AK
2032 depends on PCI
2033 ---help---
3ef6b235 2034 This driver supports Intel(R) 82575/82576 gigabit ethernet family of
9d5c8243
AK
2035 adapters. For more information on how to identify your adapter, go
2036 to the Adapter & Driver ID Guide at:
2037
2038 <http://support.intel.com/support/network/adapter/pro100/21397.htm>
2039
2040 For general information and support, go to the Intel support
2041 website at:
2042
2043 <http://support.intel.com>
2044
2045 More specific information on configuring the driver is in
2046 <file:Documentation/networking/e1000.txt>.
2047
2bfc79de 2048 To compile this driver as a module, choose M here. The module
9d5c8243
AK
2049 will be called igb.
2050
421e02f0 2051config IGB_DCA
1d19ecfc 2052 bool "Direct Cache Access (DCA) Support"
421e02f0
JK
2053 default y
2054 depends on IGB && DCA && !(IGB=y && DCA=m)
1d19ecfc
JK
2055 ---help---
2056 Say Y here if you want to use Direct Cache Access (DCA) in the
2057 driver. DCA is a method for warming the CPU cache before data
2058 is used, with the intent of lessening the impact of cache misses.
421e02f0 2059
d4e0fe01
AD
2060config IGBVF
2061 tristate "Intel(R) 82576 Virtual Function Ethernet support"
2062 depends on PCI
2063 ---help---
2064 This driver supports Intel(R) 82576 virtual functions. For more
2065 information on how to identify your adapter, go to the Adapter &
2066 Driver ID Guide at:
2067
2068 <http://support.intel.com/support/network/adapter/pro100/21397.htm>
2069
2070 For general information and support, go to the Intel support
2071 website at:
2072
2073 <http://support.intel.com>
2074
2075 More specific information on configuring the driver is in
2076 <file:Documentation/networking/e1000.txt>.
2077
2078 To compile this driver as a module, choose M here. The module
2079 will be called igbvf.
2080
15d014d1
LB
2081source "drivers/net/ixp2000/Kconfig"
2082
1da177e4
LT
2083config MYRI_SBUS
2084 tristate "MyriCOM Gigabit Ethernet support"
2085 depends on SBUS
2086 help
2087 This driver supports MyriCOM Sbus gigabit Ethernet cards.
2088
2089 To compile this driver as a module, choose M here: the module
2090 will be called myri_sbus. This is recommended.
2091
2092config NS83820
47c51431 2093 tristate "National Semiconductor DP83820 support"
1da177e4
LT
2094 depends on PCI
2095 help
2096 This is a driver for the National Semiconductor DP83820 series
2097 of gigabit ethernet MACs. Cards using this chipset include
2098 the D-Link DGE-500T, PureData's PDP8023Z-TG, SMC's SMC9462TX,
2099 SOHO-GA2000T, SOHO-GA2500T. The driver supports the use of
2100 zero copy.
2101
2102config HAMACHI
2103 tristate "Packet Engines Hamachi GNIC-II support"
2104 depends on PCI
2105 select MII
2106 help
2107 If you have a Gigabit Ethernet card of this type, say Y and read
2108 the Ethernet-HOWTO, available from
2109 <http://www.tldp.org/docs.html#howto>.
2110
57ce45dd 2111 To compile this driver as a module, choose M here. The module will be
1da177e4
LT
2112 called hamachi.
2113
2114config YELLOWFIN
2115 tristate "Packet Engines Yellowfin Gigabit-NIC support (EXPERIMENTAL)"
2116 depends on PCI && EXPERIMENTAL
2117 select CRC32
2118 ---help---
2119 Say Y here if you have a Packet Engines G-NIC PCI Gigabit Ethernet
2120 adapter or the SYM53C885 Ethernet controller. The Gigabit adapter is
2121 used by the Beowulf Linux cluster project. See
2122 <http://cesdis.gsfc.nasa.gov/linux/drivers/yellowfin.html> for more
2123 information about this driver in particular and Beowulf in general.
2124
2125 To compile this driver as a module, choose M here: the module
2126 will be called yellowfin. This is recommended.
2127
2128config R8169
2129 tristate "Realtek 8169 gigabit ethernet support"
2130 depends on PCI
2131 select CRC32
b7372492 2132 select MII
1da177e4
LT
2133 ---help---
2134 Say Y here if you have a Realtek 8169 PCI Gigabit Ethernet adapter.
2135
2136 To compile this driver as a module, choose M here: the module
2137 will be called r8169. This is recommended.
2138
1da177e4
LT
2139config R8169_VLAN
2140 bool "VLAN support"
2141 depends on R8169 && VLAN_8021Q
2142 ---help---
2143 Say Y here for the r8169 driver to support the functions required
2144 by the kernel 802.1Q code.
865c652d 2145
1da177e4
LT
2146 If in doubt, say Y.
2147
1a9e8549 2148config SB1250_MAC
25a72dfe
MR
2149 tristate "SB1250 Gigabit Ethernet support"
2150 depends on SIBYTE_SB1xxx_SOC
f5279ffd 2151 select PHYLIB
25a72dfe
MR
2152 ---help---
2153 This driver supports Gigabit Ethernet interfaces based on the
2154 Broadcom SiByte family of System-On-a-Chip parts. They include
2155 the BCM1120, BCM1125, BCM1125H, BCM1250, BCM1255, BCM1280, BCM1455
2156 and BCM1480 chips.
2157
2158 To compile this driver as a module, choose M here: the module
2159 will be called sb1250-mac.
2160
890e8d0a 2161config SIS190
e797637f 2162 tristate "SiS190/SiS191 gigabit ethernet support"
e9985d53
AB
2163 depends on PCI
2164 select CRC32
2165 select MII
2166 ---help---
e797637f
FR
2167 Say Y here if you have a SiS 190 PCI Fast Ethernet adapter or
2168 a SiS 191 PCI Gigabit Ethernet adapter. Both are expected to
2169 appear in lan on motherboard designs which are based on SiS 965
2170 and SiS 966 south bridge.
e9985d53
AB
2171
2172 To compile this driver as a module, choose M here: the module
2173 will be called sis190. This is recommended.
890e8d0a 2174
baef58b1 2175config SKGE
7a160c73
SH
2176 tristate "New SysKonnect GigaEthernet support"
2177 depends on PCI
baef58b1
SH
2178 select CRC32
2179 ---help---
2180 This driver support the Marvell Yukon or SysKonnect SK-98xx/SK-95xx
2181 and related Gigabit Ethernet adapters. It is a new smaller driver
46a60f2d 2182 with better performance and more complete ethtool support.
baef58b1
SH
2183
2184 It does not support the link failover and network management
5ad887fa 2185 features that "portable" vendor supplied sk98lin driver does.
cd28ab6a 2186
c6f0d75a
DD
2187 This driver supports adapters based on the original Yukon chipset:
2188 Marvell 88E8001, Belkin F5D5005, CNet GigaCard, DLink DGE-530T,
2189 Linksys EG1032/EG1064, 3Com 3C940/3C940B, SysKonnect SK-9871/9872.
2190
2191 It does not support the newer Yukon2 chipset: a separate driver,
2192 sky2, is provided for Yukon2-based adapters.
2193
2194 To compile this driver as a module, choose M here: the module
2195 will be called skge. This is recommended.
cd28ab6a 2196
678aa1f6
SH
2197config SKGE_DEBUG
2198 bool "Debugging interface"
2199 depends on SKGE && DEBUG_FS
2200 help
2201 This option adds the ability to dump driver state for debugging.
2202 The file debugfs/skge/ethX displays the state of the internal
2203 transmit and receive rings.
2204
2205 If unsure, say N.
2206
cd28ab6a 2207config SKY2
8a3e3bfd 2208 tristate "SysKonnect Yukon2 support"
f479b322 2209 depends on PCI
cd28ab6a
SH
2210 select CRC32
2211 ---help---
cab00891 2212 This driver supports Gigabit Ethernet adapters based on the
c6f0d75a
DD
2213 Marvell Yukon 2 chipset:
2214 Marvell 88E8021/88E8022/88E8035/88E8036/88E8038/88E8050/88E8052/
2215 88E8053/88E8055/88E8061/88E8062, SysKonnect SK-9E21D/SK-9S21
2216
f479b322
SH
2217 There is companion driver for the older Marvell Yukon and
2218 Genesis based adapters: skge.
cd28ab6a
SH
2219
2220 To compile this driver as a module, choose M here: the module
2221 will be called sky2. This is recommended.
2222
3cf26753
SH
2223config SKY2_DEBUG
2224 bool "Debugging interface"
2225 depends on SKY2 && DEBUG_FS
2226 help
2227 This option adds the ability to dump driver state for debugging.
2228 The file debugfs/sky2/ethX displays the state of the internal
2229 transmit and receive rings.
2230
2231 If unsure, say N.
1da177e4
LT
2232
2233config VIA_VELOCITY
2234 tristate "VIA Velocity support"
73815538 2235 depends on PCI
1da177e4
LT
2236 select CRC32
2237 select CRC_CCITT
2238 select MII
2239 help
2240 If you have a VIA "Velocity" based network card say Y here.
2241
2242 To compile this driver as a module, choose M here. The module
2243 will be called via-velocity.
2244
2245config TIGON3
2246 tristate "Broadcom Tigon3 support"
2247 depends on PCI
158d7abd 2248 select PHYLIB
1da177e4
LT
2249 help
2250 This driver supports Broadcom Tigon3 based gigabit Ethernet cards.
2251
2252 To compile this driver as a module, choose M here: the module
2253 will be called tg3. This is recommended.
2254
b6016b76
MC
2255config BNX2
2256 tristate "Broadcom NetXtremeII support"
2257 depends on PCI
fba9fe91 2258 select CRC32
57579f76 2259 select FW_LOADER
b6016b76
MC
2260 help
2261 This driver supports Broadcom NetXtremeII gigabit Ethernet cards.
2262
2263 To compile this driver as a module, choose M here: the module
2264 will be called bnx2. This is recommended.
2265
aaec0fab
JO
2266config SPIDER_NET
2267 tristate "Spider Gigabit Ethernet driver"
3342cf0e 2268 depends on PCI && (PPC_IBM_CELL_BLADE || PPC_CELLEB)
9b15879a 2269 select FW_LOADER
aaec0fab
JO
2270 help
2271 This driver supports the Gigabit Ethernet chips present on the
2272 Cell Processor-Based Blades from IBM.
2273
5e123b84
ZR
2274config TSI108_ETH
2275 tristate "Tundra TSI108 gigabit Ethernet support"
2276 depends on TSI108_BRIDGE
2277 help
2278 This driver supports Tundra TSI108 gigabit Ethernet ports.
2279 To compile this driver as a module, choose M here: the module
2280 will be called tsi108_eth.
2281
02c18891
MM
2282config GELIC_NET
2283 tristate "PS3 Gigabit Ethernet driver"
2284 depends on PPC_PS3
1d32e218 2285 select PS3_SYS_MANAGER
02c18891
MM
2286 help
2287 This driver supports the network device on the PS3 game
2288 console. This driver has built-in support for Ethernet.
2289
2290 To compile this driver as a module, choose M here: the
2291 module will be called ps3_gelic.
2292
09dde54c 2293config GELIC_WIRELESS
97ed8390
JL
2294 bool "PS3 Wireless support"
2295 depends on GELIC_NET
2296 select WIRELESS_EXT
2297 help
2298 This option adds the support for the wireless feature of PS3.
2299 If you have the wireless-less model of PS3 or have no plan to
2300 use wireless feature, disabling this option saves memory. As
2301 the driver automatically distinguishes the models, you can
2302 safely enable this option even if you have a wireless-less model.
09dde54c 2303
f409e348
MM
2304config GELIC_WIRELESS_OLD_PSK_INTERFACE
2305 bool "PS3 Wireless private PSK interface (OBSOLETE)"
2306 depends on GELIC_WIRELESS
2307 help
2308 This option retains the obsolete private interface to pass
2309 the PSK from user space programs to the driver. The PSK
2310 stands for 'Pre Shared Key' and is used for WPA[2]-PSK
2311 (WPA-Personal) environment.
2312 If WPA[2]-PSK is used and you need to use old programs that
2313 support only this old interface, say Y. Otherwise N.
2314
2315 If unsure, say N.
2316
1577ecef
AF
2317config FSL_PQ_MDIO
2318 tristate "Freescale PQ MDIO"
2319 depends on FSL_SOC
2320 select PHYLIB
2321 help
2322 This driver supports the MDIO bus used by the gianfar and UCC drivers.
2323
1da177e4
LT
2324config GIANFAR
2325 tristate "Gianfar Ethernet"
3a83156b 2326 depends on FSL_SOC
1577ecef 2327 select FSL_PQ_MDIO
bb40dcbb 2328 select PHYLIB
bf41a7c5 2329 select CRC32
1da177e4 2330 help
ef82a306
JL
2331 This driver supports the Gigabit TSEC on the MPC83xx, MPC85xx,
2332 and MPC86xx family of chips, and the FEC on the 8540.
1da177e4 2333
ce973b14 2334config UCC_GETH
7d776cb5
TT
2335 tristate "Freescale QE Gigabit Ethernet"
2336 depends on QUICC_ENGINE
1577ecef 2337 select FSL_PQ_MDIO
296baae2 2338 select PHYLIB
ce973b14 2339 help
7d776cb5
TT
2340 This driver supports the Gigabit Ethernet mode of the QUICC Engine,
2341 which is available on some Freescale SOCs.
ce973b14 2342
ce973b14
LY
2343config UGETH_MAGIC_PACKET
2344 bool "Magic Packet detection support"
2345 depends on UCC_GETH
2346
d5b9049d
MR
2347config UGETH_TX_ON_DEMAND
2348 bool "Transmit on Demand support"
ce973b14
LY
2349 depends on UCC_GETH
2350
1da177e4 2351config MV643XX_ETH
9c1bbdfe 2352 tristate "Marvell Discovery (643XX) and Orion ethernet support"
952ee9df 2353 depends on MV64360 || MV64X60 || PPC32 || PLAT_ORION
ab307a39 2354 select INET_LRO
ed94493f 2355 select PHYLIB
1da177e4 2356 help
9c1bbdfe
LB
2357 This driver supports the gigabit ethernet MACs in the
2358 Marvell Discovery PPC/MIPS chipset family (MV643XX) and
2359 in the Marvell Orion ARM SoC family.
2360
2361 Some boards that use the Discovery chipset are the Momenco
2362 Ocelot C and Jaguar ATX and Pegasos II.
1da177e4 2363
92744989
GL
2364config XILINX_LL_TEMAC
2365 tristate "Xilinx LL TEMAC (LocalLink Tri-mode Ethernet MAC) driver"
2366 select PHYLIB
2367 depends on PPC_DCR_NATIVE
2368 help
2369 This driver supports the Xilinx 10/100/1000 LocalLink TEMAC
2370 core used in Xilinx Spartan and Virtex FPGAs
2371
5a4faa87
RM
2372config QLA3XXX
2373 tristate "QLogic QLA3XXX Network Driver Support"
2374 depends on PCI
2375 help
2376 This driver supports QLogic ISP3XXX gigabit Ethernet cards.
2377
2378 To compile this driver as a module, choose M here: the module
2379 will be called qla3xxx.
2380
f3cc28c7 2381config ATL1
a6d1f369
JC
2382 tristate "Atheros/Attansic L1 Gigabit Ethernet support"
2383 depends on PCI
f3cc28c7
JC
2384 select CRC32
2385 select MII
2386 help
a6d1f369
JC
2387 This driver supports the Atheros/Attansic L1 gigabit ethernet
2388 adapter.
f3cc28c7
JC
2389
2390 To compile this driver as a module, choose M here. The module
2391 will be called atl1.
2392
a6a53252
JY
2393config ATL1E
2394 tristate "Atheros L1E Gigabit Ethernet support (EXPERIMENTAL)"
2395 depends on PCI && EXPERIMENTAL
2396 select CRC32
2397 select MII
2398 help
2399 This driver supports the Atheros L1E gigabit ethernet adapter.
2400
2401 To compile this driver as a module, choose M here. The module
2402 will be called atl1e.
2403
43250ddd
JY
2404config ATL1C
2405 tristate "Atheros L1C Gigabit Ethernet support (EXPERIMENTAL)"
2406 depends on PCI && EXPERIMENTAL
2407 select CRC32
2408 select MII
2409 help
2410 This driver supports the Atheros L1C gigabit ethernet adapter.
2411
2412 To compile this driver as a module, choose M here. The module
2413 will be called atl1c.
2414
95252236
GFT
2415config JME
2416 tristate "JMicron(R) PCI-Express Gigabit Ethernet support"
2417 depends on PCI
2418 select CRC32
2419 select MII
2420 ---help---
2421 This driver supports the PCI-Express gigabit ethernet adapters
2422 based on JMicron JMC250 chipset.
2423
2424 To compile this driver as a module, choose M here. The module
2425 will be called jme.
2426
f30486d5 2427endif # NETDEV_1000
1da177e4
LT
2428
2429#
2430# 10 Gigabit Ethernet
2431#
2432
f30486d5
JE
2433menuconfig NETDEV_10000
2434 bool "Ethernet (10000 Mbit)"
cbcd2a4c 2435 depends on !UML
f30486d5 2436 default y
06bfb7eb
JE
2437 ---help---
2438 Say Y here to get to see options for 10 Gigabit Ethernet drivers.
2439 This option alone does not add any kernel code.
2440
2441 If you say N, all options in this submenu will be skipped and disabled.
f30486d5
JE
2442
2443if NETDEV_10000
1da177e4 2444
1b1c2e95
BH
2445config MDIO
2446 tristate
2447
8199d3a7
CL
2448config CHELSIO_T1
2449 tristate "Chelsio 10Gb Ethernet support"
2450 depends on PCI
57834ca1 2451 select CRC32
23c3320c 2452 select MDIO
8199d3a7 2453 help
f1d3d38a
SH
2454 This driver supports Chelsio gigabit and 10-gigabit
2455 Ethernet cards. More information about adapter features and
2456 performance tuning is in <file:Documentation/networking/cxgb.txt>.
8199d3a7
CL
2457
2458 For general information about Chelsio and our products, visit
2459 our website at <http://www.chelsio.com>.
2460
2461 For customer support, please visit our customer support page at
2462 <http://www.chelsio.com/support.htm>.
2463
2464 Please send feedback to <linux-bugs@chelsio.com>.
2465
2466 To compile this driver as a module, choose M here: the module
2467 will be called cxgb.
2468
352c417d
SH
2469config CHELSIO_T1_1G
2470 bool "Chelsio gigabit Ethernet support"
2471 depends on CHELSIO_T1
2472 help
2473 Enables support for Chelsio's gigabit Ethernet PCI cards. If you
2474 are using only 10G cards say 'N' here.
2475
58daa68a
JB
2476config CHELSIO_T3_DEPENDS
2477 tristate
2478 depends on PCI && INET
2479 default y
2480
4d22de3e 2481config CHELSIO_T3
194c1fbe 2482 tristate "Chelsio Communications T3 10Gb Ethernet support"
58daa68a 2483 depends on CHELSIO_T3_DEPENDS
2e283962 2484 select FW_LOADER
0f07c4ee 2485 select MDIO
194c1fbe
DLR
2486 help
2487 This driver supports Chelsio T3-based gigabit and 10Gb Ethernet
2488 adapters.
4d22de3e 2489
194c1fbe
DLR
2490 For general information about Chelsio and our products, visit
2491 our website at <http://www.chelsio.com>.
4d22de3e 2492
194c1fbe
DLR
2493 For customer support, please visit our customer support page at
2494 <http://www.chelsio.com/support.htm>.
4d22de3e 2495
194c1fbe 2496 Please send feedback to <linux-bugs@chelsio.com>.
4d22de3e 2497
194c1fbe
DLR
2498 To compile this driver as a module, choose M here: the module
2499 will be called cxgb3.
4d22de3e 2500
7a291083
JBT
2501config EHEA
2502 tristate "eHEA Ethernet support"
60d5019b 2503 depends on IBMEBUS && INET && SPARSEMEM
d4dc4ec9 2504 select INET_LRO
7a291083
JBT
2505 ---help---
2506 This driver supports the IBM pSeries eHEA ethernet adapter.
2507
2508 To compile the driver as a module, choose M here. The module
2509 will be called ehea.
2510
01f2e4ea 2511config ENIC
eb8a4cb6 2512 tristate "Cisco 10G Ethernet NIC support"
01f2e4ea
SF
2513 depends on PCI && INET
2514 select INET_LRO
2515 help
2516 This enables the support for the Cisco 10G Ethernet card.
2517
9a799d71
AK
2518config IXGBE
2519 tristate "Intel(R) 10GbE PCI Express adapters support"
177db6ff 2520 depends on PCI && INET
6b73e10d 2521 select MDIO
9a799d71
AK
2522 ---help---
2523 This driver supports Intel(R) 10GbE PCI Express family of
2524 adapters. For more information on how to identify your adapter, go
2525 to the Adapter & Driver ID Guide at:
2526
2527 <http://support.intel.com/support/network/adapter/pro100/21397.htm>
2528
2529 For general information and support, go to the Intel support
2530 website at:
2531
2532 <http://support.intel.com>
2533
57ce45dd 2534 To compile this driver as a module, choose M here. The module
9a799d71
AK
2535 will be called ixgbe.
2536
5dd2d332 2537config IXGBE_DCA
1d19ecfc 2538 bool "Direct Cache Access (DCA) Support"
5dd2d332
JG
2539 default y
2540 depends on IXGBE && DCA && !(IXGBE=y && DCA=m)
1d19ecfc
JK
2541 ---help---
2542 Say Y here if you want to use Direct Cache Access (DCA) in the
2543 driver. DCA is a method for warming the CPU cache before data
2544 is used, with the intent of lessening the impact of cache misses.
5dd2d332 2545
7a6b6f51 2546config IXGBE_DCB
2f90b865
AD
2547 bool "Data Center Bridging (DCB) Support"
2548 default n
7a6b6f51 2549 depends on IXGBE && DCB
2f90b865
AD
2550 ---help---
2551 Say Y here if you want to use Data Center Bridging (DCB) in the
2552 driver.
2553
2554 If unsure, say N.
2555
1da177e4
LT
2556config IXGB
2557 tristate "Intel(R) PRO/10GbE support"
2558 depends on PCI
2559 ---help---
9a799d71
AK
2560 This driver supports Intel(R) PRO/10GbE family of adapters for
2561 PCI-X type cards. For PCI-E type cards, use the "ixgbe" driver
2562 instead. For more information on how to identify your adapter, go
1da177e4
LT
2563 to the Adapter & Driver ID Guide at:
2564
2565 <http://support.intel.com/support/network/adapter/pro100/21397.htm>
2566
2567 For general information and support, go to the Intel support
2568 website at:
2569
2570 <http://support.intel.com>
2571
2572 More specific information on configuring the driver is in
2573 <file:Documentation/networking/ixgb.txt>.
2574
57ce45dd 2575 To compile this driver as a module, choose M here. The module
1da177e4
LT
2576 will be called ixgb.
2577
1da177e4
LT
2578config S2IO
2579 tristate "S2IO 10Gbe XFrame NIC"
2580 depends on PCI
2581 ---help---
2582 This driver supports the 10Gbe XFrame NIC of S2IO.
9eb343ae
AM
2583 More specific information on configuring the driver is in
2584 <file:Documentation/networking/s2io.txt>.
1da177e4 2585
f1782852
RV
2586config VXGE
2587 tristate "Neterion X3100 Series 10GbE PCIe Server Adapter"
2588 depends on PCI && INET
2589 ---help---
2590 This driver supports Neterion Inc's X3100 Series 10 GbE PCIe
2591 I/O Virtualized Server Adapter.
2592 More specific information on configuring the driver is in
2593 <file:Documentation/networking/vxge.txt>.
2594
2595config VXGE_DEBUG_TRACE_ALL
2596 bool "Enabling All Debug trace statments in driver"
2597 default n
2598 depends on VXGE
2599 ---help---
2600 Say Y here if you want to enabling all the debug trace statements in
2601 driver. By default only few debug trace statements are enabled.
2602
0da34b6d
BG
2603config MYRI10GE
2604 tristate "Myricom Myri-10G Ethernet support"
e0d5dab2 2605 depends on PCI && INET
0da34b6d
BG
2606 select FW_LOADER
2607 select CRC32
1e6e9342 2608 select INET_LRO
0da34b6d
BG
2609 ---help---
2610 This driver supports Myricom Myri-10G Dual Protocol interface in
2611 Ethernet mode. If the eeprom on your board is not recent enough,
2612 you will need a newer firmware image.
2613 You may get this image or more information, at:
2614
d2794905 2615 <http://www.myri.com/scs/download-Myri10GE.html>
0da34b6d 2616
57ce45dd 2617 To compile this driver as a module, choose M here. The module
0da34b6d
BG
2618 will be called myri10ge.
2619
5dd2d332 2620config MYRI10GE_DCA
1d19ecfc 2621 bool "Direct Cache Access (DCA) Support"
5dd2d332
JG
2622 default y
2623 depends on MYRI10GE && DCA && !(MYRI10GE=y && DCA=m)
1d19ecfc
JK
2624 ---help---
2625 Say Y here if you want to use Direct Cache Access (DCA) in the
2626 driver. DCA is a method for warming the CPU cache before data
2627 is used, with the intent of lessening the impact of cache misses.
5dd2d332 2628
3d396eb1
AK
2629config NETXEN_NIC
2630 tristate "NetXen Multi port (1/10) Gigabit Ethernet NIC"
5ac36615 2631 depends on PCI
3d396eb1
AK
2632 help
2633 This enables the support for NetXen's Gigabit Ethernet card.
2634
a3138df9
DM
2635config NIU
2636 tristate "Sun Neptune 10Gbit Ethernet support"
2637 depends on PCI
2638 help
2639 This enables support for cards based upon Sun's
2640 Neptune chipset.
2641
f5cd7872
OJ
2642config PASEMI_MAC
2643 tristate "PA Semi 1/10Gbit MAC"
5beaf7d6 2644 depends on PPC_PASEMI && PCI
bb6e9590 2645 select PHYLIB
28ae79f5 2646 select INET_LRO
f5cd7872
OJ
2647 help
2648 This driver supports the on-chip 1/10Gbit Ethernet controller on
2649 PA Semi's PWRficient line of chips.
2650
c27a02cd
YP
2651config MLX4_EN
2652 tristate "Mellanox Technologies 10Gbit Ethernet support"
2653 depends on PCI && INET
2654 select MLX4_CORE
2655 select INET_LRO
2656 help
2657 This driver supports Mellanox Technologies ConnectX Ethernet
2658 devices.
2659
225c7b1f
RD
2660config MLX4_CORE
2661 tristate
2662 depends on PCI
2663 default n
2664
2665config MLX4_DEBUG
2666 bool "Verbose debugging output" if (MLX4_CORE && EMBEDDED)
f550d94c 2667 depends on MLX4_CORE
225c7b1f
RD
2668 default y
2669 ---help---
2670 This option causes debugging code to be compiled into the
2671 mlx4_core driver. The output can be turned on via the
2672 debug_level module parameter (which can also be set after
2673 the driver is loaded through sysfs).
2674
1a348ccc
AG
2675config TEHUTI
2676 tristate "Tehuti Networks 10G Ethernet"
2677 depends on PCI
2678 help
2679 Tehuti Networks 10G Ethernet NIC
2680
a2fbb9ea
ET
2681config BNX2X
2682 tristate "Broadcom NetXtremeII 10Gb support"
2683 depends on PCI
94a78b79 2684 select FW_LOADER
07b270ea 2685 select ZLIB_INFLATE
34f80b04 2686 select LIBCRC32C
a2fbb9ea
ET
2687 help
2688 This driver supports Broadcom NetXtremeII 10 gigabit Ethernet cards.
2689 To compile this driver as a module, choose M here: the module
2690 will be called bnx2x. This is recommended.
2691
c4e84bde
RM
2692config QLGE
2693 tristate "QLogic QLGE 10Gb Ethernet Driver Support"
2694 depends on PCI
2695 help
2696 This driver supports QLogic ISP8XXX 10Gb Ethernet cards.
2697
2698 To compile this driver as a module, choose M here: the module
2699 will be called qlge.
2700
8ceee660 2701source "drivers/net/sfc/Kconfig"
a2fbb9ea 2702
6b7c5b94
SP
2703source "drivers/net/benet/Kconfig"
2704
f30486d5 2705endif # NETDEV_10000
1da177e4 2706
1da177e4
LT
2707source "drivers/net/tokenring/Kconfig"
2708
2709source "drivers/net/wireless/Kconfig"
2710
143ee2d5
IPG
2711source "drivers/net/wimax/Kconfig"
2712
5b2fc499
JG
2713source "drivers/net/usb/Kconfig"
2714
1da177e4 2715source "drivers/net/pcmcia/Kconfig"
1da177e4
LT
2716
2717source "drivers/net/wan/Kconfig"
2718
2719source "drivers/atm/Kconfig"
2720
2721source "drivers/s390/net/Kconfig"
2722
0d160211
JF
2723config XEN_NETDEV_FRONTEND
2724 tristate "Xen network device frontend driver"
2725 depends on XEN
2726 default y
2727 help
2728 The network device frontend driver allows the kernel to
2729 access network devices exported exported by a virtual
2730 machine containing a physical network device driver. The
2731 frontend driver is intended for unprivileged guest domains;
2732 if you are compiling a kernel for a Xen guest, you almost
2733 certainly want to enable this.
2734
1da177e4
LT
2735config ISERIES_VETH
2736 tristate "iSeries Virtual Ethernet driver support"
cbcd2a4c 2737 depends on PPC_ISERIES
1da177e4 2738
f89efd52
MP
2739config RIONET
2740 tristate "RapidIO Ethernet over messaging driver support"
a81c52a8 2741 depends on RAPIDIO
f89efd52
MP
2742
2743config RIONET_TX_SIZE
2744 int "Number of outbound queue entries"
2745 depends on RIONET
2746 default "128"
2747
2748config RIONET_RX_SIZE
2749 int "Number of inbound queue entries"
2750 depends on RIONET
2751 default "128"
2752
1da177e4 2753config FDDI
eb56092f 2754 tristate "FDDI driver support"
e89a2cfb 2755 depends on (PCI || EISA || TC)
1da177e4
LT
2756 help
2757 Fiber Distributed Data Interface is a high speed local area network
2758 design; essentially a replacement for high speed Ethernet. FDDI can
2759 run over copper or fiber. If you are connected to such a network and
2760 want a driver for the FDDI card in your computer, say Y here (and
2761 then also Y to the driver for your FDDI card, below). Most people
2762 will say N.
2763
2764config DEFXX
e89a2cfb
MR
2765 tristate "Digital DEFTA/DEFEA/DEFPA adapter support"
2766 depends on FDDI && (PCI || EISA || TC)
2767 ---help---
2768 This is support for the DIGITAL series of TURBOchannel (DEFTA),
2769 EISA (DEFEA) and PCI (DEFPA) controllers which can connect you
2770 to a local FDDI network.
2771
2772 To compile this driver as a module, choose M here: the module
2773 will be called defxx. If unsure, say N.
2774
2775config DEFXX_MMIO
2776 bool
2777 prompt "Use MMIO instead of PIO" if PCI || EISA
2778 depends on DEFXX
2779 default n if PCI || EISA
2780 default y
2781 ---help---
2782 This instructs the driver to use EISA or PCI memory-mapped I/O
2783 (MMIO) as appropriate instead of programmed I/O ports (PIO).
2784 Enabling this gives an improvement in processing time in parts
2785 of the driver, but it may cause problems with EISA (DEFEA)
2786 adapters. TURBOchannel does not have the concept of I/O ports,
2787 so MMIO is always used for these (DEFTA) adapters.
2788
2789 If unsure, say N.
1da177e4
LT
2790
2791config SKFP
2792 tristate "SysKonnect FDDI PCI support"
2793 depends on FDDI && PCI
bc63eb9c 2794 select BITREVERSE
1da177e4
LT
2795 ---help---
2796 Say Y here if you have a SysKonnect FDDI PCI adapter.
2797 The following adapters are supported by this driver:
2798 - SK-5521 (SK-NET FDDI-UP)
2799 - SK-5522 (SK-NET FDDI-UP DAS)
2800 - SK-5541 (SK-NET FDDI-FP)
2801 - SK-5543 (SK-NET FDDI-LP)
2802 - SK-5544 (SK-NET FDDI-LP DAS)
2803 - SK-5821 (SK-NET FDDI-UP64)
2804 - SK-5822 (SK-NET FDDI-UP64 DAS)
2805 - SK-5841 (SK-NET FDDI-FP64)
2806 - SK-5843 (SK-NET FDDI-LP64)
2807 - SK-5844 (SK-NET FDDI-LP64 DAS)
2808 - Netelligent 100 FDDI DAS Fibre SC
2809 - Netelligent 100 FDDI SAS Fibre SC
2810 - Netelligent 100 FDDI DAS UTP
2811 - Netelligent 100 FDDI SAS UTP
2812 - Netelligent 100 FDDI SAS Fibre MIC
2813
2814 Read <file:Documentation/networking/skfp.txt> for information about
2815 the driver.
2816
2817 Questions concerning this driver can be addressed to:
2818 <linux@syskonnect.de>
2819
2820 To compile this driver as a module, choose M here: the module
2821 will be called skfp. This is recommended.
2822
2823config HIPPI
2824 bool "HIPPI driver support (EXPERIMENTAL)"
cbcd2a4c 2825 depends on EXPERIMENTAL && INET && PCI
1da177e4
LT
2826 help
2827 HIgh Performance Parallel Interface (HIPPI) is a 800Mbit/sec and
2828 1600Mbit/sec dual-simplex switched or point-to-point network. HIPPI
2829 can run over copper (25m) or fiber (300m on multi-mode or 10km on
2830 single-mode). HIPPI networks are commonly used for clusters and to
2831 connect to super computers. If you are connected to a HIPPI network
2832 and have a HIPPI network card in your computer that you want to use
2833 under Linux, say Y here (you must also remember to enable the driver
2834 for your HIPPI card below). Most people will say N here.
2835
2836config ROADRUNNER
2837 tristate "Essential RoadRunner HIPPI PCI adapter support (EXPERIMENTAL)"
2838 depends on HIPPI && PCI
2839 help
2840 Say Y here if this is your PCI HIPPI network card.
2841
2842 To compile this driver as a module, choose M here: the module
2843 will be called rrunner. If unsure, say N.
2844
2845config ROADRUNNER_LARGE_RINGS
2846 bool "Use large TX/RX rings (EXPERIMENTAL)"
2847 depends on ROADRUNNER
2848 help
2849 If you say Y here, the RoadRunner driver will preallocate up to 2 MB
2850 of additional memory to allow for fastest operation, both for
2851 transmitting and receiving. This memory cannot be used by any other
2852 kernel code or by user space programs. Say Y here only if you have
2853 the memory.
2854
2855config PLIP
2856 tristate "PLIP (parallel port) support"
cbcd2a4c 2857 depends on PARPORT
1da177e4
LT
2858 ---help---
2859 PLIP (Parallel Line Internet Protocol) is used to create a
2860 reasonably fast mini network consisting of two (or, rarely, more)
2861 local machines. A PLIP link from a Linux box is a popular means to
2862 install a Linux distribution on a machine which doesn't have a
2863 CD-ROM drive (a minimal system has to be transferred with floppies
2864 first). The kernels on both machines need to have this PLIP option
2865 enabled for this to work.
2866
2867 The PLIP driver has two modes, mode 0 and mode 1. The parallel
2868 ports (the connectors at the computers with 25 holes) are connected
2869 with "null printer" or "Turbo Laplink" cables which can transmit 4
2870 bits at a time (mode 0) or with special PLIP cables, to be used on
2871 bidirectional parallel ports only, which can transmit 8 bits at a
2872 time (mode 1); you can find the wiring of these cables in
2873 <file:Documentation/networking/PLIP.txt>. The cables can be up to
2874 15m long. Mode 0 works also if one of the machines runs DOS/Windows
2875 and has some PLIP software installed, e.g. the Crynwr PLIP packet
2876 driver (<http://oak.oakland.edu/simtel.net/msdos/pktdrvr-pre.html>)
2877 and winsock or NCSA's telnet.
2878
2879 If you want to use PLIP, say Y and read the PLIP mini-HOWTO as well
2880 as the NET-3-HOWTO, both available from
2881 <http://www.tldp.org/docs.html#howto>. Note that the PLIP
2882 protocol has been changed and this PLIP driver won't work together
2883 with the PLIP support in Linux versions 1.0.x. This option enlarges
2884 your kernel by about 8 KB.
2885
57ce45dd
AB
2886 To compile this driver as a module, choose M here. The module
2887 will be called plip. If unsure, say Y or M, in case you buy
2888 a laptop later.
1da177e4
LT
2889
2890config PPP
2891 tristate "PPP (point-to-point protocol) support"
b6e37e55 2892 select SLHC
1da177e4
LT
2893 ---help---
2894 PPP (Point to Point Protocol) is a newer and better SLIP. It serves
2895 the same purpose: sending Internet traffic over telephone (and other
2896 serial) lines. Ask your access provider if they support it, because
2897 otherwise you can't use it; most Internet access providers these
2898 days support PPP rather than SLIP.
2899
2900 To use PPP, you need an additional program called pppd as described
2901 in the PPP-HOWTO, available at
2902 <http://www.tldp.org/docs.html#howto>. Make sure that you have
2903 the version of pppd recommended in <file:Documentation/Changes>.
2904 The PPP option enlarges your kernel by about 16 KB.
2905
2906 There are actually two versions of PPP: the traditional PPP for
2907 asynchronous lines, such as regular analog phone lines, and
2908 synchronous PPP which can be used over digital ISDN lines for
2909 example. If you want to use PPP over phone lines or other
2910 asynchronous serial lines, you need to say Y (or M) here and also to
2911 the next option, "PPP support for async serial ports". For PPP over
2912 synchronous lines, you should say Y (or M) here and to "Support
2913 synchronous PPP", below.
2914
2915 If you said Y to "Version information on all symbols" above, then
2916 you cannot compile the PPP driver into the kernel; you can then only
2917 compile it as a module. To compile this driver as a module, choose M
57ce45dd 2918 here. The module will be called ppp_generic.
1da177e4
LT
2919
2920config PPP_MULTILINK
2921 bool "PPP multilink support (EXPERIMENTAL)"
2922 depends on PPP && EXPERIMENTAL
2923 help
2924 PPP multilink is a protocol (defined in RFC 1990) which allows you
2925 to combine several (logical or physical) lines into one logical PPP
2926 connection, so that you can utilize your full bandwidth.
2927
2928 This has to be supported at the other end as well and you need a
2929 version of the pppd daemon which understands the multilink protocol.
2930
2931 If unsure, say N.
2932
2933config PPP_FILTER
2934 bool "PPP filtering"
2935 depends on PPP
2936 help
2937 Say Y here if you want to be able to filter the packets passing over
2938 PPP interfaces. This allows you to control which packets count as
2939 activity (i.e. which packets will reset the idle timer or bring up
47c51431 2940 a demand-dialed link) and which packets are to be dropped entirely.
1da177e4
LT
2941 You need to say Y here if you wish to use the pass-filter and
2942 active-filter options to pppd.
2943
2944 If unsure, say N.
2945
2946config PPP_ASYNC
2947 tristate "PPP support for async serial ports"
2948 depends on PPP
2949 select CRC_CCITT
2950 ---help---
2951 Say Y (or M) here if you want to be able to use PPP over standard
2952 asynchronous serial ports, such as COM1 or COM2 on a PC. If you use
2953 a modem (not a synchronous or ISDN modem) to contact your ISP, you
2954 need this option.
2955
2956 To compile this driver as a module, choose M here.
2957
2958 If unsure, say Y.
2959
2960config PPP_SYNC_TTY
2961 tristate "PPP support for sync tty ports"
2962 depends on PPP
2963 help
2964 Say Y (or M) here if you want to be able to use PPP over synchronous
2965 (HDLC) tty devices, such as the SyncLink adapter. These devices
2966 are often used for high-speed leased lines like T1/E1.
2967
2968 To compile this driver as a module, choose M here.
2969
2970config PPP_DEFLATE
2971 tristate "PPP Deflate compression"
2972 depends on PPP
2973 select ZLIB_INFLATE
2974 select ZLIB_DEFLATE
2975 ---help---
2976 Support for the Deflate compression method for PPP, which uses the
2977 Deflate algorithm (the same algorithm that gzip uses) to compress
2978 each PPP packet before it is sent over the wire. The machine at the
2979 other end of the PPP link (usually your ISP) has to support the
2980 Deflate compression method as well for this to be useful. Even if
2981 they don't support it, it is safe to say Y here.
2982
2983 To compile this driver as a module, choose M here.
2984
2985config PPP_BSDCOMP
2986 tristate "PPP BSD-Compress compression"
2987 depends on PPP
2988 ---help---
2989 Support for the BSD-Compress compression method for PPP, which uses
2990 the LZW compression method to compress each PPP packet before it is
2991 sent over the wire. The machine at the other end of the PPP link
2992 (usually your ISP) has to support the BSD-Compress compression
2993 method as well for this to be useful. Even if they don't support it,
2994 it is safe to say Y here.
2995
2996 The PPP Deflate compression method ("PPP Deflate compression",
2997 above) is preferable to BSD-Compress, because it compresses better
2998 and is patent-free.
2999
3000 Note that the BSD compression code will always be compiled as a
3001 module; it is called bsd_comp and will show up in the directory
3002 modules once you have said "make modules". If unsure, say N.
3003
b3f9b92a
MD
3004config PPP_MPPE
3005 tristate "PPP MPPE compression (encryption) (EXPERIMENTAL)"
3006 depends on PPP && EXPERIMENTAL
3007 select CRYPTO
3008 select CRYPTO_SHA1
3009 select CRYPTO_ARC4
bcbaecbb 3010 select CRYPTO_ECB
b3f9b92a
MD
3011 ---help---
3012 Support for the MPPE Encryption protocol, as employed by the
3013 Microsoft Point-to-Point Tunneling Protocol.
3014
3015 See http://pptpclient.sourceforge.net/ for information on
3016 configuring PPTP clients and servers to utilize this method.
3017
1da177e4
LT
3018config PPPOE
3019 tristate "PPP over Ethernet (EXPERIMENTAL)"
3020 depends on EXPERIMENTAL && PPP
3021 help
3022 Support for PPP over Ethernet.
3023
3024 This driver requires the latest version of pppd from the CVS
3025 repository at cvs.samba.org. Alternatively, see the
3026 RoaringPenguin package (<http://www.roaringpenguin.com/pppoe>)
3027 which contains instruction on how to use this driver (under
3028 the heading "Kernel mode PPPoE").
3029
3030config PPPOATM
3031 tristate "PPP over ATM"
3032 depends on ATM && PPP
3033 help
3034 Support PPP (Point to Point Protocol) encapsulated in ATM frames.
3035 This implementation does not yet comply with section 8 of RFC2364,
3036 which can lead to bad results if the ATM peer loses state and
3037 changes its encapsulation unilaterally.
3038
3557baab
JC
3039config PPPOL2TP
3040 tristate "PPP over L2TP (EXPERIMENTAL)"
143cf353 3041 depends on EXPERIMENTAL && PPP && INET
3557baab
JC
3042 help
3043 Support for PPP-over-L2TP socket family. L2TP is a protocol
3044 used by ISPs and enterprises to tunnel PPP traffic over UDP
3045 tunnels. L2TP is replacing PPTP for VPN uses.
3046
3047 This kernel component handles only L2TP data packets: a
3048 userland daemon handles L2TP the control protocol (tunnel
3049 and session setup). One such daemon is OpenL2TP
3050 (http://openl2tp.sourceforge.net/).
3051
1da177e4
LT
3052config SLIP
3053 tristate "SLIP (serial line) support"
1da177e4
LT
3054 ---help---
3055 Say Y if you intend to use SLIP or CSLIP (compressed SLIP) to
3056 connect to your Internet service provider or to connect to some
3057 other local Unix box or if you want to configure your Linux box as a
3058 Slip/CSlip server for other people to dial in. SLIP (Serial Line
3059 Internet Protocol) is a protocol used to send Internet traffic over
3060 serial connections such as telephone lines or null modem cables;
3061 nowadays, the protocol PPP is more commonly used for this same
3062 purpose.
3063
3064 Normally, your access provider has to support SLIP in order for you
3065 to be able to use it, but there is now a SLIP emulator called SLiRP
3066 around (available from
3067 <ftp://ibiblio.org/pub/Linux/system/network/serial/>) which
3068 allows you to use SLIP over a regular dial up shell connection. If
3069 you plan to use SLiRP, make sure to say Y to CSLIP, below. The
3070 NET-3-HOWTO, available from
3071 <http://www.tldp.org/docs.html#howto>, explains how to
3072 configure SLIP. Note that you don't need this option if you just
3073 want to run term (term is a program which gives you almost full
3074 Internet connectivity if you have a regular dial up shell account on
3075 some Internet connected Unix computer. Read
3076 <http://www.bart.nl/~patrickr/term-howto/Term-HOWTO.html>). SLIP
3077 support will enlarge your kernel by about 4 KB. If unsure, say N.
3078
57ce45dd
AB
3079 To compile this driver as a module, choose M here. The module
3080 will be called slip.
1da177e4
LT
3081
3082config SLIP_COMPRESSED
3083 bool "CSLIP compressed headers"
3084 depends on SLIP
b6e37e55 3085 select SLHC
1da177e4
LT
3086 ---help---
3087 This protocol is faster than SLIP because it uses compression on the
3088 TCP/IP headers (not on the data itself), but it has to be supported
3089 on both ends. Ask your access provider if you are not sure and
3090 answer Y, just in case. You will still be able to use plain SLIP. If
3091 you plan to use SLiRP, the SLIP emulator (available from
3092 <ftp://ibiblio.org/pub/Linux/system/network/serial/>) which
3093 allows you to use SLIP over a regular dial up shell connection, you
3094 definitely want to say Y here. The NET-3-HOWTO, available from
3095 <http://www.tldp.org/docs.html#howto>, explains how to configure
3096 CSLIP. This won't enlarge your kernel.
3097
b6e37e55
RB
3098config SLHC
3099 tristate
3100 help
3101 This option enables Van Jacobsen serial line header compression
3102 routines.
3103
1da177e4
LT
3104config SLIP_SMART
3105 bool "Keepalive and linefill"
3106 depends on SLIP
3107 help
3108 Adds additional capabilities to the SLIP driver to support the
3109 RELCOM line fill and keepalive monitoring. Ideal on poor quality
3110 analogue lines.
3111
3112config SLIP_MODE_SLIP6
3113 bool "Six bit SLIP encapsulation"
3114 depends on SLIP
3115 help
3116 Just occasionally you may need to run IP over hostile serial
3117 networks that don't pass all control characters or are only seven
3118 bit. Saying Y here adds an extra mode you can use with SLIP:
3119 "slip6". In this mode, SLIP will only send normal ASCII symbols over
3120 the serial device. Naturally, this has to be supported at the other
3121 end of the link as well. It's good enough, for example, to run IP
3122 over the async ports of a Camtec JNT Pad. If unsure, say N.
3123
3124config NET_FC
3125 bool "Fibre Channel driver support"
cbcd2a4c 3126 depends on SCSI && PCI
1da177e4
LT
3127 help
3128 Fibre Channel is a high speed serial protocol mainly used to connect
3129 large storage devices to the computer; it is compatible with and
3130 intended to replace SCSI.
3131
3132 If you intend to use Fibre Channel, you need to have a Fibre channel
3133 adaptor card in your computer; say Y here and to the driver for your
3134 adaptor below. You also should have said Y to "SCSI support" and
3135 "SCSI generic support".
3136
1da177e4
LT
3137config NETCONSOLE
3138 tristate "Network console logging support (EXPERIMENTAL)"
5e43db77 3139 depends on EXPERIMENTAL
1da177e4
LT
3140 ---help---
3141 If you want to log kernel messages over the network, enable this.
3142 See <file:Documentation/networking/netconsole.txt> for details.
3143
0bcc1816
SS
3144config NETCONSOLE_DYNAMIC
3145 bool "Dynamic reconfiguration of logging targets (EXPERIMENTAL)"
3146 depends on NETCONSOLE && SYSFS && EXPERIMENTAL
3147 select CONFIGFS_FS
3148 help
3149 This option enables the ability to dynamically reconfigure target
3150 parameters (interface, IP addresses, port numbers, MAC addresses)
3151 at runtime through a userspace interface exported using configfs.
3152 See <file:Documentation/networking/netconsole.txt> for details.
3153
54208991
RD
3154config NETPOLL
3155 def_bool NETCONSOLE
3156
54208991
RD
3157config NETPOLL_TRAP
3158 bool "Netpoll traffic trapping"
3159 default n
3160 depends on NETPOLL
3161
3162config NET_POLL_CONTROLLER
3163 def_bool NETPOLL
3164
296f96fc
RR
3165config VIRTIO_NET
3166 tristate "Virtio network driver (EXPERIMENTAL)"
3167 depends on EXPERIMENTAL && VIRTIO
3168 ---help---
0ad07ec1
AL
3169 This is the virtual network driver for virtio. It can be used with
3170 lguest or QEMU based VMMs (like KVM or Xen). Say Y or M.
296f96fc 3171
d1c0a65f 3172endif # NETDEVICES