blob: 1f8d4a8d8ea43ab09838026b3eb54f7ab881fdbc [file] [log] [blame]
Linus Torvalds1da177e2005-04-16 15:20:36 -07001#
2# Tulip family network device configuration
3#
4
Jan Engelhardtd1c0a652007-06-13 12:48:53 -07005menuconfig NET_TULIP
Linus Torvalds1da177e2005-04-16 15:20:36 -07006 bool "\"Tulip\" family network device support"
Jan Engelhardtd1c0a652007-06-13 12:48:53 -07007 depends on PCI || EISA || CARDBUS
Linus Torvalds1da177e2005-04-16 15:20:36 -07008 help
9 This selects the "Tulip" family of EISA/PCI network cards.
10
Jan Engelhardtd1c0a652007-06-13 12:48:53 -070011if NET_TULIP
12
Linus Torvalds1da177e2005-04-16 15:20:36 -070013config DE2104X
Ondrej Zary9812cb12010-09-28 08:46:17 +000014 tristate "Early DECchip Tulip (dc2104x) PCI support"
15 depends on PCI
Linus Torvalds1da177e2005-04-16 15:20:36 -070016 select CRC32
17 ---help---
18 This driver is developed for the SMC EtherPower series Ethernet
19 cards and also works with cards based on the DECchip
20 21040 (Tulip series) chips. Some LinkSys PCI cards are
21 of this type. (If your card is NOT SMC EtherPower 10/100 PCI
22 (smc9332dst), you can also try the driver for "Generic DECchip"
23 cards, below. However, most people with a network card of this type
24 will say Y here.) Do read the Ethernet-HOWTO, available from
25 <http://www.tldp.org/docs.html#howto>.
26
Adrian Bunk57ce45d2007-11-12 21:03:58 -080027 To compile this driver as a module, choose M here. The module will
Linus Torvalds1da177e2005-04-16 15:20:36 -070028 be called de2104x.
29
Risto Suominenb77e5222009-06-10 09:55:00 +000030config DE2104X_DSL
31 int "Descriptor Skip Length in 32 bit longwords"
32 depends on DE2104X
33 range 0 31
34 default 0
35 help
36 Setting this value allows to align ring buffer descriptors into their
37 own cache lines. Value of 4 corresponds to the typical 32 byte line
38 (the descriptor is 16 bytes). This is necessary on systems that lack
39 cache coherence, an example is PowerMac 5500. Otherwise 0 is safe.
40 Default is 0, and range is 0 to 31.
41
Linus Torvalds1da177e2005-04-16 15:20:36 -070042config TULIP
43 tristate "DECchip Tulip (dc2114x) PCI support"
Jan Engelhardtd1c0a652007-06-13 12:48:53 -070044 depends on PCI
Linus Torvalds1da177e2005-04-16 15:20:36 -070045 select CRC32
46 ---help---
47 This driver is developed for the SMC EtherPower series Ethernet
48 cards and also works with cards based on the DECchip
49 21140 (Tulip series) chips. Some LinkSys PCI cards are
50 of this type. (If your card is NOT SMC EtherPower 10/100 PCI
51 (smc9332dst), you can also try the driver for "Generic DECchip"
52 cards, above. However, most people with a network card of this type
53 will say Y here.) Do read the Ethernet-HOWTO, available from
54 <http://www.tldp.org/docs.html#howto>.
55
Adrian Bunk57ce45d2007-11-12 21:03:58 -080056 To compile this driver as a module, choose M here. The module will
Linus Torvalds1da177e2005-04-16 15:20:36 -070057 be called tulip.
58
59config TULIP_MWI
60 bool "New bus configuration (EXPERIMENTAL)"
61 depends on TULIP && EXPERIMENTAL
62 help
63 This configures your Tulip card specifically for the card and
64 system cache line size type you are using.
65
66 This is experimental code, not yet tested on many boards.
67
68 If unsure, say N.
69
70config TULIP_MMIO
71 bool "Use PCI shared mem for NIC registers"
72 depends on TULIP
73 help
74 Use PCI shared memory for the NIC registers, rather than going through
75 the Tulip's PIO (programmed I/O ports). Faster, but could produce
76 obscure bugs if your mainboard has memory controller timing issues.
77 If in doubt, say N.
78
79config TULIP_NAPI
Randy Dunlapbf45abe2007-10-18 17:16:20 -070080 bool "Use RX polling (NAPI)"
Linus Torvalds1da177e2005-04-16 15:20:36 -070081 depends on TULIP
82 help
83 NAPI is a new driver API designed to reduce CPU and interrupt load
84 when the driver is receiving lots of packets from the card. It is
85 still somewhat experimental and thus not yet enabled by default.
86
87 If your estimated Rx load is 10kpps or more, or if the card will be
88 deployed on potentially unfriendly networks (e.g. in a firewall),
89 then say Y here.
90
Linus Torvalds1da177e2005-04-16 15:20:36 -070091 If in doubt, say N.
92
93config TULIP_NAPI_HW_MITIGATION
Randy Dunlapbf45abe2007-10-18 17:16:20 -070094 bool "Use Interrupt Mitigation"
Linus Torvalds1da177e2005-04-16 15:20:36 -070095 depends on TULIP_NAPI
96 ---help---
Randy Dunlapbf45abe2007-10-18 17:16:20 -070097 Use HW to reduce RX interrupts. Not strictly necessary since NAPI
98 reduces RX interrupts by itself. Interrupt mitigation reduces RX
99 interrupts even at low levels of traffic at the cost of a small
100 latency.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700101
102 If in doubt, say Y.
103
Ben Hutchings4d907062010-01-07 02:41:51 +0000104config TULIP_DM910X
105 def_bool y
106 depends on TULIP && SPARC
107
Linus Torvalds1da177e2005-04-16 15:20:36 -0700108config DE4X5
109 tristate "Generic DECchip & DIGITAL EtherWORKS PCI/EISA"
Jan Engelhardtd1c0a652007-06-13 12:48:53 -0700110 depends on PCI || EISA
Linus Torvalds1da177e2005-04-16 15:20:36 -0700111 select CRC32
112 ---help---
113 This is support for the DIGITAL series of PCI/EISA Ethernet cards.
114 These include the DE425, DE434, DE435, DE450 and DE500 models. If
115 you have a network card of this type, say Y and read the
116 Ethernet-HOWTO, available from
117 <http://www.tldp.org/docs.html#howto>. More specific
118 information is contained in
119 <file:Documentation/networking/de4x5.txt>.
120
Adrian Bunk57ce45d2007-11-12 21:03:58 -0800121 To compile this driver as a module, choose M here. The module will
Linus Torvalds1da177e2005-04-16 15:20:36 -0700122 be called de4x5.
123
124config WINBOND_840
125 tristate "Winbond W89c840 Ethernet support"
Jan Engelhardtd1c0a652007-06-13 12:48:53 -0700126 depends on PCI
Linus Torvalds1da177e2005-04-16 15:20:36 -0700127 select CRC32
128 select MII
129 help
130 This driver is for the Winbond W89c840 chip. It also works with
131 the TX9882 chip on the Compex RL100-ATX board.
132 More specific information and updates are available from
133 <http://www.scyld.com/network/drivers.html>.
134
135config DM9102
136 tristate "Davicom DM910x/DM980x support"
Jan Engelhardtd1c0a652007-06-13 12:48:53 -0700137 depends on PCI
Linus Torvalds1da177e2005-04-16 15:20:36 -0700138 select CRC32
139 ---help---
140 This driver is for DM9102(A)/DM9132/DM9801 compatible PCI cards from
141 Davicom (<http://www.davicom.com.tw/>). If you have such a network
142 (Ethernet) card, say Y. Some information is contained in the file
143 <file:Documentation/networking/dmfe.txt>.
144
Adrian Bunk57ce45d2007-11-12 21:03:58 -0800145 To compile this driver as a module, choose M here. The module will
Linus Torvalds1da177e2005-04-16 15:20:36 -0700146 be called dmfe.
147
Peer Chen4689ced2005-07-29 15:33:58 -0400148config ULI526X
149 tristate "ULi M526x controller support"
Jan Engelhardtd1c0a652007-06-13 12:48:53 -0700150 depends on PCI
Peer Chen4689ced2005-07-29 15:33:58 -0400151 select CRC32
152 ---help---
153 This driver is for ULi M5261/M5263 10/100M Ethernet Controller
Justin P. Mattock631dd1a2010-10-18 11:03:14 +0200154 (<http://www.nvidia.com/page/uli_drivers.html>).
Peer Chen4689ced2005-07-29 15:33:58 -0400155
Adrian Bunk57ce45d2007-11-12 21:03:58 -0800156 To compile this driver as a module, choose M here. The module will
Peer Chen4689ced2005-07-29 15:33:58 -0400157 be called uli526x.
158
Linus Torvalds1da177e2005-04-16 15:20:36 -0700159config PCMCIA_XIRCOM
Adrian Bunkfa6557a2008-01-29 00:14:12 +0200160 tristate "Xircom CardBus support"
Jan Engelhardtd1c0a652007-06-13 12:48:53 -0700161 depends on CARDBUS
Linus Torvalds1da177e2005-04-16 15:20:36 -0700162 ---help---
163 This driver is for the Digital "Tulip" Ethernet CardBus adapters.
164 It should work with most DEC 21*4*-based chips/ethercards, as well
165 as with work-alike chips from Lite-On (PNIC) and Macronix (MXIC) and
166 ASIX.
167
Adrian Bunk57ce45d2007-11-12 21:03:58 -0800168 To compile this driver as a module, choose M here. The module will
Linus Torvalds1da177e2005-04-16 15:20:36 -0700169 be called xircom_cb. If unsure, say N.
170
Jan Engelhardtd1c0a652007-06-13 12:48:53 -0700171endif # NET_TULIP