r8169.c 95 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757275827592760276127622763276427652766276727682769277027712772277327742775277627772778277927802781278227832784278527862787278827892790279127922793279427952796279727982799280028012802280328042805280628072808280928102811281228132814281528162817281828192820282128222823282428252826282728282829283028312832283328342835283628372838283928402841284228432844284528462847284828492850285128522853285428552856285728582859286028612862286328642865286628672868286928702871287228732874287528762877287828792880288128822883288428852886288728882889289028912892289328942895289628972898289929002901290229032904290529062907290829092910291129122913291429152916291729182919292029212922292329242925292629272928292929302931293229332934293529362937293829392940294129422943294429452946294729482949295029512952295329542955295629572958295929602961296229632964296529662967296829692970297129722973297429752976297729782979298029812982298329842985298629872988298929902991299229932994299529962997299829993000300130023003300430053006300730083009301030113012301330143015301630173018301930203021302230233024302530263027302830293030303130323033303430353036303730383039304030413042304330443045304630473048304930503051305230533054305530563057305830593060306130623063306430653066306730683069307030713072307330743075307630773078307930803081308230833084308530863087308830893090309130923093309430953096309730983099310031013102310331043105310631073108310931103111311231133114311531163117311831193120312131223123312431253126312731283129313031313132313331343135313631373138313931403141314231433144314531463147314831493150315131523153315431553156315731583159316031613162316331643165316631673168316931703171317231733174317531763177317831793180318131823183318431853186318731883189319031913192319331943195319631973198319932003201320232033204320532063207320832093210321132123213321432153216321732183219322032213222322332243225322632273228322932303231323232333234323532363237323832393240324132423243324432453246324732483249325032513252325332543255325632573258325932603261326232633264326532663267326832693270327132723273327432753276327732783279328032813282328332843285328632873288328932903291329232933294329532963297329832993300330133023303330433053306330733083309331033113312331333143315331633173318331933203321332233233324332533263327332833293330333133323333333433353336333733383339334033413342334333443345334633473348334933503351335233533354335533563357335833593360336133623363336433653366336733683369337033713372337333743375337633773378337933803381338233833384338533863387338833893390339133923393339433953396339733983399340034013402340334043405340634073408340934103411341234133414341534163417341834193420342134223423342434253426342734283429343034313432343334343435343634373438343934403441344234433444344534463447344834493450345134523453345434553456345734583459346034613462346334643465346634673468346934703471347234733474347534763477347834793480348134823483348434853486348734883489349034913492349334943495349634973498349935003501350235033504350535063507350835093510351135123513351435153516351735183519352035213522352335243525352635273528352935303531353235333534353535363537353835393540354135423543354435453546354735483549355035513552355335543555355635573558355935603561356235633564356535663567356835693570357135723573357435753576357735783579358035813582358335843585358635873588358935903591359235933594359535963597359835993600360136023603360436053606360736083609361036113612361336143615361636173618361936203621362236233624362536263627362836293630363136323633363436353636363736383639364036413642364336443645364636473648364936503651365236533654365536563657365836593660366136623663366436653666366736683669367036713672367336743675367636773678367936803681368236833684368536863687368836893690369136923693369436953696369736983699370037013702370337043705370637073708370937103711371237133714371537163717371837193720372137223723372437253726372737283729373037313732373337343735373637373738373937403741374237433744374537463747374837493750375137523753375437553756375737583759376037613762376337643765376637673768376937703771377237733774377537763777377837793780378137823783378437853786378737883789379037913792379337943795379637973798379938003801380238033804380538063807380838093810381138123813381438153816381738183819382038213822382338243825382638273828382938303831383238333834383538363837383838393840384138423843384438453846384738483849385038513852385338543855385638573858385938603861386238633864386538663867386838693870387138723873
  1. /*
  2. * r8169.c: RealTek 8169/8168/8101 ethernet driver.
  3. *
  4. * Copyright (c) 2002 ShuChen <shuchen@realtek.com.tw>
  5. * Copyright (c) 2003 - 2007 Francois Romieu <romieu@fr.zoreil.com>
  6. * Copyright (c) a lot of people too. Please respect their work.
  7. *
  8. * See MAINTAINERS file for support contact information.
  9. */
  10. #include <linux/module.h>
  11. #include <linux/moduleparam.h>
  12. #include <linux/pci.h>
  13. #include <linux/netdevice.h>
  14. #include <linux/etherdevice.h>
  15. #include <linux/delay.h>
  16. #include <linux/ethtool.h>
  17. #include <linux/mii.h>
  18. #include <linux/if_vlan.h>
  19. #include <linux/crc32.h>
  20. #include <linux/in.h>
  21. #include <linux/ip.h>
  22. #include <linux/tcp.h>
  23. #include <linux/init.h>
  24. #include <linux/dma-mapping.h>
  25. #include <asm/system.h>
  26. #include <asm/io.h>
  27. #include <asm/irq.h>
  28. #define RTL8169_VERSION "2.3LK-NAPI"
  29. #define MODULENAME "r8169"
  30. #define PFX MODULENAME ": "
  31. #ifdef RTL8169_DEBUG
  32. #define assert(expr) \
  33. if (!(expr)) { \
  34. printk( "Assertion failed! %s,%s,%s,line=%d\n", \
  35. #expr,__FILE__,__func__,__LINE__); \
  36. }
  37. #define dprintk(fmt, args...) \
  38. do { printk(KERN_DEBUG PFX fmt, ## args); } while (0)
  39. #else
  40. #define assert(expr) do {} while (0)
  41. #define dprintk(fmt, args...) do {} while (0)
  42. #endif /* RTL8169_DEBUG */
  43. #define R8169_MSG_DEFAULT \
  44. (NETIF_MSG_DRV | NETIF_MSG_PROBE | NETIF_MSG_IFUP | NETIF_MSG_IFDOWN)
  45. #define TX_BUFFS_AVAIL(tp) \
  46. (tp->dirty_tx + NUM_TX_DESC - tp->cur_tx - 1)
  47. /* Maximum events (Rx packets, etc.) to handle at each interrupt. */
  48. static const int max_interrupt_work = 20;
  49. /* Maximum number of multicast addresses to filter (vs. Rx-all-multicast).
  50. The RTL chips use a 64 element hash table based on the Ethernet CRC. */
  51. static const int multicast_filter_limit = 32;
  52. /* MAC address length */
  53. #define MAC_ADDR_LEN 6
  54. #define MAX_READ_REQUEST_SHIFT 12
  55. #define RX_FIFO_THRESH 7 /* 7 means NO threshold, Rx buffer level before first PCI xfer. */
  56. #define RX_DMA_BURST 6 /* Maximum PCI burst, '6' is 1024 */
  57. #define TX_DMA_BURST 6 /* Maximum PCI burst, '6' is 1024 */
  58. #define EarlyTxThld 0x3F /* 0x3F means NO early transmit */
  59. #define RxPacketMaxSize 0x3FE8 /* 16K - 1 - ETH_HLEN - VLAN - CRC... */
  60. #define SafeMtu 0x1c20 /* ... actually life sucks beyond ~7k */
  61. #define InterFrameGap 0x03 /* 3 means InterFrameGap = the shortest one */
  62. #define R8169_REGS_SIZE 256
  63. #define R8169_NAPI_WEIGHT 64
  64. #define NUM_TX_DESC 64 /* Number of Tx descriptor registers */
  65. #define NUM_RX_DESC 256 /* Number of Rx descriptor registers */
  66. #define RX_BUF_SIZE 1536 /* Rx Buffer size */
  67. #define R8169_TX_RING_BYTES (NUM_TX_DESC * sizeof(struct TxDesc))
  68. #define R8169_RX_RING_BYTES (NUM_RX_DESC * sizeof(struct RxDesc))
  69. #define RTL8169_TX_TIMEOUT (6*HZ)
  70. #define RTL8169_PHY_TIMEOUT (10*HZ)
  71. #define RTL_EEPROM_SIG cpu_to_le32(0x8129)
  72. #define RTL_EEPROM_SIG_MASK cpu_to_le32(0xffff)
  73. #define RTL_EEPROM_SIG_ADDR 0x0000
  74. /* write/read MMIO register */
  75. #define RTL_W8(reg, val8) writeb ((val8), ioaddr + (reg))
  76. #define RTL_W16(reg, val16) writew ((val16), ioaddr + (reg))
  77. #define RTL_W32(reg, val32) writel ((val32), ioaddr + (reg))
  78. #define RTL_R8(reg) readb (ioaddr + (reg))
  79. #define RTL_R16(reg) readw (ioaddr + (reg))
  80. #define RTL_R32(reg) ((unsigned long) readl (ioaddr + (reg)))
  81. enum mac_version {
  82. RTL_GIGA_MAC_VER_01 = 0x01, // 8169
  83. RTL_GIGA_MAC_VER_02 = 0x02, // 8169S
  84. RTL_GIGA_MAC_VER_03 = 0x03, // 8110S
  85. RTL_GIGA_MAC_VER_04 = 0x04, // 8169SB
  86. RTL_GIGA_MAC_VER_05 = 0x05, // 8110SCd
  87. RTL_GIGA_MAC_VER_06 = 0x06, // 8110SCe
  88. RTL_GIGA_MAC_VER_07 = 0x07, // 8102e
  89. RTL_GIGA_MAC_VER_08 = 0x08, // 8102e
  90. RTL_GIGA_MAC_VER_09 = 0x09, // 8102e
  91. RTL_GIGA_MAC_VER_10 = 0x0a, // 8101e
  92. RTL_GIGA_MAC_VER_11 = 0x0b, // 8168Bb
  93. RTL_GIGA_MAC_VER_12 = 0x0c, // 8168Be
  94. RTL_GIGA_MAC_VER_13 = 0x0d, // 8101Eb
  95. RTL_GIGA_MAC_VER_14 = 0x0e, // 8101 ?
  96. RTL_GIGA_MAC_VER_15 = 0x0f, // 8101 ?
  97. RTL_GIGA_MAC_VER_16 = 0x11, // 8101Ec
  98. RTL_GIGA_MAC_VER_17 = 0x10, // 8168Bf
  99. RTL_GIGA_MAC_VER_18 = 0x12, // 8168CP
  100. RTL_GIGA_MAC_VER_19 = 0x13, // 8168C
  101. RTL_GIGA_MAC_VER_20 = 0x14, // 8168C
  102. RTL_GIGA_MAC_VER_21 = 0x15, // 8168C
  103. RTL_GIGA_MAC_VER_22 = 0x16, // 8168C
  104. RTL_GIGA_MAC_VER_23 = 0x17, // 8168CP
  105. RTL_GIGA_MAC_VER_24 = 0x18, // 8168CP
  106. RTL_GIGA_MAC_VER_25 = 0x19 // 8168D
  107. };
  108. #define _R(NAME,MAC,MASK) \
  109. { .name = NAME, .mac_version = MAC, .RxConfigMask = MASK }
  110. static const struct {
  111. const char *name;
  112. u8 mac_version;
  113. u32 RxConfigMask; /* Clears the bits supported by this chip */
  114. } rtl_chip_info[] = {
  115. _R("RTL8169", RTL_GIGA_MAC_VER_01, 0xff7e1880), // 8169
  116. _R("RTL8169s", RTL_GIGA_MAC_VER_02, 0xff7e1880), // 8169S
  117. _R("RTL8110s", RTL_GIGA_MAC_VER_03, 0xff7e1880), // 8110S
  118. _R("RTL8169sb/8110sb", RTL_GIGA_MAC_VER_04, 0xff7e1880), // 8169SB
  119. _R("RTL8169sc/8110sc", RTL_GIGA_MAC_VER_05, 0xff7e1880), // 8110SCd
  120. _R("RTL8169sc/8110sc", RTL_GIGA_MAC_VER_06, 0xff7e1880), // 8110SCe
  121. _R("RTL8102e", RTL_GIGA_MAC_VER_07, 0xff7e1880), // PCI-E
  122. _R("RTL8102e", RTL_GIGA_MAC_VER_08, 0xff7e1880), // PCI-E
  123. _R("RTL8102e", RTL_GIGA_MAC_VER_09, 0xff7e1880), // PCI-E
  124. _R("RTL8101e", RTL_GIGA_MAC_VER_10, 0xff7e1880), // PCI-E
  125. _R("RTL8168b/8111b", RTL_GIGA_MAC_VER_11, 0xff7e1880), // PCI-E
  126. _R("RTL8168b/8111b", RTL_GIGA_MAC_VER_12, 0xff7e1880), // PCI-E
  127. _R("RTL8101e", RTL_GIGA_MAC_VER_13, 0xff7e1880), // PCI-E 8139
  128. _R("RTL8100e", RTL_GIGA_MAC_VER_14, 0xff7e1880), // PCI-E 8139
  129. _R("RTL8100e", RTL_GIGA_MAC_VER_15, 0xff7e1880), // PCI-E 8139
  130. _R("RTL8168b/8111b", RTL_GIGA_MAC_VER_17, 0xff7e1880), // PCI-E
  131. _R("RTL8101e", RTL_GIGA_MAC_VER_16, 0xff7e1880), // PCI-E
  132. _R("RTL8168cp/8111cp", RTL_GIGA_MAC_VER_18, 0xff7e1880), // PCI-E
  133. _R("RTL8168c/8111c", RTL_GIGA_MAC_VER_19, 0xff7e1880), // PCI-E
  134. _R("RTL8168c/8111c", RTL_GIGA_MAC_VER_20, 0xff7e1880), // PCI-E
  135. _R("RTL8168c/8111c", RTL_GIGA_MAC_VER_21, 0xff7e1880), // PCI-E
  136. _R("RTL8168c/8111c", RTL_GIGA_MAC_VER_22, 0xff7e1880), // PCI-E
  137. _R("RTL8168cp/8111cp", RTL_GIGA_MAC_VER_23, 0xff7e1880), // PCI-E
  138. _R("RTL8168cp/8111cp", RTL_GIGA_MAC_VER_24, 0xff7e1880), // PCI-E
  139. _R("RTL8168d/8111d", RTL_GIGA_MAC_VER_25, 0xff7e1880) // PCI-E
  140. };
  141. #undef _R
  142. enum cfg_version {
  143. RTL_CFG_0 = 0x00,
  144. RTL_CFG_1,
  145. RTL_CFG_2
  146. };
  147. static void rtl_hw_start_8169(struct net_device *);
  148. static void rtl_hw_start_8168(struct net_device *);
  149. static void rtl_hw_start_8101(struct net_device *);
  150. static struct pci_device_id rtl8169_pci_tbl[] = {
  151. { PCI_DEVICE(PCI_VENDOR_ID_REALTEK, 0x8129), 0, 0, RTL_CFG_0 },
  152. { PCI_DEVICE(PCI_VENDOR_ID_REALTEK, 0x8136), 0, 0, RTL_CFG_2 },
  153. { PCI_DEVICE(PCI_VENDOR_ID_REALTEK, 0x8167), 0, 0, RTL_CFG_0 },
  154. { PCI_DEVICE(PCI_VENDOR_ID_REALTEK, 0x8168), 0, 0, RTL_CFG_1 },
  155. { PCI_DEVICE(PCI_VENDOR_ID_REALTEK, 0x8169), 0, 0, RTL_CFG_0 },
  156. { PCI_DEVICE(PCI_VENDOR_ID_DLINK, 0x4300), 0, 0, RTL_CFG_0 },
  157. { PCI_DEVICE(PCI_VENDOR_ID_AT, 0xc107), 0, 0, RTL_CFG_0 },
  158. { PCI_DEVICE(0x16ec, 0x0116), 0, 0, RTL_CFG_0 },
  159. { PCI_VENDOR_ID_LINKSYS, 0x1032,
  160. PCI_ANY_ID, 0x0024, 0, 0, RTL_CFG_0 },
  161. { 0x0001, 0x8168,
  162. PCI_ANY_ID, 0x2410, 0, 0, RTL_CFG_2 },
  163. {0,},
  164. };
  165. MODULE_DEVICE_TABLE(pci, rtl8169_pci_tbl);
  166. static int rx_copybreak = 200;
  167. static int use_dac;
  168. static struct {
  169. u32 msg_enable;
  170. } debug = { -1 };
  171. enum rtl_registers {
  172. MAC0 = 0, /* Ethernet hardware address. */
  173. MAC4 = 4,
  174. MAR0 = 8, /* Multicast filter. */
  175. CounterAddrLow = 0x10,
  176. CounterAddrHigh = 0x14,
  177. TxDescStartAddrLow = 0x20,
  178. TxDescStartAddrHigh = 0x24,
  179. TxHDescStartAddrLow = 0x28,
  180. TxHDescStartAddrHigh = 0x2c,
  181. FLASH = 0x30,
  182. ERSR = 0x36,
  183. ChipCmd = 0x37,
  184. TxPoll = 0x38,
  185. IntrMask = 0x3c,
  186. IntrStatus = 0x3e,
  187. TxConfig = 0x40,
  188. RxConfig = 0x44,
  189. RxMissed = 0x4c,
  190. Cfg9346 = 0x50,
  191. Config0 = 0x51,
  192. Config1 = 0x52,
  193. Config2 = 0x53,
  194. Config3 = 0x54,
  195. Config4 = 0x55,
  196. Config5 = 0x56,
  197. MultiIntr = 0x5c,
  198. PHYAR = 0x60,
  199. PHYstatus = 0x6c,
  200. RxMaxSize = 0xda,
  201. CPlusCmd = 0xe0,
  202. IntrMitigate = 0xe2,
  203. RxDescAddrLow = 0xe4,
  204. RxDescAddrHigh = 0xe8,
  205. EarlyTxThres = 0xec,
  206. FuncEvent = 0xf0,
  207. FuncEventMask = 0xf4,
  208. FuncPresetState = 0xf8,
  209. FuncForceEvent = 0xfc,
  210. };
  211. enum rtl8110_registers {
  212. TBICSR = 0x64,
  213. TBI_ANAR = 0x68,
  214. TBI_LPAR = 0x6a,
  215. };
  216. enum rtl8168_8101_registers {
  217. CSIDR = 0x64,
  218. CSIAR = 0x68,
  219. #define CSIAR_FLAG 0x80000000
  220. #define CSIAR_WRITE_CMD 0x80000000
  221. #define CSIAR_BYTE_ENABLE 0x0f
  222. #define CSIAR_BYTE_ENABLE_SHIFT 12
  223. #define CSIAR_ADDR_MASK 0x0fff
  224. EPHYAR = 0x80,
  225. #define EPHYAR_FLAG 0x80000000
  226. #define EPHYAR_WRITE_CMD 0x80000000
  227. #define EPHYAR_REG_MASK 0x1f
  228. #define EPHYAR_REG_SHIFT 16
  229. #define EPHYAR_DATA_MASK 0xffff
  230. DBG_REG = 0xd1,
  231. #define FIX_NAK_1 (1 << 4)
  232. #define FIX_NAK_2 (1 << 3)
  233. };
  234. enum rtl_register_content {
  235. /* InterruptStatusBits */
  236. SYSErr = 0x8000,
  237. PCSTimeout = 0x4000,
  238. SWInt = 0x0100,
  239. TxDescUnavail = 0x0080,
  240. RxFIFOOver = 0x0040,
  241. LinkChg = 0x0020,
  242. RxOverflow = 0x0010,
  243. TxErr = 0x0008,
  244. TxOK = 0x0004,
  245. RxErr = 0x0002,
  246. RxOK = 0x0001,
  247. /* RxStatusDesc */
  248. RxFOVF = (1 << 23),
  249. RxRWT = (1 << 22),
  250. RxRES = (1 << 21),
  251. RxRUNT = (1 << 20),
  252. RxCRC = (1 << 19),
  253. /* ChipCmdBits */
  254. CmdReset = 0x10,
  255. CmdRxEnb = 0x08,
  256. CmdTxEnb = 0x04,
  257. RxBufEmpty = 0x01,
  258. /* TXPoll register p.5 */
  259. HPQ = 0x80, /* Poll cmd on the high prio queue */
  260. NPQ = 0x40, /* Poll cmd on the low prio queue */
  261. FSWInt = 0x01, /* Forced software interrupt */
  262. /* Cfg9346Bits */
  263. Cfg9346_Lock = 0x00,
  264. Cfg9346_Unlock = 0xc0,
  265. /* rx_mode_bits */
  266. AcceptErr = 0x20,
  267. AcceptRunt = 0x10,
  268. AcceptBroadcast = 0x08,
  269. AcceptMulticast = 0x04,
  270. AcceptMyPhys = 0x02,
  271. AcceptAllPhys = 0x01,
  272. /* RxConfigBits */
  273. RxCfgFIFOShift = 13,
  274. RxCfgDMAShift = 8,
  275. /* TxConfigBits */
  276. TxInterFrameGapShift = 24,
  277. TxDMAShift = 8, /* DMA burst value (0-7) is shift this many bits */
  278. /* Config1 register p.24 */
  279. LEDS1 = (1 << 7),
  280. LEDS0 = (1 << 6),
  281. MSIEnable = (1 << 5), /* Enable Message Signaled Interrupt */
  282. Speed_down = (1 << 4),
  283. MEMMAP = (1 << 3),
  284. IOMAP = (1 << 2),
  285. VPD = (1 << 1),
  286. PMEnable = (1 << 0), /* Power Management Enable */
  287. /* Config2 register p. 25 */
  288. PCI_Clock_66MHz = 0x01,
  289. PCI_Clock_33MHz = 0x00,
  290. /* Config3 register p.25 */
  291. MagicPacket = (1 << 5), /* Wake up when receives a Magic Packet */
  292. LinkUp = (1 << 4), /* Wake up when the cable connection is re-established */
  293. Beacon_en = (1 << 0), /* 8168 only. Reserved in the 8168b */
  294. /* Config5 register p.27 */
  295. BWF = (1 << 6), /* Accept Broadcast wakeup frame */
  296. MWF = (1 << 5), /* Accept Multicast wakeup frame */
  297. UWF = (1 << 4), /* Accept Unicast wakeup frame */
  298. LanWake = (1 << 1), /* LanWake enable/disable */
  299. PMEStatus = (1 << 0), /* PME status can be reset by PCI RST# */
  300. /* TBICSR p.28 */
  301. TBIReset = 0x80000000,
  302. TBILoopback = 0x40000000,
  303. TBINwEnable = 0x20000000,
  304. TBINwRestart = 0x10000000,
  305. TBILinkOk = 0x02000000,
  306. TBINwComplete = 0x01000000,
  307. /* CPlusCmd p.31 */
  308. EnableBist = (1 << 15), // 8168 8101
  309. Mac_dbgo_oe = (1 << 14), // 8168 8101
  310. Normal_mode = (1 << 13), // unused
  311. Force_half_dup = (1 << 12), // 8168 8101
  312. Force_rxflow_en = (1 << 11), // 8168 8101
  313. Force_txflow_en = (1 << 10), // 8168 8101
  314. Cxpl_dbg_sel = (1 << 9), // 8168 8101
  315. ASF = (1 << 8), // 8168 8101
  316. PktCntrDisable = (1 << 7), // 8168 8101
  317. Mac_dbgo_sel = 0x001c, // 8168
  318. RxVlan = (1 << 6),
  319. RxChkSum = (1 << 5),
  320. PCIDAC = (1 << 4),
  321. PCIMulRW = (1 << 3),
  322. INTT_0 = 0x0000, // 8168
  323. INTT_1 = 0x0001, // 8168
  324. INTT_2 = 0x0002, // 8168
  325. INTT_3 = 0x0003, // 8168
  326. /* rtl8169_PHYstatus */
  327. TBI_Enable = 0x80,
  328. TxFlowCtrl = 0x40,
  329. RxFlowCtrl = 0x20,
  330. _1000bpsF = 0x10,
  331. _100bps = 0x08,
  332. _10bps = 0x04,
  333. LinkStatus = 0x02,
  334. FullDup = 0x01,
  335. /* _TBICSRBit */
  336. TBILinkOK = 0x02000000,
  337. /* DumpCounterCommand */
  338. CounterDump = 0x8,
  339. };
  340. enum desc_status_bit {
  341. DescOwn = (1 << 31), /* Descriptor is owned by NIC */
  342. RingEnd = (1 << 30), /* End of descriptor ring */
  343. FirstFrag = (1 << 29), /* First segment of a packet */
  344. LastFrag = (1 << 28), /* Final segment of a packet */
  345. /* Tx private */
  346. LargeSend = (1 << 27), /* TCP Large Send Offload (TSO) */
  347. MSSShift = 16, /* MSS value position */
  348. MSSMask = 0xfff, /* MSS value + LargeSend bit: 12 bits */
  349. IPCS = (1 << 18), /* Calculate IP checksum */
  350. UDPCS = (1 << 17), /* Calculate UDP/IP checksum */
  351. TCPCS = (1 << 16), /* Calculate TCP/IP checksum */
  352. TxVlanTag = (1 << 17), /* Add VLAN tag */
  353. /* Rx private */
  354. PID1 = (1 << 18), /* Protocol ID bit 1/2 */
  355. PID0 = (1 << 17), /* Protocol ID bit 2/2 */
  356. #define RxProtoUDP (PID1)
  357. #define RxProtoTCP (PID0)
  358. #define RxProtoIP (PID1 | PID0)
  359. #define RxProtoMask RxProtoIP
  360. IPFail = (1 << 16), /* IP checksum failed */
  361. UDPFail = (1 << 15), /* UDP/IP checksum failed */
  362. TCPFail = (1 << 14), /* TCP/IP checksum failed */
  363. RxVlanTag = (1 << 16), /* VLAN tag available */
  364. };
  365. #define RsvdMask 0x3fffc000
  366. struct TxDesc {
  367. __le32 opts1;
  368. __le32 opts2;
  369. __le64 addr;
  370. };
  371. struct RxDesc {
  372. __le32 opts1;
  373. __le32 opts2;
  374. __le64 addr;
  375. };
  376. struct ring_info {
  377. struct sk_buff *skb;
  378. u32 len;
  379. u8 __pad[sizeof(void *) - sizeof(u32)];
  380. };
  381. enum features {
  382. RTL_FEATURE_WOL = (1 << 0),
  383. RTL_FEATURE_MSI = (1 << 1),
  384. RTL_FEATURE_GMII = (1 << 2),
  385. };
  386. struct rtl8169_counters {
  387. __le64 tx_packets;
  388. __le64 rx_packets;
  389. __le64 tx_errors;
  390. __le32 rx_errors;
  391. __le16 rx_missed;
  392. __le16 align_errors;
  393. __le32 tx_one_collision;
  394. __le32 tx_multi_collision;
  395. __le64 rx_unicast;
  396. __le64 rx_broadcast;
  397. __le32 rx_multicast;
  398. __le16 tx_aborted;
  399. __le16 tx_underun;
  400. };
  401. struct rtl8169_private {
  402. void __iomem *mmio_addr; /* memory map physical address */
  403. struct pci_dev *pci_dev; /* Index of PCI device */
  404. struct net_device *dev;
  405. struct napi_struct napi;
  406. spinlock_t lock; /* spin lock flag */
  407. u32 msg_enable;
  408. int chipset;
  409. int mac_version;
  410. u32 cur_rx; /* Index into the Rx descriptor buffer of next Rx pkt. */
  411. u32 cur_tx; /* Index into the Tx descriptor buffer of next Rx pkt. */
  412. u32 dirty_rx;
  413. u32 dirty_tx;
  414. struct TxDesc *TxDescArray; /* 256-aligned Tx descriptor ring */
  415. struct RxDesc *RxDescArray; /* 256-aligned Rx descriptor ring */
  416. dma_addr_t TxPhyAddr;
  417. dma_addr_t RxPhyAddr;
  418. struct sk_buff *Rx_skbuff[NUM_RX_DESC]; /* Rx data buffers */
  419. struct ring_info tx_skb[NUM_TX_DESC]; /* Tx data buffers */
  420. unsigned align;
  421. unsigned rx_buf_sz;
  422. struct timer_list timer;
  423. u16 cp_cmd;
  424. u16 intr_event;
  425. u16 napi_event;
  426. u16 intr_mask;
  427. int phy_auto_nego_reg;
  428. int phy_1000_ctrl_reg;
  429. #ifdef CONFIG_R8169_VLAN
  430. struct vlan_group *vlgrp;
  431. #endif
  432. int (*set_speed)(struct net_device *, u8 autoneg, u16 speed, u8 duplex);
  433. int (*get_settings)(struct net_device *, struct ethtool_cmd *);
  434. void (*phy_reset_enable)(void __iomem *);
  435. void (*hw_start)(struct net_device *);
  436. unsigned int (*phy_reset_pending)(void __iomem *);
  437. unsigned int (*link_ok)(void __iomem *);
  438. int (*do_ioctl)(struct rtl8169_private *tp, struct mii_ioctl_data *data, int cmd);
  439. int pcie_cap;
  440. struct delayed_work task;
  441. unsigned features;
  442. struct mii_if_info mii;
  443. struct rtl8169_counters counters;
  444. };
  445. MODULE_AUTHOR("Realtek and the Linux r8169 crew <netdev@vger.kernel.org>");
  446. MODULE_DESCRIPTION("RealTek RTL-8169 Gigabit Ethernet driver");
  447. module_param(rx_copybreak, int, 0);
  448. MODULE_PARM_DESC(rx_copybreak, "Copy breakpoint for copy-only-tiny-frames");
  449. module_param(use_dac, int, 0);
  450. MODULE_PARM_DESC(use_dac, "Enable PCI DAC. Unsafe on 32 bit PCI slot.");
  451. module_param_named(debug, debug.msg_enable, int, 0);
  452. MODULE_PARM_DESC(debug, "Debug verbosity level (0=none, ..., 16=all)");
  453. MODULE_LICENSE("GPL");
  454. MODULE_VERSION(RTL8169_VERSION);
  455. static int rtl8169_open(struct net_device *dev);
  456. static int rtl8169_start_xmit(struct sk_buff *skb, struct net_device *dev);
  457. static irqreturn_t rtl8169_interrupt(int irq, void *dev_instance);
  458. static int rtl8169_init_ring(struct net_device *dev);
  459. static void rtl_hw_start(struct net_device *dev);
  460. static int rtl8169_close(struct net_device *dev);
  461. static void rtl_set_rx_mode(struct net_device *dev);
  462. static void rtl8169_tx_timeout(struct net_device *dev);
  463. static struct net_device_stats *rtl8169_get_stats(struct net_device *dev);
  464. static int rtl8169_rx_interrupt(struct net_device *, struct rtl8169_private *,
  465. void __iomem *, u32 budget);
  466. static int rtl8169_change_mtu(struct net_device *dev, int new_mtu);
  467. static void rtl8169_down(struct net_device *dev);
  468. static void rtl8169_rx_clear(struct rtl8169_private *tp);
  469. static int rtl8169_poll(struct napi_struct *napi, int budget);
  470. static const unsigned int rtl8169_rx_config =
  471. (RX_FIFO_THRESH << RxCfgFIFOShift) | (RX_DMA_BURST << RxCfgDMAShift);
  472. static void mdio_write(void __iomem *ioaddr, int reg_addr, int value)
  473. {
  474. int i;
  475. RTL_W32(PHYAR, 0x80000000 | (reg_addr & 0x1f) << 16 | (value & 0xffff));
  476. for (i = 20; i > 0; i--) {
  477. /*
  478. * Check if the RTL8169 has completed writing to the specified
  479. * MII register.
  480. */
  481. if (!(RTL_R32(PHYAR) & 0x80000000))
  482. break;
  483. udelay(25);
  484. }
  485. }
  486. static int mdio_read(void __iomem *ioaddr, int reg_addr)
  487. {
  488. int i, value = -1;
  489. RTL_W32(PHYAR, 0x0 | (reg_addr & 0x1f) << 16);
  490. for (i = 20; i > 0; i--) {
  491. /*
  492. * Check if the RTL8169 has completed retrieving data from
  493. * the specified MII register.
  494. */
  495. if (RTL_R32(PHYAR) & 0x80000000) {
  496. value = RTL_R32(PHYAR) & 0xffff;
  497. break;
  498. }
  499. udelay(25);
  500. }
  501. return value;
  502. }
  503. static void mdio_patch(void __iomem *ioaddr, int reg_addr, int value)
  504. {
  505. mdio_write(ioaddr, reg_addr, mdio_read(ioaddr, reg_addr) | value);
  506. }
  507. static void rtl_mdio_write(struct net_device *dev, int phy_id, int location,
  508. int val)
  509. {
  510. struct rtl8169_private *tp = netdev_priv(dev);
  511. void __iomem *ioaddr = tp->mmio_addr;
  512. mdio_write(ioaddr, location, val);
  513. }
  514. static int rtl_mdio_read(struct net_device *dev, int phy_id, int location)
  515. {
  516. struct rtl8169_private *tp = netdev_priv(dev);
  517. void __iomem *ioaddr = tp->mmio_addr;
  518. return mdio_read(ioaddr, location);
  519. }
  520. static void rtl_ephy_write(void __iomem *ioaddr, int reg_addr, int value)
  521. {
  522. unsigned int i;
  523. RTL_W32(EPHYAR, EPHYAR_WRITE_CMD | (value & EPHYAR_DATA_MASK) |
  524. (reg_addr & EPHYAR_REG_MASK) << EPHYAR_REG_SHIFT);
  525. for (i = 0; i < 100; i++) {
  526. if (!(RTL_R32(EPHYAR) & EPHYAR_FLAG))
  527. break;
  528. udelay(10);
  529. }
  530. }
  531. static u16 rtl_ephy_read(void __iomem *ioaddr, int reg_addr)
  532. {
  533. u16 value = 0xffff;
  534. unsigned int i;
  535. RTL_W32(EPHYAR, (reg_addr & EPHYAR_REG_MASK) << EPHYAR_REG_SHIFT);
  536. for (i = 0; i < 100; i++) {
  537. if (RTL_R32(EPHYAR) & EPHYAR_FLAG) {
  538. value = RTL_R32(EPHYAR) & EPHYAR_DATA_MASK;
  539. break;
  540. }
  541. udelay(10);
  542. }
  543. return value;
  544. }
  545. static void rtl_csi_write(void __iomem *ioaddr, int addr, int value)
  546. {
  547. unsigned int i;
  548. RTL_W32(CSIDR, value);
  549. RTL_W32(CSIAR, CSIAR_WRITE_CMD | (addr & CSIAR_ADDR_MASK) |
  550. CSIAR_BYTE_ENABLE << CSIAR_BYTE_ENABLE_SHIFT);
  551. for (i = 0; i < 100; i++) {
  552. if (!(RTL_R32(CSIAR) & CSIAR_FLAG))
  553. break;
  554. udelay(10);
  555. }
  556. }
  557. static u32 rtl_csi_read(void __iomem *ioaddr, int addr)
  558. {
  559. u32 value = ~0x00;
  560. unsigned int i;
  561. RTL_W32(CSIAR, (addr & CSIAR_ADDR_MASK) |
  562. CSIAR_BYTE_ENABLE << CSIAR_BYTE_ENABLE_SHIFT);
  563. for (i = 0; i < 100; i++) {
  564. if (RTL_R32(CSIAR) & CSIAR_FLAG) {
  565. value = RTL_R32(CSIDR);
  566. break;
  567. }
  568. udelay(10);
  569. }
  570. return value;
  571. }
  572. static void rtl8169_irq_mask_and_ack(void __iomem *ioaddr)
  573. {
  574. RTL_W16(IntrMask, 0x0000);
  575. RTL_W16(IntrStatus, 0xffff);
  576. }
  577. static void rtl8169_asic_down(void __iomem *ioaddr)
  578. {
  579. RTL_W8(ChipCmd, 0x00);
  580. rtl8169_irq_mask_and_ack(ioaddr);
  581. RTL_R16(CPlusCmd);
  582. }
  583. static unsigned int rtl8169_tbi_reset_pending(void __iomem *ioaddr)
  584. {
  585. return RTL_R32(TBICSR) & TBIReset;
  586. }
  587. static unsigned int rtl8169_xmii_reset_pending(void __iomem *ioaddr)
  588. {
  589. return mdio_read(ioaddr, MII_BMCR) & BMCR_RESET;
  590. }
  591. static unsigned int rtl8169_tbi_link_ok(void __iomem *ioaddr)
  592. {
  593. return RTL_R32(TBICSR) & TBILinkOk;
  594. }
  595. static unsigned int rtl8169_xmii_link_ok(void __iomem *ioaddr)
  596. {
  597. return RTL_R8(PHYstatus) & LinkStatus;
  598. }
  599. static void rtl8169_tbi_reset_enable(void __iomem *ioaddr)
  600. {
  601. RTL_W32(TBICSR, RTL_R32(TBICSR) | TBIReset);
  602. }
  603. static void rtl8169_xmii_reset_enable(void __iomem *ioaddr)
  604. {
  605. unsigned int val;
  606. val = mdio_read(ioaddr, MII_BMCR) | BMCR_RESET;
  607. mdio_write(ioaddr, MII_BMCR, val & 0xffff);
  608. }
  609. static void rtl8169_check_link_status(struct net_device *dev,
  610. struct rtl8169_private *tp,
  611. void __iomem *ioaddr)
  612. {
  613. unsigned long flags;
  614. spin_lock_irqsave(&tp->lock, flags);
  615. if (tp->link_ok(ioaddr)) {
  616. netif_carrier_on(dev);
  617. if (netif_msg_ifup(tp))
  618. printk(KERN_INFO PFX "%s: link up\n", dev->name);
  619. } else {
  620. if (netif_msg_ifdown(tp))
  621. printk(KERN_INFO PFX "%s: link down\n", dev->name);
  622. netif_carrier_off(dev);
  623. }
  624. spin_unlock_irqrestore(&tp->lock, flags);
  625. }
  626. static void rtl8169_get_wol(struct net_device *dev, struct ethtool_wolinfo *wol)
  627. {
  628. struct rtl8169_private *tp = netdev_priv(dev);
  629. void __iomem *ioaddr = tp->mmio_addr;
  630. u8 options;
  631. wol->wolopts = 0;
  632. #define WAKE_ANY (WAKE_PHY | WAKE_MAGIC | WAKE_UCAST | WAKE_BCAST | WAKE_MCAST)
  633. wol->supported = WAKE_ANY;
  634. spin_lock_irq(&tp->lock);
  635. options = RTL_R8(Config1);
  636. if (!(options & PMEnable))
  637. goto out_unlock;
  638. options = RTL_R8(Config3);
  639. if (options & LinkUp)
  640. wol->wolopts |= WAKE_PHY;
  641. if (options & MagicPacket)
  642. wol->wolopts |= WAKE_MAGIC;
  643. options = RTL_R8(Config5);
  644. if (options & UWF)
  645. wol->wolopts |= WAKE_UCAST;
  646. if (options & BWF)
  647. wol->wolopts |= WAKE_BCAST;
  648. if (options & MWF)
  649. wol->wolopts |= WAKE_MCAST;
  650. out_unlock:
  651. spin_unlock_irq(&tp->lock);
  652. }
  653. static int rtl8169_set_wol(struct net_device *dev, struct ethtool_wolinfo *wol)
  654. {
  655. struct rtl8169_private *tp = netdev_priv(dev);
  656. void __iomem *ioaddr = tp->mmio_addr;
  657. unsigned int i;
  658. static struct {
  659. u32 opt;
  660. u16 reg;
  661. u8 mask;
  662. } cfg[] = {
  663. { WAKE_ANY, Config1, PMEnable },
  664. { WAKE_PHY, Config3, LinkUp },
  665. { WAKE_MAGIC, Config3, MagicPacket },
  666. { WAKE_UCAST, Config5, UWF },
  667. { WAKE_BCAST, Config5, BWF },
  668. { WAKE_MCAST, Config5, MWF },
  669. { WAKE_ANY, Config5, LanWake }
  670. };
  671. spin_lock_irq(&tp->lock);
  672. RTL_W8(Cfg9346, Cfg9346_Unlock);
  673. for (i = 0; i < ARRAY_SIZE(cfg); i++) {
  674. u8 options = RTL_R8(cfg[i].reg) & ~cfg[i].mask;
  675. if (wol->wolopts & cfg[i].opt)
  676. options |= cfg[i].mask;
  677. RTL_W8(cfg[i].reg, options);
  678. }
  679. RTL_W8(Cfg9346, Cfg9346_Lock);
  680. if (wol->wolopts)
  681. tp->features |= RTL_FEATURE_WOL;
  682. else
  683. tp->features &= ~RTL_FEATURE_WOL;
  684. device_set_wakeup_enable(&tp->pci_dev->dev, wol->wolopts);
  685. spin_unlock_irq(&tp->lock);
  686. return 0;
  687. }
  688. static void rtl8169_get_drvinfo(struct net_device *dev,
  689. struct ethtool_drvinfo *info)
  690. {
  691. struct rtl8169_private *tp = netdev_priv(dev);
  692. strcpy(info->driver, MODULENAME);
  693. strcpy(info->version, RTL8169_VERSION);
  694. strcpy(info->bus_info, pci_name(tp->pci_dev));
  695. }
  696. static int rtl8169_get_regs_len(struct net_device *dev)
  697. {
  698. return R8169_REGS_SIZE;
  699. }
  700. static int rtl8169_set_speed_tbi(struct net_device *dev,
  701. u8 autoneg, u16 speed, u8 duplex)
  702. {
  703. struct rtl8169_private *tp = netdev_priv(dev);
  704. void __iomem *ioaddr = tp->mmio_addr;
  705. int ret = 0;
  706. u32 reg;
  707. reg = RTL_R32(TBICSR);
  708. if ((autoneg == AUTONEG_DISABLE) && (speed == SPEED_1000) &&
  709. (duplex == DUPLEX_FULL)) {
  710. RTL_W32(TBICSR, reg & ~(TBINwEnable | TBINwRestart));
  711. } else if (autoneg == AUTONEG_ENABLE)
  712. RTL_W32(TBICSR, reg | TBINwEnable | TBINwRestart);
  713. else {
  714. if (netif_msg_link(tp)) {
  715. printk(KERN_WARNING "%s: "
  716. "incorrect speed setting refused in TBI mode\n",
  717. dev->name);
  718. }
  719. ret = -EOPNOTSUPP;
  720. }
  721. return ret;
  722. }
  723. static int rtl8169_set_speed_xmii(struct net_device *dev,
  724. u8 autoneg, u16 speed, u8 duplex)
  725. {
  726. struct rtl8169_private *tp = netdev_priv(dev);
  727. void __iomem *ioaddr = tp->mmio_addr;
  728. int auto_nego, giga_ctrl;
  729. auto_nego = mdio_read(ioaddr, MII_ADVERTISE);
  730. auto_nego &= ~(ADVERTISE_10HALF | ADVERTISE_10FULL |
  731. ADVERTISE_100HALF | ADVERTISE_100FULL);
  732. giga_ctrl = mdio_read(ioaddr, MII_CTRL1000);
  733. giga_ctrl &= ~(ADVERTISE_1000FULL | ADVERTISE_1000HALF);
  734. if (autoneg == AUTONEG_ENABLE) {
  735. auto_nego |= (ADVERTISE_10HALF | ADVERTISE_10FULL |
  736. ADVERTISE_100HALF | ADVERTISE_100FULL);
  737. giga_ctrl |= ADVERTISE_1000FULL | ADVERTISE_1000HALF;
  738. } else {
  739. if (speed == SPEED_10)
  740. auto_nego |= ADVERTISE_10HALF | ADVERTISE_10FULL;
  741. else if (speed == SPEED_100)
  742. auto_nego |= ADVERTISE_100HALF | ADVERTISE_100FULL;
  743. else if (speed == SPEED_1000)
  744. giga_ctrl |= ADVERTISE_1000FULL | ADVERTISE_1000HALF;
  745. if (duplex == DUPLEX_HALF)
  746. auto_nego &= ~(ADVERTISE_10FULL | ADVERTISE_100FULL);
  747. if (duplex == DUPLEX_FULL)
  748. auto_nego &= ~(ADVERTISE_10HALF | ADVERTISE_100HALF);
  749. /* This tweak comes straight from Realtek's driver. */
  750. if ((speed == SPEED_100) && (duplex == DUPLEX_HALF) &&
  751. ((tp->mac_version == RTL_GIGA_MAC_VER_13) ||
  752. (tp->mac_version == RTL_GIGA_MAC_VER_16))) {
  753. auto_nego = ADVERTISE_100HALF | ADVERTISE_CSMA;
  754. }
  755. }
  756. /* The 8100e/8101e/8102e do Fast Ethernet only. */
  757. if ((tp->mac_version == RTL_GIGA_MAC_VER_07) ||
  758. (tp->mac_version == RTL_GIGA_MAC_VER_08) ||
  759. (tp->mac_version == RTL_GIGA_MAC_VER_09) ||
  760. (tp->mac_version == RTL_GIGA_MAC_VER_10) ||
  761. (tp->mac_version == RTL_GIGA_MAC_VER_13) ||
  762. (tp->mac_version == RTL_GIGA_MAC_VER_14) ||
  763. (tp->mac_version == RTL_GIGA_MAC_VER_15) ||
  764. (tp->mac_version == RTL_GIGA_MAC_VER_16)) {
  765. if ((giga_ctrl & (ADVERTISE_1000FULL | ADVERTISE_1000HALF)) &&
  766. netif_msg_link(tp)) {
  767. printk(KERN_INFO "%s: PHY does not support 1000Mbps.\n",
  768. dev->name);
  769. }
  770. giga_ctrl &= ~(ADVERTISE_1000FULL | ADVERTISE_1000HALF);
  771. }
  772. auto_nego |= ADVERTISE_PAUSE_CAP | ADVERTISE_PAUSE_ASYM;
  773. if ((tp->mac_version == RTL_GIGA_MAC_VER_11) ||
  774. (tp->mac_version == RTL_GIGA_MAC_VER_12) ||
  775. (tp->mac_version >= RTL_GIGA_MAC_VER_17)) {
  776. /*
  777. * Wake up the PHY.
  778. * Vendor specific (0x1f) and reserved (0x0e) MII registers.
  779. */
  780. mdio_write(ioaddr, 0x1f, 0x0000);
  781. mdio_write(ioaddr, 0x0e, 0x0000);
  782. }
  783. tp->phy_auto_nego_reg = auto_nego;
  784. tp->phy_1000_ctrl_reg = giga_ctrl;
  785. mdio_write(ioaddr, MII_ADVERTISE, auto_nego);
  786. mdio_write(ioaddr, MII_CTRL1000, giga_ctrl);
  787. mdio_write(ioaddr, MII_BMCR, BMCR_ANENABLE | BMCR_ANRESTART);
  788. return 0;
  789. }
  790. static int rtl8169_set_speed(struct net_device *dev,
  791. u8 autoneg, u16 speed, u8 duplex)
  792. {
  793. struct rtl8169_private *tp = netdev_priv(dev);
  794. int ret;
  795. ret = tp->set_speed(dev, autoneg, speed, duplex);
  796. if (netif_running(dev) && (tp->phy_1000_ctrl_reg & ADVERTISE_1000FULL))
  797. mod_timer(&tp->timer, jiffies + RTL8169_PHY_TIMEOUT);
  798. return ret;
  799. }
  800. static int rtl8169_set_settings(struct net_device *dev, struct ethtool_cmd *cmd)
  801. {
  802. struct rtl8169_private *tp = netdev_priv(dev);
  803. unsigned long flags;
  804. int ret;
  805. spin_lock_irqsave(&tp->lock, flags);
  806. ret = rtl8169_set_speed(dev, cmd->autoneg, cmd->speed, cmd->duplex);
  807. spin_unlock_irqrestore(&tp->lock, flags);
  808. return ret;
  809. }
  810. static u32 rtl8169_get_rx_csum(struct net_device *dev)
  811. {
  812. struct rtl8169_private *tp = netdev_priv(dev);
  813. return tp->cp_cmd & RxChkSum;
  814. }
  815. static int rtl8169_set_rx_csum(struct net_device *dev, u32 data)
  816. {
  817. struct rtl8169_private *tp = netdev_priv(dev);
  818. void __iomem *ioaddr = tp->mmio_addr;
  819. unsigned long flags;
  820. spin_lock_irqsave(&tp->lock, flags);
  821. if (data)
  822. tp->cp_cmd |= RxChkSum;
  823. else
  824. tp->cp_cmd &= ~RxChkSum;
  825. RTL_W16(CPlusCmd, tp->cp_cmd);
  826. RTL_R16(CPlusCmd);
  827. spin_unlock_irqrestore(&tp->lock, flags);
  828. return 0;
  829. }
  830. #ifdef CONFIG_R8169_VLAN
  831. static inline u32 rtl8169_tx_vlan_tag(struct rtl8169_private *tp,
  832. struct sk_buff *skb)
  833. {
  834. return (tp->vlgrp && vlan_tx_tag_present(skb)) ?
  835. TxVlanTag | swab16(vlan_tx_tag_get(skb)) : 0x00;
  836. }
  837. static void rtl8169_vlan_rx_register(struct net_device *dev,
  838. struct vlan_group *grp)
  839. {
  840. struct rtl8169_private *tp = netdev_priv(dev);
  841. void __iomem *ioaddr = tp->mmio_addr;
  842. unsigned long flags;
  843. spin_lock_irqsave(&tp->lock, flags);
  844. tp->vlgrp = grp;
  845. if (tp->vlgrp)
  846. tp->cp_cmd |= RxVlan;
  847. else
  848. tp->cp_cmd &= ~RxVlan;
  849. RTL_W16(CPlusCmd, tp->cp_cmd);
  850. RTL_R16(CPlusCmd);
  851. spin_unlock_irqrestore(&tp->lock, flags);
  852. }
  853. static int rtl8169_rx_vlan_skb(struct rtl8169_private *tp, struct RxDesc *desc,
  854. struct sk_buff *skb)
  855. {
  856. u32 opts2 = le32_to_cpu(desc->opts2);
  857. struct vlan_group *vlgrp = tp->vlgrp;
  858. int ret;
  859. if (vlgrp && (opts2 & RxVlanTag)) {
  860. vlan_hwaccel_receive_skb(skb, vlgrp, swab16(opts2 & 0xffff));
  861. ret = 0;
  862. } else
  863. ret = -1;
  864. desc->opts2 = 0;
  865. return ret;
  866. }
  867. #else /* !CONFIG_R8169_VLAN */
  868. static inline u32 rtl8169_tx_vlan_tag(struct rtl8169_private *tp,
  869. struct sk_buff *skb)
  870. {
  871. return 0;
  872. }
  873. static int rtl8169_rx_vlan_skb(struct rtl8169_private *tp, struct RxDesc *desc,
  874. struct sk_buff *skb)
  875. {
  876. return -1;
  877. }
  878. #endif
  879. static int rtl8169_gset_tbi(struct net_device *dev, struct ethtool_cmd *cmd)
  880. {
  881. struct rtl8169_private *tp = netdev_priv(dev);
  882. void __iomem *ioaddr = tp->mmio_addr;
  883. u32 status;
  884. cmd->supported =
  885. SUPPORTED_1000baseT_Full | SUPPORTED_Autoneg | SUPPORTED_FIBRE;
  886. cmd->port = PORT_FIBRE;
  887. cmd->transceiver = XCVR_INTERNAL;
  888. status = RTL_R32(TBICSR);
  889. cmd->advertising = (status & TBINwEnable) ? ADVERTISED_Autoneg : 0;
  890. cmd->autoneg = !!(status & TBINwEnable);
  891. cmd->speed = SPEED_1000;
  892. cmd->duplex = DUPLEX_FULL; /* Always set */
  893. return 0;
  894. }
  895. static int rtl8169_gset_xmii(struct net_device *dev, struct ethtool_cmd *cmd)
  896. {
  897. struct rtl8169_private *tp = netdev_priv(dev);
  898. return mii_ethtool_gset(&tp->mii, cmd);
  899. }
  900. static int rtl8169_get_settings(struct net_device *dev, struct ethtool_cmd *cmd)
  901. {
  902. struct rtl8169_private *tp = netdev_priv(dev);
  903. unsigned long flags;
  904. int rc;
  905. spin_lock_irqsave(&tp->lock, flags);
  906. rc = tp->get_settings(dev, cmd);
  907. spin_unlock_irqrestore(&tp->lock, flags);
  908. return rc;
  909. }
  910. static void rtl8169_get_regs(struct net_device *dev, struct ethtool_regs *regs,
  911. void *p)
  912. {
  913. struct rtl8169_private *tp = netdev_priv(dev);
  914. unsigned long flags;
  915. if (regs->len > R8169_REGS_SIZE)
  916. regs->len = R8169_REGS_SIZE;
  917. spin_lock_irqsave(&tp->lock, flags);
  918. memcpy_fromio(p, tp->mmio_addr, regs->len);
  919. spin_unlock_irqrestore(&tp->lock, flags);
  920. }
  921. static u32 rtl8169_get_msglevel(struct net_device *dev)
  922. {
  923. struct rtl8169_private *tp = netdev_priv(dev);
  924. return tp->msg_enable;
  925. }
  926. static void rtl8169_set_msglevel(struct net_device *dev, u32 value)
  927. {
  928. struct rtl8169_private *tp = netdev_priv(dev);
  929. tp->msg_enable = value;
  930. }
  931. static const char rtl8169_gstrings[][ETH_GSTRING_LEN] = {
  932. "tx_packets",
  933. "rx_packets",
  934. "tx_errors",
  935. "rx_errors",
  936. "rx_missed",
  937. "align_errors",
  938. "tx_single_collisions",
  939. "tx_multi_collisions",
  940. "unicast",
  941. "broadcast",
  942. "multicast",
  943. "tx_aborted",
  944. "tx_underrun",
  945. };
  946. static int rtl8169_get_sset_count(struct net_device *dev, int sset)
  947. {
  948. switch (sset) {
  949. case ETH_SS_STATS:
  950. return ARRAY_SIZE(rtl8169_gstrings);
  951. default:
  952. return -EOPNOTSUPP;
  953. }
  954. }
  955. static void rtl8169_update_counters(struct net_device *dev)
  956. {
  957. struct rtl8169_private *tp = netdev_priv(dev);
  958. void __iomem *ioaddr = tp->mmio_addr;
  959. struct rtl8169_counters *counters;
  960. dma_addr_t paddr;
  961. u32 cmd;
  962. int wait = 1000;
  963. /*
  964. * Some chips are unable to dump tally counters when the receiver
  965. * is disabled.
  966. */
  967. if ((RTL_R8(ChipCmd) & CmdRxEnb) == 0)
  968. return;
  969. counters = pci_alloc_consistent(tp->pci_dev, sizeof(*counters), &paddr);
  970. if (!counters)
  971. return;
  972. RTL_W32(CounterAddrHigh, (u64)paddr >> 32);
  973. cmd = (u64)paddr & DMA_BIT_MASK(32);
  974. RTL_W32(CounterAddrLow, cmd);
  975. RTL_W32(CounterAddrLow, cmd | CounterDump);
  976. while (wait--) {
  977. if ((RTL_R32(CounterAddrLow) & CounterDump) == 0) {
  978. /* copy updated counters */
  979. memcpy(&tp->counters, counters, sizeof(*counters));
  980. break;
  981. }
  982. udelay(10);
  983. }
  984. RTL_W32(CounterAddrLow, 0);
  985. RTL_W32(CounterAddrHigh, 0);
  986. pci_free_consistent(tp->pci_dev, sizeof(*counters), counters, paddr);
  987. }
  988. static void rtl8169_get_ethtool_stats(struct net_device *dev,
  989. struct ethtool_stats *stats, u64 *data)
  990. {
  991. struct rtl8169_private *tp = netdev_priv(dev);
  992. ASSERT_RTNL();
  993. rtl8169_update_counters(dev);
  994. data[0] = le64_to_cpu(tp->counters.tx_packets);
  995. data[1] = le64_to_cpu(tp->counters.rx_packets);
  996. data[2] = le64_to_cpu(tp->counters.tx_errors);
  997. data[3] = le32_to_cpu(tp->counters.rx_errors);
  998. data[4] = le16_to_cpu(tp->counters.rx_missed);
  999. data[5] = le16_to_cpu(tp->counters.align_errors);
  1000. data[6] = le32_to_cpu(tp->counters.tx_one_collision);
  1001. data[7] = le32_to_cpu(tp->counters.tx_multi_collision);
  1002. data[8] = le64_to_cpu(tp->counters.rx_unicast);
  1003. data[9] = le64_to_cpu(tp->counters.rx_broadcast);
  1004. data[10] = le32_to_cpu(tp->counters.rx_multicast);
  1005. data[11] = le16_to_cpu(tp->counters.tx_aborted);
  1006. data[12] = le16_to_cpu(tp->counters.tx_underun);
  1007. }
  1008. static void rtl8169_get_strings(struct net_device *dev, u32 stringset, u8 *data)
  1009. {
  1010. switch(stringset) {
  1011. case ETH_SS_STATS:
  1012. memcpy(data, *rtl8169_gstrings, sizeof(rtl8169_gstrings));
  1013. break;
  1014. }
  1015. }
  1016. static const struct ethtool_ops rtl8169_ethtool_ops = {
  1017. .get_drvinfo = rtl8169_get_drvinfo,
  1018. .get_regs_len = rtl8169_get_regs_len,
  1019. .get_link = ethtool_op_get_link,
  1020. .get_settings = rtl8169_get_settings,
  1021. .set_settings = rtl8169_set_settings,
  1022. .get_msglevel = rtl8169_get_msglevel,
  1023. .set_msglevel = rtl8169_set_msglevel,
  1024. .get_rx_csum = rtl8169_get_rx_csum,
  1025. .set_rx_csum = rtl8169_set_rx_csum,
  1026. .set_tx_csum = ethtool_op_set_tx_csum,
  1027. .set_sg = ethtool_op_set_sg,
  1028. .set_tso = ethtool_op_set_tso,
  1029. .get_regs = rtl8169_get_regs,
  1030. .get_wol = rtl8169_get_wol,
  1031. .set_wol = rtl8169_set_wol,
  1032. .get_strings = rtl8169_get_strings,
  1033. .get_sset_count = rtl8169_get_sset_count,
  1034. .get_ethtool_stats = rtl8169_get_ethtool_stats,
  1035. };
  1036. static void rtl8169_write_gmii_reg_bit(void __iomem *ioaddr, int reg,
  1037. int bitnum, int bitval)
  1038. {
  1039. int val;
  1040. val = mdio_read(ioaddr, reg);
  1041. val = (bitval == 1) ?
  1042. val | (bitval << bitnum) : val & ~(0x0001 << bitnum);
  1043. mdio_write(ioaddr, reg, val & 0xffff);
  1044. }
  1045. static void rtl8169_get_mac_version(struct rtl8169_private *tp,
  1046. void __iomem *ioaddr)
  1047. {
  1048. /*
  1049. * The driver currently handles the 8168Bf and the 8168Be identically
  1050. * but they can be identified more specifically through the test below
  1051. * if needed:
  1052. *
  1053. * (RTL_R32(TxConfig) & 0x700000) == 0x500000 ? 8168Bf : 8168Be
  1054. *
  1055. * Same thing for the 8101Eb and the 8101Ec:
  1056. *
  1057. * (RTL_R32(TxConfig) & 0x700000) == 0x200000 ? 8101Eb : 8101Ec
  1058. */
  1059. const struct {
  1060. u32 mask;
  1061. u32 val;
  1062. int mac_version;
  1063. } mac_info[] = {
  1064. /* 8168D family. */
  1065. { 0x7c800000, 0x28000000, RTL_GIGA_MAC_VER_25 },
  1066. /* 8168C family. */
  1067. { 0x7cf00000, 0x3ca00000, RTL_GIGA_MAC_VER_24 },
  1068. { 0x7cf00000, 0x3c900000, RTL_GIGA_MAC_VER_23 },
  1069. { 0x7cf00000, 0x3c800000, RTL_GIGA_MAC_VER_18 },
  1070. { 0x7c800000, 0x3c800000, RTL_GIGA_MAC_VER_24 },
  1071. { 0x7cf00000, 0x3c000000, RTL_GIGA_MAC_VER_19 },
  1072. { 0x7cf00000, 0x3c200000, RTL_GIGA_MAC_VER_20 },
  1073. { 0x7cf00000, 0x3c300000, RTL_GIGA_MAC_VER_21 },
  1074. { 0x7cf00000, 0x3c400000, RTL_GIGA_MAC_VER_22 },
  1075. { 0x7c800000, 0x3c000000, RTL_GIGA_MAC_VER_22 },
  1076. /* 8168B family. */
  1077. { 0x7cf00000, 0x38000000, RTL_GIGA_MAC_VER_12 },
  1078. { 0x7cf00000, 0x38500000, RTL_GIGA_MAC_VER_17 },
  1079. { 0x7c800000, 0x38000000, RTL_GIGA_MAC_VER_17 },
  1080. { 0x7c800000, 0x30000000, RTL_GIGA_MAC_VER_11 },
  1081. /* 8101 family. */
  1082. { 0x7cf00000, 0x34a00000, RTL_GIGA_MAC_VER_09 },
  1083. { 0x7cf00000, 0x24a00000, RTL_GIGA_MAC_VER_09 },
  1084. { 0x7cf00000, 0x34900000, RTL_GIGA_MAC_VER_08 },
  1085. { 0x7cf00000, 0x24900000, RTL_GIGA_MAC_VER_08 },
  1086. { 0x7cf00000, 0x34800000, RTL_GIGA_MAC_VER_07 },
  1087. { 0x7cf00000, 0x24800000, RTL_GIGA_MAC_VER_07 },
  1088. { 0x7cf00000, 0x34000000, RTL_GIGA_MAC_VER_13 },
  1089. { 0x7cf00000, 0x34300000, RTL_GIGA_MAC_VER_10 },
  1090. { 0x7cf00000, 0x34200000, RTL_GIGA_MAC_VER_16 },
  1091. { 0x7c800000, 0x34800000, RTL_GIGA_MAC_VER_09 },
  1092. { 0x7c800000, 0x24800000, RTL_GIGA_MAC_VER_09 },
  1093. { 0x7c800000, 0x34000000, RTL_GIGA_MAC_VER_16 },
  1094. /* FIXME: where did these entries come from ? -- FR */
  1095. { 0xfc800000, 0x38800000, RTL_GIGA_MAC_VER_15 },
  1096. { 0xfc800000, 0x30800000, RTL_GIGA_MAC_VER_14 },
  1097. /* 8110 family. */
  1098. { 0xfc800000, 0x98000000, RTL_GIGA_MAC_VER_06 },
  1099. { 0xfc800000, 0x18000000, RTL_GIGA_MAC_VER_05 },
  1100. { 0xfc800000, 0x10000000, RTL_GIGA_MAC_VER_04 },
  1101. { 0xfc800000, 0x04000000, RTL_GIGA_MAC_VER_03 },
  1102. { 0xfc800000, 0x00800000, RTL_GIGA_MAC_VER_02 },
  1103. { 0xfc800000, 0x00000000, RTL_GIGA_MAC_VER_01 },
  1104. { 0x00000000, 0x00000000, RTL_GIGA_MAC_VER_01 } /* Catch-all */
  1105. }, *p = mac_info;
  1106. u32 reg;
  1107. reg = RTL_R32(TxConfig);
  1108. while ((reg & p->mask) != p->val)
  1109. p++;
  1110. tp->mac_version = p->mac_version;
  1111. if (p->mask == 0x00000000) {
  1112. struct pci_dev *pdev = tp->pci_dev;
  1113. dev_info(&pdev->dev, "unknown MAC (%08x)\n", reg);
  1114. }
  1115. }
  1116. static void rtl8169_print_mac_version(struct rtl8169_private *tp)
  1117. {
  1118. dprintk("mac_version = 0x%02x\n", tp->mac_version);
  1119. }
  1120. struct phy_reg {
  1121. u16 reg;
  1122. u16 val;
  1123. };
  1124. static void rtl_phy_write(void __iomem *ioaddr, struct phy_reg *regs, int len)
  1125. {
  1126. while (len-- > 0) {
  1127. mdio_write(ioaddr, regs->reg, regs->val);
  1128. regs++;
  1129. }
  1130. }
  1131. static void rtl8169s_hw_phy_config(void __iomem *ioaddr)
  1132. {
  1133. struct {
  1134. u16 regs[5]; /* Beware of bit-sign propagation */
  1135. } phy_magic[5] = { {
  1136. { 0x0000, //w 4 15 12 0
  1137. 0x00a1, //w 3 15 0 00a1
  1138. 0x0008, //w 2 15 0 0008
  1139. 0x1020, //w 1 15 0 1020
  1140. 0x1000 } },{ //w 0 15 0 1000
  1141. { 0x7000, //w 4 15 12 7
  1142. 0xff41, //w 3 15 0 ff41
  1143. 0xde60, //w 2 15 0 de60
  1144. 0x0140, //w 1 15 0 0140
  1145. 0x0077 } },{ //w 0 15 0 0077
  1146. { 0xa000, //w 4 15 12 a
  1147. 0xdf01, //w 3 15 0 df01
  1148. 0xdf20, //w 2 15 0 df20
  1149. 0xff95, //w 1 15 0 ff95
  1150. 0xfa00 } },{ //w 0 15 0 fa00
  1151. { 0xb000, //w 4 15 12 b
  1152. 0xff41, //w 3 15 0 ff41
  1153. 0xde20, //w 2 15 0 de20
  1154. 0x0140, //w 1 15 0 0140
  1155. 0x00bb } },{ //w 0 15 0 00bb
  1156. { 0xf000, //w 4 15 12 f
  1157. 0xdf01, //w 3 15 0 df01
  1158. 0xdf20, //w 2 15 0 df20
  1159. 0xff95, //w 1 15 0 ff95
  1160. 0xbf00 } //w 0 15 0 bf00
  1161. }
  1162. }, *p = phy_magic;
  1163. unsigned int i;
  1164. mdio_write(ioaddr, 0x1f, 0x0001); //w 31 2 0 1
  1165. mdio_write(ioaddr, 0x15, 0x1000); //w 21 15 0 1000
  1166. mdio_write(ioaddr, 0x18, 0x65c7); //w 24 15 0 65c7
  1167. rtl8169_write_gmii_reg_bit(ioaddr, 4, 11, 0); //w 4 11 11 0
  1168. for (i = 0; i < ARRAY_SIZE(phy_magic); i++, p++) {
  1169. int val, pos = 4;
  1170. val = (mdio_read(ioaddr, pos) & 0x0fff) | (p->regs[0] & 0xffff);
  1171. mdio_write(ioaddr, pos, val);
  1172. while (--pos >= 0)
  1173. mdio_write(ioaddr, pos, p->regs[4 - pos] & 0xffff);
  1174. rtl8169_write_gmii_reg_bit(ioaddr, 4, 11, 1); //w 4 11 11 1
  1175. rtl8169_write_gmii_reg_bit(ioaddr, 4, 11, 0); //w 4 11 11 0
  1176. }
  1177. mdio_write(ioaddr, 0x1f, 0x0000); //w 31 2 0 0
  1178. }
  1179. static void rtl8169sb_hw_phy_config(void __iomem *ioaddr)
  1180. {
  1181. struct phy_reg phy_reg_init[] = {
  1182. { 0x1f, 0x0002 },
  1183. { 0x01, 0x90d0 },
  1184. { 0x1f, 0x0000 }
  1185. };
  1186. rtl_phy_write(ioaddr, phy_reg_init, ARRAY_SIZE(phy_reg_init));
  1187. }
  1188. static void rtl8168bb_hw_phy_config(void __iomem *ioaddr)
  1189. {
  1190. struct phy_reg phy_reg_init[] = {
  1191. { 0x10, 0xf41b },
  1192. { 0x1f, 0x0000 }
  1193. };
  1194. mdio_write(ioaddr, 0x1f, 0x0001);
  1195. mdio_patch(ioaddr, 0x16, 1 << 0);
  1196. rtl_phy_write(ioaddr, phy_reg_init, ARRAY_SIZE(phy_reg_init));
  1197. }
  1198. static void rtl8168bef_hw_phy_config(void __iomem *ioaddr)
  1199. {
  1200. struct phy_reg phy_reg_init[] = {
  1201. { 0x1f, 0x0001 },
  1202. { 0x10, 0xf41b },
  1203. { 0x1f, 0x0000 }
  1204. };
  1205. rtl_phy_write(ioaddr, phy_reg_init, ARRAY_SIZE(phy_reg_init));
  1206. }
  1207. static void rtl8168cp_1_hw_phy_config(void __iomem *ioaddr)
  1208. {
  1209. struct phy_reg phy_reg_init[] = {
  1210. { 0x1f, 0x0000 },
  1211. { 0x1d, 0x0f00 },
  1212. { 0x1f, 0x0002 },
  1213. { 0x0c, 0x1ec8 },
  1214. { 0x1f, 0x0000 }
  1215. };
  1216. rtl_phy_write(ioaddr, phy_reg_init, ARRAY_SIZE(phy_reg_init));
  1217. }
  1218. static void rtl8168cp_2_hw_phy_config(void __iomem *ioaddr)
  1219. {
  1220. struct phy_reg phy_reg_init[] = {
  1221. { 0x1f, 0x0001 },
  1222. { 0x1d, 0x3d98 },
  1223. { 0x1f, 0x0000 }
  1224. };
  1225. mdio_write(ioaddr, 0x1f, 0x0000);
  1226. mdio_patch(ioaddr, 0x14, 1 << 5);
  1227. mdio_patch(ioaddr, 0x0d, 1 << 5);
  1228. rtl_phy_write(ioaddr, phy_reg_init, ARRAY_SIZE(phy_reg_init));
  1229. }
  1230. static void rtl8168c_1_hw_phy_config(void __iomem *ioaddr)
  1231. {
  1232. struct phy_reg phy_reg_init[] = {
  1233. { 0x1f, 0x0001 },
  1234. { 0x12, 0x2300 },
  1235. { 0x1f, 0x0002 },
  1236. { 0x00, 0x88d4 },
  1237. { 0x01, 0x82b1 },
  1238. { 0x03, 0x7002 },
  1239. { 0x08, 0x9e30 },
  1240. { 0x09, 0x01f0 },
  1241. { 0x0a, 0x5500 },
  1242. { 0x0c, 0x00c8 },
  1243. { 0x1f, 0x0003 },
  1244. { 0x12, 0xc096 },
  1245. { 0x16, 0x000a },
  1246. { 0x1f, 0x0000 },
  1247. { 0x1f, 0x0000 },
  1248. { 0x09, 0x2000 },
  1249. { 0x09, 0x0000 }
  1250. };
  1251. rtl_phy_write(ioaddr, phy_reg_init, ARRAY_SIZE(phy_reg_init));
  1252. mdio_patch(ioaddr, 0x14, 1 << 5);
  1253. mdio_patch(ioaddr, 0x0d, 1 << 5);
  1254. mdio_write(ioaddr, 0x1f, 0x0000);
  1255. }
  1256. static void rtl8168c_2_hw_phy_config(void __iomem *ioaddr)
  1257. {
  1258. struct phy_reg phy_reg_init[] = {
  1259. { 0x1f, 0x0001 },
  1260. { 0x12, 0x2300 },
  1261. { 0x03, 0x802f },
  1262. { 0x02, 0x4f02 },
  1263. { 0x01, 0x0409 },
  1264. { 0x00, 0xf099 },
  1265. { 0x04, 0x9800 },
  1266. { 0x04, 0x9000 },
  1267. { 0x1d, 0x3d98 },
  1268. { 0x1f, 0x0002 },
  1269. { 0x0c, 0x7eb8 },
  1270. { 0x06, 0x0761 },
  1271. { 0x1f, 0x0003 },
  1272. { 0x16, 0x0f0a },
  1273. { 0x1f, 0x0000 }
  1274. };
  1275. rtl_phy_write(ioaddr, phy_reg_init, ARRAY_SIZE(phy_reg_init));
  1276. mdio_patch(ioaddr, 0x16, 1 << 0);
  1277. mdio_patch(ioaddr, 0x14, 1 << 5);
  1278. mdio_patch(ioaddr, 0x0d, 1 << 5);
  1279. mdio_write(ioaddr, 0x1f, 0x0000);
  1280. }
  1281. static void rtl8168c_3_hw_phy_config(void __iomem *ioaddr)
  1282. {
  1283. struct phy_reg phy_reg_init[] = {
  1284. { 0x1f, 0x0001 },
  1285. { 0x12, 0x2300 },
  1286. { 0x1d, 0x3d98 },
  1287. { 0x1f, 0x0002 },
  1288. { 0x0c, 0x7eb8 },
  1289. { 0x06, 0x5461 },
  1290. { 0x1f, 0x0003 },
  1291. { 0x16, 0x0f0a },
  1292. { 0x1f, 0x0000 }
  1293. };
  1294. rtl_phy_write(ioaddr, phy_reg_init, ARRAY_SIZE(phy_reg_init));
  1295. mdio_patch(ioaddr, 0x16, 1 << 0);
  1296. mdio_patch(ioaddr, 0x14, 1 << 5);
  1297. mdio_patch(ioaddr, 0x0d, 1 << 5);
  1298. mdio_write(ioaddr, 0x1f, 0x0000);
  1299. }
  1300. static void rtl8168c_4_hw_phy_config(void __iomem *ioaddr)
  1301. {
  1302. rtl8168c_3_hw_phy_config(ioaddr);
  1303. }
  1304. static void rtl8168d_hw_phy_config(void __iomem *ioaddr)
  1305. {
  1306. struct phy_reg phy_reg_init_0[] = {
  1307. { 0x1f, 0x0001 },
  1308. { 0x09, 0x2770 },
  1309. { 0x08, 0x04d0 },
  1310. { 0x0b, 0xad15 },
  1311. { 0x0c, 0x5bf0 },
  1312. { 0x1c, 0xf101 },
  1313. { 0x1f, 0x0003 },
  1314. { 0x14, 0x94d7 },
  1315. { 0x12, 0xf4d6 },
  1316. { 0x09, 0xca0f },
  1317. { 0x1f, 0x0002 },
  1318. { 0x0b, 0x0b10 },
  1319. { 0x0c, 0xd1f7 },
  1320. { 0x1f, 0x0002 },
  1321. { 0x06, 0x5461 },
  1322. { 0x1f, 0x0002 },
  1323. { 0x05, 0x6662 },
  1324. { 0x1f, 0x0000 },
  1325. { 0x14, 0x0060 },
  1326. { 0x1f, 0x0000 },
  1327. { 0x0d, 0xf8a0 },
  1328. { 0x1f, 0x0005 },
  1329. { 0x05, 0xffc2 }
  1330. };
  1331. rtl_phy_write(ioaddr, phy_reg_init_0, ARRAY_SIZE(phy_reg_init_0));
  1332. if (mdio_read(ioaddr, 0x06) == 0xc400) {
  1333. struct phy_reg phy_reg_init_1[] = {
  1334. { 0x1f, 0x0005 },
  1335. { 0x01, 0x0300 },
  1336. { 0x1f, 0x0000 },
  1337. { 0x11, 0x401c },
  1338. { 0x16, 0x4100 },
  1339. { 0x1f, 0x0005 },
  1340. { 0x07, 0x0010 },
  1341. { 0x05, 0x83dc },
  1342. { 0x06, 0x087d },
  1343. { 0x05, 0x8300 },
  1344. { 0x06, 0x0101 },
  1345. { 0x06, 0x05f8 },
  1346. { 0x06, 0xf9fa },
  1347. { 0x06, 0xfbef },
  1348. { 0x06, 0x79e2 },
  1349. { 0x06, 0x835f },
  1350. { 0x06, 0xe0f8 },
  1351. { 0x06, 0x9ae1 },
  1352. { 0x06, 0xf89b },
  1353. { 0x06, 0xef31 },
  1354. { 0x06, 0x3b65 },
  1355. { 0x06, 0xaa07 },
  1356. { 0x06, 0x81e4 },
  1357. { 0x06, 0xf89a },
  1358. { 0x06, 0xe5f8 },
  1359. { 0x06, 0x9baf },
  1360. { 0x06, 0x06ae },
  1361. { 0x05, 0x83dc },
  1362. { 0x06, 0x8300 },
  1363. };
  1364. rtl_phy_write(ioaddr, phy_reg_init_1,
  1365. ARRAY_SIZE(phy_reg_init_1));
  1366. }
  1367. mdio_write(ioaddr, 0x1f, 0x0000);
  1368. }
  1369. static void rtl8102e_hw_phy_config(void __iomem *ioaddr)
  1370. {
  1371. struct phy_reg phy_reg_init[] = {
  1372. { 0x1f, 0x0003 },
  1373. { 0x08, 0x441d },
  1374. { 0x01, 0x9100 },
  1375. { 0x1f, 0x0000 }
  1376. };
  1377. mdio_write(ioaddr, 0x1f, 0x0000);
  1378. mdio_patch(ioaddr, 0x11, 1 << 12);
  1379. mdio_patch(ioaddr, 0x19, 1 << 13);
  1380. rtl_phy_write(ioaddr, phy_reg_init, ARRAY_SIZE(phy_reg_init));
  1381. }
  1382. static void rtl_hw_phy_config(struct net_device *dev)
  1383. {
  1384. struct rtl8169_private *tp = netdev_priv(dev);
  1385. void __iomem *ioaddr = tp->mmio_addr;
  1386. rtl8169_print_mac_version(tp);
  1387. switch (tp->mac_version) {
  1388. case RTL_GIGA_MAC_VER_01:
  1389. break;
  1390. case RTL_GIGA_MAC_VER_02:
  1391. case RTL_GIGA_MAC_VER_03:
  1392. rtl8169s_hw_phy_config(ioaddr);
  1393. break;
  1394. case RTL_GIGA_MAC_VER_04:
  1395. rtl8169sb_hw_phy_config(ioaddr);
  1396. break;
  1397. case RTL_GIGA_MAC_VER_07:
  1398. case RTL_GIGA_MAC_VER_08:
  1399. case RTL_GIGA_MAC_VER_09:
  1400. rtl8102e_hw_phy_config(ioaddr);
  1401. break;
  1402. case RTL_GIGA_MAC_VER_11:
  1403. rtl8168bb_hw_phy_config(ioaddr);
  1404. break;
  1405. case RTL_GIGA_MAC_VER_12:
  1406. rtl8168bef_hw_phy_config(ioaddr);
  1407. break;
  1408. case RTL_GIGA_MAC_VER_17:
  1409. rtl8168bef_hw_phy_config(ioaddr);
  1410. break;
  1411. case RTL_GIGA_MAC_VER_18:
  1412. rtl8168cp_1_hw_phy_config(ioaddr);
  1413. break;
  1414. case RTL_GIGA_MAC_VER_19:
  1415. rtl8168c_1_hw_phy_config(ioaddr);
  1416. break;
  1417. case RTL_GIGA_MAC_VER_20:
  1418. rtl8168c_2_hw_phy_config(ioaddr);
  1419. break;
  1420. case RTL_GIGA_MAC_VER_21:
  1421. rtl8168c_3_hw_phy_config(ioaddr);
  1422. break;
  1423. case RTL_GIGA_MAC_VER_22:
  1424. rtl8168c_4_hw_phy_config(ioaddr);
  1425. break;
  1426. case RTL_GIGA_MAC_VER_23:
  1427. case RTL_GIGA_MAC_VER_24:
  1428. rtl8168cp_2_hw_phy_config(ioaddr);
  1429. break;
  1430. case RTL_GIGA_MAC_VER_25:
  1431. rtl8168d_hw_phy_config(ioaddr);
  1432. break;
  1433. default:
  1434. break;
  1435. }
  1436. }
  1437. static void rtl8169_phy_timer(unsigned long __opaque)
  1438. {
  1439. struct net_device *dev = (struct net_device *)__opaque;
  1440. struct rtl8169_private *tp = netdev_priv(dev);
  1441. struct timer_list *timer = &tp->timer;
  1442. void __iomem *ioaddr = tp->mmio_addr;
  1443. unsigned long timeout = RTL8169_PHY_TIMEOUT;
  1444. assert(tp->mac_version > RTL_GIGA_MAC_VER_01);
  1445. if (!(tp->phy_1000_ctrl_reg & ADVERTISE_1000FULL))
  1446. return;
  1447. spin_lock_irq(&tp->lock);
  1448. if (tp->phy_reset_pending(ioaddr)) {
  1449. /*
  1450. * A busy loop could burn quite a few cycles on nowadays CPU.
  1451. * Let's delay the execution of the timer for a few ticks.
  1452. */
  1453. timeout = HZ/10;
  1454. goto out_mod_timer;
  1455. }
  1456. if (tp->link_ok(ioaddr))
  1457. goto out_unlock;
  1458. if (netif_msg_link(tp))
  1459. printk(KERN_WARNING "%s: PHY reset until link up\n", dev->name);
  1460. tp->phy_reset_enable(ioaddr);
  1461. out_mod_timer:
  1462. mod_timer(timer, jiffies + timeout);
  1463. out_unlock:
  1464. spin_unlock_irq(&tp->lock);
  1465. }
  1466. static inline void rtl8169_delete_timer(struct net_device *dev)
  1467. {
  1468. struct rtl8169_private *tp = netdev_priv(dev);
  1469. struct timer_list *timer = &tp->timer;
  1470. if (tp->mac_version <= RTL_GIGA_MAC_VER_01)
  1471. return;
  1472. del_timer_sync(timer);
  1473. }
  1474. static inline void rtl8169_request_timer(struct net_device *dev)
  1475. {
  1476. struct rtl8169_private *tp = netdev_priv(dev);
  1477. struct timer_list *timer = &tp->timer;
  1478. if (tp->mac_version <= RTL_GIGA_MAC_VER_01)
  1479. return;
  1480. mod_timer(timer, jiffies + RTL8169_PHY_TIMEOUT);
  1481. }
  1482. #ifdef CONFIG_NET_POLL_CONTROLLER
  1483. /*
  1484. * Polling 'interrupt' - used by things like netconsole to send skbs
  1485. * without having to re-enable interrupts. It's not called while
  1486. * the interrupt routine is executing.
  1487. */
  1488. static void rtl8169_netpoll(struct net_device *dev)
  1489. {
  1490. struct rtl8169_private *tp = netdev_priv(dev);
  1491. struct pci_dev *pdev = tp->pci_dev;
  1492. disable_irq(pdev->irq);
  1493. rtl8169_interrupt(pdev->irq, dev);
  1494. enable_irq(pdev->irq);
  1495. }
  1496. #endif
  1497. static void rtl8169_release_board(struct pci_dev *pdev, struct net_device *dev,
  1498. void __iomem *ioaddr)
  1499. {
  1500. iounmap(ioaddr);
  1501. pci_release_regions(pdev);
  1502. pci_disable_device(pdev);
  1503. free_netdev(dev);
  1504. }
  1505. static void rtl8169_phy_reset(struct net_device *dev,
  1506. struct rtl8169_private *tp)
  1507. {
  1508. void __iomem *ioaddr = tp->mmio_addr;
  1509. unsigned int i;
  1510. tp->phy_reset_enable(ioaddr);
  1511. for (i = 0; i < 100; i++) {
  1512. if (!tp->phy_reset_pending(ioaddr))
  1513. return;
  1514. msleep(1);
  1515. }
  1516. if (netif_msg_link(tp))
  1517. printk(KERN_ERR "%s: PHY reset failed.\n", dev->name);
  1518. }
  1519. static void rtl8169_init_phy(struct net_device *dev, struct rtl8169_private *tp)
  1520. {
  1521. void __iomem *ioaddr = tp->mmio_addr;
  1522. rtl_hw_phy_config(dev);
  1523. if (tp->mac_version <= RTL_GIGA_MAC_VER_06) {
  1524. dprintk("Set MAC Reg C+CR Offset 0x82h = 0x01h\n");
  1525. RTL_W8(0x82, 0x01);
  1526. }
  1527. pci_write_config_byte(tp->pci_dev, PCI_LATENCY_TIMER, 0x40);
  1528. if (tp->mac_version <= RTL_GIGA_MAC_VER_06)
  1529. pci_write_config_byte(tp->pci_dev, PCI_CACHE_LINE_SIZE, 0x08);
  1530. if (tp->mac_version == RTL_GIGA_MAC_VER_02) {
  1531. dprintk("Set MAC Reg C+CR Offset 0x82h = 0x01h\n");
  1532. RTL_W8(0x82, 0x01);
  1533. dprintk("Set PHY Reg 0x0bh = 0x00h\n");
  1534. mdio_write(ioaddr, 0x0b, 0x0000); //w 0x0b 15 0 0
  1535. }
  1536. rtl8169_phy_reset(dev, tp);
  1537. /*
  1538. * rtl8169_set_speed_xmii takes good care of the Fast Ethernet
  1539. * only 8101. Don't panic.
  1540. */
  1541. rtl8169_set_speed(dev, AUTONEG_ENABLE, SPEED_1000, DUPLEX_FULL);
  1542. if ((RTL_R8(PHYstatus) & TBI_Enable) && netif_msg_link(tp))
  1543. printk(KERN_INFO PFX "%s: TBI auto-negotiating\n", dev->name);
  1544. }
  1545. static void rtl_rar_set(struct rtl8169_private *tp, u8 *addr)
  1546. {
  1547. void __iomem *ioaddr = tp->mmio_addr;
  1548. u32 high;
  1549. u32 low;
  1550. low = addr[0] | (addr[1] << 8) | (addr[2] << 16) | (addr[3] << 24);
  1551. high = addr[4] | (addr[5] << 8);
  1552. spin_lock_irq(&tp->lock);
  1553. RTL_W8(Cfg9346, Cfg9346_Unlock);
  1554. RTL_W32(MAC0, low);
  1555. RTL_W32(MAC4, high);
  1556. RTL_W8(Cfg9346, Cfg9346_Lock);
  1557. spin_unlock_irq(&tp->lock);
  1558. }
  1559. static int rtl_set_mac_address(struct net_device *dev, void *p)
  1560. {
  1561. struct rtl8169_private *tp = netdev_priv(dev);
  1562. struct sockaddr *addr = p;
  1563. if (!is_valid_ether_addr(addr->sa_data))
  1564. return -EADDRNOTAVAIL;
  1565. memcpy(dev->dev_addr, addr->sa_data, dev->addr_len);
  1566. rtl_rar_set(tp, dev->dev_addr);
  1567. return 0;
  1568. }
  1569. static int rtl8169_ioctl(struct net_device *dev, struct ifreq *ifr, int cmd)
  1570. {
  1571. struct rtl8169_private *tp = netdev_priv(dev);
  1572. struct mii_ioctl_data *data = if_mii(ifr);
  1573. return netif_running(dev) ? tp->do_ioctl(tp, data, cmd) : -ENODEV;
  1574. }
  1575. static int rtl_xmii_ioctl(struct rtl8169_private *tp, struct mii_ioctl_data *data, int cmd)
  1576. {
  1577. switch (cmd) {
  1578. case SIOCGMIIPHY:
  1579. data->phy_id = 32; /* Internal PHY */
  1580. return 0;
  1581. case SIOCGMIIREG:
  1582. data->val_out = mdio_read(tp->mmio_addr, data->reg_num & 0x1f);
  1583. return 0;
  1584. case SIOCSMIIREG:
  1585. if (!capable(CAP_NET_ADMIN))
  1586. return -EPERM;
  1587. mdio_write(tp->mmio_addr, data->reg_num & 0x1f, data->val_in);
  1588. return 0;
  1589. }
  1590. return -EOPNOTSUPP;
  1591. }
  1592. static int rtl_tbi_ioctl(struct rtl8169_private *tp, struct mii_ioctl_data *data, int cmd)
  1593. {
  1594. return -EOPNOTSUPP;
  1595. }
  1596. static const struct rtl_cfg_info {
  1597. void (*hw_start)(struct net_device *);
  1598. unsigned int region;
  1599. unsigned int align;
  1600. u16 intr_event;
  1601. u16 napi_event;
  1602. unsigned features;
  1603. } rtl_cfg_infos [] = {
  1604. [RTL_CFG_0] = {
  1605. .hw_start = rtl_hw_start_8169,
  1606. .region = 1,
  1607. .align = 0,
  1608. .intr_event = SYSErr | LinkChg | RxOverflow |
  1609. RxFIFOOver | TxErr | TxOK | RxOK | RxErr,
  1610. .napi_event = RxFIFOOver | TxErr | TxOK | RxOK | RxOverflow,
  1611. .features = RTL_FEATURE_GMII
  1612. },
  1613. [RTL_CFG_1] = {
  1614. .hw_start = rtl_hw_start_8168,
  1615. .region = 2,
  1616. .align = 8,
  1617. .intr_event = SYSErr | LinkChg | RxOverflow |
  1618. TxErr | TxOK | RxOK | RxErr,
  1619. .napi_event = TxErr | TxOK | RxOK | RxOverflow,
  1620. .features = RTL_FEATURE_GMII | RTL_FEATURE_MSI
  1621. },
  1622. [RTL_CFG_2] = {
  1623. .hw_start = rtl_hw_start_8101,
  1624. .region = 2,
  1625. .align = 8,
  1626. .intr_event = SYSErr | LinkChg | RxOverflow | PCSTimeout |
  1627. RxFIFOOver | TxErr | TxOK | RxOK | RxErr,
  1628. .napi_event = RxFIFOOver | TxErr | TxOK | RxOK | RxOverflow,
  1629. .features = RTL_FEATURE_MSI
  1630. }
  1631. };
  1632. /* Cfg9346_Unlock assumed. */
  1633. static unsigned rtl_try_msi(struct pci_dev *pdev, void __iomem *ioaddr,
  1634. const struct rtl_cfg_info *cfg)
  1635. {
  1636. unsigned msi = 0;
  1637. u8 cfg2;
  1638. cfg2 = RTL_R8(Config2) & ~MSIEnable;
  1639. if (cfg->features & RTL_FEATURE_MSI) {
  1640. if (pci_enable_msi(pdev)) {
  1641. dev_info(&pdev->dev, "no MSI. Back to INTx.\n");
  1642. } else {
  1643. cfg2 |= MSIEnable;
  1644. msi = RTL_FEATURE_MSI;
  1645. }
  1646. }
  1647. RTL_W8(Config2, cfg2);
  1648. return msi;
  1649. }
  1650. static void rtl_disable_msi(struct pci_dev *pdev, struct rtl8169_private *tp)
  1651. {
  1652. if (tp->features & RTL_FEATURE_MSI) {
  1653. pci_disable_msi(pdev);
  1654. tp->features &= ~RTL_FEATURE_MSI;
  1655. }
  1656. }
  1657. static const struct net_device_ops rtl8169_netdev_ops = {
  1658. .ndo_open = rtl8169_open,
  1659. .ndo_stop = rtl8169_close,
  1660. .ndo_get_stats = rtl8169_get_stats,
  1661. .ndo_start_xmit = rtl8169_start_xmit,
  1662. .ndo_tx_timeout = rtl8169_tx_timeout,
  1663. .ndo_validate_addr = eth_validate_addr,
  1664. .ndo_change_mtu = rtl8169_change_mtu,
  1665. .ndo_set_mac_address = rtl_set_mac_address,
  1666. .ndo_do_ioctl = rtl8169_ioctl,
  1667. .ndo_set_multicast_list = rtl_set_rx_mode,
  1668. #ifdef CONFIG_R8169_VLAN
  1669. .ndo_vlan_rx_register = rtl8169_vlan_rx_register,
  1670. #endif
  1671. #ifdef CONFIG_NET_POLL_CONTROLLER
  1672. .ndo_poll_controller = rtl8169_netpoll,
  1673. #endif
  1674. };
  1675. static int __devinit
  1676. rtl8169_init_one(struct pci_dev *pdev, const struct pci_device_id *ent)
  1677. {
  1678. const struct rtl_cfg_info *cfg = rtl_cfg_infos + ent->driver_data;
  1679. const unsigned int region = cfg->region;
  1680. struct rtl8169_private *tp;
  1681. struct mii_if_info *mii;
  1682. struct net_device *dev;
  1683. void __iomem *ioaddr;
  1684. unsigned int i;
  1685. int rc;
  1686. if (netif_msg_drv(&debug)) {
  1687. printk(KERN_INFO "%s Gigabit Ethernet driver %s loaded\n",
  1688. MODULENAME, RTL8169_VERSION);
  1689. }
  1690. dev = alloc_etherdev(sizeof (*tp));
  1691. if (!dev) {
  1692. if (netif_msg_drv(&debug))
  1693. dev_err(&pdev->dev, "unable to alloc new ethernet\n");
  1694. rc = -ENOMEM;
  1695. goto out;
  1696. }
  1697. SET_NETDEV_DEV(dev, &pdev->dev);
  1698. dev->netdev_ops = &rtl8169_netdev_ops;
  1699. tp = netdev_priv(dev);
  1700. tp->dev = dev;
  1701. tp->pci_dev = pdev;
  1702. tp->msg_enable = netif_msg_init(debug.msg_enable, R8169_MSG_DEFAULT);
  1703. mii = &tp->mii;
  1704. mii->dev = dev;
  1705. mii->mdio_read = rtl_mdio_read;
  1706. mii->mdio_write = rtl_mdio_write;
  1707. mii->phy_id_mask = 0x1f;
  1708. mii->reg_num_mask = 0x1f;
  1709. mii->supports_gmii = !!(cfg->features & RTL_FEATURE_GMII);
  1710. /* enable device (incl. PCI PM wakeup and hotplug setup) */
  1711. rc = pci_enable_device(pdev);
  1712. if (rc < 0) {
  1713. if (netif_msg_probe(tp))
  1714. dev_err(&pdev->dev, "enable failure\n");
  1715. goto err_out_free_dev_1;
  1716. }
  1717. rc = pci_set_mwi(pdev);
  1718. if (rc < 0)
  1719. goto err_out_disable_2;
  1720. /* make sure PCI base addr 1 is MMIO */
  1721. if (!(pci_resource_flags(pdev, region) & IORESOURCE_MEM)) {
  1722. if (netif_msg_probe(tp)) {
  1723. dev_err(&pdev->dev,
  1724. "region #%d not an MMIO resource, aborting\n",
  1725. region);
  1726. }
  1727. rc = -ENODEV;
  1728. goto err_out_mwi_3;
  1729. }
  1730. /* check for weird/broken PCI region reporting */
  1731. if (pci_resource_len(pdev, region) < R8169_REGS_SIZE) {
  1732. if (netif_msg_probe(tp)) {
  1733. dev_err(&pdev->dev,
  1734. "Invalid PCI region size(s), aborting\n");
  1735. }
  1736. rc = -ENODEV;
  1737. goto err_out_mwi_3;
  1738. }
  1739. rc = pci_request_regions(pdev, MODULENAME);
  1740. if (rc < 0) {
  1741. if (netif_msg_probe(tp))
  1742. dev_err(&pdev->dev, "could not request regions.\n");
  1743. goto err_out_mwi_3;
  1744. }
  1745. tp->cp_cmd = PCIMulRW | RxChkSum;
  1746. if ((sizeof(dma_addr_t) > 4) &&
  1747. !pci_set_dma_mask(pdev, DMA_BIT_MASK(64)) && use_dac) {
  1748. tp->cp_cmd |= PCIDAC;
  1749. dev->features |= NETIF_F_HIGHDMA;
  1750. } else {
  1751. rc = pci_set_dma_mask(pdev, DMA_BIT_MASK(32));
  1752. if (rc < 0) {
  1753. if (netif_msg_probe(tp)) {
  1754. dev_err(&pdev->dev,
  1755. "DMA configuration failed.\n");
  1756. }
  1757. goto err_out_free_res_4;
  1758. }
  1759. }
  1760. pci_set_master(pdev);
  1761. /* ioremap MMIO region */
  1762. ioaddr = ioremap(pci_resource_start(pdev, region), R8169_REGS_SIZE);
  1763. if (!ioaddr) {
  1764. if (netif_msg_probe(tp))
  1765. dev_err(&pdev->dev, "cannot remap MMIO, aborting\n");
  1766. rc = -EIO;
  1767. goto err_out_free_res_4;
  1768. }
  1769. tp->pcie_cap = pci_find_capability(pdev, PCI_CAP_ID_EXP);
  1770. if (!tp->pcie_cap && netif_msg_probe(tp))
  1771. dev_info(&pdev->dev, "no PCI Express capability\n");
  1772. RTL_W16(IntrMask, 0x0000);
  1773. /* Soft reset the chip. */
  1774. RTL_W8(ChipCmd, CmdReset);
  1775. /* Check that the chip has finished the reset. */
  1776. for (i = 0; i < 100; i++) {
  1777. if ((RTL_R8(ChipCmd) & CmdReset) == 0)
  1778. break;
  1779. msleep_interruptible(1);
  1780. }
  1781. RTL_W16(IntrStatus, 0xffff);
  1782. /* Identify chip attached to board */
  1783. rtl8169_get_mac_version(tp, ioaddr);
  1784. rtl8169_print_mac_version(tp);
  1785. for (i = 0; i < ARRAY_SIZE(rtl_chip_info); i++) {
  1786. if (tp->mac_version == rtl_chip_info[i].mac_version)
  1787. break;
  1788. }
  1789. if (i == ARRAY_SIZE(rtl_chip_info)) {
  1790. /* Unknown chip: assume array element #0, original RTL-8169 */
  1791. if (netif_msg_probe(tp)) {
  1792. dev_printk(KERN_DEBUG, &pdev->dev,
  1793. "unknown chip version, assuming %s\n",
  1794. rtl_chip_info[0].name);
  1795. }
  1796. i = 0;
  1797. }
  1798. tp->chipset = i;
  1799. RTL_W8(Cfg9346, Cfg9346_Unlock);
  1800. RTL_W8(Config1, RTL_R8(Config1) | PMEnable);
  1801. RTL_W8(Config5, RTL_R8(Config5) & PMEStatus);
  1802. if ((RTL_R8(Config3) & (LinkUp | MagicPacket)) != 0)
  1803. tp->features |= RTL_FEATURE_WOL;
  1804. if ((RTL_R8(Config5) & (UWF | BWF | MWF)) != 0)
  1805. tp->features |= RTL_FEATURE_WOL;
  1806. tp->features |= rtl_try_msi(pdev, ioaddr, cfg);
  1807. RTL_W8(Cfg9346, Cfg9346_Lock);
  1808. if ((tp->mac_version <= RTL_GIGA_MAC_VER_06) &&
  1809. (RTL_R8(PHYstatus) & TBI_Enable)) {
  1810. tp->set_speed = rtl8169_set_speed_tbi;
  1811. tp->get_settings = rtl8169_gset_tbi;
  1812. tp->phy_reset_enable = rtl8169_tbi_reset_enable;
  1813. tp->phy_reset_pending = rtl8169_tbi_reset_pending;
  1814. tp->link_ok = rtl8169_tbi_link_ok;
  1815. tp->do_ioctl = rtl_tbi_ioctl;
  1816. tp->phy_1000_ctrl_reg = ADVERTISE_1000FULL; /* Implied by TBI */
  1817. } else {
  1818. tp->set_speed = rtl8169_set_speed_xmii;
  1819. tp->get_settings = rtl8169_gset_xmii;
  1820. tp->phy_reset_enable = rtl8169_xmii_reset_enable;
  1821. tp->phy_reset_pending = rtl8169_xmii_reset_pending;
  1822. tp->link_ok = rtl8169_xmii_link_ok;
  1823. tp->do_ioctl = rtl_xmii_ioctl;
  1824. }
  1825. spin_lock_init(&tp->lock);
  1826. tp->mmio_addr = ioaddr;
  1827. /* Get MAC address */
  1828. for (i = 0; i < MAC_ADDR_LEN; i++)
  1829. dev->dev_addr[i] = RTL_R8(MAC0 + i);
  1830. memcpy(dev->perm_addr, dev->dev_addr, dev->addr_len);
  1831. SET_ETHTOOL_OPS(dev, &rtl8169_ethtool_ops);
  1832. dev->watchdog_timeo = RTL8169_TX_TIMEOUT;
  1833. dev->irq = pdev->irq;
  1834. dev->base_addr = (unsigned long) ioaddr;
  1835. netif_napi_add(dev, &tp->napi, rtl8169_poll, R8169_NAPI_WEIGHT);
  1836. #ifdef CONFIG_R8169_VLAN
  1837. dev->features |= NETIF_F_HW_VLAN_TX | NETIF_F_HW_VLAN_RX;
  1838. #endif
  1839. tp->intr_mask = 0xffff;
  1840. tp->align = cfg->align;
  1841. tp->hw_start = cfg->hw_start;
  1842. tp->intr_event = cfg->intr_event;
  1843. tp->napi_event = cfg->napi_event;
  1844. init_timer(&tp->timer);
  1845. tp->timer.data = (unsigned long) dev;
  1846. tp->timer.function = rtl8169_phy_timer;
  1847. rc = register_netdev(dev);
  1848. if (rc < 0)
  1849. goto err_out_msi_5;
  1850. pci_set_drvdata(pdev, dev);
  1851. if (netif_msg_probe(tp)) {
  1852. u32 xid = RTL_R32(TxConfig) & 0x7cf0f8ff;
  1853. printk(KERN_INFO "%s: %s at 0x%lx, "
  1854. "%2.2x:%2.2x:%2.2x:%2.2x:%2.2x:%2.2x, "
  1855. "XID %08x IRQ %d\n",
  1856. dev->name,
  1857. rtl_chip_info[tp->chipset].name,
  1858. dev->base_addr,
  1859. dev->dev_addr[0], dev->dev_addr[1],
  1860. dev->dev_addr[2], dev->dev_addr[3],
  1861. dev->dev_addr[4], dev->dev_addr[5], xid, dev->irq);
  1862. }
  1863. rtl8169_init_phy(dev, tp);
  1864. device_set_wakeup_enable(&pdev->dev, tp->features & RTL_FEATURE_WOL);
  1865. out:
  1866. return rc;
  1867. err_out_msi_5:
  1868. rtl_disable_msi(pdev, tp);
  1869. iounmap(ioaddr);
  1870. err_out_free_res_4:
  1871. pci_release_regions(pdev);
  1872. err_out_mwi_3:
  1873. pci_clear_mwi(pdev);
  1874. err_out_disable_2:
  1875. pci_disable_device(pdev);
  1876. err_out_free_dev_1:
  1877. free_netdev(dev);
  1878. goto out;
  1879. }
  1880. static void __devexit rtl8169_remove_one(struct pci_dev *pdev)
  1881. {
  1882. struct net_device *dev = pci_get_drvdata(pdev);
  1883. struct rtl8169_private *tp = netdev_priv(dev);
  1884. flush_scheduled_work();
  1885. unregister_netdev(dev);
  1886. rtl_disable_msi(pdev, tp);
  1887. rtl8169_release_board(pdev, dev, tp->mmio_addr);
  1888. pci_set_drvdata(pdev, NULL);
  1889. }
  1890. static void rtl8169_set_rxbufsize(struct rtl8169_private *tp,
  1891. struct net_device *dev)
  1892. {
  1893. unsigned int mtu = dev->mtu;
  1894. tp->rx_buf_sz = (mtu > RX_BUF_SIZE) ? mtu + ETH_HLEN + 8 : RX_BUF_SIZE;
  1895. }
  1896. static int rtl8169_open(struct net_device *dev)
  1897. {
  1898. struct rtl8169_private *tp = netdev_priv(dev);
  1899. struct pci_dev *pdev = tp->pci_dev;
  1900. int retval = -ENOMEM;
  1901. rtl8169_set_rxbufsize(tp, dev);
  1902. /*
  1903. * Rx and Tx desscriptors needs 256 bytes alignment.
  1904. * pci_alloc_consistent provides more.
  1905. */
  1906. tp->TxDescArray = pci_alloc_consistent(pdev, R8169_TX_RING_BYTES,
  1907. &tp->TxPhyAddr);
  1908. if (!tp->TxDescArray)
  1909. goto out;
  1910. tp->RxDescArray = pci_alloc_consistent(pdev, R8169_RX_RING_BYTES,
  1911. &tp->RxPhyAddr);
  1912. if (!tp->RxDescArray)
  1913. goto err_free_tx_0;
  1914. retval = rtl8169_init_ring(dev);
  1915. if (retval < 0)
  1916. goto err_free_rx_1;
  1917. INIT_DELAYED_WORK(&tp->task, NULL);
  1918. smp_mb();
  1919. retval = request_irq(dev->irq, rtl8169_interrupt,
  1920. (tp->features & RTL_FEATURE_MSI) ? 0 : IRQF_SHARED,
  1921. dev->name, dev);
  1922. if (retval < 0)
  1923. goto err_release_ring_2;
  1924. napi_enable(&tp->napi);
  1925. rtl_hw_start(dev);
  1926. rtl8169_request_timer(dev);
  1927. rtl8169_check_link_status(dev, tp, tp->mmio_addr);
  1928. out:
  1929. return retval;
  1930. err_release_ring_2:
  1931. rtl8169_rx_clear(tp);
  1932. err_free_rx_1:
  1933. pci_free_consistent(pdev, R8169_RX_RING_BYTES, tp->RxDescArray,
  1934. tp->RxPhyAddr);
  1935. err_free_tx_0:
  1936. pci_free_consistent(pdev, R8169_TX_RING_BYTES, tp->TxDescArray,
  1937. tp->TxPhyAddr);
  1938. goto out;
  1939. }
  1940. static void rtl8169_hw_reset(void __iomem *ioaddr)
  1941. {
  1942. /* Disable interrupts */
  1943. rtl8169_irq_mask_and_ack(ioaddr);
  1944. /* Reset the chipset */
  1945. RTL_W8(ChipCmd, CmdReset);
  1946. /* PCI commit */
  1947. RTL_R8(ChipCmd);
  1948. }
  1949. static void rtl_set_rx_tx_config_registers(struct rtl8169_private *tp)
  1950. {
  1951. void __iomem *ioaddr = tp->mmio_addr;
  1952. u32 cfg = rtl8169_rx_config;
  1953. cfg |= (RTL_R32(RxConfig) & rtl_chip_info[tp->chipset].RxConfigMask);
  1954. RTL_W32(RxConfig, cfg);
  1955. /* Set DMA burst size and Interframe Gap Time */
  1956. RTL_W32(TxConfig, (TX_DMA_BURST << TxDMAShift) |
  1957. (InterFrameGap << TxInterFrameGapShift));
  1958. }
  1959. static void rtl_hw_start(struct net_device *dev)
  1960. {
  1961. struct rtl8169_private *tp = netdev_priv(dev);
  1962. void __iomem *ioaddr = tp->mmio_addr;
  1963. unsigned int i;
  1964. /* Soft reset the chip. */
  1965. RTL_W8(ChipCmd, CmdReset);
  1966. /* Check that the chip has finished the reset. */
  1967. for (i = 0; i < 100; i++) {
  1968. if ((RTL_R8(ChipCmd) & CmdReset) == 0)
  1969. break;
  1970. msleep_interruptible(1);
  1971. }
  1972. tp->hw_start(dev);
  1973. netif_start_queue(dev);
  1974. }
  1975. static void rtl_set_rx_tx_desc_registers(struct rtl8169_private *tp,
  1976. void __iomem *ioaddr)
  1977. {
  1978. /*
  1979. * Magic spell: some iop3xx ARM board needs the TxDescAddrHigh
  1980. * register to be written before TxDescAddrLow to work.
  1981. * Switching from MMIO to I/O access fixes the issue as well.
  1982. */
  1983. RTL_W32(TxDescStartAddrHigh, ((u64) tp->TxPhyAddr) >> 32);
  1984. RTL_W32(TxDescStartAddrLow, ((u64) tp->TxPhyAddr) & DMA_BIT_MASK(32));
  1985. RTL_W32(RxDescAddrHigh, ((u64) tp->RxPhyAddr) >> 32);
  1986. RTL_W32(RxDescAddrLow, ((u64) tp->RxPhyAddr) & DMA_BIT_MASK(32));
  1987. }
  1988. static u16 rtl_rw_cpluscmd(void __iomem *ioaddr)
  1989. {
  1990. u16 cmd;
  1991. cmd = RTL_R16(CPlusCmd);
  1992. RTL_W16(CPlusCmd, cmd);
  1993. return cmd;
  1994. }
  1995. static void rtl_set_rx_max_size(void __iomem *ioaddr)
  1996. {
  1997. /* Low hurts. Let's disable the filtering. */
  1998. RTL_W16(RxMaxSize, 16383);
  1999. }
  2000. static void rtl8169_set_magic_reg(void __iomem *ioaddr, unsigned mac_version)
  2001. {
  2002. struct {
  2003. u32 mac_version;
  2004. u32 clk;
  2005. u32 val;
  2006. } cfg2_info [] = {
  2007. { RTL_GIGA_MAC_VER_05, PCI_Clock_33MHz, 0x000fff00 }, // 8110SCd
  2008. { RTL_GIGA_MAC_VER_05, PCI_Clock_66MHz, 0x000fffff },
  2009. { RTL_GIGA_MAC_VER_06, PCI_Clock_33MHz, 0x00ffff00 }, // 8110SCe
  2010. { RTL_GIGA_MAC_VER_06, PCI_Clock_66MHz, 0x00ffffff }
  2011. }, *p = cfg2_info;
  2012. unsigned int i;
  2013. u32 clk;
  2014. clk = RTL_R8(Config2) & PCI_Clock_66MHz;
  2015. for (i = 0; i < ARRAY_SIZE(cfg2_info); i++, p++) {
  2016. if ((p->mac_version == mac_version) && (p->clk == clk)) {
  2017. RTL_W32(0x7c, p->val);
  2018. break;
  2019. }
  2020. }
  2021. }
  2022. static void rtl_hw_start_8169(struct net_device *dev)
  2023. {
  2024. struct rtl8169_private *tp = netdev_priv(dev);
  2025. void __iomem *ioaddr = tp->mmio_addr;
  2026. struct pci_dev *pdev = tp->pci_dev;
  2027. if (tp->mac_version == RTL_GIGA_MAC_VER_05) {
  2028. RTL_W16(CPlusCmd, RTL_R16(CPlusCmd) | PCIMulRW);
  2029. pci_write_config_byte(pdev, PCI_CACHE_LINE_SIZE, 0x08);
  2030. }
  2031. RTL_W8(Cfg9346, Cfg9346_Unlock);
  2032. if ((tp->mac_version == RTL_GIGA_MAC_VER_01) ||
  2033. (tp->mac_version == RTL_GIGA_MAC_VER_02) ||
  2034. (tp->mac_version == RTL_GIGA_MAC_VER_03) ||
  2035. (tp->mac_version == RTL_GIGA_MAC_VER_04))
  2036. RTL_W8(ChipCmd, CmdTxEnb | CmdRxEnb);
  2037. RTL_W8(EarlyTxThres, EarlyTxThld);
  2038. rtl_set_rx_max_size(ioaddr);
  2039. if ((tp->mac_version == RTL_GIGA_MAC_VER_01) ||
  2040. (tp->mac_version == RTL_GIGA_MAC_VER_02) ||
  2041. (tp->mac_version == RTL_GIGA_MAC_VER_03) ||
  2042. (tp->mac_version == RTL_GIGA_MAC_VER_04))
  2043. rtl_set_rx_tx_config_registers(tp);
  2044. tp->cp_cmd |= rtl_rw_cpluscmd(ioaddr) | PCIMulRW;
  2045. if ((tp->mac_version == RTL_GIGA_MAC_VER_02) ||
  2046. (tp->mac_version == RTL_GIGA_MAC_VER_03)) {
  2047. dprintk("Set MAC Reg C+CR Offset 0xE0. "
  2048. "Bit-3 and bit-14 MUST be 1\n");
  2049. tp->cp_cmd |= (1 << 14);
  2050. }
  2051. RTL_W16(CPlusCmd, tp->cp_cmd);
  2052. rtl8169_set_magic_reg(ioaddr, tp->mac_version);
  2053. /*
  2054. * Undocumented corner. Supposedly:
  2055. * (TxTimer << 12) | (TxPackets << 8) | (RxTimer << 4) | RxPackets
  2056. */
  2057. RTL_W16(IntrMitigate, 0x0000);
  2058. rtl_set_rx_tx_desc_registers(tp, ioaddr);
  2059. if ((tp->mac_version != RTL_GIGA_MAC_VER_01) &&
  2060. (tp->mac_version != RTL_GIGA_MAC_VER_02) &&
  2061. (tp->mac_version != RTL_GIGA_MAC_VER_03) &&
  2062. (tp->mac_version != RTL_GIGA_MAC_VER_04)) {
  2063. RTL_W8(ChipCmd, CmdTxEnb | CmdRxEnb);
  2064. rtl_set_rx_tx_config_registers(tp);
  2065. }
  2066. RTL_W8(Cfg9346, Cfg9346_Lock);
  2067. /* Initially a 10 us delay. Turned it into a PCI commit. - FR */
  2068. RTL_R8(IntrMask);
  2069. RTL_W32(RxMissed, 0);
  2070. rtl_set_rx_mode(dev);
  2071. /* no early-rx interrupts */
  2072. RTL_W16(MultiIntr, RTL_R16(MultiIntr) & 0xF000);
  2073. /* Enable all known interrupts by setting the interrupt mask. */
  2074. RTL_W16(IntrMask, tp->intr_event);
  2075. }
  2076. static void rtl_tx_performance_tweak(struct pci_dev *pdev, u16 force)
  2077. {
  2078. struct net_device *dev = pci_get_drvdata(pdev);
  2079. struct rtl8169_private *tp = netdev_priv(dev);
  2080. int cap = tp->pcie_cap;
  2081. if (cap) {
  2082. u16 ctl;
  2083. pci_read_config_word(pdev, cap + PCI_EXP_DEVCTL, &ctl);
  2084. ctl = (ctl & ~PCI_EXP_DEVCTL_READRQ) | force;
  2085. pci_write_config_word(pdev, cap + PCI_EXP_DEVCTL, ctl);
  2086. }
  2087. }
  2088. static void rtl_csi_access_enable(void __iomem *ioaddr)
  2089. {
  2090. u32 csi;
  2091. csi = rtl_csi_read(ioaddr, 0x070c) & 0x00ffffff;
  2092. rtl_csi_write(ioaddr, 0x070c, csi | 0x27000000);
  2093. }
  2094. struct ephy_info {
  2095. unsigned int offset;
  2096. u16 mask;
  2097. u16 bits;
  2098. };
  2099. static void rtl_ephy_init(void __iomem *ioaddr, struct ephy_info *e, int len)
  2100. {
  2101. u16 w;
  2102. while (len-- > 0) {
  2103. w = (rtl_ephy_read(ioaddr, e->offset) & ~e->mask) | e->bits;
  2104. rtl_ephy_write(ioaddr, e->offset, w);
  2105. e++;
  2106. }
  2107. }
  2108. static void rtl_disable_clock_request(struct pci_dev *pdev)
  2109. {
  2110. struct net_device *dev = pci_get_drvdata(pdev);
  2111. struct rtl8169_private *tp = netdev_priv(dev);
  2112. int cap = tp->pcie_cap;
  2113. if (cap) {
  2114. u16 ctl;
  2115. pci_read_config_word(pdev, cap + PCI_EXP_LNKCTL, &ctl);
  2116. ctl &= ~PCI_EXP_LNKCTL_CLKREQ_EN;
  2117. pci_write_config_word(pdev, cap + PCI_EXP_LNKCTL, ctl);
  2118. }
  2119. }
  2120. #define R8168_CPCMD_QUIRK_MASK (\
  2121. EnableBist | \
  2122. Mac_dbgo_oe | \
  2123. Force_half_dup | \
  2124. Force_rxflow_en | \
  2125. Force_txflow_en | \
  2126. Cxpl_dbg_sel | \
  2127. ASF | \
  2128. PktCntrDisable | \
  2129. Mac_dbgo_sel)
  2130. static void rtl_hw_start_8168bb(void __iomem *ioaddr, struct pci_dev *pdev)
  2131. {
  2132. RTL_W8(Config3, RTL_R8(Config3) & ~Beacon_en);
  2133. RTL_W16(CPlusCmd, RTL_R16(CPlusCmd) & ~R8168_CPCMD_QUIRK_MASK);
  2134. rtl_tx_performance_tweak(pdev,
  2135. (0x5 << MAX_READ_REQUEST_SHIFT) | PCI_EXP_DEVCTL_NOSNOOP_EN);
  2136. }
  2137. static void rtl_hw_start_8168bef(void __iomem *ioaddr, struct pci_dev *pdev)
  2138. {
  2139. rtl_hw_start_8168bb(ioaddr, pdev);
  2140. RTL_W8(EarlyTxThres, EarlyTxThld);
  2141. RTL_W8(Config4, RTL_R8(Config4) & ~(1 << 0));
  2142. }
  2143. static void __rtl_hw_start_8168cp(void __iomem *ioaddr, struct pci_dev *pdev)
  2144. {
  2145. RTL_W8(Config1, RTL_R8(Config1) | Speed_down);
  2146. RTL_W8(Config3, RTL_R8(Config3) & ~Beacon_en);
  2147. rtl_tx_performance_tweak(pdev, 0x5 << MAX_READ_REQUEST_SHIFT);
  2148. rtl_disable_clock_request(pdev);
  2149. RTL_W16(CPlusCmd, RTL_R16(CPlusCmd) & ~R8168_CPCMD_QUIRK_MASK);
  2150. }
  2151. static void rtl_hw_start_8168cp_1(void __iomem *ioaddr, struct pci_dev *pdev)
  2152. {
  2153. static struct ephy_info e_info_8168cp[] = {
  2154. { 0x01, 0, 0x0001 },
  2155. { 0x02, 0x0800, 0x1000 },
  2156. { 0x03, 0, 0x0042 },
  2157. { 0x06, 0x0080, 0x0000 },
  2158. { 0x07, 0, 0x2000 }
  2159. };
  2160. rtl_csi_access_enable(ioaddr);
  2161. rtl_ephy_init(ioaddr, e_info_8168cp, ARRAY_SIZE(e_info_8168cp));
  2162. __rtl_hw_start_8168cp(ioaddr, pdev);
  2163. }
  2164. static void rtl_hw_start_8168cp_2(void __iomem *ioaddr, struct pci_dev *pdev)
  2165. {
  2166. rtl_csi_access_enable(ioaddr);
  2167. RTL_W8(Config3, RTL_R8(Config3) & ~Beacon_en);
  2168. rtl_tx_performance_tweak(pdev, 0x5 << MAX_READ_REQUEST_SHIFT);
  2169. RTL_W16(CPlusCmd, RTL_R16(CPlusCmd) & ~R8168_CPCMD_QUIRK_MASK);
  2170. }
  2171. static void rtl_hw_start_8168cp_3(void __iomem *ioaddr, struct pci_dev *pdev)
  2172. {
  2173. rtl_csi_access_enable(ioaddr);
  2174. RTL_W8(Config3, RTL_R8(Config3) & ~Beacon_en);
  2175. /* Magic. */
  2176. RTL_W8(DBG_REG, 0x20);
  2177. RTL_W8(EarlyTxThres, EarlyTxThld);
  2178. rtl_tx_performance_tweak(pdev, 0x5 << MAX_READ_REQUEST_SHIFT);
  2179. RTL_W16(CPlusCmd, RTL_R16(CPlusCmd) & ~R8168_CPCMD_QUIRK_MASK);
  2180. }
  2181. static void rtl_hw_start_8168c_1(void __iomem *ioaddr, struct pci_dev *pdev)
  2182. {
  2183. static struct ephy_info e_info_8168c_1[] = {
  2184. { 0x02, 0x0800, 0x1000 },
  2185. { 0x03, 0, 0x0002 },
  2186. { 0x06, 0x0080, 0x0000 }
  2187. };
  2188. rtl_csi_access_enable(ioaddr);
  2189. RTL_W8(DBG_REG, 0x06 | FIX_NAK_1 | FIX_NAK_2);
  2190. rtl_ephy_init(ioaddr, e_info_8168c_1, ARRAY_SIZE(e_info_8168c_1));
  2191. __rtl_hw_start_8168cp(ioaddr, pdev);
  2192. }
  2193. static void rtl_hw_start_8168c_2(void __iomem *ioaddr, struct pci_dev *pdev)
  2194. {
  2195. static struct ephy_info e_info_8168c_2[] = {
  2196. { 0x01, 0, 0x0001 },
  2197. { 0x03, 0x0400, 0x0220 }
  2198. };
  2199. rtl_csi_access_enable(ioaddr);
  2200. rtl_ephy_init(ioaddr, e_info_8168c_2, ARRAY_SIZE(e_info_8168c_2));
  2201. __rtl_hw_start_8168cp(ioaddr, pdev);
  2202. }
  2203. static void rtl_hw_start_8168c_3(void __iomem *ioaddr, struct pci_dev *pdev)
  2204. {
  2205. rtl_hw_start_8168c_2(ioaddr, pdev);
  2206. }
  2207. static void rtl_hw_start_8168c_4(void __iomem *ioaddr, struct pci_dev *pdev)
  2208. {
  2209. rtl_csi_access_enable(ioaddr);
  2210. __rtl_hw_start_8168cp(ioaddr, pdev);
  2211. }
  2212. static void rtl_hw_start_8168d(void __iomem *ioaddr, struct pci_dev *pdev)
  2213. {
  2214. rtl_csi_access_enable(ioaddr);
  2215. rtl_disable_clock_request(pdev);
  2216. RTL_W8(EarlyTxThres, EarlyTxThld);
  2217. rtl_tx_performance_tweak(pdev, 0x5 << MAX_READ_REQUEST_SHIFT);
  2218. RTL_W16(CPlusCmd, RTL_R16(CPlusCmd) & ~R8168_CPCMD_QUIRK_MASK);
  2219. }
  2220. static void rtl_hw_start_8168(struct net_device *dev)
  2221. {
  2222. struct rtl8169_private *tp = netdev_priv(dev);
  2223. void __iomem *ioaddr = tp->mmio_addr;
  2224. struct pci_dev *pdev = tp->pci_dev;
  2225. RTL_W8(Cfg9346, Cfg9346_Unlock);
  2226. RTL_W8(EarlyTxThres, EarlyTxThld);
  2227. rtl_set_rx_max_size(ioaddr);
  2228. tp->cp_cmd |= RTL_R16(CPlusCmd) | PktCntrDisable | INTT_1;
  2229. RTL_W16(CPlusCmd, tp->cp_cmd);
  2230. RTL_W16(IntrMitigate, 0x5151);
  2231. /* Work around for RxFIFO overflow. */
  2232. if (tp->mac_version == RTL_GIGA_MAC_VER_11) {
  2233. tp->intr_event |= RxFIFOOver | PCSTimeout;
  2234. tp->intr_event &= ~RxOverflow;
  2235. }
  2236. rtl_set_rx_tx_desc_registers(tp, ioaddr);
  2237. rtl_set_rx_mode(dev);
  2238. RTL_W32(TxConfig, (TX_DMA_BURST << TxDMAShift) |
  2239. (InterFrameGap << TxInterFrameGapShift));
  2240. RTL_R8(IntrMask);
  2241. switch (tp->mac_version) {
  2242. case RTL_GIGA_MAC_VER_11:
  2243. rtl_hw_start_8168bb(ioaddr, pdev);
  2244. break;
  2245. case RTL_GIGA_MAC_VER_12:
  2246. case RTL_GIGA_MAC_VER_17:
  2247. rtl_hw_start_8168bef(ioaddr, pdev);
  2248. break;
  2249. case RTL_GIGA_MAC_VER_18:
  2250. rtl_hw_start_8168cp_1(ioaddr, pdev);
  2251. break;
  2252. case RTL_GIGA_MAC_VER_19:
  2253. rtl_hw_start_8168c_1(ioaddr, pdev);
  2254. break;
  2255. case RTL_GIGA_MAC_VER_20:
  2256. rtl_hw_start_8168c_2(ioaddr, pdev);
  2257. break;
  2258. case RTL_GIGA_MAC_VER_21:
  2259. rtl_hw_start_8168c_3(ioaddr, pdev);
  2260. break;
  2261. case RTL_GIGA_MAC_VER_22:
  2262. rtl_hw_start_8168c_4(ioaddr, pdev);
  2263. break;
  2264. case RTL_GIGA_MAC_VER_23:
  2265. rtl_hw_start_8168cp_2(ioaddr, pdev);
  2266. break;
  2267. case RTL_GIGA_MAC_VER_24:
  2268. rtl_hw_start_8168cp_3(ioaddr, pdev);
  2269. break;
  2270. case RTL_GIGA_MAC_VER_25:
  2271. rtl_hw_start_8168d(ioaddr, pdev);
  2272. break;
  2273. default:
  2274. printk(KERN_ERR PFX "%s: unknown chipset (mac_version = %d).\n",
  2275. dev->name, tp->mac_version);
  2276. break;
  2277. }
  2278. RTL_W8(ChipCmd, CmdTxEnb | CmdRxEnb);
  2279. RTL_W8(Cfg9346, Cfg9346_Lock);
  2280. RTL_W16(MultiIntr, RTL_R16(MultiIntr) & 0xF000);
  2281. RTL_W16(IntrMask, tp->intr_event);
  2282. }
  2283. #define R810X_CPCMD_QUIRK_MASK (\
  2284. EnableBist | \
  2285. Mac_dbgo_oe | \
  2286. Force_half_dup | \
  2287. Force_half_dup | \
  2288. Force_txflow_en | \
  2289. Cxpl_dbg_sel | \
  2290. ASF | \
  2291. PktCntrDisable | \
  2292. PCIDAC | \
  2293. PCIMulRW)
  2294. static void rtl_hw_start_8102e_1(void __iomem *ioaddr, struct pci_dev *pdev)
  2295. {
  2296. static struct ephy_info e_info_8102e_1[] = {
  2297. { 0x01, 0, 0x6e65 },
  2298. { 0x02, 0, 0x091f },
  2299. { 0x03, 0, 0xc2f9 },
  2300. { 0x06, 0, 0xafb5 },
  2301. { 0x07, 0, 0x0e00 },
  2302. { 0x19, 0, 0xec80 },
  2303. { 0x01, 0, 0x2e65 },
  2304. { 0x01, 0, 0x6e65 }
  2305. };
  2306. u8 cfg1;
  2307. rtl_csi_access_enable(ioaddr);
  2308. RTL_W8(DBG_REG, FIX_NAK_1);
  2309. rtl_tx_performance_tweak(pdev, 0x5 << MAX_READ_REQUEST_SHIFT);
  2310. RTL_W8(Config1,
  2311. LEDS1 | LEDS0 | Speed_down | MEMMAP | IOMAP | VPD | PMEnable);
  2312. RTL_W8(Config3, RTL_R8(Config3) & ~Beacon_en);
  2313. cfg1 = RTL_R8(Config1);
  2314. if ((cfg1 & LEDS0) && (cfg1 & LEDS1))
  2315. RTL_W8(Config1, cfg1 & ~LEDS0);
  2316. RTL_W16(CPlusCmd, RTL_R16(CPlusCmd) & ~R810X_CPCMD_QUIRK_MASK);
  2317. rtl_ephy_init(ioaddr, e_info_8102e_1, ARRAY_SIZE(e_info_8102e_1));
  2318. }
  2319. static void rtl_hw_start_8102e_2(void __iomem *ioaddr, struct pci_dev *pdev)
  2320. {
  2321. rtl_csi_access_enable(ioaddr);
  2322. rtl_tx_performance_tweak(pdev, 0x5 << MAX_READ_REQUEST_SHIFT);
  2323. RTL_W8(Config1, MEMMAP | IOMAP | VPD | PMEnable);
  2324. RTL_W8(Config3, RTL_R8(Config3) & ~Beacon_en);
  2325. RTL_W16(CPlusCmd, RTL_R16(CPlusCmd) & ~R810X_CPCMD_QUIRK_MASK);
  2326. }
  2327. static void rtl_hw_start_8102e_3(void __iomem *ioaddr, struct pci_dev *pdev)
  2328. {
  2329. rtl_hw_start_8102e_2(ioaddr, pdev);
  2330. rtl_ephy_write(ioaddr, 0x03, 0xc2f9);
  2331. }
  2332. static void rtl_hw_start_8101(struct net_device *dev)
  2333. {
  2334. struct rtl8169_private *tp = netdev_priv(dev);
  2335. void __iomem *ioaddr = tp->mmio_addr;
  2336. struct pci_dev *pdev = tp->pci_dev;
  2337. if ((tp->mac_version == RTL_GIGA_MAC_VER_13) ||
  2338. (tp->mac_version == RTL_GIGA_MAC_VER_16)) {
  2339. int cap = tp->pcie_cap;
  2340. if (cap) {
  2341. pci_write_config_word(pdev, cap + PCI_EXP_DEVCTL,
  2342. PCI_EXP_DEVCTL_NOSNOOP_EN);
  2343. }
  2344. }
  2345. switch (tp->mac_version) {
  2346. case RTL_GIGA_MAC_VER_07:
  2347. rtl_hw_start_8102e_1(ioaddr, pdev);
  2348. break;
  2349. case RTL_GIGA_MAC_VER_08:
  2350. rtl_hw_start_8102e_3(ioaddr, pdev);
  2351. break;
  2352. case RTL_GIGA_MAC_VER_09:
  2353. rtl_hw_start_8102e_2(ioaddr, pdev);
  2354. break;
  2355. }
  2356. RTL_W8(Cfg9346, Cfg9346_Unlock);
  2357. RTL_W8(EarlyTxThres, EarlyTxThld);
  2358. rtl_set_rx_max_size(ioaddr);
  2359. tp->cp_cmd |= rtl_rw_cpluscmd(ioaddr) | PCIMulRW;
  2360. RTL_W16(CPlusCmd, tp->cp_cmd);
  2361. RTL_W16(IntrMitigate, 0x0000);
  2362. rtl_set_rx_tx_desc_registers(tp, ioaddr);
  2363. RTL_W8(ChipCmd, CmdTxEnb | CmdRxEnb);
  2364. rtl_set_rx_tx_config_registers(tp);
  2365. RTL_W8(Cfg9346, Cfg9346_Lock);
  2366. RTL_R8(IntrMask);
  2367. rtl_set_rx_mode(dev);
  2368. RTL_W8(ChipCmd, CmdTxEnb | CmdRxEnb);
  2369. RTL_W16(MultiIntr, RTL_R16(MultiIntr) & 0xf000);
  2370. RTL_W16(IntrMask, tp->intr_event);
  2371. }
  2372. static int rtl8169_change_mtu(struct net_device *dev, int new_mtu)
  2373. {
  2374. struct rtl8169_private *tp = netdev_priv(dev);
  2375. int ret = 0;
  2376. if (new_mtu < ETH_ZLEN || new_mtu > SafeMtu)
  2377. return -EINVAL;
  2378. dev->mtu = new_mtu;
  2379. if (!netif_running(dev))
  2380. goto out;
  2381. rtl8169_down(dev);
  2382. rtl8169_set_rxbufsize(tp, dev);
  2383. ret = rtl8169_init_ring(dev);
  2384. if (ret < 0)
  2385. goto out;
  2386. napi_enable(&tp->napi);
  2387. rtl_hw_start(dev);
  2388. rtl8169_request_timer(dev);
  2389. out:
  2390. return ret;
  2391. }
  2392. static inline void rtl8169_make_unusable_by_asic(struct RxDesc *desc)
  2393. {
  2394. desc->addr = cpu_to_le64(0x0badbadbadbadbadull);
  2395. desc->opts1 &= ~cpu_to_le32(DescOwn | RsvdMask);
  2396. }
  2397. static void rtl8169_free_rx_skb(struct rtl8169_private *tp,
  2398. struct sk_buff **sk_buff, struct RxDesc *desc)
  2399. {
  2400. struct pci_dev *pdev = tp->pci_dev;
  2401. pci_unmap_single(pdev, le64_to_cpu(desc->addr), tp->rx_buf_sz,
  2402. PCI_DMA_FROMDEVICE);
  2403. dev_kfree_skb(*sk_buff);
  2404. *sk_buff = NULL;
  2405. rtl8169_make_unusable_by_asic(desc);
  2406. }
  2407. static inline void rtl8169_mark_to_asic(struct RxDesc *desc, u32 rx_buf_sz)
  2408. {
  2409. u32 eor = le32_to_cpu(desc->opts1) & RingEnd;
  2410. desc->opts1 = cpu_to_le32(DescOwn | eor | rx_buf_sz);
  2411. }
  2412. static inline void rtl8169_map_to_asic(struct RxDesc *desc, dma_addr_t mapping,
  2413. u32 rx_buf_sz)
  2414. {
  2415. desc->addr = cpu_to_le64(mapping);
  2416. wmb();
  2417. rtl8169_mark_to_asic(desc, rx_buf_sz);
  2418. }
  2419. static struct sk_buff *rtl8169_alloc_rx_skb(struct pci_dev *pdev,
  2420. struct net_device *dev,
  2421. struct RxDesc *desc, int rx_buf_sz,
  2422. unsigned int align)
  2423. {
  2424. struct sk_buff *skb;
  2425. dma_addr_t mapping;
  2426. unsigned int pad;
  2427. pad = align ? align : NET_IP_ALIGN;
  2428. skb = netdev_alloc_skb(dev, rx_buf_sz + pad);
  2429. if (!skb)
  2430. goto err_out;
  2431. skb_reserve(skb, align ? ((pad - 1) & (unsigned long)skb->data) : pad);
  2432. mapping = pci_map_single(pdev, skb->data, rx_buf_sz,
  2433. PCI_DMA_FROMDEVICE);
  2434. rtl8169_map_to_asic(desc, mapping, rx_buf_sz);
  2435. out:
  2436. return skb;
  2437. err_out:
  2438. rtl8169_make_unusable_by_asic(desc);
  2439. goto out;
  2440. }
  2441. static void rtl8169_rx_clear(struct rtl8169_private *tp)
  2442. {
  2443. unsigned int i;
  2444. for (i = 0; i < NUM_RX_DESC; i++) {
  2445. if (tp->Rx_skbuff[i]) {
  2446. rtl8169_free_rx_skb(tp, tp->Rx_skbuff + i,
  2447. tp->RxDescArray + i);
  2448. }
  2449. }
  2450. }
  2451. static u32 rtl8169_rx_fill(struct rtl8169_private *tp, struct net_device *dev,
  2452. u32 start, u32 end)
  2453. {
  2454. u32 cur;
  2455. for (cur = start; end - cur != 0; cur++) {
  2456. struct sk_buff *skb;
  2457. unsigned int i = cur % NUM_RX_DESC;
  2458. WARN_ON((s32)(end - cur) < 0);
  2459. if (tp->Rx_skbuff[i])
  2460. continue;
  2461. skb = rtl8169_alloc_rx_skb(tp->pci_dev, dev,
  2462. tp->RxDescArray + i,
  2463. tp->rx_buf_sz, tp->align);
  2464. if (!skb)
  2465. break;
  2466. tp->Rx_skbuff[i] = skb;
  2467. }
  2468. return cur - start;
  2469. }
  2470. static inline void rtl8169_mark_as_last_descriptor(struct RxDesc *desc)
  2471. {
  2472. desc->opts1 |= cpu_to_le32(RingEnd);
  2473. }
  2474. static void rtl8169_init_ring_indexes(struct rtl8169_private *tp)
  2475. {
  2476. tp->dirty_tx = tp->dirty_rx = tp->cur_tx = tp->cur_rx = 0;
  2477. }
  2478. static int rtl8169_init_ring(struct net_device *dev)
  2479. {
  2480. struct rtl8169_private *tp = netdev_priv(dev);
  2481. rtl8169_init_ring_indexes(tp);
  2482. memset(tp->tx_skb, 0x0, NUM_TX_DESC * sizeof(struct ring_info));
  2483. memset(tp->Rx_skbuff, 0x0, NUM_RX_DESC * sizeof(struct sk_buff *));
  2484. if (rtl8169_rx_fill(tp, dev, 0, NUM_RX_DESC) != NUM_RX_DESC)
  2485. goto err_out;
  2486. rtl8169_mark_as_last_descriptor(tp->RxDescArray + NUM_RX_DESC - 1);
  2487. return 0;
  2488. err_out:
  2489. rtl8169_rx_clear(tp);
  2490. return -ENOMEM;
  2491. }
  2492. static void rtl8169_unmap_tx_skb(struct pci_dev *pdev, struct ring_info *tx_skb,
  2493. struct TxDesc *desc)
  2494. {
  2495. unsigned int len = tx_skb->len;
  2496. pci_unmap_single(pdev, le64_to_cpu(desc->addr), len, PCI_DMA_TODEVICE);
  2497. desc->opts1 = 0x00;
  2498. desc->opts2 = 0x00;
  2499. desc->addr = 0x00;
  2500. tx_skb->len = 0;
  2501. }
  2502. static void rtl8169_tx_clear(struct rtl8169_private *tp)
  2503. {
  2504. unsigned int i;
  2505. for (i = tp->dirty_tx; i < tp->dirty_tx + NUM_TX_DESC; i++) {
  2506. unsigned int entry = i % NUM_TX_DESC;
  2507. struct ring_info *tx_skb = tp->tx_skb + entry;
  2508. unsigned int len = tx_skb->len;
  2509. if (len) {
  2510. struct sk_buff *skb = tx_skb->skb;
  2511. rtl8169_unmap_tx_skb(tp->pci_dev, tx_skb,
  2512. tp->TxDescArray + entry);
  2513. if (skb) {
  2514. dev_kfree_skb(skb);
  2515. tx_skb->skb = NULL;
  2516. }
  2517. tp->dev->stats.tx_dropped++;
  2518. }
  2519. }
  2520. tp->cur_tx = tp->dirty_tx = 0;
  2521. }
  2522. static void rtl8169_schedule_work(struct net_device *dev, work_func_t task)
  2523. {
  2524. struct rtl8169_private *tp = netdev_priv(dev);
  2525. PREPARE_DELAYED_WORK(&tp->task, task);
  2526. schedule_delayed_work(&tp->task, 4);
  2527. }
  2528. static void rtl8169_wait_for_quiescence(struct net_device *dev)
  2529. {
  2530. struct rtl8169_private *tp = netdev_priv(dev);
  2531. void __iomem *ioaddr = tp->mmio_addr;
  2532. synchronize_irq(dev->irq);
  2533. /* Wait for any pending NAPI task to complete */
  2534. napi_disable(&tp->napi);
  2535. rtl8169_irq_mask_and_ack(ioaddr);
  2536. tp->intr_mask = 0xffff;
  2537. RTL_W16(IntrMask, tp->intr_event);
  2538. napi_enable(&tp->napi);
  2539. }
  2540. static void rtl8169_reinit_task(struct work_struct *work)
  2541. {
  2542. struct rtl8169_private *tp =
  2543. container_of(work, struct rtl8169_private, task.work);
  2544. struct net_device *dev = tp->dev;
  2545. int ret;
  2546. rtnl_lock();
  2547. if (!netif_running(dev))
  2548. goto out_unlock;
  2549. rtl8169_wait_for_quiescence(dev);
  2550. rtl8169_close(dev);
  2551. ret = rtl8169_open(dev);
  2552. if (unlikely(ret < 0)) {
  2553. if (net_ratelimit() && netif_msg_drv(tp)) {
  2554. printk(KERN_ERR PFX "%s: reinit failure (status = %d)."
  2555. " Rescheduling.\n", dev->name, ret);
  2556. }
  2557. rtl8169_schedule_work(dev, rtl8169_reinit_task);
  2558. }
  2559. out_unlock:
  2560. rtnl_unlock();
  2561. }
  2562. static void rtl8169_reset_task(struct work_struct *work)
  2563. {
  2564. struct rtl8169_private *tp =
  2565. container_of(work, struct rtl8169_private, task.work);
  2566. struct net_device *dev = tp->dev;
  2567. rtnl_lock();
  2568. if (!netif_running(dev))
  2569. goto out_unlock;
  2570. rtl8169_wait_for_quiescence(dev);
  2571. rtl8169_rx_interrupt(dev, tp, tp->mmio_addr, ~(u32)0);
  2572. rtl8169_tx_clear(tp);
  2573. if (tp->dirty_rx == tp->cur_rx) {
  2574. rtl8169_init_ring_indexes(tp);
  2575. rtl_hw_start(dev);
  2576. netif_wake_queue(dev);
  2577. rtl8169_check_link_status(dev, tp, tp->mmio_addr);
  2578. } else {
  2579. if (net_ratelimit() && netif_msg_intr(tp)) {
  2580. printk(KERN_EMERG PFX "%s: Rx buffers shortage\n",
  2581. dev->name);
  2582. }
  2583. rtl8169_schedule_work(dev, rtl8169_reset_task);
  2584. }
  2585. out_unlock:
  2586. rtnl_unlock();
  2587. }
  2588. static void rtl8169_tx_timeout(struct net_device *dev)
  2589. {
  2590. struct rtl8169_private *tp = netdev_priv(dev);
  2591. rtl8169_hw_reset(tp->mmio_addr);
  2592. /* Let's wait a bit while any (async) irq lands on */
  2593. rtl8169_schedule_work(dev, rtl8169_reset_task);
  2594. }
  2595. static int rtl8169_xmit_frags(struct rtl8169_private *tp, struct sk_buff *skb,
  2596. u32 opts1)
  2597. {
  2598. struct skb_shared_info *info = skb_shinfo(skb);
  2599. unsigned int cur_frag, entry;
  2600. struct TxDesc * uninitialized_var(txd);
  2601. entry = tp->cur_tx;
  2602. for (cur_frag = 0; cur_frag < info->nr_frags; cur_frag++) {
  2603. skb_frag_t *frag = info->frags + cur_frag;
  2604. dma_addr_t mapping;
  2605. u32 status, len;
  2606. void *addr;
  2607. entry = (entry + 1) % NUM_TX_DESC;
  2608. txd = tp->TxDescArray + entry;
  2609. len = frag->size;
  2610. addr = ((void *) page_address(frag->page)) + frag->page_offset;
  2611. mapping = pci_map_single(tp->pci_dev, addr, len, PCI_DMA_TODEVICE);
  2612. /* anti gcc 2.95.3 bugware (sic) */
  2613. status = opts1 | len | (RingEnd * !((entry + 1) % NUM_TX_DESC));
  2614. txd->opts1 = cpu_to_le32(status);
  2615. txd->addr = cpu_to_le64(mapping);
  2616. tp->tx_skb[entry].len = len;
  2617. }
  2618. if (cur_frag) {
  2619. tp->tx_skb[entry].skb = skb;
  2620. txd->opts1 |= cpu_to_le32(LastFrag);
  2621. }
  2622. return cur_frag;
  2623. }
  2624. static inline u32 rtl8169_tso_csum(struct sk_buff *skb, struct net_device *dev)
  2625. {
  2626. if (dev->features & NETIF_F_TSO) {
  2627. u32 mss = skb_shinfo(skb)->gso_size;
  2628. if (mss)
  2629. return LargeSend | ((mss & MSSMask) << MSSShift);
  2630. }
  2631. if (skb->ip_summed == CHECKSUM_PARTIAL) {
  2632. const struct iphdr *ip = ip_hdr(skb);
  2633. if (ip->protocol == IPPROTO_TCP)
  2634. return IPCS | TCPCS;
  2635. else if (ip->protocol == IPPROTO_UDP)
  2636. return IPCS | UDPCS;
  2637. WARN_ON(1); /* we need a WARN() */
  2638. }
  2639. return 0;
  2640. }
  2641. static int rtl8169_start_xmit(struct sk_buff *skb, struct net_device *dev)
  2642. {
  2643. struct rtl8169_private *tp = netdev_priv(dev);
  2644. unsigned int frags, entry = tp->cur_tx % NUM_TX_DESC;
  2645. struct TxDesc *txd = tp->TxDescArray + entry;
  2646. void __iomem *ioaddr = tp->mmio_addr;
  2647. dma_addr_t mapping;
  2648. u32 status, len;
  2649. u32 opts1;
  2650. int ret = NETDEV_TX_OK;
  2651. if (unlikely(TX_BUFFS_AVAIL(tp) < skb_shinfo(skb)->nr_frags)) {
  2652. if (netif_msg_drv(tp)) {
  2653. printk(KERN_ERR
  2654. "%s: BUG! Tx Ring full when queue awake!\n",
  2655. dev->name);
  2656. }
  2657. goto err_stop;
  2658. }
  2659. if (unlikely(le32_to_cpu(txd->opts1) & DescOwn))
  2660. goto err_stop;
  2661. opts1 = DescOwn | rtl8169_tso_csum(skb, dev);
  2662. frags = rtl8169_xmit_frags(tp, skb, opts1);
  2663. if (frags) {
  2664. len = skb_headlen(skb);
  2665. opts1 |= FirstFrag;
  2666. } else {
  2667. len = skb->len;
  2668. opts1 |= FirstFrag | LastFrag;
  2669. tp->tx_skb[entry].skb = skb;
  2670. }
  2671. mapping = pci_map_single(tp->pci_dev, skb->data, len, PCI_DMA_TODEVICE);
  2672. tp->tx_skb[entry].len = len;
  2673. txd->addr = cpu_to_le64(mapping);
  2674. txd->opts2 = cpu_to_le32(rtl8169_tx_vlan_tag(tp, skb));
  2675. wmb();
  2676. /* anti gcc 2.95.3 bugware (sic) */
  2677. status = opts1 | len | (RingEnd * !((entry + 1) % NUM_TX_DESC));
  2678. txd->opts1 = cpu_to_le32(status);
  2679. dev->trans_start = jiffies;
  2680. tp->cur_tx += frags + 1;
  2681. smp_wmb();
  2682. RTL_W8(TxPoll, NPQ); /* set polling bit */
  2683. if (TX_BUFFS_AVAIL(tp) < MAX_SKB_FRAGS) {
  2684. netif_stop_queue(dev);
  2685. smp_rmb();
  2686. if (TX_BUFFS_AVAIL(tp) >= MAX_SKB_FRAGS)
  2687. netif_wake_queue(dev);
  2688. }
  2689. out:
  2690. return ret;
  2691. err_stop:
  2692. netif_stop_queue(dev);
  2693. ret = NETDEV_TX_BUSY;
  2694. dev->stats.tx_dropped++;
  2695. goto out;
  2696. }
  2697. static void rtl8169_pcierr_interrupt(struct net_device *dev)
  2698. {
  2699. struct rtl8169_private *tp = netdev_priv(dev);
  2700. struct pci_dev *pdev = tp->pci_dev;
  2701. void __iomem *ioaddr = tp->mmio_addr;
  2702. u16 pci_status, pci_cmd;
  2703. pci_read_config_word(pdev, PCI_COMMAND, &pci_cmd);
  2704. pci_read_config_word(pdev, PCI_STATUS, &pci_status);
  2705. if (netif_msg_intr(tp)) {
  2706. printk(KERN_ERR
  2707. "%s: PCI error (cmd = 0x%04x, status = 0x%04x).\n",
  2708. dev->name, pci_cmd, pci_status);
  2709. }
  2710. /*
  2711. * The recovery sequence below admits a very elaborated explanation:
  2712. * - it seems to work;
  2713. * - I did not see what else could be done;
  2714. * - it makes iop3xx happy.
  2715. *
  2716. * Feel free to adjust to your needs.
  2717. */
  2718. if (pdev->broken_parity_status)
  2719. pci_cmd &= ~PCI_COMMAND_PARITY;
  2720. else
  2721. pci_cmd |= PCI_COMMAND_SERR | PCI_COMMAND_PARITY;
  2722. pci_write_config_word(pdev, PCI_COMMAND, pci_cmd);
  2723. pci_write_config_word(pdev, PCI_STATUS,
  2724. pci_status & (PCI_STATUS_DETECTED_PARITY |
  2725. PCI_STATUS_SIG_SYSTEM_ERROR | PCI_STATUS_REC_MASTER_ABORT |
  2726. PCI_STATUS_REC_TARGET_ABORT | PCI_STATUS_SIG_TARGET_ABORT));
  2727. /* The infamous DAC f*ckup only happens at boot time */
  2728. if ((tp->cp_cmd & PCIDAC) && !tp->dirty_rx && !tp->cur_rx) {
  2729. if (netif_msg_intr(tp))
  2730. printk(KERN_INFO "%s: disabling PCI DAC.\n", dev->name);
  2731. tp->cp_cmd &= ~PCIDAC;
  2732. RTL_W16(CPlusCmd, tp->cp_cmd);
  2733. dev->features &= ~NETIF_F_HIGHDMA;
  2734. }
  2735. rtl8169_hw_reset(ioaddr);
  2736. rtl8169_schedule_work(dev, rtl8169_reinit_task);
  2737. }
  2738. static void rtl8169_tx_interrupt(struct net_device *dev,
  2739. struct rtl8169_private *tp,
  2740. void __iomem *ioaddr)
  2741. {
  2742. unsigned int dirty_tx, tx_left;
  2743. dirty_tx = tp->dirty_tx;
  2744. smp_rmb();
  2745. tx_left = tp->cur_tx - dirty_tx;
  2746. while (tx_left > 0) {
  2747. unsigned int entry = dirty_tx % NUM_TX_DESC;
  2748. struct ring_info *tx_skb = tp->tx_skb + entry;
  2749. u32 len = tx_skb->len;
  2750. u32 status;
  2751. rmb();
  2752. status = le32_to_cpu(tp->TxDescArray[entry].opts1);
  2753. if (status & DescOwn)
  2754. break;
  2755. dev->stats.tx_bytes += len;
  2756. dev->stats.tx_packets++;
  2757. rtl8169_unmap_tx_skb(tp->pci_dev, tx_skb, tp->TxDescArray + entry);
  2758. if (status & LastFrag) {
  2759. dev_kfree_skb_irq(tx_skb->skb);
  2760. tx_skb->skb = NULL;
  2761. }
  2762. dirty_tx++;
  2763. tx_left--;
  2764. }
  2765. if (tp->dirty_tx != dirty_tx) {
  2766. tp->dirty_tx = dirty_tx;
  2767. smp_wmb();
  2768. if (netif_queue_stopped(dev) &&
  2769. (TX_BUFFS_AVAIL(tp) >= MAX_SKB_FRAGS)) {
  2770. netif_wake_queue(dev);
  2771. }
  2772. /*
  2773. * 8168 hack: TxPoll requests are lost when the Tx packets are
  2774. * too close. Let's kick an extra TxPoll request when a burst
  2775. * of start_xmit activity is detected (if it is not detected,
  2776. * it is slow enough). -- FR
  2777. */
  2778. smp_rmb();
  2779. if (tp->cur_tx != dirty_tx)
  2780. RTL_W8(TxPoll, NPQ);
  2781. }
  2782. }
  2783. static inline int rtl8169_fragmented_frame(u32 status)
  2784. {
  2785. return (status & (FirstFrag | LastFrag)) != (FirstFrag | LastFrag);
  2786. }
  2787. static inline void rtl8169_rx_csum(struct sk_buff *skb, struct RxDesc *desc)
  2788. {
  2789. u32 opts1 = le32_to_cpu(desc->opts1);
  2790. u32 status = opts1 & RxProtoMask;
  2791. if (((status == RxProtoTCP) && !(opts1 & TCPFail)) ||
  2792. ((status == RxProtoUDP) && !(opts1 & UDPFail)) ||
  2793. ((status == RxProtoIP) && !(opts1 & IPFail)))
  2794. skb->ip_summed = CHECKSUM_UNNECESSARY;
  2795. else
  2796. skb->ip_summed = CHECKSUM_NONE;
  2797. }
  2798. static inline bool rtl8169_try_rx_copy(struct sk_buff **sk_buff,
  2799. struct rtl8169_private *tp, int pkt_size,
  2800. dma_addr_t addr)
  2801. {
  2802. struct sk_buff *skb;
  2803. bool done = false;
  2804. if (pkt_size >= rx_copybreak)
  2805. goto out;
  2806. skb = netdev_alloc_skb(tp->dev, pkt_size + NET_IP_ALIGN);
  2807. if (!skb)
  2808. goto out;
  2809. pci_dma_sync_single_for_cpu(tp->pci_dev, addr, pkt_size,
  2810. PCI_DMA_FROMDEVICE);
  2811. skb_reserve(skb, NET_IP_ALIGN);
  2812. skb_copy_from_linear_data(*sk_buff, skb->data, pkt_size);
  2813. *sk_buff = skb;
  2814. done = true;
  2815. out:
  2816. return done;
  2817. }
  2818. static int rtl8169_rx_interrupt(struct net_device *dev,
  2819. struct rtl8169_private *tp,
  2820. void __iomem *ioaddr, u32 budget)
  2821. {
  2822. unsigned int cur_rx, rx_left;
  2823. unsigned int delta, count;
  2824. cur_rx = tp->cur_rx;
  2825. rx_left = NUM_RX_DESC + tp->dirty_rx - cur_rx;
  2826. rx_left = min(rx_left, budget);
  2827. for (; rx_left > 0; rx_left--, cur_rx++) {
  2828. unsigned int entry = cur_rx % NUM_RX_DESC;
  2829. struct RxDesc *desc = tp->RxDescArray + entry;
  2830. u32 status;
  2831. rmb();
  2832. status = le32_to_cpu(desc->opts1);
  2833. if (status & DescOwn)
  2834. break;
  2835. if (unlikely(status & RxRES)) {
  2836. if (netif_msg_rx_err(tp)) {
  2837. printk(KERN_INFO
  2838. "%s: Rx ERROR. status = %08x\n",
  2839. dev->name, status);
  2840. }
  2841. dev->stats.rx_errors++;
  2842. if (status & (RxRWT | RxRUNT))
  2843. dev->stats.rx_length_errors++;
  2844. if (status & RxCRC)
  2845. dev->stats.rx_crc_errors++;
  2846. if (status & RxFOVF) {
  2847. rtl8169_schedule_work(dev, rtl8169_reset_task);
  2848. dev->stats.rx_fifo_errors++;
  2849. }
  2850. rtl8169_mark_to_asic(desc, tp->rx_buf_sz);
  2851. } else {
  2852. struct sk_buff *skb = tp->Rx_skbuff[entry];
  2853. dma_addr_t addr = le64_to_cpu(desc->addr);
  2854. int pkt_size = (status & 0x00001FFF) - 4;
  2855. struct pci_dev *pdev = tp->pci_dev;
  2856. /*
  2857. * The driver does not support incoming fragmented
  2858. * frames. They are seen as a symptom of over-mtu
  2859. * sized frames.
  2860. */
  2861. if (unlikely(rtl8169_fragmented_frame(status))) {
  2862. dev->stats.rx_dropped++;
  2863. dev->stats.rx_length_errors++;
  2864. rtl8169_mark_to_asic(desc, tp->rx_buf_sz);
  2865. continue;
  2866. }
  2867. rtl8169_rx_csum(skb, desc);
  2868. if (rtl8169_try_rx_copy(&skb, tp, pkt_size, addr)) {
  2869. pci_dma_sync_single_for_device(pdev, addr,
  2870. pkt_size, PCI_DMA_FROMDEVICE);
  2871. rtl8169_mark_to_asic(desc, tp->rx_buf_sz);
  2872. } else {
  2873. pci_unmap_single(pdev, addr, tp->rx_buf_sz,
  2874. PCI_DMA_FROMDEVICE);
  2875. tp->Rx_skbuff[entry] = NULL;
  2876. }
  2877. skb_put(skb, pkt_size);
  2878. skb->protocol = eth_type_trans(skb, dev);
  2879. if (rtl8169_rx_vlan_skb(tp, desc, skb) < 0)
  2880. netif_receive_skb(skb);
  2881. dev->stats.rx_bytes += pkt_size;
  2882. dev->stats.rx_packets++;
  2883. }
  2884. /* Work around for AMD plateform. */
  2885. if ((desc->opts2 & cpu_to_le32(0xfffe000)) &&
  2886. (tp->mac_version == RTL_GIGA_MAC_VER_05)) {
  2887. desc->opts2 = 0;
  2888. cur_rx++;
  2889. }
  2890. }
  2891. count = cur_rx - tp->cur_rx;
  2892. tp->cur_rx = cur_rx;
  2893. delta = rtl8169_rx_fill(tp, dev, tp->dirty_rx, tp->cur_rx);
  2894. if (!delta && count && netif_msg_intr(tp))
  2895. printk(KERN_INFO "%s: no Rx buffer allocated\n", dev->name);
  2896. tp->dirty_rx += delta;
  2897. /*
  2898. * FIXME: until there is periodic timer to try and refill the ring,
  2899. * a temporary shortage may definitely kill the Rx process.
  2900. * - disable the asic to try and avoid an overflow and kick it again
  2901. * after refill ?
  2902. * - how do others driver handle this condition (Uh oh...).
  2903. */
  2904. if ((tp->dirty_rx + NUM_RX_DESC == tp->cur_rx) && netif_msg_intr(tp))
  2905. printk(KERN_EMERG "%s: Rx buffers exhausted\n", dev->name);
  2906. return count;
  2907. }
  2908. static irqreturn_t rtl8169_interrupt(int irq, void *dev_instance)
  2909. {
  2910. struct net_device *dev = dev_instance;
  2911. struct rtl8169_private *tp = netdev_priv(dev);
  2912. void __iomem *ioaddr = tp->mmio_addr;
  2913. int handled = 0;
  2914. int status;
  2915. status = RTL_R16(IntrStatus);
  2916. /* hotplug/major error/no more work/shared irq */
  2917. if ((status == 0xffff) || !status)
  2918. goto out;
  2919. handled = 1;
  2920. if (unlikely(!netif_running(dev))) {
  2921. rtl8169_asic_down(ioaddr);
  2922. goto out;
  2923. }
  2924. status &= tp->intr_mask;
  2925. RTL_W16(IntrStatus,
  2926. (status & RxFIFOOver) ? (status | RxOverflow) : status);
  2927. if (!(status & tp->intr_event))
  2928. goto out;
  2929. /* Work around for rx fifo overflow */
  2930. if (unlikely(status & RxFIFOOver) &&
  2931. (tp->mac_version == RTL_GIGA_MAC_VER_11)) {
  2932. netif_stop_queue(dev);
  2933. rtl8169_tx_timeout(dev);
  2934. goto out;
  2935. }
  2936. if (unlikely(status & SYSErr)) {
  2937. rtl8169_pcierr_interrupt(dev);
  2938. goto out;
  2939. }
  2940. if (status & LinkChg)
  2941. rtl8169_check_link_status(dev, tp, ioaddr);
  2942. if (status & tp->napi_event) {
  2943. RTL_W16(IntrMask, tp->intr_event & ~tp->napi_event);
  2944. tp->intr_mask = ~tp->napi_event;
  2945. if (likely(napi_schedule_prep(&tp->napi)))
  2946. __napi_schedule(&tp->napi);
  2947. else if (netif_msg_intr(tp)) {
  2948. printk(KERN_INFO "%s: interrupt %04x in poll\n",
  2949. dev->name, status);
  2950. }
  2951. }
  2952. out:
  2953. return IRQ_RETVAL(handled);
  2954. }
  2955. static int rtl8169_poll(struct napi_struct *napi, int budget)
  2956. {
  2957. struct rtl8169_private *tp = container_of(napi, struct rtl8169_private, napi);
  2958. struct net_device *dev = tp->dev;
  2959. void __iomem *ioaddr = tp->mmio_addr;
  2960. int work_done;
  2961. work_done = rtl8169_rx_interrupt(dev, tp, ioaddr, (u32) budget);
  2962. rtl8169_tx_interrupt(dev, tp, ioaddr);
  2963. if (work_done < budget) {
  2964. napi_complete(napi);
  2965. tp->intr_mask = 0xffff;
  2966. /*
  2967. * 20040426: the barrier is not strictly required but the
  2968. * behavior of the irq handler could be less predictable
  2969. * without it. Btw, the lack of flush for the posted pci
  2970. * write is safe - FR
  2971. */
  2972. smp_wmb();
  2973. RTL_W16(IntrMask, tp->intr_event);
  2974. }
  2975. return work_done;
  2976. }
  2977. static void rtl8169_rx_missed(struct net_device *dev, void __iomem *ioaddr)
  2978. {
  2979. struct rtl8169_private *tp = netdev_priv(dev);
  2980. if (tp->mac_version > RTL_GIGA_MAC_VER_06)
  2981. return;
  2982. dev->stats.rx_missed_errors += (RTL_R32(RxMissed) & 0xffffff);
  2983. RTL_W32(RxMissed, 0);
  2984. }
  2985. static void rtl8169_down(struct net_device *dev)
  2986. {
  2987. struct rtl8169_private *tp = netdev_priv(dev);
  2988. void __iomem *ioaddr = tp->mmio_addr;
  2989. unsigned int intrmask;
  2990. rtl8169_delete_timer(dev);
  2991. netif_stop_queue(dev);
  2992. napi_disable(&tp->napi);
  2993. core_down:
  2994. spin_lock_irq(&tp->lock);
  2995. rtl8169_asic_down(ioaddr);
  2996. rtl8169_rx_missed(dev, ioaddr);
  2997. spin_unlock_irq(&tp->lock);
  2998. synchronize_irq(dev->irq);
  2999. /* Give a racing hard_start_xmit a few cycles to complete. */
  3000. synchronize_sched(); /* FIXME: should this be synchronize_irq()? */
  3001. /*
  3002. * And now for the 50k$ question: are IRQ disabled or not ?
  3003. *
  3004. * Two paths lead here:
  3005. * 1) dev->close
  3006. * -> netif_running() is available to sync the current code and the
  3007. * IRQ handler. See rtl8169_interrupt for details.
  3008. * 2) dev->change_mtu
  3009. * -> rtl8169_poll can not be issued again and re-enable the
  3010. * interruptions. Let's simply issue the IRQ down sequence again.
  3011. *
  3012. * No loop if hotpluged or major error (0xffff).
  3013. */
  3014. intrmask = RTL_R16(IntrMask);
  3015. if (intrmask && (intrmask != 0xffff))
  3016. goto core_down;
  3017. rtl8169_tx_clear(tp);
  3018. rtl8169_rx_clear(tp);
  3019. }
  3020. static int rtl8169_close(struct net_device *dev)
  3021. {
  3022. struct rtl8169_private *tp = netdev_priv(dev);
  3023. struct pci_dev *pdev = tp->pci_dev;
  3024. /* update counters before going down */
  3025. rtl8169_update_counters(dev);
  3026. rtl8169_down(dev);
  3027. free_irq(dev->irq, dev);
  3028. pci_free_consistent(pdev, R8169_RX_RING_BYTES, tp->RxDescArray,
  3029. tp->RxPhyAddr);
  3030. pci_free_consistent(pdev, R8169_TX_RING_BYTES, tp->TxDescArray,
  3031. tp->TxPhyAddr);
  3032. tp->TxDescArray = NULL;
  3033. tp->RxDescArray = NULL;
  3034. return 0;
  3035. }
  3036. static void rtl_set_rx_mode(struct net_device *dev)
  3037. {
  3038. struct rtl8169_private *tp = netdev_priv(dev);
  3039. void __iomem *ioaddr = tp->mmio_addr;
  3040. unsigned long flags;
  3041. u32 mc_filter[2]; /* Multicast hash filter */
  3042. int rx_mode;
  3043. u32 tmp = 0;
  3044. if (dev->flags & IFF_PROMISC) {
  3045. /* Unconditionally log net taps. */
  3046. if (netif_msg_link(tp)) {
  3047. printk(KERN_NOTICE "%s: Promiscuous mode enabled.\n",
  3048. dev->name);
  3049. }
  3050. rx_mode =
  3051. AcceptBroadcast | AcceptMulticast | AcceptMyPhys |
  3052. AcceptAllPhys;
  3053. mc_filter[1] = mc_filter[0] = 0xffffffff;
  3054. } else if ((dev->mc_count > multicast_filter_limit)
  3055. || (dev->flags & IFF_ALLMULTI)) {
  3056. /* Too many to filter perfectly -- accept all multicasts. */
  3057. rx_mode = AcceptBroadcast | AcceptMulticast | AcceptMyPhys;
  3058. mc_filter[1] = mc_filter[0] = 0xffffffff;
  3059. } else {
  3060. struct dev_mc_list *mclist;
  3061. unsigned int i;
  3062. rx_mode = AcceptBroadcast | AcceptMyPhys;
  3063. mc_filter[1] = mc_filter[0] = 0;
  3064. for (i = 0, mclist = dev->mc_list; mclist && i < dev->mc_count;
  3065. i++, mclist = mclist->next) {
  3066. int bit_nr = ether_crc(ETH_ALEN, mclist->dmi_addr) >> 26;
  3067. mc_filter[bit_nr >> 5] |= 1 << (bit_nr & 31);
  3068. rx_mode |= AcceptMulticast;
  3069. }
  3070. }
  3071. spin_lock_irqsave(&tp->lock, flags);
  3072. tmp = rtl8169_rx_config | rx_mode |
  3073. (RTL_R32(RxConfig) & rtl_chip_info[tp->chipset].RxConfigMask);
  3074. if (tp->mac_version > RTL_GIGA_MAC_VER_06) {
  3075. u32 data = mc_filter[0];
  3076. mc_filter[0] = swab32(mc_filter[1]);
  3077. mc_filter[1] = swab32(data);
  3078. }
  3079. RTL_W32(MAR0 + 0, mc_filter[0]);
  3080. RTL_W32(MAR0 + 4, mc_filter[1]);
  3081. RTL_W32(RxConfig, tmp);
  3082. spin_unlock_irqrestore(&tp->lock, flags);
  3083. }
  3084. /**
  3085. * rtl8169_get_stats - Get rtl8169 read/write statistics
  3086. * @dev: The Ethernet Device to get statistics for
  3087. *
  3088. * Get TX/RX statistics for rtl8169
  3089. */
  3090. static struct net_device_stats *rtl8169_get_stats(struct net_device *dev)
  3091. {
  3092. struct rtl8169_private *tp = netdev_priv(dev);
  3093. void __iomem *ioaddr = tp->mmio_addr;
  3094. unsigned long flags;
  3095. if (netif_running(dev)) {
  3096. spin_lock_irqsave(&tp->lock, flags);
  3097. rtl8169_rx_missed(dev, ioaddr);
  3098. spin_unlock_irqrestore(&tp->lock, flags);
  3099. }
  3100. return &dev->stats;
  3101. }
  3102. #ifdef CONFIG_PM
  3103. static int rtl8169_suspend(struct pci_dev *pdev, pm_message_t state)
  3104. {
  3105. struct net_device *dev = pci_get_drvdata(pdev);
  3106. struct rtl8169_private *tp = netdev_priv(dev);
  3107. void __iomem *ioaddr = tp->mmio_addr;
  3108. if (!netif_running(dev))
  3109. goto out_pci_suspend;
  3110. netif_device_detach(dev);
  3111. netif_stop_queue(dev);
  3112. spin_lock_irq(&tp->lock);
  3113. rtl8169_asic_down(ioaddr);
  3114. rtl8169_rx_missed(dev, ioaddr);
  3115. spin_unlock_irq(&tp->lock);
  3116. out_pci_suspend:
  3117. pci_save_state(pdev);
  3118. pci_enable_wake(pdev, pci_choose_state(pdev, state),
  3119. (tp->features & RTL_FEATURE_WOL) ? 1 : 0);
  3120. pci_set_power_state(pdev, pci_choose_state(pdev, state));
  3121. return 0;
  3122. }
  3123. static int rtl8169_resume(struct pci_dev *pdev)
  3124. {
  3125. struct net_device *dev = pci_get_drvdata(pdev);
  3126. pci_set_power_state(pdev, PCI_D0);
  3127. pci_restore_state(pdev);
  3128. pci_enable_wake(pdev, PCI_D0, 0);
  3129. if (!netif_running(dev))
  3130. goto out;
  3131. netif_device_attach(dev);
  3132. rtl8169_schedule_work(dev, rtl8169_reset_task);
  3133. out:
  3134. return 0;
  3135. }
  3136. static void rtl_shutdown(struct pci_dev *pdev)
  3137. {
  3138. rtl8169_suspend(pdev, PMSG_SUSPEND);
  3139. }
  3140. #endif /* CONFIG_PM */
  3141. static struct pci_driver rtl8169_pci_driver = {
  3142. .name = MODULENAME,
  3143. .id_table = rtl8169_pci_tbl,
  3144. .probe = rtl8169_init_one,
  3145. .remove = __devexit_p(rtl8169_remove_one),
  3146. #ifdef CONFIG_PM
  3147. .suspend = rtl8169_suspend,
  3148. .resume = rtl8169_resume,
  3149. .shutdown = rtl_shutdown,
  3150. #endif
  3151. };
  3152. static int __init rtl8169_init_module(void)
  3153. {
  3154. return pci_register_driver(&rtl8169_pci_driver);
  3155. }
  3156. static void __exit rtl8169_cleanup_module(void)
  3157. {
  3158. pci_unregister_driver(&rtl8169_pci_driver);
  3159. }
  3160. module_init(rtl8169_init_module);
  3161. module_exit(rtl8169_cleanup_module);