Kconfig 111 KB

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