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