blob: a5f67a091c4dbacb25e5ed0f7c14a75c04d69758 [file] [log] [blame]
Jeff Kirshera8fe65b2011-05-19 23:27:55 -07001#
2# Realtek device configuration
3#
4
5config NET_VENDOR_REALTEK
6 bool "Realtek devices"
7 depends on PCI || (PARPORT && X86)
8 ---help---
9 If you have a network (Ethernet) card belonging to this class, say Y
10 and read the Ethernet-HOWTO, available from
11 <http://www.tldp.org/docs.html#howto>.
12
13 Note that the answer to this question doesn't directly affect the
14 kernel: saying N will just cause the configurator to skip all
15 the questions about Realtek devices. If you say Y, you will be asked for
16 your specific card in the following questions.
17
18if NET_VENDOR_REALTEK
19
20config ATP
21 tristate "AT-LAN-TEC/RealTek pocket adapter support"
22 depends on PARPORT && X86
23 select CRC32
24 ---help---
25 This is a network (Ethernet) device which attaches to your parallel
26 port. Read <file:drivers/net/atp.c> as well as the Ethernet-HOWTO,
27 available from <http://www.tldp.org/docs.html#howto>, if you
28 want to use this. If you intend to use this driver, you should have
29 said N to the "Parallel printer support", because the two drivers
30 don't like each other.
31
32 To compile this driver as a module, choose M here: the module
33 will be called atp.
34
35config 8139CP
36 tristate "RealTek RTL-8139 C+ PCI Fast Ethernet Adapter support (EXPERIMENTAL)"
37 depends on PCI && EXPERIMENTAL
38 select CRC32
39 select MII
40 ---help---
41 This is a driver for the Fast Ethernet PCI network cards based on
42 the RTL8139C+ chips. If you have one of those, say Y and read
43 the Ethernet-HOWTO, available from
44 <http://www.tldp.org/docs.html#howto>.
45
46 To compile this driver as a module, choose M here: the module
47 will be called 8139cp. This is recommended.
48
49config 8139TOO
50 tristate "RealTek RTL-8129/8130/8139 PCI Fast Ethernet Adapter support"
51 depends on PCI
52 select CRC32
53 select MII
54 ---help---
55 This is a driver for the Fast Ethernet PCI network cards based on
56 the RTL 8129/8130/8139 chips. If you have one of those, say Y and
57 read the Ethernet-HOWTO <http://www.tldp.org/docs.html#howto>.
58
59 To compile this driver as a module, choose M here: the module
60 will be called 8139too. This is recommended.
61
62config 8139TOO_PIO
63 bool "Use PIO instead of MMIO"
64 default y
65 depends on 8139TOO
66 ---help---
67 This instructs the driver to use programmed I/O ports (PIO) instead
68 of PCI shared memory (MMIO). This can possibly solve some problems
69 in case your mainboard has memory consistency issues. If unsure,
70 say N.
71
72config 8139TOO_TUNE_TWISTER
73 bool "Support for uncommon RTL-8139 rev. K (automatic channel equalization)"
74 depends on 8139TOO
75 ---help---
76 This implements a function which might come in handy in case you
77 are using low quality on long cabling. It is required for RealTek
78 RTL-8139 revision K boards, and totally unused otherwise. It tries
79 to match the transceiver to the cable characteristics. This is
80 experimental since hardly documented by the manufacturer.
81 If unsure, say Y.
82
83config 8139TOO_8129
84 bool "Support for older RTL-8129/8130 boards"
85 depends on 8139TOO
86 ---help---
87 This enables support for the older and uncommon RTL-8129 and
88 RTL-8130 chips, which support MII via an external transceiver,
89 instead of an internal one. Disabling this option will save some
90 memory by making the code size smaller. If unsure, say Y.
91
92config 8139_OLD_RX_RESET
93 bool "Use older RX-reset method"
94 depends on 8139TOO
95 ---help---
96 The 8139too driver was recently updated to contain a more rapid
97 reset sequence, in the face of severe receive errors. This "new"
98 RX-reset method should be adequate for all boards. But if you
99 experience problems, you can enable this option to restore the
100 old RX-reset behavior. If unsure, say N.
101
102config R8169
103 tristate "Realtek 8169 gigabit ethernet support"
104 depends on PCI
105 select FW_LOADER
106 select CRC32
107 select MII
108 ---help---
109 Say Y here if you have a Realtek 8169 PCI Gigabit Ethernet adapter.
110
111 To compile this driver as a module, choose M here: the module
112 will be called r8169. This is recommended.
113
114config SC92031
115 tristate "Silan SC92031 PCI Fast Ethernet Adapter driver (EXPERIMENTAL)"
116 depends on PCI && EXPERIMENTAL
117 select CRC32
118 ---help---
119 This is a driver for the Fast Ethernet PCI network cards based on
120 the Silan SC92031 chip (sometimes also called Rsltek 8139D). If you
121 have one of these, say Y here.
122
123 To compile this driver as a module, choose M here: the module
124 will be called sc92031. This is recommended.
125
126endif # NET_VENDOR_REALTEK