Kconfig 111 KB

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