Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1 | # |
| 2 | # Network device configuration |
| 3 | # |
| 4 | |
Jean-Christophe PLAGNIOL-VILLARD | ee621dd | 2010-08-08 06:21:33 +0200 | [diff] [blame] | 5 | config HAVE_NET_MACB |
| 6 | bool |
| 7 | |
Jan Engelhardt | d1c0a65 | 2007-06-13 12:48:53 -0700 | [diff] [blame] | 8 | menuconfig NETDEVICES |
Paolo 'Blaisorblade' Giarrusso | ce2d2ae | 2006-01-18 17:42:59 -0800 | [diff] [blame] | 9 | default y if UML |
Jan Engelhardt | e000982 | 2007-07-21 19:11:35 -0700 | [diff] [blame] | 10 | depends on NET |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 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 | |
Randy Dunlap | 1618cb0 | 2006-09-25 23:11:21 -0700 | [diff] [blame] | 27 | # All the following symbols are dependent on NETDEVICES - do not repeat |
| 28 | # that for each of the symbols. |
| 29 | if NETDEVICES |
Randy Dunlap | cbcd2a4 | 2005-07-27 13:04:35 -0700 | [diff] [blame] | 30 | |
Jamal Hadi Salim | 253af42 | 2006-01-08 22:34:25 -0800 | [diff] [blame] | 31 | config IFB |
| 32 | tristate "Intermediate Functional Block support" |
| 33 | depends on NET_CLS_ACT |
| 34 | ---help--- |
Matt LaPlante | 3cb2fcc | 2006-11-30 05:22:59 +0100 | [diff] [blame] | 35 | This is an intermediate driver that allows sharing of |
Jamal Hadi Salim | 253af42 | 2006-01-08 22:34:25 -0800 | [diff] [blame] | 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 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 44 | config DUMMY |
| 45 | tristate "Dummy net driver support" |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 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 | |
| 63 | config BONDING |
| 64 | tristate "Bonding driver support" |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 65 | depends on INET |
Brian Haley | 305d552 | 2008-11-04 17:51:14 -0800 | [diff] [blame] | 66 | depends on IPV6 || IPV6=n |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 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 |
Jon Mason | 47c5143 | 2006-02-12 11:53:04 -0600 | [diff] [blame] | 73 | performance and high availability operation. |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 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 | |
Patrick McHardy | b863ceb | 2007-07-14 18:55:06 -0700 | [diff] [blame] | 81 | config 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 | |
Patrick McHardy | 3dbf8d5 | 2008-02-26 17:52:05 -0800 | [diff] [blame] | 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 | |
Patrick McHardy | b863ceb | 2007-07-14 18:55:06 -0700 | [diff] [blame] | 93 | To compile this driver as a module, choose M here: the module |
| 94 | will be called macvlan. |
| 95 | |
Arnd Bergmann | 20d29d7 | 2010-01-30 12:24:26 +0000 | [diff] [blame] | 96 | config 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 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 108 | config EQUALIZER |
| 109 | tristate "EQL (serial line load balancing) support" |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 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 | |
| 127 | config TUN |
| 128 | tristate "Universal TUN/TAP device driver support" |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 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 | |
Pavel Emelyanov | e314dbd | 2007-09-25 16:14:46 -0700 | [diff] [blame] | 150 | config VETH |
Rusty Russell | 6a9a025 | 2007-11-06 20:35:55 -0800 | [diff] [blame] | 151 | tristate "Virtual ethernet pair device" |
Pavel Emelyanov | e314dbd | 2007-09-25 16:14:46 -0700 | [diff] [blame] | 152 | ---help--- |
Rusty Russell | 6a9a025 | 2007-11-06 20:35:55 -0800 | [diff] [blame] | 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. |
Pavel Emelyanov | e314dbd | 2007-09-25 16:14:46 -0700 | [diff] [blame] | 156 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 157 | config NET_SB1000 |
| 158 | tristate "General Instruments Surfboard 1000" |
Randy Dunlap | cbcd2a4 | 2005-07-27 13:04:35 -0700 | [diff] [blame] | 159 | depends on PNP |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 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 | |
Adrian Bunk | f65fd8f | 2006-01-05 22:45:41 -0800 | [diff] [blame] | 181 | source "drivers/net/arcnet/Kconfig" |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 182 | |
Randy Dunlap | 81ccb49 | 2010-10-13 15:18:59 +0000 | [diff] [blame] | 183 | config 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 | |
Andy Fleming | 00db818 | 2005-07-30 19:31:23 -0400 | [diff] [blame] | 190 | source "drivers/net/phy/Kconfig" |
| 191 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 192 | # |
| 193 | # Ethernet |
| 194 | # |
| 195 | |
Jeff Kirsher | c1abc95 | 2011-03-29 18:25:21 -0700 | [diff] [blame^] | 196 | source "drivers/net/ethernet/Kconfig" |
| 197 | |
Jan Engelhardt | d1c0a65 | 2007-06-13 12:48:53 -0700 | [diff] [blame] | 198 | menuconfig NET_ETHERNET |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 199 | bool "Ethernet (10 or 100Mbit)" |
Jan Engelhardt | d1c0a65 | 2007-06-13 12:48:53 -0700 | [diff] [blame] | 200 | depends on !UML |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 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 | |
Jan Engelhardt | d1c0a65 | 2007-06-13 12:48:53 -0700 | [diff] [blame] | 225 | if NET_ETHERNET |
| 226 | |
Haavard Skinnemoen | 89e5785 | 2006-11-09 14:51:17 +0100 | [diff] [blame] | 227 | config MACB |
| 228 | tristate "Atmel MACB support" |
Jean-Christophe PLAGNIOL-VILLARD | ee621dd | 2010-08-08 06:21:33 +0200 | [diff] [blame] | 229 | depends on HAVE_NET_MACB |
frederic RODO | 6c36a70 | 2007-07-12 19:07:24 +0200 | [diff] [blame] | 230 | select PHYLIB |
Haavard Skinnemoen | 89e5785 | 2006-11-09 14:51:17 +0100 | [diff] [blame] | 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 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 238 | source "drivers/net/arm/Kconfig" |
| 239 | |
Ben Dooks | 825a2ff | 2007-07-03 16:53:09 +0100 | [diff] [blame] | 240 | config AX88796 |
| 241 | tristate "ASIX AX88796 NE2000 clone support" |
Magnus Damm | 8687991 | 2007-11-08 16:31:05 +0900 | [diff] [blame] | 242 | depends on ARM || MIPS || SUPERH |
Marc Kleine-Budde | f6d7f2c | 2011-02-21 12:41:55 +0100 | [diff] [blame] | 243 | select PHYLIB |
| 244 | select MDIO_BITBANG |
Ben Dooks | 825a2ff | 2007-07-03 16:53:09 +0100 | [diff] [blame] | 245 | help |
| 246 | AX88796 driver, using platform bus to provide |
| 247 | chip detection and resources |
| 248 | |
Magnus Damm | 89e536a | 2007-09-28 22:42:16 -0700 | [diff] [blame] | 249 | config AX88796_93CX6 |
| 250 | bool "ASIX AX88796 external 93CX6 eeprom support" |
| 251 | depends on AX88796 |
| 252 | select EEPROM_93CX6 |
| 253 | help |
| 254 | Select this if your platform comes with an external 93CX6 eeprom. |
| 255 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 256 | config MACE |
| 257 | tristate "MACE (Power Mac ethernet) support" |
Jan Engelhardt | d1c0a65 | 2007-06-13 12:48:53 -0700 | [diff] [blame] | 258 | depends on PPC_PMAC && PPC32 |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 259 | select CRC32 |
| 260 | help |
| 261 | Power Macintoshes and clones with Ethernet built-in on the |
| 262 | motherboard will usually use a MACE (Medium Access Control for |
| 263 | Ethernet) interface. Say Y to include support for the MACE chip. |
| 264 | |
| 265 | To compile this driver as a module, choose M here: the module |
| 266 | will be called mace. |
| 267 | |
| 268 | config MACE_AAUI_PORT |
| 269 | bool "Use AAUI port instead of TP by default" |
| 270 | depends on MACE |
| 271 | help |
| 272 | Some Apple machines (notably the Apple Network Server) which use the |
| 273 | MACE ethernet chip have an Apple AUI port (small 15-pin connector), |
| 274 | instead of an 8-pin RJ45 connector for twisted-pair ethernet. Say |
| 275 | Y here if you have such a machine. If unsure, say N. |
| 276 | The driver will default to AAUI on ANS anyway, and if you use it as |
| 277 | a module, you can provide the port_aaui=0|1 to force the driver. |
| 278 | |
| 279 | config BMAC |
| 280 | tristate "BMAC (G3 ethernet) support" |
Jan Engelhardt | d1c0a65 | 2007-06-13 12:48:53 -0700 | [diff] [blame] | 281 | depends on PPC_PMAC && PPC32 |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 282 | select CRC32 |
| 283 | help |
| 284 | Say Y for support of BMAC Ethernet interfaces. These are used on G3 |
| 285 | computers. |
| 286 | |
| 287 | To compile this driver as a module, choose M here: the module |
| 288 | will be called bmac. |
| 289 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 290 | config ARIADNE |
| 291 | tristate "Ariadne support" |
Jan Engelhardt | d1c0a65 | 2007-06-13 12:48:53 -0700 | [diff] [blame] | 292 | depends on ZORRO |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 293 | help |
| 294 | If you have a Village Tronic Ariadne Ethernet adapter, say Y. |
| 295 | Otherwise, say N. |
| 296 | |
| 297 | To compile this driver as a module, choose M here: the module |
| 298 | will be called ariadne. |
| 299 | |
| 300 | config A2065 |
| 301 | tristate "A2065 support" |
Jan Engelhardt | d1c0a65 | 2007-06-13 12:48:53 -0700 | [diff] [blame] | 302 | depends on ZORRO |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 303 | select CRC32 |
| 304 | help |
| 305 | If you have a Commodore A2065 Ethernet adapter, say Y. Otherwise, |
| 306 | say N. |
| 307 | |
| 308 | To compile this driver as a module, choose M here: the module |
| 309 | will be called a2065. |
| 310 | |
| 311 | config HYDRA |
| 312 | tristate "Hydra support" |
Jan Engelhardt | d1c0a65 | 2007-06-13 12:48:53 -0700 | [diff] [blame] | 313 | depends on ZORRO |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 314 | select CRC32 |
| 315 | help |
| 316 | If you have a Hydra Ethernet adapter, say Y. Otherwise, say N. |
| 317 | |
| 318 | To compile this driver as a module, choose M here: the module |
| 319 | will be called hydra. |
| 320 | |
| 321 | config ZORRO8390 |
| 322 | tristate "Zorro NS8390-based Ethernet support" |
Jan Engelhardt | d1c0a65 | 2007-06-13 12:48:53 -0700 | [diff] [blame] | 323 | depends on ZORRO |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 324 | select CRC32 |
| 325 | help |
| 326 | This driver is for Zorro Ethernet cards using an NS8390-compatible |
| 327 | chipset, like the Village Tronic Ariadne II and the Individual |
| 328 | Computers X-Surf Ethernet cards. If you have such a card, say Y. |
| 329 | Otherwise, say N. |
| 330 | |
| 331 | To compile this driver as a module, choose M here: the module |
| 332 | will be called zorro8390. |
| 333 | |
| 334 | config APNE |
| 335 | tristate "PCMCIA NE2000 support" |
Jan Engelhardt | d1c0a65 | 2007-06-13 12:48:53 -0700 | [diff] [blame] | 336 | depends on AMIGA_PCMCIA |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 337 | select CRC32 |
| 338 | help |
| 339 | If you have a PCMCIA NE2000 compatible adapter, say Y. Otherwise, |
| 340 | say N. |
| 341 | |
| 342 | To compile this driver as a module, choose M here: the module |
| 343 | will be called apne. |
| 344 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 345 | config MAC8390 |
| 346 | bool "Macintosh NS 8390 based ethernet cards" |
Jan Engelhardt | d1c0a65 | 2007-06-13 12:48:53 -0700 | [diff] [blame] | 347 | depends on MAC |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 348 | select CRC32 |
| 349 | help |
| 350 | If you want to include a driver to support Nubus or LC-PDS |
| 351 | Ethernet cards using an NS8390 chipset or its equivalent, say Y |
| 352 | and read the Ethernet-HOWTO, available from |
| 353 | <http://www.tldp.org/docs.html#howto>. |
| 354 | |
| 355 | config MAC89x0 |
| 356 | tristate "Macintosh CS89x0 based ethernet cards" |
Jan Engelhardt | d1c0a65 | 2007-06-13 12:48:53 -0700 | [diff] [blame] | 357 | depends on MAC |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 358 | ---help--- |
| 359 | Support for CS89x0 chipset based Ethernet cards. If you have a |
| 360 | Nubus or LC-PDS network (Ethernet) card of this type, say Y and |
| 361 | read the Ethernet-HOWTO, available from |
| 362 | <http://www.tldp.org/docs.html#howto>. |
| 363 | |
Adrian Bunk | 57ce45d | 2007-11-12 21:03:58 -0800 | [diff] [blame] | 364 | To compile this driver as a module, choose M here. This module will |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 365 | be called mac89x0. |
| 366 | |
| 367 | config MACSONIC |
| 368 | tristate "Macintosh SONIC based ethernet (onboard, NuBus, LC, CS)" |
Jan Engelhardt | d1c0a65 | 2007-06-13 12:48:53 -0700 | [diff] [blame] | 369 | depends on MAC |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 370 | ---help--- |
| 371 | Support for NatSemi SONIC based Ethernet devices. This includes |
| 372 | the onboard Ethernet in many Quadras as well as some LC-PDS, |
| 373 | a few Nubus and all known Comm Slot Ethernet cards. If you have |
| 374 | one of these say Y and read the Ethernet-HOWTO, available from |
| 375 | <http://www.tldp.org/docs.html#howto>. |
| 376 | |
Adrian Bunk | 57ce45d | 2007-11-12 21:03:58 -0800 | [diff] [blame] | 377 | To compile this driver as a module, choose M here. This module will |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 378 | be called macsonic. |
| 379 | |
| 380 | config MACMACE |
Finn Thain | 8b6aaab | 2007-05-01 22:33:01 +0200 | [diff] [blame] | 381 | bool "Macintosh (AV) onboard MACE ethernet" |
Jan Engelhardt | d1c0a65 | 2007-06-13 12:48:53 -0700 | [diff] [blame] | 382 | depends on MAC |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 383 | select CRC32 |
| 384 | help |
| 385 | Support for the onboard AMD 79C940 MACE Ethernet controller used in |
| 386 | the 660AV and 840AV Macintosh. If you have one of these Macintoshes |
| 387 | say Y and read the Ethernet-HOWTO, available from |
| 388 | <http://www.tldp.org/docs.html#howto>. |
| 389 | |
| 390 | config MVME147_NET |
| 391 | tristate "MVME147 (Lance) Ethernet support" |
Jan Engelhardt | d1c0a65 | 2007-06-13 12:48:53 -0700 | [diff] [blame] | 392 | depends on MVME147 |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 393 | select CRC32 |
| 394 | help |
| 395 | Support for the on-board Ethernet interface on the Motorola MVME147 |
| 396 | single-board computer. Say Y here to include the |
| 397 | driver for this chip in your kernel. |
| 398 | To compile this driver as a module, choose M here. |
| 399 | |
| 400 | config MVME16x_NET |
| 401 | tristate "MVME16x Ethernet support" |
Jan Engelhardt | d1c0a65 | 2007-06-13 12:48:53 -0700 | [diff] [blame] | 402 | depends on MVME16x |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 403 | help |
| 404 | This is the driver for the Ethernet interface on the Motorola |
| 405 | MVME162, 166, 167, 172 and 177 boards. Say Y here to include the |
| 406 | driver for this chip in your kernel. |
| 407 | To compile this driver as a module, choose M here. |
| 408 | |
| 409 | config BVME6000_NET |
| 410 | tristate "BVME6000 Ethernet support" |
Jan Engelhardt | d1c0a65 | 2007-06-13 12:48:53 -0700 | [diff] [blame] | 411 | depends on BVME6000 |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 412 | help |
| 413 | This is the driver for the Ethernet interface on BVME4000 and |
| 414 | BVME6000 VME boards. Say Y here to include the driver for this chip |
| 415 | in your kernel. |
| 416 | To compile this driver as a module, choose M here. |
| 417 | |
| 418 | config ATARILANCE |
| 419 | tristate "Atari Lance support" |
Jan Engelhardt | d1c0a65 | 2007-06-13 12:48:53 -0700 | [diff] [blame] | 420 | depends on ATARI |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 421 | help |
| 422 | Say Y to include support for several Atari Ethernet adapters based |
| 423 | on the AMD Lance chipset: RieblCard (with or without battery), or |
| 424 | PAMCard VME (also the version by Rhotron, with different addresses). |
| 425 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 426 | config SUN3LANCE |
| 427 | tristate "Sun3/Sun3x on-board LANCE support" |
Jan Engelhardt | d1c0a65 | 2007-06-13 12:48:53 -0700 | [diff] [blame] | 428 | depends on SUN3 || SUN3X |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 429 | help |
| 430 | Most Sun3 and Sun3x motherboards (including the 3/50, 3/60 and 3/80) |
| 431 | featured an AMD Lance 10Mbit Ethernet controller on board; say Y |
| 432 | here to compile in the Linux driver for this and enable Ethernet. |
| 433 | General Linux information on the Sun 3 and 3x series (now |
| 434 | discontinued) is at |
| 435 | <http://www.angelfire.com/ca2/tech68k/sun3.html>. |
| 436 | |
| 437 | If you're not building a kernel for a Sun 3, say N. |
| 438 | |
| 439 | config SUN3_82586 |
Al Viro | 9a48220 | 2005-08-25 06:24:56 +0100 | [diff] [blame] | 440 | bool "Sun3 on-board Intel 82586 support" |
Jan Engelhardt | d1c0a65 | 2007-06-13 12:48:53 -0700 | [diff] [blame] | 441 | depends on SUN3 |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 442 | help |
| 443 | This driver enables support for the on-board Intel 82586 based |
| 444 | Ethernet adapter found on Sun 3/1xx and 3/2xx motherboards. Note |
| 445 | that this driver does not support 82586-based adapters on additional |
| 446 | VME boards. |
| 447 | |
| 448 | config HPLANCE |
| 449 | bool "HP on-board LANCE support" |
Jan Engelhardt | d1c0a65 | 2007-06-13 12:48:53 -0700 | [diff] [blame] | 450 | depends on DIO |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 451 | select CRC32 |
| 452 | help |
| 453 | If you want to use the builtin "LANCE" Ethernet controller on an |
| 454 | HP300 machine, say Y here. |
| 455 | |
| 456 | config LASI_82596 |
| 457 | tristate "Lasi ethernet" |
Jan Engelhardt | d1c0a65 | 2007-06-13 12:48:53 -0700 | [diff] [blame] | 458 | depends on GSC |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 459 | help |
Matthew Wilcox | 6de187e | 2006-11-18 10:05:16 -0700 | [diff] [blame] | 460 | Say Y here to support the builtin Intel 82596 ethernet controller |
| 461 | found in Hewlett-Packard PA-RISC machines with 10Mbit ethernet. |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 462 | |
Thomas Bogendoerfer | f2ec803 | 2007-06-28 00:49:06 +0200 | [diff] [blame] | 463 | config SNI_82596 |
| 464 | tristate "SNI RM ethernet" |
| 465 | depends on NET_ETHERNET && SNI_RM |
| 466 | help |
| 467 | Say Y here to support the on-board Intel 82596 ethernet controller |
| 468 | built into SNI RM machines. |
| 469 | |
Florian Fainelli | ef11291 | 2008-03-19 17:14:51 +0100 | [diff] [blame] | 470 | config KORINA |
| 471 | tristate "Korina (IDT RC32434) Ethernet support" |
Ralf Baechle | f57b206 | 2008-04-28 12:48:40 +0100 | [diff] [blame] | 472 | depends on NET_ETHERNET && MIKROTIK_RB532 |
Florian Fainelli | ef11291 | 2008-03-19 17:14:51 +0100 | [diff] [blame] | 473 | help |
| 474 | If you have a Mikrotik RouterBoard 500 or IDT RC32434 |
| 475 | based system say Y. Otherwise say N. |
| 476 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 477 | config MIPS_JAZZ_SONIC |
| 478 | tristate "MIPS JAZZ onboard SONIC Ethernet support" |
Jan Engelhardt | d1c0a65 | 2007-06-13 12:48:53 -0700 | [diff] [blame] | 479 | depends on MACH_JAZZ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 480 | help |
| 481 | This is the driver for the onboard card of MIPS Magnum 4000, |
| 482 | Acer PICA, Olivetti M700-10 and a few other identical OEM systems. |
| 483 | |
Chris Zankel | 74f2a5f0 | 2008-05-05 23:36:35 -0700 | [diff] [blame] | 484 | config XTENSA_XT2000_SONIC |
| 485 | tristate "Xtensa XT2000 onboard SONIC Ethernet support" |
| 486 | depends on XTENSA_PLATFORM_XT2000 |
| 487 | help |
| 488 | This is the driver for the onboard card of the Xtensa XT2000 board. |
| 489 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 490 | config MIPS_AU1X00_ENET |
Florian Fainelli | b233fc6 | 2010-04-06 22:08:53 +0000 | [diff] [blame] | 491 | tristate "MIPS AU1000 Ethernet support" |
Manuel Lauss | 42a4f17 | 2010-07-15 21:45:04 +0200 | [diff] [blame] | 492 | depends on MIPS_ALCHEMY |
Herbert Valerio Riedel | 0638dec | 2006-06-01 09:41:04 +0200 | [diff] [blame] | 493 | select PHYLIB |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 494 | select CRC32 |
| 495 | help |
| 496 | If you have an Alchemy Semi AU1X00 based system |
| 497 | say Y. Otherwise, say N. |
| 498 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 499 | config SGI_IOC3_ETH |
| 500 | bool "SGI IOC3 Ethernet" |
Jan Engelhardt | d1c0a65 | 2007-06-13 12:48:53 -0700 | [diff] [blame] | 501 | depends on PCI && SGI_IP27 |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 502 | select CRC32 |
| 503 | select MII |
| 504 | help |
| 505 | If you have a network (Ethernet) card of this type, say Y and read |
| 506 | the Ethernet-HOWTO, available from |
| 507 | <http://www.tldp.org/docs.html#howto>. |
| 508 | |
Ralf Baechle | dcbf847 | 2005-10-10 14:51:27 +0100 | [diff] [blame] | 509 | config MIPS_SIM_NET |
Ralf Baechle | 1e2b980 | 2007-03-18 23:21:22 +0000 | [diff] [blame] | 510 | tristate "MIPS simulator Network device" |
Jan Engelhardt | d1c0a65 | 2007-06-13 12:48:53 -0700 | [diff] [blame] | 511 | depends on MIPS_SIM |
Ralf Baechle | dcbf847 | 2005-10-10 14:51:27 +0100 | [diff] [blame] | 512 | help |
| 513 | The MIPSNET device is a simple Ethernet network device which is |
| 514 | emulated by the MIPS Simulator. |
| 515 | If you are not using a MIPSsim or are unsure, say N. |
| 516 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 517 | config SGI_O2MACE_ETH |
| 518 | tristate "SGI O2 MACE Fast Ethernet support" |
Jan Engelhardt | d1c0a65 | 2007-06-13 12:48:53 -0700 | [diff] [blame] | 519 | depends on SGI_IP32=y |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 520 | |
| 521 | config STNIC |
| 522 | tristate "National DP83902AV support" |
Jan Engelhardt | d1c0a65 | 2007-06-13 12:48:53 -0700 | [diff] [blame] | 523 | depends on SUPERH |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 524 | select CRC32 |
| 525 | help |
| 526 | Support for cards based on the National Semiconductor DP83902AV |
| 527 | ST-NIC Serial Network Interface Controller for Twisted Pair. This |
| 528 | is a 10Mbit/sec Ethernet controller. Product overview and specs at |
| 529 | <http://www.national.com/pf/DP/DP83902A.html>. |
| 530 | |
| 531 | If unsure, say N. |
| 532 | |
Nobuhiro Iwamatsu | 86a74ff | 2008-06-09 16:33:56 -0700 | [diff] [blame] | 533 | config SH_ETH |
| 534 | tristate "Renesas SuperH Ethernet support" |
| 535 | depends on SUPERH && \ |
Yoshihiro Shimoda | 65ac885 | 2009-05-24 23:54:30 +0000 | [diff] [blame] | 536 | (CPU_SUBTYPE_SH7710 || CPU_SUBTYPE_SH7712 || \ |
| 537 | CPU_SUBTYPE_SH7763 || CPU_SUBTYPE_SH7619 || \ |
Yoshihiro Shimoda | f29a3d0 | 2010-07-05 18:32:50 +0000 | [diff] [blame] | 538 | CPU_SUBTYPE_SH7724 || CPU_SUBTYPE_SH7757) |
Nobuhiro Iwamatsu | 86a74ff | 2008-06-09 16:33:56 -0700 | [diff] [blame] | 539 | select CRC32 |
| 540 | select MII |
| 541 | select MDIO_BITBANG |
| 542 | select PHYLIB |
| 543 | help |
| 544 | Renesas SuperH Ethernet device driver. |
Yoshihiro Shimoda | f29a3d0 | 2010-07-05 18:32:50 +0000 | [diff] [blame] | 545 | This driver supporting CPUs are: |
| 546 | - SH7710, SH7712, SH7763, SH7619, SH7724, and SH7757. |
Nobuhiro Iwamatsu | 86a74ff | 2008-06-09 16:33:56 -0700 | [diff] [blame] | 547 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 548 | config SUNLANCE |
| 549 | tristate "Sun LANCE support" |
Jan Engelhardt | d1c0a65 | 2007-06-13 12:48:53 -0700 | [diff] [blame] | 550 | depends on SBUS |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 551 | select CRC32 |
| 552 | help |
| 553 | This driver supports the "le" interface present on all 32-bit Sparc |
| 554 | systems, on some older Ultra systems and as an Sbus option. These |
| 555 | cards are based on the AMD Lance chipset, which is better known |
| 556 | via the NE2100 cards. |
| 557 | |
| 558 | To compile this driver as a module, choose M here: the module |
| 559 | will be called sunlance. |
| 560 | |
| 561 | config HAPPYMEAL |
| 562 | tristate "Sun Happy Meal 10/100baseT support" |
Jan Engelhardt | d1c0a65 | 2007-06-13 12:48:53 -0700 | [diff] [blame] | 563 | depends on SBUS || PCI |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 564 | select CRC32 |
| 565 | help |
| 566 | This driver supports the "hme" interface present on most Ultra |
| 567 | systems and as an option on older Sbus systems. This driver supports |
| 568 | both PCI and Sbus devices. This driver also supports the "qfe" quad |
| 569 | 100baseT device available in both PCI and Sbus configurations. |
| 570 | |
| 571 | To compile this driver as a module, choose M here: the module |
| 572 | will be called sunhme. |
| 573 | |
| 574 | config SUNBMAC |
| 575 | tristate "Sun BigMAC 10/100baseT support (EXPERIMENTAL)" |
Jan Engelhardt | d1c0a65 | 2007-06-13 12:48:53 -0700 | [diff] [blame] | 576 | depends on SBUS && EXPERIMENTAL |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 577 | select CRC32 |
| 578 | help |
| 579 | This driver supports the "be" interface available as an Sbus option. |
| 580 | This is Sun's older 100baseT Ethernet device. |
| 581 | |
| 582 | To compile this driver as a module, choose M here: the module |
| 583 | will be called sunbmac. |
| 584 | |
| 585 | config SUNQE |
| 586 | tristate "Sun QuadEthernet support" |
Jan Engelhardt | d1c0a65 | 2007-06-13 12:48:53 -0700 | [diff] [blame] | 587 | depends on SBUS |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 588 | select CRC32 |
| 589 | help |
| 590 | This driver supports the "qe" 10baseT Ethernet device, available as |
| 591 | an Sbus option. Note that this is not the same as Quad FastEthernet |
| 592 | "qfe" which is supported by the Happy Meal driver instead. |
| 593 | |
| 594 | To compile this driver as a module, choose M here: the module |
| 595 | will be called sunqe. |
| 596 | |
| 597 | config SUNGEM |
| 598 | tristate "Sun GEM support" |
Jan Engelhardt | d1c0a65 | 2007-06-13 12:48:53 -0700 | [diff] [blame] | 599 | depends on PCI |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 600 | select CRC32 |
| 601 | help |
| 602 | Support for the Sun GEM chip, aka Sun GigabitEthernet/P 2.0. See also |
| 603 | <http://www.sun.com/products-n-solutions/hardware/docs/pdf/806-3985-10.pdf>. |
| 604 | |
David S. Miller | 1f26dac | 2005-09-27 15:24:13 -0700 | [diff] [blame] | 605 | config CASSINI |
| 606 | tristate "Sun Cassini support" |
Jan Engelhardt | d1c0a65 | 2007-06-13 12:48:53 -0700 | [diff] [blame] | 607 | depends on PCI |
David S. Miller | 1f26dac | 2005-09-27 15:24:13 -0700 | [diff] [blame] | 608 | select CRC32 |
| 609 | help |
| 610 | Support for the Sun Cassini chip, aka Sun GigaSwift Ethernet. See also |
| 611 | <http://www.sun.com/products-n-solutions/hardware/docs/pdf/817-4341-10.pdf> |
| 612 | |
David S. Miller | 4c521e4 | 2007-07-09 22:23:51 -0700 | [diff] [blame] | 613 | config SUNVNET |
| 614 | tristate "Sun Virtual Network support" |
| 615 | depends on SUN_LDOMS |
| 616 | help |
| 617 | Support for virtual network devices under Sun Logical Domains. |
| 618 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 619 | config NET_VENDOR_3COM |
| 620 | bool "3COM cards" |
Jan Engelhardt | d1c0a65 | 2007-06-13 12:48:53 -0700 | [diff] [blame] | 621 | depends on ISA || EISA || MCA || PCI |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 622 | help |
| 623 | If you have a network (Ethernet) card belonging to this class, say Y |
| 624 | and read the Ethernet-HOWTO, available from |
| 625 | <http://www.tldp.org/docs.html#howto>. |
| 626 | |
| 627 | Note that the answer to this question doesn't directly affect the |
| 628 | kernel: saying N will just cause the configurator to skip all |
| 629 | the questions about 3COM cards. If you say Y, you will be asked for |
| 630 | your specific card in the following questions. |
| 631 | |
| 632 | config EL1 |
| 633 | tristate "3c501 \"EtherLink\" support" |
| 634 | depends on NET_VENDOR_3COM && ISA |
| 635 | ---help--- |
| 636 | If you have a network (Ethernet) card of this type, say Y and read |
| 637 | the Ethernet-HOWTO, available from |
| 638 | <http://www.tldp.org/docs.html#howto>. Also, consider buying a |
| 639 | new card, since the 3c501 is slow, broken, and obsolete: you will |
| 640 | have problems. Some people suggest to ping ("man ping") a nearby |
| 641 | machine every minute ("man cron") when using this card. |
| 642 | |
Adrian Bunk | 57ce45d | 2007-11-12 21:03:58 -0800 | [diff] [blame] | 643 | To compile this driver as a module, choose M here. The module |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 644 | will be called 3c501. |
| 645 | |
| 646 | config EL2 |
| 647 | tristate "3c503 \"EtherLink II\" support" |
| 648 | depends on NET_VENDOR_3COM && ISA |
| 649 | select CRC32 |
| 650 | help |
| 651 | If you have a network (Ethernet) card of this type, say Y and read |
| 652 | the Ethernet-HOWTO, available from |
| 653 | <http://www.tldp.org/docs.html#howto>. |
| 654 | |
Adrian Bunk | 57ce45d | 2007-11-12 21:03:58 -0800 | [diff] [blame] | 655 | To compile this driver as a module, choose M here. The module |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 656 | will be called 3c503. |
| 657 | |
| 658 | config ELPLUS |
| 659 | tristate "3c505 \"EtherLink Plus\" support" |
Al Viro | a553260 | 2005-05-04 05:39:42 +0100 | [diff] [blame] | 660 | depends on NET_VENDOR_3COM && ISA && ISA_DMA_API |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 661 | ---help--- |
| 662 | Information about this network (Ethernet) card can be found in |
| 663 | <file:Documentation/networking/3c505.txt>. If you have a card of |
| 664 | this type, say Y and read the Ethernet-HOWTO, available from |
| 665 | <http://www.tldp.org/docs.html#howto>. |
| 666 | |
Adrian Bunk | 57ce45d | 2007-11-12 21:03:58 -0800 | [diff] [blame] | 667 | To compile this driver as a module, choose M here. The module |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 668 | will be called 3c505. |
| 669 | |
| 670 | config EL16 |
| 671 | tristate "3c507 \"EtherLink 16\" support (EXPERIMENTAL)" |
| 672 | depends on NET_VENDOR_3COM && ISA && EXPERIMENTAL |
| 673 | help |
| 674 | If you have a network (Ethernet) card of this type, say Y and read |
| 675 | the Ethernet-HOWTO, available from |
| 676 | <http://www.tldp.org/docs.html#howto>. |
| 677 | |
Adrian Bunk | 57ce45d | 2007-11-12 21:03:58 -0800 | [diff] [blame] | 678 | To compile this driver as a module, choose M here. The module |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 679 | will be called 3c507. |
| 680 | |
| 681 | config EL3 |
| 682 | tristate "3c509/3c529 (MCA)/3c579 \"EtherLink III\" support" |
| 683 | depends on NET_VENDOR_3COM && (ISA || EISA || MCA) |
| 684 | ---help--- |
| 685 | If you have a network (Ethernet) card belonging to the 3Com |
| 686 | EtherLinkIII series, say Y and read the Ethernet-HOWTO, available |
| 687 | from <http://www.tldp.org/docs.html#howto>. |
| 688 | |
| 689 | If your card is not working you may need to use the DOS |
| 690 | setup disk to disable Plug & Play mode, and to select the default |
| 691 | media type. |
| 692 | |
Adrian Bunk | 57ce45d | 2007-11-12 21:03:58 -0800 | [diff] [blame] | 693 | To compile this driver as a module, choose M here. The module |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 694 | will be called 3c509. |
| 695 | |
| 696 | config 3C515 |
| 697 | tristate "3c515 ISA \"Fast EtherLink\"" |
Al Viro | a553260 | 2005-05-04 05:39:42 +0100 | [diff] [blame] | 698 | depends on NET_VENDOR_3COM && (ISA || EISA) && ISA_DMA_API |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 699 | help |
| 700 | If you have a 3Com ISA EtherLink XL "Corkscrew" 3c515 Fast Ethernet |
| 701 | network card, say Y and read the Ethernet-HOWTO, available from |
| 702 | <http://www.tldp.org/docs.html#howto>. |
| 703 | |
Adrian Bunk | 57ce45d | 2007-11-12 21:03:58 -0800 | [diff] [blame] | 704 | To compile this driver as a module, choose M here. The module |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 705 | will be called 3c515. |
| 706 | |
| 707 | config ELMC |
| 708 | tristate "3c523 \"EtherLink/MC\" support" |
| 709 | depends on NET_VENDOR_3COM && MCA_LEGACY |
| 710 | help |
| 711 | If you have a network (Ethernet) card of this type, say Y and read |
| 712 | the Ethernet-HOWTO, available from |
| 713 | <http://www.tldp.org/docs.html#howto>. |
| 714 | |
Adrian Bunk | 57ce45d | 2007-11-12 21:03:58 -0800 | [diff] [blame] | 715 | To compile this driver as a module, choose M here. The module |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 716 | will be called 3c523. |
| 717 | |
| 718 | config ELMC_II |
| 719 | tristate "3c527 \"EtherLink/MC 32\" support (EXPERIMENTAL)" |
| 720 | depends on NET_VENDOR_3COM && MCA && MCA_LEGACY |
| 721 | help |
| 722 | If you have a network (Ethernet) card of this type, say Y and read |
| 723 | the Ethernet-HOWTO, available from |
| 724 | <http://www.tldp.org/docs.html#howto>. |
| 725 | |
Adrian Bunk | 57ce45d | 2007-11-12 21:03:58 -0800 | [diff] [blame] | 726 | To compile this driver as a module, choose M here. The module |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 727 | will be called 3c527. |
| 728 | |
| 729 | config VORTEX |
| 730 | tristate "3c590/3c900 series (592/595/597) \"Vortex/Boomerang\" support" |
| 731 | depends on NET_VENDOR_3COM && (PCI || EISA) |
| 732 | select MII |
| 733 | ---help--- |
Jon Mason | 47c5143 | 2006-02-12 11:53:04 -0600 | [diff] [blame] | 734 | This option enables driver support for a large number of 10Mbps and |
| 735 | 10/100Mbps EISA, PCI and PCMCIA 3Com network cards: |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 736 | |
| 737 | "Vortex" (Fast EtherLink 3c590/3c592/3c595/3c597) EISA and PCI |
| 738 | "Boomerang" (EtherLink XL 3c900 or 3c905) PCI |
| 739 | "Cyclone" (3c540/3c900/3c905/3c980/3c575/3c656) PCI and Cardbus |
| 740 | "Tornado" (3c905) PCI |
| 741 | "Hurricane" (3c555/3cSOHO) PCI |
| 742 | |
| 743 | If you have such a card, say Y and read the Ethernet-HOWTO, |
| 744 | available from <http://www.tldp.org/docs.html#howto>. More |
| 745 | specific information is in |
| 746 | <file:Documentation/networking/vortex.txt> and in the comments at |
| 747 | the beginning of <file:drivers/net/3c59x.c>. |
| 748 | |
Adrian Bunk | 57ce45d | 2007-11-12 21:03:58 -0800 | [diff] [blame] | 749 | To compile this support as a module, choose M here. |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 750 | |
| 751 | config TYPHOON |
| 752 | tristate "3cr990 series \"Typhoon\" support" |
| 753 | depends on NET_VENDOR_3COM && PCI |
| 754 | select CRC32 |
| 755 | ---help--- |
| 756 | This option enables driver support for the 3cr990 series of cards: |
| 757 | |
| 758 | 3C990-TX, 3CR990-TX-95, 3CR990-TX-97, 3CR990-FX-95, 3CR990-FX-97, |
| 759 | 3CR990SVR, 3CR990SVR95, 3CR990SVR97, 3CR990-FX-95 Server, |
| 760 | 3CR990-FX-97 Server, 3C990B-TX-M, 3C990BSVR |
| 761 | |
| 762 | If you have a network (Ethernet) card of this type, say Y and read |
| 763 | the Ethernet-HOWTO, available from |
| 764 | <http://www.tldp.org/docs.html#howto>. |
| 765 | |
Adrian Bunk | 57ce45d | 2007-11-12 21:03:58 -0800 | [diff] [blame] | 766 | To compile this driver as a module, choose M here. The module |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 767 | will be called typhoon. |
| 768 | |
| 769 | config LANCE |
| 770 | tristate "AMD LANCE and PCnet (AT1500 and NE2100) support" |
Jan Engelhardt | d1c0a65 | 2007-06-13 12:48:53 -0700 | [diff] [blame] | 771 | depends on ISA && ISA_DMA_API |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 772 | help |
| 773 | If you have a network (Ethernet) card of this type, say Y and read |
| 774 | the Ethernet-HOWTO, available from |
| 775 | <http://www.tldp.org/docs.html#howto>. Some LinkSys cards are |
| 776 | of this type. |
| 777 | |
| 778 | To compile this driver as a module, choose M here: the module |
| 779 | will be called lance. This is recommended. |
| 780 | |
| 781 | config NET_VENDOR_SMC |
| 782 | bool "Western Digital/SMC cards" |
Jan Engelhardt | d1c0a65 | 2007-06-13 12:48:53 -0700 | [diff] [blame] | 783 | depends on ISA || MCA || EISA || MAC |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 784 | help |
| 785 | If you have a network (Ethernet) card belonging to this class, say Y |
| 786 | and read the Ethernet-HOWTO, available from |
| 787 | <http://www.tldp.org/docs.html#howto>. |
| 788 | |
| 789 | Note that the answer to this question doesn't directly affect the |
| 790 | kernel: saying N will just cause the configurator to skip all |
| 791 | the questions about Western Digital cards. If you say Y, you will be |
| 792 | asked for your specific card in the following questions. |
| 793 | |
| 794 | config WD80x3 |
| 795 | tristate "WD80*3 support" |
| 796 | depends on NET_VENDOR_SMC && ISA |
| 797 | select CRC32 |
| 798 | help |
| 799 | If you have a network (Ethernet) card of this type, say Y and read |
| 800 | the Ethernet-HOWTO, available from |
| 801 | <http://www.tldp.org/docs.html#howto>. |
| 802 | |
Adrian Bunk | 57ce45d | 2007-11-12 21:03:58 -0800 | [diff] [blame] | 803 | To compile this driver as a module, choose M here. The module |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 804 | will be called wd. |
| 805 | |
| 806 | config ULTRAMCA |
| 807 | tristate "SMC Ultra MCA support" |
| 808 | depends on NET_VENDOR_SMC && MCA |
| 809 | select CRC32 |
| 810 | help |
| 811 | If you have a network (Ethernet) card of this type and are running |
| 812 | an MCA based system (PS/2), say Y and read the Ethernet-HOWTO, |
| 813 | available from <http://www.tldp.org/docs.html#howto>. |
| 814 | |
Adrian Bunk | 57ce45d | 2007-11-12 21:03:58 -0800 | [diff] [blame] | 815 | To compile this driver as a module, choose M here. The module |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 816 | will be called smc-mca. |
| 817 | |
| 818 | config ULTRA |
| 819 | tristate "SMC Ultra support" |
| 820 | depends on NET_VENDOR_SMC && ISA |
| 821 | select CRC32 |
| 822 | ---help--- |
| 823 | If you have a network (Ethernet) card of this type, say Y and read |
| 824 | the Ethernet-HOWTO, available from |
| 825 | <http://www.tldp.org/docs.html#howto>. |
| 826 | |
| 827 | Important: There have been many reports that, with some motherboards |
| 828 | mixing an SMC Ultra and an Adaptec AHA154x SCSI card (or compatible, |
| 829 | such as some BusLogic models) causes corruption problems with many |
| 830 | operating systems. The Linux smc-ultra driver has a work-around for |
| 831 | this but keep it in mind if you have such a SCSI card and have |
| 832 | problems. |
| 833 | |
Adrian Bunk | 57ce45d | 2007-11-12 21:03:58 -0800 | [diff] [blame] | 834 | To compile this driver as a module, choose M here. The module |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 835 | will be called smc-ultra. |
| 836 | |
| 837 | config ULTRA32 |
| 838 | tristate "SMC Ultra32 EISA support" |
| 839 | depends on NET_VENDOR_SMC && EISA |
| 840 | select CRC32 |
| 841 | help |
| 842 | If you have a network (Ethernet) card of this type, say Y and read |
| 843 | the Ethernet-HOWTO, available from |
| 844 | <http://www.tldp.org/docs.html#howto>. |
| 845 | |
Adrian Bunk | 57ce45d | 2007-11-12 21:03:58 -0800 | [diff] [blame] | 846 | To compile this driver as a module, choose M here. The module |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 847 | will be called smc-ultra32. |
| 848 | |
Bryan Wu | e190d6b | 2007-07-17 14:43:44 +0800 | [diff] [blame] | 849 | config BFIN_MAC |
Mike Frysinger | 736783b | 2008-08-27 11:47:57 +0800 | [diff] [blame] | 850 | tristate "Blackfin on-chip MAC support" |
Sonic Zhang | 33a2a2b | 2009-01-08 10:52:26 -0800 | [diff] [blame] | 851 | depends on NET_ETHERNET && (BF516 || BF518 || BF526 || BF527 || BF536 || BF537) |
Bryan Wu | e190d6b | 2007-07-17 14:43:44 +0800 | [diff] [blame] | 852 | select CRC32 |
Bryan Wu | eeb70af | 2007-09-19 23:37:41 +0800 | [diff] [blame] | 853 | select MII |
| 854 | select PHYLIB |
Bryan Wu | e190d6b | 2007-07-17 14:43:44 +0800 | [diff] [blame] | 855 | select BFIN_MAC_USE_L1 if DMA_UNCACHED_NONE |
| 856 | help |
Mike Frysinger | 736783b | 2008-08-27 11:47:57 +0800 | [diff] [blame] | 857 | This is the driver for Blackfin on-chip mac device. Say Y if you want it |
Bryan Wu | e190d6b | 2007-07-17 14:43:44 +0800 | [diff] [blame] | 858 | compiled into the kernel. This driver is also available as a module |
| 859 | ( = code which can be inserted in and removed from the running kernel |
| 860 | whenever you want). The module will be called bfin_mac. |
| 861 | |
| 862 | config BFIN_MAC_USE_L1 |
| 863 | bool "Use L1 memory for rx/tx packets" |
Michael Hennerich | 6893ff1 | 2008-01-30 16:52:25 +0800 | [diff] [blame] | 864 | depends on BFIN_MAC && (BF527 || BF537) |
Bryan Wu | e190d6b | 2007-07-17 14:43:44 +0800 | [diff] [blame] | 865 | default y |
| 866 | help |
Matt LaPlante | 01dd2fb | 2007-10-20 01:34:40 +0200 | [diff] [blame] | 867 | To get maximum network performance, you should use L1 memory as rx/tx buffers. |
Bryan Wu | e190d6b | 2007-07-17 14:43:44 +0800 | [diff] [blame] | 868 | Say N here if you want to reserve L1 memory for other uses. |
| 869 | |
| 870 | config BFIN_TX_DESC_NUM |
| 871 | int "Number of transmit buffer packets" |
| 872 | depends on BFIN_MAC |
| 873 | range 6 10 if BFIN_MAC_USE_L1 |
| 874 | range 10 100 |
| 875 | default "10" |
| 876 | help |
| 877 | Set the number of buffer packets used in driver. |
| 878 | |
| 879 | config BFIN_RX_DESC_NUM |
| 880 | int "Number of receive buffer packets" |
| 881 | depends on BFIN_MAC |
| 882 | range 20 100 if BFIN_MAC_USE_L1 |
| 883 | range 20 800 |
| 884 | default "20" |
| 885 | help |
| 886 | Set the number of buffer packets used in driver. |
| 887 | |
Barry Song | fe92afe | 2010-05-17 17:19:40 -0700 | [diff] [blame] | 888 | config BFIN_MAC_USE_HWSTAMP |
| 889 | bool "Use IEEE 1588 hwstamp" |
| 890 | depends on BFIN_MAC && BF518 |
| 891 | default y |
| 892 | help |
| 893 | To support the IEEE 1588 Precision Time Protocol (PTP), select y here |
| 894 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 895 | config SMC9194 |
| 896 | tristate "SMC 9194 support" |
| 897 | depends on NET_VENDOR_SMC && (ISA || MAC && BROKEN) |
| 898 | select CRC32 |
| 899 | ---help--- |
| 900 | This is support for the SMC9xxx based Ethernet cards. Choose this |
| 901 | option if you have a DELL laptop with the docking station, or |
| 902 | another SMC9192/9194 based chipset. Say Y if you want it compiled |
| 903 | into the kernel, and read the file |
| 904 | <file:Documentation/networking/smc9.txt> and the Ethernet-HOWTO, |
| 905 | available from <http://www.tldp.org/docs.html#howto>. |
| 906 | |
Adrian Bunk | 57ce45d | 2007-11-12 21:03:58 -0800 | [diff] [blame] | 907 | To compile this driver as a module, choose M here. The module |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 908 | will be called smc9194. |
| 909 | |
Jan Engelhardt | d1c0a65 | 2007-06-13 12:48:53 -0700 | [diff] [blame] | 910 | config SMC91X |
| 911 | tristate "SMC 91C9x/91C1xxx support" |
| 912 | select CRC32 |
| 913 | select MII |
Christian Dietrich | c76986c | 2010-07-16 02:29:02 +0000 | [diff] [blame] | 914 | depends on ARM || M32R || SUPERH || \ |
Greg Ungerer | 717ea4b | 2010-03-10 07:37:06 -0800 | [diff] [blame] | 915 | MIPS || BLACKFIN || MN10300 || COLDFIRE |
Jan Engelhardt | d1c0a65 | 2007-06-13 12:48:53 -0700 | [diff] [blame] | 916 | help |
| 917 | This is a driver for SMC's 91x series of Ethernet chipsets, |
| 918 | including the SMC91C94 and the SMC91C111. Say Y if you want it |
| 919 | compiled into the kernel, and read the file |
| 920 | <file:Documentation/networking/smc9.txt> and the Ethernet-HOWTO, |
Justin P. Mattock | 631dd1a | 2010-10-18 11:03:14 +0200 | [diff] [blame] | 921 | available from <http://www.tldp.org/docs.html#howto>. |
Jan Engelhardt | d1c0a65 | 2007-06-13 12:48:53 -0700 | [diff] [blame] | 922 | |
| 923 | This driver is also available as a module ( = code which can be |
| 924 | inserted in and removed from the running kernel whenever you want). |
| 925 | The module will be called smc91x. If you want to compile it as a |
Adrian Bunk | 57ce45d | 2007-11-12 21:03:58 -0800 | [diff] [blame] | 926 | module, say M here and read <file:Documentation/kbuild/modules.txt>. |
Jan Engelhardt | d1c0a65 | 2007-06-13 12:48:53 -0700 | [diff] [blame] | 927 | |
Sachin Sanap | a49f37e | 2010-08-13 21:22:49 +0000 | [diff] [blame] | 928 | config PXA168_ETH |
| 929 | tristate "Marvell pxa168 ethernet support" |
| 930 | depends on CPU_PXA168 |
| 931 | select PHYLIB |
| 932 | help |
| 933 | This driver supports the pxa168 Ethernet ports. |
| 934 | |
| 935 | To compile this driver as a module, choose M here. The module |
| 936 | will be called pxa168_eth. |
| 937 | |
Sascha Hauer | 92aa674 | 2006-06-22 07:11:13 +0200 | [diff] [blame] | 938 | config NET_NETX |
| 939 | tristate "NetX Ethernet support" |
| 940 | select MII |
Jan Engelhardt | d1c0a65 | 2007-06-13 12:48:53 -0700 | [diff] [blame] | 941 | depends on ARCH_NETX |
Sascha Hauer | 92aa674 | 2006-06-22 07:11:13 +0200 | [diff] [blame] | 942 | help |
| 943 | This is support for the Hilscher netX builtin Ethernet ports |
| 944 | |
Adrian Bunk | 57ce45d | 2007-11-12 21:03:58 -0800 | [diff] [blame] | 945 | To compile this driver as a module, choose M here. The module |
Sascha Hauer | 92aa674 | 2006-06-22 07:11:13 +0200 | [diff] [blame] | 946 | will be called netx-eth. |
| 947 | |
Anant Gole | a6286ee | 2009-05-18 15:19:01 -0700 | [diff] [blame] | 948 | config TI_DAVINCI_EMAC |
| 949 | tristate "TI DaVinci EMAC Support" |
Sriramakrishnan | 8ee2bf9 | 2009-11-19 15:58:25 +0530 | [diff] [blame] | 950 | depends on ARM && ( ARCH_DAVINCI || ARCH_OMAP3 ) |
Cyril Chemparathy | 5d69e00 | 2010-09-15 10:11:24 -0400 | [diff] [blame] | 951 | select TI_DAVINCI_MDIO |
Cyril Chemparathy | ef8c2da | 2010-09-15 10:11:28 -0400 | [diff] [blame] | 952 | select TI_DAVINCI_CPDMA |
Anant Gole | a6286ee | 2009-05-18 15:19:01 -0700 | [diff] [blame] | 953 | select PHYLIB |
| 954 | help |
| 955 | This driver supports TI's DaVinci Ethernet . |
| 956 | |
| 957 | To compile this driver as a module, choose M here: the module |
| 958 | will be called davinci_emac_driver. This is recommended. |
| 959 | |
Cyril Chemparathy | f20136e | 2010-09-15 10:11:21 -0400 | [diff] [blame] | 960 | config TI_DAVINCI_MDIO |
| 961 | tristate "TI DaVinci MDIO Support" |
| 962 | depends on ARM && ( ARCH_DAVINCI || ARCH_OMAP3 ) |
| 963 | select PHYLIB |
| 964 | help |
| 965 | This driver supports TI's DaVinci MDIO module. |
| 966 | |
| 967 | To compile this driver as a module, choose M here: the module |
| 968 | will be called davinci_mdio. This is recommended. |
| 969 | |
Cyril Chemparathy | ef8c2da | 2010-09-15 10:11:28 -0400 | [diff] [blame] | 970 | config TI_DAVINCI_CPDMA |
| 971 | tristate "TI DaVinci CPDMA Support" |
| 972 | depends on ARM && ( ARCH_DAVINCI || ARCH_OMAP3 ) |
| 973 | help |
| 974 | This driver supports TI's DaVinci CPDMA dma engine. |
| 975 | |
| 976 | To compile this driver as a module, choose M here: the module |
| 977 | will be called davinci_cpdma. This is recommended. |
| 978 | |
Sascha Hauer | a136527 | 2005-05-05 15:14:15 -0700 | [diff] [blame] | 979 | config DM9000 |
| 980 | tristate "DM9000 support" |
Alex Landau | f40d24d | 2007-07-12 12:11:48 +0800 | [diff] [blame] | 981 | depends on ARM || BLACKFIN || MIPS |
Sascha Hauer | a136527 | 2005-05-05 15:14:15 -0700 | [diff] [blame] | 982 | select CRC32 |
| 983 | select MII |
| 984 | ---help--- |
| 985 | Support for DM9000 chipset. |
| 986 | |
Adrian Bunk | 57ce45d | 2007-11-12 21:03:58 -0800 | [diff] [blame] | 987 | To compile this driver as a module, choose M here. The module |
| 988 | will be called dm9000. |
Sascha Hauer | a136527 | 2005-05-05 15:14:15 -0700 | [diff] [blame] | 989 | |
Ben Dooks | 485ca22 | 2008-06-24 22:16:06 +0100 | [diff] [blame] | 990 | config DM9000_DEBUGLEVEL |
| 991 | int "DM9000 maximum debug level" |
| 992 | depends on DM9000 |
| 993 | default 4 |
| 994 | help |
| 995 | The maximum level of debugging code compiled into the DM9000 |
| 996 | driver. |
| 997 | |
Ben Dooks | f8dd0ec | 2008-06-24 22:16:04 +0100 | [diff] [blame] | 998 | config DM9000_FORCE_SIMPLE_PHY_POLL |
| 999 | bool "Force simple NSR based PHY polling" |
| 1000 | depends on DM9000 |
| 1001 | ---help--- |
| 1002 | This configuration forces the DM9000 to use the NSR's LinkStatus |
| 1003 | bit to determine if the link is up or down instead of the more |
| 1004 | costly MII PHY reads. Note, this will not work if the chip is |
| 1005 | operating with an external PHY. |
| 1006 | |
Claudio Lanconelli | 3ec9c11 | 2008-01-14 11:00:28 +0100 | [diff] [blame] | 1007 | config ENC28J60 |
| 1008 | tristate "ENC28J60 support" |
| 1009 | depends on EXPERIMENTAL && SPI && NET_ETHERNET |
| 1010 | select CRC32 |
| 1011 | ---help--- |
| 1012 | Support for the Microchip EN28J60 ethernet chip. |
| 1013 | |
Johann Felix Soden | 2bfc79d | 2008-02-05 03:13:58 -0800 | [diff] [blame] | 1014 | To compile this driver as a module, choose M here. The module will be |
Claudio Lanconelli | 3ec9c11 | 2008-01-14 11:00:28 +0100 | [diff] [blame] | 1015 | called enc28j60. |
| 1016 | |
| 1017 | config ENC28J60_WRITEVERIFY |
| 1018 | bool "Enable write verify" |
| 1019 | depends on ENC28J60 |
| 1020 | ---help--- |
| 1021 | Enable the verify after the buffer write useful for debugging purpose. |
| 1022 | If unsure, say N. |
| 1023 | |
Thierry Reding | a170285 | 2009-03-27 00:12:24 -0700 | [diff] [blame] | 1024 | config ETHOC |
| 1025 | tristate "OpenCores 10/100 Mbps Ethernet MAC support" |
Geert Uytterhoeven | 0ebe74e | 2009-11-20 09:19:10 +0000 | [diff] [blame] | 1026 | depends on NET_ETHERNET && HAS_IOMEM && HAS_DMA |
Thierry Reding | a170285 | 2009-03-27 00:12:24 -0700 | [diff] [blame] | 1027 | select MII |
| 1028 | select PHYLIB |
Randy Dunlap | c5cacb3 | 2009-04-08 15:41:25 -0700 | [diff] [blame] | 1029 | select CRC32 |
| 1030 | select BITREVERSE |
Thierry Reding | a170285 | 2009-03-27 00:12:24 -0700 | [diff] [blame] | 1031 | help |
| 1032 | Say Y here if you want to use the OpenCores 10/100 Mbps Ethernet MAC. |
| 1033 | |
Kristoffer Glembo | d4c4113 | 2010-02-15 03:33:44 +0000 | [diff] [blame] | 1034 | config GRETH |
| 1035 | tristate "Aeroflex Gaisler GRETH Ethernet MAC support" |
David S. Miller | cf261b2 | 2010-02-18 23:32:26 -0800 | [diff] [blame] | 1036 | depends on SPARC |
Kristoffer Glembo | d4c4113 | 2010-02-15 03:33:44 +0000 | [diff] [blame] | 1037 | select PHYLIB |
| 1038 | select CRC32 |
| 1039 | help |
| 1040 | Say Y here if you want to use the Aeroflex Gaisler GRETH Ethernet MAC. |
| 1041 | |
Dustin McIntire | 0a0c72c | 2006-04-19 20:24:51 -0700 | [diff] [blame] | 1042 | config SMC911X |
| 1043 | tristate "SMSC LAN911[5678] support" |
| 1044 | select CRC32 |
| 1045 | select MII |
Akira Takeuchi | 62747cd | 2010-10-27 17:28:58 +0100 | [diff] [blame] | 1046 | depends on ARM || SUPERH || MN10300 |
Dustin McIntire | 0a0c72c | 2006-04-19 20:24:51 -0700 | [diff] [blame] | 1047 | help |
| 1048 | This is a driver for SMSC's LAN911x series of Ethernet chipsets |
| 1049 | including the new LAN9115, LAN9116, LAN9117, and LAN9118. |
| 1050 | Say Y if you want it compiled into the kernel, |
| 1051 | and read the Ethernet-HOWTO, available from |
Justin P. Mattock | 631dd1a | 2010-10-18 11:03:14 +0200 | [diff] [blame] | 1052 | <http://www.tldp.org/docs.html#howto>. |
Dustin McIntire | 0a0c72c | 2006-04-19 20:24:51 -0700 | [diff] [blame] | 1053 | |
| 1054 | This driver is also available as a module. The module will be |
| 1055 | called smc911x. If you want to compile it as a module, say M |
Alexander E. Patrakov | 39f5fb3 | 2007-03-16 18:28:43 +0500 | [diff] [blame] | 1056 | here and read <file:Documentation/kbuild/modules.txt> |
Dustin McIntire | 0a0c72c | 2006-04-19 20:24:51 -0700 | [diff] [blame] | 1057 | |
Steve Glendinning | fd9abb3 | 2008-11-05 00:35:37 +0000 | [diff] [blame] | 1058 | config SMSC911X |
| 1059 | tristate "SMSC LAN911x/LAN921x families embedded ethernet support" |
Akira Takeuchi | 62747cd | 2010-10-27 17:28:58 +0100 | [diff] [blame] | 1060 | depends on ARM || SUPERH || BLACKFIN || MIPS || MN10300 |
Steve Glendinning | fd9abb3 | 2008-11-05 00:35:37 +0000 | [diff] [blame] | 1061 | select CRC32 |
| 1062 | select MII |
| 1063 | select PHYLIB |
| 1064 | ---help--- |
| 1065 | Say Y here if you want support for SMSC LAN911x and LAN921x families |
| 1066 | of ethernet controllers. |
| 1067 | |
| 1068 | To compile this driver as a module, choose M here and read |
| 1069 | <file:Documentation/networking/net-modules.txt>. The module |
| 1070 | will be called smsc911x. |
| 1071 | |
Akira Takeuchi | 62747cd | 2010-10-27 17:28:58 +0100 | [diff] [blame] | 1072 | config SMSC911X_ARCH_HOOKS |
| 1073 | def_bool n |
| 1074 | depends on SMSC911X |
| 1075 | help |
| 1076 | If the arch enables this, it allows the arch to implement various |
| 1077 | hooks for more comprehensive interrupt control and also to override |
| 1078 | the source of the MAC address. |
| 1079 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1080 | config NET_VENDOR_RACAL |
| 1081 | bool "Racal-Interlan (Micom) NI cards" |
Jan Engelhardt | d1c0a65 | 2007-06-13 12:48:53 -0700 | [diff] [blame] | 1082 | depends on ISA |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1083 | help |
| 1084 | If you have a network (Ethernet) card belonging to this class, such |
| 1085 | as the NI5010, NI5210 or NI6210, say Y and read the Ethernet-HOWTO, |
| 1086 | available from <http://www.tldp.org/docs.html#howto>. |
| 1087 | |
| 1088 | Note that the answer to this question doesn't directly affect the |
| 1089 | kernel: saying N will just cause the configurator to skip all |
| 1090 | the questions about NI cards. If you say Y, you will be asked for |
| 1091 | your specific card in the following questions. |
| 1092 | |
| 1093 | config NI5010 |
| 1094 | tristate "NI5010 support (EXPERIMENTAL)" |
| 1095 | depends on NET_VENDOR_RACAL && ISA && EXPERIMENTAL && BROKEN_ON_SMP |
| 1096 | ---help--- |
| 1097 | If you have a network (Ethernet) card of this type, say Y and read |
| 1098 | the Ethernet-HOWTO, available from |
| 1099 | <http://www.tldp.org/docs.html#howto>. Note that this is still |
| 1100 | experimental code. |
| 1101 | |
Adrian Bunk | 57ce45d | 2007-11-12 21:03:58 -0800 | [diff] [blame] | 1102 | To compile this driver as a module, choose M here. The module |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1103 | will be called ni5010. |
| 1104 | |
| 1105 | config NI52 |
| 1106 | tristate "NI5210 support" |
| 1107 | depends on NET_VENDOR_RACAL && ISA |
| 1108 | help |
| 1109 | If you have a network (Ethernet) card of this type, say Y and read |
| 1110 | the Ethernet-HOWTO, available from |
| 1111 | <http://www.tldp.org/docs.html#howto>. |
| 1112 | |
Adrian Bunk | 57ce45d | 2007-11-12 21:03:58 -0800 | [diff] [blame] | 1113 | To compile this driver as a module, choose M here. The module |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1114 | will be called ni52. |
| 1115 | |
| 1116 | config NI65 |
| 1117 | tristate "NI6510 support" |
Al Viro | a553260 | 2005-05-04 05:39:42 +0100 | [diff] [blame] | 1118 | depends on NET_VENDOR_RACAL && ISA && ISA_DMA_API |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1119 | help |
| 1120 | If you have a network (Ethernet) card of this type, say Y and read |
| 1121 | the Ethernet-HOWTO, available from |
| 1122 | <http://www.tldp.org/docs.html#howto>. |
| 1123 | |
Adrian Bunk | 57ce45d | 2007-11-12 21:03:58 -0800 | [diff] [blame] | 1124 | To compile this driver as a module, choose M here. The module |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1125 | will be called ni65. |
| 1126 | |
Ilya Yanok | 4796417 | 2009-03-11 23:26:02 -0700 | [diff] [blame] | 1127 | config DNET |
| 1128 | tristate "Dave ethernet support (DNET)" |
Ilya Yanok | 4b97926 | 2009-03-21 16:58:47 -0700 | [diff] [blame] | 1129 | depends on NET_ETHERNET && HAS_IOMEM |
Ilya Yanok | 4796417 | 2009-03-11 23:26:02 -0700 | [diff] [blame] | 1130 | select PHYLIB |
| 1131 | help |
| 1132 | The Dave ethernet interface (DNET) is found on Qong Board FPGA. |
| 1133 | Say Y to include support for the DNET chip. |
| 1134 | |
| 1135 | To compile this driver as a module, choose M here: the module |
| 1136 | will be called dnet. |
| 1137 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1138 | source "drivers/net/tulip/Kconfig" |
| 1139 | |
| 1140 | config AT1700 |
| 1141 | tristate "AT1700/1720 support (EXPERIMENTAL)" |
Jan Engelhardt | d1c0a65 | 2007-06-13 12:48:53 -0700 | [diff] [blame] | 1142 | depends on (ISA || MCA_LEGACY) && EXPERIMENTAL |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1143 | select CRC32 |
| 1144 | ---help--- |
| 1145 | If you have a network (Ethernet) card of this type, say Y and read |
| 1146 | the Ethernet-HOWTO, available from |
| 1147 | <http://www.tldp.org/docs.html#howto>. |
| 1148 | |
Adrian Bunk | 57ce45d | 2007-11-12 21:03:58 -0800 | [diff] [blame] | 1149 | To compile this driver as a module, choose M here. The module |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1150 | will be called at1700. |
| 1151 | |
| 1152 | config DEPCA |
| 1153 | tristate "DEPCA, DE10x, DE200, DE201, DE202, DE422 support" |
Jan Engelhardt | d1c0a65 | 2007-06-13 12:48:53 -0700 | [diff] [blame] | 1154 | depends on ISA || EISA || MCA |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1155 | select CRC32 |
| 1156 | ---help--- |
| 1157 | If you have a network (Ethernet) card of this type, say Y and read |
| 1158 | the Ethernet-HOWTO, available from |
| 1159 | <http://www.tldp.org/docs.html#howto> as well as |
| 1160 | <file:drivers/net/depca.c>. |
| 1161 | |
Adrian Bunk | 57ce45d | 2007-11-12 21:03:58 -0800 | [diff] [blame] | 1162 | To compile this driver as a module, choose M here. The module |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1163 | will be called depca. |
| 1164 | |
| 1165 | config HP100 |
| 1166 | tristate "HP 10/100VG PCLAN (ISA, EISA, PCI) support" |
Jan Engelhardt | d1c0a65 | 2007-06-13 12:48:53 -0700 | [diff] [blame] | 1167 | depends on ISA || EISA || PCI |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1168 | help |
| 1169 | If you have a network (Ethernet) card of this type, say Y and read |
| 1170 | the Ethernet-HOWTO, available from |
| 1171 | <http://www.tldp.org/docs.html#howto>. |
| 1172 | |
Adrian Bunk | 57ce45d | 2007-11-12 21:03:58 -0800 | [diff] [blame] | 1173 | To compile this driver as a module, choose M here. The module |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1174 | will be called hp100. |
| 1175 | |
| 1176 | config NET_ISA |
| 1177 | bool "Other ISA cards" |
Jan Engelhardt | d1c0a65 | 2007-06-13 12:48:53 -0700 | [diff] [blame] | 1178 | depends on ISA |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1179 | ---help--- |
| 1180 | If your network (Ethernet) card hasn't been mentioned yet and its |
| 1181 | bus system (that's the way the cards talks to the other components |
| 1182 | of your computer) is ISA (as opposed to EISA, VLB or PCI), say Y. |
| 1183 | Make sure you know the name of your card. Read the Ethernet-HOWTO, |
| 1184 | available from <http://www.tldp.org/docs.html#howto>. |
| 1185 | |
| 1186 | If unsure, say Y. |
| 1187 | |
| 1188 | Note that the answer to this question doesn't directly affect the |
| 1189 | kernel: saying N will just cause the configurator to skip all |
| 1190 | the remaining ISA network card questions. If you say Y, you will be |
| 1191 | asked for your specific card in the following questions. |
| 1192 | |
| 1193 | config E2100 |
| 1194 | tristate "Cabletron E21xx support" |
| 1195 | depends on NET_ISA |
| 1196 | select CRC32 |
| 1197 | help |
| 1198 | If you have a network (Ethernet) card of this type, say Y and read |
| 1199 | the Ethernet-HOWTO, available from |
| 1200 | <http://www.tldp.org/docs.html#howto>. |
| 1201 | |
Adrian Bunk | 57ce45d | 2007-11-12 21:03:58 -0800 | [diff] [blame] | 1202 | To compile this driver as a module, choose M here. The module |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1203 | will be called e2100. |
| 1204 | |
| 1205 | config EWRK3 |
| 1206 | tristate "EtherWORKS 3 (DE203, DE204, DE205) support" |
| 1207 | depends on NET_ISA |
| 1208 | select CRC32 |
| 1209 | ---help--- |
| 1210 | This driver supports the DE203, DE204 and DE205 network (Ethernet) |
| 1211 | cards. If this is for you, say Y and read |
| 1212 | <file:Documentation/networking/ewrk3.txt> in the kernel source as |
| 1213 | well as the Ethernet-HOWTO, available from |
| 1214 | <http://www.tldp.org/docs.html#howto>. |
| 1215 | |
Adrian Bunk | 57ce45d | 2007-11-12 21:03:58 -0800 | [diff] [blame] | 1216 | To compile this driver as a module, choose M here. The module |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1217 | will be called ewrk3. |
| 1218 | |
| 1219 | config EEXPRESS |
| 1220 | tristate "EtherExpress 16 support" |
| 1221 | depends on NET_ISA |
| 1222 | ---help--- |
| 1223 | If you have an EtherExpress16 network (Ethernet) card, say Y and |
| 1224 | read the Ethernet-HOWTO, available from |
| 1225 | <http://www.tldp.org/docs.html#howto>. Note that the Intel |
| 1226 | EtherExpress16 card used to be regarded as a very poor choice |
| 1227 | because the driver was very unreliable. We now have a new driver |
| 1228 | that should do better. |
| 1229 | |
Adrian Bunk | 57ce45d | 2007-11-12 21:03:58 -0800 | [diff] [blame] | 1230 | To compile this driver as a module, choose M here. The module |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1231 | will be called eexpress. |
| 1232 | |
| 1233 | config EEXPRESS_PRO |
| 1234 | tristate "EtherExpressPro support/EtherExpress 10 (i82595) support" |
| 1235 | depends on NET_ISA |
| 1236 | ---help--- |
| 1237 | If you have a network (Ethernet) card of this type, say Y. This |
Jon Mason | 47c5143 | 2006-02-12 11:53:04 -0600 | [diff] [blame] | 1238 | driver supports Intel i82595{FX,TX} based boards. Note however |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1239 | that the EtherExpress PRO/100 Ethernet card has its own separate |
| 1240 | driver. Please read the Ethernet-HOWTO, available from |
| 1241 | <http://www.tldp.org/docs.html#howto>. |
| 1242 | |
Adrian Bunk | 57ce45d | 2007-11-12 21:03:58 -0800 | [diff] [blame] | 1243 | To compile this driver as a module, choose M here. The module |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1244 | will be called eepro. |
| 1245 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1246 | config HPLAN_PLUS |
| 1247 | tristate "HP PCLAN+ (27247B and 27252A) support" |
| 1248 | depends on NET_ISA |
| 1249 | select CRC32 |
| 1250 | help |
| 1251 | If you have a network (Ethernet) card of this type, say Y and read |
| 1252 | the Ethernet-HOWTO, available from |
| 1253 | <http://www.tldp.org/docs.html#howto>. |
| 1254 | |
Adrian Bunk | 57ce45d | 2007-11-12 21:03:58 -0800 | [diff] [blame] | 1255 | To compile this driver as a module, choose M here. The module |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1256 | will be called hp-plus. |
| 1257 | |
| 1258 | config HPLAN |
| 1259 | tristate "HP PCLAN (27245 and other 27xxx series) support" |
| 1260 | depends on NET_ISA |
| 1261 | select CRC32 |
| 1262 | help |
| 1263 | If you have a network (Ethernet) card of this type, say Y and read |
| 1264 | the Ethernet-HOWTO, available from |
| 1265 | <http://www.tldp.org/docs.html#howto>. |
| 1266 | |
Adrian Bunk | 57ce45d | 2007-11-12 21:03:58 -0800 | [diff] [blame] | 1267 | To compile this driver as a module, choose M here. The module |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1268 | will be called hp. |
| 1269 | |
| 1270 | config LP486E |
| 1271 | tristate "LP486E on board Ethernet" |
| 1272 | depends on NET_ISA |
| 1273 | help |
| 1274 | Say Y here to support the 82596-based on-board Ethernet controller |
| 1275 | for the Panther motherboard, which is one of the two shipped in the |
| 1276 | Intel Professional Workstation. |
| 1277 | |
| 1278 | config ETH16I |
| 1279 | tristate "ICL EtherTeam 16i/32 support" |
| 1280 | depends on NET_ISA |
| 1281 | help |
| 1282 | If you have a network (Ethernet) card of this type, say Y and read |
| 1283 | the Ethernet-HOWTO, available from |
| 1284 | <http://www.tldp.org/docs.html#howto>. |
| 1285 | |
Adrian Bunk | 57ce45d | 2007-11-12 21:03:58 -0800 | [diff] [blame] | 1286 | To compile this driver as a module, choose M here. The module |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1287 | will be called eth16i. |
| 1288 | |
| 1289 | config NE2000 |
| 1290 | tristate "NE2000/NE1000 support" |
Atsushi Nemoto | c7e65c1 | 2008-08-08 00:55:17 +0900 | [diff] [blame] | 1291 | depends on NET_ISA || (Q40 && m) || M32R || MACH_TX49XX |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1292 | select CRC32 |
| 1293 | ---help--- |
| 1294 | If you have a network (Ethernet) card of this type, say Y and read |
| 1295 | the Ethernet-HOWTO, available from |
| 1296 | <http://www.tldp.org/docs.html#howto>. Many Ethernet cards |
| 1297 | without a specific driver are compatible with NE2000. |
| 1298 | |
| 1299 | If you have a PCI NE2000 card however, say N here and Y to "PCI |
Jesper Juhl | 28beaf6 | 2006-03-08 00:06:31 -0800 | [diff] [blame] | 1300 | NE2000 and clone support" under "EISA, VLB, PCI and on board |
| 1301 | controllers" below. If you have a NE2000 card and are running on |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1302 | an MCA system (a bus system used on some IBM PS/2 computers and |
| 1303 | laptops), say N here and Y to "NE/2 (ne2000 MCA version) support", |
| 1304 | below. |
| 1305 | |
Adrian Bunk | 57ce45d | 2007-11-12 21:03:58 -0800 | [diff] [blame] | 1306 | To compile this driver as a module, choose M here. The module |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1307 | will be called ne. |
| 1308 | |
| 1309 | config ZNET |
| 1310 | tristate "Zenith Z-Note support (EXPERIMENTAL)" |
Al Viro | a553260 | 2005-05-04 05:39:42 +0100 | [diff] [blame] | 1311 | depends on NET_ISA && EXPERIMENTAL && ISA_DMA_API |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1312 | help |
| 1313 | The Zenith Z-Note notebook computer has a built-in network |
| 1314 | (Ethernet) card, and this is the Linux driver for it. Note that the |
| 1315 | IBM Thinkpad 300 is compatible with the Z-Note and is also supported |
| 1316 | by this driver. Read the Ethernet-HOWTO, available from |
| 1317 | <http://www.tldp.org/docs.html#howto>. |
| 1318 | |
| 1319 | config SEEQ8005 |
| 1320 | tristate "SEEQ8005 support (EXPERIMENTAL)" |
| 1321 | depends on NET_ISA && EXPERIMENTAL |
| 1322 | help |
| 1323 | This is a driver for the SEEQ 8005 network (Ethernet) card. If this |
| 1324 | is for you, read the Ethernet-HOWTO, available from |
| 1325 | <http://www.tldp.org/docs.html#howto>. |
| 1326 | |
Adrian Bunk | 57ce45d | 2007-11-12 21:03:58 -0800 | [diff] [blame] | 1327 | To compile this driver as a module, choose M here. The module |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1328 | will be called seeq8005. |
| 1329 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1330 | config NE2_MCA |
| 1331 | tristate "NE/2 (ne2000 MCA version) support" |
Jan Engelhardt | d1c0a65 | 2007-06-13 12:48:53 -0700 | [diff] [blame] | 1332 | depends on MCA_LEGACY |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1333 | select CRC32 |
| 1334 | help |
| 1335 | If you have a network (Ethernet) card of this type, say Y and read |
| 1336 | the Ethernet-HOWTO, available from |
| 1337 | <http://www.tldp.org/docs.html#howto>. |
| 1338 | |
Adrian Bunk | 57ce45d | 2007-11-12 21:03:58 -0800 | [diff] [blame] | 1339 | To compile this driver as a module, choose M here. The module |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1340 | will be called ne2. |
| 1341 | |
| 1342 | config IBMLANA |
| 1343 | tristate "IBM LAN Adapter/A support" |
Adrian Bunk | e6353f3 | 2008-01-30 22:02:35 +0200 | [diff] [blame] | 1344 | depends on MCA |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1345 | ---help--- |
| 1346 | This is a Micro Channel Ethernet adapter. You need to set |
| 1347 | CONFIG_MCA to use this driver. It is both available as an in-kernel |
| 1348 | driver and as a module. |
| 1349 | |
Adrian Bunk | 57ce45d | 2007-11-12 21:03:58 -0800 | [diff] [blame] | 1350 | To compile this driver as a module, choose M here. The only |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1351 | currently supported card is the IBM LAN Adapter/A for Ethernet. It |
| 1352 | will both support 16K and 32K memory windows, however a 32K window |
| 1353 | gives a better security against packet losses. Usage of multiple |
| 1354 | boards with this driver should be possible, but has not been tested |
| 1355 | up to now due to lack of hardware. |
| 1356 | |
| 1357 | config IBMVETH |
| 1358 | tristate "IBM LAN Virtual Ethernet support" |
Jan Engelhardt | d1c0a65 | 2007-06-13 12:48:53 -0700 | [diff] [blame] | 1359 | depends on PPC_PSERIES |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1360 | ---help--- |
| 1361 | This driver supports virtual ethernet adapters on newer IBM iSeries |
| 1362 | and pSeries systems. |
| 1363 | |
Adrian Bunk | 57ce45d | 2007-11-12 21:03:58 -0800 | [diff] [blame] | 1364 | To compile this driver as a module, choose M here. The module will |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1365 | be called ibmveth. |
| 1366 | |
David Gibson | 1d3bb99 | 2007-08-23 13:56:01 +1000 | [diff] [blame] | 1367 | source "drivers/net/ibm_newemac/Kconfig" |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1368 | |
| 1369 | config NET_PCI |
| 1370 | bool "EISA, VLB, PCI and on board controllers" |
Jan Engelhardt | d1c0a65 | 2007-06-13 12:48:53 -0700 | [diff] [blame] | 1371 | depends on ISA || EISA || PCI |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1372 | help |
| 1373 | This is another class of network cards which attach directly to the |
| 1374 | bus. If you have one of those, say Y and read the Ethernet-HOWTO, |
| 1375 | available from <http://www.tldp.org/docs.html#howto>. |
| 1376 | |
| 1377 | Note that the answer to this question doesn't directly affect the |
| 1378 | kernel: saying N will just cause the configurator to skip all |
| 1379 | the questions about this class of network cards. If you say Y, you |
| 1380 | will be asked for your specific card in the following questions. If |
| 1381 | you are unsure, say Y. |
| 1382 | |
| 1383 | config PCNET32 |
| 1384 | tristate "AMD PCnet32 PCI support" |
| 1385 | depends on NET_PCI && PCI |
| 1386 | select CRC32 |
| 1387 | select MII |
| 1388 | help |
| 1389 | If you have a PCnet32 or PCnetPCI based network (Ethernet) card, |
| 1390 | answer Y here and read the Ethernet-HOWTO, available from |
| 1391 | <http://www.tldp.org/docs.html#howto>. |
| 1392 | |
Adrian Bunk | 57ce45d | 2007-11-12 21:03:58 -0800 | [diff] [blame] | 1393 | To compile this driver as a module, choose M here. The module |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1394 | will be called pcnet32. |
| 1395 | |
| 1396 | config AMD8111_ETH |
| 1397 | tristate "AMD 8111 (new PCI lance) support" |
| 1398 | depends on NET_PCI && PCI |
| 1399 | select CRC32 |
| 1400 | select MII |
| 1401 | help |
| 1402 | If you have an AMD 8111-based PCI lance ethernet card, |
| 1403 | answer Y here and read the Ethernet-HOWTO, available from |
| 1404 | <http://www.tldp.org/docs.html#howto>. |
| 1405 | |
Adrian Bunk | 57ce45d | 2007-11-12 21:03:58 -0800 | [diff] [blame] | 1406 | To compile this driver as a module, choose M here. The module |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1407 | will be called amd8111e. |
Jan Engelhardt | d1c0a65 | 2007-06-13 12:48:53 -0700 | [diff] [blame] | 1408 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1409 | config ADAPTEC_STARFIRE |
| 1410 | tristate "Adaptec Starfire/DuraLAN support" |
| 1411 | depends on NET_PCI && PCI |
| 1412 | select CRC32 |
| 1413 | select MII |
| 1414 | help |
| 1415 | Say Y here if you have an Adaptec Starfire (or DuraLAN) PCI network |
| 1416 | adapter. The DuraLAN chip is used on the 64 bit PCI boards from |
| 1417 | Adaptec e.g. the ANA-6922A. The older 32 bit boards use the tulip |
| 1418 | driver. |
| 1419 | |
| 1420 | To compile this driver as a module, choose M here: the module |
| 1421 | will be called starfire. This is recommended. |
| 1422 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1423 | config AC3200 |
| 1424 | tristate "Ansel Communications EISA 3200 support (EXPERIMENTAL)" |
| 1425 | depends on NET_PCI && (ISA || EISA) && EXPERIMENTAL |
| 1426 | select CRC32 |
| 1427 | help |
| 1428 | If you have a network (Ethernet) card of this type, say Y and read |
| 1429 | the Ethernet-HOWTO, available from |
| 1430 | <http://www.tldp.org/docs.html#howto>. |
| 1431 | |
Adrian Bunk | 57ce45d | 2007-11-12 21:03:58 -0800 | [diff] [blame] | 1432 | To compile this driver as a module, choose M here. The module |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1433 | will be called ac3200. |
| 1434 | |
Tristram Ha | 1eb1cc7 | 2010-02-08 11:38:28 +0000 | [diff] [blame] | 1435 | config KSZ884X_PCI |
| 1436 | tristate "Micrel KSZ8841/2 PCI" |
| 1437 | depends on NET_PCI && PCI |
| 1438 | select MII |
| 1439 | select CRC32 |
| 1440 | help |
| 1441 | This PCI driver is for Micrel KSZ8841/KSZ8842 PCI Ethernet chip. |
| 1442 | |
| 1443 | To compile this driver as a module, choose M here. The module |
| 1444 | will be called ksz884x. |
| 1445 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1446 | config APRICOT |
| 1447 | tristate "Apricot Xen-II on board Ethernet" |
| 1448 | depends on NET_PCI && ISA |
| 1449 | help |
| 1450 | If you have a network (Ethernet) controller of this type, say Y and |
| 1451 | read the Ethernet-HOWTO, available from |
| 1452 | <http://www.tldp.org/docs.html#howto>. |
| 1453 | |
Adrian Bunk | 57ce45d | 2007-11-12 21:03:58 -0800 | [diff] [blame] | 1454 | To compile this driver as a module, choose M here. The module |
| 1455 | will be called apricot. |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1456 | |
| 1457 | config B44 |
Michael Buesch | 753f492 | 2007-09-19 14:20:30 -0700 | [diff] [blame] | 1458 | tristate "Broadcom 440x/47xx ethernet support" |
Al Viro | 46cb69c | 2008-05-21 06:32:11 +0100 | [diff] [blame] | 1459 | depends on SSB_POSSIBLE && HAS_DMA |
Michael Buesch | 753f492 | 2007-09-19 14:20:30 -0700 | [diff] [blame] | 1460 | select SSB |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1461 | select MII |
| 1462 | help |
Michael Buesch | 753f492 | 2007-09-19 14:20:30 -0700 | [diff] [blame] | 1463 | If you have a network (Ethernet) controller of this type, say Y |
| 1464 | or M and read the Ethernet-HOWTO, available from |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1465 | <http://www.tldp.org/docs.html#howto>. |
| 1466 | |
Adrian Bunk | 57ce45d | 2007-11-12 21:03:58 -0800 | [diff] [blame] | 1467 | To compile this driver as a module, choose M here. The module |
| 1468 | will be called b44. |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1469 | |
Michael Buesch | 753f492 | 2007-09-19 14:20:30 -0700 | [diff] [blame] | 1470 | # Auto-select SSB PCI-HOST support, if possible |
| 1471 | config B44_PCI_AUTOSELECT |
| 1472 | bool |
| 1473 | depends on B44 && SSB_PCIHOST_POSSIBLE |
| 1474 | select SSB_PCIHOST |
| 1475 | default y |
| 1476 | |
| 1477 | # Auto-select SSB PCICORE driver, if possible |
| 1478 | config B44_PCICORE_AUTOSELECT |
| 1479 | bool |
| 1480 | depends on B44 && SSB_DRIVER_PCICORE_POSSIBLE |
| 1481 | select SSB_DRIVER_PCICORE |
| 1482 | default y |
| 1483 | |
| 1484 | config B44_PCI |
| 1485 | bool |
| 1486 | depends on B44_PCI_AUTOSELECT && B44_PCICORE_AUTOSELECT |
| 1487 | default y |
| 1488 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1489 | config FORCEDETH |
Adrian Bunk | 8277008 | 2006-03-08 00:06:30 -0800 | [diff] [blame] | 1490 | tristate "nForce Ethernet support" |
| 1491 | depends on NET_PCI && PCI |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1492 | help |
| 1493 | If you have a network (Ethernet) controller of this type, say Y and |
| 1494 | read the Ethernet-HOWTO, available from |
| 1495 | <http://www.tldp.org/docs.html#howto>. |
| 1496 | |
Adrian Bunk | 57ce45d | 2007-11-12 21:03:58 -0800 | [diff] [blame] | 1497 | To compile this driver as a module, choose M here. The module |
| 1498 | will be called forcedeth. |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1499 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1500 | config CS89x0 |
| 1501 | tristate "CS89x0 support" |
Gilles Chanteperdrix | 0ac4ed9 | 2008-09-26 15:44:43 +0100 | [diff] [blame] | 1502 | depends on NET_ETHERNET && (ISA || EISA || MACH_IXDP2351 \ |
Domenico Andreoli | 2ce8c07 | 2011-03-14 03:47:07 +0000 | [diff] [blame] | 1503 | || ARCH_IXDP2X01 || MACH_MX31ADS || MACH_QQ2440) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1504 | ---help--- |
| 1505 | Support for CS89x0 chipset based Ethernet cards. If you have a |
| 1506 | network (Ethernet) card of this type, say Y and read the |
| 1507 | Ethernet-HOWTO, available from |
| 1508 | <http://www.tldp.org/docs.html#howto> as well as |
| 1509 | <file:Documentation/networking/cs89x0.txt>. |
| 1510 | |
Adrian Bunk | 57ce45d | 2007-11-12 21:03:58 -0800 | [diff] [blame] | 1511 | To compile this driver as a module, choose M here. The module |
| 1512 | will be called cs89x0. |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1513 | |
Gilles Chanteperdrix | 0ac4ed9 | 2008-09-26 15:44:43 +0100 | [diff] [blame] | 1514 | config CS89x0_NONISA_IRQ |
| 1515 | def_bool y |
| 1516 | depends on CS89x0 != n |
Domenico Andreoli | 2ce8c07 | 2011-03-14 03:47:07 +0000 | [diff] [blame] | 1517 | depends on MACH_IXDP2351 || ARCH_IXDP2X01 || MACH_MX31ADS || MACH_QQ2440 |
Gilles Chanteperdrix | 0ac4ed9 | 2008-09-26 15:44:43 +0100 | [diff] [blame] | 1518 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1519 | config TC35815 |
| 1520 | tristate "TOSHIBA TC35815 Ethernet support" |
Atsushi Nemoto | eea221c | 2007-03-03 23:54:59 +0900 | [diff] [blame] | 1521 | depends on NET_PCI && PCI && MIPS |
Atsushi Nemoto | c6686fe | 2008-04-12 00:47:46 +0900 | [diff] [blame] | 1522 | select PHYLIB |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1523 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1524 | config E100 |
| 1525 | tristate "Intel(R) PRO/100+ support" |
| 1526 | depends on NET_PCI && PCI |
| 1527 | select MII |
| 1528 | ---help--- |
| 1529 | This driver supports Intel(R) PRO/100 family of adapters. |
| 1530 | To verify that your adapter is supported, find the board ID number |
| 1531 | on the adapter. Look for a label that has a barcode and a number |
| 1532 | in the format 123456-001 (six digits hyphen three digits). |
| 1533 | |
| 1534 | Use the above information and the Adapter & Driver ID Guide at: |
| 1535 | |
| 1536 | <http://support.intel.com/support/network/adapter/pro100/21397.htm> |
| 1537 | |
Philippe De Muyter | e85eb11 | 2010-11-11 12:31:21 +0000 | [diff] [blame] | 1538 | to identify the adapter. |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1539 | |
| 1540 | For the latest Intel PRO/100 network driver for Linux, see: |
| 1541 | |
Justin P. Mattock | 631dd1a | 2010-10-18 11:03:14 +0200 | [diff] [blame] | 1542 | <http://www.intel.com/p/en_US/support/highlights/network/pro100plus> |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1543 | |
| 1544 | More specific information on configuring the driver is in |
| 1545 | <file:Documentation/networking/e100.txt>. |
| 1546 | |
Adrian Bunk | 57ce45d | 2007-11-12 21:03:58 -0800 | [diff] [blame] | 1547 | To compile this driver as a module, choose M here. The module |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1548 | will be called e100. |
| 1549 | |
| 1550 | config LNE390 |
| 1551 | tristate "Mylex EISA LNE390A/B support (EXPERIMENTAL)" |
| 1552 | depends on NET_PCI && EISA && EXPERIMENTAL |
| 1553 | select CRC32 |
| 1554 | help |
| 1555 | If you have a network (Ethernet) card of this type, say Y and read |
| 1556 | the Ethernet-HOWTO, available from |
| 1557 | <http://www.tldp.org/docs.html#howto>. |
| 1558 | |
Adrian Bunk | 57ce45d | 2007-11-12 21:03:58 -0800 | [diff] [blame] | 1559 | To compile this driver as a module, choose M here. The module |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1560 | will be called lne390. |
| 1561 | |
| 1562 | config FEALNX |
| 1563 | tristate "Myson MTD-8xx PCI Ethernet support" |
| 1564 | depends on NET_PCI && PCI |
| 1565 | select CRC32 |
| 1566 | select MII |
| 1567 | help |
Justin P. Mattock | 631dd1a | 2010-10-18 11:03:14 +0200 | [diff] [blame] | 1568 | Say Y here to support the Myson MTD-800 family of PCI-based Ethernet |
| 1569 | cards. <http://www.myson.com.tw/> |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1570 | |
| 1571 | config NATSEMI |
| 1572 | tristate "National Semiconductor DP8381x series PCI Ethernet support" |
| 1573 | depends on NET_PCI && PCI |
| 1574 | select CRC32 |
| 1575 | help |
| 1576 | This driver is for the National Semiconductor DP83810 series, |
| 1577 | which is used in cards from PureData, NetGear, Linksys |
| 1578 | and others, including the 83815 chip. |
| 1579 | More specific information and updates are available from |
| 1580 | <http://www.scyld.com/network/natsemi.html>. |
| 1581 | |
| 1582 | config NE2K_PCI |
| 1583 | tristate "PCI NE2000 and clones support (see help)" |
| 1584 | depends on NET_PCI && PCI |
| 1585 | select CRC32 |
| 1586 | ---help--- |
| 1587 | This driver is for NE2000 compatible PCI cards. It will not work |
| 1588 | with ISA NE2000 cards (they have their own driver, "NE2000/NE1000 |
| 1589 | support" below). If you have a PCI NE2000 network (Ethernet) card, |
| 1590 | say Y and read the Ethernet-HOWTO, available from |
| 1591 | <http://www.tldp.org/docs.html#howto>. |
| 1592 | |
| 1593 | This driver also works for the following NE2000 clone cards: |
| 1594 | RealTek RTL-8029 Winbond 89C940 Compex RL2000 KTI ET32P2 |
| 1595 | NetVin NV5000SC Via 86C926 SureCom NE34 Winbond |
| 1596 | Holtek HT80232 Holtek HT80229 |
| 1597 | |
Adrian Bunk | 57ce45d | 2007-11-12 21:03:58 -0800 | [diff] [blame] | 1598 | To compile this driver as a module, choose M here. The module |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1599 | will be called ne2k-pci. |
| 1600 | |
| 1601 | config NE3210 |
| 1602 | tristate "Novell/Eagle/Microdyne NE3210 EISA support (EXPERIMENTAL)" |
| 1603 | depends on NET_PCI && EISA && EXPERIMENTAL |
| 1604 | select CRC32 |
| 1605 | ---help--- |
| 1606 | If you have a network (Ethernet) card of this type, say Y and read |
| 1607 | the Ethernet-HOWTO, available from |
| 1608 | <http://www.tldp.org/docs.html#howto>. Note that this driver |
| 1609 | will NOT WORK for NE3200 cards as they are completely different. |
| 1610 | |
Adrian Bunk | 57ce45d | 2007-11-12 21:03:58 -0800 | [diff] [blame] | 1611 | To compile this driver as a module, choose M here. The module |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1612 | will be called ne3210. |
| 1613 | |
| 1614 | config ES3210 |
| 1615 | tristate "Racal-Interlan EISA ES3210 support (EXPERIMENTAL)" |
| 1616 | depends on NET_PCI && EISA && EXPERIMENTAL |
| 1617 | select CRC32 |
| 1618 | help |
| 1619 | If you have a network (Ethernet) card of this type, say Y and read |
| 1620 | the Ethernet-HOWTO, available from |
| 1621 | <http://www.tldp.org/docs.html#howto>. |
| 1622 | |
Adrian Bunk | 57ce45d | 2007-11-12 21:03:58 -0800 | [diff] [blame] | 1623 | To compile this driver as a module, choose M here. The module |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1624 | will be called es3210. |
| 1625 | |
| 1626 | config 8139CP |
| 1627 | tristate "RealTek RTL-8139 C+ PCI Fast Ethernet Adapter support (EXPERIMENTAL)" |
| 1628 | depends on NET_PCI && PCI && EXPERIMENTAL |
| 1629 | select CRC32 |
| 1630 | select MII |
| 1631 | help |
| 1632 | This is a driver for the Fast Ethernet PCI network cards based on |
| 1633 | the RTL8139C+ chips. If you have one of those, say Y and read |
| 1634 | the Ethernet-HOWTO, available from |
| 1635 | <http://www.tldp.org/docs.html#howto>. |
| 1636 | |
| 1637 | To compile this driver as a module, choose M here: the module |
| 1638 | will be called 8139cp. This is recommended. |
| 1639 | |
| 1640 | config 8139TOO |
Adrian Bunk | f04e3f0 | 2005-05-16 21:13:03 +0200 | [diff] [blame] | 1641 | tristate "RealTek RTL-8129/8130/8139 PCI Fast Ethernet Adapter support" |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1642 | depends on NET_PCI && PCI |
| 1643 | select CRC32 |
| 1644 | select MII |
| 1645 | ---help--- |
| 1646 | This is a driver for the Fast Ethernet PCI network cards based on |
Adrian Bunk | f04e3f0 | 2005-05-16 21:13:03 +0200 | [diff] [blame] | 1647 | the RTL 8129/8130/8139 chips. If you have one of those, say Y and |
| 1648 | read the Ethernet-HOWTO <http://www.tldp.org/docs.html#howto>. |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1649 | |
| 1650 | To compile this driver as a module, choose M here: the module |
| 1651 | will be called 8139too. This is recommended. |
| 1652 | |
| 1653 | config 8139TOO_PIO |
| 1654 | bool "Use PIO instead of MMIO" |
| 1655 | default y |
| 1656 | depends on 8139TOO |
| 1657 | help |
| 1658 | This instructs the driver to use programmed I/O ports (PIO) instead |
| 1659 | of PCI shared memory (MMIO). This can possibly solve some problems |
| 1660 | in case your mainboard has memory consistency issues. If unsure, |
| 1661 | say N. |
| 1662 | |
| 1663 | config 8139TOO_TUNE_TWISTER |
| 1664 | bool "Support for uncommon RTL-8139 rev. K (automatic channel equalization)" |
| 1665 | depends on 8139TOO |
| 1666 | help |
| 1667 | This implements a function which might come in handy in case you |
| 1668 | are using low quality on long cabling. It is required for RealTek |
| 1669 | RTL-8139 revision K boards, and totally unused otherwise. It tries |
| 1670 | to match the transceiver to the cable characteristics. This is |
| 1671 | experimental since hardly documented by the manufacturer. |
| 1672 | If unsure, say Y. |
| 1673 | |
| 1674 | config 8139TOO_8129 |
| 1675 | bool "Support for older RTL-8129/8130 boards" |
| 1676 | depends on 8139TOO |
| 1677 | help |
| 1678 | This enables support for the older and uncommon RTL-8129 and |
| 1679 | RTL-8130 chips, which support MII via an external transceiver, |
| 1680 | instead of an internal one. Disabling this option will save some |
| 1681 | memory by making the code size smaller. If unsure, say Y. |
| 1682 | |
| 1683 | config 8139_OLD_RX_RESET |
| 1684 | bool "Use older RX-reset method" |
| 1685 | depends on 8139TOO |
| 1686 | help |
| 1687 | The 8139too driver was recently updated to contain a more rapid |
| 1688 | reset sequence, in the face of severe receive errors. This "new" |
| 1689 | RX-reset method should be adequate for all boards. But if you |
| 1690 | experience problems, you can enable this option to restore the |
| 1691 | old RX-reset behavior. If unsure, say N. |
| 1692 | |
Sten Wang | 7a47dd7 | 2007-11-12 21:31:11 -0800 | [diff] [blame] | 1693 | config R6040 |
Florian Fainelli | 6833411 | 2009-01-08 15:04:50 +0000 | [diff] [blame] | 1694 | tristate "RDC R6040 Fast Ethernet Adapter support" |
Sten Wang | 7a47dd7 | 2007-11-12 21:31:11 -0800 | [diff] [blame] | 1695 | depends on NET_PCI && PCI |
| 1696 | select CRC32 |
| 1697 | select MII |
Florian Fainelli | 3831861 | 2010-05-31 09:18:57 +0000 | [diff] [blame] | 1698 | select PHYLIB |
Sten Wang | 7a47dd7 | 2007-11-12 21:31:11 -0800 | [diff] [blame] | 1699 | help |
| 1700 | This is a driver for the R6040 Fast Ethernet MACs found in the |
| 1701 | the RDC R-321x System-on-chips. |
| 1702 | |
| 1703 | To compile this driver as a module, choose M here: the module |
| 1704 | will be called r6040. This is recommended. |
| 1705 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1706 | config SIS900 |
| 1707 | tristate "SiS 900/7016 PCI Fast Ethernet Adapter support" |
| 1708 | depends on NET_PCI && PCI |
| 1709 | select CRC32 |
Adrian Bunk | 6da0f68 | 2005-04-30 13:52:49 +0200 | [diff] [blame] | 1710 | select MII |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1711 | ---help--- |
| 1712 | This is a driver for the Fast Ethernet PCI network cards based on |
| 1713 | the SiS 900 and SiS 7016 chips. The SiS 900 core is also embedded in |
Adrian Bunk | c3cf560 | 2006-03-04 17:07:57 +0100 | [diff] [blame] | 1714 | SiS 630 and SiS 540 chipsets. |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1715 | |
| 1716 | This driver also supports AMD 79C901 HomePNA so that you can use |
| 1717 | your phone line as a network cable. |
| 1718 | |
| 1719 | To compile this driver as a module, choose M here: the module |
| 1720 | will be called sis900. This is recommended. |
| 1721 | |
| 1722 | config EPIC100 |
| 1723 | tristate "SMC EtherPower II" |
| 1724 | depends on NET_PCI && PCI |
| 1725 | select CRC32 |
| 1726 | select MII |
| 1727 | help |
| 1728 | This driver is for the SMC EtherPower II 9432 PCI Ethernet NIC, |
| 1729 | which is based on the SMC83c17x (EPIC/100). |
| 1730 | More specific information and updates are available from |
| 1731 | <http://www.scyld.com/network/epic100.html>. |
| 1732 | |
Steve Glendinning | 2cb3772 | 2008-12-11 20:54:30 -0800 | [diff] [blame] | 1733 | config SMSC9420 |
| 1734 | tristate "SMSC LAN9420 PCI ethernet adapter support" |
| 1735 | depends on NET_PCI && PCI |
| 1736 | select CRC32 |
| 1737 | select PHYLIB |
| 1738 | select SMSC_PHY |
| 1739 | help |
| 1740 | This is a driver for SMSC's LAN9420 PCI ethernet adapter. |
| 1741 | Say Y if you want it compiled into the kernel, |
| 1742 | and read the Ethernet-HOWTO, available from |
Justin P. Mattock | 631dd1a | 2010-10-18 11:03:14 +0200 | [diff] [blame] | 1743 | <http://www.tldp.org/docs.html#howto>. |
Steve Glendinning | 2cb3772 | 2008-12-11 20:54:30 -0800 | [diff] [blame] | 1744 | |
| 1745 | This driver is also available as a module. The module will be |
| 1746 | called smsc9420. If you want to compile it as a module, say M |
| 1747 | here and read <file:Documentation/kbuild/modules.txt> |
| 1748 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1749 | config SUNDANCE |
| 1750 | tristate "Sundance Alta support" |
| 1751 | depends on NET_PCI && PCI |
| 1752 | select CRC32 |
| 1753 | select MII |
| 1754 | help |
| 1755 | This driver is for the Sundance "Alta" chip. |
| 1756 | More specific information and updates are available from |
| 1757 | <http://www.scyld.com/network/sundance.html>. |
| 1758 | |
| 1759 | config SUNDANCE_MMIO |
| 1760 | bool "Use MMIO instead of PIO" |
| 1761 | depends on SUNDANCE |
| 1762 | help |
| 1763 | Enable memory-mapped I/O for interaction with Sundance NIC registers. |
| 1764 | Do NOT enable this by default, PIO (enabled when MMIO is disabled) |
| 1765 | is known to solve bugs on certain chips. |
| 1766 | |
| 1767 | If unsure, say N. |
| 1768 | |
| 1769 | config TLAN |
| 1770 | tristate "TI ThunderLAN support" |
Stephen Hemminger | 93e1684 | 2008-05-30 09:49:55 -0700 | [diff] [blame] | 1771 | depends on NET_PCI && (PCI || EISA) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1772 | ---help--- |
| 1773 | If you have a PCI Ethernet network card based on the ThunderLAN chip |
| 1774 | which is supported by this driver, say Y and read the |
| 1775 | Ethernet-HOWTO, available from |
| 1776 | <http://www.tldp.org/docs.html#howto>. |
| 1777 | |
| 1778 | Devices currently supported by this driver are Compaq Netelligent, |
| 1779 | Compaq NetFlex and Olicom cards. Please read the file |
| 1780 | <file:Documentation/networking/tlan.txt> for more details. |
| 1781 | |
Adrian Bunk | 57ce45d | 2007-11-12 21:03:58 -0800 | [diff] [blame] | 1782 | To compile this driver as a module, choose M here. The module |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1783 | will be called tlan. |
| 1784 | |
| 1785 | Please email feedback to <torben.mathiasen@compaq.com>. |
| 1786 | |
Richard Ršöjfors | b07878e | 2009-06-04 03:35:55 +0000 | [diff] [blame] | 1787 | config KS8842 |
David J. Choi | 28bd620 | 2010-07-13 10:09:19 -0700 | [diff] [blame] | 1788 | tristate "Micrel KSZ8841/42 with generic bus interface" |
Randy Dunlap | 19de1e3 | 2010-07-29 07:14:27 +0000 | [diff] [blame] | 1789 | depends on HAS_IOMEM && DMA_ENGINE |
Richard Ršöjfors | b07878e | 2009-06-04 03:35:55 +0000 | [diff] [blame] | 1790 | help |
Philippe De Muyter | e85eb11 | 2010-11-11 12:31:21 +0000 | [diff] [blame] | 1791 | This platform driver is for KSZ8841(1-port) / KS8842(2-port) |
| 1792 | ethernet switch chip (managed, VLAN, QoS) from Micrel or |
| 1793 | Timberdale(FPGA). |
Richard Ršöjfors | b07878e | 2009-06-04 03:35:55 +0000 | [diff] [blame] | 1794 | |
Ben Dooks | 3ba81f3 | 2009-07-16 05:24:08 +0000 | [diff] [blame] | 1795 | config KS8851 |
Philippe De Muyter | e85eb11 | 2010-11-11 12:31:21 +0000 | [diff] [blame] | 1796 | tristate "Micrel KS8851 SPI" |
| 1797 | depends on SPI |
| 1798 | select MII |
Randy Dunlap | cbb35f8 | 2009-08-19 12:13:31 -0700 | [diff] [blame] | 1799 | select CRC32 |
Philippe De Muyter | e85eb11 | 2010-11-11 12:31:21 +0000 | [diff] [blame] | 1800 | help |
| 1801 | SPI driver for Micrel KS8851 SPI attached network chip. |
Ben Dooks | 3ba81f3 | 2009-07-16 05:24:08 +0000 | [diff] [blame] | 1802 | |
Choi, David | a55c0a0e | 2009-09-25 14:42:12 +0000 | [diff] [blame] | 1803 | config KS8851_MLL |
| 1804 | tristate "Micrel KS8851 MLL" |
| 1805 | depends on HAS_IOMEM |
Randy Dunlap | 47a01a0 | 2009-10-14 15:10:58 -0700 | [diff] [blame] | 1806 | select MII |
Choi, David | a55c0a0e | 2009-09-25 14:42:12 +0000 | [diff] [blame] | 1807 | help |
| 1808 | This platform driver is for Micrel KS8851 Address/data bus |
| 1809 | multiplexed network chip. |
| 1810 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1811 | config VIA_RHINE |
| 1812 | tristate "VIA Rhine support" |
| 1813 | depends on NET_PCI && PCI |
| 1814 | select CRC32 |
| 1815 | select MII |
| 1816 | help |
| 1817 | If you have a VIA "Rhine" based network card (Rhine-I (VT86C100A), |
| 1818 | Rhine-II (VT6102), or Rhine-III (VT6105)), say Y here. Rhine-type |
| 1819 | Ethernet functions can also be found integrated on South Bridges |
| 1820 | (e.g. VT8235). |
| 1821 | |
| 1822 | To compile this driver as a module, choose M here. The module |
| 1823 | will be called via-rhine. |
| 1824 | |
| 1825 | config VIA_RHINE_MMIO |
| 1826 | bool "Use MMIO instead of PIO" |
| 1827 | depends on VIA_RHINE |
| 1828 | help |
| 1829 | This instructs the driver to use PCI shared memory (MMIO) instead of |
| 1830 | programmed I/O ports (PIO). Enabling this gives an improvement in |
| 1831 | processing time in parts of the driver. |
| 1832 | |
| 1833 | If unsure, say Y. |
| 1834 | |
Cesar Eduardo Barros | bf34570 | 2006-12-19 13:08:47 -0800 | [diff] [blame] | 1835 | config SC92031 |
| 1836 | tristate "Silan SC92031 PCI Fast Ethernet Adapter driver (EXPERIMENTAL)" |
| 1837 | depends on NET_PCI && PCI && EXPERIMENTAL |
| 1838 | select CRC32 |
| 1839 | ---help--- |
| 1840 | This is a driver for the Fast Ethernet PCI network cards based on |
| 1841 | the Silan SC92031 chip (sometimes also called Rsltek 8139D). If you |
| 1842 | have one of these, say Y here. |
| 1843 | |
| 1844 | To compile this driver as a module, choose M here: the module |
| 1845 | will be called sc92031. This is recommended. |
| 1846 | |
Matteo Croce | d95b39c | 2007-10-14 18:10:13 +0200 | [diff] [blame] | 1847 | config CPMAC |
| 1848 | tristate "TI AR7 CPMAC Ethernet support (EXPERIMENTAL)" |
Florian Fainelli | 839b04c | 2009-08-04 11:17:49 +0000 | [diff] [blame] | 1849 | depends on NET_ETHERNET && EXPERIMENTAL && AR7 |
Matteo Croce | d95b39c | 2007-10-14 18:10:13 +0200 | [diff] [blame] | 1850 | select PHYLIB |
Matteo Croce | d95b39c | 2007-10-14 18:10:13 +0200 | [diff] [blame] | 1851 | help |
| 1852 | TI AR7 CPMAC Ethernet support |
| 1853 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1854 | config NET_POCKET |
| 1855 | bool "Pocket and portable adapters" |
Jan Engelhardt | d1c0a65 | 2007-06-13 12:48:53 -0700 | [diff] [blame] | 1856 | depends on PARPORT |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1857 | ---help--- |
| 1858 | Cute little network (Ethernet) devices which attach to the parallel |
| 1859 | port ("pocket adapters"), commonly used with laptops. If you have |
| 1860 | one of those, say Y and read the Ethernet-HOWTO, available from |
| 1861 | <http://www.tldp.org/docs.html#howto>. |
| 1862 | |
| 1863 | If you want to plug a network (or some other) card into the PCMCIA |
| 1864 | (or PC-card) slot of your laptop instead (PCMCIA is the standard for |
| 1865 | credit card size extension cards used by all modern laptops), you |
| 1866 | need the pcmcia-cs package (location contained in the file |
| 1867 | <file:Documentation/Changes>) and you can say N here. |
| 1868 | |
| 1869 | Laptop users should read the Linux Laptop home page at |
| 1870 | <http://www.linux-on-laptops.com/> or |
| 1871 | Tuxmobil - Linux on Mobile Computers at <http://www.tuxmobil.org/>. |
| 1872 | |
| 1873 | Note that the answer to this question doesn't directly affect the |
| 1874 | kernel: saying N will just cause the configurator to skip all |
| 1875 | the questions about this class of network devices. If you say Y, you |
| 1876 | will be asked for your specific device in the following questions. |
| 1877 | |
| 1878 | config ATP |
| 1879 | tristate "AT-LAN-TEC/RealTek pocket adapter support" |
Grant Coady | 32fa2bf | 2005-09-10 00:14:05 +1000 | [diff] [blame] | 1880 | depends on NET_POCKET && PARPORT && X86 |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1881 | select CRC32 |
| 1882 | ---help--- |
| 1883 | This is a network (Ethernet) device which attaches to your parallel |
| 1884 | port. Read <file:drivers/net/atp.c> as well as the Ethernet-HOWTO, |
| 1885 | available from <http://www.tldp.org/docs.html#howto>, if you |
| 1886 | want to use this. If you intend to use this driver, you should have |
| 1887 | said N to the "Parallel printer support", because the two drivers |
| 1888 | don't like each other. |
| 1889 | |
| 1890 | To compile this driver as a module, choose M here: the module |
| 1891 | will be called atp. |
| 1892 | |
| 1893 | config DE600 |
| 1894 | tristate "D-Link DE600 pocket adapter support" |
Grant Coady | 32fa2bf | 2005-09-10 00:14:05 +1000 | [diff] [blame] | 1895 | depends on NET_POCKET && PARPORT |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1896 | ---help--- |
| 1897 | This is a network (Ethernet) device which attaches to your parallel |
| 1898 | port. Read <file:Documentation/networking/DLINK.txt> as well as the |
| 1899 | Ethernet-HOWTO, available from |
| 1900 | <http://www.tldp.org/docs.html#howto>, if you want to use |
| 1901 | this. It is possible to have several devices share a single parallel |
| 1902 | port and it is safe to compile the corresponding drivers into the |
| 1903 | kernel. |
| 1904 | |
| 1905 | To compile this driver as a module, choose M here: the module |
| 1906 | will be called de600. |
| 1907 | |
| 1908 | config DE620 |
| 1909 | tristate "D-Link DE620 pocket adapter support" |
Grant Coady | 32fa2bf | 2005-09-10 00:14:05 +1000 | [diff] [blame] | 1910 | depends on NET_POCKET && PARPORT |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1911 | ---help--- |
| 1912 | This is a network (Ethernet) device which attaches to your parallel |
| 1913 | port. Read <file:Documentation/networking/DLINK.txt> as well as the |
| 1914 | Ethernet-HOWTO, available from |
| 1915 | <http://www.tldp.org/docs.html#howto>, if you want to use |
| 1916 | this. It is possible to have several devices share a single parallel |
| 1917 | port and it is safe to compile the corresponding drivers into the |
| 1918 | kernel. |
| 1919 | |
| 1920 | To compile this driver as a module, choose M here: the module |
| 1921 | will be called de620. |
| 1922 | |
| 1923 | config SGISEEQ |
| 1924 | tristate "SGI Seeq ethernet controller support" |
Thomas Bogendoerfer | 49b11bc | 2007-12-19 13:42:36 +0100 | [diff] [blame] | 1925 | depends on SGI_HAS_SEEQ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1926 | help |
| 1927 | Say Y here if you have an Seeq based Ethernet network card. This is |
| 1928 | used in many Silicon Graphics machines. |
| 1929 | |
| 1930 | config DECLANCE |
| 1931 | tristate "DEC LANCE ethernet controller support" |
Jan Engelhardt | d1c0a65 | 2007-06-13 12:48:53 -0700 | [diff] [blame] | 1932 | depends on MACH_DECSTATION |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1933 | select CRC32 |
| 1934 | help |
| 1935 | This driver is for the series of Ethernet controllers produced by |
| 1936 | DEC (now Compaq) based on the AMD Lance chipset, including the |
| 1937 | DEPCA series. (This chipset is better known via the NE2100 cards.) |
| 1938 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1939 | config FEC |
Fabio Estevam | 6442330 | 2009-05-27 03:41:39 +0000 | [diff] [blame] | 1940 | bool "FEC ethernet controller (of ColdFire and some i.MX CPUs)" |
Amit Kucheria | bd011e8 | 2010-02-05 08:56:22 +0000 | [diff] [blame] | 1941 | depends on M523x || M527x || M5272 || M528x || M520x || M532x || \ |
Uwe Kleine-König | 085e79e | 2011-01-17 09:52:18 +0100 | [diff] [blame] | 1942 | IMX_HAVE_PLATFORM_FEC || MXS_HAVE_PLATFORM_FEC |
| 1943 | default IMX_HAVE_PLATFORM_FEC || MXS_HAVE_PLATFORM_FEC if ARM |
Bryan Wu | e6b043d | 2010-03-31 02:10:44 +0000 | [diff] [blame] | 1944 | select PHYLIB |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1945 | help |
| 1946 | Say Y here if you want to use the built-in 10/100 Fast ethernet |
Sascha Hauer | 196719e | 2009-01-28 23:03:10 +0000 | [diff] [blame] | 1947 | controller on some Motorola ColdFire and Freescale i.MX processors. |
Greg Ungerer | 2af6921 | 2005-09-12 11:18:10 +1000 | [diff] [blame] | 1948 | |
Domen Puncer | 5d031e9 | 2007-10-26 18:07:49 +0200 | [diff] [blame] | 1949 | config FEC_MPC52xx |
| 1950 | tristate "MPC52xx FEC driver" |
Grant Likely | 847cdf4 | 2008-11-14 05:19:00 -0700 | [diff] [blame] | 1951 | depends on PPC_MPC52xx && PPC_BESTCOMM |
Domen Puncer | 5d031e9 | 2007-10-26 18:07:49 +0200 | [diff] [blame] | 1952 | select CRC32 |
| 1953 | select PHYLIB |
Grant Likely | 847cdf4 | 2008-11-14 05:19:00 -0700 | [diff] [blame] | 1954 | select PPC_BESTCOMM_FEC |
Domen Puncer | 5d031e9 | 2007-10-26 18:07:49 +0200 | [diff] [blame] | 1955 | ---help--- |
| 1956 | This option enables support for the MPC5200's on-chip |
| 1957 | Fast Ethernet Controller |
Pavel Machek | 4737f09 | 2009-06-05 00:44:53 +0200 | [diff] [blame] | 1958 | If compiled as module, it will be called fec_mpc52xx. |
Domen Puncer | 5d031e9 | 2007-10-26 18:07:49 +0200 | [diff] [blame] | 1959 | |
| 1960 | config FEC_MPC52xx_MDIO |
| 1961 | bool "MPC52xx FEC MDIO bus driver" |
| 1962 | depends on FEC_MPC52xx |
| 1963 | default y |
| 1964 | ---help--- |
| 1965 | The MPC5200's FEC can connect to the Ethernet either with |
| 1966 | an external MII PHY chip or 10 Mbps 7-wire interface |
| 1967 | (Motorola? industry standard). |
| 1968 | If your board uses an external PHY connected to FEC, enable this. |
| 1969 | If not sure, enable. |
Pavel Machek | 4737f09 | 2009-06-05 00:44:53 +0200 | [diff] [blame] | 1970 | If compiled as module, it will be called fec_mpc52xx_phy. |
Domen Puncer | 5d031e9 | 2007-10-26 18:07:49 +0200 | [diff] [blame] | 1971 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1972 | config NE_H8300 |
| 1973 | tristate "NE2000 compatible support for H8/300" |
Jan Engelhardt | d1c0a65 | 2007-06-13 12:48:53 -0700 | [diff] [blame] | 1974 | depends on H8300 |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1975 | help |
| 1976 | Say Y here if you want to use the NE2000 compatible |
| 1977 | controller on the Renesas H8/300 processor. |
| 1978 | |
Chris Snook | 452c1ce | 2008-09-14 19:56:10 -0500 | [diff] [blame] | 1979 | config ATL2 |
| 1980 | tristate "Atheros L2 Fast Ethernet support" |
| 1981 | depends on PCI |
| 1982 | select CRC32 |
| 1983 | select MII |
| 1984 | help |
| 1985 | This driver supports the Atheros L2 fast ethernet adapter. |
| 1986 | |
| 1987 | To compile this driver as a module, choose M here. The module |
| 1988 | will be called atl2. |
| 1989 | |
John Linn | bb81b2d | 2009-08-20 02:52:16 -0700 | [diff] [blame] | 1990 | config XILINX_EMACLITE |
| 1991 | tristate "Xilinx 10/100 Ethernet Lite support" |
| 1992 | depends on PPC32 || MICROBLAZE |
John Linn | 5cdaaa1 | 2010-02-15 21:51:00 -0800 | [diff] [blame] | 1993 | select PHYLIB |
John Linn | bb81b2d | 2009-08-20 02:52:16 -0700 | [diff] [blame] | 1994 | help |
| 1995 | This driver supports the 10/100 Ethernet Lite from Xilinx. |
| 1996 | |
Maxime Bizon | 9b1fc55 | 2009-08-18 13:23:40 +0100 | [diff] [blame] | 1997 | config BCM63XX_ENET |
| 1998 | tristate "Broadcom 63xx internal mac support" |
| 1999 | depends on BCM63XX |
| 2000 | select MII |
| 2001 | select PHYLIB |
| 2002 | help |
| 2003 | This driver supports the ethernet MACs in the Broadcom 63xx |
| 2004 | MIPS chipset family (BCM63XX). |
| 2005 | |
Po-Yu Chuang | 8d77c03 | 2011-02-28 20:48:49 +0000 | [diff] [blame] | 2006 | config FTMAC100 |
| 2007 | tristate "Faraday FTMAC100 10/100 Ethernet support" |
| 2008 | depends on ARM |
| 2009 | select MII |
| 2010 | help |
| 2011 | This driver supports the FTMAC100 10/100 Ethernet controller |
| 2012 | from Faraday. It is used on Faraday A320, Andes AG101 and some |
| 2013 | other ARM/NDS32 SoC's. |
| 2014 | |
John Crispin | 504d472 | 2011-05-06 00:10:01 +0200 | [diff] [blame] | 2015 | config LANTIQ_ETOP |
| 2016 | tristate "Lantiq SoC ETOP driver" |
| 2017 | depends on SOC_TYPE_XWAY |
| 2018 | help |
| 2019 | Support for the MII0 inside the Lantiq SoC |
| 2020 | |
| 2021 | |
Pantelis Antoniou | 48257c4 | 2005-10-28 16:25:58 -0400 | [diff] [blame] | 2022 | source "drivers/net/fs_enet/Kconfig" |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2023 | |
David Daney | d6aa60a | 2009-10-14 12:04:41 -0700 | [diff] [blame] | 2024 | source "drivers/net/octeon/Kconfig" |
| 2025 | |
Jan Engelhardt | d1c0a65 | 2007-06-13 12:48:53 -0700 | [diff] [blame] | 2026 | endif # NET_ETHERNET |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2027 | |
| 2028 | # |
| 2029 | # Gigabit Ethernet |
| 2030 | # |
| 2031 | |
Jan Engelhardt | f30486d | 2007-05-10 22:52:56 -0700 | [diff] [blame] | 2032 | menuconfig NETDEV_1000 |
| 2033 | bool "Ethernet (1000 Mbit)" |
Randy Dunlap | cbcd2a4 | 2005-07-27 13:04:35 -0700 | [diff] [blame] | 2034 | depends on !UML |
Jan Engelhardt | f30486d | 2007-05-10 22:52:56 -0700 | [diff] [blame] | 2035 | default y |
Jan Engelhardt | 06bfb7e | 2007-08-18 12:56:21 +0200 | [diff] [blame] | 2036 | ---help--- |
| 2037 | Ethernet (also called IEEE 802.3 or ISO 8802-2) is the most common |
| 2038 | type of Local Area Network (LAN) in universities and companies. |
| 2039 | |
| 2040 | Say Y here to get to see options for Gigabit Ethernet drivers. |
| 2041 | This option alone does not add any kernel code. |
| 2042 | Note that drivers supporting both 100 and 1000 MBit may be listed |
| 2043 | under "Ethernet (10 or 100MBit)" instead. |
| 2044 | |
| 2045 | If you say N, all options in this submenu will be skipped and disabled. |
Jan Engelhardt | f30486d | 2007-05-10 22:52:56 -0700 | [diff] [blame] | 2046 | |
| 2047 | if NETDEV_1000 |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2048 | |
| 2049 | config ACENIC |
| 2050 | tristate "Alteon AceNIC/3Com 3C985/NetGear GA620 Gigabit support" |
| 2051 | depends on PCI |
| 2052 | ---help--- |
| 2053 | Say Y here if you have an Alteon AceNIC, 3Com 3C985(B), NetGear |
| 2054 | GA620, SGI Gigabit or Farallon PN9000-SX PCI Gigabit Ethernet |
| 2055 | adapter. The driver allows for using the Jumbo Frame option (9000 |
| 2056 | bytes/frame) however it requires that your switches can handle this |
| 2057 | as well. To enable Jumbo Frames, add `mtu 9000' to your ifconfig |
| 2058 | line. |
| 2059 | |
| 2060 | To compile this driver as a module, choose M here: the |
| 2061 | module will be called acenic. |
| 2062 | |
| 2063 | config ACENIC_OMIT_TIGON_I |
| 2064 | bool "Omit support for old Tigon I based AceNICs" |
| 2065 | depends on ACENIC |
| 2066 | help |
| 2067 | Say Y here if you only have Tigon II based AceNICs and want to leave |
| 2068 | out support for the older Tigon I based cards which are no longer |
| 2069 | being sold (ie. the original Alteon AceNIC and 3Com 3C985 (non B |
| 2070 | version)). This will reduce the size of the driver object by |
| 2071 | app. 100KB. If you are not sure whether your card is a Tigon I or a |
| 2072 | Tigon II, say N here. |
| 2073 | |
| 2074 | The safe and default value for this is N. |
| 2075 | |
| 2076 | config DL2K |
Komuro | df95082 | 2007-08-13 09:45:41 +0900 | [diff] [blame] | 2077 | tristate "DL2000/TC902x-based Gigabit Ethernet support" |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2078 | depends on PCI |
| 2079 | select CRC32 |
| 2080 | help |
Komuro | df95082 | 2007-08-13 09:45:41 +0900 | [diff] [blame] | 2081 | This driver supports DL2000/TC902x-based Gigabit ethernet cards, |
| 2082 | which includes |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2083 | D-Link DGE-550T Gigabit Ethernet Adapter. |
| 2084 | D-Link DL2000-based Gigabit Ethernet Adapter. |
Komuro | df95082 | 2007-08-13 09:45:41 +0900 | [diff] [blame] | 2085 | Sundance/Tamarack TC902x Gigabit Ethernet Adapter. |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2086 | |
| 2087 | To compile this driver as a module, choose M here: the |
| 2088 | module will be called dl2k. |
| 2089 | |
| 2090 | config E1000 |
| 2091 | tristate "Intel(R) PRO/1000 Gigabit Ethernet support" |
| 2092 | depends on PCI |
| 2093 | ---help--- |
| 2094 | This driver supports Intel(R) PRO/1000 gigabit ethernet family of |
| 2095 | adapters. For more information on how to identify your adapter, go |
| 2096 | to the Adapter & Driver ID Guide at: |
| 2097 | |
| 2098 | <http://support.intel.com/support/network/adapter/pro100/21397.htm> |
| 2099 | |
| 2100 | For general information and support, go to the Intel support |
| 2101 | website at: |
| 2102 | |
| 2103 | <http://support.intel.com> |
| 2104 | |
| 2105 | More specific information on configuring the driver is in |
| 2106 | <file:Documentation/networking/e1000.txt>. |
| 2107 | |
Adrian Bunk | 57ce45d | 2007-11-12 21:03:58 -0800 | [diff] [blame] | 2108 | To compile this driver as a module, choose M here. The module |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2109 | will be called e1000. |
| 2110 | |
Auke Kok | bc7f75f | 2007-09-17 12:30:59 -0700 | [diff] [blame] | 2111 | config E1000E |
| 2112 | tristate "Intel(R) PRO/1000 PCI-Express Gigabit Ethernet support" |
Al Viro | 7ac86bf | 2008-04-27 06:15:42 +0100 | [diff] [blame] | 2113 | depends on PCI && (!SPARC32 || BROKEN) |
Emil Tantilov | a1d76e1 | 2011-02-14 08:19:24 +0000 | [diff] [blame] | 2114 | select CRC32 |
Auke Kok | bc7f75f | 2007-09-17 12:30:59 -0700 | [diff] [blame] | 2115 | ---help--- |
| 2116 | This driver supports the PCI-Express Intel(R) PRO/1000 gigabit |
| 2117 | ethernet family of adapters. For PCI or PCI-X e1000 adapters, |
| 2118 | use the regular e1000 driver For more information on how to |
| 2119 | identify your adapter, go to the Adapter & Driver ID Guide at: |
| 2120 | |
| 2121 | <http://support.intel.com/support/network/adapter/pro100/21397.htm> |
| 2122 | |
| 2123 | For general information and support, go to the Intel support |
| 2124 | website at: |
| 2125 | |
| 2126 | <http://support.intel.com> |
| 2127 | |
Adrian Bunk | 57ce45d | 2007-11-12 21:03:58 -0800 | [diff] [blame] | 2128 | To compile this driver as a module, choose M here. The module |
Auke Kok | bc7f75f | 2007-09-17 12:30:59 -0700 | [diff] [blame] | 2129 | will be called e1000e. |
| 2130 | |
Stephen Hemminger | ab7a983 | 2008-01-01 09:27:58 -0800 | [diff] [blame] | 2131 | config IP1000 |
| 2132 | tristate "IP1000 Gigabit Ethernet support" |
| 2133 | depends on PCI && EXPERIMENTAL |
| 2134 | select MII |
| 2135 | ---help--- |
| 2136 | This driver supports IP1000 gigabit Ethernet cards. |
| 2137 | |
| 2138 | To compile this driver as a module, choose M here: the module |
| 2139 | will be called ipg. This is recommended. |
| 2140 | |
Auke Kok | 9d5c824 | 2008-01-24 02:22:38 -0800 | [diff] [blame] | 2141 | config IGB |
Philippe De Muyter | e85eb11 | 2010-11-11 12:31:21 +0000 | [diff] [blame] | 2142 | tristate "Intel(R) 82575/82576 PCI-Express Gigabit Ethernet support" |
| 2143 | depends on PCI |
| 2144 | ---help--- |
| 2145 | This driver supports Intel(R) 82575/82576 gigabit ethernet family of |
| 2146 | adapters. For more information on how to identify your adapter, go |
| 2147 | to the Adapter & Driver ID Guide at: |
Auke Kok | 9d5c824 | 2008-01-24 02:22:38 -0800 | [diff] [blame] | 2148 | |
Philippe De Muyter | e85eb11 | 2010-11-11 12:31:21 +0000 | [diff] [blame] | 2149 | <http://support.intel.com/support/network/adapter/pro100/21397.htm> |
Auke Kok | 9d5c824 | 2008-01-24 02:22:38 -0800 | [diff] [blame] | 2150 | |
Philippe De Muyter | e85eb11 | 2010-11-11 12:31:21 +0000 | [diff] [blame] | 2151 | For general information and support, go to the Intel support |
| 2152 | website at: |
Auke Kok | 9d5c824 | 2008-01-24 02:22:38 -0800 | [diff] [blame] | 2153 | |
Philippe De Muyter | e85eb11 | 2010-11-11 12:31:21 +0000 | [diff] [blame] | 2154 | <http://support.intel.com> |
Auke Kok | 9d5c824 | 2008-01-24 02:22:38 -0800 | [diff] [blame] | 2155 | |
Philippe De Muyter | e85eb11 | 2010-11-11 12:31:21 +0000 | [diff] [blame] | 2156 | More specific information on configuring the driver is in |
| 2157 | <file:Documentation/networking/e1000.txt>. |
Auke Kok | 9d5c824 | 2008-01-24 02:22:38 -0800 | [diff] [blame] | 2158 | |
Philippe De Muyter | e85eb11 | 2010-11-11 12:31:21 +0000 | [diff] [blame] | 2159 | To compile this driver as a module, choose M here. The module |
| 2160 | will be called igb. |
Auke Kok | 9d5c824 | 2008-01-24 02:22:38 -0800 | [diff] [blame] | 2161 | |
Jeff Kirsher | 421e02f | 2008-10-17 11:08:31 -0700 | [diff] [blame] | 2162 | config IGB_DCA |
Jeff Kirsher | 1d19ecf | 2008-11-02 20:30:33 -0800 | [diff] [blame] | 2163 | bool "Direct Cache Access (DCA) Support" |
Jeff Kirsher | 421e02f | 2008-10-17 11:08:31 -0700 | [diff] [blame] | 2164 | default y |
| 2165 | depends on IGB && DCA && !(IGB=y && DCA=m) |
Jeff Kirsher | 1d19ecf | 2008-11-02 20:30:33 -0800 | [diff] [blame] | 2166 | ---help--- |
| 2167 | Say Y here if you want to use Direct Cache Access (DCA) in the |
| 2168 | driver. DCA is a method for warming the CPU cache before data |
| 2169 | is used, with the intent of lessening the impact of cache misses. |
Jeff Kirsher | 421e02f | 2008-10-17 11:08:31 -0700 | [diff] [blame] | 2170 | |
Alexander Duyck | d4e0fe0 | 2009-04-07 14:37:34 +0000 | [diff] [blame] | 2171 | config IGBVF |
Philippe De Muyter | e85eb11 | 2010-11-11 12:31:21 +0000 | [diff] [blame] | 2172 | tristate "Intel(R) 82576 Virtual Function Ethernet support" |
| 2173 | depends on PCI |
| 2174 | ---help--- |
| 2175 | This driver supports Intel(R) 82576 virtual functions. For more |
| 2176 | information on how to identify your adapter, go to the Adapter & |
| 2177 | Driver ID Guide at: |
Alexander Duyck | d4e0fe0 | 2009-04-07 14:37:34 +0000 | [diff] [blame] | 2178 | |
Philippe De Muyter | e85eb11 | 2010-11-11 12:31:21 +0000 | [diff] [blame] | 2179 | <http://support.intel.com/support/network/adapter/pro100/21397.htm> |
Alexander Duyck | d4e0fe0 | 2009-04-07 14:37:34 +0000 | [diff] [blame] | 2180 | |
Philippe De Muyter | e85eb11 | 2010-11-11 12:31:21 +0000 | [diff] [blame] | 2181 | For general information and support, go to the Intel support |
| 2182 | website at: |
Alexander Duyck | d4e0fe0 | 2009-04-07 14:37:34 +0000 | [diff] [blame] | 2183 | |
Philippe De Muyter | e85eb11 | 2010-11-11 12:31:21 +0000 | [diff] [blame] | 2184 | <http://support.intel.com> |
Alexander Duyck | d4e0fe0 | 2009-04-07 14:37:34 +0000 | [diff] [blame] | 2185 | |
Philippe De Muyter | e85eb11 | 2010-11-11 12:31:21 +0000 | [diff] [blame] | 2186 | More specific information on configuring the driver is in |
| 2187 | <file:Documentation/networking/e1000.txt>. |
Alexander Duyck | d4e0fe0 | 2009-04-07 14:37:34 +0000 | [diff] [blame] | 2188 | |
Philippe De Muyter | e85eb11 | 2010-11-11 12:31:21 +0000 | [diff] [blame] | 2189 | To compile this driver as a module, choose M here. The module |
| 2190 | will be called igbvf. |
Alexander Duyck | d4e0fe0 | 2009-04-07 14:37:34 +0000 | [diff] [blame] | 2191 | |
Lennert Buytenhek | 15d014d | 2005-11-11 18:23:13 +0100 | [diff] [blame] | 2192 | source "drivers/net/ixp2000/Kconfig" |
| 2193 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2194 | config NS83820 |
Jon Mason | 47c5143 | 2006-02-12 11:53:04 -0600 | [diff] [blame] | 2195 | tristate "National Semiconductor DP83820 support" |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2196 | depends on PCI |
| 2197 | help |
| 2198 | This is a driver for the National Semiconductor DP83820 series |
| 2199 | of gigabit ethernet MACs. Cards using this chipset include |
| 2200 | the D-Link DGE-500T, PureData's PDP8023Z-TG, SMC's SMC9462TX, |
| 2201 | SOHO-GA2000T, SOHO-GA2500T. The driver supports the use of |
| 2202 | zero copy. |
| 2203 | |
| 2204 | config HAMACHI |
| 2205 | tristate "Packet Engines Hamachi GNIC-II support" |
| 2206 | depends on PCI |
| 2207 | select MII |
| 2208 | help |
| 2209 | If you have a Gigabit Ethernet card of this type, say Y and read |
| 2210 | the Ethernet-HOWTO, available from |
| 2211 | <http://www.tldp.org/docs.html#howto>. |
| 2212 | |
Adrian Bunk | 57ce45d | 2007-11-12 21:03:58 -0800 | [diff] [blame] | 2213 | To compile this driver as a module, choose M here. The module will be |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2214 | called hamachi. |
| 2215 | |
| 2216 | config YELLOWFIN |
| 2217 | tristate "Packet Engines Yellowfin Gigabit-NIC support (EXPERIMENTAL)" |
| 2218 | depends on PCI && EXPERIMENTAL |
| 2219 | select CRC32 |
| 2220 | ---help--- |
| 2221 | Say Y here if you have a Packet Engines G-NIC PCI Gigabit Ethernet |
| 2222 | adapter or the SYM53C885 Ethernet controller. The Gigabit adapter is |
| 2223 | used by the Beowulf Linux cluster project. See |
| 2224 | <http://cesdis.gsfc.nasa.gov/linux/drivers/yellowfin.html> for more |
| 2225 | information about this driver in particular and Beowulf in general. |
| 2226 | |
| 2227 | To compile this driver as a module, choose M here: the module |
| 2228 | will be called yellowfin. This is recommended. |
| 2229 | |
| 2230 | config R8169 |
| 2231 | tristate "Realtek 8169 gigabit ethernet support" |
| 2232 | depends on PCI |
françois romieu | bca03d5 | 2011-01-03 15:07:31 +0000 | [diff] [blame] | 2233 | select FW_LOADER |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2234 | select CRC32 |
Francois Romieu | b737249 | 2008-09-13 15:04:38 +0200 | [diff] [blame] | 2235 | select MII |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2236 | ---help--- |
| 2237 | Say Y here if you have a Realtek 8169 PCI Gigabit Ethernet adapter. |
| 2238 | |
| 2239 | To compile this driver as a module, choose M here: the module |
| 2240 | will be called r8169. This is recommended. |
| 2241 | |
Maciej W. Rozycki | 1a9e854 | 2007-09-14 12:05:00 +0100 | [diff] [blame] | 2242 | config SB1250_MAC |
Maciej W. Rozycki | 25a72df | 2007-09-14 11:57:33 +0100 | [diff] [blame] | 2243 | tristate "SB1250 Gigabit Ethernet support" |
| 2244 | depends on SIBYTE_SB1xxx_SOC |
Maciej W. Rozycki | f5279ff | 2007-09-21 12:52:10 +0100 | [diff] [blame] | 2245 | select PHYLIB |
Maciej W. Rozycki | 25a72df | 2007-09-14 11:57:33 +0100 | [diff] [blame] | 2246 | ---help--- |
| 2247 | This driver supports Gigabit Ethernet interfaces based on the |
| 2248 | Broadcom SiByte family of System-On-a-Chip parts. They include |
| 2249 | the BCM1120, BCM1125, BCM1125H, BCM1250, BCM1255, BCM1280, BCM1455 |
| 2250 | and BCM1480 chips. |
| 2251 | |
| 2252 | To compile this driver as a module, choose M here: the module |
| 2253 | will be called sb1250-mac. |
| 2254 | |
Francois Romieu | 890e8d0 | 2005-07-30 13:08:43 +0200 | [diff] [blame] | 2255 | config SIS190 |
Francois Romieu | e797637 | 2005-09-03 00:57:51 +0200 | [diff] [blame] | 2256 | tristate "SiS190/SiS191 gigabit ethernet support" |
Adrian Bunk | e9985d5 | 2005-08-09 02:41:00 +0200 | [diff] [blame] | 2257 | depends on PCI |
| 2258 | select CRC32 |
| 2259 | select MII |
| 2260 | ---help--- |
Francois Romieu | e797637 | 2005-09-03 00:57:51 +0200 | [diff] [blame] | 2261 | Say Y here if you have a SiS 190 PCI Fast Ethernet adapter or |
| 2262 | a SiS 191 PCI Gigabit Ethernet adapter. Both are expected to |
| 2263 | appear in lan on motherboard designs which are based on SiS 965 |
| 2264 | and SiS 966 south bridge. |
Francois Romieu | 890e8d0 | 2005-07-30 13:08:43 +0200 | [diff] [blame] | 2265 | |
Adrian Bunk | e9985d5 | 2005-08-09 02:41:00 +0200 | [diff] [blame] | 2266 | To compile this driver as a module, choose M here: the module |
| 2267 | will be called sis190. This is recommended. |
Francois Romieu | 890e8d0 | 2005-07-30 13:08:43 +0200 | [diff] [blame] | 2268 | |
Stephen Hemminger | baef58b | 2005-05-12 20:14:36 -0400 | [diff] [blame] | 2269 | config SKGE |
stephen hemminger | 560040b | 2011-07-07 05:51:01 +0000 | [diff] [blame] | 2270 | tristate "Marvell Yukon Gigabit Ethernet support" |
Stephen Hemminger | 7a160c7 | 2006-02-13 15:48:08 -0800 | [diff] [blame] | 2271 | depends on PCI |
Stephen Hemminger | baef58b | 2005-05-12 20:14:36 -0400 | [diff] [blame] | 2272 | select CRC32 |
| 2273 | ---help--- |
| 2274 | This driver support the Marvell Yukon or SysKonnect SK-98xx/SK-95xx |
| 2275 | and related Gigabit Ethernet adapters. It is a new smaller driver |
Stephen Hemminger | 46a60f2 | 2005-09-09 12:54:56 -0700 | [diff] [blame] | 2276 | with better performance and more complete ethtool support. |
Stephen Hemminger | baef58b | 2005-05-12 20:14:36 -0400 | [diff] [blame] | 2277 | |
| 2278 | It does not support the link failover and network management |
Stephen Hemminger | 5ad887f | 2007-09-15 19:35:14 -0400 | [diff] [blame] | 2279 | features that "portable" vendor supplied sk98lin driver does. |
Stephen Hemminger | cd28ab6 | 2005-08-16 16:36:49 -0700 | [diff] [blame] | 2280 | |
Daniel Drake | c6f0d75 | 2006-01-21 19:35:34 +0000 | [diff] [blame] | 2281 | This driver supports adapters based on the original Yukon chipset: |
| 2282 | Marvell 88E8001, Belkin F5D5005, CNet GigaCard, DLink DGE-530T, |
| 2283 | Linksys EG1032/EG1064, 3Com 3C940/3C940B, SysKonnect SK-9871/9872. |
| 2284 | |
| 2285 | It does not support the newer Yukon2 chipset: a separate driver, |
stephen hemminger | 560040b | 2011-07-07 05:51:01 +0000 | [diff] [blame] | 2286 | sky2, is provided for these adapters. |
Daniel Drake | c6f0d75 | 2006-01-21 19:35:34 +0000 | [diff] [blame] | 2287 | |
| 2288 | To compile this driver as a module, choose M here: the module |
| 2289 | will be called skge. This is recommended. |
Stephen Hemminger | cd28ab6 | 2005-08-16 16:36:49 -0700 | [diff] [blame] | 2290 | |
Stephen Hemminger | 678aa1f | 2007-10-16 12:15:54 -0700 | [diff] [blame] | 2291 | config SKGE_DEBUG |
Philippe De Muyter | e85eb11 | 2010-11-11 12:31:21 +0000 | [diff] [blame] | 2292 | bool "Debugging interface" |
| 2293 | depends on SKGE && DEBUG_FS |
| 2294 | help |
| 2295 | This option adds the ability to dump driver state for debugging. |
| 2296 | The file /sys/kernel/debug/skge/ethX displays the state of the internal |
| 2297 | transmit and receive rings. |
Stephen Hemminger | 678aa1f | 2007-10-16 12:15:54 -0700 | [diff] [blame] | 2298 | |
Philippe De Muyter | e85eb11 | 2010-11-11 12:31:21 +0000 | [diff] [blame] | 2299 | If unsure, say N. |
Stephen Hemminger | 678aa1f | 2007-10-16 12:15:54 -0700 | [diff] [blame] | 2300 | |
stephen hemminger | 57d6fa3 | 2011-07-06 19:00:07 +0000 | [diff] [blame] | 2301 | config SKGE_GENESIS |
| 2302 | bool "Support for older SysKonnect Genesis boards" |
| 2303 | depends on SKGE |
| 2304 | help |
| 2305 | This enables support for the older and uncommon SysKonnect Genesis |
| 2306 | chips, which support MII via an external transceiver, instead of |
| 2307 | an internal one. Disabling this option will save some memory |
| 2308 | by making code smaller. If unsure say Y. |
| 2309 | |
Stephen Hemminger | cd28ab6 | 2005-08-16 16:36:49 -0700 | [diff] [blame] | 2310 | config SKY2 |
stephen hemminger | 560040b | 2011-07-07 05:51:01 +0000 | [diff] [blame] | 2311 | tristate "Marvell Yukon 2 support" |
Stephen Hemminger | f479b32 | 2006-10-27 10:22:10 -0700 | [diff] [blame] | 2312 | depends on PCI |
Stephen Hemminger | cd28ab6 | 2005-08-16 16:36:49 -0700 | [diff] [blame] | 2313 | select CRC32 |
| 2314 | ---help--- |
Matt LaPlante | cab0089 | 2006-10-03 22:36:44 +0200 | [diff] [blame] | 2315 | This driver supports Gigabit Ethernet adapters based on the |
Daniel Drake | c6f0d75 | 2006-01-21 19:35:34 +0000 | [diff] [blame] | 2316 | Marvell Yukon 2 chipset: |
| 2317 | Marvell 88E8021/88E8022/88E8035/88E8036/88E8038/88E8050/88E8052/ |
| 2318 | 88E8053/88E8055/88E8061/88E8062, SysKonnect SK-9E21D/SK-9S21 |
| 2319 | |
Stephen Hemminger | f479b32 | 2006-10-27 10:22:10 -0700 | [diff] [blame] | 2320 | There is companion driver for the older Marvell Yukon and |
stephen hemminger | 560040b | 2011-07-07 05:51:01 +0000 | [diff] [blame] | 2321 | SysKonnect Genesis based adapters: skge. |
Stephen Hemminger | cd28ab6 | 2005-08-16 16:36:49 -0700 | [diff] [blame] | 2322 | |
| 2323 | To compile this driver as a module, choose M here: the module |
| 2324 | will be called sky2. This is recommended. |
| 2325 | |
Stephen Hemminger | 3cf2675 | 2007-07-09 15:33:35 -0700 | [diff] [blame] | 2326 | config SKY2_DEBUG |
Philippe De Muyter | e85eb11 | 2010-11-11 12:31:21 +0000 | [diff] [blame] | 2327 | bool "Debugging interface" |
| 2328 | depends on SKY2 && DEBUG_FS |
| 2329 | help |
| 2330 | This option adds the ability to dump driver state for debugging. |
| 2331 | The file /sys/kernel/debug/sky2/ethX displays the state of the internal |
| 2332 | transmit and receive rings. |
Daniel Drake | c6f0d75 | 2006-01-21 19:35:34 +0000 | [diff] [blame] | 2333 | |
Philippe De Muyter | e85eb11 | 2010-11-11 12:31:21 +0000 | [diff] [blame] | 2334 | If unsure, say N. |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2335 | |
| 2336 | config VIA_VELOCITY |
| 2337 | tristate "VIA Velocity support" |
Yoichi Yuasa | 7381553 | 2007-05-24 16:12:27 +0900 | [diff] [blame] | 2338 | depends on PCI |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2339 | select CRC32 |
| 2340 | select CRC_CCITT |
| 2341 | select MII |
| 2342 | help |
| 2343 | If you have a VIA "Velocity" based network card say Y here. |
| 2344 | |
| 2345 | To compile this driver as a module, choose M here. The module |
| 2346 | will be called via-velocity. |
| 2347 | |
| 2348 | config TIGON3 |
| 2349 | tristate "Broadcom Tigon3 support" |
| 2350 | depends on PCI |
Matt Carlson | 158d7ab | 2008-05-29 01:37:54 -0700 | [diff] [blame] | 2351 | select PHYLIB |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2352 | help |
| 2353 | This driver supports Broadcom Tigon3 based gigabit Ethernet cards. |
| 2354 | |
| 2355 | To compile this driver as a module, choose M here: the module |
| 2356 | will be called tg3. This is recommended. |
| 2357 | |
Michael Chan | b6016b7 | 2005-05-26 13:03:09 -0700 | [diff] [blame] | 2358 | config BNX2 |
| 2359 | tristate "Broadcom NetXtremeII support" |
| 2360 | depends on PCI |
Michael Chan | fba9fe9 | 2006-06-12 22:21:25 -0700 | [diff] [blame] | 2361 | select CRC32 |
Michael Chan | 57579f7 | 2009-04-04 16:51:14 -0700 | [diff] [blame] | 2362 | select FW_LOADER |
Michael Chan | b6016b7 | 2005-05-26 13:03:09 -0700 | [diff] [blame] | 2363 | help |
| 2364 | This driver supports Broadcom NetXtremeII gigabit Ethernet cards. |
| 2365 | |
| 2366 | To compile this driver as a module, choose M here: the module |
| 2367 | will be called bnx2. This is recommended. |
| 2368 | |
Michael Chan | a463696 | 2009-06-08 18:14:43 -0700 | [diff] [blame] | 2369 | config CNIC |
| 2370 | tristate "Broadcom CNIC support" |
Michael Chan | babdb78 | 2009-06-10 13:35:28 -0700 | [diff] [blame] | 2371 | depends on PCI |
| 2372 | select BNX2 |
| 2373 | select UIO |
Michael Chan | a463696 | 2009-06-08 18:14:43 -0700 | [diff] [blame] | 2374 | help |
| 2375 | This driver supports offload features of Broadcom NetXtremeII |
| 2376 | gigabit Ethernet cards. |
| 2377 | |
| 2378 | To compile this driver as a module, choose M here: the module |
| 2379 | will be called cnic. This is recommended. |
| 2380 | |
Jens Osterkamp | aaec0fa | 2005-09-05 15:19:29 -0700 | [diff] [blame] | 2381 | config SPIDER_NET |
| 2382 | tristate "Spider Gigabit Ethernet driver" |
Kou Ishizaki | 3342cf0 | 2007-02-20 16:36:14 -0600 | [diff] [blame] | 2383 | depends on PCI && (PPC_IBM_CELL_BLADE || PPC_CELLEB) |
Christoph Hellwig | 9b15879 | 2006-03-15 11:30:44 +0100 | [diff] [blame] | 2384 | select FW_LOADER |
Jens Osterkamp | aaec0fa | 2005-09-05 15:19:29 -0700 | [diff] [blame] | 2385 | help |
| 2386 | This driver supports the Gigabit Ethernet chips present on the |
| 2387 | Cell Processor-Based Blades from IBM. |
| 2388 | |
Zang Roy-r61911 | 5e123b8 | 2006-11-08 19:49:13 -0800 | [diff] [blame] | 2389 | config TSI108_ETH |
Philippe De Muyter | dd68ad2 | 2010-11-13 08:43:29 +0000 | [diff] [blame] | 2390 | tristate "Tundra TSI108 gigabit Ethernet support" |
| 2391 | depends on TSI108_BRIDGE |
| 2392 | help |
| 2393 | This driver supports Tundra TSI108 gigabit Ethernet ports. |
| 2394 | To compile this driver as a module, choose M here: the module |
| 2395 | will be called tsi108_eth. |
Zang Roy-r61911 | 5e123b8 | 2006-11-08 19:49:13 -0800 | [diff] [blame] | 2396 | |
Masakazu Mokuno | 02c1889 | 2007-07-05 20:11:16 +0900 | [diff] [blame] | 2397 | config GELIC_NET |
| 2398 | tristate "PS3 Gigabit Ethernet driver" |
| 2399 | depends on PPC_PS3 |
Geoff Levand | 1d32e21 | 2008-04-10 07:01:53 +1000 | [diff] [blame] | 2400 | select PS3_SYS_MANAGER |
Masakazu Mokuno | 02c1889 | 2007-07-05 20:11:16 +0900 | [diff] [blame] | 2401 | help |
| 2402 | This driver supports the network device on the PS3 game |
| 2403 | console. This driver has built-in support for Ethernet. |
| 2404 | |
| 2405 | To compile this driver as a module, choose M here: the |
| 2406 | module will be called ps3_gelic. |
| 2407 | |
Masakazu Mokuno | 09dde54 | 2008-02-07 19:58:57 +0900 | [diff] [blame] | 2408 | config GELIC_WIRELESS |
John W. Linville | 97ed839 | 2008-03-06 13:08:09 -0500 | [diff] [blame] | 2409 | bool "PS3 Wireless support" |
Benjamin Herrenschmidt | 92c6f8d | 2009-12-18 11:19:32 -0800 | [diff] [blame] | 2410 | depends on WLAN |
John W. Linville | 97ed839 | 2008-03-06 13:08:09 -0500 | [diff] [blame] | 2411 | depends on GELIC_NET |
| 2412 | select WIRELESS_EXT |
| 2413 | help |
| 2414 | This option adds the support for the wireless feature of PS3. |
| 2415 | If you have the wireless-less model of PS3 or have no plan to |
| 2416 | use wireless feature, disabling this option saves memory. As |
| 2417 | the driver automatically distinguishes the models, you can |
| 2418 | safely enable this option even if you have a wireless-less model. |
Masakazu Mokuno | 09dde54 | 2008-02-07 19:58:57 +0900 | [diff] [blame] | 2419 | |
Andy Fleming | 1577ece | 2009-02-04 16:42:12 -0800 | [diff] [blame] | 2420 | config FSL_PQ_MDIO |
| 2421 | tristate "Freescale PQ MDIO" |
| 2422 | depends on FSL_SOC |
| 2423 | select PHYLIB |
| 2424 | help |
| 2425 | This driver supports the MDIO bus used by the gianfar and UCC drivers. |
| 2426 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2427 | config GIANFAR |
| 2428 | tristate "Gianfar Ethernet" |
Kumar Gala | 3a83156 | 2008-01-28 10:24:30 -0600 | [diff] [blame] | 2429 | depends on FSL_SOC |
Andy Fleming | 1577ece | 2009-02-04 16:42:12 -0800 | [diff] [blame] | 2430 | select FSL_PQ_MDIO |
Andy Fleming | bb40dcb | 2005-09-23 22:54:21 -0400 | [diff] [blame] | 2431 | select PHYLIB |
Dave Jiang | bf41a7c | 2007-04-12 10:57:06 -0700 | [diff] [blame] | 2432 | select CRC32 |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2433 | help |
Jon Loeliger | ef82a30 | 2006-06-17 17:52:55 -0500 | [diff] [blame] | 2434 | This driver supports the Gigabit TSEC on the MPC83xx, MPC85xx, |
| 2435 | and MPC86xx family of chips, and the FEC on the 8540. |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2436 | |
Li Yang | ce973b1 | 2006-08-14 23:00:11 -0700 | [diff] [blame] | 2437 | config UCC_GETH |
Timur Tabi | 7d776cb | 2007-03-12 15:40:27 -0500 | [diff] [blame] | 2438 | tristate "Freescale QE Gigabit Ethernet" |
| 2439 | depends on QUICC_ENGINE |
Andy Fleming | 1577ece | 2009-02-04 16:42:12 -0800 | [diff] [blame] | 2440 | select FSL_PQ_MDIO |
Jan Altenberg | 296baae | 2007-06-01 00:46:29 -0700 | [diff] [blame] | 2441 | select PHYLIB |
Li Yang | ce973b1 | 2006-08-14 23:00:11 -0700 | [diff] [blame] | 2442 | help |
Timur Tabi | 7d776cb | 2007-03-12 15:40:27 -0500 | [diff] [blame] | 2443 | This driver supports the Gigabit Ethernet mode of the QUICC Engine, |
| 2444 | which is available on some Freescale SOCs. |
Li Yang | ce973b1 | 2006-08-14 23:00:11 -0700 | [diff] [blame] | 2445 | |
Michael Reiss | d5b9049 | 2007-04-13 01:26:19 -0500 | [diff] [blame] | 2446 | config UGETH_TX_ON_DEMAND |
| 2447 | bool "Transmit on Demand support" |
Li Yang | ce973b1 | 2006-08-14 23:00:11 -0700 | [diff] [blame] | 2448 | depends on UCC_GETH |
| 2449 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2450 | config MV643XX_ETH |
Lennert Buytenhek | 9c1bbdf | 2007-10-19 04:11:03 +0200 | [diff] [blame] | 2451 | tristate "Marvell Discovery (643XX) and Orion ethernet support" |
Ben Hutchings | 10ccff6 | 2010-10-03 15:42:05 +0000 | [diff] [blame] | 2452 | depends on (MV64X60 || PPC32 || PLAT_ORION) && INET |
Lennert Buytenhek | ab307a3 | 2009-02-24 15:41:32 +0000 | [diff] [blame] | 2453 | select INET_LRO |
Lennert Buytenhek | ed94493 | 2008-08-26 13:34:19 +0200 | [diff] [blame] | 2454 | select PHYLIB |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2455 | help |
Lennert Buytenhek | 9c1bbdf | 2007-10-19 04:11:03 +0200 | [diff] [blame] | 2456 | This driver supports the gigabit ethernet MACs in the |
| 2457 | Marvell Discovery PPC/MIPS chipset family (MV643XX) and |
| 2458 | in the Marvell Orion ARM SoC family. |
| 2459 | |
| 2460 | Some boards that use the Discovery chipset are the Momenco |
| 2461 | Ocelot C and Jaguar ATX and Pegasos II. |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2462 | |
Grant Likely | 9274498 | 2009-04-25 12:53:39 +0000 | [diff] [blame] | 2463 | config XILINX_LL_TEMAC |
| 2464 | tristate "Xilinx LL TEMAC (LocalLink Tri-mode Ethernet MAC) driver" |
John Linn | e44171f | 2010-04-08 07:08:02 +0000 | [diff] [blame] | 2465 | depends on PPC || MICROBLAZE |
Grant Likely | 9274498 | 2009-04-25 12:53:39 +0000 | [diff] [blame] | 2466 | select PHYLIB |
Grant Likely | 9274498 | 2009-04-25 12:53:39 +0000 | [diff] [blame] | 2467 | help |
| 2468 | This driver supports the Xilinx 10/100/1000 LocalLink TEMAC |
| 2469 | core used in Xilinx Spartan and Virtex FPGAs |
| 2470 | |
Ron Mercer | 5a4faa8 | 2006-07-25 00:40:21 -0700 | [diff] [blame] | 2471 | config QLA3XXX |
| 2472 | tristate "QLogic QLA3XXX Network Driver Support" |
| 2473 | depends on PCI |
| 2474 | help |
| 2475 | This driver supports QLogic ISP3XXX gigabit Ethernet cards. |
| 2476 | |
| 2477 | To compile this driver as a module, choose M here: the module |
| 2478 | will be called qla3xxx. |
| 2479 | |
Jay Cliburn | f3cc28c | 2007-02-08 10:42:37 -0500 | [diff] [blame] | 2480 | config ATL1 |
Jay Cliburn | a6d1f36 | 2008-09-27 04:17:22 +0000 | [diff] [blame] | 2481 | tristate "Atheros/Attansic L1 Gigabit Ethernet support" |
| 2482 | depends on PCI |
Jay Cliburn | f3cc28c | 2007-02-08 10:42:37 -0500 | [diff] [blame] | 2483 | select CRC32 |
| 2484 | select MII |
| 2485 | help |
Jay Cliburn | a6d1f36 | 2008-09-27 04:17:22 +0000 | [diff] [blame] | 2486 | This driver supports the Atheros/Attansic L1 gigabit ethernet |
| 2487 | adapter. |
Jay Cliburn | f3cc28c | 2007-02-08 10:42:37 -0500 | [diff] [blame] | 2488 | |
| 2489 | To compile this driver as a module, choose M here. The module |
| 2490 | will be called atl1. |
| 2491 | |
Jie Yang | a6a5325 | 2008-07-18 11:37:13 +0800 | [diff] [blame] | 2492 | config ATL1E |
| 2493 | tristate "Atheros L1E Gigabit Ethernet support (EXPERIMENTAL)" |
| 2494 | depends on PCI && EXPERIMENTAL |
| 2495 | select CRC32 |
| 2496 | select MII |
| 2497 | help |
| 2498 | This driver supports the Atheros L1E gigabit ethernet adapter. |
| 2499 | |
| 2500 | To compile this driver as a module, choose M here. The module |
| 2501 | will be called atl1e. |
| 2502 | |
Jie Yang | 43250dd | 2009-02-18 17:24:15 -0800 | [diff] [blame] | 2503 | config ATL1C |
| 2504 | tristate "Atheros L1C Gigabit Ethernet support (EXPERIMENTAL)" |
| 2505 | depends on PCI && EXPERIMENTAL |
| 2506 | select CRC32 |
| 2507 | select MII |
| 2508 | help |
| 2509 | This driver supports the Atheros L1C gigabit ethernet adapter. |
| 2510 | |
| 2511 | To compile this driver as a module, choose M here. The module |
| 2512 | will be called atl1c. |
| 2513 | |
Guo-Fu Tseng | 9525223 | 2008-09-16 01:00:11 +0800 | [diff] [blame] | 2514 | config JME |
| 2515 | tristate "JMicron(R) PCI-Express Gigabit Ethernet support" |
| 2516 | depends on PCI |
| 2517 | select CRC32 |
| 2518 | select MII |
| 2519 | ---help--- |
| 2520 | This driver supports the PCI-Express gigabit ethernet adapters |
| 2521 | based on JMicron JMC250 chipset. |
| 2522 | |
| 2523 | To compile this driver as a module, choose M here. The module |
| 2524 | will be called jme. |
| 2525 | |
Oskar Schirmer | 8b0215a | 2009-06-10 12:58:48 -0700 | [diff] [blame] | 2526 | config S6GMAC |
| 2527 | tristate "S6105 GMAC ethernet support" |
| 2528 | depends on XTENSA_VARIANT_S6000 |
| 2529 | select PHYLIB |
| 2530 | help |
| 2531 | This driver supports the on chip ethernet device on the |
| 2532 | S6105 xtensa processor. |
| 2533 | |
| 2534 | To compile this driver as a module, choose M here. The module |
| 2535 | will be called s6gmac. |
| 2536 | |
Giuseppe Cavallaro | 47dd7a5 | 2009-10-14 15:13:45 -0700 | [diff] [blame] | 2537 | source "drivers/net/stmmac/Kconfig" |
| 2538 | |
Masayuki Ohtake | 77555ee | 2010-09-21 01:44:11 +0000 | [diff] [blame] | 2539 | config PCH_GBE |
Tomoya | b0e6baf | 2011-05-09 01:19:37 +0000 | [diff] [blame] | 2540 | tristate "Intel EG20T PCH / OKI SEMICONDUCTOR ML7223 IOH GbE" |
Masayuki Ohtake | 77555ee | 2010-09-21 01:44:11 +0000 | [diff] [blame] | 2541 | depends on PCI |
David S. Miller | 116c1ea | 2010-10-28 10:15:43 -0700 | [diff] [blame] | 2542 | select MII |
Masayuki Ohtake | 77555ee | 2010-09-21 01:44:11 +0000 | [diff] [blame] | 2543 | ---help--- |
Toshiharu Okada | a1dcfcb | 2010-11-21 19:58:37 +0000 | [diff] [blame] | 2544 | This is a gigabit ethernet driver for EG20T PCH. |
| 2545 | EG20T PCH is the platform controller hub that is used in Intel's |
Masayuki Ohtake | 77555ee | 2010-09-21 01:44:11 +0000 | [diff] [blame] | 2546 | general embedded platform. |
Toshiharu Okada | a1dcfcb | 2010-11-21 19:58:37 +0000 | [diff] [blame] | 2547 | EG20T PCH has Gigabit Ethernet interface. |
Masayuki Ohtake | 77555ee | 2010-09-21 01:44:11 +0000 | [diff] [blame] | 2548 | Using this interface, it is able to access system devices connected |
| 2549 | to Gigabit Ethernet. |
| 2550 | This driver enables Gigabit Ethernet function. |
| 2551 | |
Tomoya | b0e6baf | 2011-05-09 01:19:37 +0000 | [diff] [blame] | 2552 | This driver also can be used for OKI SEMICONDUCTOR IOH(Input/ |
| 2553 | Output Hub), ML7223. |
| 2554 | ML7223 IOH is for MP(Media Phone) use. |
| 2555 | ML7223 is companion chip for Intel Atom E6xx series. |
| 2556 | ML7223 is completely compatible for Intel EG20T PCH. |
| 2557 | |
Po-Yu Chuang | 69785b7 | 2011-06-08 23:32:48 +0000 | [diff] [blame] | 2558 | config FTGMAC100 |
| 2559 | tristate "Faraday FTGMAC100 Gigabit Ethernet support" |
| 2560 | depends on ARM |
| 2561 | select PHYLIB |
| 2562 | help |
| 2563 | This driver supports the FTGMAC100 Gigabit Ethernet controller |
| 2564 | from Faraday. It is used on Faraday A369, Andes AG102 and some |
| 2565 | other ARM/NDS32 SoC's. |
| 2566 | |
Jan Engelhardt | f30486d | 2007-05-10 22:52:56 -0700 | [diff] [blame] | 2567 | endif # NETDEV_1000 |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2568 | |
| 2569 | # |
| 2570 | # 10 Gigabit Ethernet |
| 2571 | # |
| 2572 | |
Jan Engelhardt | f30486d | 2007-05-10 22:52:56 -0700 | [diff] [blame] | 2573 | menuconfig NETDEV_10000 |
| 2574 | bool "Ethernet (10000 Mbit)" |
Randy Dunlap | cbcd2a4 | 2005-07-27 13:04:35 -0700 | [diff] [blame] | 2575 | depends on !UML |
Jan Engelhardt | f30486d | 2007-05-10 22:52:56 -0700 | [diff] [blame] | 2576 | default y |
Jan Engelhardt | 06bfb7e | 2007-08-18 12:56:21 +0200 | [diff] [blame] | 2577 | ---help--- |
| 2578 | Say Y here to get to see options for 10 Gigabit Ethernet drivers. |
| 2579 | This option alone does not add any kernel code. |
| 2580 | |
| 2581 | If you say N, all options in this submenu will be skipped and disabled. |
Jan Engelhardt | f30486d | 2007-05-10 22:52:56 -0700 | [diff] [blame] | 2582 | |
| 2583 | if NETDEV_10000 |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2584 | |
Ben Hutchings | 1b1c2e9 | 2009-04-29 08:04:46 +0000 | [diff] [blame] | 2585 | config MDIO |
| 2586 | tristate |
| 2587 | |
Christoph Lameter | 8199d3a | 2005-03-30 13:34:31 -0800 | [diff] [blame] | 2588 | config CHELSIO_T1 |
Philippe De Muyter | e85eb11 | 2010-11-11 12:31:21 +0000 | [diff] [blame] | 2589 | tristate "Chelsio 10Gb Ethernet support" |
| 2590 | depends on PCI |
Stephen Hemminger | 57834ca | 2006-12-01 16:36:19 -0800 | [diff] [blame] | 2591 | select CRC32 |
Ben Hutchings | 23c3320 | 2009-04-29 08:06:34 +0000 | [diff] [blame] | 2592 | select MDIO |
Philippe De Muyter | e85eb11 | 2010-11-11 12:31:21 +0000 | [diff] [blame] | 2593 | help |
| 2594 | This driver supports Chelsio gigabit and 10-gigabit |
| 2595 | Ethernet cards. More information about adapter features and |
Stephen Hemminger | f1d3d38 | 2006-12-01 16:36:16 -0800 | [diff] [blame] | 2596 | performance tuning is in <file:Documentation/networking/cxgb.txt>. |
Christoph Lameter | 8199d3a | 2005-03-30 13:34:31 -0800 | [diff] [blame] | 2597 | |
Philippe De Muyter | e85eb11 | 2010-11-11 12:31:21 +0000 | [diff] [blame] | 2598 | For general information about Chelsio and our products, visit |
| 2599 | our website at <http://www.chelsio.com>. |
Christoph Lameter | 8199d3a | 2005-03-30 13:34:31 -0800 | [diff] [blame] | 2600 | |
Philippe De Muyter | e85eb11 | 2010-11-11 12:31:21 +0000 | [diff] [blame] | 2601 | For customer support, please visit our customer support page at |
| 2602 | <http://www.chelsio.com/support.html>. |
Christoph Lameter | 8199d3a | 2005-03-30 13:34:31 -0800 | [diff] [blame] | 2603 | |
Philippe De Muyter | e85eb11 | 2010-11-11 12:31:21 +0000 | [diff] [blame] | 2604 | Please send feedback to <linux-bugs@chelsio.com>. |
Christoph Lameter | 8199d3a | 2005-03-30 13:34:31 -0800 | [diff] [blame] | 2605 | |
Philippe De Muyter | e85eb11 | 2010-11-11 12:31:21 +0000 | [diff] [blame] | 2606 | To compile this driver as a module, choose M here: the module |
| 2607 | will be called cxgb. |
Christoph Lameter | 8199d3a | 2005-03-30 13:34:31 -0800 | [diff] [blame] | 2608 | |
Stephen Hemminger | 352c417 | 2006-12-01 16:36:17 -0800 | [diff] [blame] | 2609 | config CHELSIO_T1_1G |
Philippe De Muyter | e85eb11 | 2010-11-11 12:31:21 +0000 | [diff] [blame] | 2610 | bool "Chelsio gigabit Ethernet support" |
| 2611 | depends on CHELSIO_T1 |
| 2612 | help |
| 2613 | Enables support for Chelsio's gigabit Ethernet PCI cards. If you |
| 2614 | are using only 10G cards say 'N' here. |
Stephen Hemminger | 352c417 | 2006-12-01 16:36:17 -0800 | [diff] [blame] | 2615 | |
Divy Le Ray | 4d22de3 | 2007-01-18 22:04:14 -0500 | [diff] [blame] | 2616 | config CHELSIO_T3 |
Divy Le Ray | 194c1fb | 2007-03-21 19:21:00 -0700 | [diff] [blame] | 2617 | tristate "Chelsio Communications T3 10Gb Ethernet support" |
Dimitris Michailidis | 1558310 | 2011-02-28 17:34:15 +0000 | [diff] [blame] | 2618 | depends on PCI && INET |
Divy Le Ray | 2e28396 | 2007-03-18 13:10:06 -0700 | [diff] [blame] | 2619 | select FW_LOADER |
Ben Hutchings | 0f07c4e | 2009-04-29 08:07:20 +0000 | [diff] [blame] | 2620 | select MDIO |
Divy Le Ray | 194c1fb | 2007-03-21 19:21:00 -0700 | [diff] [blame] | 2621 | help |
| 2622 | This driver supports Chelsio T3-based gigabit and 10Gb Ethernet |
| 2623 | adapters. |
Divy Le Ray | 4d22de3 | 2007-01-18 22:04:14 -0500 | [diff] [blame] | 2624 | |
Divy Le Ray | 194c1fb | 2007-03-21 19:21:00 -0700 | [diff] [blame] | 2625 | For general information about Chelsio and our products, visit |
| 2626 | our website at <http://www.chelsio.com>. |
Divy Le Ray | 4d22de3 | 2007-01-18 22:04:14 -0500 | [diff] [blame] | 2627 | |
Divy Le Ray | 194c1fb | 2007-03-21 19:21:00 -0700 | [diff] [blame] | 2628 | For customer support, please visit our customer support page at |
Justin P. Mattock | 631dd1a | 2010-10-18 11:03:14 +0200 | [diff] [blame] | 2629 | <http://www.chelsio.com/support.html>. |
Divy Le Ray | 4d22de3 | 2007-01-18 22:04:14 -0500 | [diff] [blame] | 2630 | |
Divy Le Ray | 194c1fb | 2007-03-21 19:21:00 -0700 | [diff] [blame] | 2631 | Please send feedback to <linux-bugs@chelsio.com>. |
Divy Le Ray | 4d22de3 | 2007-01-18 22:04:14 -0500 | [diff] [blame] | 2632 | |
Divy Le Ray | 194c1fb | 2007-03-21 19:21:00 -0700 | [diff] [blame] | 2633 | To compile this driver as a module, choose M here: the module |
| 2634 | will be called cxgb3. |
Divy Le Ray | 4d22de3 | 2007-01-18 22:04:14 -0500 | [diff] [blame] | 2635 | |
Dimitris Michailidis | 43e9da8 | 2010-04-01 15:28:27 +0000 | [diff] [blame] | 2636 | config CHELSIO_T4 |
| 2637 | tristate "Chelsio Communications T4 Ethernet support" |
Dimitris Michailidis | 1558310 | 2011-02-28 17:34:15 +0000 | [diff] [blame] | 2638 | depends on PCI |
Dimitris Michailidis | 43e9da8 | 2010-04-01 15:28:27 +0000 | [diff] [blame] | 2639 | select FW_LOADER |
| 2640 | select MDIO |
| 2641 | help |
| 2642 | This driver supports Chelsio T4-based gigabit and 10Gb Ethernet |
| 2643 | adapters. |
| 2644 | |
| 2645 | For general information about Chelsio and our products, visit |
| 2646 | our website at <http://www.chelsio.com>. |
| 2647 | |
| 2648 | For customer support, please visit our customer support page at |
Justin P. Mattock | 631dd1a | 2010-10-18 11:03:14 +0200 | [diff] [blame] | 2649 | <http://www.chelsio.com/support.html>. |
Dimitris Michailidis | 43e9da8 | 2010-04-01 15:28:27 +0000 | [diff] [blame] | 2650 | |
| 2651 | Please send feedback to <linux-bugs@chelsio.com>. |
| 2652 | |
| 2653 | To compile this driver as a module choose M here; the module |
| 2654 | will be called cxgb4. |
| 2655 | |
Casey Leedom | cfc9b16 | 2010-06-25 12:15:33 +0000 | [diff] [blame] | 2656 | config CHELSIO_T4VF |
| 2657 | tristate "Chelsio Communications T4 Virtual Function Ethernet support" |
Dimitris Michailidis | 1558310 | 2011-02-28 17:34:15 +0000 | [diff] [blame] | 2658 | depends on PCI |
Casey Leedom | cfc9b16 | 2010-06-25 12:15:33 +0000 | [diff] [blame] | 2659 | help |
| 2660 | This driver supports Chelsio T4-based gigabit and 10Gb Ethernet |
| 2661 | adapters with PCI-E SR-IOV Virtual Functions. |
| 2662 | |
| 2663 | For general information about Chelsio and our products, visit |
| 2664 | our website at <http://www.chelsio.com>. |
| 2665 | |
| 2666 | For customer support, please visit our customer support page at |
Justin P. Mattock | 631dd1a | 2010-10-18 11:03:14 +0200 | [diff] [blame] | 2667 | <http://www.chelsio.com/support.html>. |
Casey Leedom | cfc9b16 | 2010-06-25 12:15:33 +0000 | [diff] [blame] | 2668 | |
| 2669 | Please send feedback to <linux-bugs@chelsio.com>. |
| 2670 | |
| 2671 | To compile this driver as a module choose M here; the module |
| 2672 | will be called cxgb4vf. |
| 2673 | |
Jan-Bernd Themann | 7a29108 | 2006-09-13 17:44:31 +0200 | [diff] [blame] | 2674 | config EHEA |
| 2675 | tristate "eHEA Ethernet support" |
Nathan Lynch | 60d5019 | 2008-06-04 08:31:28 +1000 | [diff] [blame] | 2676 | depends on IBMEBUS && INET && SPARSEMEM |
Jan-Bernd Themann | d4dc4ec | 2007-09-25 16:16:34 -0700 | [diff] [blame] | 2677 | select INET_LRO |
Jan-Bernd Themann | 7a29108 | 2006-09-13 17:44:31 +0200 | [diff] [blame] | 2678 | ---help--- |
| 2679 | This driver supports the IBM pSeries eHEA ethernet adapter. |
| 2680 | |
| 2681 | To compile the driver as a module, choose M here. The module |
| 2682 | will be called ehea. |
| 2683 | |
Scott Feldman | 01f2e4e | 2008-09-15 09:17:11 -0700 | [diff] [blame] | 2684 | config ENIC |
Vasanthy Kolluri | 641cb85 | 2010-03-18 16:20:04 +0000 | [diff] [blame] | 2685 | tristate "Cisco VIC Ethernet NIC Support" |
Scott Feldman | 01f2e4e | 2008-09-15 09:17:11 -0700 | [diff] [blame] | 2686 | depends on PCI && INET |
Scott Feldman | 01f2e4e | 2008-09-15 09:17:11 -0700 | [diff] [blame] | 2687 | help |
Vasanthy Kolluri | 641cb85 | 2010-03-18 16:20:04 +0000 | [diff] [blame] | 2688 | This enables the support for the Cisco VIC Ethernet card. |
Scott Feldman | 01f2e4e | 2008-09-15 09:17:11 -0700 | [diff] [blame] | 2689 | |
Auke Kok | 9a799d7 | 2007-09-15 14:07:45 -0700 | [diff] [blame] | 2690 | config IXGBE |
| 2691 | tristate "Intel(R) 10GbE PCI Express adapters support" |
Mallikarjuna R Chilakala | 177db6f | 2008-06-18 15:32:19 -0700 | [diff] [blame] | 2692 | depends on PCI && INET |
Ben Hutchings | 6b73e10 | 2009-04-29 08:08:58 +0000 | [diff] [blame] | 2693 | select MDIO |
Auke Kok | 9a799d7 | 2007-09-15 14:07:45 -0700 | [diff] [blame] | 2694 | ---help--- |
| 2695 | This driver supports Intel(R) 10GbE PCI Express family of |
| 2696 | adapters. For more information on how to identify your adapter, go |
| 2697 | to the Adapter & Driver ID Guide at: |
| 2698 | |
| 2699 | <http://support.intel.com/support/network/adapter/pro100/21397.htm> |
| 2700 | |
| 2701 | For general information and support, go to the Intel support |
| 2702 | website at: |
| 2703 | |
| 2704 | <http://support.intel.com> |
| 2705 | |
Adrian Bunk | 57ce45d | 2007-11-12 21:03:58 -0800 | [diff] [blame] | 2706 | To compile this driver as a module, choose M here. The module |
Auke Kok | 9a799d7 | 2007-09-15 14:07:45 -0700 | [diff] [blame] | 2707 | will be called ixgbe. |
| 2708 | |
Jeff Garzik | 5dd2d33 | 2008-10-16 05:09:31 -0400 | [diff] [blame] | 2709 | config IXGBE_DCA |
Jeff Kirsher | 1d19ecf | 2008-11-02 20:30:33 -0800 | [diff] [blame] | 2710 | bool "Direct Cache Access (DCA) Support" |
Jeff Garzik | 5dd2d33 | 2008-10-16 05:09:31 -0400 | [diff] [blame] | 2711 | default y |
| 2712 | depends on IXGBE && DCA && !(IXGBE=y && DCA=m) |
Jeff Kirsher | 1d19ecf | 2008-11-02 20:30:33 -0800 | [diff] [blame] | 2713 | ---help--- |
| 2714 | Say Y here if you want to use Direct Cache Access (DCA) in the |
| 2715 | driver. DCA is a method for warming the CPU cache before data |
| 2716 | is used, with the intent of lessening the impact of cache misses. |
Jeff Garzik | 5dd2d33 | 2008-10-16 05:09:31 -0400 | [diff] [blame] | 2717 | |
Jeff Kirsher | 7a6b6f5 | 2008-11-25 01:02:08 -0800 | [diff] [blame] | 2718 | config IXGBE_DCB |
Alexander Duyck | 2f90b86 | 2008-11-20 20:52:10 -0800 | [diff] [blame] | 2719 | bool "Data Center Bridging (DCB) Support" |
| 2720 | default n |
Jeff Kirsher | 7a6b6f5 | 2008-11-25 01:02:08 -0800 | [diff] [blame] | 2721 | depends on IXGBE && DCB |
Alexander Duyck | 2f90b86 | 2008-11-20 20:52:10 -0800 | [diff] [blame] | 2722 | ---help--- |
| 2723 | Say Y here if you want to use Data Center Bridging (DCB) in the |
| 2724 | driver. |
| 2725 | |
| 2726 | If unsure, say N. |
| 2727 | |
Greg Rose | ecc6703 | 2010-01-09 02:24:50 +0000 | [diff] [blame] | 2728 | config IXGBEVF |
Philippe De Muyter | e85eb11 | 2010-11-11 12:31:21 +0000 | [diff] [blame] | 2729 | tristate "Intel(R) 82599 Virtual Function Ethernet support" |
| 2730 | depends on PCI_MSI |
| 2731 | ---help--- |
| 2732 | This driver supports Intel(R) 82599 virtual functions. For more |
| 2733 | information on how to identify your adapter, go to the Adapter & |
| 2734 | Driver ID Guide at: |
Greg Rose | ecc6703 | 2010-01-09 02:24:50 +0000 | [diff] [blame] | 2735 | |
Philippe De Muyter | e85eb11 | 2010-11-11 12:31:21 +0000 | [diff] [blame] | 2736 | <http://support.intel.com/support/network/sb/CS-008441.htm> |
Greg Rose | ecc6703 | 2010-01-09 02:24:50 +0000 | [diff] [blame] | 2737 | |
Philippe De Muyter | e85eb11 | 2010-11-11 12:31:21 +0000 | [diff] [blame] | 2738 | For general information and support, go to the Intel support |
| 2739 | website at: |
Greg Rose | ecc6703 | 2010-01-09 02:24:50 +0000 | [diff] [blame] | 2740 | |
Philippe De Muyter | e85eb11 | 2010-11-11 12:31:21 +0000 | [diff] [blame] | 2741 | <http://support.intel.com> |
Greg Rose | ecc6703 | 2010-01-09 02:24:50 +0000 | [diff] [blame] | 2742 | |
Philippe De Muyter | e85eb11 | 2010-11-11 12:31:21 +0000 | [diff] [blame] | 2743 | More specific information on configuring the driver is in |
| 2744 | <file:Documentation/networking/ixgbevf.txt>. |
Greg Rose | ecc6703 | 2010-01-09 02:24:50 +0000 | [diff] [blame] | 2745 | |
Philippe De Muyter | e85eb11 | 2010-11-11 12:31:21 +0000 | [diff] [blame] | 2746 | To compile this driver as a module, choose M here. The module |
| 2747 | will be called ixgbevf. MSI-X interrupt support is required |
| 2748 | for this driver to work correctly. |
Greg Rose | ecc6703 | 2010-01-09 02:24:50 +0000 | [diff] [blame] | 2749 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2750 | config IXGB |
| 2751 | tristate "Intel(R) PRO/10GbE support" |
| 2752 | depends on PCI |
| 2753 | ---help--- |
Auke Kok | 9a799d7 | 2007-09-15 14:07:45 -0700 | [diff] [blame] | 2754 | This driver supports Intel(R) PRO/10GbE family of adapters for |
| 2755 | PCI-X type cards. For PCI-E type cards, use the "ixgbe" driver |
| 2756 | instead. For more information on how to identify your adapter, go |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2757 | to the Adapter & Driver ID Guide at: |
| 2758 | |
| 2759 | <http://support.intel.com/support/network/adapter/pro100/21397.htm> |
| 2760 | |
| 2761 | For general information and support, go to the Intel support |
| 2762 | website at: |
| 2763 | |
| 2764 | <http://support.intel.com> |
| 2765 | |
| 2766 | More specific information on configuring the driver is in |
| 2767 | <file:Documentation/networking/ixgb.txt>. |
| 2768 | |
Adrian Bunk | 57ce45d | 2007-11-12 21:03:58 -0800 | [diff] [blame] | 2769 | To compile this driver as a module, choose M here. The module |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2770 | will be called ixgb. |
| 2771 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2772 | config S2IO |
Jon Mason | 1901d04 | 2010-11-11 04:26:02 +0000 | [diff] [blame] | 2773 | tristate "Exar Xframe 10Gb Ethernet Adapter" |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2774 | depends on PCI |
| 2775 | ---help--- |
Jon Mason | 1901d04 | 2010-11-11 04:26:02 +0000 | [diff] [blame] | 2776 | This driver supports Exar Corp's Xframe Series 10Gb Ethernet Adapters. |
| 2777 | |
Akinobu Mita | 9eb343a | 2005-10-21 19:06:42 +0900 | [diff] [blame] | 2778 | More specific information on configuring the driver is in |
| 2779 | <file:Documentation/networking/s2io.txt>. |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2780 | |
Jon Mason | 1901d04 | 2010-11-11 04:26:02 +0000 | [diff] [blame] | 2781 | To compile this driver as a module, choose M here. The module |
| 2782 | will be called s2io. |
| 2783 | |
Ramkrishna Vepa | f178285 | 2009-04-01 18:15:24 +0000 | [diff] [blame] | 2784 | config VXGE |
Jon Mason | 1901d04 | 2010-11-11 04:26:02 +0000 | [diff] [blame] | 2785 | tristate "Exar X3100 Series 10GbE PCIe Server Adapter" |
Ramkrishna Vepa | f178285 | 2009-04-01 18:15:24 +0000 | [diff] [blame] | 2786 | depends on PCI && INET |
| 2787 | ---help--- |
Jon Mason | 1901d04 | 2010-11-11 04:26:02 +0000 | [diff] [blame] | 2788 | This driver supports Exar Corp's X3100 Series 10 GbE PCIe |
Ramkrishna Vepa | f178285 | 2009-04-01 18:15:24 +0000 | [diff] [blame] | 2789 | I/O Virtualized Server Adapter. |
Jon Mason | 1901d04 | 2010-11-11 04:26:02 +0000 | [diff] [blame] | 2790 | |
Ramkrishna Vepa | f178285 | 2009-04-01 18:15:24 +0000 | [diff] [blame] | 2791 | More specific information on configuring the driver is in |
| 2792 | <file:Documentation/networking/vxge.txt>. |
| 2793 | |
Jon Mason | 1901d04 | 2010-11-11 04:26:02 +0000 | [diff] [blame] | 2794 | To compile this driver as a module, choose M here. The module |
| 2795 | will be called vxge. |
| 2796 | |
Ramkrishna Vepa | f178285 | 2009-04-01 18:15:24 +0000 | [diff] [blame] | 2797 | config VXGE_DEBUG_TRACE_ALL |
| 2798 | bool "Enabling All Debug trace statments in driver" |
| 2799 | default n |
| 2800 | depends on VXGE |
| 2801 | ---help--- |
| 2802 | Say Y here if you want to enabling all the debug trace statements in |
Jon Mason | 1901d04 | 2010-11-11 04:26:02 +0000 | [diff] [blame] | 2803 | the vxge driver. By default only few debug trace statements are |
| 2804 | enabled. |
Ramkrishna Vepa | f178285 | 2009-04-01 18:15:24 +0000 | [diff] [blame] | 2805 | |
Brice Goglin | 0da34b6 | 2006-05-23 06:10:15 -0400 | [diff] [blame] | 2806 | config MYRI10GE |
| 2807 | tristate "Myricom Myri-10G Ethernet support" |
Randy Dunlap | e0d5dab | 2007-10-18 21:53:50 -0700 | [diff] [blame] | 2808 | depends on PCI && INET |
Brice Goglin | 0da34b6 | 2006-05-23 06:10:15 -0400 | [diff] [blame] | 2809 | select FW_LOADER |
| 2810 | select CRC32 |
Andrew Gallatin | 1e6e934 | 2007-09-17 11:37:42 -0700 | [diff] [blame] | 2811 | select INET_LRO |
Brice Goglin | 0da34b6 | 2006-05-23 06:10:15 -0400 | [diff] [blame] | 2812 | ---help--- |
| 2813 | This driver supports Myricom Myri-10G Dual Protocol interface in |
| 2814 | Ethernet mode. If the eeprom on your board is not recent enough, |
| 2815 | you will need a newer firmware image. |
| 2816 | You may get this image or more information, at: |
| 2817 | |
Brice Goglin | d279490 | 2006-09-05 21:58:50 -0400 | [diff] [blame] | 2818 | <http://www.myri.com/scs/download-Myri10GE.html> |
Brice Goglin | 0da34b6 | 2006-05-23 06:10:15 -0400 | [diff] [blame] | 2819 | |
Adrian Bunk | 57ce45d | 2007-11-12 21:03:58 -0800 | [diff] [blame] | 2820 | To compile this driver as a module, choose M here. The module |
Brice Goglin | 0da34b6 | 2006-05-23 06:10:15 -0400 | [diff] [blame] | 2821 | will be called myri10ge. |
| 2822 | |
Jeff Garzik | 5dd2d33 | 2008-10-16 05:09:31 -0400 | [diff] [blame] | 2823 | config MYRI10GE_DCA |
Jeff Kirsher | 1d19ecf | 2008-11-02 20:30:33 -0800 | [diff] [blame] | 2824 | bool "Direct Cache Access (DCA) Support" |
Jeff Garzik | 5dd2d33 | 2008-10-16 05:09:31 -0400 | [diff] [blame] | 2825 | default y |
| 2826 | depends on MYRI10GE && DCA && !(MYRI10GE=y && DCA=m) |
Jeff Kirsher | 1d19ecf | 2008-11-02 20:30:33 -0800 | [diff] [blame] | 2827 | ---help--- |
| 2828 | Say Y here if you want to use Direct Cache Access (DCA) in the |
| 2829 | driver. DCA is a method for warming the CPU cache before data |
| 2830 | is used, with the intent of lessening the impact of cache misses. |
Jeff Garzik | 5dd2d33 | 2008-10-16 05:09:31 -0400 | [diff] [blame] | 2831 | |
Amit S. Kale | 3d396eb | 2006-10-21 15:33:03 -0400 | [diff] [blame] | 2832 | config NETXEN_NIC |
| 2833 | tristate "NetXen Multi port (1/10) Gigabit Ethernet NIC" |
Randy Dunlap | 5ac3661 | 2006-11-16 21:39:11 -0800 | [diff] [blame] | 2834 | depends on PCI |
Anirban Chakraborty | 06aeb78 | 2010-06-23 11:49:42 -0700 | [diff] [blame] | 2835 | select FW_LOADER |
Amit S. Kale | 3d396eb | 2006-10-21 15:33:03 -0400 | [diff] [blame] | 2836 | help |
| 2837 | This enables the support for NetXen's Gigabit Ethernet card. |
| 2838 | |
David S. Miller | a3138df | 2007-10-09 01:54:01 -0700 | [diff] [blame] | 2839 | config NIU |
| 2840 | tristate "Sun Neptune 10Gbit Ethernet support" |
| 2841 | depends on PCI |
Randy Dunlap | c557c15 | 2009-12-10 13:50:56 -0800 | [diff] [blame] | 2842 | select CRC32 |
David S. Miller | a3138df | 2007-10-09 01:54:01 -0700 | [diff] [blame] | 2843 | help |
| 2844 | This enables support for cards based upon Sun's |
| 2845 | Neptune chipset. |
| 2846 | |
Olof Johansson | f5cd787 | 2007-01-31 21:43:54 -0600 | [diff] [blame] | 2847 | config PASEMI_MAC |
| 2848 | tristate "PA Semi 1/10Gbit MAC" |
Ben Hutchings | 10ccff6 | 2010-10-03 15:42:05 +0000 | [diff] [blame] | 2849 | depends on PPC_PASEMI && PCI && INET |
Olof Johansson | bb6e959 | 2007-05-08 00:47:54 -0500 | [diff] [blame] | 2850 | select PHYLIB |
Olof Johansson | 28ae79f | 2007-11-28 20:57:27 -0600 | [diff] [blame] | 2851 | select INET_LRO |
Olof Johansson | f5cd787 | 2007-01-31 21:43:54 -0600 | [diff] [blame] | 2852 | help |
| 2853 | This driver supports the on-chip 1/10Gbit Ethernet controller on |
| 2854 | PA Semi's PWRficient line of chips. |
| 2855 | |
Yevgeny Petrilin | c27a02c | 2008-10-22 15:47:49 -0700 | [diff] [blame] | 2856 | config MLX4_EN |
| 2857 | tristate "Mellanox Technologies 10Gbit Ethernet support" |
| 2858 | depends on PCI && INET |
| 2859 | select MLX4_CORE |
| 2860 | select INET_LRO |
| 2861 | help |
| 2862 | This driver supports Mellanox Technologies ConnectX Ethernet |
| 2863 | devices. |
| 2864 | |
Roland Dreier | 225c7b1 | 2007-05-08 18:00:38 -0700 | [diff] [blame] | 2865 | config MLX4_CORE |
| 2866 | tristate |
| 2867 | depends on PCI |
| 2868 | default n |
| 2869 | |
| 2870 | config MLX4_DEBUG |
David Rientjes | 6a108a1 | 2011-01-20 14:44:16 -0800 | [diff] [blame] | 2871 | bool "Verbose debugging output" if (MLX4_CORE && EXPERT) |
Paul Mundt | f550d94 | 2007-05-10 12:50:28 +0900 | [diff] [blame] | 2872 | depends on MLX4_CORE |
Roland Dreier | 225c7b1 | 2007-05-08 18:00:38 -0700 | [diff] [blame] | 2873 | default y |
| 2874 | ---help--- |
| 2875 | This option causes debugging code to be compiled into the |
| 2876 | mlx4_core driver. The output can be turned on via the |
| 2877 | debug_level module parameter (which can also be set after |
| 2878 | the driver is loaded through sysfs). |
| 2879 | |
Andy Gospodarek | 1a348cc | 2007-09-17 18:50:36 -0700 | [diff] [blame] | 2880 | config TEHUTI |
| 2881 | tristate "Tehuti Networks 10G Ethernet" |
| 2882 | depends on PCI |
| 2883 | help |
| 2884 | Tehuti Networks 10G Ethernet NIC |
| 2885 | |
Eliezer Tamir | a2fbb9e | 2007-11-15 20:09:02 +0200 | [diff] [blame] | 2886 | config BNX2X |
| 2887 | tristate "Broadcom NetXtremeII 10Gb support" |
| 2888 | depends on PCI |
Vladislav Zolotarov | 94a78b7 | 2009-04-27 03:27:43 -0700 | [diff] [blame] | 2889 | select FW_LOADER |
Lee Schermerhorn | 07b270e | 2007-12-13 16:02:59 -0800 | [diff] [blame] | 2890 | select ZLIB_INFLATE |
Eilon Greenstein | 34f80b0 | 2008-06-23 20:33:01 -0700 | [diff] [blame] | 2891 | select LIBCRC32C |
Eilon Greenstein | 01cd452 | 2009-08-12 08:23:08 +0000 | [diff] [blame] | 2892 | select MDIO |
Eliezer Tamir | a2fbb9e | 2007-11-15 20:09:02 +0200 | [diff] [blame] | 2893 | help |
| 2894 | This driver supports Broadcom NetXtremeII 10 gigabit Ethernet cards. |
| 2895 | To compile this driver as a module, choose M here: the module |
| 2896 | will be called bnx2x. This is recommended. |
| 2897 | |
Amit Kumar Salecha | 0ec00f0 | 2010-01-13 00:37:26 +0000 | [diff] [blame] | 2898 | config QLCNIC |
| 2899 | tristate "QLOGIC QLCNIC 1/10Gb Converged Ethernet NIC Support" |
| 2900 | depends on PCI |
Anirban Chakraborty | 06aeb78 | 2010-06-23 11:49:42 -0700 | [diff] [blame] | 2901 | select FW_LOADER |
Amit Kumar Salecha | 0ec00f0 | 2010-01-13 00:37:26 +0000 | [diff] [blame] | 2902 | help |
| 2903 | This driver supports QLogic QLE8240 and QLE8242 Converged Ethernet |
| 2904 | devices. |
| 2905 | |
Ron Mercer | c4e84bd | 2008-09-18 11:56:28 -0400 | [diff] [blame] | 2906 | config QLGE |
| 2907 | tristate "QLogic QLGE 10Gb Ethernet Driver Support" |
| 2908 | depends on PCI |
| 2909 | help |
| 2910 | This driver supports QLogic ISP8XXX 10Gb Ethernet cards. |
| 2911 | |
| 2912 | To compile this driver as a module, choose M here: the module |
| 2913 | will be called qlge. |
| 2914 | |
Rasesh Mody | 8b230ed | 2010-08-23 20:24:12 -0700 | [diff] [blame] | 2915 | config BNA |
Philippe De Muyter | e85eb11 | 2010-11-11 12:31:21 +0000 | [diff] [blame] | 2916 | tristate "Brocade 1010/1020 10Gb Ethernet Driver support" |
| 2917 | depends on PCI |
| 2918 | ---help--- |
| 2919 | This driver supports Brocade 1010/1020 10Gb CEE capable Ethernet |
| 2920 | cards. |
| 2921 | To compile this driver as a module, choose M here: the module |
| 2922 | will be called bna. |
Rasesh Mody | 8b230ed | 2010-08-23 20:24:12 -0700 | [diff] [blame] | 2923 | |
Philippe De Muyter | e85eb11 | 2010-11-11 12:31:21 +0000 | [diff] [blame] | 2924 | For general information and support, go to the Brocade support |
| 2925 | website at: |
Rasesh Mody | 8b230ed | 2010-08-23 20:24:12 -0700 | [diff] [blame] | 2926 | |
Philippe De Muyter | e85eb11 | 2010-11-11 12:31:21 +0000 | [diff] [blame] | 2927 | <http://support.brocade.com> |
Rasesh Mody | 8b230ed | 2010-08-23 20:24:12 -0700 | [diff] [blame] | 2928 | |
Ben Hutchings | 8ceee66 | 2008-04-27 12:55:59 +0100 | [diff] [blame] | 2929 | source "drivers/net/sfc/Kconfig" |
Eliezer Tamir | a2fbb9e | 2007-11-15 20:09:02 +0200 | [diff] [blame] | 2930 | |
Sathya Perla | 6b7c5b9 | 2009-03-11 23:32:03 -0700 | [diff] [blame] | 2931 | source "drivers/net/benet/Kconfig" |
| 2932 | |
Jan Engelhardt | f30486d | 2007-05-10 22:52:56 -0700 | [diff] [blame] | 2933 | endif # NETDEV_10000 |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2934 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2935 | source "drivers/net/tokenring/Kconfig" |
| 2936 | |
| 2937 | source "drivers/net/wireless/Kconfig" |
| 2938 | |
Inaky Perez-Gonzalez | 143ee2d | 2008-12-23 16:18:48 -0800 | [diff] [blame] | 2939 | source "drivers/net/wimax/Kconfig" |
| 2940 | |
Jeff Garzik | 5b2fc49 | 2007-05-09 21:31:55 -0400 | [diff] [blame] | 2941 | source "drivers/net/usb/Kconfig" |
| 2942 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2943 | source "drivers/net/pcmcia/Kconfig" |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2944 | |
| 2945 | source "drivers/net/wan/Kconfig" |
| 2946 | |
| 2947 | source "drivers/atm/Kconfig" |
| 2948 | |
Sergey Lapin | 8459464 | 2009-06-08 12:18:51 +0000 | [diff] [blame] | 2949 | source "drivers/ieee802154/Kconfig" |
| 2950 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2951 | source "drivers/s390/net/Kconfig" |
| 2952 | |
Sjur Braendeland | 9b27105 | 2010-03-30 13:56:30 +0000 | [diff] [blame] | 2953 | source "drivers/net/caif/Kconfig" |
| 2954 | |
Chris Metcalf | e5a0693 | 2010-11-01 17:00:37 -0400 | [diff] [blame] | 2955 | config TILE_NET |
| 2956 | tristate "Tilera GBE/XGBE network driver support" |
| 2957 | depends on TILE |
| 2958 | default y |
| 2959 | select CRC32 |
| 2960 | help |
| 2961 | This is a standard Linux network device driver for the |
| 2962 | on-chip Tilera Gigabit Ethernet and XAUI interfaces. |
| 2963 | |
| 2964 | To compile this driver as a module, choose M here: the module |
| 2965 | will be called tile_net. |
| 2966 | |
Jeremy Fitzhardinge | 0d16021 | 2007-07-17 18:37:06 -0700 | [diff] [blame] | 2967 | config XEN_NETDEV_FRONTEND |
| 2968 | tristate "Xen network device frontend driver" |
| 2969 | depends on XEN |
Jeremy Fitzhardinge | 7003087 | 2009-03-27 16:28:34 -0700 | [diff] [blame] | 2970 | select XEN_XENBUS_FRONTEND |
Jeremy Fitzhardinge | 0d16021 | 2007-07-17 18:37:06 -0700 | [diff] [blame] | 2971 | default y |
| 2972 | help |
Ian Campbell | f942dc2 | 2011-03-15 00:06:18 +0000 | [diff] [blame] | 2973 | This driver provides support for Xen paravirtual network |
| 2974 | devices exported by a Xen network driver domain (often |
| 2975 | domain 0). |
| 2976 | |
| 2977 | The corresponding Linux backend driver is enabled by the |
| 2978 | CONFIG_XEN_NETDEV_BACKEND option. |
| 2979 | |
| 2980 | If you are compiling a kernel for use as Xen guest, you |
| 2981 | should say Y here. To compile this driver as a module, chose |
| 2982 | M here: the module will be called xen-netfront. |
| 2983 | |
| 2984 | config XEN_NETDEV_BACKEND |
| 2985 | tristate "Xen backend network device" |
| 2986 | depends on XEN_BACKEND |
| 2987 | help |
| 2988 | This driver allows the kernel to act as a Xen network driver |
| 2989 | domain which exports paravirtual network devices to other |
| 2990 | Xen domains. These devices can be accessed by any operating |
| 2991 | system that implements a compatible front end. |
| 2992 | |
| 2993 | The corresponding Linux frontend driver is enabled by the |
| 2994 | CONFIG_XEN_NETDEV_FRONTEND configuration option. |
| 2995 | |
| 2996 | The backend driver presents a standard network device |
| 2997 | endpoint for each paravirtual network device to the driver |
| 2998 | domain network stack. These can then be bridged or routed |
| 2999 | etc in order to provide full network connectivity. |
| 3000 | |
| 3001 | If you are compiling a kernel to run in a Xen network driver |
| 3002 | domain (often this is domain 0) you should say Y here. To |
| 3003 | compile this driver as a module, chose M here: the module |
| 3004 | will be called xen-netback. |
Jeremy Fitzhardinge | 0d16021 | 2007-07-17 18:37:06 -0700 | [diff] [blame] | 3005 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3006 | config ISERIES_VETH |
| 3007 | tristate "iSeries Virtual Ethernet driver support" |
Randy Dunlap | cbcd2a4 | 2005-07-27 13:04:35 -0700 | [diff] [blame] | 3008 | depends on PPC_ISERIES |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3009 | |
Matt Porter | f89efd5 | 2005-09-09 12:10:10 -0700 | [diff] [blame] | 3010 | config RIONET |
| 3011 | tristate "RapidIO Ethernet over messaging driver support" |
Randy Dunlap | a81c52a | 2006-11-01 21:18:58 -0800 | [diff] [blame] | 3012 | depends on RAPIDIO |
Matt Porter | f89efd5 | 2005-09-09 12:10:10 -0700 | [diff] [blame] | 3013 | |
| 3014 | config RIONET_TX_SIZE |
| 3015 | int "Number of outbound queue entries" |
| 3016 | depends on RIONET |
| 3017 | default "128" |
| 3018 | |
| 3019 | config RIONET_RX_SIZE |
| 3020 | int "Number of inbound queue entries" |
| 3021 | depends on RIONET |
| 3022 | default "128" |
| 3023 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3024 | config FDDI |
Dave Jones | eb56092 | 2008-12-27 20:43:48 -0800 | [diff] [blame] | 3025 | tristate "FDDI driver support" |
Maciej W. Rozycki | e89a2cf | 2007-02-05 16:28:27 -0800 | [diff] [blame] | 3026 | depends on (PCI || EISA || TC) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3027 | help |
| 3028 | Fiber Distributed Data Interface is a high speed local area network |
| 3029 | design; essentially a replacement for high speed Ethernet. FDDI can |
| 3030 | run over copper or fiber. If you are connected to such a network and |
| 3031 | want a driver for the FDDI card in your computer, say Y here (and |
| 3032 | then also Y to the driver for your FDDI card, below). Most people |
| 3033 | will say N. |
| 3034 | |
| 3035 | config DEFXX |
Maciej W. Rozycki | e89a2cf | 2007-02-05 16:28:27 -0800 | [diff] [blame] | 3036 | tristate "Digital DEFTA/DEFEA/DEFPA adapter support" |
| 3037 | depends on FDDI && (PCI || EISA || TC) |
| 3038 | ---help--- |
| 3039 | This is support for the DIGITAL series of TURBOchannel (DEFTA), |
| 3040 | EISA (DEFEA) and PCI (DEFPA) controllers which can connect you |
| 3041 | to a local FDDI network. |
| 3042 | |
| 3043 | To compile this driver as a module, choose M here: the module |
| 3044 | will be called defxx. If unsure, say N. |
| 3045 | |
| 3046 | config DEFXX_MMIO |
| 3047 | bool |
| 3048 | prompt "Use MMIO instead of PIO" if PCI || EISA |
| 3049 | depends on DEFXX |
| 3050 | default n if PCI || EISA |
| 3051 | default y |
| 3052 | ---help--- |
| 3053 | This instructs the driver to use EISA or PCI memory-mapped I/O |
| 3054 | (MMIO) as appropriate instead of programmed I/O ports (PIO). |
| 3055 | Enabling this gives an improvement in processing time in parts |
| 3056 | of the driver, but it may cause problems with EISA (DEFEA) |
| 3057 | adapters. TURBOchannel does not have the concept of I/O ports, |
| 3058 | so MMIO is always used for these (DEFTA) adapters. |
| 3059 | |
| 3060 | If unsure, say N. |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3061 | |
| 3062 | config SKFP |
| 3063 | tristate "SysKonnect FDDI PCI support" |
| 3064 | depends on FDDI && PCI |
Akinobu Mita | bc63eb9 | 2006-12-19 13:09:08 -0800 | [diff] [blame] | 3065 | select BITREVERSE |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3066 | ---help--- |
| 3067 | Say Y here if you have a SysKonnect FDDI PCI adapter. |
| 3068 | The following adapters are supported by this driver: |
| 3069 | - SK-5521 (SK-NET FDDI-UP) |
| 3070 | - SK-5522 (SK-NET FDDI-UP DAS) |
| 3071 | - SK-5541 (SK-NET FDDI-FP) |
| 3072 | - SK-5543 (SK-NET FDDI-LP) |
| 3073 | - SK-5544 (SK-NET FDDI-LP DAS) |
| 3074 | - SK-5821 (SK-NET FDDI-UP64) |
| 3075 | - SK-5822 (SK-NET FDDI-UP64 DAS) |
| 3076 | - SK-5841 (SK-NET FDDI-FP64) |
| 3077 | - SK-5843 (SK-NET FDDI-LP64) |
| 3078 | - SK-5844 (SK-NET FDDI-LP64 DAS) |
| 3079 | - Netelligent 100 FDDI DAS Fibre SC |
| 3080 | - Netelligent 100 FDDI SAS Fibre SC |
| 3081 | - Netelligent 100 FDDI DAS UTP |
| 3082 | - Netelligent 100 FDDI SAS UTP |
| 3083 | - Netelligent 100 FDDI SAS Fibre MIC |
| 3084 | |
| 3085 | Read <file:Documentation/networking/skfp.txt> for information about |
| 3086 | the driver. |
| 3087 | |
| 3088 | Questions concerning this driver can be addressed to: |
| 3089 | <linux@syskonnect.de> |
| 3090 | |
| 3091 | To compile this driver as a module, choose M here: the module |
| 3092 | will be called skfp. This is recommended. |
| 3093 | |
| 3094 | config HIPPI |
| 3095 | bool "HIPPI driver support (EXPERIMENTAL)" |
Randy Dunlap | cbcd2a4 | 2005-07-27 13:04:35 -0700 | [diff] [blame] | 3096 | depends on EXPERIMENTAL && INET && PCI |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3097 | help |
| 3098 | HIgh Performance Parallel Interface (HIPPI) is a 800Mbit/sec and |
| 3099 | 1600Mbit/sec dual-simplex switched or point-to-point network. HIPPI |
| 3100 | can run over copper (25m) or fiber (300m on multi-mode or 10km on |
| 3101 | single-mode). HIPPI networks are commonly used for clusters and to |
| 3102 | connect to super computers. If you are connected to a HIPPI network |
| 3103 | and have a HIPPI network card in your computer that you want to use |
| 3104 | under Linux, say Y here (you must also remember to enable the driver |
| 3105 | for your HIPPI card below). Most people will say N here. |
| 3106 | |
| 3107 | config ROADRUNNER |
| 3108 | tristate "Essential RoadRunner HIPPI PCI adapter support (EXPERIMENTAL)" |
| 3109 | depends on HIPPI && PCI |
| 3110 | help |
| 3111 | Say Y here if this is your PCI HIPPI network card. |
| 3112 | |
| 3113 | To compile this driver as a module, choose M here: the module |
| 3114 | will be called rrunner. If unsure, say N. |
| 3115 | |
| 3116 | config ROADRUNNER_LARGE_RINGS |
| 3117 | bool "Use large TX/RX rings (EXPERIMENTAL)" |
| 3118 | depends on ROADRUNNER |
| 3119 | help |
| 3120 | If you say Y here, the RoadRunner driver will preallocate up to 2 MB |
| 3121 | of additional memory to allow for fastest operation, both for |
| 3122 | transmitting and receiving. This memory cannot be used by any other |
| 3123 | kernel code or by user space programs. Say Y here only if you have |
| 3124 | the memory. |
| 3125 | |
| 3126 | config PLIP |
| 3127 | tristate "PLIP (parallel port) support" |
Randy Dunlap | cbcd2a4 | 2005-07-27 13:04:35 -0700 | [diff] [blame] | 3128 | depends on PARPORT |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3129 | ---help--- |
| 3130 | PLIP (Parallel Line Internet Protocol) is used to create a |
| 3131 | reasonably fast mini network consisting of two (or, rarely, more) |
| 3132 | local machines. A PLIP link from a Linux box is a popular means to |
| 3133 | install a Linux distribution on a machine which doesn't have a |
| 3134 | CD-ROM drive (a minimal system has to be transferred with floppies |
| 3135 | first). The kernels on both machines need to have this PLIP option |
| 3136 | enabled for this to work. |
| 3137 | |
| 3138 | The PLIP driver has two modes, mode 0 and mode 1. The parallel |
| 3139 | ports (the connectors at the computers with 25 holes) are connected |
| 3140 | with "null printer" or "Turbo Laplink" cables which can transmit 4 |
| 3141 | bits at a time (mode 0) or with special PLIP cables, to be used on |
| 3142 | bidirectional parallel ports only, which can transmit 8 bits at a |
| 3143 | time (mode 1); you can find the wiring of these cables in |
| 3144 | <file:Documentation/networking/PLIP.txt>. The cables can be up to |
| 3145 | 15m long. Mode 0 works also if one of the machines runs DOS/Windows |
| 3146 | and has some PLIP software installed, e.g. the Crynwr PLIP packet |
| 3147 | driver (<http://oak.oakland.edu/simtel.net/msdos/pktdrvr-pre.html>) |
| 3148 | and winsock or NCSA's telnet. |
| 3149 | |
| 3150 | If you want to use PLIP, say Y and read the PLIP mini-HOWTO as well |
| 3151 | as the NET-3-HOWTO, both available from |
| 3152 | <http://www.tldp.org/docs.html#howto>. Note that the PLIP |
| 3153 | protocol has been changed and this PLIP driver won't work together |
| 3154 | with the PLIP support in Linux versions 1.0.x. This option enlarges |
| 3155 | your kernel by about 8 KB. |
| 3156 | |
Adrian Bunk | 57ce45d | 2007-11-12 21:03:58 -0800 | [diff] [blame] | 3157 | To compile this driver as a module, choose M here. The module |
| 3158 | will be called plip. If unsure, say Y or M, in case you buy |
| 3159 | a laptop later. |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3160 | |
| 3161 | config PPP |
| 3162 | tristate "PPP (point-to-point protocol) support" |
Ralf Baechle | b6e37e5 | 2006-07-14 12:15:40 +0100 | [diff] [blame] | 3163 | select SLHC |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3164 | ---help--- |
| 3165 | PPP (Point to Point Protocol) is a newer and better SLIP. It serves |
| 3166 | the same purpose: sending Internet traffic over telephone (and other |
| 3167 | serial) lines. Ask your access provider if they support it, because |
| 3168 | otherwise you can't use it; most Internet access providers these |
| 3169 | days support PPP rather than SLIP. |
| 3170 | |
| 3171 | To use PPP, you need an additional program called pppd as described |
| 3172 | in the PPP-HOWTO, available at |
| 3173 | <http://www.tldp.org/docs.html#howto>. Make sure that you have |
| 3174 | the version of pppd recommended in <file:Documentation/Changes>. |
| 3175 | The PPP option enlarges your kernel by about 16 KB. |
| 3176 | |
| 3177 | There are actually two versions of PPP: the traditional PPP for |
| 3178 | asynchronous lines, such as regular analog phone lines, and |
| 3179 | synchronous PPP which can be used over digital ISDN lines for |
| 3180 | example. If you want to use PPP over phone lines or other |
| 3181 | asynchronous serial lines, you need to say Y (or M) here and also to |
| 3182 | the next option, "PPP support for async serial ports". For PPP over |
| 3183 | synchronous lines, you should say Y (or M) here and to "Support |
| 3184 | synchronous PPP", below. |
| 3185 | |
| 3186 | If you said Y to "Version information on all symbols" above, then |
| 3187 | you cannot compile the PPP driver into the kernel; you can then only |
| 3188 | compile it as a module. To compile this driver as a module, choose M |
Adrian Bunk | 57ce45d | 2007-11-12 21:03:58 -0800 | [diff] [blame] | 3189 | here. The module will be called ppp_generic. |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3190 | |
| 3191 | config PPP_MULTILINK |
| 3192 | bool "PPP multilink support (EXPERIMENTAL)" |
| 3193 | depends on PPP && EXPERIMENTAL |
| 3194 | help |
| 3195 | PPP multilink is a protocol (defined in RFC 1990) which allows you |
| 3196 | to combine several (logical or physical) lines into one logical PPP |
| 3197 | connection, so that you can utilize your full bandwidth. |
| 3198 | |
| 3199 | This has to be supported at the other end as well and you need a |
| 3200 | version of the pppd daemon which understands the multilink protocol. |
| 3201 | |
| 3202 | If unsure, say N. |
| 3203 | |
| 3204 | config PPP_FILTER |
| 3205 | bool "PPP filtering" |
| 3206 | depends on PPP |
| 3207 | help |
| 3208 | Say Y here if you want to be able to filter the packets passing over |
| 3209 | PPP interfaces. This allows you to control which packets count as |
| 3210 | activity (i.e. which packets will reset the idle timer or bring up |
Jon Mason | 47c5143 | 2006-02-12 11:53:04 -0600 | [diff] [blame] | 3211 | a demand-dialed link) and which packets are to be dropped entirely. |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3212 | You need to say Y here if you wish to use the pass-filter and |
| 3213 | active-filter options to pppd. |
| 3214 | |
| 3215 | If unsure, say N. |
| 3216 | |
| 3217 | config PPP_ASYNC |
| 3218 | tristate "PPP support for async serial ports" |
| 3219 | depends on PPP |
| 3220 | select CRC_CCITT |
| 3221 | ---help--- |
| 3222 | Say Y (or M) here if you want to be able to use PPP over standard |
| 3223 | asynchronous serial ports, such as COM1 or COM2 on a PC. If you use |
| 3224 | a modem (not a synchronous or ISDN modem) to contact your ISP, you |
| 3225 | need this option. |
| 3226 | |
| 3227 | To compile this driver as a module, choose M here. |
| 3228 | |
| 3229 | If unsure, say Y. |
| 3230 | |
| 3231 | config PPP_SYNC_TTY |
| 3232 | tristate "PPP support for sync tty ports" |
| 3233 | depends on PPP |
| 3234 | help |
| 3235 | Say Y (or M) here if you want to be able to use PPP over synchronous |
| 3236 | (HDLC) tty devices, such as the SyncLink adapter. These devices |
| 3237 | are often used for high-speed leased lines like T1/E1. |
| 3238 | |
| 3239 | To compile this driver as a module, choose M here. |
| 3240 | |
| 3241 | config PPP_DEFLATE |
| 3242 | tristate "PPP Deflate compression" |
| 3243 | depends on PPP |
| 3244 | select ZLIB_INFLATE |
| 3245 | select ZLIB_DEFLATE |
| 3246 | ---help--- |
| 3247 | Support for the Deflate compression method for PPP, which uses the |
| 3248 | Deflate algorithm (the same algorithm that gzip uses) to compress |
| 3249 | each PPP packet before it is sent over the wire. The machine at the |
| 3250 | other end of the PPP link (usually your ISP) has to support the |
| 3251 | Deflate compression method as well for this to be useful. Even if |
| 3252 | they don't support it, it is safe to say Y here. |
| 3253 | |
| 3254 | To compile this driver as a module, choose M here. |
| 3255 | |
| 3256 | config PPP_BSDCOMP |
| 3257 | tristate "PPP BSD-Compress compression" |
| 3258 | depends on PPP |
| 3259 | ---help--- |
| 3260 | Support for the BSD-Compress compression method for PPP, which uses |
| 3261 | the LZW compression method to compress each PPP packet before it is |
| 3262 | sent over the wire. The machine at the other end of the PPP link |
| 3263 | (usually your ISP) has to support the BSD-Compress compression |
| 3264 | method as well for this to be useful. Even if they don't support it, |
| 3265 | it is safe to say Y here. |
| 3266 | |
| 3267 | The PPP Deflate compression method ("PPP Deflate compression", |
| 3268 | above) is preferable to BSD-Compress, because it compresses better |
| 3269 | and is patent-free. |
| 3270 | |
| 3271 | Note that the BSD compression code will always be compiled as a |
| 3272 | module; it is called bsd_comp and will show up in the directory |
| 3273 | modules once you have said "make modules". If unsure, say N. |
| 3274 | |
Matt Domsch | b3f9b92 | 2005-11-08 09:40:47 -0800 | [diff] [blame] | 3275 | config PPP_MPPE |
Philippe De Muyter | e85eb11 | 2010-11-11 12:31:21 +0000 | [diff] [blame] | 3276 | tristate "PPP MPPE compression (encryption) (EXPERIMENTAL)" |
| 3277 | depends on PPP && EXPERIMENTAL |
| 3278 | select CRYPTO |
| 3279 | select CRYPTO_SHA1 |
| 3280 | select CRYPTO_ARC4 |
| 3281 | select CRYPTO_ECB |
| 3282 | ---help--- |
| 3283 | Support for the MPPE Encryption protocol, as employed by the |
| 3284 | Microsoft Point-to-Point Tunneling Protocol. |
Matt Domsch | b3f9b92 | 2005-11-08 09:40:47 -0800 | [diff] [blame] | 3285 | |
Philippe De Muyter | e85eb11 | 2010-11-11 12:31:21 +0000 | [diff] [blame] | 3286 | See http://pptpclient.sourceforge.net/ for information on |
| 3287 | configuring PPTP clients and servers to utilize this method. |
Matt Domsch | b3f9b92 | 2005-11-08 09:40:47 -0800 | [diff] [blame] | 3288 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3289 | config PPPOE |
| 3290 | tristate "PPP over Ethernet (EXPERIMENTAL)" |
| 3291 | depends on EXPERIMENTAL && PPP |
| 3292 | help |
| 3293 | Support for PPP over Ethernet. |
| 3294 | |
| 3295 | This driver requires the latest version of pppd from the CVS |
| 3296 | repository at cvs.samba.org. Alternatively, see the |
| 3297 | RoaringPenguin package (<http://www.roaringpenguin.com/pppoe>) |
| 3298 | which contains instruction on how to use this driver (under |
| 3299 | the heading "Kernel mode PPPoE"). |
| 3300 | |
Dmitry Kozlov | 00959ad | 2010-08-21 23:05:39 -0700 | [diff] [blame] | 3301 | config PPTP |
| 3302 | tristate "PPP over IPv4 (PPTP) (EXPERIMENTAL)" |
| 3303 | depends on EXPERIMENTAL && PPP && NET_IPGRE_DEMUX |
| 3304 | help |
| 3305 | Support for PPP over IPv4.(Point-to-Point Tunneling Protocol) |
| 3306 | |
| 3307 | This driver requires pppd plugin to work in client mode or |
| 3308 | modified pptpd (poptop) to work in server mode. |
| 3309 | See http://accel-pptp.sourceforge.net/ for information how to |
| 3310 | utilize this module. |
| 3311 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3312 | config PPPOATM |
| 3313 | tristate "PPP over ATM" |
| 3314 | depends on ATM && PPP |
| 3315 | help |
| 3316 | Support PPP (Point to Point Protocol) encapsulated in ATM frames. |
| 3317 | This implementation does not yet comply with section 8 of RFC2364, |
| 3318 | which can lead to bad results if the ATM peer loses state and |
| 3319 | changes its encapsulation unilaterally. |
| 3320 | |
James Chapman | 3557baa | 2007-06-27 15:49:24 -0700 | [diff] [blame] | 3321 | config PPPOL2TP |
| 3322 | tristate "PPP over L2TP (EXPERIMENTAL)" |
James Chapman | fd558d1 | 2010-04-02 06:18:33 +0000 | [diff] [blame] | 3323 | depends on EXPERIMENTAL && L2TP && PPP |
James Chapman | 3557baa | 2007-06-27 15:49:24 -0700 | [diff] [blame] | 3324 | help |
| 3325 | Support for PPP-over-L2TP socket family. L2TP is a protocol |
| 3326 | used by ISPs and enterprises to tunnel PPP traffic over UDP |
| 3327 | tunnels. L2TP is replacing PPTP for VPN uses. |
| 3328 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3329 | config SLIP |
| 3330 | tristate "SLIP (serial line) support" |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3331 | ---help--- |
| 3332 | Say Y if you intend to use SLIP or CSLIP (compressed SLIP) to |
| 3333 | connect to your Internet service provider or to connect to some |
| 3334 | other local Unix box or if you want to configure your Linux box as a |
| 3335 | Slip/CSlip server for other people to dial in. SLIP (Serial Line |
| 3336 | Internet Protocol) is a protocol used to send Internet traffic over |
| 3337 | serial connections such as telephone lines or null modem cables; |
| 3338 | nowadays, the protocol PPP is more commonly used for this same |
| 3339 | purpose. |
| 3340 | |
| 3341 | Normally, your access provider has to support SLIP in order for you |
| 3342 | to be able to use it, but there is now a SLIP emulator called SLiRP |
| 3343 | around (available from |
| 3344 | <ftp://ibiblio.org/pub/Linux/system/network/serial/>) which |
| 3345 | allows you to use SLIP over a regular dial up shell connection. If |
| 3346 | you plan to use SLiRP, make sure to say Y to CSLIP, below. The |
| 3347 | NET-3-HOWTO, available from |
| 3348 | <http://www.tldp.org/docs.html#howto>, explains how to |
| 3349 | configure SLIP. Note that you don't need this option if you just |
| 3350 | want to run term (term is a program which gives you almost full |
| 3351 | Internet connectivity if you have a regular dial up shell account on |
| 3352 | some Internet connected Unix computer. Read |
| 3353 | <http://www.bart.nl/~patrickr/term-howto/Term-HOWTO.html>). SLIP |
| 3354 | support will enlarge your kernel by about 4 KB. If unsure, say N. |
| 3355 | |
Adrian Bunk | 57ce45d | 2007-11-12 21:03:58 -0800 | [diff] [blame] | 3356 | To compile this driver as a module, choose M here. The module |
| 3357 | will be called slip. |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3358 | |
| 3359 | config SLIP_COMPRESSED |
| 3360 | bool "CSLIP compressed headers" |
| 3361 | depends on SLIP |
Ralf Baechle | b6e37e5 | 2006-07-14 12:15:40 +0100 | [diff] [blame] | 3362 | select SLHC |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3363 | ---help--- |
| 3364 | This protocol is faster than SLIP because it uses compression on the |
| 3365 | TCP/IP headers (not on the data itself), but it has to be supported |
| 3366 | on both ends. Ask your access provider if you are not sure and |
| 3367 | answer Y, just in case. You will still be able to use plain SLIP. If |
| 3368 | you plan to use SLiRP, the SLIP emulator (available from |
| 3369 | <ftp://ibiblio.org/pub/Linux/system/network/serial/>) which |
| 3370 | allows you to use SLIP over a regular dial up shell connection, you |
| 3371 | definitely want to say Y here. The NET-3-HOWTO, available from |
| 3372 | <http://www.tldp.org/docs.html#howto>, explains how to configure |
| 3373 | CSLIP. This won't enlarge your kernel. |
| 3374 | |
Ralf Baechle | b6e37e5 | 2006-07-14 12:15:40 +0100 | [diff] [blame] | 3375 | config SLHC |
| 3376 | tristate |
| 3377 | help |
| 3378 | This option enables Van Jacobsen serial line header compression |
| 3379 | routines. |
| 3380 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3381 | config SLIP_SMART |
| 3382 | bool "Keepalive and linefill" |
| 3383 | depends on SLIP |
| 3384 | help |
| 3385 | Adds additional capabilities to the SLIP driver to support the |
| 3386 | RELCOM line fill and keepalive monitoring. Ideal on poor quality |
| 3387 | analogue lines. |
| 3388 | |
| 3389 | config SLIP_MODE_SLIP6 |
| 3390 | bool "Six bit SLIP encapsulation" |
| 3391 | depends on SLIP |
| 3392 | help |
| 3393 | Just occasionally you may need to run IP over hostile serial |
| 3394 | networks that don't pass all control characters or are only seven |
| 3395 | bit. Saying Y here adds an extra mode you can use with SLIP: |
| 3396 | "slip6". In this mode, SLIP will only send normal ASCII symbols over |
| 3397 | the serial device. Naturally, this has to be supported at the other |
| 3398 | end of the link as well. It's good enough, for example, to run IP |
| 3399 | over the async ports of a Camtec JNT Pad. If unsure, say N. |
| 3400 | |
| 3401 | config NET_FC |
| 3402 | bool "Fibre Channel driver support" |
Randy Dunlap | cbcd2a4 | 2005-07-27 13:04:35 -0700 | [diff] [blame] | 3403 | depends on SCSI && PCI |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3404 | help |
| 3405 | Fibre Channel is a high speed serial protocol mainly used to connect |
| 3406 | large storage devices to the computer; it is compatible with and |
| 3407 | intended to replace SCSI. |
| 3408 | |
| 3409 | If you intend to use Fibre Channel, you need to have a Fibre channel |
| 3410 | adaptor card in your computer; say Y here and to the driver for your |
| 3411 | adaptor below. You also should have said Y to "SCSI support" and |
| 3412 | "SCSI generic support". |
| 3413 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3414 | config NETCONSOLE |
Amerigo Wang | ecbacf8 | 2010-03-21 23:59:23 +0000 | [diff] [blame] | 3415 | tristate "Network console logging support" |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3416 | ---help--- |
| 3417 | If you want to log kernel messages over the network, enable this. |
| 3418 | See <file:Documentation/networking/netconsole.txt> for details. |
| 3419 | |
Satyam Sharma | 0bcc181 | 2007-08-10 15:35:05 -0700 | [diff] [blame] | 3420 | config NETCONSOLE_DYNAMIC |
Amerigo Wang | ecbacf8 | 2010-03-21 23:59:23 +0000 | [diff] [blame] | 3421 | bool "Dynamic reconfiguration of logging targets" |
Randy Dunlap | 58fa459 | 2011-06-21 08:01:20 +0000 | [diff] [blame] | 3422 | depends on NETCONSOLE && SYSFS && CONFIGFS_FS && \ |
| 3423 | !(NETCONSOLE=y && CONFIGFS_FS=m) |
Satyam Sharma | 0bcc181 | 2007-08-10 15:35:05 -0700 | [diff] [blame] | 3424 | help |
| 3425 | This option enables the ability to dynamically reconfigure target |
| 3426 | parameters (interface, IP addresses, port numbers, MAC addresses) |
| 3427 | at runtime through a userspace interface exported using configfs. |
| 3428 | See <file:Documentation/networking/netconsole.txt> for details. |
| 3429 | |
Randy Dunlap | 5420899 | 2005-07-18 13:45:12 -0700 | [diff] [blame] | 3430 | config NETPOLL |
| 3431 | def_bool NETCONSOLE |
| 3432 | |
Randy Dunlap | 5420899 | 2005-07-18 13:45:12 -0700 | [diff] [blame] | 3433 | config NETPOLL_TRAP |
| 3434 | bool "Netpoll traffic trapping" |
| 3435 | default n |
| 3436 | depends on NETPOLL |
| 3437 | |
| 3438 | config NET_POLL_CONTROLLER |
| 3439 | def_bool NETPOLL |
| 3440 | |
Rusty Russell | 296f96f | 2007-10-22 11:03:37 +1000 | [diff] [blame] | 3441 | config VIRTIO_NET |
| 3442 | tristate "Virtio network driver (EXPERIMENTAL)" |
| 3443 | depends on EXPERIMENTAL && VIRTIO |
| 3444 | ---help--- |
Anthony Liguori | 0ad07ec | 2007-11-07 20:46:31 -0600 | [diff] [blame] | 3445 | This is the virtual network driver for virtio. It can be used with |
Philippe De Muyter | e85eb11 | 2010-11-11 12:31:21 +0000 | [diff] [blame] | 3446 | lguest or QEMU based VMMs (like KVM or Xen). Say Y or M. |
Rusty Russell | 296f96f | 2007-10-22 11:03:37 +1000 | [diff] [blame] | 3447 | |
Shreyas Bhatewara | d1a890f | 2009-10-13 00:15:51 -0700 | [diff] [blame] | 3448 | config VMXNET3 |
Philippe De Muyter | e85eb11 | 2010-11-11 12:31:21 +0000 | [diff] [blame] | 3449 | tristate "VMware VMXNET3 ethernet driver" |
| 3450 | depends on PCI && INET |
| 3451 | help |
| 3452 | This driver supports VMware's vmxnet3 virtual ethernet NIC. |
| 3453 | To compile this driver as a module, choose M here: the |
| 3454 | module will be called vmxnet3. |
Shreyas Bhatewara | d1a890f | 2009-10-13 00:15:51 -0700 | [diff] [blame] | 3455 | |
Jan Engelhardt | d1c0a65 | 2007-06-13 12:48:53 -0700 | [diff] [blame] | 3456 | endif # NETDEVICES |