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 | |
Florian Fainelli | ef11291 | 2008-03-19 17:14:51 +0100 | [diff] [blame] | 240 | config KORINA |
| 241 | tristate "Korina (IDT RC32434) Ethernet support" |
Ralf Baechle | f57b206 | 2008-04-28 12:48:40 +0100 | [diff] [blame] | 242 | depends on NET_ETHERNET && MIKROTIK_RB532 |
Florian Fainelli | ef11291 | 2008-03-19 17:14:51 +0100 | [diff] [blame] | 243 | help |
| 244 | If you have a Mikrotik RouterBoard 500 or IDT RC32434 |
| 245 | based system say Y. Otherwise say N. |
| 246 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 247 | config SGI_IOC3_ETH |
| 248 | bool "SGI IOC3 Ethernet" |
Jan Engelhardt | d1c0a65 | 2007-06-13 12:48:53 -0700 | [diff] [blame] | 249 | depends on PCI && SGI_IP27 |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 250 | select CRC32 |
| 251 | select MII |
| 252 | help |
| 253 | If you have a network (Ethernet) card of this type, say Y and read |
| 254 | the Ethernet-HOWTO, available from |
| 255 | <http://www.tldp.org/docs.html#howto>. |
| 256 | |
Ralf Baechle | dcbf847 | 2005-10-10 14:51:27 +0100 | [diff] [blame] | 257 | config MIPS_SIM_NET |
Ralf Baechle | 1e2b980 | 2007-03-18 23:21:22 +0000 | [diff] [blame] | 258 | tristate "MIPS simulator Network device" |
Jan Engelhardt | d1c0a65 | 2007-06-13 12:48:53 -0700 | [diff] [blame] | 259 | depends on MIPS_SIM |
Ralf Baechle | dcbf847 | 2005-10-10 14:51:27 +0100 | [diff] [blame] | 260 | help |
| 261 | The MIPSNET device is a simple Ethernet network device which is |
| 262 | emulated by the MIPS Simulator. |
| 263 | If you are not using a MIPSsim or are unsure, say N. |
| 264 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 265 | config SGI_O2MACE_ETH |
| 266 | tristate "SGI O2 MACE Fast Ethernet support" |
Jan Engelhardt | d1c0a65 | 2007-06-13 12:48:53 -0700 | [diff] [blame] | 267 | depends on SGI_IP32=y |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 268 | |
Nobuhiro Iwamatsu | 86a74ff | 2008-06-09 16:33:56 -0700 | [diff] [blame] | 269 | config SH_ETH |
| 270 | tristate "Renesas SuperH Ethernet support" |
| 271 | depends on SUPERH && \ |
Yoshihiro Shimoda | 65ac885 | 2009-05-24 23:54:30 +0000 | [diff] [blame] | 272 | (CPU_SUBTYPE_SH7710 || CPU_SUBTYPE_SH7712 || \ |
| 273 | CPU_SUBTYPE_SH7763 || CPU_SUBTYPE_SH7619 || \ |
Yoshihiro Shimoda | f29a3d0 | 2010-07-05 18:32:50 +0000 | [diff] [blame] | 274 | CPU_SUBTYPE_SH7724 || CPU_SUBTYPE_SH7757) |
Nobuhiro Iwamatsu | 86a74ff | 2008-06-09 16:33:56 -0700 | [diff] [blame] | 275 | select CRC32 |
| 276 | select MII |
| 277 | select MDIO_BITBANG |
| 278 | select PHYLIB |
| 279 | help |
| 280 | Renesas SuperH Ethernet device driver. |
Yoshihiro Shimoda | f29a3d0 | 2010-07-05 18:32:50 +0000 | [diff] [blame] | 281 | This driver supporting CPUs are: |
| 282 | - SH7710, SH7712, SH7763, SH7619, SH7724, and SH7757. |
Nobuhiro Iwamatsu | 86a74ff | 2008-06-09 16:33:56 -0700 | [diff] [blame] | 283 | |
Bryan Wu | e190d6b | 2007-07-17 14:43:44 +0800 | [diff] [blame] | 284 | config BFIN_MAC |
Mike Frysinger | 736783b | 2008-08-27 11:47:57 +0800 | [diff] [blame] | 285 | tristate "Blackfin on-chip MAC support" |
Sonic Zhang | 33a2a2b | 2009-01-08 10:52:26 -0800 | [diff] [blame] | 286 | depends on NET_ETHERNET && (BF516 || BF518 || BF526 || BF527 || BF536 || BF537) |
Bryan Wu | e190d6b | 2007-07-17 14:43:44 +0800 | [diff] [blame] | 287 | select CRC32 |
Bryan Wu | eeb70af | 2007-09-19 23:37:41 +0800 | [diff] [blame] | 288 | select MII |
| 289 | select PHYLIB |
Bryan Wu | e190d6b | 2007-07-17 14:43:44 +0800 | [diff] [blame] | 290 | select BFIN_MAC_USE_L1 if DMA_UNCACHED_NONE |
| 291 | help |
Mike Frysinger | 736783b | 2008-08-27 11:47:57 +0800 | [diff] [blame] | 292 | 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] | 293 | compiled into the kernel. This driver is also available as a module |
| 294 | ( = code which can be inserted in and removed from the running kernel |
| 295 | whenever you want). The module will be called bfin_mac. |
| 296 | |
| 297 | config BFIN_MAC_USE_L1 |
| 298 | bool "Use L1 memory for rx/tx packets" |
Michael Hennerich | 6893ff1 | 2008-01-30 16:52:25 +0800 | [diff] [blame] | 299 | depends on BFIN_MAC && (BF527 || BF537) |
Bryan Wu | e190d6b | 2007-07-17 14:43:44 +0800 | [diff] [blame] | 300 | default y |
| 301 | help |
Matt LaPlante | 01dd2fb | 2007-10-20 01:34:40 +0200 | [diff] [blame] | 302 | 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] | 303 | Say N here if you want to reserve L1 memory for other uses. |
| 304 | |
| 305 | config BFIN_TX_DESC_NUM |
| 306 | int "Number of transmit buffer packets" |
| 307 | depends on BFIN_MAC |
| 308 | range 6 10 if BFIN_MAC_USE_L1 |
| 309 | range 10 100 |
| 310 | default "10" |
| 311 | help |
| 312 | Set the number of buffer packets used in driver. |
| 313 | |
| 314 | config BFIN_RX_DESC_NUM |
| 315 | int "Number of receive buffer packets" |
| 316 | depends on BFIN_MAC |
| 317 | range 20 100 if BFIN_MAC_USE_L1 |
| 318 | range 20 800 |
| 319 | default "20" |
| 320 | help |
| 321 | Set the number of buffer packets used in driver. |
| 322 | |
Barry Song | fe92afe | 2010-05-17 17:19:40 -0700 | [diff] [blame] | 323 | config BFIN_MAC_USE_HWSTAMP |
| 324 | bool "Use IEEE 1588 hwstamp" |
| 325 | depends on BFIN_MAC && BF518 |
| 326 | default y |
| 327 | help |
| 328 | To support the IEEE 1588 Precision Time Protocol (PTP), select y here |
| 329 | |
Sachin Sanap | a49f37e | 2010-08-13 21:22:49 +0000 | [diff] [blame] | 330 | config PXA168_ETH |
| 331 | tristate "Marvell pxa168 ethernet support" |
| 332 | depends on CPU_PXA168 |
| 333 | select PHYLIB |
| 334 | help |
| 335 | This driver supports the pxa168 Ethernet ports. |
| 336 | |
| 337 | To compile this driver as a module, choose M here. The module |
| 338 | will be called pxa168_eth. |
| 339 | |
Sascha Hauer | 92aa674 | 2006-06-22 07:11:13 +0200 | [diff] [blame] | 340 | config NET_NETX |
| 341 | tristate "NetX Ethernet support" |
| 342 | select MII |
Jan Engelhardt | d1c0a65 | 2007-06-13 12:48:53 -0700 | [diff] [blame] | 343 | depends on ARCH_NETX |
Sascha Hauer | 92aa674 | 2006-06-22 07:11:13 +0200 | [diff] [blame] | 344 | help |
| 345 | This is support for the Hilscher netX builtin Ethernet ports |
| 346 | |
Adrian Bunk | 57ce45d | 2007-11-12 21:03:58 -0800 | [diff] [blame] | 347 | To compile this driver as a module, choose M here. The module |
Sascha Hauer | 92aa674 | 2006-06-22 07:11:13 +0200 | [diff] [blame] | 348 | will be called netx-eth. |
| 349 | |
Anant Gole | a6286ee | 2009-05-18 15:19:01 -0700 | [diff] [blame] | 350 | config TI_DAVINCI_EMAC |
| 351 | tristate "TI DaVinci EMAC Support" |
Sriramakrishnan | 8ee2bf9 | 2009-11-19 15:58:25 +0530 | [diff] [blame] | 352 | depends on ARM && ( ARCH_DAVINCI || ARCH_OMAP3 ) |
Cyril Chemparathy | 5d69e00 | 2010-09-15 10:11:24 -0400 | [diff] [blame] | 353 | select TI_DAVINCI_MDIO |
Cyril Chemparathy | ef8c2da | 2010-09-15 10:11:28 -0400 | [diff] [blame] | 354 | select TI_DAVINCI_CPDMA |
Anant Gole | a6286ee | 2009-05-18 15:19:01 -0700 | [diff] [blame] | 355 | select PHYLIB |
| 356 | help |
| 357 | This driver supports TI's DaVinci Ethernet . |
| 358 | |
| 359 | To compile this driver as a module, choose M here: the module |
| 360 | will be called davinci_emac_driver. This is recommended. |
| 361 | |
Cyril Chemparathy | f20136e | 2010-09-15 10:11:21 -0400 | [diff] [blame] | 362 | config TI_DAVINCI_MDIO |
| 363 | tristate "TI DaVinci MDIO Support" |
| 364 | depends on ARM && ( ARCH_DAVINCI || ARCH_OMAP3 ) |
| 365 | select PHYLIB |
| 366 | help |
| 367 | This driver supports TI's DaVinci MDIO module. |
| 368 | |
| 369 | To compile this driver as a module, choose M here: the module |
| 370 | will be called davinci_mdio. This is recommended. |
| 371 | |
Cyril Chemparathy | ef8c2da | 2010-09-15 10:11:28 -0400 | [diff] [blame] | 372 | config TI_DAVINCI_CPDMA |
| 373 | tristate "TI DaVinci CPDMA Support" |
| 374 | depends on ARM && ( ARCH_DAVINCI || ARCH_OMAP3 ) |
| 375 | help |
| 376 | This driver supports TI's DaVinci CPDMA dma engine. |
| 377 | |
| 378 | To compile this driver as a module, choose M here: the module |
| 379 | will be called davinci_cpdma. This is recommended. |
| 380 | |
Sascha Hauer | a136527 | 2005-05-05 15:14:15 -0700 | [diff] [blame] | 381 | config DM9000 |
| 382 | tristate "DM9000 support" |
Alex Landau | f40d24d | 2007-07-12 12:11:48 +0800 | [diff] [blame] | 383 | depends on ARM || BLACKFIN || MIPS |
Sascha Hauer | a136527 | 2005-05-05 15:14:15 -0700 | [diff] [blame] | 384 | select CRC32 |
| 385 | select MII |
| 386 | ---help--- |
| 387 | Support for DM9000 chipset. |
| 388 | |
Adrian Bunk | 57ce45d | 2007-11-12 21:03:58 -0800 | [diff] [blame] | 389 | To compile this driver as a module, choose M here. The module |
| 390 | will be called dm9000. |
Sascha Hauer | a136527 | 2005-05-05 15:14:15 -0700 | [diff] [blame] | 391 | |
Ben Dooks | 485ca22 | 2008-06-24 22:16:06 +0100 | [diff] [blame] | 392 | config DM9000_DEBUGLEVEL |
| 393 | int "DM9000 maximum debug level" |
| 394 | depends on DM9000 |
| 395 | default 4 |
| 396 | help |
| 397 | The maximum level of debugging code compiled into the DM9000 |
| 398 | driver. |
| 399 | |
Ben Dooks | f8dd0ec | 2008-06-24 22:16:04 +0100 | [diff] [blame] | 400 | config DM9000_FORCE_SIMPLE_PHY_POLL |
| 401 | bool "Force simple NSR based PHY polling" |
| 402 | depends on DM9000 |
| 403 | ---help--- |
| 404 | This configuration forces the DM9000 to use the NSR's LinkStatus |
| 405 | bit to determine if the link is up or down instead of the more |
| 406 | costly MII PHY reads. Note, this will not work if the chip is |
| 407 | operating with an external PHY. |
| 408 | |
Claudio Lanconelli | 3ec9c11 | 2008-01-14 11:00:28 +0100 | [diff] [blame] | 409 | config ENC28J60 |
| 410 | tristate "ENC28J60 support" |
| 411 | depends on EXPERIMENTAL && SPI && NET_ETHERNET |
| 412 | select CRC32 |
| 413 | ---help--- |
| 414 | Support for the Microchip EN28J60 ethernet chip. |
| 415 | |
Johann Felix Soden | 2bfc79d | 2008-02-05 03:13:58 -0800 | [diff] [blame] | 416 | 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] | 417 | called enc28j60. |
| 418 | |
| 419 | config ENC28J60_WRITEVERIFY |
| 420 | bool "Enable write verify" |
| 421 | depends on ENC28J60 |
| 422 | ---help--- |
| 423 | Enable the verify after the buffer write useful for debugging purpose. |
| 424 | If unsure, say N. |
| 425 | |
Thierry Reding | a170285 | 2009-03-27 00:12:24 -0700 | [diff] [blame] | 426 | config ETHOC |
| 427 | tristate "OpenCores 10/100 Mbps Ethernet MAC support" |
Geert Uytterhoeven | 0ebe74e | 2009-11-20 09:19:10 +0000 | [diff] [blame] | 428 | depends on NET_ETHERNET && HAS_IOMEM && HAS_DMA |
Thierry Reding | a170285 | 2009-03-27 00:12:24 -0700 | [diff] [blame] | 429 | select MII |
| 430 | select PHYLIB |
Randy Dunlap | c5cacb3 | 2009-04-08 15:41:25 -0700 | [diff] [blame] | 431 | select CRC32 |
| 432 | select BITREVERSE |
Thierry Reding | a170285 | 2009-03-27 00:12:24 -0700 | [diff] [blame] | 433 | help |
| 434 | Say Y here if you want to use the OpenCores 10/100 Mbps Ethernet MAC. |
| 435 | |
Kristoffer Glembo | d4c4113 | 2010-02-15 03:33:44 +0000 | [diff] [blame] | 436 | config GRETH |
| 437 | tristate "Aeroflex Gaisler GRETH Ethernet MAC support" |
David S. Miller | cf261b2 | 2010-02-18 23:32:26 -0800 | [diff] [blame] | 438 | depends on SPARC |
Kristoffer Glembo | d4c4113 | 2010-02-15 03:33:44 +0000 | [diff] [blame] | 439 | select PHYLIB |
| 440 | select CRC32 |
| 441 | help |
| 442 | Say Y here if you want to use the Aeroflex Gaisler GRETH Ethernet MAC. |
| 443 | |
Ilya Yanok | 4796417 | 2009-03-11 23:26:02 -0700 | [diff] [blame] | 444 | config DNET |
| 445 | tristate "Dave ethernet support (DNET)" |
Ilya Yanok | 4b97926 | 2009-03-21 16:58:47 -0700 | [diff] [blame] | 446 | depends on NET_ETHERNET && HAS_IOMEM |
Ilya Yanok | 4796417 | 2009-03-11 23:26:02 -0700 | [diff] [blame] | 447 | select PHYLIB |
| 448 | help |
| 449 | The Dave ethernet interface (DNET) is found on Qong Board FPGA. |
| 450 | Say Y to include support for the DNET chip. |
| 451 | |
| 452 | To compile this driver as a module, choose M here: the module |
| 453 | will be called dnet. |
| 454 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 455 | source "drivers/net/tulip/Kconfig" |
| 456 | |
| 457 | config AT1700 |
| 458 | tristate "AT1700/1720 support (EXPERIMENTAL)" |
Jan Engelhardt | d1c0a65 | 2007-06-13 12:48:53 -0700 | [diff] [blame] | 459 | depends on (ISA || MCA_LEGACY) && EXPERIMENTAL |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 460 | select CRC32 |
| 461 | ---help--- |
| 462 | If you have a network (Ethernet) card of this type, say Y and read |
| 463 | the Ethernet-HOWTO, available from |
| 464 | <http://www.tldp.org/docs.html#howto>. |
| 465 | |
Adrian Bunk | 57ce45d | 2007-11-12 21:03:58 -0800 | [diff] [blame] | 466 | To compile this driver as a module, choose M here. The module |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 467 | will be called at1700. |
| 468 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 469 | config HP100 |
| 470 | tristate "HP 10/100VG PCLAN (ISA, EISA, PCI) support" |
Jan Engelhardt | d1c0a65 | 2007-06-13 12:48:53 -0700 | [diff] [blame] | 471 | depends on ISA || EISA || PCI |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 472 | help |
| 473 | If you have a network (Ethernet) card of this type, say Y and read |
| 474 | the Ethernet-HOWTO, available from |
| 475 | <http://www.tldp.org/docs.html#howto>. |
| 476 | |
Adrian Bunk | 57ce45d | 2007-11-12 21:03:58 -0800 | [diff] [blame] | 477 | To compile this driver as a module, choose M here. The module |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 478 | will be called hp100. |
| 479 | |
| 480 | config NET_ISA |
| 481 | bool "Other ISA cards" |
Jan Engelhardt | d1c0a65 | 2007-06-13 12:48:53 -0700 | [diff] [blame] | 482 | depends on ISA |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 483 | ---help--- |
| 484 | If your network (Ethernet) card hasn't been mentioned yet and its |
| 485 | bus system (that's the way the cards talks to the other components |
| 486 | of your computer) is ISA (as opposed to EISA, VLB or PCI), say Y. |
| 487 | Make sure you know the name of your card. Read the Ethernet-HOWTO, |
| 488 | available from <http://www.tldp.org/docs.html#howto>. |
| 489 | |
| 490 | If unsure, say Y. |
| 491 | |
| 492 | Note that the answer to this question doesn't directly affect the |
| 493 | kernel: saying N will just cause the configurator to skip all |
| 494 | the remaining ISA network card questions. If you say Y, you will be |
| 495 | asked for your specific card in the following questions. |
| 496 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 497 | config EWRK3 |
| 498 | tristate "EtherWORKS 3 (DE203, DE204, DE205) support" |
| 499 | depends on NET_ISA |
| 500 | select CRC32 |
| 501 | ---help--- |
| 502 | This driver supports the DE203, DE204 and DE205 network (Ethernet) |
| 503 | cards. If this is for you, say Y and read |
| 504 | <file:Documentation/networking/ewrk3.txt> in the kernel source as |
| 505 | well as the Ethernet-HOWTO, available from |
| 506 | <http://www.tldp.org/docs.html#howto>. |
| 507 | |
Adrian Bunk | 57ce45d | 2007-11-12 21:03:58 -0800 | [diff] [blame] | 508 | To compile this driver as a module, choose M here. The module |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 509 | will be called ewrk3. |
| 510 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 511 | config ETH16I |
| 512 | tristate "ICL EtherTeam 16i/32 support" |
| 513 | depends on NET_ISA |
| 514 | help |
| 515 | If you have a network (Ethernet) card of this type, say Y and read |
| 516 | the Ethernet-HOWTO, available from |
| 517 | <http://www.tldp.org/docs.html#howto>. |
| 518 | |
Adrian Bunk | 57ce45d | 2007-11-12 21:03:58 -0800 | [diff] [blame] | 519 | To compile this driver as a module, choose M here. The module |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 520 | will be called eth16i. |
| 521 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 522 | config SEEQ8005 |
| 523 | tristate "SEEQ8005 support (EXPERIMENTAL)" |
| 524 | depends on NET_ISA && EXPERIMENTAL |
| 525 | help |
| 526 | This is a driver for the SEEQ 8005 network (Ethernet) card. If this |
| 527 | is for you, read the Ethernet-HOWTO, available from |
| 528 | <http://www.tldp.org/docs.html#howto>. |
| 529 | |
Adrian Bunk | 57ce45d | 2007-11-12 21:03:58 -0800 | [diff] [blame] | 530 | To compile this driver as a module, choose M here. The module |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 531 | will be called seeq8005. |
| 532 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 533 | config NET_PCI |
| 534 | bool "EISA, VLB, PCI and on board controllers" |
Jan Engelhardt | d1c0a65 | 2007-06-13 12:48:53 -0700 | [diff] [blame] | 535 | depends on ISA || EISA || PCI |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 536 | help |
| 537 | This is another class of network cards which attach directly to the |
| 538 | bus. If you have one of those, say Y and read the Ethernet-HOWTO, |
| 539 | available from <http://www.tldp.org/docs.html#howto>. |
| 540 | |
| 541 | Note that the answer to this question doesn't directly affect the |
| 542 | kernel: saying N will just cause the configurator to skip all |
| 543 | the questions about this class of network cards. If you say Y, you |
| 544 | will be asked for your specific card in the following questions. If |
| 545 | you are unsure, say Y. |
| 546 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 547 | config ADAPTEC_STARFIRE |
| 548 | tristate "Adaptec Starfire/DuraLAN support" |
| 549 | depends on NET_PCI && PCI |
| 550 | select CRC32 |
| 551 | select MII |
| 552 | help |
| 553 | Say Y here if you have an Adaptec Starfire (or DuraLAN) PCI network |
| 554 | adapter. The DuraLAN chip is used on the 64 bit PCI boards from |
| 555 | Adaptec e.g. the ANA-6922A. The older 32 bit boards use the tulip |
| 556 | driver. |
| 557 | |
| 558 | To compile this driver as a module, choose M here: the module |
| 559 | will be called starfire. This is recommended. |
| 560 | |
Tristram Ha | 1eb1cc7 | 2010-02-08 11:38:28 +0000 | [diff] [blame] | 561 | config KSZ884X_PCI |
| 562 | tristate "Micrel KSZ8841/2 PCI" |
| 563 | depends on NET_PCI && PCI |
| 564 | select MII |
| 565 | select CRC32 |
| 566 | help |
| 567 | This PCI driver is for Micrel KSZ8841/KSZ8842 PCI Ethernet chip. |
| 568 | |
| 569 | To compile this driver as a module, choose M here. The module |
| 570 | will be called ksz884x. |
| 571 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 572 | config FORCEDETH |
Adrian Bunk | 8277008 | 2006-03-08 00:06:30 -0800 | [diff] [blame] | 573 | tristate "nForce Ethernet support" |
| 574 | depends on NET_PCI && PCI |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 575 | help |
| 576 | If you have a network (Ethernet) controller of this type, say Y and |
| 577 | read the Ethernet-HOWTO, available from |
| 578 | <http://www.tldp.org/docs.html#howto>. |
| 579 | |
Adrian Bunk | 57ce45d | 2007-11-12 21:03:58 -0800 | [diff] [blame] | 580 | To compile this driver as a module, choose M here. The module |
| 581 | will be called forcedeth. |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 582 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 583 | config TC35815 |
| 584 | tristate "TOSHIBA TC35815 Ethernet support" |
Atsushi Nemoto | eea221ce4 | 2007-03-03 23:54:59 +0900 | [diff] [blame] | 585 | depends on NET_PCI && PCI && MIPS |
Atsushi Nemoto | c6686fe | 2008-04-12 00:47:46 +0900 | [diff] [blame] | 586 | select PHYLIB |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 587 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 588 | config FEALNX |
| 589 | tristate "Myson MTD-8xx PCI Ethernet support" |
| 590 | depends on NET_PCI && PCI |
| 591 | select CRC32 |
| 592 | select MII |
| 593 | help |
Justin P. Mattock | 631dd1a | 2010-10-18 11:03:14 +0200 | [diff] [blame] | 594 | Say Y here to support the Myson MTD-800 family of PCI-based Ethernet |
| 595 | cards. <http://www.myson.com.tw/> |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 596 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 597 | config 8139CP |
| 598 | tristate "RealTek RTL-8139 C+ PCI Fast Ethernet Adapter support (EXPERIMENTAL)" |
| 599 | depends on NET_PCI && PCI && EXPERIMENTAL |
| 600 | select CRC32 |
| 601 | select MII |
| 602 | help |
| 603 | This is a driver for the Fast Ethernet PCI network cards based on |
| 604 | the RTL8139C+ chips. If you have one of those, say Y and read |
| 605 | the Ethernet-HOWTO, available from |
| 606 | <http://www.tldp.org/docs.html#howto>. |
| 607 | |
| 608 | To compile this driver as a module, choose M here: the module |
| 609 | will be called 8139cp. This is recommended. |
| 610 | |
| 611 | config 8139TOO |
Adrian Bunk | f04e3f0 | 2005-05-16 21:13:03 +0200 | [diff] [blame] | 612 | tristate "RealTek RTL-8129/8130/8139 PCI Fast Ethernet Adapter support" |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 613 | depends on NET_PCI && PCI |
| 614 | select CRC32 |
| 615 | select MII |
| 616 | ---help--- |
| 617 | 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] | 618 | the RTL 8129/8130/8139 chips. If you have one of those, say Y and |
| 619 | read the Ethernet-HOWTO <http://www.tldp.org/docs.html#howto>. |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 620 | |
| 621 | To compile this driver as a module, choose M here: the module |
| 622 | will be called 8139too. This is recommended. |
| 623 | |
| 624 | config 8139TOO_PIO |
| 625 | bool "Use PIO instead of MMIO" |
| 626 | default y |
| 627 | depends on 8139TOO |
| 628 | help |
| 629 | This instructs the driver to use programmed I/O ports (PIO) instead |
| 630 | of PCI shared memory (MMIO). This can possibly solve some problems |
| 631 | in case your mainboard has memory consistency issues. If unsure, |
| 632 | say N. |
| 633 | |
| 634 | config 8139TOO_TUNE_TWISTER |
| 635 | bool "Support for uncommon RTL-8139 rev. K (automatic channel equalization)" |
| 636 | depends on 8139TOO |
| 637 | help |
| 638 | This implements a function which might come in handy in case you |
| 639 | are using low quality on long cabling. It is required for RealTek |
| 640 | RTL-8139 revision K boards, and totally unused otherwise. It tries |
| 641 | to match the transceiver to the cable characteristics. This is |
| 642 | experimental since hardly documented by the manufacturer. |
| 643 | If unsure, say Y. |
| 644 | |
| 645 | config 8139TOO_8129 |
| 646 | bool "Support for older RTL-8129/8130 boards" |
| 647 | depends on 8139TOO |
| 648 | help |
| 649 | This enables support for the older and uncommon RTL-8129 and |
| 650 | RTL-8130 chips, which support MII via an external transceiver, |
| 651 | instead of an internal one. Disabling this option will save some |
| 652 | memory by making the code size smaller. If unsure, say Y. |
| 653 | |
| 654 | config 8139_OLD_RX_RESET |
| 655 | bool "Use older RX-reset method" |
| 656 | depends on 8139TOO |
| 657 | help |
| 658 | The 8139too driver was recently updated to contain a more rapid |
| 659 | reset sequence, in the face of severe receive errors. This "new" |
| 660 | RX-reset method should be adequate for all boards. But if you |
| 661 | experience problems, you can enable this option to restore the |
| 662 | old RX-reset behavior. If unsure, say N. |
| 663 | |
Sten Wang | 7a47dd7 | 2007-11-12 21:31:11 -0800 | [diff] [blame] | 664 | config R6040 |
Florian Fainelli | 6833411 | 2009-01-08 15:04:50 +0000 | [diff] [blame] | 665 | tristate "RDC R6040 Fast Ethernet Adapter support" |
Sten Wang | 7a47dd7 | 2007-11-12 21:31:11 -0800 | [diff] [blame] | 666 | depends on NET_PCI && PCI |
| 667 | select CRC32 |
| 668 | select MII |
Florian Fainelli | 3831861 | 2010-05-31 09:18:57 +0000 | [diff] [blame] | 669 | select PHYLIB |
Sten Wang | 7a47dd7 | 2007-11-12 21:31:11 -0800 | [diff] [blame] | 670 | help |
| 671 | This is a driver for the R6040 Fast Ethernet MACs found in the |
| 672 | the RDC R-321x System-on-chips. |
| 673 | |
| 674 | To compile this driver as a module, choose M here: the module |
| 675 | will be called r6040. This is recommended. |
| 676 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 677 | config SIS900 |
| 678 | tristate "SiS 900/7016 PCI Fast Ethernet Adapter support" |
| 679 | depends on NET_PCI && PCI |
| 680 | select CRC32 |
Adrian Bunk | 6da0f68 | 2005-04-30 13:52:49 +0200 | [diff] [blame] | 681 | select MII |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 682 | ---help--- |
| 683 | This is a driver for the Fast Ethernet PCI network cards based on |
| 684 | 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] | 685 | SiS 630 and SiS 540 chipsets. |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 686 | |
| 687 | This driver also supports AMD 79C901 HomePNA so that you can use |
| 688 | your phone line as a network cable. |
| 689 | |
| 690 | To compile this driver as a module, choose M here: the module |
| 691 | will be called sis900. This is recommended. |
| 692 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 693 | config SUNDANCE |
| 694 | tristate "Sundance Alta support" |
| 695 | depends on NET_PCI && PCI |
| 696 | select CRC32 |
| 697 | select MII |
| 698 | help |
| 699 | This driver is for the Sundance "Alta" chip. |
| 700 | More specific information and updates are available from |
| 701 | <http://www.scyld.com/network/sundance.html>. |
| 702 | |
| 703 | config SUNDANCE_MMIO |
| 704 | bool "Use MMIO instead of PIO" |
| 705 | depends on SUNDANCE |
| 706 | help |
| 707 | Enable memory-mapped I/O for interaction with Sundance NIC registers. |
| 708 | Do NOT enable this by default, PIO (enabled when MMIO is disabled) |
| 709 | is known to solve bugs on certain chips. |
| 710 | |
| 711 | If unsure, say N. |
| 712 | |
| 713 | config TLAN |
| 714 | tristate "TI ThunderLAN support" |
Stephen Hemminger | 93e1684 | 2008-05-30 09:49:55 -0700 | [diff] [blame] | 715 | depends on NET_PCI && (PCI || EISA) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 716 | ---help--- |
| 717 | If you have a PCI Ethernet network card based on the ThunderLAN chip |
| 718 | which is supported by this driver, say Y and read the |
| 719 | Ethernet-HOWTO, available from |
| 720 | <http://www.tldp.org/docs.html#howto>. |
| 721 | |
| 722 | Devices currently supported by this driver are Compaq Netelligent, |
| 723 | Compaq NetFlex and Olicom cards. Please read the file |
| 724 | <file:Documentation/networking/tlan.txt> for more details. |
| 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 tlan. |
| 728 | |
| 729 | Please email feedback to <torben.mathiasen@compaq.com>. |
| 730 | |
Richard Ršöjfors | b07878e | 2009-06-04 03:35:55 +0000 | [diff] [blame] | 731 | config KS8842 |
David J. Choi | 28bd620 | 2010-07-13 10:09:19 -0700 | [diff] [blame] | 732 | tristate "Micrel KSZ8841/42 with generic bus interface" |
Randy Dunlap | 19de1e3 | 2010-07-29 07:14:27 +0000 | [diff] [blame] | 733 | depends on HAS_IOMEM && DMA_ENGINE |
Richard Ršöjfors | b07878e | 2009-06-04 03:35:55 +0000 | [diff] [blame] | 734 | help |
Philippe De Muyter | e85eb11 | 2010-11-11 12:31:21 +0000 | [diff] [blame] | 735 | This platform driver is for KSZ8841(1-port) / KS8842(2-port) |
| 736 | ethernet switch chip (managed, VLAN, QoS) from Micrel or |
| 737 | Timberdale(FPGA). |
Richard Ršöjfors | b07878e | 2009-06-04 03:35:55 +0000 | [diff] [blame] | 738 | |
Ben Dooks | 3ba81f3 | 2009-07-16 05:24:08 +0000 | [diff] [blame] | 739 | config KS8851 |
Philippe De Muyter | e85eb11 | 2010-11-11 12:31:21 +0000 | [diff] [blame] | 740 | tristate "Micrel KS8851 SPI" |
| 741 | depends on SPI |
| 742 | select MII |
Randy Dunlap | cbb35f8a | 2009-08-19 12:13:31 -0700 | [diff] [blame] | 743 | select CRC32 |
Philippe De Muyter | e85eb11 | 2010-11-11 12:31:21 +0000 | [diff] [blame] | 744 | help |
| 745 | SPI driver for Micrel KS8851 SPI attached network chip. |
Ben Dooks | 3ba81f3 | 2009-07-16 05:24:08 +0000 | [diff] [blame] | 746 | |
Choi, David | a55c0a0e | 2009-09-25 14:42:12 +0000 | [diff] [blame] | 747 | config KS8851_MLL |
| 748 | tristate "Micrel KS8851 MLL" |
| 749 | depends on HAS_IOMEM |
Randy Dunlap | 47a01a0 | 2009-10-14 15:10:58 -0700 | [diff] [blame] | 750 | select MII |
Choi, David | a55c0a0e | 2009-09-25 14:42:12 +0000 | [diff] [blame] | 751 | help |
| 752 | This platform driver is for Micrel KS8851 Address/data bus |
| 753 | multiplexed network chip. |
| 754 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 755 | config VIA_RHINE |
| 756 | tristate "VIA Rhine support" |
| 757 | depends on NET_PCI && PCI |
| 758 | select CRC32 |
| 759 | select MII |
| 760 | help |
| 761 | If you have a VIA "Rhine" based network card (Rhine-I (VT86C100A), |
| 762 | Rhine-II (VT6102), or Rhine-III (VT6105)), say Y here. Rhine-type |
| 763 | Ethernet functions can also be found integrated on South Bridges |
| 764 | (e.g. VT8235). |
| 765 | |
| 766 | To compile this driver as a module, choose M here. The module |
| 767 | will be called via-rhine. |
| 768 | |
| 769 | config VIA_RHINE_MMIO |
| 770 | bool "Use MMIO instead of PIO" |
| 771 | depends on VIA_RHINE |
| 772 | help |
| 773 | This instructs the driver to use PCI shared memory (MMIO) instead of |
| 774 | programmed I/O ports (PIO). Enabling this gives an improvement in |
| 775 | processing time in parts of the driver. |
| 776 | |
| 777 | If unsure, say Y. |
| 778 | |
Cesar Eduardo Barros | bf34570 | 2006-12-19 13:08:47 -0800 | [diff] [blame] | 779 | config SC92031 |
| 780 | tristate "Silan SC92031 PCI Fast Ethernet Adapter driver (EXPERIMENTAL)" |
| 781 | depends on NET_PCI && PCI && EXPERIMENTAL |
| 782 | select CRC32 |
| 783 | ---help--- |
| 784 | This is a driver for the Fast Ethernet PCI network cards based on |
| 785 | the Silan SC92031 chip (sometimes also called Rsltek 8139D). If you |
| 786 | have one of these, say Y here. |
| 787 | |
| 788 | To compile this driver as a module, choose M here: the module |
| 789 | will be called sc92031. This is recommended. |
| 790 | |
Matteo Croce | d95b39c | 2007-10-14 18:10:13 +0200 | [diff] [blame] | 791 | config CPMAC |
| 792 | tristate "TI AR7 CPMAC Ethernet support (EXPERIMENTAL)" |
Florian Fainelli | 839b04c | 2009-08-04 11:17:49 +0000 | [diff] [blame] | 793 | depends on NET_ETHERNET && EXPERIMENTAL && AR7 |
Matteo Croce | d95b39c | 2007-10-14 18:10:13 +0200 | [diff] [blame] | 794 | select PHYLIB |
Matteo Croce | d95b39c | 2007-10-14 18:10:13 +0200 | [diff] [blame] | 795 | help |
| 796 | TI AR7 CPMAC Ethernet support |
| 797 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 798 | config NET_POCKET |
| 799 | bool "Pocket and portable adapters" |
Jan Engelhardt | d1c0a65 | 2007-06-13 12:48:53 -0700 | [diff] [blame] | 800 | depends on PARPORT |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 801 | ---help--- |
| 802 | Cute little network (Ethernet) devices which attach to the parallel |
| 803 | port ("pocket adapters"), commonly used with laptops. If you have |
| 804 | one of those, say Y and read the Ethernet-HOWTO, available from |
| 805 | <http://www.tldp.org/docs.html#howto>. |
| 806 | |
| 807 | If you want to plug a network (or some other) card into the PCMCIA |
| 808 | (or PC-card) slot of your laptop instead (PCMCIA is the standard for |
| 809 | credit card size extension cards used by all modern laptops), you |
| 810 | need the pcmcia-cs package (location contained in the file |
| 811 | <file:Documentation/Changes>) and you can say N here. |
| 812 | |
| 813 | Laptop users should read the Linux Laptop home page at |
| 814 | <http://www.linux-on-laptops.com/> or |
| 815 | Tuxmobil - Linux on Mobile Computers at <http://www.tuxmobil.org/>. |
| 816 | |
| 817 | Note that the answer to this question doesn't directly affect the |
| 818 | kernel: saying N will just cause the configurator to skip all |
| 819 | the questions about this class of network devices. If you say Y, you |
| 820 | will be asked for your specific device in the following questions. |
| 821 | |
| 822 | config ATP |
| 823 | tristate "AT-LAN-TEC/RealTek pocket adapter support" |
Grant Coady | 32fa2bf | 2005-09-10 00:14:05 +1000 | [diff] [blame] | 824 | depends on NET_POCKET && PARPORT && X86 |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 825 | select CRC32 |
| 826 | ---help--- |
| 827 | This is a network (Ethernet) device which attaches to your parallel |
| 828 | port. Read <file:drivers/net/atp.c> as well as the Ethernet-HOWTO, |
| 829 | available from <http://www.tldp.org/docs.html#howto>, if you |
| 830 | want to use this. If you intend to use this driver, you should have |
| 831 | said N to the "Parallel printer support", because the two drivers |
| 832 | don't like each other. |
| 833 | |
| 834 | To compile this driver as a module, choose M here: the module |
| 835 | will be called atp. |
| 836 | |
| 837 | config DE600 |
| 838 | tristate "D-Link DE600 pocket adapter support" |
Grant Coady | 32fa2bf | 2005-09-10 00:14:05 +1000 | [diff] [blame] | 839 | depends on NET_POCKET && PARPORT |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 840 | ---help--- |
| 841 | This is a network (Ethernet) device which attaches to your parallel |
| 842 | port. Read <file:Documentation/networking/DLINK.txt> as well as the |
| 843 | Ethernet-HOWTO, available from |
| 844 | <http://www.tldp.org/docs.html#howto>, if you want to use |
| 845 | this. It is possible to have several devices share a single parallel |
| 846 | port and it is safe to compile the corresponding drivers into the |
| 847 | kernel. |
| 848 | |
| 849 | To compile this driver as a module, choose M here: the module |
| 850 | will be called de600. |
| 851 | |
| 852 | config DE620 |
| 853 | tristate "D-Link DE620 pocket adapter support" |
Grant Coady | 32fa2bf | 2005-09-10 00:14:05 +1000 | [diff] [blame] | 854 | depends on NET_POCKET && PARPORT |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 855 | ---help--- |
| 856 | This is a network (Ethernet) device which attaches to your parallel |
| 857 | port. Read <file:Documentation/networking/DLINK.txt> as well as the |
| 858 | Ethernet-HOWTO, available from |
| 859 | <http://www.tldp.org/docs.html#howto>, if you want to use |
| 860 | this. It is possible to have several devices share a single parallel |
| 861 | port and it is safe to compile the corresponding drivers into the |
| 862 | kernel. |
| 863 | |
| 864 | To compile this driver as a module, choose M here: the module |
| 865 | will be called de620. |
| 866 | |
| 867 | config SGISEEQ |
| 868 | tristate "SGI Seeq ethernet controller support" |
Thomas Bogendoerfer | 49b11bc | 2007-12-19 13:42:36 +0100 | [diff] [blame] | 869 | depends on SGI_HAS_SEEQ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 870 | help |
| 871 | Say Y here if you have an Seeq based Ethernet network card. This is |
| 872 | used in many Silicon Graphics machines. |
| 873 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 874 | config FEC |
Fabio Estevam | 6442330 | 2009-05-27 03:41:39 +0000 | [diff] [blame] | 875 | bool "FEC ethernet controller (of ColdFire and some i.MX CPUs)" |
Amit Kucheria | bd011e8 | 2010-02-05 08:56:22 +0000 | [diff] [blame] | 876 | depends on M523x || M527x || M5272 || M528x || M520x || M532x || \ |
Uwe Kleine-König | 085e79e | 2011-01-17 09:52:18 +0100 | [diff] [blame] | 877 | IMX_HAVE_PLATFORM_FEC || MXS_HAVE_PLATFORM_FEC |
| 878 | default IMX_HAVE_PLATFORM_FEC || MXS_HAVE_PLATFORM_FEC if ARM |
Bryan Wu | e6b043d | 2010-03-31 02:10:44 +0000 | [diff] [blame] | 879 | select PHYLIB |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 880 | help |
| 881 | 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] | 882 | controller on some Motorola ColdFire and Freescale i.MX processors. |
Greg Ungerer | 2af6921 | 2005-09-12 11:18:10 +1000 | [diff] [blame] | 883 | |
Domen Puncer | 5d031e9 | 2007-10-26 18:07:49 +0200 | [diff] [blame] | 884 | config FEC_MPC52xx |
| 885 | tristate "MPC52xx FEC driver" |
Grant Likely | 847cdf4 | 2008-11-14 05:19:00 -0700 | [diff] [blame] | 886 | depends on PPC_MPC52xx && PPC_BESTCOMM |
Domen Puncer | 5d031e9 | 2007-10-26 18:07:49 +0200 | [diff] [blame] | 887 | select CRC32 |
| 888 | select PHYLIB |
Grant Likely | 847cdf4 | 2008-11-14 05:19:00 -0700 | [diff] [blame] | 889 | select PPC_BESTCOMM_FEC |
Domen Puncer | 5d031e9 | 2007-10-26 18:07:49 +0200 | [diff] [blame] | 890 | ---help--- |
| 891 | This option enables support for the MPC5200's on-chip |
| 892 | Fast Ethernet Controller |
Pavel Machek | 4737f09 | 2009-06-05 00:44:53 +0200 | [diff] [blame] | 893 | If compiled as module, it will be called fec_mpc52xx. |
Domen Puncer | 5d031e9 | 2007-10-26 18:07:49 +0200 | [diff] [blame] | 894 | |
| 895 | config FEC_MPC52xx_MDIO |
| 896 | bool "MPC52xx FEC MDIO bus driver" |
| 897 | depends on FEC_MPC52xx |
| 898 | default y |
| 899 | ---help--- |
| 900 | The MPC5200's FEC can connect to the Ethernet either with |
| 901 | an external MII PHY chip or 10 Mbps 7-wire interface |
| 902 | (Motorola? industry standard). |
| 903 | If your board uses an external PHY connected to FEC, enable this. |
| 904 | If not sure, enable. |
Pavel Machek | 4737f09 | 2009-06-05 00:44:53 +0200 | [diff] [blame] | 905 | If compiled as module, it will be called fec_mpc52xx_phy. |
Domen Puncer | 5d031e9 | 2007-10-26 18:07:49 +0200 | [diff] [blame] | 906 | |
Chris Snook | 452c1ce | 2008-09-14 19:56:10 -0500 | [diff] [blame] | 907 | config ATL2 |
| 908 | tristate "Atheros L2 Fast Ethernet support" |
| 909 | depends on PCI |
| 910 | select CRC32 |
| 911 | select MII |
| 912 | help |
| 913 | This driver supports the Atheros L2 fast ethernet adapter. |
| 914 | |
| 915 | To compile this driver as a module, choose M here. The module |
| 916 | will be called atl2. |
| 917 | |
John Linn | bb81b2d | 2009-08-20 02:52:16 -0700 | [diff] [blame] | 918 | config XILINX_EMACLITE |
| 919 | tristate "Xilinx 10/100 Ethernet Lite support" |
| 920 | depends on PPC32 || MICROBLAZE |
John Linn | 5cdaaa1 | 2010-02-15 21:51:00 -0800 | [diff] [blame] | 921 | select PHYLIB |
John Linn | bb81b2d | 2009-08-20 02:52:16 -0700 | [diff] [blame] | 922 | help |
| 923 | This driver supports the 10/100 Ethernet Lite from Xilinx. |
| 924 | |
Po-Yu Chuang | 8d77c03 | 2011-02-28 20:48:49 +0000 | [diff] [blame] | 925 | config FTMAC100 |
| 926 | tristate "Faraday FTMAC100 10/100 Ethernet support" |
| 927 | depends on ARM |
| 928 | select MII |
| 929 | help |
| 930 | This driver supports the FTMAC100 10/100 Ethernet controller |
| 931 | from Faraday. It is used on Faraday A320, Andes AG101 and some |
| 932 | other ARM/NDS32 SoC's. |
| 933 | |
John Crispin | 504d472 | 2011-05-06 00:10:01 +0200 | [diff] [blame] | 934 | config LANTIQ_ETOP |
| 935 | tristate "Lantiq SoC ETOP driver" |
| 936 | depends on SOC_TYPE_XWAY |
| 937 | help |
| 938 | Support for the MII0 inside the Lantiq SoC |
| 939 | |
| 940 | |
Pantelis Antoniou | 48257c4 | 2005-10-28 16:25:58 -0400 | [diff] [blame] | 941 | source "drivers/net/fs_enet/Kconfig" |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 942 | |
David Daney | d6aa60a | 2009-10-14 12:04:41 -0700 | [diff] [blame] | 943 | source "drivers/net/octeon/Kconfig" |
| 944 | |
Jan Engelhardt | d1c0a65 | 2007-06-13 12:48:53 -0700 | [diff] [blame] | 945 | endif # NET_ETHERNET |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 946 | |
| 947 | # |
| 948 | # Gigabit Ethernet |
| 949 | # |
| 950 | |
Jan Engelhardt | f30486d | 2007-05-10 22:52:56 -0700 | [diff] [blame] | 951 | menuconfig NETDEV_1000 |
| 952 | bool "Ethernet (1000 Mbit)" |
Randy Dunlap | cbcd2a4 | 2005-07-27 13:04:35 -0700 | [diff] [blame] | 953 | depends on !UML |
Jan Engelhardt | f30486d | 2007-05-10 22:52:56 -0700 | [diff] [blame] | 954 | default y |
Jan Engelhardt | 06bfb7e | 2007-08-18 12:56:21 +0200 | [diff] [blame] | 955 | ---help--- |
| 956 | Ethernet (also called IEEE 802.3 or ISO 8802-2) is the most common |
| 957 | type of Local Area Network (LAN) in universities and companies. |
| 958 | |
| 959 | Say Y here to get to see options for Gigabit Ethernet drivers. |
| 960 | This option alone does not add any kernel code. |
| 961 | Note that drivers supporting both 100 and 1000 MBit may be listed |
| 962 | under "Ethernet (10 or 100MBit)" instead. |
| 963 | |
| 964 | 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] | 965 | |
| 966 | if NETDEV_1000 |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 967 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 968 | config DL2K |
Komuro | df95082 | 2007-08-13 09:45:41 +0900 | [diff] [blame] | 969 | tristate "DL2000/TC902x-based Gigabit Ethernet support" |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 970 | depends on PCI |
| 971 | select CRC32 |
| 972 | help |
Komuro | df95082 | 2007-08-13 09:45:41 +0900 | [diff] [blame] | 973 | This driver supports DL2000/TC902x-based Gigabit ethernet cards, |
| 974 | which includes |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 975 | D-Link DGE-550T Gigabit Ethernet Adapter. |
| 976 | D-Link DL2000-based Gigabit Ethernet Adapter. |
Komuro | df95082 | 2007-08-13 09:45:41 +0900 | [diff] [blame] | 977 | Sundance/Tamarack TC902x Gigabit Ethernet Adapter. |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 978 | |
| 979 | To compile this driver as a module, choose M here: the |
| 980 | module will be called dl2k. |
| 981 | |
Stephen Hemminger | ab7a983 | 2008-01-01 09:27:58 -0800 | [diff] [blame] | 982 | config IP1000 |
| 983 | tristate "IP1000 Gigabit Ethernet support" |
| 984 | depends on PCI && EXPERIMENTAL |
| 985 | select MII |
| 986 | ---help--- |
| 987 | This driver supports IP1000 gigabit Ethernet cards. |
| 988 | |
| 989 | To compile this driver as a module, choose M here: the module |
| 990 | will be called ipg. This is recommended. |
| 991 | |
Lennert Buytenhek | 15d014d | 2005-11-11 18:23:13 +0100 | [diff] [blame] | 992 | source "drivers/net/ixp2000/Kconfig" |
| 993 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 994 | config HAMACHI |
| 995 | tristate "Packet Engines Hamachi GNIC-II support" |
| 996 | depends on PCI |
| 997 | select MII |
| 998 | help |
| 999 | If you have a Gigabit Ethernet card of this type, say Y and read |
| 1000 | the Ethernet-HOWTO, available from |
| 1001 | <http://www.tldp.org/docs.html#howto>. |
| 1002 | |
Adrian Bunk | 57ce45d | 2007-11-12 21:03:58 -0800 | [diff] [blame] | 1003 | 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] | 1004 | called hamachi. |
| 1005 | |
| 1006 | config YELLOWFIN |
| 1007 | tristate "Packet Engines Yellowfin Gigabit-NIC support (EXPERIMENTAL)" |
| 1008 | depends on PCI && EXPERIMENTAL |
| 1009 | select CRC32 |
| 1010 | ---help--- |
| 1011 | Say Y here if you have a Packet Engines G-NIC PCI Gigabit Ethernet |
| 1012 | adapter or the SYM53C885 Ethernet controller. The Gigabit adapter is |
| 1013 | used by the Beowulf Linux cluster project. See |
| 1014 | <http://cesdis.gsfc.nasa.gov/linux/drivers/yellowfin.html> for more |
| 1015 | information about this driver in particular and Beowulf in general. |
| 1016 | |
| 1017 | To compile this driver as a module, choose M here: the module |
| 1018 | will be called yellowfin. This is recommended. |
| 1019 | |
| 1020 | config R8169 |
| 1021 | tristate "Realtek 8169 gigabit ethernet support" |
| 1022 | depends on PCI |
françois romieu | bca03d5 | 2011-01-03 15:07:31 +0000 | [diff] [blame] | 1023 | select FW_LOADER |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1024 | select CRC32 |
Francois Romieu | b737249 | 2008-09-13 15:04:38 +0200 | [diff] [blame] | 1025 | select MII |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1026 | ---help--- |
| 1027 | Say Y here if you have a Realtek 8169 PCI Gigabit Ethernet adapter. |
| 1028 | |
| 1029 | To compile this driver as a module, choose M here: the module |
| 1030 | will be called r8169. This is recommended. |
| 1031 | |
Francois Romieu | 890e8d0 | 2005-07-30 13:08:43 +0200 | [diff] [blame] | 1032 | config SIS190 |
Francois Romieu | e797637 | 2005-09-03 00:57:51 +0200 | [diff] [blame] | 1033 | tristate "SiS190/SiS191 gigabit ethernet support" |
Adrian Bunk | e9985d5 | 2005-08-09 02:41:00 +0200 | [diff] [blame] | 1034 | depends on PCI |
| 1035 | select CRC32 |
| 1036 | select MII |
| 1037 | ---help--- |
Francois Romieu | e797637 | 2005-09-03 00:57:51 +0200 | [diff] [blame] | 1038 | Say Y here if you have a SiS 190 PCI Fast Ethernet adapter or |
| 1039 | a SiS 191 PCI Gigabit Ethernet adapter. Both are expected to |
| 1040 | appear in lan on motherboard designs which are based on SiS 965 |
| 1041 | and SiS 966 south bridge. |
Francois Romieu | 890e8d0 | 2005-07-30 13:08:43 +0200 | [diff] [blame] | 1042 | |
Adrian Bunk | e9985d5 | 2005-08-09 02:41:00 +0200 | [diff] [blame] | 1043 | To compile this driver as a module, choose M here: the module |
| 1044 | will be called sis190. This is recommended. |
Francois Romieu | 890e8d0 | 2005-07-30 13:08:43 +0200 | [diff] [blame] | 1045 | |
Stephen Hemminger | baef58b | 2005-05-12 20:14:36 -0400 | [diff] [blame] | 1046 | config SKGE |
stephen hemminger | 560040b | 2011-07-07 05:51:01 +0000 | [diff] [blame] | 1047 | tristate "Marvell Yukon Gigabit Ethernet support" |
Stephen Hemminger | 7a160c7 | 2006-02-13 15:48:08 -0800 | [diff] [blame] | 1048 | depends on PCI |
Stephen Hemminger | baef58b | 2005-05-12 20:14:36 -0400 | [diff] [blame] | 1049 | select CRC32 |
| 1050 | ---help--- |
| 1051 | This driver support the Marvell Yukon or SysKonnect SK-98xx/SK-95xx |
| 1052 | and related Gigabit Ethernet adapters. It is a new smaller driver |
Stephen Hemminger | 46a60f2 | 2005-09-09 12:54:56 -0700 | [diff] [blame] | 1053 | with better performance and more complete ethtool support. |
Stephen Hemminger | baef58b | 2005-05-12 20:14:36 -0400 | [diff] [blame] | 1054 | |
| 1055 | It does not support the link failover and network management |
Stephen Hemminger | 5ad887f | 2007-09-15 19:35:14 -0400 | [diff] [blame] | 1056 | features that "portable" vendor supplied sk98lin driver does. |
Stephen Hemminger | cd28ab6 | 2005-08-16 16:36:49 -0700 | [diff] [blame] | 1057 | |
Daniel Drake | c6f0d75 | 2006-01-21 19:35:34 +0000 | [diff] [blame] | 1058 | This driver supports adapters based on the original Yukon chipset: |
| 1059 | Marvell 88E8001, Belkin F5D5005, CNet GigaCard, DLink DGE-530T, |
| 1060 | Linksys EG1032/EG1064, 3Com 3C940/3C940B, SysKonnect SK-9871/9872. |
| 1061 | |
| 1062 | It does not support the newer Yukon2 chipset: a separate driver, |
stephen hemminger | 560040b | 2011-07-07 05:51:01 +0000 | [diff] [blame] | 1063 | sky2, is provided for these adapters. |
Daniel Drake | c6f0d75 | 2006-01-21 19:35:34 +0000 | [diff] [blame] | 1064 | |
| 1065 | To compile this driver as a module, choose M here: the module |
| 1066 | will be called skge. This is recommended. |
Stephen Hemminger | cd28ab6 | 2005-08-16 16:36:49 -0700 | [diff] [blame] | 1067 | |
Stephen Hemminger | 678aa1f | 2007-10-16 12:15:54 -0700 | [diff] [blame] | 1068 | config SKGE_DEBUG |
Philippe De Muyter | e85eb11 | 2010-11-11 12:31:21 +0000 | [diff] [blame] | 1069 | bool "Debugging interface" |
| 1070 | depends on SKGE && DEBUG_FS |
| 1071 | help |
| 1072 | This option adds the ability to dump driver state for debugging. |
| 1073 | The file /sys/kernel/debug/skge/ethX displays the state of the internal |
| 1074 | transmit and receive rings. |
Stephen Hemminger | 678aa1f | 2007-10-16 12:15:54 -0700 | [diff] [blame] | 1075 | |
Philippe De Muyter | e85eb11 | 2010-11-11 12:31:21 +0000 | [diff] [blame] | 1076 | If unsure, say N. |
Stephen Hemminger | 678aa1f | 2007-10-16 12:15:54 -0700 | [diff] [blame] | 1077 | |
stephen hemminger | 57d6fa3 | 2011-07-06 19:00:07 +0000 | [diff] [blame] | 1078 | config SKGE_GENESIS |
| 1079 | bool "Support for older SysKonnect Genesis boards" |
| 1080 | depends on SKGE |
| 1081 | help |
| 1082 | This enables support for the older and uncommon SysKonnect Genesis |
| 1083 | chips, which support MII via an external transceiver, instead of |
| 1084 | an internal one. Disabling this option will save some memory |
| 1085 | by making code smaller. If unsure say Y. |
| 1086 | |
Stephen Hemminger | cd28ab6 | 2005-08-16 16:36:49 -0700 | [diff] [blame] | 1087 | config SKY2 |
stephen hemminger | 560040b | 2011-07-07 05:51:01 +0000 | [diff] [blame] | 1088 | tristate "Marvell Yukon 2 support" |
Stephen Hemminger | f479b32 | 2006-10-27 10:22:10 -0700 | [diff] [blame] | 1089 | depends on PCI |
Stephen Hemminger | cd28ab6 | 2005-08-16 16:36:49 -0700 | [diff] [blame] | 1090 | select CRC32 |
| 1091 | ---help--- |
Matt LaPlante | cab0089 | 2006-10-03 22:36:44 +0200 | [diff] [blame] | 1092 | This driver supports Gigabit Ethernet adapters based on the |
Daniel Drake | c6f0d75 | 2006-01-21 19:35:34 +0000 | [diff] [blame] | 1093 | Marvell Yukon 2 chipset: |
| 1094 | Marvell 88E8021/88E8022/88E8035/88E8036/88E8038/88E8050/88E8052/ |
| 1095 | 88E8053/88E8055/88E8061/88E8062, SysKonnect SK-9E21D/SK-9S21 |
| 1096 | |
Stephen Hemminger | f479b32 | 2006-10-27 10:22:10 -0700 | [diff] [blame] | 1097 | There is companion driver for the older Marvell Yukon and |
stephen hemminger | 560040b | 2011-07-07 05:51:01 +0000 | [diff] [blame] | 1098 | SysKonnect Genesis based adapters: skge. |
Stephen Hemminger | cd28ab6 | 2005-08-16 16:36:49 -0700 | [diff] [blame] | 1099 | |
| 1100 | To compile this driver as a module, choose M here: the module |
| 1101 | will be called sky2. This is recommended. |
| 1102 | |
Stephen Hemminger | 3cf2675 | 2007-07-09 15:33:35 -0700 | [diff] [blame] | 1103 | config SKY2_DEBUG |
Philippe De Muyter | e85eb11 | 2010-11-11 12:31:21 +0000 | [diff] [blame] | 1104 | bool "Debugging interface" |
| 1105 | depends on SKY2 && DEBUG_FS |
| 1106 | help |
| 1107 | This option adds the ability to dump driver state for debugging. |
| 1108 | The file /sys/kernel/debug/sky2/ethX displays the state of the internal |
| 1109 | transmit and receive rings. |
Daniel Drake | c6f0d75 | 2006-01-21 19:35:34 +0000 | [diff] [blame] | 1110 | |
Philippe De Muyter | e85eb11 | 2010-11-11 12:31:21 +0000 | [diff] [blame] | 1111 | If unsure, say N. |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1112 | |
| 1113 | config VIA_VELOCITY |
| 1114 | tristate "VIA Velocity support" |
Yoichi Yuasa | 7381553 | 2007-05-24 16:12:27 +0900 | [diff] [blame] | 1115 | depends on PCI |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1116 | select CRC32 |
| 1117 | select CRC_CCITT |
| 1118 | select MII |
| 1119 | help |
| 1120 | If you have a VIA "Velocity" based network card say Y here. |
| 1121 | |
| 1122 | To compile this driver as a module, choose M here. The module |
| 1123 | will be called via-velocity. |
| 1124 | |
Jens Osterkamp | aaec0fa | 2005-09-05 15:19:29 -0700 | [diff] [blame] | 1125 | config SPIDER_NET |
| 1126 | tristate "Spider Gigabit Ethernet driver" |
Kou Ishizaki | 3342cf0e | 2007-02-20 16:36:14 -0600 | [diff] [blame] | 1127 | depends on PCI && (PPC_IBM_CELL_BLADE || PPC_CELLEB) |
Christoph Hellwig | 9b15879 | 2006-03-15 11:30:44 +0100 | [diff] [blame] | 1128 | select FW_LOADER |
Jens Osterkamp | aaec0fa | 2005-09-05 15:19:29 -0700 | [diff] [blame] | 1129 | help |
| 1130 | This driver supports the Gigabit Ethernet chips present on the |
| 1131 | Cell Processor-Based Blades from IBM. |
| 1132 | |
Zang Roy-r61911 | 5e123b8 | 2006-11-08 19:49:13 -0800 | [diff] [blame] | 1133 | config TSI108_ETH |
Philippe De Muyter | dd68ad2 | 2010-11-13 08:43:29 +0000 | [diff] [blame] | 1134 | tristate "Tundra TSI108 gigabit Ethernet support" |
| 1135 | depends on TSI108_BRIDGE |
| 1136 | help |
| 1137 | This driver supports Tundra TSI108 gigabit Ethernet ports. |
| 1138 | To compile this driver as a module, choose M here: the module |
| 1139 | will be called tsi108_eth. |
Zang Roy-r61911 | 5e123b8 | 2006-11-08 19:49:13 -0800 | [diff] [blame] | 1140 | |
Masakazu Mokuno | 02c1889 | 2007-07-05 20:11:16 +0900 | [diff] [blame] | 1141 | config GELIC_NET |
| 1142 | tristate "PS3 Gigabit Ethernet driver" |
| 1143 | depends on PPC_PS3 |
Geoff Levand | 1d32e21 | 2008-04-10 07:01:53 +1000 | [diff] [blame] | 1144 | select PS3_SYS_MANAGER |
Masakazu Mokuno | 02c1889 | 2007-07-05 20:11:16 +0900 | [diff] [blame] | 1145 | help |
| 1146 | This driver supports the network device on the PS3 game |
| 1147 | console. This driver has built-in support for Ethernet. |
| 1148 | |
| 1149 | To compile this driver as a module, choose M here: the |
| 1150 | module will be called ps3_gelic. |
| 1151 | |
Masakazu Mokuno | 09dde54 | 2008-02-07 19:58:57 +0900 | [diff] [blame] | 1152 | config GELIC_WIRELESS |
John W. Linville | 97ed839 | 2008-03-06 13:08:09 -0500 | [diff] [blame] | 1153 | bool "PS3 Wireless support" |
Benjamin Herrenschmidt | 92c6f8d | 2009-12-18 11:19:32 -0800 | [diff] [blame] | 1154 | depends on WLAN |
John W. Linville | 97ed839 | 2008-03-06 13:08:09 -0500 | [diff] [blame] | 1155 | depends on GELIC_NET |
| 1156 | select WIRELESS_EXT |
| 1157 | help |
| 1158 | This option adds the support for the wireless feature of PS3. |
| 1159 | If you have the wireless-less model of PS3 or have no plan to |
| 1160 | use wireless feature, disabling this option saves memory. As |
| 1161 | the driver automatically distinguishes the models, you can |
| 1162 | safely enable this option even if you have a wireless-less model. |
Masakazu Mokuno | 09dde54 | 2008-02-07 19:58:57 +0900 | [diff] [blame] | 1163 | |
Andy Fleming | 1577ece | 2009-02-04 16:42:12 -0800 | [diff] [blame] | 1164 | config FSL_PQ_MDIO |
| 1165 | tristate "Freescale PQ MDIO" |
| 1166 | depends on FSL_SOC |
| 1167 | select PHYLIB |
| 1168 | help |
| 1169 | This driver supports the MDIO bus used by the gianfar and UCC drivers. |
| 1170 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1171 | config GIANFAR |
| 1172 | tristate "Gianfar Ethernet" |
Kumar Gala | 3a83156 | 2008-01-28 10:24:30 -0600 | [diff] [blame] | 1173 | depends on FSL_SOC |
Andy Fleming | 1577ece | 2009-02-04 16:42:12 -0800 | [diff] [blame] | 1174 | select FSL_PQ_MDIO |
Andy Fleming | bb40dcb | 2005-09-23 22:54:21 -0400 | [diff] [blame] | 1175 | select PHYLIB |
Dave Jiang | bf41a7c | 2007-04-12 10:57:06 -0700 | [diff] [blame] | 1176 | select CRC32 |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1177 | help |
Jon Loeliger | ef82a30 | 2006-06-17 17:52:55 -0500 | [diff] [blame] | 1178 | This driver supports the Gigabit TSEC on the MPC83xx, MPC85xx, |
| 1179 | and MPC86xx family of chips, and the FEC on the 8540. |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1180 | |
Li Yang | ce973b1 | 2006-08-14 23:00:11 -0700 | [diff] [blame] | 1181 | config UCC_GETH |
Timur Tabi | 7d776cb | 2007-03-12 15:40:27 -0500 | [diff] [blame] | 1182 | tristate "Freescale QE Gigabit Ethernet" |
| 1183 | depends on QUICC_ENGINE |
Andy Fleming | 1577ece | 2009-02-04 16:42:12 -0800 | [diff] [blame] | 1184 | select FSL_PQ_MDIO |
Jan Altenberg | 296baae | 2007-06-01 00:46:29 -0700 | [diff] [blame] | 1185 | select PHYLIB |
Li Yang | ce973b1 | 2006-08-14 23:00:11 -0700 | [diff] [blame] | 1186 | help |
Timur Tabi | 7d776cb | 2007-03-12 15:40:27 -0500 | [diff] [blame] | 1187 | This driver supports the Gigabit Ethernet mode of the QUICC Engine, |
| 1188 | which is available on some Freescale SOCs. |
Li Yang | ce973b1 | 2006-08-14 23:00:11 -0700 | [diff] [blame] | 1189 | |
Michael Reiss | d5b9049 | 2007-04-13 01:26:19 -0500 | [diff] [blame] | 1190 | config UGETH_TX_ON_DEMAND |
| 1191 | bool "Transmit on Demand support" |
Li Yang | ce973b1 | 2006-08-14 23:00:11 -0700 | [diff] [blame] | 1192 | depends on UCC_GETH |
| 1193 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1194 | config MV643XX_ETH |
Lennert Buytenhek | 9c1bbdf | 2007-10-19 04:11:03 +0200 | [diff] [blame] | 1195 | tristate "Marvell Discovery (643XX) and Orion ethernet support" |
Ben Hutchings | 10ccff6 | 2010-10-03 15:42:05 +0000 | [diff] [blame] | 1196 | depends on (MV64X60 || PPC32 || PLAT_ORION) && INET |
Lennert Buytenhek | ab307a3 | 2009-02-24 15:41:32 +0000 | [diff] [blame] | 1197 | select INET_LRO |
Lennert Buytenhek | ed94493 | 2008-08-26 13:34:19 +0200 | [diff] [blame] | 1198 | select PHYLIB |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1199 | help |
Lennert Buytenhek | 9c1bbdf | 2007-10-19 04:11:03 +0200 | [diff] [blame] | 1200 | This driver supports the gigabit ethernet MACs in the |
| 1201 | Marvell Discovery PPC/MIPS chipset family (MV643XX) and |
| 1202 | in the Marvell Orion ARM SoC family. |
| 1203 | |
| 1204 | Some boards that use the Discovery chipset are the Momenco |
| 1205 | Ocelot C and Jaguar ATX and Pegasos II. |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1206 | |
Grant Likely | 9274498 | 2009-04-25 12:53:39 +0000 | [diff] [blame] | 1207 | config XILINX_LL_TEMAC |
| 1208 | tristate "Xilinx LL TEMAC (LocalLink Tri-mode Ethernet MAC) driver" |
John Linn | e44171f | 2010-04-08 07:08:02 +0000 | [diff] [blame] | 1209 | depends on PPC || MICROBLAZE |
Grant Likely | 9274498 | 2009-04-25 12:53:39 +0000 | [diff] [blame] | 1210 | select PHYLIB |
Grant Likely | 9274498 | 2009-04-25 12:53:39 +0000 | [diff] [blame] | 1211 | help |
| 1212 | This driver supports the Xilinx 10/100/1000 LocalLink TEMAC |
| 1213 | core used in Xilinx Spartan and Virtex FPGAs |
| 1214 | |
Jay Cliburn | f3cc28c | 2007-02-08 10:42:37 -0500 | [diff] [blame] | 1215 | config ATL1 |
Jay Cliburn | a6d1f36 | 2008-09-27 04:17:22 +0000 | [diff] [blame] | 1216 | tristate "Atheros/Attansic L1 Gigabit Ethernet support" |
| 1217 | depends on PCI |
Jay Cliburn | f3cc28c | 2007-02-08 10:42:37 -0500 | [diff] [blame] | 1218 | select CRC32 |
| 1219 | select MII |
| 1220 | help |
Jay Cliburn | a6d1f36 | 2008-09-27 04:17:22 +0000 | [diff] [blame] | 1221 | This driver supports the Atheros/Attansic L1 gigabit ethernet |
| 1222 | adapter. |
Jay Cliburn | f3cc28c | 2007-02-08 10:42:37 -0500 | [diff] [blame] | 1223 | |
| 1224 | To compile this driver as a module, choose M here. The module |
| 1225 | will be called atl1. |
| 1226 | |
Jie Yang | a6a5325 | 2008-07-18 11:37:13 +0800 | [diff] [blame] | 1227 | config ATL1E |
| 1228 | tristate "Atheros L1E Gigabit Ethernet support (EXPERIMENTAL)" |
| 1229 | depends on PCI && EXPERIMENTAL |
| 1230 | select CRC32 |
| 1231 | select MII |
| 1232 | help |
| 1233 | This driver supports the Atheros L1E gigabit ethernet adapter. |
| 1234 | |
| 1235 | To compile this driver as a module, choose M here. The module |
| 1236 | will be called atl1e. |
| 1237 | |
Jie Yang | 43250dd | 2009-02-18 17:24:15 -0800 | [diff] [blame] | 1238 | config ATL1C |
| 1239 | tristate "Atheros L1C Gigabit Ethernet support (EXPERIMENTAL)" |
| 1240 | depends on PCI && EXPERIMENTAL |
| 1241 | select CRC32 |
| 1242 | select MII |
| 1243 | help |
| 1244 | This driver supports the Atheros L1C gigabit ethernet adapter. |
| 1245 | |
| 1246 | To compile this driver as a module, choose M here. The module |
| 1247 | will be called atl1c. |
| 1248 | |
Guo-Fu Tseng | 9525223 | 2008-09-16 01:00:11 +0800 | [diff] [blame] | 1249 | config JME |
| 1250 | tristate "JMicron(R) PCI-Express Gigabit Ethernet support" |
| 1251 | depends on PCI |
| 1252 | select CRC32 |
| 1253 | select MII |
| 1254 | ---help--- |
| 1255 | This driver supports the PCI-Express gigabit ethernet adapters |
| 1256 | based on JMicron JMC250 chipset. |
| 1257 | |
| 1258 | To compile this driver as a module, choose M here. The module |
| 1259 | will be called jme. |
| 1260 | |
Oskar Schirmer | 8b0215aa | 2009-06-10 12:58:48 -0700 | [diff] [blame] | 1261 | config S6GMAC |
| 1262 | tristate "S6105 GMAC ethernet support" |
| 1263 | depends on XTENSA_VARIANT_S6000 |
| 1264 | select PHYLIB |
| 1265 | help |
| 1266 | This driver supports the on chip ethernet device on the |
| 1267 | S6105 xtensa processor. |
| 1268 | |
| 1269 | To compile this driver as a module, choose M here. The module |
| 1270 | will be called s6gmac. |
| 1271 | |
Masayuki Ohtake | 77555ee | 2010-09-21 01:44:11 +0000 | [diff] [blame] | 1272 | config PCH_GBE |
Tomoya | b0e6baf | 2011-05-09 01:19:37 +0000 | [diff] [blame] | 1273 | tristate "Intel EG20T PCH / OKI SEMICONDUCTOR ML7223 IOH GbE" |
Masayuki Ohtake | 77555ee | 2010-09-21 01:44:11 +0000 | [diff] [blame] | 1274 | depends on PCI |
David S. Miller | 116c1ea | 2010-10-28 10:15:43 -0700 | [diff] [blame] | 1275 | select MII |
Masayuki Ohtake | 77555ee | 2010-09-21 01:44:11 +0000 | [diff] [blame] | 1276 | ---help--- |
Toshiharu Okada | a1dcfcb | 2010-11-21 19:58:37 +0000 | [diff] [blame] | 1277 | This is a gigabit ethernet driver for EG20T PCH. |
| 1278 | 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] | 1279 | general embedded platform. |
Toshiharu Okada | a1dcfcb | 2010-11-21 19:58:37 +0000 | [diff] [blame] | 1280 | EG20T PCH has Gigabit Ethernet interface. |
Masayuki Ohtake | 77555ee | 2010-09-21 01:44:11 +0000 | [diff] [blame] | 1281 | Using this interface, it is able to access system devices connected |
| 1282 | to Gigabit Ethernet. |
| 1283 | This driver enables Gigabit Ethernet function. |
| 1284 | |
Tomoya | b0e6baf | 2011-05-09 01:19:37 +0000 | [diff] [blame] | 1285 | This driver also can be used for OKI SEMICONDUCTOR IOH(Input/ |
| 1286 | Output Hub), ML7223. |
| 1287 | ML7223 IOH is for MP(Media Phone) use. |
| 1288 | ML7223 is companion chip for Intel Atom E6xx series. |
| 1289 | ML7223 is completely compatible for Intel EG20T PCH. |
| 1290 | |
Po-Yu Chuang | 69785b7 | 2011-06-08 23:32:48 +0000 | [diff] [blame] | 1291 | config FTGMAC100 |
| 1292 | tristate "Faraday FTGMAC100 Gigabit Ethernet support" |
| 1293 | depends on ARM |
| 1294 | select PHYLIB |
| 1295 | help |
| 1296 | This driver supports the FTGMAC100 Gigabit Ethernet controller |
| 1297 | from Faraday. It is used on Faraday A369, Andes AG102 and some |
| 1298 | other ARM/NDS32 SoC's. |
| 1299 | |
Jan Engelhardt | f30486d | 2007-05-10 22:52:56 -0700 | [diff] [blame] | 1300 | endif # NETDEV_1000 |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1301 | |
| 1302 | # |
| 1303 | # 10 Gigabit Ethernet |
| 1304 | # |
| 1305 | |
Jan Engelhardt | f30486d | 2007-05-10 22:52:56 -0700 | [diff] [blame] | 1306 | menuconfig NETDEV_10000 |
| 1307 | bool "Ethernet (10000 Mbit)" |
Randy Dunlap | cbcd2a4 | 2005-07-27 13:04:35 -0700 | [diff] [blame] | 1308 | depends on !UML |
Jan Engelhardt | f30486d | 2007-05-10 22:52:56 -0700 | [diff] [blame] | 1309 | default y |
Jan Engelhardt | 06bfb7e | 2007-08-18 12:56:21 +0200 | [diff] [blame] | 1310 | ---help--- |
| 1311 | Say Y here to get to see options for 10 Gigabit Ethernet drivers. |
| 1312 | This option alone does not add any kernel code. |
| 1313 | |
| 1314 | 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] | 1315 | |
| 1316 | if NETDEV_10000 |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1317 | |
Ben Hutchings | 1b1c2e9 | 2009-04-29 08:04:46 +0000 | [diff] [blame] | 1318 | config MDIO |
| 1319 | tristate |
| 1320 | |
Jan Engelhardt | f30486d | 2007-05-10 22:52:56 -0700 | [diff] [blame] | 1321 | endif # NETDEV_10000 |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1322 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1323 | source "drivers/net/tokenring/Kconfig" |
| 1324 | |
| 1325 | source "drivers/net/wireless/Kconfig" |
| 1326 | |
Inaky Perez-Gonzalez | 143ee2d | 2008-12-23 16:18:48 -0800 | [diff] [blame] | 1327 | source "drivers/net/wimax/Kconfig" |
| 1328 | |
Jeff Garzik | 5b2fc49 | 2007-05-09 21:31:55 -0400 | [diff] [blame] | 1329 | source "drivers/net/usb/Kconfig" |
| 1330 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1331 | source "drivers/net/pcmcia/Kconfig" |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1332 | |
| 1333 | source "drivers/net/wan/Kconfig" |
| 1334 | |
| 1335 | source "drivers/atm/Kconfig" |
| 1336 | |
Sergey Lapin | 8459464 | 2009-06-08 12:18:51 +0000 | [diff] [blame] | 1337 | source "drivers/ieee802154/Kconfig" |
| 1338 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1339 | source "drivers/s390/net/Kconfig" |
| 1340 | |
Sjur Braendeland | 9b27105 | 2010-03-30 13:56:30 +0000 | [diff] [blame] | 1341 | source "drivers/net/caif/Kconfig" |
| 1342 | |
Chris Metcalf | e5a0693 | 2010-11-01 17:00:37 -0400 | [diff] [blame] | 1343 | config TILE_NET |
| 1344 | tristate "Tilera GBE/XGBE network driver support" |
| 1345 | depends on TILE |
| 1346 | default y |
| 1347 | select CRC32 |
| 1348 | help |
| 1349 | This is a standard Linux network device driver for the |
| 1350 | on-chip Tilera Gigabit Ethernet and XAUI interfaces. |
| 1351 | |
| 1352 | To compile this driver as a module, choose M here: the module |
| 1353 | will be called tile_net. |
| 1354 | |
Jeremy Fitzhardinge | 0d16021 | 2007-07-17 18:37:06 -0700 | [diff] [blame] | 1355 | config XEN_NETDEV_FRONTEND |
| 1356 | tristate "Xen network device frontend driver" |
| 1357 | depends on XEN |
Jeremy Fitzhardinge | 7003087 | 2009-03-27 16:28:34 -0700 | [diff] [blame] | 1358 | select XEN_XENBUS_FRONTEND |
Jeremy Fitzhardinge | 0d16021 | 2007-07-17 18:37:06 -0700 | [diff] [blame] | 1359 | default y |
| 1360 | help |
Ian Campbell | f942dc2 | 2011-03-15 00:06:18 +0000 | [diff] [blame] | 1361 | This driver provides support for Xen paravirtual network |
| 1362 | devices exported by a Xen network driver domain (often |
| 1363 | domain 0). |
| 1364 | |
| 1365 | The corresponding Linux backend driver is enabled by the |
| 1366 | CONFIG_XEN_NETDEV_BACKEND option. |
| 1367 | |
| 1368 | If you are compiling a kernel for use as Xen guest, you |
| 1369 | should say Y here. To compile this driver as a module, chose |
| 1370 | M here: the module will be called xen-netfront. |
| 1371 | |
| 1372 | config XEN_NETDEV_BACKEND |
| 1373 | tristate "Xen backend network device" |
| 1374 | depends on XEN_BACKEND |
| 1375 | help |
| 1376 | This driver allows the kernel to act as a Xen network driver |
| 1377 | domain which exports paravirtual network devices to other |
| 1378 | Xen domains. These devices can be accessed by any operating |
| 1379 | system that implements a compatible front end. |
| 1380 | |
| 1381 | The corresponding Linux frontend driver is enabled by the |
| 1382 | CONFIG_XEN_NETDEV_FRONTEND configuration option. |
| 1383 | |
| 1384 | The backend driver presents a standard network device |
| 1385 | endpoint for each paravirtual network device to the driver |
| 1386 | domain network stack. These can then be bridged or routed |
| 1387 | etc in order to provide full network connectivity. |
| 1388 | |
| 1389 | If you are compiling a kernel to run in a Xen network driver |
| 1390 | domain (often this is domain 0) you should say Y here. To |
| 1391 | compile this driver as a module, chose M here: the module |
| 1392 | will be called xen-netback. |
Jeremy Fitzhardinge | 0d16021 | 2007-07-17 18:37:06 -0700 | [diff] [blame] | 1393 | |
Matt Porter | f89efd5 | 2005-09-09 12:10:10 -0700 | [diff] [blame] | 1394 | config RIONET |
| 1395 | tristate "RapidIO Ethernet over messaging driver support" |
Randy Dunlap | a81c52a | 2006-11-01 21:18:58 -0800 | [diff] [blame] | 1396 | depends on RAPIDIO |
Matt Porter | f89efd5 | 2005-09-09 12:10:10 -0700 | [diff] [blame] | 1397 | |
| 1398 | config RIONET_TX_SIZE |
| 1399 | int "Number of outbound queue entries" |
| 1400 | depends on RIONET |
| 1401 | default "128" |
| 1402 | |
| 1403 | config RIONET_RX_SIZE |
| 1404 | int "Number of inbound queue entries" |
| 1405 | depends on RIONET |
| 1406 | default "128" |
| 1407 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1408 | config FDDI |
Dave Jones | eb56092 | 2008-12-27 20:43:48 -0800 | [diff] [blame] | 1409 | tristate "FDDI driver support" |
Maciej W. Rozycki | e89a2cf | 2007-02-05 16:28:27 -0800 | [diff] [blame] | 1410 | depends on (PCI || EISA || TC) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1411 | help |
| 1412 | Fiber Distributed Data Interface is a high speed local area network |
| 1413 | design; essentially a replacement for high speed Ethernet. FDDI can |
| 1414 | run over copper or fiber. If you are connected to such a network and |
| 1415 | want a driver for the FDDI card in your computer, say Y here (and |
| 1416 | then also Y to the driver for your FDDI card, below). Most people |
| 1417 | will say N. |
| 1418 | |
| 1419 | config DEFXX |
Maciej W. Rozycki | e89a2cf | 2007-02-05 16:28:27 -0800 | [diff] [blame] | 1420 | tristate "Digital DEFTA/DEFEA/DEFPA adapter support" |
| 1421 | depends on FDDI && (PCI || EISA || TC) |
| 1422 | ---help--- |
| 1423 | This is support for the DIGITAL series of TURBOchannel (DEFTA), |
| 1424 | EISA (DEFEA) and PCI (DEFPA) controllers which can connect you |
| 1425 | to a local FDDI network. |
| 1426 | |
| 1427 | To compile this driver as a module, choose M here: the module |
| 1428 | will be called defxx. If unsure, say N. |
| 1429 | |
| 1430 | config DEFXX_MMIO |
| 1431 | bool |
| 1432 | prompt "Use MMIO instead of PIO" if PCI || EISA |
| 1433 | depends on DEFXX |
| 1434 | default n if PCI || EISA |
| 1435 | default y |
| 1436 | ---help--- |
| 1437 | This instructs the driver to use EISA or PCI memory-mapped I/O |
| 1438 | (MMIO) as appropriate instead of programmed I/O ports (PIO). |
| 1439 | Enabling this gives an improvement in processing time in parts |
| 1440 | of the driver, but it may cause problems with EISA (DEFEA) |
| 1441 | adapters. TURBOchannel does not have the concept of I/O ports, |
| 1442 | so MMIO is always used for these (DEFTA) adapters. |
| 1443 | |
| 1444 | If unsure, say N. |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1445 | |
| 1446 | config SKFP |
| 1447 | tristate "SysKonnect FDDI PCI support" |
| 1448 | depends on FDDI && PCI |
Akinobu Mita | bc63eb9 | 2006-12-19 13:09:08 -0800 | [diff] [blame] | 1449 | select BITREVERSE |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1450 | ---help--- |
| 1451 | Say Y here if you have a SysKonnect FDDI PCI adapter. |
| 1452 | The following adapters are supported by this driver: |
| 1453 | - SK-5521 (SK-NET FDDI-UP) |
| 1454 | - SK-5522 (SK-NET FDDI-UP DAS) |
| 1455 | - SK-5541 (SK-NET FDDI-FP) |
| 1456 | - SK-5543 (SK-NET FDDI-LP) |
| 1457 | - SK-5544 (SK-NET FDDI-LP DAS) |
| 1458 | - SK-5821 (SK-NET FDDI-UP64) |
| 1459 | - SK-5822 (SK-NET FDDI-UP64 DAS) |
| 1460 | - SK-5841 (SK-NET FDDI-FP64) |
| 1461 | - SK-5843 (SK-NET FDDI-LP64) |
| 1462 | - SK-5844 (SK-NET FDDI-LP64 DAS) |
| 1463 | - Netelligent 100 FDDI DAS Fibre SC |
| 1464 | - Netelligent 100 FDDI SAS Fibre SC |
| 1465 | - Netelligent 100 FDDI DAS UTP |
| 1466 | - Netelligent 100 FDDI SAS UTP |
| 1467 | - Netelligent 100 FDDI SAS Fibre MIC |
| 1468 | |
| 1469 | Read <file:Documentation/networking/skfp.txt> for information about |
| 1470 | the driver. |
| 1471 | |
| 1472 | Questions concerning this driver can be addressed to: |
| 1473 | <linux@syskonnect.de> |
| 1474 | |
| 1475 | To compile this driver as a module, choose M here: the module |
| 1476 | will be called skfp. This is recommended. |
| 1477 | |
| 1478 | config HIPPI |
| 1479 | bool "HIPPI driver support (EXPERIMENTAL)" |
Randy Dunlap | cbcd2a4 | 2005-07-27 13:04:35 -0700 | [diff] [blame] | 1480 | depends on EXPERIMENTAL && INET && PCI |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1481 | help |
| 1482 | HIgh Performance Parallel Interface (HIPPI) is a 800Mbit/sec and |
| 1483 | 1600Mbit/sec dual-simplex switched or point-to-point network. HIPPI |
| 1484 | can run over copper (25m) or fiber (300m on multi-mode or 10km on |
| 1485 | single-mode). HIPPI networks are commonly used for clusters and to |
| 1486 | connect to super computers. If you are connected to a HIPPI network |
| 1487 | and have a HIPPI network card in your computer that you want to use |
| 1488 | under Linux, say Y here (you must also remember to enable the driver |
| 1489 | for your HIPPI card below). Most people will say N here. |
| 1490 | |
| 1491 | config ROADRUNNER |
| 1492 | tristate "Essential RoadRunner HIPPI PCI adapter support (EXPERIMENTAL)" |
| 1493 | depends on HIPPI && PCI |
| 1494 | help |
| 1495 | Say Y here if this is your PCI HIPPI network card. |
| 1496 | |
| 1497 | To compile this driver as a module, choose M here: the module |
| 1498 | will be called rrunner. If unsure, say N. |
| 1499 | |
| 1500 | config ROADRUNNER_LARGE_RINGS |
| 1501 | bool "Use large TX/RX rings (EXPERIMENTAL)" |
| 1502 | depends on ROADRUNNER |
| 1503 | help |
| 1504 | If you say Y here, the RoadRunner driver will preallocate up to 2 MB |
| 1505 | of additional memory to allow for fastest operation, both for |
| 1506 | transmitting and receiving. This memory cannot be used by any other |
| 1507 | kernel code or by user space programs. Say Y here only if you have |
| 1508 | the memory. |
| 1509 | |
| 1510 | config PLIP |
| 1511 | tristate "PLIP (parallel port) support" |
Randy Dunlap | cbcd2a4 | 2005-07-27 13:04:35 -0700 | [diff] [blame] | 1512 | depends on PARPORT |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1513 | ---help--- |
| 1514 | PLIP (Parallel Line Internet Protocol) is used to create a |
| 1515 | reasonably fast mini network consisting of two (or, rarely, more) |
| 1516 | local machines. A PLIP link from a Linux box is a popular means to |
| 1517 | install a Linux distribution on a machine which doesn't have a |
| 1518 | CD-ROM drive (a minimal system has to be transferred with floppies |
| 1519 | first). The kernels on both machines need to have this PLIP option |
| 1520 | enabled for this to work. |
| 1521 | |
| 1522 | The PLIP driver has two modes, mode 0 and mode 1. The parallel |
| 1523 | ports (the connectors at the computers with 25 holes) are connected |
| 1524 | with "null printer" or "Turbo Laplink" cables which can transmit 4 |
| 1525 | bits at a time (mode 0) or with special PLIP cables, to be used on |
| 1526 | bidirectional parallel ports only, which can transmit 8 bits at a |
| 1527 | time (mode 1); you can find the wiring of these cables in |
| 1528 | <file:Documentation/networking/PLIP.txt>. The cables can be up to |
| 1529 | 15m long. Mode 0 works also if one of the machines runs DOS/Windows |
| 1530 | and has some PLIP software installed, e.g. the Crynwr PLIP packet |
| 1531 | driver (<http://oak.oakland.edu/simtel.net/msdos/pktdrvr-pre.html>) |
| 1532 | and winsock or NCSA's telnet. |
| 1533 | |
| 1534 | If you want to use PLIP, say Y and read the PLIP mini-HOWTO as well |
| 1535 | as the NET-3-HOWTO, both available from |
| 1536 | <http://www.tldp.org/docs.html#howto>. Note that the PLIP |
| 1537 | protocol has been changed and this PLIP driver won't work together |
| 1538 | with the PLIP support in Linux versions 1.0.x. This option enlarges |
| 1539 | your kernel by about 8 KB. |
| 1540 | |
Adrian Bunk | 57ce45d | 2007-11-12 21:03:58 -0800 | [diff] [blame] | 1541 | To compile this driver as a module, choose M here. The module |
| 1542 | will be called plip. If unsure, say Y or M, in case you buy |
| 1543 | a laptop later. |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1544 | |
| 1545 | config PPP |
| 1546 | tristate "PPP (point-to-point protocol) support" |
Ralf Baechle | b6e37e5 | 2006-07-14 12:15:40 +0100 | [diff] [blame] | 1547 | select SLHC |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1548 | ---help--- |
| 1549 | PPP (Point to Point Protocol) is a newer and better SLIP. It serves |
| 1550 | the same purpose: sending Internet traffic over telephone (and other |
| 1551 | serial) lines. Ask your access provider if they support it, because |
| 1552 | otherwise you can't use it; most Internet access providers these |
| 1553 | days support PPP rather than SLIP. |
| 1554 | |
| 1555 | To use PPP, you need an additional program called pppd as described |
| 1556 | in the PPP-HOWTO, available at |
| 1557 | <http://www.tldp.org/docs.html#howto>. Make sure that you have |
| 1558 | the version of pppd recommended in <file:Documentation/Changes>. |
| 1559 | The PPP option enlarges your kernel by about 16 KB. |
| 1560 | |
| 1561 | There are actually two versions of PPP: the traditional PPP for |
| 1562 | asynchronous lines, such as regular analog phone lines, and |
| 1563 | synchronous PPP which can be used over digital ISDN lines for |
| 1564 | example. If you want to use PPP over phone lines or other |
| 1565 | asynchronous serial lines, you need to say Y (or M) here and also to |
| 1566 | the next option, "PPP support for async serial ports". For PPP over |
| 1567 | synchronous lines, you should say Y (or M) here and to "Support |
| 1568 | synchronous PPP", below. |
| 1569 | |
| 1570 | If you said Y to "Version information on all symbols" above, then |
| 1571 | you cannot compile the PPP driver into the kernel; you can then only |
| 1572 | 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] | 1573 | here. The module will be called ppp_generic. |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1574 | |
| 1575 | config PPP_MULTILINK |
| 1576 | bool "PPP multilink support (EXPERIMENTAL)" |
| 1577 | depends on PPP && EXPERIMENTAL |
| 1578 | help |
| 1579 | PPP multilink is a protocol (defined in RFC 1990) which allows you |
| 1580 | to combine several (logical or physical) lines into one logical PPP |
| 1581 | connection, so that you can utilize your full bandwidth. |
| 1582 | |
| 1583 | This has to be supported at the other end as well and you need a |
| 1584 | version of the pppd daemon which understands the multilink protocol. |
| 1585 | |
| 1586 | If unsure, say N. |
| 1587 | |
| 1588 | config PPP_FILTER |
| 1589 | bool "PPP filtering" |
| 1590 | depends on PPP |
| 1591 | help |
| 1592 | Say Y here if you want to be able to filter the packets passing over |
| 1593 | PPP interfaces. This allows you to control which packets count as |
| 1594 | 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] | 1595 | a demand-dialed link) and which packets are to be dropped entirely. |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1596 | You need to say Y here if you wish to use the pass-filter and |
| 1597 | active-filter options to pppd. |
| 1598 | |
| 1599 | If unsure, say N. |
| 1600 | |
| 1601 | config PPP_ASYNC |
| 1602 | tristate "PPP support for async serial ports" |
| 1603 | depends on PPP |
| 1604 | select CRC_CCITT |
| 1605 | ---help--- |
| 1606 | Say Y (or M) here if you want to be able to use PPP over standard |
| 1607 | asynchronous serial ports, such as COM1 or COM2 on a PC. If you use |
| 1608 | a modem (not a synchronous or ISDN modem) to contact your ISP, you |
| 1609 | need this option. |
| 1610 | |
| 1611 | To compile this driver as a module, choose M here. |
| 1612 | |
| 1613 | If unsure, say Y. |
| 1614 | |
| 1615 | config PPP_SYNC_TTY |
| 1616 | tristate "PPP support for sync tty ports" |
| 1617 | depends on PPP |
| 1618 | help |
| 1619 | Say Y (or M) here if you want to be able to use PPP over synchronous |
| 1620 | (HDLC) tty devices, such as the SyncLink adapter. These devices |
| 1621 | are often used for high-speed leased lines like T1/E1. |
| 1622 | |
| 1623 | To compile this driver as a module, choose M here. |
| 1624 | |
| 1625 | config PPP_DEFLATE |
| 1626 | tristate "PPP Deflate compression" |
| 1627 | depends on PPP |
| 1628 | select ZLIB_INFLATE |
| 1629 | select ZLIB_DEFLATE |
| 1630 | ---help--- |
| 1631 | Support for the Deflate compression method for PPP, which uses the |
| 1632 | Deflate algorithm (the same algorithm that gzip uses) to compress |
| 1633 | each PPP packet before it is sent over the wire. The machine at the |
| 1634 | other end of the PPP link (usually your ISP) has to support the |
| 1635 | Deflate compression method as well for this to be useful. Even if |
| 1636 | they don't support it, it is safe to say Y here. |
| 1637 | |
| 1638 | To compile this driver as a module, choose M here. |
| 1639 | |
| 1640 | config PPP_BSDCOMP |
| 1641 | tristate "PPP BSD-Compress compression" |
| 1642 | depends on PPP |
| 1643 | ---help--- |
| 1644 | Support for the BSD-Compress compression method for PPP, which uses |
| 1645 | the LZW compression method to compress each PPP packet before it is |
| 1646 | sent over the wire. The machine at the other end of the PPP link |
| 1647 | (usually your ISP) has to support the BSD-Compress compression |
| 1648 | method as well for this to be useful. Even if they don't support it, |
| 1649 | it is safe to say Y here. |
| 1650 | |
| 1651 | The PPP Deflate compression method ("PPP Deflate compression", |
| 1652 | above) is preferable to BSD-Compress, because it compresses better |
| 1653 | and is patent-free. |
| 1654 | |
| 1655 | Note that the BSD compression code will always be compiled as a |
| 1656 | module; it is called bsd_comp and will show up in the directory |
| 1657 | modules once you have said "make modules". If unsure, say N. |
| 1658 | |
Matt Domsch | b3f9b92 | 2005-11-08 09:40:47 -0800 | [diff] [blame] | 1659 | config PPP_MPPE |
Philippe De Muyter | e85eb11 | 2010-11-11 12:31:21 +0000 | [diff] [blame] | 1660 | tristate "PPP MPPE compression (encryption) (EXPERIMENTAL)" |
| 1661 | depends on PPP && EXPERIMENTAL |
| 1662 | select CRYPTO |
| 1663 | select CRYPTO_SHA1 |
| 1664 | select CRYPTO_ARC4 |
| 1665 | select CRYPTO_ECB |
| 1666 | ---help--- |
| 1667 | Support for the MPPE Encryption protocol, as employed by the |
| 1668 | Microsoft Point-to-Point Tunneling Protocol. |
Matt Domsch | b3f9b92 | 2005-11-08 09:40:47 -0800 | [diff] [blame] | 1669 | |
Philippe De Muyter | e85eb11 | 2010-11-11 12:31:21 +0000 | [diff] [blame] | 1670 | See http://pptpclient.sourceforge.net/ for information on |
| 1671 | configuring PPTP clients and servers to utilize this method. |
Matt Domsch | b3f9b92 | 2005-11-08 09:40:47 -0800 | [diff] [blame] | 1672 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1673 | config PPPOE |
| 1674 | tristate "PPP over Ethernet (EXPERIMENTAL)" |
| 1675 | depends on EXPERIMENTAL && PPP |
| 1676 | help |
| 1677 | Support for PPP over Ethernet. |
| 1678 | |
| 1679 | This driver requires the latest version of pppd from the CVS |
| 1680 | repository at cvs.samba.org. Alternatively, see the |
| 1681 | RoaringPenguin package (<http://www.roaringpenguin.com/pppoe>) |
| 1682 | which contains instruction on how to use this driver (under |
| 1683 | the heading "Kernel mode PPPoE"). |
| 1684 | |
Dmitry Kozlov | 00959ad | 2010-08-21 23:05:39 -0700 | [diff] [blame] | 1685 | config PPTP |
| 1686 | tristate "PPP over IPv4 (PPTP) (EXPERIMENTAL)" |
| 1687 | depends on EXPERIMENTAL && PPP && NET_IPGRE_DEMUX |
| 1688 | help |
| 1689 | Support for PPP over IPv4.(Point-to-Point Tunneling Protocol) |
| 1690 | |
| 1691 | This driver requires pppd plugin to work in client mode or |
| 1692 | modified pptpd (poptop) to work in server mode. |
| 1693 | See http://accel-pptp.sourceforge.net/ for information how to |
| 1694 | utilize this module. |
| 1695 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1696 | config PPPOATM |
| 1697 | tristate "PPP over ATM" |
| 1698 | depends on ATM && PPP |
| 1699 | help |
| 1700 | Support PPP (Point to Point Protocol) encapsulated in ATM frames. |
| 1701 | This implementation does not yet comply with section 8 of RFC2364, |
| 1702 | which can lead to bad results if the ATM peer loses state and |
| 1703 | changes its encapsulation unilaterally. |
| 1704 | |
James Chapman | 3557baa | 2007-06-27 15:49:24 -0700 | [diff] [blame] | 1705 | config PPPOL2TP |
| 1706 | tristate "PPP over L2TP (EXPERIMENTAL)" |
James Chapman | fd558d1 | 2010-04-02 06:18:33 +0000 | [diff] [blame] | 1707 | depends on EXPERIMENTAL && L2TP && PPP |
James Chapman | 3557baa | 2007-06-27 15:49:24 -0700 | [diff] [blame] | 1708 | help |
| 1709 | Support for PPP-over-L2TP socket family. L2TP is a protocol |
| 1710 | used by ISPs and enterprises to tunnel PPP traffic over UDP |
| 1711 | tunnels. L2TP is replacing PPTP for VPN uses. |
| 1712 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1713 | config SLIP |
| 1714 | tristate "SLIP (serial line) support" |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1715 | ---help--- |
| 1716 | Say Y if you intend to use SLIP or CSLIP (compressed SLIP) to |
| 1717 | connect to your Internet service provider or to connect to some |
| 1718 | other local Unix box or if you want to configure your Linux box as a |
| 1719 | Slip/CSlip server for other people to dial in. SLIP (Serial Line |
| 1720 | Internet Protocol) is a protocol used to send Internet traffic over |
| 1721 | serial connections such as telephone lines or null modem cables; |
| 1722 | nowadays, the protocol PPP is more commonly used for this same |
| 1723 | purpose. |
| 1724 | |
| 1725 | Normally, your access provider has to support SLIP in order for you |
| 1726 | to be able to use it, but there is now a SLIP emulator called SLiRP |
| 1727 | around (available from |
| 1728 | <ftp://ibiblio.org/pub/Linux/system/network/serial/>) which |
| 1729 | allows you to use SLIP over a regular dial up shell connection. If |
| 1730 | you plan to use SLiRP, make sure to say Y to CSLIP, below. The |
| 1731 | NET-3-HOWTO, available from |
| 1732 | <http://www.tldp.org/docs.html#howto>, explains how to |
| 1733 | configure SLIP. Note that you don't need this option if you just |
| 1734 | want to run term (term is a program which gives you almost full |
| 1735 | Internet connectivity if you have a regular dial up shell account on |
| 1736 | some Internet connected Unix computer. Read |
| 1737 | <http://www.bart.nl/~patrickr/term-howto/Term-HOWTO.html>). SLIP |
| 1738 | support will enlarge your kernel by about 4 KB. If unsure, say N. |
| 1739 | |
Adrian Bunk | 57ce45d | 2007-11-12 21:03:58 -0800 | [diff] [blame] | 1740 | To compile this driver as a module, choose M here. The module |
| 1741 | will be called slip. |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1742 | |
| 1743 | config SLIP_COMPRESSED |
| 1744 | bool "CSLIP compressed headers" |
| 1745 | depends on SLIP |
Ralf Baechle | b6e37e5 | 2006-07-14 12:15:40 +0100 | [diff] [blame] | 1746 | select SLHC |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1747 | ---help--- |
| 1748 | This protocol is faster than SLIP because it uses compression on the |
| 1749 | TCP/IP headers (not on the data itself), but it has to be supported |
| 1750 | on both ends. Ask your access provider if you are not sure and |
| 1751 | answer Y, just in case. You will still be able to use plain SLIP. If |
| 1752 | you plan to use SLiRP, the SLIP emulator (available from |
| 1753 | <ftp://ibiblio.org/pub/Linux/system/network/serial/>) which |
| 1754 | allows you to use SLIP over a regular dial up shell connection, you |
| 1755 | definitely want to say Y here. The NET-3-HOWTO, available from |
| 1756 | <http://www.tldp.org/docs.html#howto>, explains how to configure |
| 1757 | CSLIP. This won't enlarge your kernel. |
| 1758 | |
Ralf Baechle | b6e37e5 | 2006-07-14 12:15:40 +0100 | [diff] [blame] | 1759 | config SLHC |
| 1760 | tristate |
| 1761 | help |
| 1762 | This option enables Van Jacobsen serial line header compression |
| 1763 | routines. |
| 1764 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1765 | config SLIP_SMART |
| 1766 | bool "Keepalive and linefill" |
| 1767 | depends on SLIP |
| 1768 | help |
| 1769 | Adds additional capabilities to the SLIP driver to support the |
| 1770 | RELCOM line fill and keepalive monitoring. Ideal on poor quality |
| 1771 | analogue lines. |
| 1772 | |
| 1773 | config SLIP_MODE_SLIP6 |
| 1774 | bool "Six bit SLIP encapsulation" |
| 1775 | depends on SLIP |
| 1776 | help |
| 1777 | Just occasionally you may need to run IP over hostile serial |
| 1778 | networks that don't pass all control characters or are only seven |
| 1779 | bit. Saying Y here adds an extra mode you can use with SLIP: |
| 1780 | "slip6". In this mode, SLIP will only send normal ASCII symbols over |
| 1781 | the serial device. Naturally, this has to be supported at the other |
| 1782 | end of the link as well. It's good enough, for example, to run IP |
| 1783 | over the async ports of a Camtec JNT Pad. If unsure, say N. |
| 1784 | |
| 1785 | config NET_FC |
| 1786 | bool "Fibre Channel driver support" |
Randy Dunlap | cbcd2a4 | 2005-07-27 13:04:35 -0700 | [diff] [blame] | 1787 | depends on SCSI && PCI |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1788 | help |
| 1789 | Fibre Channel is a high speed serial protocol mainly used to connect |
| 1790 | large storage devices to the computer; it is compatible with and |
| 1791 | intended to replace SCSI. |
| 1792 | |
| 1793 | If you intend to use Fibre Channel, you need to have a Fibre channel |
| 1794 | adaptor card in your computer; say Y here and to the driver for your |
| 1795 | adaptor below. You also should have said Y to "SCSI support" and |
| 1796 | "SCSI generic support". |
| 1797 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1798 | config NETCONSOLE |
Amerigo Wang | ecbacf8 | 2010-03-21 23:59:23 +0000 | [diff] [blame] | 1799 | tristate "Network console logging support" |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1800 | ---help--- |
| 1801 | If you want to log kernel messages over the network, enable this. |
| 1802 | See <file:Documentation/networking/netconsole.txt> for details. |
| 1803 | |
Satyam Sharma | 0bcc181 | 2007-08-10 15:35:05 -0700 | [diff] [blame] | 1804 | config NETCONSOLE_DYNAMIC |
Amerigo Wang | ecbacf8 | 2010-03-21 23:59:23 +0000 | [diff] [blame] | 1805 | bool "Dynamic reconfiguration of logging targets" |
Randy Dunlap | 58fa459 | 2011-06-21 08:01:20 +0000 | [diff] [blame] | 1806 | depends on NETCONSOLE && SYSFS && CONFIGFS_FS && \ |
| 1807 | !(NETCONSOLE=y && CONFIGFS_FS=m) |
Satyam Sharma | 0bcc181 | 2007-08-10 15:35:05 -0700 | [diff] [blame] | 1808 | help |
| 1809 | This option enables the ability to dynamically reconfigure target |
| 1810 | parameters (interface, IP addresses, port numbers, MAC addresses) |
| 1811 | at runtime through a userspace interface exported using configfs. |
| 1812 | See <file:Documentation/networking/netconsole.txt> for details. |
| 1813 | |
Randy Dunlap | 5420899 | 2005-07-18 13:45:12 -0700 | [diff] [blame] | 1814 | config NETPOLL |
| 1815 | def_bool NETCONSOLE |
| 1816 | |
Randy Dunlap | 5420899 | 2005-07-18 13:45:12 -0700 | [diff] [blame] | 1817 | config NETPOLL_TRAP |
| 1818 | bool "Netpoll traffic trapping" |
| 1819 | default n |
| 1820 | depends on NETPOLL |
| 1821 | |
| 1822 | config NET_POLL_CONTROLLER |
| 1823 | def_bool NETPOLL |
| 1824 | |
Rusty Russell | 296f96f | 2007-10-22 11:03:37 +1000 | [diff] [blame] | 1825 | config VIRTIO_NET |
| 1826 | tristate "Virtio network driver (EXPERIMENTAL)" |
| 1827 | depends on EXPERIMENTAL && VIRTIO |
| 1828 | ---help--- |
Anthony Liguori | 0ad07ec | 2007-11-07 20:46:31 -0600 | [diff] [blame] | 1829 | 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] | 1830 | 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] | 1831 | |
Shreyas Bhatewara | d1a890fa | 2009-10-13 00:15:51 -0700 | [diff] [blame] | 1832 | config VMXNET3 |
Philippe De Muyter | e85eb11 | 2010-11-11 12:31:21 +0000 | [diff] [blame] | 1833 | tristate "VMware VMXNET3 ethernet driver" |
| 1834 | depends on PCI && INET |
| 1835 | help |
| 1836 | This driver supports VMware's vmxnet3 virtual ethernet NIC. |
| 1837 | To compile this driver as a module, choose M here: the |
| 1838 | module will be called vmxnet3. |
Shreyas Bhatewara | d1a890fa | 2009-10-13 00:15:51 -0700 | [diff] [blame] | 1839 | |
Jan Engelhardt | d1c0a65 | 2007-06-13 12:48:53 -0700 | [diff] [blame] | 1840 | endif # NETDEVICES |