myri10ge.c 116 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757275827592760276127622763276427652766276727682769277027712772277327742775277627772778277927802781278227832784278527862787278827892790279127922793279427952796279727982799280028012802280328042805280628072808280928102811281228132814281528162817281828192820282128222823282428252826282728282829283028312832283328342835283628372838283928402841284228432844284528462847284828492850285128522853285428552856285728582859286028612862286328642865286628672868286928702871287228732874287528762877287828792880288128822883288428852886288728882889289028912892289328942895289628972898289929002901290229032904290529062907290829092910291129122913291429152916291729182919292029212922292329242925292629272928292929302931293229332934293529362937293829392940294129422943294429452946294729482949295029512952295329542955295629572958295929602961296229632964296529662967296829692970297129722973297429752976297729782979298029812982298329842985298629872988298929902991299229932994299529962997299829993000300130023003300430053006300730083009301030113012301330143015301630173018301930203021302230233024302530263027302830293030303130323033303430353036303730383039304030413042304330443045304630473048304930503051305230533054305530563057305830593060306130623063306430653066306730683069307030713072307330743075307630773078307930803081308230833084308530863087308830893090309130923093309430953096309730983099310031013102310331043105310631073108310931103111311231133114311531163117311831193120312131223123312431253126312731283129313031313132313331343135313631373138313931403141314231433144314531463147314831493150315131523153315431553156315731583159316031613162316331643165316631673168316931703171317231733174317531763177317831793180318131823183318431853186318731883189319031913192319331943195319631973198319932003201320232033204320532063207320832093210321132123213321432153216321732183219322032213222322332243225322632273228322932303231323232333234323532363237323832393240324132423243324432453246324732483249325032513252325332543255325632573258325932603261326232633264326532663267326832693270327132723273327432753276327732783279328032813282328332843285328632873288328932903291329232933294329532963297329832993300330133023303330433053306330733083309331033113312331333143315331633173318331933203321332233233324332533263327332833293330333133323333333433353336333733383339334033413342334333443345334633473348334933503351335233533354335533563357335833593360336133623363336433653366336733683369337033713372337333743375337633773378337933803381338233833384338533863387338833893390339133923393339433953396339733983399340034013402340334043405340634073408340934103411341234133414341534163417341834193420342134223423342434253426342734283429343034313432343334343435343634373438343934403441344234433444344534463447344834493450345134523453345434553456345734583459346034613462346334643465346634673468346934703471347234733474347534763477347834793480348134823483348434853486348734883489349034913492349334943495349634973498349935003501350235033504350535063507350835093510351135123513351435153516351735183519352035213522352335243525352635273528352935303531353235333534353535363537353835393540354135423543354435453546354735483549355035513552355335543555355635573558355935603561356235633564356535663567356835693570357135723573357435753576357735783579358035813582358335843585358635873588358935903591359235933594359535963597359835993600360136023603360436053606360736083609361036113612361336143615361636173618361936203621362236233624362536263627362836293630363136323633363436353636363736383639364036413642364336443645364636473648364936503651365236533654365536563657365836593660366136623663366436653666366736683669367036713672367336743675367636773678367936803681368236833684368536863687368836893690369136923693369436953696369736983699370037013702370337043705370637073708370937103711371237133714371537163717371837193720372137223723372437253726372737283729373037313732373337343735373637373738373937403741374237433744374537463747374837493750375137523753375437553756375737583759376037613762376337643765376637673768376937703771377237733774377537763777377837793780378137823783378437853786378737883789379037913792379337943795379637973798379938003801380238033804380538063807380838093810381138123813381438153816381738183819382038213822382338243825382638273828382938303831383238333834383538363837383838393840384138423843384438453846384738483849385038513852385338543855385638573858385938603861386238633864386538663867386838693870387138723873387438753876387738783879388038813882388338843885388638873888388938903891389238933894389538963897389838993900390139023903390439053906390739083909391039113912391339143915391639173918391939203921392239233924392539263927392839293930393139323933393439353936393739383939394039413942394339443945394639473948394939503951395239533954395539563957395839593960396139623963396439653966396739683969397039713972397339743975397639773978397939803981398239833984398539863987398839893990399139923993399439953996399739983999400040014002400340044005400640074008400940104011401240134014401540164017401840194020402140224023402440254026402740284029403040314032403340344035403640374038403940404041404240434044404540464047404840494050405140524053405440554056405740584059406040614062406340644065406640674068406940704071407240734074407540764077407840794080408140824083408440854086408740884089409040914092409340944095409640974098409941004101410241034104410541064107410841094110411141124113411441154116411741184119412041214122412341244125412641274128412941304131413241334134413541364137413841394140414141424143414441454146414741484149415041514152415341544155415641574158415941604161416241634164416541664167416841694170417141724173417441754176417741784179418041814182418341844185418641874188418941904191419241934194419541964197419841994200420142024203420442054206420742084209421042114212421342144215421642174218421942204221422242234224422542264227422842294230423142324233423442354236
  1. /*************************************************************************
  2. * myri10ge.c: Myricom Myri-10G Ethernet driver.
  3. *
  4. * Copyright (C) 2005 - 2011 Myricom, Inc.
  5. * All rights reserved.
  6. *
  7. * Redistribution and use in source and binary forms, with or without
  8. * modification, are permitted provided that the following conditions
  9. * are met:
  10. * 1. Redistributions of source code must retain the above copyright
  11. * notice, this list of conditions and the following disclaimer.
  12. * 2. Redistributions in binary form must reproduce the above copyright
  13. * notice, this list of conditions and the following disclaimer in the
  14. * documentation and/or other materials provided with the distribution.
  15. * 3. Neither the name of Myricom, Inc. nor the names of its contributors
  16. * may be used to endorse or promote products derived from this software
  17. * without specific prior written permission.
  18. *
  19. * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS"
  20. * AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
  21. * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
  22. * ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR CONTRIBUTORS BE
  23. * LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
  24. * CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
  25. * SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
  26. * INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
  27. * CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
  28. * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
  29. * POSSIBILITY OF SUCH DAMAGE.
  30. *
  31. *
  32. * If the eeprom on your board is not recent enough, you will need to get a
  33. * newer firmware image at:
  34. * http://www.myri.com/scs/download-Myri10GE.html
  35. *
  36. * Contact Information:
  37. * <help@myri.com>
  38. * Myricom, Inc., 325N Santa Anita Avenue, Arcadia, CA 91006
  39. *************************************************************************/
  40. #define pr_fmt(fmt) KBUILD_MODNAME ": " fmt
  41. #include <linux/tcp.h>
  42. #include <linux/netdevice.h>
  43. #include <linux/skbuff.h>
  44. #include <linux/string.h>
  45. #include <linux/module.h>
  46. #include <linux/pci.h>
  47. #include <linux/dma-mapping.h>
  48. #include <linux/etherdevice.h>
  49. #include <linux/if_ether.h>
  50. #include <linux/if_vlan.h>
  51. #include <linux/inet_lro.h>
  52. #include <linux/dca.h>
  53. #include <linux/ip.h>
  54. #include <linux/inet.h>
  55. #include <linux/in.h>
  56. #include <linux/ethtool.h>
  57. #include <linux/firmware.h>
  58. #include <linux/delay.h>
  59. #include <linux/timer.h>
  60. #include <linux/vmalloc.h>
  61. #include <linux/crc32.h>
  62. #include <linux/moduleparam.h>
  63. #include <linux/io.h>
  64. #include <linux/log2.h>
  65. #include <linux/slab.h>
  66. #include <linux/prefetch.h>
  67. #include <net/checksum.h>
  68. #include <net/ip.h>
  69. #include <net/tcp.h>
  70. #include <asm/byteorder.h>
  71. #include <asm/io.h>
  72. #include <asm/processor.h>
  73. #ifdef CONFIG_MTRR
  74. #include <asm/mtrr.h>
  75. #endif
  76. #include "myri10ge_mcp.h"
  77. #include "myri10ge_mcp_gen_header.h"
  78. #define MYRI10GE_VERSION_STR "1.5.3-1.534"
  79. MODULE_DESCRIPTION("Myricom 10G driver (10GbE)");
  80. MODULE_AUTHOR("Maintainer: help@myri.com");
  81. MODULE_VERSION(MYRI10GE_VERSION_STR);
  82. MODULE_LICENSE("Dual BSD/GPL");
  83. #define MYRI10GE_MAX_ETHER_MTU 9014
  84. #define MYRI10GE_ETH_STOPPED 0
  85. #define MYRI10GE_ETH_STOPPING 1
  86. #define MYRI10GE_ETH_STARTING 2
  87. #define MYRI10GE_ETH_RUNNING 3
  88. #define MYRI10GE_ETH_OPEN_FAILED 4
  89. #define MYRI10GE_EEPROM_STRINGS_SIZE 256
  90. #define MYRI10GE_MAX_SEND_DESC_TSO ((65536 / 2048) * 2)
  91. #define MYRI10GE_MAX_LRO_DESCRIPTORS 8
  92. #define MYRI10GE_LRO_MAX_PKTS 64
  93. #define MYRI10GE_NO_CONFIRM_DATA htonl(0xffffffff)
  94. #define MYRI10GE_NO_RESPONSE_RESULT 0xffffffff
  95. #define MYRI10GE_ALLOC_ORDER 0
  96. #define MYRI10GE_ALLOC_SIZE ((1 << MYRI10GE_ALLOC_ORDER) * PAGE_SIZE)
  97. #define MYRI10GE_MAX_FRAGS_PER_FRAME (MYRI10GE_MAX_ETHER_MTU/MYRI10GE_ALLOC_SIZE + 1)
  98. #define MYRI10GE_MAX_SLICES 32
  99. struct myri10ge_rx_buffer_state {
  100. struct page *page;
  101. int page_offset;
  102. DEFINE_DMA_UNMAP_ADDR(bus);
  103. DEFINE_DMA_UNMAP_LEN(len);
  104. };
  105. struct myri10ge_tx_buffer_state {
  106. struct sk_buff *skb;
  107. int last;
  108. DEFINE_DMA_UNMAP_ADDR(bus);
  109. DEFINE_DMA_UNMAP_LEN(len);
  110. };
  111. struct myri10ge_cmd {
  112. u32 data0;
  113. u32 data1;
  114. u32 data2;
  115. };
  116. struct myri10ge_rx_buf {
  117. struct mcp_kreq_ether_recv __iomem *lanai; /* lanai ptr for recv ring */
  118. struct mcp_kreq_ether_recv *shadow; /* host shadow of recv ring */
  119. struct myri10ge_rx_buffer_state *info;
  120. struct page *page;
  121. dma_addr_t bus;
  122. int page_offset;
  123. int cnt;
  124. int fill_cnt;
  125. int alloc_fail;
  126. int mask; /* number of rx slots -1 */
  127. int watchdog_needed;
  128. };
  129. struct myri10ge_tx_buf {
  130. struct mcp_kreq_ether_send __iomem *lanai; /* lanai ptr for sendq */
  131. __be32 __iomem *send_go; /* "go" doorbell ptr */
  132. __be32 __iomem *send_stop; /* "stop" doorbell ptr */
  133. struct mcp_kreq_ether_send *req_list; /* host shadow of sendq */
  134. char *req_bytes;
  135. struct myri10ge_tx_buffer_state *info;
  136. int mask; /* number of transmit slots -1 */
  137. int req ____cacheline_aligned; /* transmit slots submitted */
  138. int pkt_start; /* packets started */
  139. int stop_queue;
  140. int linearized;
  141. int done ____cacheline_aligned; /* transmit slots completed */
  142. int pkt_done; /* packets completed */
  143. int wake_queue;
  144. int queue_active;
  145. };
  146. struct myri10ge_rx_done {
  147. struct mcp_slot *entry;
  148. dma_addr_t bus;
  149. int cnt;
  150. int idx;
  151. struct net_lro_mgr lro_mgr;
  152. struct net_lro_desc lro_desc[MYRI10GE_MAX_LRO_DESCRIPTORS];
  153. };
  154. struct myri10ge_slice_netstats {
  155. unsigned long rx_packets;
  156. unsigned long tx_packets;
  157. unsigned long rx_bytes;
  158. unsigned long tx_bytes;
  159. unsigned long rx_dropped;
  160. unsigned long tx_dropped;
  161. };
  162. struct myri10ge_slice_state {
  163. struct myri10ge_tx_buf tx; /* transmit ring */
  164. struct myri10ge_rx_buf rx_small;
  165. struct myri10ge_rx_buf rx_big;
  166. struct myri10ge_rx_done rx_done;
  167. struct net_device *dev;
  168. struct napi_struct napi;
  169. struct myri10ge_priv *mgp;
  170. struct myri10ge_slice_netstats stats;
  171. __be32 __iomem *irq_claim;
  172. struct mcp_irq_data *fw_stats;
  173. dma_addr_t fw_stats_bus;
  174. int watchdog_tx_done;
  175. int watchdog_tx_req;
  176. int watchdog_rx_done;
  177. int stuck;
  178. #ifdef CONFIG_MYRI10GE_DCA
  179. int cached_dca_tag;
  180. int cpu;
  181. __be32 __iomem *dca_tag;
  182. #endif
  183. char irq_desc[32];
  184. };
  185. struct myri10ge_priv {
  186. struct myri10ge_slice_state *ss;
  187. int tx_boundary; /* boundary transmits cannot cross */
  188. int num_slices;
  189. int running; /* running? */
  190. int small_bytes;
  191. int big_bytes;
  192. int max_intr_slots;
  193. struct net_device *dev;
  194. u8 __iomem *sram;
  195. int sram_size;
  196. unsigned long board_span;
  197. unsigned long iomem_base;
  198. __be32 __iomem *irq_deassert;
  199. char *mac_addr_string;
  200. struct mcp_cmd_response *cmd;
  201. dma_addr_t cmd_bus;
  202. struct pci_dev *pdev;
  203. int msi_enabled;
  204. int msix_enabled;
  205. struct msix_entry *msix_vectors;
  206. #ifdef CONFIG_MYRI10GE_DCA
  207. int dca_enabled;
  208. int relaxed_order;
  209. #endif
  210. u32 link_state;
  211. unsigned int rdma_tags_available;
  212. int intr_coal_delay;
  213. __be32 __iomem *intr_coal_delay_ptr;
  214. int mtrr;
  215. int wc_enabled;
  216. int down_cnt;
  217. wait_queue_head_t down_wq;
  218. struct work_struct watchdog_work;
  219. struct timer_list watchdog_timer;
  220. int watchdog_resets;
  221. int watchdog_pause;
  222. int pause;
  223. bool fw_name_allocated;
  224. char *fw_name;
  225. char eeprom_strings[MYRI10GE_EEPROM_STRINGS_SIZE];
  226. char *product_code_string;
  227. char fw_version[128];
  228. int fw_ver_major;
  229. int fw_ver_minor;
  230. int fw_ver_tiny;
  231. int adopted_rx_filter_bug;
  232. u8 mac_addr[6]; /* eeprom mac address */
  233. unsigned long serial_number;
  234. int vendor_specific_offset;
  235. int fw_multicast_support;
  236. u32 features;
  237. u32 max_tso6;
  238. u32 read_dma;
  239. u32 write_dma;
  240. u32 read_write_dma;
  241. u32 link_changes;
  242. u32 msg_enable;
  243. unsigned int board_number;
  244. int rebooted;
  245. };
  246. static char *myri10ge_fw_unaligned = "myri10ge_ethp_z8e.dat";
  247. static char *myri10ge_fw_aligned = "myri10ge_eth_z8e.dat";
  248. static char *myri10ge_fw_rss_unaligned = "myri10ge_rss_ethp_z8e.dat";
  249. static char *myri10ge_fw_rss_aligned = "myri10ge_rss_eth_z8e.dat";
  250. MODULE_FIRMWARE("myri10ge_ethp_z8e.dat");
  251. MODULE_FIRMWARE("myri10ge_eth_z8e.dat");
  252. MODULE_FIRMWARE("myri10ge_rss_ethp_z8e.dat");
  253. MODULE_FIRMWARE("myri10ge_rss_eth_z8e.dat");
  254. /* Careful: must be accessed under kparam_block_sysfs_write */
  255. static char *myri10ge_fw_name = NULL;
  256. module_param(myri10ge_fw_name, charp, S_IRUGO | S_IWUSR);
  257. MODULE_PARM_DESC(myri10ge_fw_name, "Firmware image name");
  258. #define MYRI10GE_MAX_BOARDS 8
  259. static char *myri10ge_fw_names[MYRI10GE_MAX_BOARDS] =
  260. {[0 ... (MYRI10GE_MAX_BOARDS - 1)] = NULL };
  261. module_param_array_named(myri10ge_fw_names, myri10ge_fw_names, charp, NULL,
  262. 0444);
  263. MODULE_PARM_DESC(myri10ge_fw_name, "Firmware image names per board");
  264. static int myri10ge_ecrc_enable = 1;
  265. module_param(myri10ge_ecrc_enable, int, S_IRUGO);
  266. MODULE_PARM_DESC(myri10ge_ecrc_enable, "Enable Extended CRC on PCI-E");
  267. static int myri10ge_small_bytes = -1; /* -1 == auto */
  268. module_param(myri10ge_small_bytes, int, S_IRUGO | S_IWUSR);
  269. MODULE_PARM_DESC(myri10ge_small_bytes, "Threshold of small packets");
  270. static int myri10ge_msi = 1; /* enable msi by default */
  271. module_param(myri10ge_msi, int, S_IRUGO | S_IWUSR);
  272. MODULE_PARM_DESC(myri10ge_msi, "Enable Message Signalled Interrupts");
  273. static int myri10ge_intr_coal_delay = 75;
  274. module_param(myri10ge_intr_coal_delay, int, S_IRUGO);
  275. MODULE_PARM_DESC(myri10ge_intr_coal_delay, "Interrupt coalescing delay");
  276. static int myri10ge_flow_control = 1;
  277. module_param(myri10ge_flow_control, int, S_IRUGO);
  278. MODULE_PARM_DESC(myri10ge_flow_control, "Pause parameter");
  279. static int myri10ge_deassert_wait = 1;
  280. module_param(myri10ge_deassert_wait, int, S_IRUGO | S_IWUSR);
  281. MODULE_PARM_DESC(myri10ge_deassert_wait,
  282. "Wait when deasserting legacy interrupts");
  283. static int myri10ge_force_firmware = 0;
  284. module_param(myri10ge_force_firmware, int, S_IRUGO);
  285. MODULE_PARM_DESC(myri10ge_force_firmware,
  286. "Force firmware to assume aligned completions");
  287. static int myri10ge_initial_mtu = MYRI10GE_MAX_ETHER_MTU - ETH_HLEN;
  288. module_param(myri10ge_initial_mtu, int, S_IRUGO);
  289. MODULE_PARM_DESC(myri10ge_initial_mtu, "Initial MTU");
  290. static int myri10ge_napi_weight = 64;
  291. module_param(myri10ge_napi_weight, int, S_IRUGO);
  292. MODULE_PARM_DESC(myri10ge_napi_weight, "Set NAPI weight");
  293. static int myri10ge_watchdog_timeout = 1;
  294. module_param(myri10ge_watchdog_timeout, int, S_IRUGO);
  295. MODULE_PARM_DESC(myri10ge_watchdog_timeout, "Set watchdog timeout");
  296. static int myri10ge_max_irq_loops = 1048576;
  297. module_param(myri10ge_max_irq_loops, int, S_IRUGO);
  298. MODULE_PARM_DESC(myri10ge_max_irq_loops,
  299. "Set stuck legacy IRQ detection threshold");
  300. #define MYRI10GE_MSG_DEFAULT NETIF_MSG_LINK
  301. static int myri10ge_debug = -1; /* defaults above */
  302. module_param(myri10ge_debug, int, 0);
  303. MODULE_PARM_DESC(myri10ge_debug, "Debug level (0=none,...,16=all)");
  304. static int myri10ge_lro_max_pkts = MYRI10GE_LRO_MAX_PKTS;
  305. module_param(myri10ge_lro_max_pkts, int, S_IRUGO);
  306. MODULE_PARM_DESC(myri10ge_lro_max_pkts,
  307. "Number of LRO packets to be aggregated");
  308. static int myri10ge_fill_thresh = 256;
  309. module_param(myri10ge_fill_thresh, int, S_IRUGO | S_IWUSR);
  310. MODULE_PARM_DESC(myri10ge_fill_thresh, "Number of empty rx slots allowed");
  311. static int myri10ge_reset_recover = 1;
  312. static int myri10ge_max_slices = 1;
  313. module_param(myri10ge_max_slices, int, S_IRUGO);
  314. MODULE_PARM_DESC(myri10ge_max_slices, "Max tx/rx queues");
  315. static int myri10ge_rss_hash = MXGEFW_RSS_HASH_TYPE_SRC_DST_PORT;
  316. module_param(myri10ge_rss_hash, int, S_IRUGO);
  317. MODULE_PARM_DESC(myri10ge_rss_hash, "Type of RSS hashing to do");
  318. static int myri10ge_dca = 1;
  319. module_param(myri10ge_dca, int, S_IRUGO);
  320. MODULE_PARM_DESC(myri10ge_dca, "Enable DCA if possible");
  321. #define MYRI10GE_FW_OFFSET 1024*1024
  322. #define MYRI10GE_HIGHPART_TO_U32(X) \
  323. (sizeof (X) == 8) ? ((u32)((u64)(X) >> 32)) : (0)
  324. #define MYRI10GE_LOWPART_TO_U32(X) ((u32)(X))
  325. #define myri10ge_pio_copy(to,from,size) __iowrite64_copy(to,from,size/8)
  326. static void myri10ge_set_multicast_list(struct net_device *dev);
  327. static netdev_tx_t myri10ge_sw_tso(struct sk_buff *skb,
  328. struct net_device *dev);
  329. static inline void put_be32(__be32 val, __be32 __iomem * p)
  330. {
  331. __raw_writel((__force __u32) val, (__force void __iomem *)p);
  332. }
  333. static struct rtnl_link_stats64 *myri10ge_get_stats(struct net_device *dev,
  334. struct rtnl_link_stats64 *stats);
  335. static void set_fw_name(struct myri10ge_priv *mgp, char *name, bool allocated)
  336. {
  337. if (mgp->fw_name_allocated)
  338. kfree(mgp->fw_name);
  339. mgp->fw_name = name;
  340. mgp->fw_name_allocated = allocated;
  341. }
  342. static int
  343. myri10ge_send_cmd(struct myri10ge_priv *mgp, u32 cmd,
  344. struct myri10ge_cmd *data, int atomic)
  345. {
  346. struct mcp_cmd *buf;
  347. char buf_bytes[sizeof(*buf) + 8];
  348. struct mcp_cmd_response *response = mgp->cmd;
  349. char __iomem *cmd_addr = mgp->sram + MXGEFW_ETH_CMD;
  350. u32 dma_low, dma_high, result, value;
  351. int sleep_total = 0;
  352. /* ensure buf is aligned to 8 bytes */
  353. buf = (struct mcp_cmd *)ALIGN((unsigned long)buf_bytes, 8);
  354. buf->data0 = htonl(data->data0);
  355. buf->data1 = htonl(data->data1);
  356. buf->data2 = htonl(data->data2);
  357. buf->cmd = htonl(cmd);
  358. dma_low = MYRI10GE_LOWPART_TO_U32(mgp->cmd_bus);
  359. dma_high = MYRI10GE_HIGHPART_TO_U32(mgp->cmd_bus);
  360. buf->response_addr.low = htonl(dma_low);
  361. buf->response_addr.high = htonl(dma_high);
  362. response->result = htonl(MYRI10GE_NO_RESPONSE_RESULT);
  363. mb();
  364. myri10ge_pio_copy(cmd_addr, buf, sizeof(*buf));
  365. /* wait up to 15ms. Longest command is the DMA benchmark,
  366. * which is capped at 5ms, but runs from a timeout handler
  367. * that runs every 7.8ms. So a 15ms timeout leaves us with
  368. * a 2.2ms margin
  369. */
  370. if (atomic) {
  371. /* if atomic is set, do not sleep,
  372. * and try to get the completion quickly
  373. * (1ms will be enough for those commands) */
  374. for (sleep_total = 0;
  375. sleep_total < 1000 &&
  376. response->result == htonl(MYRI10GE_NO_RESPONSE_RESULT);
  377. sleep_total += 10) {
  378. udelay(10);
  379. mb();
  380. }
  381. } else {
  382. /* use msleep for most command */
  383. for (sleep_total = 0;
  384. sleep_total < 15 &&
  385. response->result == htonl(MYRI10GE_NO_RESPONSE_RESULT);
  386. sleep_total++)
  387. msleep(1);
  388. }
  389. result = ntohl(response->result);
  390. value = ntohl(response->data);
  391. if (result != MYRI10GE_NO_RESPONSE_RESULT) {
  392. if (result == 0) {
  393. data->data0 = value;
  394. return 0;
  395. } else if (result == MXGEFW_CMD_UNKNOWN) {
  396. return -ENOSYS;
  397. } else if (result == MXGEFW_CMD_ERROR_UNALIGNED) {
  398. return -E2BIG;
  399. } else if (result == MXGEFW_CMD_ERROR_RANGE &&
  400. cmd == MXGEFW_CMD_ENABLE_RSS_QUEUES &&
  401. (data->
  402. data1 & MXGEFW_SLICE_ENABLE_MULTIPLE_TX_QUEUES) !=
  403. 0) {
  404. return -ERANGE;
  405. } else {
  406. dev_err(&mgp->pdev->dev,
  407. "command %d failed, result = %d\n",
  408. cmd, result);
  409. return -ENXIO;
  410. }
  411. }
  412. dev_err(&mgp->pdev->dev, "command %d timed out, result = %d\n",
  413. cmd, result);
  414. return -EAGAIN;
  415. }
  416. /*
  417. * The eeprom strings on the lanaiX have the format
  418. * SN=x\0
  419. * MAC=x:x:x:x:x:x\0
  420. * PT:ddd mmm xx xx:xx:xx xx\0
  421. * PV:ddd mmm xx xx:xx:xx xx\0
  422. */
  423. static int myri10ge_read_mac_addr(struct myri10ge_priv *mgp)
  424. {
  425. char *ptr, *limit;
  426. int i;
  427. ptr = mgp->eeprom_strings;
  428. limit = mgp->eeprom_strings + MYRI10GE_EEPROM_STRINGS_SIZE;
  429. while (*ptr != '\0' && ptr < limit) {
  430. if (memcmp(ptr, "MAC=", 4) == 0) {
  431. ptr += 4;
  432. mgp->mac_addr_string = ptr;
  433. for (i = 0; i < 6; i++) {
  434. if ((ptr + 2) > limit)
  435. goto abort;
  436. mgp->mac_addr[i] =
  437. simple_strtoul(ptr, &ptr, 16);
  438. ptr += 1;
  439. }
  440. }
  441. if (memcmp(ptr, "PC=", 3) == 0) {
  442. ptr += 3;
  443. mgp->product_code_string = ptr;
  444. }
  445. if (memcmp((const void *)ptr, "SN=", 3) == 0) {
  446. ptr += 3;
  447. mgp->serial_number = simple_strtoul(ptr, &ptr, 10);
  448. }
  449. while (ptr < limit && *ptr++) ;
  450. }
  451. return 0;
  452. abort:
  453. dev_err(&mgp->pdev->dev, "failed to parse eeprom_strings\n");
  454. return -ENXIO;
  455. }
  456. /*
  457. * Enable or disable periodic RDMAs from the host to make certain
  458. * chipsets resend dropped PCIe messages
  459. */
  460. static void myri10ge_dummy_rdma(struct myri10ge_priv *mgp, int enable)
  461. {
  462. char __iomem *submit;
  463. __be32 buf[16] __attribute__ ((__aligned__(8)));
  464. u32 dma_low, dma_high;
  465. int i;
  466. /* clear confirmation addr */
  467. mgp->cmd->data = 0;
  468. mb();
  469. /* send a rdma command to the PCIe engine, and wait for the
  470. * response in the confirmation address. The firmware should
  471. * write a -1 there to indicate it is alive and well
  472. */
  473. dma_low = MYRI10GE_LOWPART_TO_U32(mgp->cmd_bus);
  474. dma_high = MYRI10GE_HIGHPART_TO_U32(mgp->cmd_bus);
  475. buf[0] = htonl(dma_high); /* confirm addr MSW */
  476. buf[1] = htonl(dma_low); /* confirm addr LSW */
  477. buf[2] = MYRI10GE_NO_CONFIRM_DATA; /* confirm data */
  478. buf[3] = htonl(dma_high); /* dummy addr MSW */
  479. buf[4] = htonl(dma_low); /* dummy addr LSW */
  480. buf[5] = htonl(enable); /* enable? */
  481. submit = mgp->sram + MXGEFW_BOOT_DUMMY_RDMA;
  482. myri10ge_pio_copy(submit, &buf, sizeof(buf));
  483. for (i = 0; mgp->cmd->data != MYRI10GE_NO_CONFIRM_DATA && i < 20; i++)
  484. msleep(1);
  485. if (mgp->cmd->data != MYRI10GE_NO_CONFIRM_DATA)
  486. dev_err(&mgp->pdev->dev, "dummy rdma %s failed\n",
  487. (enable ? "enable" : "disable"));
  488. }
  489. static int
  490. myri10ge_validate_firmware(struct myri10ge_priv *mgp,
  491. struct mcp_gen_header *hdr)
  492. {
  493. struct device *dev = &mgp->pdev->dev;
  494. /* check firmware type */
  495. if (ntohl(hdr->mcp_type) != MCP_TYPE_ETH) {
  496. dev_err(dev, "Bad firmware type: 0x%x\n", ntohl(hdr->mcp_type));
  497. return -EINVAL;
  498. }
  499. /* save firmware version for ethtool */
  500. strncpy(mgp->fw_version, hdr->version, sizeof(mgp->fw_version));
  501. sscanf(mgp->fw_version, "%d.%d.%d", &mgp->fw_ver_major,
  502. &mgp->fw_ver_minor, &mgp->fw_ver_tiny);
  503. if (!(mgp->fw_ver_major == MXGEFW_VERSION_MAJOR &&
  504. mgp->fw_ver_minor == MXGEFW_VERSION_MINOR)) {
  505. dev_err(dev, "Found firmware version %s\n", mgp->fw_version);
  506. dev_err(dev, "Driver needs %d.%d\n", MXGEFW_VERSION_MAJOR,
  507. MXGEFW_VERSION_MINOR);
  508. return -EINVAL;
  509. }
  510. return 0;
  511. }
  512. static int myri10ge_load_hotplug_firmware(struct myri10ge_priv *mgp, u32 * size)
  513. {
  514. unsigned crc, reread_crc;
  515. const struct firmware *fw;
  516. struct device *dev = &mgp->pdev->dev;
  517. unsigned char *fw_readback;
  518. struct mcp_gen_header *hdr;
  519. size_t hdr_offset;
  520. int status;
  521. unsigned i;
  522. if ((status = request_firmware(&fw, mgp->fw_name, dev)) < 0) {
  523. dev_err(dev, "Unable to load %s firmware image via hotplug\n",
  524. mgp->fw_name);
  525. status = -EINVAL;
  526. goto abort_with_nothing;
  527. }
  528. /* check size */
  529. if (fw->size >= mgp->sram_size - MYRI10GE_FW_OFFSET ||
  530. fw->size < MCP_HEADER_PTR_OFFSET + 4) {
  531. dev_err(dev, "Firmware size invalid:%d\n", (int)fw->size);
  532. status = -EINVAL;
  533. goto abort_with_fw;
  534. }
  535. /* check id */
  536. hdr_offset = ntohl(*(__be32 *) (fw->data + MCP_HEADER_PTR_OFFSET));
  537. if ((hdr_offset & 3) || hdr_offset + sizeof(*hdr) > fw->size) {
  538. dev_err(dev, "Bad firmware file\n");
  539. status = -EINVAL;
  540. goto abort_with_fw;
  541. }
  542. hdr = (void *)(fw->data + hdr_offset);
  543. status = myri10ge_validate_firmware(mgp, hdr);
  544. if (status != 0)
  545. goto abort_with_fw;
  546. crc = crc32(~0, fw->data, fw->size);
  547. for (i = 0; i < fw->size; i += 256) {
  548. myri10ge_pio_copy(mgp->sram + MYRI10GE_FW_OFFSET + i,
  549. fw->data + i,
  550. min(256U, (unsigned)(fw->size - i)));
  551. mb();
  552. readb(mgp->sram);
  553. }
  554. fw_readback = vmalloc(fw->size);
  555. if (!fw_readback) {
  556. status = -ENOMEM;
  557. goto abort_with_fw;
  558. }
  559. /* corruption checking is good for parity recovery and buggy chipset */
  560. memcpy_fromio(fw_readback, mgp->sram + MYRI10GE_FW_OFFSET, fw->size);
  561. reread_crc = crc32(~0, fw_readback, fw->size);
  562. vfree(fw_readback);
  563. if (crc != reread_crc) {
  564. dev_err(dev, "CRC failed(fw-len=%u), got 0x%x (expect 0x%x)\n",
  565. (unsigned)fw->size, reread_crc, crc);
  566. status = -EIO;
  567. goto abort_with_fw;
  568. }
  569. *size = (u32) fw->size;
  570. abort_with_fw:
  571. release_firmware(fw);
  572. abort_with_nothing:
  573. return status;
  574. }
  575. static int myri10ge_adopt_running_firmware(struct myri10ge_priv *mgp)
  576. {
  577. struct mcp_gen_header *hdr;
  578. struct device *dev = &mgp->pdev->dev;
  579. const size_t bytes = sizeof(struct mcp_gen_header);
  580. size_t hdr_offset;
  581. int status;
  582. /* find running firmware header */
  583. hdr_offset = swab32(readl(mgp->sram + MCP_HEADER_PTR_OFFSET));
  584. if ((hdr_offset & 3) || hdr_offset + sizeof(*hdr) > mgp->sram_size) {
  585. dev_err(dev, "Running firmware has bad header offset (%d)\n",
  586. (int)hdr_offset);
  587. return -EIO;
  588. }
  589. /* copy header of running firmware from SRAM to host memory to
  590. * validate firmware */
  591. hdr = kmalloc(bytes, GFP_KERNEL);
  592. if (hdr == NULL) {
  593. dev_err(dev, "could not malloc firmware hdr\n");
  594. return -ENOMEM;
  595. }
  596. memcpy_fromio(hdr, mgp->sram + hdr_offset, bytes);
  597. status = myri10ge_validate_firmware(mgp, hdr);
  598. kfree(hdr);
  599. /* check to see if adopted firmware has bug where adopting
  600. * it will cause broadcasts to be filtered unless the NIC
  601. * is kept in ALLMULTI mode */
  602. if (mgp->fw_ver_major == 1 && mgp->fw_ver_minor == 4 &&
  603. mgp->fw_ver_tiny >= 4 && mgp->fw_ver_tiny <= 11) {
  604. mgp->adopted_rx_filter_bug = 1;
  605. dev_warn(dev, "Adopting fw %d.%d.%d: "
  606. "working around rx filter bug\n",
  607. mgp->fw_ver_major, mgp->fw_ver_minor,
  608. mgp->fw_ver_tiny);
  609. }
  610. return status;
  611. }
  612. static int myri10ge_get_firmware_capabilities(struct myri10ge_priv *mgp)
  613. {
  614. struct myri10ge_cmd cmd;
  615. int status;
  616. /* probe for IPv6 TSO support */
  617. mgp->features = NETIF_F_SG | NETIF_F_HW_CSUM | NETIF_F_TSO;
  618. status = myri10ge_send_cmd(mgp, MXGEFW_CMD_GET_MAX_TSO6_HDR_SIZE,
  619. &cmd, 0);
  620. if (status == 0) {
  621. mgp->max_tso6 = cmd.data0;
  622. mgp->features |= NETIF_F_TSO6;
  623. }
  624. status = myri10ge_send_cmd(mgp, MXGEFW_CMD_GET_RX_RING_SIZE, &cmd, 0);
  625. if (status != 0) {
  626. dev_err(&mgp->pdev->dev,
  627. "failed MXGEFW_CMD_GET_RX_RING_SIZE\n");
  628. return -ENXIO;
  629. }
  630. mgp->max_intr_slots = 2 * (cmd.data0 / sizeof(struct mcp_dma_addr));
  631. return 0;
  632. }
  633. static int myri10ge_load_firmware(struct myri10ge_priv *mgp, int adopt)
  634. {
  635. char __iomem *submit;
  636. __be32 buf[16] __attribute__ ((__aligned__(8)));
  637. u32 dma_low, dma_high, size;
  638. int status, i;
  639. size = 0;
  640. status = myri10ge_load_hotplug_firmware(mgp, &size);
  641. if (status) {
  642. if (!adopt)
  643. return status;
  644. dev_warn(&mgp->pdev->dev, "hotplug firmware loading failed\n");
  645. /* Do not attempt to adopt firmware if there
  646. * was a bad crc */
  647. if (status == -EIO)
  648. return status;
  649. status = myri10ge_adopt_running_firmware(mgp);
  650. if (status != 0) {
  651. dev_err(&mgp->pdev->dev,
  652. "failed to adopt running firmware\n");
  653. return status;
  654. }
  655. dev_info(&mgp->pdev->dev,
  656. "Successfully adopted running firmware\n");
  657. if (mgp->tx_boundary == 4096) {
  658. dev_warn(&mgp->pdev->dev,
  659. "Using firmware currently running on NIC"
  660. ". For optimal\n");
  661. dev_warn(&mgp->pdev->dev,
  662. "performance consider loading optimized "
  663. "firmware\n");
  664. dev_warn(&mgp->pdev->dev, "via hotplug\n");
  665. }
  666. set_fw_name(mgp, "adopted", false);
  667. mgp->tx_boundary = 2048;
  668. myri10ge_dummy_rdma(mgp, 1);
  669. status = myri10ge_get_firmware_capabilities(mgp);
  670. return status;
  671. }
  672. /* clear confirmation addr */
  673. mgp->cmd->data = 0;
  674. mb();
  675. /* send a reload command to the bootstrap MCP, and wait for the
  676. * response in the confirmation address. The firmware should
  677. * write a -1 there to indicate it is alive and well
  678. */
  679. dma_low = MYRI10GE_LOWPART_TO_U32(mgp->cmd_bus);
  680. dma_high = MYRI10GE_HIGHPART_TO_U32(mgp->cmd_bus);
  681. buf[0] = htonl(dma_high); /* confirm addr MSW */
  682. buf[1] = htonl(dma_low); /* confirm addr LSW */
  683. buf[2] = MYRI10GE_NO_CONFIRM_DATA; /* confirm data */
  684. /* FIX: All newest firmware should un-protect the bottom of
  685. * the sram before handoff. However, the very first interfaces
  686. * do not. Therefore the handoff copy must skip the first 8 bytes
  687. */
  688. buf[3] = htonl(MYRI10GE_FW_OFFSET + 8); /* where the code starts */
  689. buf[4] = htonl(size - 8); /* length of code */
  690. buf[5] = htonl(8); /* where to copy to */
  691. buf[6] = htonl(0); /* where to jump to */
  692. submit = mgp->sram + MXGEFW_BOOT_HANDOFF;
  693. myri10ge_pio_copy(submit, &buf, sizeof(buf));
  694. mb();
  695. msleep(1);
  696. mb();
  697. i = 0;
  698. while (mgp->cmd->data != MYRI10GE_NO_CONFIRM_DATA && i < 9) {
  699. msleep(1 << i);
  700. i++;
  701. }
  702. if (mgp->cmd->data != MYRI10GE_NO_CONFIRM_DATA) {
  703. dev_err(&mgp->pdev->dev, "handoff failed\n");
  704. return -ENXIO;
  705. }
  706. myri10ge_dummy_rdma(mgp, 1);
  707. status = myri10ge_get_firmware_capabilities(mgp);
  708. return status;
  709. }
  710. static int myri10ge_update_mac_address(struct myri10ge_priv *mgp, u8 * addr)
  711. {
  712. struct myri10ge_cmd cmd;
  713. int status;
  714. cmd.data0 = ((addr[0] << 24) | (addr[1] << 16)
  715. | (addr[2] << 8) | addr[3]);
  716. cmd.data1 = ((addr[4] << 8) | (addr[5]));
  717. status = myri10ge_send_cmd(mgp, MXGEFW_SET_MAC_ADDRESS, &cmd, 0);
  718. return status;
  719. }
  720. static int myri10ge_change_pause(struct myri10ge_priv *mgp, int pause)
  721. {
  722. struct myri10ge_cmd cmd;
  723. int status, ctl;
  724. ctl = pause ? MXGEFW_ENABLE_FLOW_CONTROL : MXGEFW_DISABLE_FLOW_CONTROL;
  725. status = myri10ge_send_cmd(mgp, ctl, &cmd, 0);
  726. if (status) {
  727. netdev_err(mgp->dev, "Failed to set flow control mode\n");
  728. return status;
  729. }
  730. mgp->pause = pause;
  731. return 0;
  732. }
  733. static void
  734. myri10ge_change_promisc(struct myri10ge_priv *mgp, int promisc, int atomic)
  735. {
  736. struct myri10ge_cmd cmd;
  737. int status, ctl;
  738. ctl = promisc ? MXGEFW_ENABLE_PROMISC : MXGEFW_DISABLE_PROMISC;
  739. status = myri10ge_send_cmd(mgp, ctl, &cmd, atomic);
  740. if (status)
  741. netdev_err(mgp->dev, "Failed to set promisc mode\n");
  742. }
  743. static int myri10ge_dma_test(struct myri10ge_priv *mgp, int test_type)
  744. {
  745. struct myri10ge_cmd cmd;
  746. int status;
  747. u32 len;
  748. struct page *dmatest_page;
  749. dma_addr_t dmatest_bus;
  750. char *test = " ";
  751. dmatest_page = alloc_page(GFP_KERNEL);
  752. if (!dmatest_page)
  753. return -ENOMEM;
  754. dmatest_bus = pci_map_page(mgp->pdev, dmatest_page, 0, PAGE_SIZE,
  755. DMA_BIDIRECTIONAL);
  756. /* Run a small DMA test.
  757. * The magic multipliers to the length tell the firmware
  758. * to do DMA read, write, or read+write tests. The
  759. * results are returned in cmd.data0. The upper 16
  760. * bits or the return is the number of transfers completed.
  761. * The lower 16 bits is the time in 0.5us ticks that the
  762. * transfers took to complete.
  763. */
  764. len = mgp->tx_boundary;
  765. cmd.data0 = MYRI10GE_LOWPART_TO_U32(dmatest_bus);
  766. cmd.data1 = MYRI10GE_HIGHPART_TO_U32(dmatest_bus);
  767. cmd.data2 = len * 0x10000;
  768. status = myri10ge_send_cmd(mgp, test_type, &cmd, 0);
  769. if (status != 0) {
  770. test = "read";
  771. goto abort;
  772. }
  773. mgp->read_dma = ((cmd.data0 >> 16) * len * 2) / (cmd.data0 & 0xffff);
  774. cmd.data0 = MYRI10GE_LOWPART_TO_U32(dmatest_bus);
  775. cmd.data1 = MYRI10GE_HIGHPART_TO_U32(dmatest_bus);
  776. cmd.data2 = len * 0x1;
  777. status = myri10ge_send_cmd(mgp, test_type, &cmd, 0);
  778. if (status != 0) {
  779. test = "write";
  780. goto abort;
  781. }
  782. mgp->write_dma = ((cmd.data0 >> 16) * len * 2) / (cmd.data0 & 0xffff);
  783. cmd.data0 = MYRI10GE_LOWPART_TO_U32(dmatest_bus);
  784. cmd.data1 = MYRI10GE_HIGHPART_TO_U32(dmatest_bus);
  785. cmd.data2 = len * 0x10001;
  786. status = myri10ge_send_cmd(mgp, test_type, &cmd, 0);
  787. if (status != 0) {
  788. test = "read/write";
  789. goto abort;
  790. }
  791. mgp->read_write_dma = ((cmd.data0 >> 16) * len * 2 * 2) /
  792. (cmd.data0 & 0xffff);
  793. abort:
  794. pci_unmap_page(mgp->pdev, dmatest_bus, PAGE_SIZE, DMA_BIDIRECTIONAL);
  795. put_page(dmatest_page);
  796. if (status != 0 && test_type != MXGEFW_CMD_UNALIGNED_TEST)
  797. dev_warn(&mgp->pdev->dev, "DMA %s benchmark failed: %d\n",
  798. test, status);
  799. return status;
  800. }
  801. static int myri10ge_reset(struct myri10ge_priv *mgp)
  802. {
  803. struct myri10ge_cmd cmd;
  804. struct myri10ge_slice_state *ss;
  805. int i, status;
  806. size_t bytes;
  807. #ifdef CONFIG_MYRI10GE_DCA
  808. unsigned long dca_tag_off;
  809. #endif
  810. /* try to send a reset command to the card to see if it
  811. * is alive */
  812. memset(&cmd, 0, sizeof(cmd));
  813. status = myri10ge_send_cmd(mgp, MXGEFW_CMD_RESET, &cmd, 0);
  814. if (status != 0) {
  815. dev_err(&mgp->pdev->dev, "failed reset\n");
  816. return -ENXIO;
  817. }
  818. (void)myri10ge_dma_test(mgp, MXGEFW_DMA_TEST);
  819. /*
  820. * Use non-ndis mcp_slot (eg, 4 bytes total,
  821. * no toeplitz hash value returned. Older firmware will
  822. * not understand this command, but will use the correct
  823. * sized mcp_slot, so we ignore error returns
  824. */
  825. cmd.data0 = MXGEFW_RSS_MCP_SLOT_TYPE_MIN;
  826. (void)myri10ge_send_cmd(mgp, MXGEFW_CMD_SET_RSS_MCP_SLOT_TYPE, &cmd, 0);
  827. /* Now exchange information about interrupts */
  828. bytes = mgp->max_intr_slots * sizeof(*mgp->ss[0].rx_done.entry);
  829. cmd.data0 = (u32) bytes;
  830. status = myri10ge_send_cmd(mgp, MXGEFW_CMD_SET_INTRQ_SIZE, &cmd, 0);
  831. /*
  832. * Even though we already know how many slices are supported
  833. * via myri10ge_probe_slices() MXGEFW_CMD_GET_MAX_RSS_QUEUES
  834. * has magic side effects, and must be called after a reset.
  835. * It must be called prior to calling any RSS related cmds,
  836. * including assigning an interrupt queue for anything but
  837. * slice 0. It must also be called *after*
  838. * MXGEFW_CMD_SET_INTRQ_SIZE, since the intrq size is used by
  839. * the firmware to compute offsets.
  840. */
  841. if (mgp->num_slices > 1) {
  842. /* ask the maximum number of slices it supports */
  843. status = myri10ge_send_cmd(mgp, MXGEFW_CMD_GET_MAX_RSS_QUEUES,
  844. &cmd, 0);
  845. if (status != 0) {
  846. dev_err(&mgp->pdev->dev,
  847. "failed to get number of slices\n");
  848. }
  849. /*
  850. * MXGEFW_CMD_ENABLE_RSS_QUEUES must be called prior
  851. * to setting up the interrupt queue DMA
  852. */
  853. cmd.data0 = mgp->num_slices;
  854. cmd.data1 = MXGEFW_SLICE_INTR_MODE_ONE_PER_SLICE;
  855. if (mgp->dev->real_num_tx_queues > 1)
  856. cmd.data1 |= MXGEFW_SLICE_ENABLE_MULTIPLE_TX_QUEUES;
  857. status = myri10ge_send_cmd(mgp, MXGEFW_CMD_ENABLE_RSS_QUEUES,
  858. &cmd, 0);
  859. /* Firmware older than 1.4.32 only supports multiple
  860. * RX queues, so if we get an error, first retry using a
  861. * single TX queue before giving up */
  862. if (status != 0 && mgp->dev->real_num_tx_queues > 1) {
  863. netif_set_real_num_tx_queues(mgp->dev, 1);
  864. cmd.data0 = mgp->num_slices;
  865. cmd.data1 = MXGEFW_SLICE_INTR_MODE_ONE_PER_SLICE;
  866. status = myri10ge_send_cmd(mgp,
  867. MXGEFW_CMD_ENABLE_RSS_QUEUES,
  868. &cmd, 0);
  869. }
  870. if (status != 0) {
  871. dev_err(&mgp->pdev->dev,
  872. "failed to set number of slices\n");
  873. return status;
  874. }
  875. }
  876. for (i = 0; i < mgp->num_slices; i++) {
  877. ss = &mgp->ss[i];
  878. cmd.data0 = MYRI10GE_LOWPART_TO_U32(ss->rx_done.bus);
  879. cmd.data1 = MYRI10GE_HIGHPART_TO_U32(ss->rx_done.bus);
  880. cmd.data2 = i;
  881. status |= myri10ge_send_cmd(mgp, MXGEFW_CMD_SET_INTRQ_DMA,
  882. &cmd, 0);
  883. }
  884. status |=
  885. myri10ge_send_cmd(mgp, MXGEFW_CMD_GET_IRQ_ACK_OFFSET, &cmd, 0);
  886. for (i = 0; i < mgp->num_slices; i++) {
  887. ss = &mgp->ss[i];
  888. ss->irq_claim =
  889. (__iomem __be32 *) (mgp->sram + cmd.data0 + 8 * i);
  890. }
  891. status |= myri10ge_send_cmd(mgp, MXGEFW_CMD_GET_IRQ_DEASSERT_OFFSET,
  892. &cmd, 0);
  893. mgp->irq_deassert = (__iomem __be32 *) (mgp->sram + cmd.data0);
  894. status |= myri10ge_send_cmd
  895. (mgp, MXGEFW_CMD_GET_INTR_COAL_DELAY_OFFSET, &cmd, 0);
  896. mgp->intr_coal_delay_ptr = (__iomem __be32 *) (mgp->sram + cmd.data0);
  897. if (status != 0) {
  898. dev_err(&mgp->pdev->dev, "failed set interrupt parameters\n");
  899. return status;
  900. }
  901. put_be32(htonl(mgp->intr_coal_delay), mgp->intr_coal_delay_ptr);
  902. #ifdef CONFIG_MYRI10GE_DCA
  903. status = myri10ge_send_cmd(mgp, MXGEFW_CMD_GET_DCA_OFFSET, &cmd, 0);
  904. dca_tag_off = cmd.data0;
  905. for (i = 0; i < mgp->num_slices; i++) {
  906. ss = &mgp->ss[i];
  907. if (status == 0) {
  908. ss->dca_tag = (__iomem __be32 *)
  909. (mgp->sram + dca_tag_off + 4 * i);
  910. } else {
  911. ss->dca_tag = NULL;
  912. }
  913. }
  914. #endif /* CONFIG_MYRI10GE_DCA */
  915. /* reset mcp/driver shared state back to 0 */
  916. mgp->link_changes = 0;
  917. for (i = 0; i < mgp->num_slices; i++) {
  918. ss = &mgp->ss[i];
  919. memset(ss->rx_done.entry, 0, bytes);
  920. ss->tx.req = 0;
  921. ss->tx.done = 0;
  922. ss->tx.pkt_start = 0;
  923. ss->tx.pkt_done = 0;
  924. ss->rx_big.cnt = 0;
  925. ss->rx_small.cnt = 0;
  926. ss->rx_done.idx = 0;
  927. ss->rx_done.cnt = 0;
  928. ss->tx.wake_queue = 0;
  929. ss->tx.stop_queue = 0;
  930. }
  931. status = myri10ge_update_mac_address(mgp, mgp->dev->dev_addr);
  932. myri10ge_change_pause(mgp, mgp->pause);
  933. myri10ge_set_multicast_list(mgp->dev);
  934. return status;
  935. }
  936. #ifdef CONFIG_MYRI10GE_DCA
  937. static int myri10ge_toggle_relaxed(struct pci_dev *pdev, int on)
  938. {
  939. int ret, cap, err;
  940. u16 ctl;
  941. cap = pci_pcie_cap(pdev);
  942. if (!cap)
  943. return 0;
  944. err = pci_read_config_word(pdev, cap + PCI_EXP_DEVCTL, &ctl);
  945. if (err)
  946. return 0;
  947. ret = (ctl & PCI_EXP_DEVCTL_RELAX_EN) >> 4;
  948. if (ret != on) {
  949. ctl &= ~PCI_EXP_DEVCTL_RELAX_EN;
  950. ctl |= (on << 4);
  951. pci_write_config_word(pdev, cap + PCI_EXP_DEVCTL, ctl);
  952. }
  953. return ret;
  954. }
  955. static void
  956. myri10ge_write_dca(struct myri10ge_slice_state *ss, int cpu, int tag)
  957. {
  958. ss->cached_dca_tag = tag;
  959. put_be32(htonl(tag), ss->dca_tag);
  960. }
  961. static inline void myri10ge_update_dca(struct myri10ge_slice_state *ss)
  962. {
  963. int cpu = get_cpu();
  964. int tag;
  965. if (cpu != ss->cpu) {
  966. tag = dca3_get_tag(&ss->mgp->pdev->dev, cpu);
  967. if (ss->cached_dca_tag != tag)
  968. myri10ge_write_dca(ss, cpu, tag);
  969. ss->cpu = cpu;
  970. }
  971. put_cpu();
  972. }
  973. static void myri10ge_setup_dca(struct myri10ge_priv *mgp)
  974. {
  975. int err, i;
  976. struct pci_dev *pdev = mgp->pdev;
  977. if (mgp->ss[0].dca_tag == NULL || mgp->dca_enabled)
  978. return;
  979. if (!myri10ge_dca) {
  980. dev_err(&pdev->dev, "dca disabled by administrator\n");
  981. return;
  982. }
  983. err = dca_add_requester(&pdev->dev);
  984. if (err) {
  985. if (err != -ENODEV)
  986. dev_err(&pdev->dev,
  987. "dca_add_requester() failed, err=%d\n", err);
  988. return;
  989. }
  990. mgp->relaxed_order = myri10ge_toggle_relaxed(pdev, 0);
  991. mgp->dca_enabled = 1;
  992. for (i = 0; i < mgp->num_slices; i++) {
  993. mgp->ss[i].cpu = -1;
  994. mgp->ss[i].cached_dca_tag = -1;
  995. myri10ge_update_dca(&mgp->ss[i]);
  996. }
  997. }
  998. static void myri10ge_teardown_dca(struct myri10ge_priv *mgp)
  999. {
  1000. struct pci_dev *pdev = mgp->pdev;
  1001. if (!mgp->dca_enabled)
  1002. return;
  1003. mgp->dca_enabled = 0;
  1004. if (mgp->relaxed_order)
  1005. myri10ge_toggle_relaxed(pdev, 1);
  1006. dca_remove_requester(&pdev->dev);
  1007. }
  1008. static int myri10ge_notify_dca_device(struct device *dev, void *data)
  1009. {
  1010. struct myri10ge_priv *mgp;
  1011. unsigned long event;
  1012. mgp = dev_get_drvdata(dev);
  1013. event = *(unsigned long *)data;
  1014. if (event == DCA_PROVIDER_ADD)
  1015. myri10ge_setup_dca(mgp);
  1016. else if (event == DCA_PROVIDER_REMOVE)
  1017. myri10ge_teardown_dca(mgp);
  1018. return 0;
  1019. }
  1020. #endif /* CONFIG_MYRI10GE_DCA */
  1021. static inline void
  1022. myri10ge_submit_8rx(struct mcp_kreq_ether_recv __iomem * dst,
  1023. struct mcp_kreq_ether_recv *src)
  1024. {
  1025. __be32 low;
  1026. low = src->addr_low;
  1027. src->addr_low = htonl(DMA_BIT_MASK(32));
  1028. myri10ge_pio_copy(dst, src, 4 * sizeof(*src));
  1029. mb();
  1030. myri10ge_pio_copy(dst + 4, src + 4, 4 * sizeof(*src));
  1031. mb();
  1032. src->addr_low = low;
  1033. put_be32(low, &dst->addr_low);
  1034. mb();
  1035. }
  1036. static inline void myri10ge_vlan_ip_csum(struct sk_buff *skb, __wsum hw_csum)
  1037. {
  1038. struct vlan_hdr *vh = (struct vlan_hdr *)(skb->data);
  1039. if ((skb->protocol == htons(ETH_P_8021Q)) &&
  1040. (vh->h_vlan_encapsulated_proto == htons(ETH_P_IP) ||
  1041. vh->h_vlan_encapsulated_proto == htons(ETH_P_IPV6))) {
  1042. skb->csum = hw_csum;
  1043. skb->ip_summed = CHECKSUM_COMPLETE;
  1044. }
  1045. }
  1046. static inline void
  1047. myri10ge_rx_skb_build(struct sk_buff *skb, u8 * va,
  1048. struct skb_frag_struct *rx_frags, int len, int hlen)
  1049. {
  1050. struct skb_frag_struct *skb_frags;
  1051. skb->len = skb->data_len = len;
  1052. skb->truesize = len + sizeof(struct sk_buff);
  1053. /* attach the page(s) */
  1054. skb_frags = skb_shinfo(skb)->frags;
  1055. while (len > 0) {
  1056. memcpy(skb_frags, rx_frags, sizeof(*skb_frags));
  1057. len -= rx_frags->size;
  1058. skb_frags++;
  1059. rx_frags++;
  1060. skb_shinfo(skb)->nr_frags++;
  1061. }
  1062. /* pskb_may_pull is not available in irq context, but
  1063. * skb_pull() (for ether_pad and eth_type_trans()) requires
  1064. * the beginning of the packet in skb_headlen(), move it
  1065. * manually */
  1066. skb_copy_to_linear_data(skb, va, hlen);
  1067. skb_shinfo(skb)->frags[0].page_offset += hlen;
  1068. skb_shinfo(skb)->frags[0].size -= hlen;
  1069. skb->data_len -= hlen;
  1070. skb->tail += hlen;
  1071. skb_pull(skb, MXGEFW_PAD);
  1072. }
  1073. static void
  1074. myri10ge_alloc_rx_pages(struct myri10ge_priv *mgp, struct myri10ge_rx_buf *rx,
  1075. int bytes, int watchdog)
  1076. {
  1077. struct page *page;
  1078. int idx;
  1079. #if MYRI10GE_ALLOC_SIZE > 4096
  1080. int end_offset;
  1081. #endif
  1082. if (unlikely(rx->watchdog_needed && !watchdog))
  1083. return;
  1084. /* try to refill entire ring */
  1085. while (rx->fill_cnt != (rx->cnt + rx->mask + 1)) {
  1086. idx = rx->fill_cnt & rx->mask;
  1087. if (rx->page_offset + bytes <= MYRI10GE_ALLOC_SIZE) {
  1088. /* we can use part of previous page */
  1089. get_page(rx->page);
  1090. } else {
  1091. /* we need a new page */
  1092. page =
  1093. alloc_pages(GFP_ATOMIC | __GFP_COMP,
  1094. MYRI10GE_ALLOC_ORDER);
  1095. if (unlikely(page == NULL)) {
  1096. if (rx->fill_cnt - rx->cnt < 16)
  1097. rx->watchdog_needed = 1;
  1098. return;
  1099. }
  1100. rx->page = page;
  1101. rx->page_offset = 0;
  1102. rx->bus = pci_map_page(mgp->pdev, page, 0,
  1103. MYRI10GE_ALLOC_SIZE,
  1104. PCI_DMA_FROMDEVICE);
  1105. }
  1106. rx->info[idx].page = rx->page;
  1107. rx->info[idx].page_offset = rx->page_offset;
  1108. /* note that this is the address of the start of the
  1109. * page */
  1110. dma_unmap_addr_set(&rx->info[idx], bus, rx->bus);
  1111. rx->shadow[idx].addr_low =
  1112. htonl(MYRI10GE_LOWPART_TO_U32(rx->bus) + rx->page_offset);
  1113. rx->shadow[idx].addr_high =
  1114. htonl(MYRI10GE_HIGHPART_TO_U32(rx->bus));
  1115. /* start next packet on a cacheline boundary */
  1116. rx->page_offset += SKB_DATA_ALIGN(bytes);
  1117. #if MYRI10GE_ALLOC_SIZE > 4096
  1118. /* don't cross a 4KB boundary */
  1119. end_offset = rx->page_offset + bytes - 1;
  1120. if ((unsigned)(rx->page_offset ^ end_offset) > 4095)
  1121. rx->page_offset = end_offset & ~4095;
  1122. #endif
  1123. rx->fill_cnt++;
  1124. /* copy 8 descriptors to the firmware at a time */
  1125. if ((idx & 7) == 7) {
  1126. myri10ge_submit_8rx(&rx->lanai[idx - 7],
  1127. &rx->shadow[idx - 7]);
  1128. }
  1129. }
  1130. }
  1131. static inline void
  1132. myri10ge_unmap_rx_page(struct pci_dev *pdev,
  1133. struct myri10ge_rx_buffer_state *info, int bytes)
  1134. {
  1135. /* unmap the recvd page if we're the only or last user of it */
  1136. if (bytes >= MYRI10GE_ALLOC_SIZE / 2 ||
  1137. (info->page_offset + 2 * bytes) > MYRI10GE_ALLOC_SIZE) {
  1138. pci_unmap_page(pdev, (dma_unmap_addr(info, bus)
  1139. & ~(MYRI10GE_ALLOC_SIZE - 1)),
  1140. MYRI10GE_ALLOC_SIZE, PCI_DMA_FROMDEVICE);
  1141. }
  1142. }
  1143. #define MYRI10GE_HLEN 64 /* The number of bytes to copy from a
  1144. * page into an skb */
  1145. static inline int
  1146. myri10ge_rx_done(struct myri10ge_slice_state *ss, int len, __wsum csum,
  1147. bool lro_enabled)
  1148. {
  1149. struct myri10ge_priv *mgp = ss->mgp;
  1150. struct sk_buff *skb;
  1151. struct skb_frag_struct rx_frags[MYRI10GE_MAX_FRAGS_PER_FRAME];
  1152. struct myri10ge_rx_buf *rx;
  1153. int i, idx, hlen, remainder, bytes;
  1154. struct pci_dev *pdev = mgp->pdev;
  1155. struct net_device *dev = mgp->dev;
  1156. u8 *va;
  1157. if (len <= mgp->small_bytes) {
  1158. rx = &ss->rx_small;
  1159. bytes = mgp->small_bytes;
  1160. } else {
  1161. rx = &ss->rx_big;
  1162. bytes = mgp->big_bytes;
  1163. }
  1164. len += MXGEFW_PAD;
  1165. idx = rx->cnt & rx->mask;
  1166. va = page_address(rx->info[idx].page) + rx->info[idx].page_offset;
  1167. prefetch(va);
  1168. /* Fill skb_frag_struct(s) with data from our receive */
  1169. for (i = 0, remainder = len; remainder > 0; i++) {
  1170. myri10ge_unmap_rx_page(pdev, &rx->info[idx], bytes);
  1171. rx_frags[i].page = rx->info[idx].page;
  1172. rx_frags[i].page_offset = rx->info[idx].page_offset;
  1173. if (remainder < MYRI10GE_ALLOC_SIZE)
  1174. rx_frags[i].size = remainder;
  1175. else
  1176. rx_frags[i].size = MYRI10GE_ALLOC_SIZE;
  1177. rx->cnt++;
  1178. idx = rx->cnt & rx->mask;
  1179. remainder -= MYRI10GE_ALLOC_SIZE;
  1180. }
  1181. if (lro_enabled) {
  1182. rx_frags[0].page_offset += MXGEFW_PAD;
  1183. rx_frags[0].size -= MXGEFW_PAD;
  1184. len -= MXGEFW_PAD;
  1185. lro_receive_frags(&ss->rx_done.lro_mgr, rx_frags,
  1186. /* opaque, will come back in get_frag_header */
  1187. len, len,
  1188. (void *)(__force unsigned long)csum, csum);
  1189. return 1;
  1190. }
  1191. hlen = MYRI10GE_HLEN > len ? len : MYRI10GE_HLEN;
  1192. /* allocate an skb to attach the page(s) to. This is done
  1193. * after trying LRO, so as to avoid skb allocation overheads */
  1194. skb = netdev_alloc_skb(dev, MYRI10GE_HLEN + 16);
  1195. if (unlikely(skb == NULL)) {
  1196. ss->stats.rx_dropped++;
  1197. do {
  1198. i--;
  1199. put_page(rx_frags[i].page);
  1200. } while (i != 0);
  1201. return 0;
  1202. }
  1203. /* Attach the pages to the skb, and trim off any padding */
  1204. myri10ge_rx_skb_build(skb, va, rx_frags, len, hlen);
  1205. if (skb_shinfo(skb)->frags[0].size <= 0) {
  1206. put_page(skb_shinfo(skb)->frags[0].page);
  1207. skb_shinfo(skb)->nr_frags = 0;
  1208. }
  1209. skb->protocol = eth_type_trans(skb, dev);
  1210. skb_record_rx_queue(skb, ss - &mgp->ss[0]);
  1211. if (dev->features & NETIF_F_RXCSUM) {
  1212. if ((skb->protocol == htons(ETH_P_IP)) ||
  1213. (skb->protocol == htons(ETH_P_IPV6))) {
  1214. skb->csum = csum;
  1215. skb->ip_summed = CHECKSUM_COMPLETE;
  1216. } else
  1217. myri10ge_vlan_ip_csum(skb, csum);
  1218. }
  1219. netif_receive_skb(skb);
  1220. return 1;
  1221. }
  1222. static inline void
  1223. myri10ge_tx_done(struct myri10ge_slice_state *ss, int mcp_index)
  1224. {
  1225. struct pci_dev *pdev = ss->mgp->pdev;
  1226. struct myri10ge_tx_buf *tx = &ss->tx;
  1227. struct netdev_queue *dev_queue;
  1228. struct sk_buff *skb;
  1229. int idx, len;
  1230. while (tx->pkt_done != mcp_index) {
  1231. idx = tx->done & tx->mask;
  1232. skb = tx->info[idx].skb;
  1233. /* Mark as free */
  1234. tx->info[idx].skb = NULL;
  1235. if (tx->info[idx].last) {
  1236. tx->pkt_done++;
  1237. tx->info[idx].last = 0;
  1238. }
  1239. tx->done++;
  1240. len = dma_unmap_len(&tx->info[idx], len);
  1241. dma_unmap_len_set(&tx->info[idx], len, 0);
  1242. if (skb) {
  1243. ss->stats.tx_bytes += skb->len;
  1244. ss->stats.tx_packets++;
  1245. dev_kfree_skb_irq(skb);
  1246. if (len)
  1247. pci_unmap_single(pdev,
  1248. dma_unmap_addr(&tx->info[idx],
  1249. bus), len,
  1250. PCI_DMA_TODEVICE);
  1251. } else {
  1252. if (len)
  1253. pci_unmap_page(pdev,
  1254. dma_unmap_addr(&tx->info[idx],
  1255. bus), len,
  1256. PCI_DMA_TODEVICE);
  1257. }
  1258. }
  1259. dev_queue = netdev_get_tx_queue(ss->dev, ss - ss->mgp->ss);
  1260. /*
  1261. * Make a minimal effort to prevent the NIC from polling an
  1262. * idle tx queue. If we can't get the lock we leave the queue
  1263. * active. In this case, either a thread was about to start
  1264. * using the queue anyway, or we lost a race and the NIC will
  1265. * waste some of its resources polling an inactive queue for a
  1266. * while.
  1267. */
  1268. if ((ss->mgp->dev->real_num_tx_queues > 1) &&
  1269. __netif_tx_trylock(dev_queue)) {
  1270. if (tx->req == tx->done) {
  1271. tx->queue_active = 0;
  1272. put_be32(htonl(1), tx->send_stop);
  1273. mb();
  1274. mmiowb();
  1275. }
  1276. __netif_tx_unlock(dev_queue);
  1277. }
  1278. /* start the queue if we've stopped it */
  1279. if (netif_tx_queue_stopped(dev_queue) &&
  1280. tx->req - tx->done < (tx->mask >> 1) &&
  1281. ss->mgp->running == MYRI10GE_ETH_RUNNING) {
  1282. tx->wake_queue++;
  1283. netif_tx_wake_queue(dev_queue);
  1284. }
  1285. }
  1286. static inline int
  1287. myri10ge_clean_rx_done(struct myri10ge_slice_state *ss, int budget)
  1288. {
  1289. struct myri10ge_rx_done *rx_done = &ss->rx_done;
  1290. struct myri10ge_priv *mgp = ss->mgp;
  1291. unsigned long rx_bytes = 0;
  1292. unsigned long rx_packets = 0;
  1293. unsigned long rx_ok;
  1294. int idx = rx_done->idx;
  1295. int cnt = rx_done->cnt;
  1296. int work_done = 0;
  1297. u16 length;
  1298. __wsum checksum;
  1299. /*
  1300. * Prevent compiler from generating more than one ->features memory
  1301. * access to avoid theoretical race condition with functions that
  1302. * change NETIF_F_LRO flag at runtime.
  1303. */
  1304. bool lro_enabled = ACCESS_ONCE(mgp->dev->features) & NETIF_F_LRO;
  1305. while (rx_done->entry[idx].length != 0 && work_done < budget) {
  1306. length = ntohs(rx_done->entry[idx].length);
  1307. rx_done->entry[idx].length = 0;
  1308. checksum = csum_unfold(rx_done->entry[idx].checksum);
  1309. rx_ok = myri10ge_rx_done(ss, length, checksum, lro_enabled);
  1310. rx_packets += rx_ok;
  1311. rx_bytes += rx_ok * (unsigned long)length;
  1312. cnt++;
  1313. idx = cnt & (mgp->max_intr_slots - 1);
  1314. work_done++;
  1315. }
  1316. rx_done->idx = idx;
  1317. rx_done->cnt = cnt;
  1318. ss->stats.rx_packets += rx_packets;
  1319. ss->stats.rx_bytes += rx_bytes;
  1320. if (lro_enabled)
  1321. lro_flush_all(&rx_done->lro_mgr);
  1322. /* restock receive rings if needed */
  1323. if (ss->rx_small.fill_cnt - ss->rx_small.cnt < myri10ge_fill_thresh)
  1324. myri10ge_alloc_rx_pages(mgp, &ss->rx_small,
  1325. mgp->small_bytes + MXGEFW_PAD, 0);
  1326. if (ss->rx_big.fill_cnt - ss->rx_big.cnt < myri10ge_fill_thresh)
  1327. myri10ge_alloc_rx_pages(mgp, &ss->rx_big, mgp->big_bytes, 0);
  1328. return work_done;
  1329. }
  1330. static inline void myri10ge_check_statblock(struct myri10ge_priv *mgp)
  1331. {
  1332. struct mcp_irq_data *stats = mgp->ss[0].fw_stats;
  1333. if (unlikely(stats->stats_updated)) {
  1334. unsigned link_up = ntohl(stats->link_up);
  1335. if (mgp->link_state != link_up) {
  1336. mgp->link_state = link_up;
  1337. if (mgp->link_state == MXGEFW_LINK_UP) {
  1338. netif_info(mgp, link, mgp->dev, "link up\n");
  1339. netif_carrier_on(mgp->dev);
  1340. mgp->link_changes++;
  1341. } else {
  1342. netif_info(mgp, link, mgp->dev, "link %s\n",
  1343. (link_up == MXGEFW_LINK_MYRINET ?
  1344. "mismatch (Myrinet detected)" :
  1345. "down"));
  1346. netif_carrier_off(mgp->dev);
  1347. mgp->link_changes++;
  1348. }
  1349. }
  1350. if (mgp->rdma_tags_available !=
  1351. ntohl(stats->rdma_tags_available)) {
  1352. mgp->rdma_tags_available =
  1353. ntohl(stats->rdma_tags_available);
  1354. netdev_warn(mgp->dev, "RDMA timed out! %d tags left\n",
  1355. mgp->rdma_tags_available);
  1356. }
  1357. mgp->down_cnt += stats->link_down;
  1358. if (stats->link_down)
  1359. wake_up(&mgp->down_wq);
  1360. }
  1361. }
  1362. static int myri10ge_poll(struct napi_struct *napi, int budget)
  1363. {
  1364. struct myri10ge_slice_state *ss =
  1365. container_of(napi, struct myri10ge_slice_state, napi);
  1366. int work_done;
  1367. #ifdef CONFIG_MYRI10GE_DCA
  1368. if (ss->mgp->dca_enabled)
  1369. myri10ge_update_dca(ss);
  1370. #endif
  1371. /* process as many rx events as NAPI will allow */
  1372. work_done = myri10ge_clean_rx_done(ss, budget);
  1373. if (work_done < budget) {
  1374. napi_complete(napi);
  1375. put_be32(htonl(3), ss->irq_claim);
  1376. }
  1377. return work_done;
  1378. }
  1379. static irqreturn_t myri10ge_intr(int irq, void *arg)
  1380. {
  1381. struct myri10ge_slice_state *ss = arg;
  1382. struct myri10ge_priv *mgp = ss->mgp;
  1383. struct mcp_irq_data *stats = ss->fw_stats;
  1384. struct myri10ge_tx_buf *tx = &ss->tx;
  1385. u32 send_done_count;
  1386. int i;
  1387. /* an interrupt on a non-zero receive-only slice is implicitly
  1388. * valid since MSI-X irqs are not shared */
  1389. if ((mgp->dev->real_num_tx_queues == 1) && (ss != mgp->ss)) {
  1390. napi_schedule(&ss->napi);
  1391. return IRQ_HANDLED;
  1392. }
  1393. /* make sure it is our IRQ, and that the DMA has finished */
  1394. if (unlikely(!stats->valid))
  1395. return IRQ_NONE;
  1396. /* low bit indicates receives are present, so schedule
  1397. * napi poll handler */
  1398. if (stats->valid & 1)
  1399. napi_schedule(&ss->napi);
  1400. if (!mgp->msi_enabled && !mgp->msix_enabled) {
  1401. put_be32(0, mgp->irq_deassert);
  1402. if (!myri10ge_deassert_wait)
  1403. stats->valid = 0;
  1404. mb();
  1405. } else
  1406. stats->valid = 0;
  1407. /* Wait for IRQ line to go low, if using INTx */
  1408. i = 0;
  1409. while (1) {
  1410. i++;
  1411. /* check for transmit completes and receives */
  1412. send_done_count = ntohl(stats->send_done_count);
  1413. if (send_done_count != tx->pkt_done)
  1414. myri10ge_tx_done(ss, (int)send_done_count);
  1415. if (unlikely(i > myri10ge_max_irq_loops)) {
  1416. netdev_warn(mgp->dev, "irq stuck?\n");
  1417. stats->valid = 0;
  1418. schedule_work(&mgp->watchdog_work);
  1419. }
  1420. if (likely(stats->valid == 0))
  1421. break;
  1422. cpu_relax();
  1423. barrier();
  1424. }
  1425. /* Only slice 0 updates stats */
  1426. if (ss == mgp->ss)
  1427. myri10ge_check_statblock(mgp);
  1428. put_be32(htonl(3), ss->irq_claim + 1);
  1429. return IRQ_HANDLED;
  1430. }
  1431. static int
  1432. myri10ge_get_settings(struct net_device *netdev, struct ethtool_cmd *cmd)
  1433. {
  1434. struct myri10ge_priv *mgp = netdev_priv(netdev);
  1435. char *ptr;
  1436. int i;
  1437. cmd->autoneg = AUTONEG_DISABLE;
  1438. ethtool_cmd_speed_set(cmd, SPEED_10000);
  1439. cmd->duplex = DUPLEX_FULL;
  1440. /*
  1441. * parse the product code to deterimine the interface type
  1442. * (CX4, XFP, Quad Ribbon Fiber) by looking at the character
  1443. * after the 3rd dash in the driver's cached copy of the
  1444. * EEPROM's product code string.
  1445. */
  1446. ptr = mgp->product_code_string;
  1447. if (ptr == NULL) {
  1448. netdev_err(netdev, "Missing product code\n");
  1449. return 0;
  1450. }
  1451. for (i = 0; i < 3; i++, ptr++) {
  1452. ptr = strchr(ptr, '-');
  1453. if (ptr == NULL) {
  1454. netdev_err(netdev, "Invalid product code %s\n",
  1455. mgp->product_code_string);
  1456. return 0;
  1457. }
  1458. }
  1459. if (*ptr == '2')
  1460. ptr++;
  1461. if (*ptr == 'R' || *ptr == 'Q' || *ptr == 'S') {
  1462. /* We've found either an XFP, quad ribbon fiber, or SFP+ */
  1463. cmd->port = PORT_FIBRE;
  1464. cmd->supported |= SUPPORTED_FIBRE;
  1465. cmd->advertising |= ADVERTISED_FIBRE;
  1466. } else {
  1467. cmd->port = PORT_OTHER;
  1468. }
  1469. if (*ptr == 'R' || *ptr == 'S')
  1470. cmd->transceiver = XCVR_EXTERNAL;
  1471. else
  1472. cmd->transceiver = XCVR_INTERNAL;
  1473. return 0;
  1474. }
  1475. static void
  1476. myri10ge_get_drvinfo(struct net_device *netdev, struct ethtool_drvinfo *info)
  1477. {
  1478. struct myri10ge_priv *mgp = netdev_priv(netdev);
  1479. strlcpy(info->driver, "myri10ge", sizeof(info->driver));
  1480. strlcpy(info->version, MYRI10GE_VERSION_STR, sizeof(info->version));
  1481. strlcpy(info->fw_version, mgp->fw_version, sizeof(info->fw_version));
  1482. strlcpy(info->bus_info, pci_name(mgp->pdev), sizeof(info->bus_info));
  1483. }
  1484. static int
  1485. myri10ge_get_coalesce(struct net_device *netdev, struct ethtool_coalesce *coal)
  1486. {
  1487. struct myri10ge_priv *mgp = netdev_priv(netdev);
  1488. coal->rx_coalesce_usecs = mgp->intr_coal_delay;
  1489. return 0;
  1490. }
  1491. static int
  1492. myri10ge_set_coalesce(struct net_device *netdev, struct ethtool_coalesce *coal)
  1493. {
  1494. struct myri10ge_priv *mgp = netdev_priv(netdev);
  1495. mgp->intr_coal_delay = coal->rx_coalesce_usecs;
  1496. put_be32(htonl(mgp->intr_coal_delay), mgp->intr_coal_delay_ptr);
  1497. return 0;
  1498. }
  1499. static void
  1500. myri10ge_get_pauseparam(struct net_device *netdev,
  1501. struct ethtool_pauseparam *pause)
  1502. {
  1503. struct myri10ge_priv *mgp = netdev_priv(netdev);
  1504. pause->autoneg = 0;
  1505. pause->rx_pause = mgp->pause;
  1506. pause->tx_pause = mgp->pause;
  1507. }
  1508. static int
  1509. myri10ge_set_pauseparam(struct net_device *netdev,
  1510. struct ethtool_pauseparam *pause)
  1511. {
  1512. struct myri10ge_priv *mgp = netdev_priv(netdev);
  1513. if (pause->tx_pause != mgp->pause)
  1514. return myri10ge_change_pause(mgp, pause->tx_pause);
  1515. if (pause->rx_pause != mgp->pause)
  1516. return myri10ge_change_pause(mgp, pause->rx_pause);
  1517. if (pause->autoneg != 0)
  1518. return -EINVAL;
  1519. return 0;
  1520. }
  1521. static void
  1522. myri10ge_get_ringparam(struct net_device *netdev,
  1523. struct ethtool_ringparam *ring)
  1524. {
  1525. struct myri10ge_priv *mgp = netdev_priv(netdev);
  1526. ring->rx_mini_max_pending = mgp->ss[0].rx_small.mask + 1;
  1527. ring->rx_max_pending = mgp->ss[0].rx_big.mask + 1;
  1528. ring->rx_jumbo_max_pending = 0;
  1529. ring->tx_max_pending = mgp->ss[0].tx.mask + 1;
  1530. ring->rx_mini_pending = ring->rx_mini_max_pending;
  1531. ring->rx_pending = ring->rx_max_pending;
  1532. ring->rx_jumbo_pending = ring->rx_jumbo_max_pending;
  1533. ring->tx_pending = ring->tx_max_pending;
  1534. }
  1535. static const char myri10ge_gstrings_main_stats[][ETH_GSTRING_LEN] = {
  1536. "rx_packets", "tx_packets", "rx_bytes", "tx_bytes", "rx_errors",
  1537. "tx_errors", "rx_dropped", "tx_dropped", "multicast", "collisions",
  1538. "rx_length_errors", "rx_over_errors", "rx_crc_errors",
  1539. "rx_frame_errors", "rx_fifo_errors", "rx_missed_errors",
  1540. "tx_aborted_errors", "tx_carrier_errors", "tx_fifo_errors",
  1541. "tx_heartbeat_errors", "tx_window_errors",
  1542. /* device-specific stats */
  1543. "tx_boundary", "WC", "irq", "MSI", "MSIX",
  1544. "read_dma_bw_MBs", "write_dma_bw_MBs", "read_write_dma_bw_MBs",
  1545. "serial_number", "watchdog_resets",
  1546. #ifdef CONFIG_MYRI10GE_DCA
  1547. "dca_capable_firmware", "dca_device_present",
  1548. #endif
  1549. "link_changes", "link_up", "dropped_link_overflow",
  1550. "dropped_link_error_or_filtered",
  1551. "dropped_pause", "dropped_bad_phy", "dropped_bad_crc32",
  1552. "dropped_unicast_filtered", "dropped_multicast_filtered",
  1553. "dropped_runt", "dropped_overrun", "dropped_no_small_buffer",
  1554. "dropped_no_big_buffer"
  1555. };
  1556. static const char myri10ge_gstrings_slice_stats[][ETH_GSTRING_LEN] = {
  1557. "----------- slice ---------",
  1558. "tx_pkt_start", "tx_pkt_done", "tx_req", "tx_done",
  1559. "rx_small_cnt", "rx_big_cnt",
  1560. "wake_queue", "stop_queue", "tx_linearized",
  1561. "LRO aggregated", "LRO flushed", "LRO avg aggr", "LRO no_desc",
  1562. };
  1563. #define MYRI10GE_NET_STATS_LEN 21
  1564. #define MYRI10GE_MAIN_STATS_LEN ARRAY_SIZE(myri10ge_gstrings_main_stats)
  1565. #define MYRI10GE_SLICE_STATS_LEN ARRAY_SIZE(myri10ge_gstrings_slice_stats)
  1566. static void
  1567. myri10ge_get_strings(struct net_device *netdev, u32 stringset, u8 * data)
  1568. {
  1569. struct myri10ge_priv *mgp = netdev_priv(netdev);
  1570. int i;
  1571. switch (stringset) {
  1572. case ETH_SS_STATS:
  1573. memcpy(data, *myri10ge_gstrings_main_stats,
  1574. sizeof(myri10ge_gstrings_main_stats));
  1575. data += sizeof(myri10ge_gstrings_main_stats);
  1576. for (i = 0; i < mgp->num_slices; i++) {
  1577. memcpy(data, *myri10ge_gstrings_slice_stats,
  1578. sizeof(myri10ge_gstrings_slice_stats));
  1579. data += sizeof(myri10ge_gstrings_slice_stats);
  1580. }
  1581. break;
  1582. }
  1583. }
  1584. static int myri10ge_get_sset_count(struct net_device *netdev, int sset)
  1585. {
  1586. struct myri10ge_priv *mgp = netdev_priv(netdev);
  1587. switch (sset) {
  1588. case ETH_SS_STATS:
  1589. return MYRI10GE_MAIN_STATS_LEN +
  1590. mgp->num_slices * MYRI10GE_SLICE_STATS_LEN;
  1591. default:
  1592. return -EOPNOTSUPP;
  1593. }
  1594. }
  1595. static void
  1596. myri10ge_get_ethtool_stats(struct net_device *netdev,
  1597. struct ethtool_stats *stats, u64 * data)
  1598. {
  1599. struct myri10ge_priv *mgp = netdev_priv(netdev);
  1600. struct myri10ge_slice_state *ss;
  1601. struct rtnl_link_stats64 link_stats;
  1602. int slice;
  1603. int i;
  1604. /* force stats update */
  1605. memset(&link_stats, 0, sizeof(link_stats));
  1606. (void)myri10ge_get_stats(netdev, &link_stats);
  1607. for (i = 0; i < MYRI10GE_NET_STATS_LEN; i++)
  1608. data[i] = ((u64 *)&link_stats)[i];
  1609. data[i++] = (unsigned int)mgp->tx_boundary;
  1610. data[i++] = (unsigned int)mgp->wc_enabled;
  1611. data[i++] = (unsigned int)mgp->pdev->irq;
  1612. data[i++] = (unsigned int)mgp->msi_enabled;
  1613. data[i++] = (unsigned int)mgp->msix_enabled;
  1614. data[i++] = (unsigned int)mgp->read_dma;
  1615. data[i++] = (unsigned int)mgp->write_dma;
  1616. data[i++] = (unsigned int)mgp->read_write_dma;
  1617. data[i++] = (unsigned int)mgp->serial_number;
  1618. data[i++] = (unsigned int)mgp->watchdog_resets;
  1619. #ifdef CONFIG_MYRI10GE_DCA
  1620. data[i++] = (unsigned int)(mgp->ss[0].dca_tag != NULL);
  1621. data[i++] = (unsigned int)(mgp->dca_enabled);
  1622. #endif
  1623. data[i++] = (unsigned int)mgp->link_changes;
  1624. /* firmware stats are useful only in the first slice */
  1625. ss = &mgp->ss[0];
  1626. data[i++] = (unsigned int)ntohl(ss->fw_stats->link_up);
  1627. data[i++] = (unsigned int)ntohl(ss->fw_stats->dropped_link_overflow);
  1628. data[i++] =
  1629. (unsigned int)ntohl(ss->fw_stats->dropped_link_error_or_filtered);
  1630. data[i++] = (unsigned int)ntohl(ss->fw_stats->dropped_pause);
  1631. data[i++] = (unsigned int)ntohl(ss->fw_stats->dropped_bad_phy);
  1632. data[i++] = (unsigned int)ntohl(ss->fw_stats->dropped_bad_crc32);
  1633. data[i++] = (unsigned int)ntohl(ss->fw_stats->dropped_unicast_filtered);
  1634. data[i++] =
  1635. (unsigned int)ntohl(ss->fw_stats->dropped_multicast_filtered);
  1636. data[i++] = (unsigned int)ntohl(ss->fw_stats->dropped_runt);
  1637. data[i++] = (unsigned int)ntohl(ss->fw_stats->dropped_overrun);
  1638. data[i++] = (unsigned int)ntohl(ss->fw_stats->dropped_no_small_buffer);
  1639. data[i++] = (unsigned int)ntohl(ss->fw_stats->dropped_no_big_buffer);
  1640. for (slice = 0; slice < mgp->num_slices; slice++) {
  1641. ss = &mgp->ss[slice];
  1642. data[i++] = slice;
  1643. data[i++] = (unsigned int)ss->tx.pkt_start;
  1644. data[i++] = (unsigned int)ss->tx.pkt_done;
  1645. data[i++] = (unsigned int)ss->tx.req;
  1646. data[i++] = (unsigned int)ss->tx.done;
  1647. data[i++] = (unsigned int)ss->rx_small.cnt;
  1648. data[i++] = (unsigned int)ss->rx_big.cnt;
  1649. data[i++] = (unsigned int)ss->tx.wake_queue;
  1650. data[i++] = (unsigned int)ss->tx.stop_queue;
  1651. data[i++] = (unsigned int)ss->tx.linearized;
  1652. data[i++] = ss->rx_done.lro_mgr.stats.aggregated;
  1653. data[i++] = ss->rx_done.lro_mgr.stats.flushed;
  1654. if (ss->rx_done.lro_mgr.stats.flushed)
  1655. data[i++] = ss->rx_done.lro_mgr.stats.aggregated /
  1656. ss->rx_done.lro_mgr.stats.flushed;
  1657. else
  1658. data[i++] = 0;
  1659. data[i++] = ss->rx_done.lro_mgr.stats.no_desc;
  1660. }
  1661. }
  1662. static void myri10ge_set_msglevel(struct net_device *netdev, u32 value)
  1663. {
  1664. struct myri10ge_priv *mgp = netdev_priv(netdev);
  1665. mgp->msg_enable = value;
  1666. }
  1667. static u32 myri10ge_get_msglevel(struct net_device *netdev)
  1668. {
  1669. struct myri10ge_priv *mgp = netdev_priv(netdev);
  1670. return mgp->msg_enable;
  1671. }
  1672. /*
  1673. * Use a low-level command to change the LED behavior. Rather than
  1674. * blinking (which is the normal case), when identify is used, the
  1675. * yellow LED turns solid.
  1676. */
  1677. static int myri10ge_led(struct myri10ge_priv *mgp, int on)
  1678. {
  1679. struct mcp_gen_header *hdr;
  1680. struct device *dev = &mgp->pdev->dev;
  1681. size_t hdr_off, pattern_off, hdr_len;
  1682. u32 pattern = 0xfffffffe;
  1683. /* find running firmware header */
  1684. hdr_off = swab32(readl(mgp->sram + MCP_HEADER_PTR_OFFSET));
  1685. if ((hdr_off & 3) || hdr_off + sizeof(*hdr) > mgp->sram_size) {
  1686. dev_err(dev, "Running firmware has bad header offset (%d)\n",
  1687. (int)hdr_off);
  1688. return -EIO;
  1689. }
  1690. hdr_len = swab32(readl(mgp->sram + hdr_off +
  1691. offsetof(struct mcp_gen_header, header_length)));
  1692. pattern_off = hdr_off + offsetof(struct mcp_gen_header, led_pattern);
  1693. if (pattern_off >= (hdr_len + hdr_off)) {
  1694. dev_info(dev, "Firmware does not support LED identification\n");
  1695. return -EINVAL;
  1696. }
  1697. if (!on)
  1698. pattern = swab32(readl(mgp->sram + pattern_off + 4));
  1699. writel(htonl(pattern), mgp->sram + pattern_off);
  1700. return 0;
  1701. }
  1702. static int
  1703. myri10ge_phys_id(struct net_device *netdev, enum ethtool_phys_id_state state)
  1704. {
  1705. struct myri10ge_priv *mgp = netdev_priv(netdev);
  1706. int rc;
  1707. switch (state) {
  1708. case ETHTOOL_ID_ACTIVE:
  1709. rc = myri10ge_led(mgp, 1);
  1710. break;
  1711. case ETHTOOL_ID_INACTIVE:
  1712. rc = myri10ge_led(mgp, 0);
  1713. break;
  1714. default:
  1715. rc = -EINVAL;
  1716. }
  1717. return rc;
  1718. }
  1719. static const struct ethtool_ops myri10ge_ethtool_ops = {
  1720. .get_settings = myri10ge_get_settings,
  1721. .get_drvinfo = myri10ge_get_drvinfo,
  1722. .get_coalesce = myri10ge_get_coalesce,
  1723. .set_coalesce = myri10ge_set_coalesce,
  1724. .get_pauseparam = myri10ge_get_pauseparam,
  1725. .set_pauseparam = myri10ge_set_pauseparam,
  1726. .get_ringparam = myri10ge_get_ringparam,
  1727. .get_link = ethtool_op_get_link,
  1728. .get_strings = myri10ge_get_strings,
  1729. .get_sset_count = myri10ge_get_sset_count,
  1730. .get_ethtool_stats = myri10ge_get_ethtool_stats,
  1731. .set_msglevel = myri10ge_set_msglevel,
  1732. .get_msglevel = myri10ge_get_msglevel,
  1733. .set_phys_id = myri10ge_phys_id,
  1734. };
  1735. static int myri10ge_allocate_rings(struct myri10ge_slice_state *ss)
  1736. {
  1737. struct myri10ge_priv *mgp = ss->mgp;
  1738. struct myri10ge_cmd cmd;
  1739. struct net_device *dev = mgp->dev;
  1740. int tx_ring_size, rx_ring_size;
  1741. int tx_ring_entries, rx_ring_entries;
  1742. int i, slice, status;
  1743. size_t bytes;
  1744. /* get ring sizes */
  1745. slice = ss - mgp->ss;
  1746. cmd.data0 = slice;
  1747. status = myri10ge_send_cmd(mgp, MXGEFW_CMD_GET_SEND_RING_SIZE, &cmd, 0);
  1748. tx_ring_size = cmd.data0;
  1749. cmd.data0 = slice;
  1750. status |= myri10ge_send_cmd(mgp, MXGEFW_CMD_GET_RX_RING_SIZE, &cmd, 0);
  1751. if (status != 0)
  1752. return status;
  1753. rx_ring_size = cmd.data0;
  1754. tx_ring_entries = tx_ring_size / sizeof(struct mcp_kreq_ether_send);
  1755. rx_ring_entries = rx_ring_size / sizeof(struct mcp_dma_addr);
  1756. ss->tx.mask = tx_ring_entries - 1;
  1757. ss->rx_small.mask = ss->rx_big.mask = rx_ring_entries - 1;
  1758. status = -ENOMEM;
  1759. /* allocate the host shadow rings */
  1760. bytes = 8 + (MYRI10GE_MAX_SEND_DESC_TSO + 4)
  1761. * sizeof(*ss->tx.req_list);
  1762. ss->tx.req_bytes = kzalloc(bytes, GFP_KERNEL);
  1763. if (ss->tx.req_bytes == NULL)
  1764. goto abort_with_nothing;
  1765. /* ensure req_list entries are aligned to 8 bytes */
  1766. ss->tx.req_list = (struct mcp_kreq_ether_send *)
  1767. ALIGN((unsigned long)ss->tx.req_bytes, 8);
  1768. ss->tx.queue_active = 0;
  1769. bytes = rx_ring_entries * sizeof(*ss->rx_small.shadow);
  1770. ss->rx_small.shadow = kzalloc(bytes, GFP_KERNEL);
  1771. if (ss->rx_small.shadow == NULL)
  1772. goto abort_with_tx_req_bytes;
  1773. bytes = rx_ring_entries * sizeof(*ss->rx_big.shadow);
  1774. ss->rx_big.shadow = kzalloc(bytes, GFP_KERNEL);
  1775. if (ss->rx_big.shadow == NULL)
  1776. goto abort_with_rx_small_shadow;
  1777. /* allocate the host info rings */
  1778. bytes = tx_ring_entries * sizeof(*ss->tx.info);
  1779. ss->tx.info = kzalloc(bytes, GFP_KERNEL);
  1780. if (ss->tx.info == NULL)
  1781. goto abort_with_rx_big_shadow;
  1782. bytes = rx_ring_entries * sizeof(*ss->rx_small.info);
  1783. ss->rx_small.info = kzalloc(bytes, GFP_KERNEL);
  1784. if (ss->rx_small.info == NULL)
  1785. goto abort_with_tx_info;
  1786. bytes = rx_ring_entries * sizeof(*ss->rx_big.info);
  1787. ss->rx_big.info = kzalloc(bytes, GFP_KERNEL);
  1788. if (ss->rx_big.info == NULL)
  1789. goto abort_with_rx_small_info;
  1790. /* Fill the receive rings */
  1791. ss->rx_big.cnt = 0;
  1792. ss->rx_small.cnt = 0;
  1793. ss->rx_big.fill_cnt = 0;
  1794. ss->rx_small.fill_cnt = 0;
  1795. ss->rx_small.page_offset = MYRI10GE_ALLOC_SIZE;
  1796. ss->rx_big.page_offset = MYRI10GE_ALLOC_SIZE;
  1797. ss->rx_small.watchdog_needed = 0;
  1798. ss->rx_big.watchdog_needed = 0;
  1799. if (mgp->small_bytes == 0) {
  1800. ss->rx_small.fill_cnt = ss->rx_small.mask + 1;
  1801. } else {
  1802. myri10ge_alloc_rx_pages(mgp, &ss->rx_small,
  1803. mgp->small_bytes + MXGEFW_PAD, 0);
  1804. }
  1805. if (ss->rx_small.fill_cnt < ss->rx_small.mask + 1) {
  1806. netdev_err(dev, "slice-%d: alloced only %d small bufs\n",
  1807. slice, ss->rx_small.fill_cnt);
  1808. goto abort_with_rx_small_ring;
  1809. }
  1810. myri10ge_alloc_rx_pages(mgp, &ss->rx_big, mgp->big_bytes, 0);
  1811. if (ss->rx_big.fill_cnt < ss->rx_big.mask + 1) {
  1812. netdev_err(dev, "slice-%d: alloced only %d big bufs\n",
  1813. slice, ss->rx_big.fill_cnt);
  1814. goto abort_with_rx_big_ring;
  1815. }
  1816. return 0;
  1817. abort_with_rx_big_ring:
  1818. for (i = ss->rx_big.cnt; i < ss->rx_big.fill_cnt; i++) {
  1819. int idx = i & ss->rx_big.mask;
  1820. myri10ge_unmap_rx_page(mgp->pdev, &ss->rx_big.info[idx],
  1821. mgp->big_bytes);
  1822. put_page(ss->rx_big.info[idx].page);
  1823. }
  1824. abort_with_rx_small_ring:
  1825. if (mgp->small_bytes == 0)
  1826. ss->rx_small.fill_cnt = ss->rx_small.cnt;
  1827. for (i = ss->rx_small.cnt; i < ss->rx_small.fill_cnt; i++) {
  1828. int idx = i & ss->rx_small.mask;
  1829. myri10ge_unmap_rx_page(mgp->pdev, &ss->rx_small.info[idx],
  1830. mgp->small_bytes + MXGEFW_PAD);
  1831. put_page(ss->rx_small.info[idx].page);
  1832. }
  1833. kfree(ss->rx_big.info);
  1834. abort_with_rx_small_info:
  1835. kfree(ss->rx_small.info);
  1836. abort_with_tx_info:
  1837. kfree(ss->tx.info);
  1838. abort_with_rx_big_shadow:
  1839. kfree(ss->rx_big.shadow);
  1840. abort_with_rx_small_shadow:
  1841. kfree(ss->rx_small.shadow);
  1842. abort_with_tx_req_bytes:
  1843. kfree(ss->tx.req_bytes);
  1844. ss->tx.req_bytes = NULL;
  1845. ss->tx.req_list = NULL;
  1846. abort_with_nothing:
  1847. return status;
  1848. }
  1849. static void myri10ge_free_rings(struct myri10ge_slice_state *ss)
  1850. {
  1851. struct myri10ge_priv *mgp = ss->mgp;
  1852. struct sk_buff *skb;
  1853. struct myri10ge_tx_buf *tx;
  1854. int i, len, idx;
  1855. /* If not allocated, skip it */
  1856. if (ss->tx.req_list == NULL)
  1857. return;
  1858. for (i = ss->rx_big.cnt; i < ss->rx_big.fill_cnt; i++) {
  1859. idx = i & ss->rx_big.mask;
  1860. if (i == ss->rx_big.fill_cnt - 1)
  1861. ss->rx_big.info[idx].page_offset = MYRI10GE_ALLOC_SIZE;
  1862. myri10ge_unmap_rx_page(mgp->pdev, &ss->rx_big.info[idx],
  1863. mgp->big_bytes);
  1864. put_page(ss->rx_big.info[idx].page);
  1865. }
  1866. if (mgp->small_bytes == 0)
  1867. ss->rx_small.fill_cnt = ss->rx_small.cnt;
  1868. for (i = ss->rx_small.cnt; i < ss->rx_small.fill_cnt; i++) {
  1869. idx = i & ss->rx_small.mask;
  1870. if (i == ss->rx_small.fill_cnt - 1)
  1871. ss->rx_small.info[idx].page_offset =
  1872. MYRI10GE_ALLOC_SIZE;
  1873. myri10ge_unmap_rx_page(mgp->pdev, &ss->rx_small.info[idx],
  1874. mgp->small_bytes + MXGEFW_PAD);
  1875. put_page(ss->rx_small.info[idx].page);
  1876. }
  1877. tx = &ss->tx;
  1878. while (tx->done != tx->req) {
  1879. idx = tx->done & tx->mask;
  1880. skb = tx->info[idx].skb;
  1881. /* Mark as free */
  1882. tx->info[idx].skb = NULL;
  1883. tx->done++;
  1884. len = dma_unmap_len(&tx->info[idx], len);
  1885. dma_unmap_len_set(&tx->info[idx], len, 0);
  1886. if (skb) {
  1887. ss->stats.tx_dropped++;
  1888. dev_kfree_skb_any(skb);
  1889. if (len)
  1890. pci_unmap_single(mgp->pdev,
  1891. dma_unmap_addr(&tx->info[idx],
  1892. bus), len,
  1893. PCI_DMA_TODEVICE);
  1894. } else {
  1895. if (len)
  1896. pci_unmap_page(mgp->pdev,
  1897. dma_unmap_addr(&tx->info[idx],
  1898. bus), len,
  1899. PCI_DMA_TODEVICE);
  1900. }
  1901. }
  1902. kfree(ss->rx_big.info);
  1903. kfree(ss->rx_small.info);
  1904. kfree(ss->tx.info);
  1905. kfree(ss->rx_big.shadow);
  1906. kfree(ss->rx_small.shadow);
  1907. kfree(ss->tx.req_bytes);
  1908. ss->tx.req_bytes = NULL;
  1909. ss->tx.req_list = NULL;
  1910. }
  1911. static int myri10ge_request_irq(struct myri10ge_priv *mgp)
  1912. {
  1913. struct pci_dev *pdev = mgp->pdev;
  1914. struct myri10ge_slice_state *ss;
  1915. struct net_device *netdev = mgp->dev;
  1916. int i;
  1917. int status;
  1918. mgp->msi_enabled = 0;
  1919. mgp->msix_enabled = 0;
  1920. status = 0;
  1921. if (myri10ge_msi) {
  1922. if (mgp->num_slices > 1) {
  1923. status =
  1924. pci_enable_msix(pdev, mgp->msix_vectors,
  1925. mgp->num_slices);
  1926. if (status == 0) {
  1927. mgp->msix_enabled = 1;
  1928. } else {
  1929. dev_err(&pdev->dev,
  1930. "Error %d setting up MSI-X\n", status);
  1931. return status;
  1932. }
  1933. }
  1934. if (mgp->msix_enabled == 0) {
  1935. status = pci_enable_msi(pdev);
  1936. if (status != 0) {
  1937. dev_err(&pdev->dev,
  1938. "Error %d setting up MSI; falling back to xPIC\n",
  1939. status);
  1940. } else {
  1941. mgp->msi_enabled = 1;
  1942. }
  1943. }
  1944. }
  1945. if (mgp->msix_enabled) {
  1946. for (i = 0; i < mgp->num_slices; i++) {
  1947. ss = &mgp->ss[i];
  1948. snprintf(ss->irq_desc, sizeof(ss->irq_desc),
  1949. "%s:slice-%d", netdev->name, i);
  1950. status = request_irq(mgp->msix_vectors[i].vector,
  1951. myri10ge_intr, 0, ss->irq_desc,
  1952. ss);
  1953. if (status != 0) {
  1954. dev_err(&pdev->dev,
  1955. "slice %d failed to allocate IRQ\n", i);
  1956. i--;
  1957. while (i >= 0) {
  1958. free_irq(mgp->msix_vectors[i].vector,
  1959. &mgp->ss[i]);
  1960. i--;
  1961. }
  1962. pci_disable_msix(pdev);
  1963. return status;
  1964. }
  1965. }
  1966. } else {
  1967. status = request_irq(pdev->irq, myri10ge_intr, IRQF_SHARED,
  1968. mgp->dev->name, &mgp->ss[0]);
  1969. if (status != 0) {
  1970. dev_err(&pdev->dev, "failed to allocate IRQ\n");
  1971. if (mgp->msi_enabled)
  1972. pci_disable_msi(pdev);
  1973. }
  1974. }
  1975. return status;
  1976. }
  1977. static void myri10ge_free_irq(struct myri10ge_priv *mgp)
  1978. {
  1979. struct pci_dev *pdev = mgp->pdev;
  1980. int i;
  1981. if (mgp->msix_enabled) {
  1982. for (i = 0; i < mgp->num_slices; i++)
  1983. free_irq(mgp->msix_vectors[i].vector, &mgp->ss[i]);
  1984. } else {
  1985. free_irq(pdev->irq, &mgp->ss[0]);
  1986. }
  1987. if (mgp->msi_enabled)
  1988. pci_disable_msi(pdev);
  1989. if (mgp->msix_enabled)
  1990. pci_disable_msix(pdev);
  1991. }
  1992. static int
  1993. myri10ge_get_frag_header(struct skb_frag_struct *frag, void **mac_hdr,
  1994. void **ip_hdr, void **tcpudp_hdr,
  1995. u64 * hdr_flags, void *priv)
  1996. {
  1997. struct ethhdr *eh;
  1998. struct vlan_ethhdr *veh;
  1999. struct iphdr *iph;
  2000. u8 *va = page_address(frag->page) + frag->page_offset;
  2001. unsigned long ll_hlen;
  2002. /* passed opaque through lro_receive_frags() */
  2003. __wsum csum = (__force __wsum) (unsigned long)priv;
  2004. /* find the mac header, aborting if not IPv4 */
  2005. eh = (struct ethhdr *)va;
  2006. *mac_hdr = eh;
  2007. ll_hlen = ETH_HLEN;
  2008. if (eh->h_proto != htons(ETH_P_IP)) {
  2009. if (eh->h_proto == htons(ETH_P_8021Q)) {
  2010. veh = (struct vlan_ethhdr *)va;
  2011. if (veh->h_vlan_encapsulated_proto != htons(ETH_P_IP))
  2012. return -1;
  2013. ll_hlen += VLAN_HLEN;
  2014. /*
  2015. * HW checksum starts ETH_HLEN bytes into
  2016. * frame, so we must subtract off the VLAN
  2017. * header's checksum before csum can be used
  2018. */
  2019. csum = csum_sub(csum, csum_partial(va + ETH_HLEN,
  2020. VLAN_HLEN, 0));
  2021. } else {
  2022. return -1;
  2023. }
  2024. }
  2025. *hdr_flags = LRO_IPV4;
  2026. iph = (struct iphdr *)(va + ll_hlen);
  2027. *ip_hdr = iph;
  2028. if (iph->protocol != IPPROTO_TCP)
  2029. return -1;
  2030. if (ip_is_fragment(iph))
  2031. return -1;
  2032. *hdr_flags |= LRO_TCP;
  2033. *tcpudp_hdr = (u8 *) (*ip_hdr) + (iph->ihl << 2);
  2034. /* verify the IP checksum */
  2035. if (unlikely(ip_fast_csum((u8 *) iph, iph->ihl)))
  2036. return -1;
  2037. /* verify the checksum */
  2038. if (unlikely(csum_tcpudp_magic(iph->saddr, iph->daddr,
  2039. ntohs(iph->tot_len) - (iph->ihl << 2),
  2040. IPPROTO_TCP, csum)))
  2041. return -1;
  2042. return 0;
  2043. }
  2044. static int myri10ge_get_txrx(struct myri10ge_priv *mgp, int slice)
  2045. {
  2046. struct myri10ge_cmd cmd;
  2047. struct myri10ge_slice_state *ss;
  2048. int status;
  2049. ss = &mgp->ss[slice];
  2050. status = 0;
  2051. if (slice == 0 || (mgp->dev->real_num_tx_queues > 1)) {
  2052. cmd.data0 = slice;
  2053. status = myri10ge_send_cmd(mgp, MXGEFW_CMD_GET_SEND_OFFSET,
  2054. &cmd, 0);
  2055. ss->tx.lanai = (struct mcp_kreq_ether_send __iomem *)
  2056. (mgp->sram + cmd.data0);
  2057. }
  2058. cmd.data0 = slice;
  2059. status |= myri10ge_send_cmd(mgp, MXGEFW_CMD_GET_SMALL_RX_OFFSET,
  2060. &cmd, 0);
  2061. ss->rx_small.lanai = (struct mcp_kreq_ether_recv __iomem *)
  2062. (mgp->sram + cmd.data0);
  2063. cmd.data0 = slice;
  2064. status |= myri10ge_send_cmd(mgp, MXGEFW_CMD_GET_BIG_RX_OFFSET, &cmd, 0);
  2065. ss->rx_big.lanai = (struct mcp_kreq_ether_recv __iomem *)
  2066. (mgp->sram + cmd.data0);
  2067. ss->tx.send_go = (__iomem __be32 *)
  2068. (mgp->sram + MXGEFW_ETH_SEND_GO + 64 * slice);
  2069. ss->tx.send_stop = (__iomem __be32 *)
  2070. (mgp->sram + MXGEFW_ETH_SEND_STOP + 64 * slice);
  2071. return status;
  2072. }
  2073. static int myri10ge_set_stats(struct myri10ge_priv *mgp, int slice)
  2074. {
  2075. struct myri10ge_cmd cmd;
  2076. struct myri10ge_slice_state *ss;
  2077. int status;
  2078. ss = &mgp->ss[slice];
  2079. cmd.data0 = MYRI10GE_LOWPART_TO_U32(ss->fw_stats_bus);
  2080. cmd.data1 = MYRI10GE_HIGHPART_TO_U32(ss->fw_stats_bus);
  2081. cmd.data2 = sizeof(struct mcp_irq_data) | (slice << 16);
  2082. status = myri10ge_send_cmd(mgp, MXGEFW_CMD_SET_STATS_DMA_V2, &cmd, 0);
  2083. if (status == -ENOSYS) {
  2084. dma_addr_t bus = ss->fw_stats_bus;
  2085. if (slice != 0)
  2086. return -EINVAL;
  2087. bus += offsetof(struct mcp_irq_data, send_done_count);
  2088. cmd.data0 = MYRI10GE_LOWPART_TO_U32(bus);
  2089. cmd.data1 = MYRI10GE_HIGHPART_TO_U32(bus);
  2090. status = myri10ge_send_cmd(mgp,
  2091. MXGEFW_CMD_SET_STATS_DMA_OBSOLETE,
  2092. &cmd, 0);
  2093. /* Firmware cannot support multicast without STATS_DMA_V2 */
  2094. mgp->fw_multicast_support = 0;
  2095. } else {
  2096. mgp->fw_multicast_support = 1;
  2097. }
  2098. return 0;
  2099. }
  2100. static int myri10ge_open(struct net_device *dev)
  2101. {
  2102. struct myri10ge_slice_state *ss;
  2103. struct myri10ge_priv *mgp = netdev_priv(dev);
  2104. struct myri10ge_cmd cmd;
  2105. int i, status, big_pow2, slice;
  2106. u8 *itable;
  2107. struct net_lro_mgr *lro_mgr;
  2108. if (mgp->running != MYRI10GE_ETH_STOPPED)
  2109. return -EBUSY;
  2110. mgp->running = MYRI10GE_ETH_STARTING;
  2111. status = myri10ge_reset(mgp);
  2112. if (status != 0) {
  2113. netdev_err(dev, "failed reset\n");
  2114. goto abort_with_nothing;
  2115. }
  2116. if (mgp->num_slices > 1) {
  2117. cmd.data0 = mgp->num_slices;
  2118. cmd.data1 = MXGEFW_SLICE_INTR_MODE_ONE_PER_SLICE;
  2119. if (mgp->dev->real_num_tx_queues > 1)
  2120. cmd.data1 |= MXGEFW_SLICE_ENABLE_MULTIPLE_TX_QUEUES;
  2121. status = myri10ge_send_cmd(mgp, MXGEFW_CMD_ENABLE_RSS_QUEUES,
  2122. &cmd, 0);
  2123. if (status != 0) {
  2124. netdev_err(dev, "failed to set number of slices\n");
  2125. goto abort_with_nothing;
  2126. }
  2127. /* setup the indirection table */
  2128. cmd.data0 = mgp->num_slices;
  2129. status = myri10ge_send_cmd(mgp, MXGEFW_CMD_SET_RSS_TABLE_SIZE,
  2130. &cmd, 0);
  2131. status |= myri10ge_send_cmd(mgp,
  2132. MXGEFW_CMD_GET_RSS_TABLE_OFFSET,
  2133. &cmd, 0);
  2134. if (status != 0) {
  2135. netdev_err(dev, "failed to setup rss tables\n");
  2136. goto abort_with_nothing;
  2137. }
  2138. /* just enable an identity mapping */
  2139. itable = mgp->sram + cmd.data0;
  2140. for (i = 0; i < mgp->num_slices; i++)
  2141. __raw_writeb(i, &itable[i]);
  2142. cmd.data0 = 1;
  2143. cmd.data1 = myri10ge_rss_hash;
  2144. status = myri10ge_send_cmd(mgp, MXGEFW_CMD_SET_RSS_ENABLE,
  2145. &cmd, 0);
  2146. if (status != 0) {
  2147. netdev_err(dev, "failed to enable slices\n");
  2148. goto abort_with_nothing;
  2149. }
  2150. }
  2151. status = myri10ge_request_irq(mgp);
  2152. if (status != 0)
  2153. goto abort_with_nothing;
  2154. /* decide what small buffer size to use. For good TCP rx
  2155. * performance, it is important to not receive 1514 byte
  2156. * frames into jumbo buffers, as it confuses the socket buffer
  2157. * accounting code, leading to drops and erratic performance.
  2158. */
  2159. if (dev->mtu <= ETH_DATA_LEN)
  2160. /* enough for a TCP header */
  2161. mgp->small_bytes = (128 > SMP_CACHE_BYTES)
  2162. ? (128 - MXGEFW_PAD)
  2163. : (SMP_CACHE_BYTES - MXGEFW_PAD);
  2164. else
  2165. /* enough for a vlan encapsulated ETH_DATA_LEN frame */
  2166. mgp->small_bytes = VLAN_ETH_FRAME_LEN;
  2167. /* Override the small buffer size? */
  2168. if (myri10ge_small_bytes >= 0)
  2169. mgp->small_bytes = myri10ge_small_bytes;
  2170. /* Firmware needs the big buff size as a power of 2. Lie and
  2171. * tell him the buffer is larger, because we only use 1
  2172. * buffer/pkt, and the mtu will prevent overruns.
  2173. */
  2174. big_pow2 = dev->mtu + ETH_HLEN + VLAN_HLEN + MXGEFW_PAD;
  2175. if (big_pow2 < MYRI10GE_ALLOC_SIZE / 2) {
  2176. while (!is_power_of_2(big_pow2))
  2177. big_pow2++;
  2178. mgp->big_bytes = dev->mtu + ETH_HLEN + VLAN_HLEN + MXGEFW_PAD;
  2179. } else {
  2180. big_pow2 = MYRI10GE_ALLOC_SIZE;
  2181. mgp->big_bytes = big_pow2;
  2182. }
  2183. /* setup the per-slice data structures */
  2184. for (slice = 0; slice < mgp->num_slices; slice++) {
  2185. ss = &mgp->ss[slice];
  2186. status = myri10ge_get_txrx(mgp, slice);
  2187. if (status != 0) {
  2188. netdev_err(dev, "failed to get ring sizes or locations\n");
  2189. goto abort_with_rings;
  2190. }
  2191. status = myri10ge_allocate_rings(ss);
  2192. if (status != 0)
  2193. goto abort_with_rings;
  2194. /* only firmware which supports multiple TX queues
  2195. * supports setting up the tx stats on non-zero
  2196. * slices */
  2197. if (slice == 0 || mgp->dev->real_num_tx_queues > 1)
  2198. status = myri10ge_set_stats(mgp, slice);
  2199. if (status) {
  2200. netdev_err(dev, "Couldn't set stats DMA\n");
  2201. goto abort_with_rings;
  2202. }
  2203. lro_mgr = &ss->rx_done.lro_mgr;
  2204. lro_mgr->dev = dev;
  2205. lro_mgr->features = LRO_F_NAPI;
  2206. lro_mgr->ip_summed = CHECKSUM_COMPLETE;
  2207. lro_mgr->ip_summed_aggr = CHECKSUM_UNNECESSARY;
  2208. lro_mgr->max_desc = MYRI10GE_MAX_LRO_DESCRIPTORS;
  2209. lro_mgr->lro_arr = ss->rx_done.lro_desc;
  2210. lro_mgr->get_frag_header = myri10ge_get_frag_header;
  2211. lro_mgr->max_aggr = myri10ge_lro_max_pkts;
  2212. lro_mgr->frag_align_pad = 2;
  2213. if (lro_mgr->max_aggr > MAX_SKB_FRAGS)
  2214. lro_mgr->max_aggr = MAX_SKB_FRAGS;
  2215. /* must happen prior to any irq */
  2216. napi_enable(&(ss)->napi);
  2217. }
  2218. /* now give firmware buffers sizes, and MTU */
  2219. cmd.data0 = dev->mtu + ETH_HLEN + VLAN_HLEN;
  2220. status = myri10ge_send_cmd(mgp, MXGEFW_CMD_SET_MTU, &cmd, 0);
  2221. cmd.data0 = mgp->small_bytes;
  2222. status |=
  2223. myri10ge_send_cmd(mgp, MXGEFW_CMD_SET_SMALL_BUFFER_SIZE, &cmd, 0);
  2224. cmd.data0 = big_pow2;
  2225. status |=
  2226. myri10ge_send_cmd(mgp, MXGEFW_CMD_SET_BIG_BUFFER_SIZE, &cmd, 0);
  2227. if (status) {
  2228. netdev_err(dev, "Couldn't set buffer sizes\n");
  2229. goto abort_with_rings;
  2230. }
  2231. /*
  2232. * Set Linux style TSO mode; this is needed only on newer
  2233. * firmware versions. Older versions default to Linux
  2234. * style TSO
  2235. */
  2236. cmd.data0 = 0;
  2237. status = myri10ge_send_cmd(mgp, MXGEFW_CMD_SET_TSO_MODE, &cmd, 0);
  2238. if (status && status != -ENOSYS) {
  2239. netdev_err(dev, "Couldn't set TSO mode\n");
  2240. goto abort_with_rings;
  2241. }
  2242. mgp->link_state = ~0U;
  2243. mgp->rdma_tags_available = 15;
  2244. status = myri10ge_send_cmd(mgp, MXGEFW_CMD_ETHERNET_UP, &cmd, 0);
  2245. if (status) {
  2246. netdev_err(dev, "Couldn't bring up link\n");
  2247. goto abort_with_rings;
  2248. }
  2249. mgp->running = MYRI10GE_ETH_RUNNING;
  2250. mgp->watchdog_timer.expires = jiffies + myri10ge_watchdog_timeout * HZ;
  2251. add_timer(&mgp->watchdog_timer);
  2252. netif_tx_wake_all_queues(dev);
  2253. return 0;
  2254. abort_with_rings:
  2255. while (slice) {
  2256. slice--;
  2257. napi_disable(&mgp->ss[slice].napi);
  2258. }
  2259. for (i = 0; i < mgp->num_slices; i++)
  2260. myri10ge_free_rings(&mgp->ss[i]);
  2261. myri10ge_free_irq(mgp);
  2262. abort_with_nothing:
  2263. mgp->running = MYRI10GE_ETH_STOPPED;
  2264. return -ENOMEM;
  2265. }
  2266. static int myri10ge_close(struct net_device *dev)
  2267. {
  2268. struct myri10ge_priv *mgp = netdev_priv(dev);
  2269. struct myri10ge_cmd cmd;
  2270. int status, old_down_cnt;
  2271. int i;
  2272. if (mgp->running != MYRI10GE_ETH_RUNNING)
  2273. return 0;
  2274. if (mgp->ss[0].tx.req_bytes == NULL)
  2275. return 0;
  2276. del_timer_sync(&mgp->watchdog_timer);
  2277. mgp->running = MYRI10GE_ETH_STOPPING;
  2278. for (i = 0; i < mgp->num_slices; i++) {
  2279. napi_disable(&mgp->ss[i].napi);
  2280. }
  2281. netif_carrier_off(dev);
  2282. netif_tx_stop_all_queues(dev);
  2283. if (mgp->rebooted == 0) {
  2284. old_down_cnt = mgp->down_cnt;
  2285. mb();
  2286. status =
  2287. myri10ge_send_cmd(mgp, MXGEFW_CMD_ETHERNET_DOWN, &cmd, 0);
  2288. if (status)
  2289. netdev_err(dev, "Couldn't bring down link\n");
  2290. wait_event_timeout(mgp->down_wq, old_down_cnt != mgp->down_cnt,
  2291. HZ);
  2292. if (old_down_cnt == mgp->down_cnt)
  2293. netdev_err(dev, "never got down irq\n");
  2294. }
  2295. netif_tx_disable(dev);
  2296. myri10ge_free_irq(mgp);
  2297. for (i = 0; i < mgp->num_slices; i++)
  2298. myri10ge_free_rings(&mgp->ss[i]);
  2299. mgp->running = MYRI10GE_ETH_STOPPED;
  2300. return 0;
  2301. }
  2302. /* copy an array of struct mcp_kreq_ether_send's to the mcp. Copy
  2303. * backwards one at a time and handle ring wraps */
  2304. static inline void
  2305. myri10ge_submit_req_backwards(struct myri10ge_tx_buf *tx,
  2306. struct mcp_kreq_ether_send *src, int cnt)
  2307. {
  2308. int idx, starting_slot;
  2309. starting_slot = tx->req;
  2310. while (cnt > 1) {
  2311. cnt--;
  2312. idx = (starting_slot + cnt) & tx->mask;
  2313. myri10ge_pio_copy(&tx->lanai[idx], &src[cnt], sizeof(*src));
  2314. mb();
  2315. }
  2316. }
  2317. /*
  2318. * copy an array of struct mcp_kreq_ether_send's to the mcp. Copy
  2319. * at most 32 bytes at a time, so as to avoid involving the software
  2320. * pio handler in the nic. We re-write the first segment's flags
  2321. * to mark them valid only after writing the entire chain.
  2322. */
  2323. static inline void
  2324. myri10ge_submit_req(struct myri10ge_tx_buf *tx, struct mcp_kreq_ether_send *src,
  2325. int cnt)
  2326. {
  2327. int idx, i;
  2328. struct mcp_kreq_ether_send __iomem *dstp, *dst;
  2329. struct mcp_kreq_ether_send *srcp;
  2330. u8 last_flags;
  2331. idx = tx->req & tx->mask;
  2332. last_flags = src->flags;
  2333. src->flags = 0;
  2334. mb();
  2335. dst = dstp = &tx->lanai[idx];
  2336. srcp = src;
  2337. if ((idx + cnt) < tx->mask) {
  2338. for (i = 0; i < (cnt - 1); i += 2) {
  2339. myri10ge_pio_copy(dstp, srcp, 2 * sizeof(*src));
  2340. mb(); /* force write every 32 bytes */
  2341. srcp += 2;
  2342. dstp += 2;
  2343. }
  2344. } else {
  2345. /* submit all but the first request, and ensure
  2346. * that it is submitted below */
  2347. myri10ge_submit_req_backwards(tx, src, cnt);
  2348. i = 0;
  2349. }
  2350. if (i < cnt) {
  2351. /* submit the first request */
  2352. myri10ge_pio_copy(dstp, srcp, sizeof(*src));
  2353. mb(); /* barrier before setting valid flag */
  2354. }
  2355. /* re-write the last 32-bits with the valid flags */
  2356. src->flags = last_flags;
  2357. put_be32(*((__be32 *) src + 3), (__be32 __iomem *) dst + 3);
  2358. tx->req += cnt;
  2359. mb();
  2360. }
  2361. /*
  2362. * Transmit a packet. We need to split the packet so that a single
  2363. * segment does not cross myri10ge->tx_boundary, so this makes segment
  2364. * counting tricky. So rather than try to count segments up front, we
  2365. * just give up if there are too few segments to hold a reasonably
  2366. * fragmented packet currently available. If we run
  2367. * out of segments while preparing a packet for DMA, we just linearize
  2368. * it and try again.
  2369. */
  2370. static netdev_tx_t myri10ge_xmit(struct sk_buff *skb,
  2371. struct net_device *dev)
  2372. {
  2373. struct myri10ge_priv *mgp = netdev_priv(dev);
  2374. struct myri10ge_slice_state *ss;
  2375. struct mcp_kreq_ether_send *req;
  2376. struct myri10ge_tx_buf *tx;
  2377. struct skb_frag_struct *frag;
  2378. struct netdev_queue *netdev_queue;
  2379. dma_addr_t bus;
  2380. u32 low;
  2381. __be32 high_swapped;
  2382. unsigned int len;
  2383. int idx, last_idx, avail, frag_cnt, frag_idx, count, mss, max_segments;
  2384. u16 pseudo_hdr_offset, cksum_offset, queue;
  2385. int cum_len, seglen, boundary, rdma_count;
  2386. u8 flags, odd_flag;
  2387. queue = skb_get_queue_mapping(skb);
  2388. ss = &mgp->ss[queue];
  2389. netdev_queue = netdev_get_tx_queue(mgp->dev, queue);
  2390. tx = &ss->tx;
  2391. again:
  2392. req = tx->req_list;
  2393. avail = tx->mask - 1 - (tx->req - tx->done);
  2394. mss = 0;
  2395. max_segments = MXGEFW_MAX_SEND_DESC;
  2396. if (skb_is_gso(skb)) {
  2397. mss = skb_shinfo(skb)->gso_size;
  2398. max_segments = MYRI10GE_MAX_SEND_DESC_TSO;
  2399. }
  2400. if ((unlikely(avail < max_segments))) {
  2401. /* we are out of transmit resources */
  2402. tx->stop_queue++;
  2403. netif_tx_stop_queue(netdev_queue);
  2404. return NETDEV_TX_BUSY;
  2405. }
  2406. /* Setup checksum offloading, if needed */
  2407. cksum_offset = 0;
  2408. pseudo_hdr_offset = 0;
  2409. odd_flag = 0;
  2410. flags = (MXGEFW_FLAGS_NO_TSO | MXGEFW_FLAGS_FIRST);
  2411. if (likely(skb->ip_summed == CHECKSUM_PARTIAL)) {
  2412. cksum_offset = skb_checksum_start_offset(skb);
  2413. pseudo_hdr_offset = cksum_offset + skb->csum_offset;
  2414. /* If the headers are excessively large, then we must
  2415. * fall back to a software checksum */
  2416. if (unlikely(!mss && (cksum_offset > 255 ||
  2417. pseudo_hdr_offset > 127))) {
  2418. if (skb_checksum_help(skb))
  2419. goto drop;
  2420. cksum_offset = 0;
  2421. pseudo_hdr_offset = 0;
  2422. } else {
  2423. odd_flag = MXGEFW_FLAGS_ALIGN_ODD;
  2424. flags |= MXGEFW_FLAGS_CKSUM;
  2425. }
  2426. }
  2427. cum_len = 0;
  2428. if (mss) { /* TSO */
  2429. /* this removes any CKSUM flag from before */
  2430. flags = (MXGEFW_FLAGS_TSO_HDR | MXGEFW_FLAGS_FIRST);
  2431. /* negative cum_len signifies to the
  2432. * send loop that we are still in the
  2433. * header portion of the TSO packet.
  2434. * TSO header can be at most 1KB long */
  2435. cum_len = -(skb_transport_offset(skb) + tcp_hdrlen(skb));
  2436. /* for IPv6 TSO, the checksum offset stores the
  2437. * TCP header length, to save the firmware from
  2438. * the need to parse the headers */
  2439. if (skb_is_gso_v6(skb)) {
  2440. cksum_offset = tcp_hdrlen(skb);
  2441. /* Can only handle headers <= max_tso6 long */
  2442. if (unlikely(-cum_len > mgp->max_tso6))
  2443. return myri10ge_sw_tso(skb, dev);
  2444. }
  2445. /* for TSO, pseudo_hdr_offset holds mss.
  2446. * The firmware figures out where to put
  2447. * the checksum by parsing the header. */
  2448. pseudo_hdr_offset = mss;
  2449. } else
  2450. /* Mark small packets, and pad out tiny packets */
  2451. if (skb->len <= MXGEFW_SEND_SMALL_SIZE) {
  2452. flags |= MXGEFW_FLAGS_SMALL;
  2453. /* pad frames to at least ETH_ZLEN bytes */
  2454. if (unlikely(skb->len < ETH_ZLEN)) {
  2455. if (skb_padto(skb, ETH_ZLEN)) {
  2456. /* The packet is gone, so we must
  2457. * return 0 */
  2458. ss->stats.tx_dropped += 1;
  2459. return NETDEV_TX_OK;
  2460. }
  2461. /* adjust the len to account for the zero pad
  2462. * so that the nic can know how long it is */
  2463. skb->len = ETH_ZLEN;
  2464. }
  2465. }
  2466. /* map the skb for DMA */
  2467. len = skb_headlen(skb);
  2468. idx = tx->req & tx->mask;
  2469. tx->info[idx].skb = skb;
  2470. bus = pci_map_single(mgp->pdev, skb->data, len, PCI_DMA_TODEVICE);
  2471. dma_unmap_addr_set(&tx->info[idx], bus, bus);
  2472. dma_unmap_len_set(&tx->info[idx], len, len);
  2473. frag_cnt = skb_shinfo(skb)->nr_frags;
  2474. frag_idx = 0;
  2475. count = 0;
  2476. rdma_count = 0;
  2477. /* "rdma_count" is the number of RDMAs belonging to the
  2478. * current packet BEFORE the current send request. For
  2479. * non-TSO packets, this is equal to "count".
  2480. * For TSO packets, rdma_count needs to be reset
  2481. * to 0 after a segment cut.
  2482. *
  2483. * The rdma_count field of the send request is
  2484. * the number of RDMAs of the packet starting at
  2485. * that request. For TSO send requests with one ore more cuts
  2486. * in the middle, this is the number of RDMAs starting
  2487. * after the last cut in the request. All previous
  2488. * segments before the last cut implicitly have 1 RDMA.
  2489. *
  2490. * Since the number of RDMAs is not known beforehand,
  2491. * it must be filled-in retroactively - after each
  2492. * segmentation cut or at the end of the entire packet.
  2493. */
  2494. while (1) {
  2495. /* Break the SKB or Fragment up into pieces which
  2496. * do not cross mgp->tx_boundary */
  2497. low = MYRI10GE_LOWPART_TO_U32(bus);
  2498. high_swapped = htonl(MYRI10GE_HIGHPART_TO_U32(bus));
  2499. while (len) {
  2500. u8 flags_next;
  2501. int cum_len_next;
  2502. if (unlikely(count == max_segments))
  2503. goto abort_linearize;
  2504. boundary =
  2505. (low + mgp->tx_boundary) & ~(mgp->tx_boundary - 1);
  2506. seglen = boundary - low;
  2507. if (seglen > len)
  2508. seglen = len;
  2509. flags_next = flags & ~MXGEFW_FLAGS_FIRST;
  2510. cum_len_next = cum_len + seglen;
  2511. if (mss) { /* TSO */
  2512. (req - rdma_count)->rdma_count = rdma_count + 1;
  2513. if (likely(cum_len >= 0)) { /* payload */
  2514. int next_is_first, chop;
  2515. chop = (cum_len_next > mss);
  2516. cum_len_next = cum_len_next % mss;
  2517. next_is_first = (cum_len_next == 0);
  2518. flags |= chop * MXGEFW_FLAGS_TSO_CHOP;
  2519. flags_next |= next_is_first *
  2520. MXGEFW_FLAGS_FIRST;
  2521. rdma_count |= -(chop | next_is_first);
  2522. rdma_count += chop & !next_is_first;
  2523. } else if (likely(cum_len_next >= 0)) { /* header ends */
  2524. int small;
  2525. rdma_count = -1;
  2526. cum_len_next = 0;
  2527. seglen = -cum_len;
  2528. small = (mss <= MXGEFW_SEND_SMALL_SIZE);
  2529. flags_next = MXGEFW_FLAGS_TSO_PLD |
  2530. MXGEFW_FLAGS_FIRST |
  2531. (small * MXGEFW_FLAGS_SMALL);
  2532. }
  2533. }
  2534. req->addr_high = high_swapped;
  2535. req->addr_low = htonl(low);
  2536. req->pseudo_hdr_offset = htons(pseudo_hdr_offset);
  2537. req->pad = 0; /* complete solid 16-byte block; does this matter? */
  2538. req->rdma_count = 1;
  2539. req->length = htons(seglen);
  2540. req->cksum_offset = cksum_offset;
  2541. req->flags = flags | ((cum_len & 1) * odd_flag);
  2542. low += seglen;
  2543. len -= seglen;
  2544. cum_len = cum_len_next;
  2545. flags = flags_next;
  2546. req++;
  2547. count++;
  2548. rdma_count++;
  2549. if (cksum_offset != 0 && !(mss && skb_is_gso_v6(skb))) {
  2550. if (unlikely(cksum_offset > seglen))
  2551. cksum_offset -= seglen;
  2552. else
  2553. cksum_offset = 0;
  2554. }
  2555. }
  2556. if (frag_idx == frag_cnt)
  2557. break;
  2558. /* map next fragment for DMA */
  2559. idx = (count + tx->req) & tx->mask;
  2560. frag = &skb_shinfo(skb)->frags[frag_idx];
  2561. frag_idx++;
  2562. len = frag->size;
  2563. bus = pci_map_page(mgp->pdev, frag->page, frag->page_offset,
  2564. len, PCI_DMA_TODEVICE);
  2565. dma_unmap_addr_set(&tx->info[idx], bus, bus);
  2566. dma_unmap_len_set(&tx->info[idx], len, len);
  2567. }
  2568. (req - rdma_count)->rdma_count = rdma_count;
  2569. if (mss)
  2570. do {
  2571. req--;
  2572. req->flags |= MXGEFW_FLAGS_TSO_LAST;
  2573. } while (!(req->flags & (MXGEFW_FLAGS_TSO_CHOP |
  2574. MXGEFW_FLAGS_FIRST)));
  2575. idx = ((count - 1) + tx->req) & tx->mask;
  2576. tx->info[idx].last = 1;
  2577. myri10ge_submit_req(tx, tx->req_list, count);
  2578. /* if using multiple tx queues, make sure NIC polls the
  2579. * current slice */
  2580. if ((mgp->dev->real_num_tx_queues > 1) && tx->queue_active == 0) {
  2581. tx->queue_active = 1;
  2582. put_be32(htonl(1), tx->send_go);
  2583. mb();
  2584. mmiowb();
  2585. }
  2586. tx->pkt_start++;
  2587. if ((avail - count) < MXGEFW_MAX_SEND_DESC) {
  2588. tx->stop_queue++;
  2589. netif_tx_stop_queue(netdev_queue);
  2590. }
  2591. return NETDEV_TX_OK;
  2592. abort_linearize:
  2593. /* Free any DMA resources we've alloced and clear out the skb
  2594. * slot so as to not trip up assertions, and to avoid a
  2595. * double-free if linearizing fails */
  2596. last_idx = (idx + 1) & tx->mask;
  2597. idx = tx->req & tx->mask;
  2598. tx->info[idx].skb = NULL;
  2599. do {
  2600. len = dma_unmap_len(&tx->info[idx], len);
  2601. if (len) {
  2602. if (tx->info[idx].skb != NULL)
  2603. pci_unmap_single(mgp->pdev,
  2604. dma_unmap_addr(&tx->info[idx],
  2605. bus), len,
  2606. PCI_DMA_TODEVICE);
  2607. else
  2608. pci_unmap_page(mgp->pdev,
  2609. dma_unmap_addr(&tx->info[idx],
  2610. bus), len,
  2611. PCI_DMA_TODEVICE);
  2612. dma_unmap_len_set(&tx->info[idx], len, 0);
  2613. tx->info[idx].skb = NULL;
  2614. }
  2615. idx = (idx + 1) & tx->mask;
  2616. } while (idx != last_idx);
  2617. if (skb_is_gso(skb)) {
  2618. netdev_err(mgp->dev, "TSO but wanted to linearize?!?!?\n");
  2619. goto drop;
  2620. }
  2621. if (skb_linearize(skb))
  2622. goto drop;
  2623. tx->linearized++;
  2624. goto again;
  2625. drop:
  2626. dev_kfree_skb_any(skb);
  2627. ss->stats.tx_dropped += 1;
  2628. return NETDEV_TX_OK;
  2629. }
  2630. static netdev_tx_t myri10ge_sw_tso(struct sk_buff *skb,
  2631. struct net_device *dev)
  2632. {
  2633. struct sk_buff *segs, *curr;
  2634. struct myri10ge_priv *mgp = netdev_priv(dev);
  2635. struct myri10ge_slice_state *ss;
  2636. netdev_tx_t status;
  2637. segs = skb_gso_segment(skb, dev->features & ~NETIF_F_TSO6);
  2638. if (IS_ERR(segs))
  2639. goto drop;
  2640. while (segs) {
  2641. curr = segs;
  2642. segs = segs->next;
  2643. curr->next = NULL;
  2644. status = myri10ge_xmit(curr, dev);
  2645. if (status != 0) {
  2646. dev_kfree_skb_any(curr);
  2647. if (segs != NULL) {
  2648. curr = segs;
  2649. segs = segs->next;
  2650. curr->next = NULL;
  2651. dev_kfree_skb_any(segs);
  2652. }
  2653. goto drop;
  2654. }
  2655. }
  2656. dev_kfree_skb_any(skb);
  2657. return NETDEV_TX_OK;
  2658. drop:
  2659. ss = &mgp->ss[skb_get_queue_mapping(skb)];
  2660. dev_kfree_skb_any(skb);
  2661. ss->stats.tx_dropped += 1;
  2662. return NETDEV_TX_OK;
  2663. }
  2664. static struct rtnl_link_stats64 *myri10ge_get_stats(struct net_device *dev,
  2665. struct rtnl_link_stats64 *stats)
  2666. {
  2667. const struct myri10ge_priv *mgp = netdev_priv(dev);
  2668. const struct myri10ge_slice_netstats *slice_stats;
  2669. int i;
  2670. for (i = 0; i < mgp->num_slices; i++) {
  2671. slice_stats = &mgp->ss[i].stats;
  2672. stats->rx_packets += slice_stats->rx_packets;
  2673. stats->tx_packets += slice_stats->tx_packets;
  2674. stats->rx_bytes += slice_stats->rx_bytes;
  2675. stats->tx_bytes += slice_stats->tx_bytes;
  2676. stats->rx_dropped += slice_stats->rx_dropped;
  2677. stats->tx_dropped += slice_stats->tx_dropped;
  2678. }
  2679. return stats;
  2680. }
  2681. static void myri10ge_set_multicast_list(struct net_device *dev)
  2682. {
  2683. struct myri10ge_priv *mgp = netdev_priv(dev);
  2684. struct myri10ge_cmd cmd;
  2685. struct netdev_hw_addr *ha;
  2686. __be32 data[2] = { 0, 0 };
  2687. int err;
  2688. /* can be called from atomic contexts,
  2689. * pass 1 to force atomicity in myri10ge_send_cmd() */
  2690. myri10ge_change_promisc(mgp, dev->flags & IFF_PROMISC, 1);
  2691. /* This firmware is known to not support multicast */
  2692. if (!mgp->fw_multicast_support)
  2693. return;
  2694. /* Disable multicast filtering */
  2695. err = myri10ge_send_cmd(mgp, MXGEFW_ENABLE_ALLMULTI, &cmd, 1);
  2696. if (err != 0) {
  2697. netdev_err(dev, "Failed MXGEFW_ENABLE_ALLMULTI, error status: %d\n",
  2698. err);
  2699. goto abort;
  2700. }
  2701. if ((dev->flags & IFF_ALLMULTI) || mgp->adopted_rx_filter_bug) {
  2702. /* request to disable multicast filtering, so quit here */
  2703. return;
  2704. }
  2705. /* Flush the filters */
  2706. err = myri10ge_send_cmd(mgp, MXGEFW_LEAVE_ALL_MULTICAST_GROUPS,
  2707. &cmd, 1);
  2708. if (err != 0) {
  2709. netdev_err(dev, "Failed MXGEFW_LEAVE_ALL_MULTICAST_GROUPS, error status: %d\n",
  2710. err);
  2711. goto abort;
  2712. }
  2713. /* Walk the multicast list, and add each address */
  2714. netdev_for_each_mc_addr(ha, dev) {
  2715. memcpy(data, &ha->addr, 6);
  2716. cmd.data0 = ntohl(data[0]);
  2717. cmd.data1 = ntohl(data[1]);
  2718. err = myri10ge_send_cmd(mgp, MXGEFW_JOIN_MULTICAST_GROUP,
  2719. &cmd, 1);
  2720. if (err != 0) {
  2721. netdev_err(dev, "Failed MXGEFW_JOIN_MULTICAST_GROUP, error status:%d %pM\n",
  2722. err, ha->addr);
  2723. goto abort;
  2724. }
  2725. }
  2726. /* Enable multicast filtering */
  2727. err = myri10ge_send_cmd(mgp, MXGEFW_DISABLE_ALLMULTI, &cmd, 1);
  2728. if (err != 0) {
  2729. netdev_err(dev, "Failed MXGEFW_DISABLE_ALLMULTI, error status: %d\n",
  2730. err);
  2731. goto abort;
  2732. }
  2733. return;
  2734. abort:
  2735. return;
  2736. }
  2737. static int myri10ge_set_mac_address(struct net_device *dev, void *addr)
  2738. {
  2739. struct sockaddr *sa = addr;
  2740. struct myri10ge_priv *mgp = netdev_priv(dev);
  2741. int status;
  2742. if (!is_valid_ether_addr(sa->sa_data))
  2743. return -EADDRNOTAVAIL;
  2744. status = myri10ge_update_mac_address(mgp, sa->sa_data);
  2745. if (status != 0) {
  2746. netdev_err(dev, "changing mac address failed with %d\n",
  2747. status);
  2748. return status;
  2749. }
  2750. /* change the dev structure */
  2751. memcpy(dev->dev_addr, sa->sa_data, 6);
  2752. return 0;
  2753. }
  2754. static u32 myri10ge_fix_features(struct net_device *dev, u32 features)
  2755. {
  2756. if (!(features & NETIF_F_RXCSUM))
  2757. features &= ~NETIF_F_LRO;
  2758. return features;
  2759. }
  2760. static int myri10ge_change_mtu(struct net_device *dev, int new_mtu)
  2761. {
  2762. struct myri10ge_priv *mgp = netdev_priv(dev);
  2763. int error = 0;
  2764. if ((new_mtu < 68) || (ETH_HLEN + new_mtu > MYRI10GE_MAX_ETHER_MTU)) {
  2765. netdev_err(dev, "new mtu (%d) is not valid\n", new_mtu);
  2766. return -EINVAL;
  2767. }
  2768. netdev_info(dev, "changing mtu from %d to %d\n", dev->mtu, new_mtu);
  2769. if (mgp->running) {
  2770. /* if we change the mtu on an active device, we must
  2771. * reset the device so the firmware sees the change */
  2772. myri10ge_close(dev);
  2773. dev->mtu = new_mtu;
  2774. myri10ge_open(dev);
  2775. } else
  2776. dev->mtu = new_mtu;
  2777. return error;
  2778. }
  2779. /*
  2780. * Enable ECRC to align PCI-E Completion packets on an 8-byte boundary.
  2781. * Only do it if the bridge is a root port since we don't want to disturb
  2782. * any other device, except if forced with myri10ge_ecrc_enable > 1.
  2783. */
  2784. static void myri10ge_enable_ecrc(struct myri10ge_priv *mgp)
  2785. {
  2786. struct pci_dev *bridge = mgp->pdev->bus->self;
  2787. struct device *dev = &mgp->pdev->dev;
  2788. int cap;
  2789. unsigned err_cap;
  2790. u16 val;
  2791. u8 ext_type;
  2792. int ret;
  2793. if (!myri10ge_ecrc_enable || !bridge)
  2794. return;
  2795. /* check that the bridge is a root port */
  2796. cap = pci_pcie_cap(bridge);
  2797. pci_read_config_word(bridge, cap + PCI_CAP_FLAGS, &val);
  2798. ext_type = (val & PCI_EXP_FLAGS_TYPE) >> 4;
  2799. if (ext_type != PCI_EXP_TYPE_ROOT_PORT) {
  2800. if (myri10ge_ecrc_enable > 1) {
  2801. struct pci_dev *prev_bridge, *old_bridge = bridge;
  2802. /* Walk the hierarchy up to the root port
  2803. * where ECRC has to be enabled */
  2804. do {
  2805. prev_bridge = bridge;
  2806. bridge = bridge->bus->self;
  2807. if (!bridge || prev_bridge == bridge) {
  2808. dev_err(dev,
  2809. "Failed to find root port"
  2810. " to force ECRC\n");
  2811. return;
  2812. }
  2813. cap = pci_pcie_cap(bridge);
  2814. pci_read_config_word(bridge,
  2815. cap + PCI_CAP_FLAGS, &val);
  2816. ext_type = (val & PCI_EXP_FLAGS_TYPE) >> 4;
  2817. } while (ext_type != PCI_EXP_TYPE_ROOT_PORT);
  2818. dev_info(dev,
  2819. "Forcing ECRC on non-root port %s"
  2820. " (enabling on root port %s)\n",
  2821. pci_name(old_bridge), pci_name(bridge));
  2822. } else {
  2823. dev_err(dev,
  2824. "Not enabling ECRC on non-root port %s\n",
  2825. pci_name(bridge));
  2826. return;
  2827. }
  2828. }
  2829. cap = pci_find_ext_capability(bridge, PCI_EXT_CAP_ID_ERR);
  2830. if (!cap)
  2831. return;
  2832. ret = pci_read_config_dword(bridge, cap + PCI_ERR_CAP, &err_cap);
  2833. if (ret) {
  2834. dev_err(dev, "failed reading ext-conf-space of %s\n",
  2835. pci_name(bridge));
  2836. dev_err(dev, "\t pci=nommconf in use? "
  2837. "or buggy/incomplete/absent ACPI MCFG attr?\n");
  2838. return;
  2839. }
  2840. if (!(err_cap & PCI_ERR_CAP_ECRC_GENC))
  2841. return;
  2842. err_cap |= PCI_ERR_CAP_ECRC_GENE;
  2843. pci_write_config_dword(bridge, cap + PCI_ERR_CAP, err_cap);
  2844. dev_info(dev, "Enabled ECRC on upstream bridge %s\n", pci_name(bridge));
  2845. }
  2846. /*
  2847. * The Lanai Z8E PCI-E interface achieves higher Read-DMA throughput
  2848. * when the PCI-E Completion packets are aligned on an 8-byte
  2849. * boundary. Some PCI-E chip sets always align Completion packets; on
  2850. * the ones that do not, the alignment can be enforced by enabling
  2851. * ECRC generation (if supported).
  2852. *
  2853. * When PCI-E Completion packets are not aligned, it is actually more
  2854. * efficient to limit Read-DMA transactions to 2KB, rather than 4KB.
  2855. *
  2856. * If the driver can neither enable ECRC nor verify that it has
  2857. * already been enabled, then it must use a firmware image which works
  2858. * around unaligned completion packets (myri10ge_rss_ethp_z8e.dat), and it
  2859. * should also ensure that it never gives the device a Read-DMA which is
  2860. * larger than 2KB by setting the tx_boundary to 2KB. If ECRC is
  2861. * enabled, then the driver should use the aligned (myri10ge_rss_eth_z8e.dat)
  2862. * firmware image, and set tx_boundary to 4KB.
  2863. */
  2864. static void myri10ge_firmware_probe(struct myri10ge_priv *mgp)
  2865. {
  2866. struct pci_dev *pdev = mgp->pdev;
  2867. struct device *dev = &pdev->dev;
  2868. int status;
  2869. mgp->tx_boundary = 4096;
  2870. /*
  2871. * Verify the max read request size was set to 4KB
  2872. * before trying the test with 4KB.
  2873. */
  2874. status = pcie_get_readrq(pdev);
  2875. if (status < 0) {
  2876. dev_err(dev, "Couldn't read max read req size: %d\n", status);
  2877. goto abort;
  2878. }
  2879. if (status != 4096) {
  2880. dev_warn(dev, "Max Read Request size != 4096 (%d)\n", status);
  2881. mgp->tx_boundary = 2048;
  2882. }
  2883. /*
  2884. * load the optimized firmware (which assumes aligned PCIe
  2885. * completions) in order to see if it works on this host.
  2886. */
  2887. set_fw_name(mgp, myri10ge_fw_aligned, false);
  2888. status = myri10ge_load_firmware(mgp, 1);
  2889. if (status != 0) {
  2890. goto abort;
  2891. }
  2892. /*
  2893. * Enable ECRC if possible
  2894. */
  2895. myri10ge_enable_ecrc(mgp);
  2896. /*
  2897. * Run a DMA test which watches for unaligned completions and
  2898. * aborts on the first one seen.
  2899. */
  2900. status = myri10ge_dma_test(mgp, MXGEFW_CMD_UNALIGNED_TEST);
  2901. if (status == 0)
  2902. return; /* keep the aligned firmware */
  2903. if (status != -E2BIG)
  2904. dev_warn(dev, "DMA test failed: %d\n", status);
  2905. if (status == -ENOSYS)
  2906. dev_warn(dev, "Falling back to ethp! "
  2907. "Please install up to date fw\n");
  2908. abort:
  2909. /* fall back to using the unaligned firmware */
  2910. mgp->tx_boundary = 2048;
  2911. set_fw_name(mgp, myri10ge_fw_unaligned, false);
  2912. }
  2913. static void myri10ge_select_firmware(struct myri10ge_priv *mgp)
  2914. {
  2915. int overridden = 0;
  2916. if (myri10ge_force_firmware == 0) {
  2917. int link_width, exp_cap;
  2918. u16 lnk;
  2919. exp_cap = pci_pcie_cap(mgp->pdev);
  2920. pci_read_config_word(mgp->pdev, exp_cap + PCI_EXP_LNKSTA, &lnk);
  2921. link_width = (lnk >> 4) & 0x3f;
  2922. /* Check to see if Link is less than 8 or if the
  2923. * upstream bridge is known to provide aligned
  2924. * completions */
  2925. if (link_width < 8) {
  2926. dev_info(&mgp->pdev->dev, "PCIE x%d Link\n",
  2927. link_width);
  2928. mgp->tx_boundary = 4096;
  2929. set_fw_name(mgp, myri10ge_fw_aligned, false);
  2930. } else {
  2931. myri10ge_firmware_probe(mgp);
  2932. }
  2933. } else {
  2934. if (myri10ge_force_firmware == 1) {
  2935. dev_info(&mgp->pdev->dev,
  2936. "Assuming aligned completions (forced)\n");
  2937. mgp->tx_boundary = 4096;
  2938. set_fw_name(mgp, myri10ge_fw_aligned, false);
  2939. } else {
  2940. dev_info(&mgp->pdev->dev,
  2941. "Assuming unaligned completions (forced)\n");
  2942. mgp->tx_boundary = 2048;
  2943. set_fw_name(mgp, myri10ge_fw_unaligned, false);
  2944. }
  2945. }
  2946. kparam_block_sysfs_write(myri10ge_fw_name);
  2947. if (myri10ge_fw_name != NULL) {
  2948. char *fw_name = kstrdup(myri10ge_fw_name, GFP_KERNEL);
  2949. if (fw_name) {
  2950. overridden = 1;
  2951. set_fw_name(mgp, fw_name, true);
  2952. }
  2953. }
  2954. kparam_unblock_sysfs_write(myri10ge_fw_name);
  2955. if (mgp->board_number < MYRI10GE_MAX_BOARDS &&
  2956. myri10ge_fw_names[mgp->board_number] != NULL &&
  2957. strlen(myri10ge_fw_names[mgp->board_number])) {
  2958. set_fw_name(mgp, myri10ge_fw_names[mgp->board_number], false);
  2959. overridden = 1;
  2960. }
  2961. if (overridden)
  2962. dev_info(&mgp->pdev->dev, "overriding firmware to %s\n",
  2963. mgp->fw_name);
  2964. }
  2965. static void myri10ge_mask_surprise_down(struct pci_dev *pdev)
  2966. {
  2967. struct pci_dev *bridge = pdev->bus->self;
  2968. int cap;
  2969. u32 mask;
  2970. if (bridge == NULL)
  2971. return;
  2972. cap = pci_find_ext_capability(bridge, PCI_EXT_CAP_ID_ERR);
  2973. if (cap) {
  2974. /* a sram parity error can cause a surprise link
  2975. * down; since we expect and can recover from sram
  2976. * parity errors, mask surprise link down events */
  2977. pci_read_config_dword(bridge, cap + PCI_ERR_UNCOR_MASK, &mask);
  2978. mask |= 0x20;
  2979. pci_write_config_dword(bridge, cap + PCI_ERR_UNCOR_MASK, mask);
  2980. }
  2981. }
  2982. #ifdef CONFIG_PM
  2983. static int myri10ge_suspend(struct pci_dev *pdev, pm_message_t state)
  2984. {
  2985. struct myri10ge_priv *mgp;
  2986. struct net_device *netdev;
  2987. mgp = pci_get_drvdata(pdev);
  2988. if (mgp == NULL)
  2989. return -EINVAL;
  2990. netdev = mgp->dev;
  2991. netif_device_detach(netdev);
  2992. if (netif_running(netdev)) {
  2993. netdev_info(netdev, "closing\n");
  2994. rtnl_lock();
  2995. myri10ge_close(netdev);
  2996. rtnl_unlock();
  2997. }
  2998. myri10ge_dummy_rdma(mgp, 0);
  2999. pci_save_state(pdev);
  3000. pci_disable_device(pdev);
  3001. return pci_set_power_state(pdev, pci_choose_state(pdev, state));
  3002. }
  3003. static int myri10ge_resume(struct pci_dev *pdev)
  3004. {
  3005. struct myri10ge_priv *mgp;
  3006. struct net_device *netdev;
  3007. int status;
  3008. u16 vendor;
  3009. mgp = pci_get_drvdata(pdev);
  3010. if (mgp == NULL)
  3011. return -EINVAL;
  3012. netdev = mgp->dev;
  3013. pci_set_power_state(pdev, 0); /* zeros conf space as a side effect */
  3014. msleep(5); /* give card time to respond */
  3015. pci_read_config_word(mgp->pdev, PCI_VENDOR_ID, &vendor);
  3016. if (vendor == 0xffff) {
  3017. netdev_err(mgp->dev, "device disappeared!\n");
  3018. return -EIO;
  3019. }
  3020. pci_restore_state(pdev);
  3021. status = pci_enable_device(pdev);
  3022. if (status) {
  3023. dev_err(&pdev->dev, "failed to enable device\n");
  3024. return status;
  3025. }
  3026. pci_set_master(pdev);
  3027. myri10ge_reset(mgp);
  3028. myri10ge_dummy_rdma(mgp, 1);
  3029. /* Save configuration space to be restored if the
  3030. * nic resets due to a parity error */
  3031. pci_save_state(pdev);
  3032. if (netif_running(netdev)) {
  3033. rtnl_lock();
  3034. status = myri10ge_open(netdev);
  3035. rtnl_unlock();
  3036. if (status != 0)
  3037. goto abort_with_enabled;
  3038. }
  3039. netif_device_attach(netdev);
  3040. return 0;
  3041. abort_with_enabled:
  3042. pci_disable_device(pdev);
  3043. return -EIO;
  3044. }
  3045. #endif /* CONFIG_PM */
  3046. static u32 myri10ge_read_reboot(struct myri10ge_priv *mgp)
  3047. {
  3048. struct pci_dev *pdev = mgp->pdev;
  3049. int vs = mgp->vendor_specific_offset;
  3050. u32 reboot;
  3051. /*enter read32 mode */
  3052. pci_write_config_byte(pdev, vs + 0x10, 0x3);
  3053. /*read REBOOT_STATUS (0xfffffff0) */
  3054. pci_write_config_dword(pdev, vs + 0x18, 0xfffffff0);
  3055. pci_read_config_dword(pdev, vs + 0x14, &reboot);
  3056. return reboot;
  3057. }
  3058. static void
  3059. myri10ge_check_slice(struct myri10ge_slice_state *ss, int *reset_needed,
  3060. int *busy_slice_cnt, u32 rx_pause_cnt)
  3061. {
  3062. struct myri10ge_priv *mgp = ss->mgp;
  3063. int slice = ss - mgp->ss;
  3064. if (ss->tx.req != ss->tx.done &&
  3065. ss->tx.done == ss->watchdog_tx_done &&
  3066. ss->watchdog_tx_req != ss->watchdog_tx_done) {
  3067. /* nic seems like it might be stuck.. */
  3068. if (rx_pause_cnt != mgp->watchdog_pause) {
  3069. if (net_ratelimit())
  3070. netdev_warn(mgp->dev, "slice %d: TX paused, "
  3071. "check link partner\n", slice);
  3072. } else {
  3073. netdev_warn(mgp->dev,
  3074. "slice %d: TX stuck %d %d %d %d %d %d\n",
  3075. slice, ss->tx.queue_active, ss->tx.req,
  3076. ss->tx.done, ss->tx.pkt_start,
  3077. ss->tx.pkt_done,
  3078. (int)ntohl(mgp->ss[slice].fw_stats->
  3079. send_done_count));
  3080. *reset_needed = 1;
  3081. ss->stuck = 1;
  3082. }
  3083. }
  3084. if (ss->watchdog_tx_done != ss->tx.done ||
  3085. ss->watchdog_rx_done != ss->rx_done.cnt) {
  3086. *busy_slice_cnt += 1;
  3087. }
  3088. ss->watchdog_tx_done = ss->tx.done;
  3089. ss->watchdog_tx_req = ss->tx.req;
  3090. ss->watchdog_rx_done = ss->rx_done.cnt;
  3091. }
  3092. /*
  3093. * This watchdog is used to check whether the board has suffered
  3094. * from a parity error and needs to be recovered.
  3095. */
  3096. static void myri10ge_watchdog(struct work_struct *work)
  3097. {
  3098. struct myri10ge_priv *mgp =
  3099. container_of(work, struct myri10ge_priv, watchdog_work);
  3100. struct myri10ge_slice_state *ss;
  3101. u32 reboot, rx_pause_cnt;
  3102. int status, rebooted;
  3103. int i;
  3104. int reset_needed = 0;
  3105. int busy_slice_cnt = 0;
  3106. u16 cmd, vendor;
  3107. mgp->watchdog_resets++;
  3108. pci_read_config_word(mgp->pdev, PCI_COMMAND, &cmd);
  3109. rebooted = 0;
  3110. if ((cmd & PCI_COMMAND_MASTER) == 0) {
  3111. /* Bus master DMA disabled? Check to see
  3112. * if the card rebooted due to a parity error
  3113. * For now, just report it */
  3114. reboot = myri10ge_read_reboot(mgp);
  3115. netdev_err(mgp->dev, "NIC rebooted (0x%x),%s resetting\n",
  3116. reboot, myri10ge_reset_recover ? "" : " not");
  3117. if (myri10ge_reset_recover == 0)
  3118. return;
  3119. rtnl_lock();
  3120. mgp->rebooted = 1;
  3121. rebooted = 1;
  3122. myri10ge_close(mgp->dev);
  3123. myri10ge_reset_recover--;
  3124. mgp->rebooted = 0;
  3125. /*
  3126. * A rebooted nic will come back with config space as
  3127. * it was after power was applied to PCIe bus.
  3128. * Attempt to restore config space which was saved
  3129. * when the driver was loaded, or the last time the
  3130. * nic was resumed from power saving mode.
  3131. */
  3132. pci_restore_state(mgp->pdev);
  3133. /* save state again for accounting reasons */
  3134. pci_save_state(mgp->pdev);
  3135. } else {
  3136. /* if we get back -1's from our slot, perhaps somebody
  3137. * powered off our card. Don't try to reset it in
  3138. * this case */
  3139. if (cmd == 0xffff) {
  3140. pci_read_config_word(mgp->pdev, PCI_VENDOR_ID, &vendor);
  3141. if (vendor == 0xffff) {
  3142. netdev_err(mgp->dev, "device disappeared!\n");
  3143. return;
  3144. }
  3145. }
  3146. /* Perhaps it is a software error. See if stuck slice
  3147. * has recovered, reset if not */
  3148. rx_pause_cnt = ntohl(mgp->ss[0].fw_stats->dropped_pause);
  3149. for (i = 0; i < mgp->num_slices; i++) {
  3150. ss = mgp->ss;
  3151. if (ss->stuck) {
  3152. myri10ge_check_slice(ss, &reset_needed,
  3153. &busy_slice_cnt,
  3154. rx_pause_cnt);
  3155. ss->stuck = 0;
  3156. }
  3157. }
  3158. if (!reset_needed) {
  3159. netdev_dbg(mgp->dev, "not resetting\n");
  3160. return;
  3161. }
  3162. netdev_err(mgp->dev, "device timeout, resetting\n");
  3163. }
  3164. if (!rebooted) {
  3165. rtnl_lock();
  3166. myri10ge_close(mgp->dev);
  3167. }
  3168. status = myri10ge_load_firmware(mgp, 1);
  3169. if (status != 0)
  3170. netdev_err(mgp->dev, "failed to load firmware\n");
  3171. else
  3172. myri10ge_open(mgp->dev);
  3173. rtnl_unlock();
  3174. }
  3175. /*
  3176. * We use our own timer routine rather than relying upon
  3177. * netdev->tx_timeout because we have a very large hardware transmit
  3178. * queue. Due to the large queue, the netdev->tx_timeout function
  3179. * cannot detect a NIC with a parity error in a timely fashion if the
  3180. * NIC is lightly loaded.
  3181. */
  3182. static void myri10ge_watchdog_timer(unsigned long arg)
  3183. {
  3184. struct myri10ge_priv *mgp;
  3185. struct myri10ge_slice_state *ss;
  3186. int i, reset_needed, busy_slice_cnt;
  3187. u32 rx_pause_cnt;
  3188. u16 cmd;
  3189. mgp = (struct myri10ge_priv *)arg;
  3190. rx_pause_cnt = ntohl(mgp->ss[0].fw_stats->dropped_pause);
  3191. busy_slice_cnt = 0;
  3192. for (i = 0, reset_needed = 0;
  3193. i < mgp->num_slices && reset_needed == 0; ++i) {
  3194. ss = &mgp->ss[i];
  3195. if (ss->rx_small.watchdog_needed) {
  3196. myri10ge_alloc_rx_pages(mgp, &ss->rx_small,
  3197. mgp->small_bytes + MXGEFW_PAD,
  3198. 1);
  3199. if (ss->rx_small.fill_cnt - ss->rx_small.cnt >=
  3200. myri10ge_fill_thresh)
  3201. ss->rx_small.watchdog_needed = 0;
  3202. }
  3203. if (ss->rx_big.watchdog_needed) {
  3204. myri10ge_alloc_rx_pages(mgp, &ss->rx_big,
  3205. mgp->big_bytes, 1);
  3206. if (ss->rx_big.fill_cnt - ss->rx_big.cnt >=
  3207. myri10ge_fill_thresh)
  3208. ss->rx_big.watchdog_needed = 0;
  3209. }
  3210. myri10ge_check_slice(ss, &reset_needed, &busy_slice_cnt,
  3211. rx_pause_cnt);
  3212. }
  3213. /* if we've sent or received no traffic, poll the NIC to
  3214. * ensure it is still there. Otherwise, we risk not noticing
  3215. * an error in a timely fashion */
  3216. if (busy_slice_cnt == 0) {
  3217. pci_read_config_word(mgp->pdev, PCI_COMMAND, &cmd);
  3218. if ((cmd & PCI_COMMAND_MASTER) == 0) {
  3219. reset_needed = 1;
  3220. }
  3221. }
  3222. mgp->watchdog_pause = rx_pause_cnt;
  3223. if (reset_needed) {
  3224. schedule_work(&mgp->watchdog_work);
  3225. } else {
  3226. /* rearm timer */
  3227. mod_timer(&mgp->watchdog_timer,
  3228. jiffies + myri10ge_watchdog_timeout * HZ);
  3229. }
  3230. }
  3231. static void myri10ge_free_slices(struct myri10ge_priv *mgp)
  3232. {
  3233. struct myri10ge_slice_state *ss;
  3234. struct pci_dev *pdev = mgp->pdev;
  3235. size_t bytes;
  3236. int i;
  3237. if (mgp->ss == NULL)
  3238. return;
  3239. for (i = 0; i < mgp->num_slices; i++) {
  3240. ss = &mgp->ss[i];
  3241. if (ss->rx_done.entry != NULL) {
  3242. bytes = mgp->max_intr_slots *
  3243. sizeof(*ss->rx_done.entry);
  3244. dma_free_coherent(&pdev->dev, bytes,
  3245. ss->rx_done.entry, ss->rx_done.bus);
  3246. ss->rx_done.entry = NULL;
  3247. }
  3248. if (ss->fw_stats != NULL) {
  3249. bytes = sizeof(*ss->fw_stats);
  3250. dma_free_coherent(&pdev->dev, bytes,
  3251. ss->fw_stats, ss->fw_stats_bus);
  3252. ss->fw_stats = NULL;
  3253. }
  3254. netif_napi_del(&ss->napi);
  3255. }
  3256. kfree(mgp->ss);
  3257. mgp->ss = NULL;
  3258. }
  3259. static int myri10ge_alloc_slices(struct myri10ge_priv *mgp)
  3260. {
  3261. struct myri10ge_slice_state *ss;
  3262. struct pci_dev *pdev = mgp->pdev;
  3263. size_t bytes;
  3264. int i;
  3265. bytes = sizeof(*mgp->ss) * mgp->num_slices;
  3266. mgp->ss = kzalloc(bytes, GFP_KERNEL);
  3267. if (mgp->ss == NULL) {
  3268. return -ENOMEM;
  3269. }
  3270. for (i = 0; i < mgp->num_slices; i++) {
  3271. ss = &mgp->ss[i];
  3272. bytes = mgp->max_intr_slots * sizeof(*ss->rx_done.entry);
  3273. ss->rx_done.entry = dma_alloc_coherent(&pdev->dev, bytes,
  3274. &ss->rx_done.bus,
  3275. GFP_KERNEL);
  3276. if (ss->rx_done.entry == NULL)
  3277. goto abort;
  3278. memset(ss->rx_done.entry, 0, bytes);
  3279. bytes = sizeof(*ss->fw_stats);
  3280. ss->fw_stats = dma_alloc_coherent(&pdev->dev, bytes,
  3281. &ss->fw_stats_bus,
  3282. GFP_KERNEL);
  3283. if (ss->fw_stats == NULL)
  3284. goto abort;
  3285. ss->mgp = mgp;
  3286. ss->dev = mgp->dev;
  3287. netif_napi_add(ss->dev, &ss->napi, myri10ge_poll,
  3288. myri10ge_napi_weight);
  3289. }
  3290. return 0;
  3291. abort:
  3292. myri10ge_free_slices(mgp);
  3293. return -ENOMEM;
  3294. }
  3295. /*
  3296. * This function determines the number of slices supported.
  3297. * The number slices is the minimum of the number of CPUS,
  3298. * the number of MSI-X irqs supported, the number of slices
  3299. * supported by the firmware
  3300. */
  3301. static void myri10ge_probe_slices(struct myri10ge_priv *mgp)
  3302. {
  3303. struct myri10ge_cmd cmd;
  3304. struct pci_dev *pdev = mgp->pdev;
  3305. char *old_fw;
  3306. bool old_allocated;
  3307. int i, status, ncpus, msix_cap;
  3308. mgp->num_slices = 1;
  3309. msix_cap = pci_find_capability(pdev, PCI_CAP_ID_MSIX);
  3310. ncpus = num_online_cpus();
  3311. if (myri10ge_max_slices == 1 || msix_cap == 0 ||
  3312. (myri10ge_max_slices == -1 && ncpus < 2))
  3313. return;
  3314. /* try to load the slice aware rss firmware */
  3315. old_fw = mgp->fw_name;
  3316. old_allocated = mgp->fw_name_allocated;
  3317. /* don't free old_fw if we override it. */
  3318. mgp->fw_name_allocated = false;
  3319. if (myri10ge_fw_name != NULL) {
  3320. dev_info(&mgp->pdev->dev, "overriding rss firmware to %s\n",
  3321. myri10ge_fw_name);
  3322. set_fw_name(mgp, myri10ge_fw_name, false);
  3323. } else if (old_fw == myri10ge_fw_aligned)
  3324. set_fw_name(mgp, myri10ge_fw_rss_aligned, false);
  3325. else
  3326. set_fw_name(mgp, myri10ge_fw_rss_unaligned, false);
  3327. status = myri10ge_load_firmware(mgp, 0);
  3328. if (status != 0) {
  3329. dev_info(&pdev->dev, "Rss firmware not found\n");
  3330. if (old_allocated)
  3331. kfree(old_fw);
  3332. return;
  3333. }
  3334. /* hit the board with a reset to ensure it is alive */
  3335. memset(&cmd, 0, sizeof(cmd));
  3336. status = myri10ge_send_cmd(mgp, MXGEFW_CMD_RESET, &cmd, 0);
  3337. if (status != 0) {
  3338. dev_err(&mgp->pdev->dev, "failed reset\n");
  3339. goto abort_with_fw;
  3340. }
  3341. mgp->max_intr_slots = cmd.data0 / sizeof(struct mcp_slot);
  3342. /* tell it the size of the interrupt queues */
  3343. cmd.data0 = mgp->max_intr_slots * sizeof(struct mcp_slot);
  3344. status = myri10ge_send_cmd(mgp, MXGEFW_CMD_SET_INTRQ_SIZE, &cmd, 0);
  3345. if (status != 0) {
  3346. dev_err(&mgp->pdev->dev, "failed MXGEFW_CMD_SET_INTRQ_SIZE\n");
  3347. goto abort_with_fw;
  3348. }
  3349. /* ask the maximum number of slices it supports */
  3350. status = myri10ge_send_cmd(mgp, MXGEFW_CMD_GET_MAX_RSS_QUEUES, &cmd, 0);
  3351. if (status != 0)
  3352. goto abort_with_fw;
  3353. else
  3354. mgp->num_slices = cmd.data0;
  3355. /* Only allow multiple slices if MSI-X is usable */
  3356. if (!myri10ge_msi) {
  3357. goto abort_with_fw;
  3358. }
  3359. /* if the admin did not specify a limit to how many
  3360. * slices we should use, cap it automatically to the
  3361. * number of CPUs currently online */
  3362. if (myri10ge_max_slices == -1)
  3363. myri10ge_max_slices = ncpus;
  3364. if (mgp->num_slices > myri10ge_max_slices)
  3365. mgp->num_slices = myri10ge_max_slices;
  3366. /* Now try to allocate as many MSI-X vectors as we have
  3367. * slices. We give up on MSI-X if we can only get a single
  3368. * vector. */
  3369. mgp->msix_vectors = kcalloc(mgp->num_slices, sizeof(*mgp->msix_vectors),
  3370. GFP_KERNEL);
  3371. if (mgp->msix_vectors == NULL)
  3372. goto disable_msix;
  3373. for (i = 0; i < mgp->num_slices; i++) {
  3374. mgp->msix_vectors[i].entry = i;
  3375. }
  3376. while (mgp->num_slices > 1) {
  3377. /* make sure it is a power of two */
  3378. while (!is_power_of_2(mgp->num_slices))
  3379. mgp->num_slices--;
  3380. if (mgp->num_slices == 1)
  3381. goto disable_msix;
  3382. status = pci_enable_msix(pdev, mgp->msix_vectors,
  3383. mgp->num_slices);
  3384. if (status == 0) {
  3385. pci_disable_msix(pdev);
  3386. if (old_allocated)
  3387. kfree(old_fw);
  3388. return;
  3389. }
  3390. if (status > 0)
  3391. mgp->num_slices = status;
  3392. else
  3393. goto disable_msix;
  3394. }
  3395. disable_msix:
  3396. if (mgp->msix_vectors != NULL) {
  3397. kfree(mgp->msix_vectors);
  3398. mgp->msix_vectors = NULL;
  3399. }
  3400. abort_with_fw:
  3401. mgp->num_slices = 1;
  3402. set_fw_name(mgp, old_fw, old_allocated);
  3403. myri10ge_load_firmware(mgp, 0);
  3404. }
  3405. static const struct net_device_ops myri10ge_netdev_ops = {
  3406. .ndo_open = myri10ge_open,
  3407. .ndo_stop = myri10ge_close,
  3408. .ndo_start_xmit = myri10ge_xmit,
  3409. .ndo_get_stats64 = myri10ge_get_stats,
  3410. .ndo_validate_addr = eth_validate_addr,
  3411. .ndo_change_mtu = myri10ge_change_mtu,
  3412. .ndo_fix_features = myri10ge_fix_features,
  3413. .ndo_set_multicast_list = myri10ge_set_multicast_list,
  3414. .ndo_set_mac_address = myri10ge_set_mac_address,
  3415. };
  3416. static int myri10ge_probe(struct pci_dev *pdev, const struct pci_device_id *ent)
  3417. {
  3418. struct net_device *netdev;
  3419. struct myri10ge_priv *mgp;
  3420. struct device *dev = &pdev->dev;
  3421. int i;
  3422. int status = -ENXIO;
  3423. int dac_enabled;
  3424. unsigned hdr_offset, ss_offset;
  3425. static int board_number;
  3426. netdev = alloc_etherdev_mq(sizeof(*mgp), MYRI10GE_MAX_SLICES);
  3427. if (netdev == NULL) {
  3428. dev_err(dev, "Could not allocate ethernet device\n");
  3429. return -ENOMEM;
  3430. }
  3431. SET_NETDEV_DEV(netdev, &pdev->dev);
  3432. mgp = netdev_priv(netdev);
  3433. mgp->dev = netdev;
  3434. mgp->pdev = pdev;
  3435. mgp->pause = myri10ge_flow_control;
  3436. mgp->intr_coal_delay = myri10ge_intr_coal_delay;
  3437. mgp->msg_enable = netif_msg_init(myri10ge_debug, MYRI10GE_MSG_DEFAULT);
  3438. mgp->board_number = board_number;
  3439. init_waitqueue_head(&mgp->down_wq);
  3440. if (pci_enable_device(pdev)) {
  3441. dev_err(&pdev->dev, "pci_enable_device call failed\n");
  3442. status = -ENODEV;
  3443. goto abort_with_netdev;
  3444. }
  3445. /* Find the vendor-specific cap so we can check
  3446. * the reboot register later on */
  3447. mgp->vendor_specific_offset
  3448. = pci_find_capability(pdev, PCI_CAP_ID_VNDR);
  3449. /* Set our max read request to 4KB */
  3450. status = pcie_set_readrq(pdev, 4096);
  3451. if (status != 0) {
  3452. dev_err(&pdev->dev, "Error %d writing PCI_EXP_DEVCTL\n",
  3453. status);
  3454. goto abort_with_enabled;
  3455. }
  3456. myri10ge_mask_surprise_down(pdev);
  3457. pci_set_master(pdev);
  3458. dac_enabled = 1;
  3459. status = pci_set_dma_mask(pdev, DMA_BIT_MASK(64));
  3460. if (status != 0) {
  3461. dac_enabled = 0;
  3462. dev_err(&pdev->dev,
  3463. "64-bit pci address mask was refused, "
  3464. "trying 32-bit\n");
  3465. status = pci_set_dma_mask(pdev, DMA_BIT_MASK(32));
  3466. }
  3467. if (status != 0) {
  3468. dev_err(&pdev->dev, "Error %d setting DMA mask\n", status);
  3469. goto abort_with_enabled;
  3470. }
  3471. (void)pci_set_consistent_dma_mask(pdev, DMA_BIT_MASK(64));
  3472. mgp->cmd = dma_alloc_coherent(&pdev->dev, sizeof(*mgp->cmd),
  3473. &mgp->cmd_bus, GFP_KERNEL);
  3474. if (mgp->cmd == NULL)
  3475. goto abort_with_enabled;
  3476. mgp->board_span = pci_resource_len(pdev, 0);
  3477. mgp->iomem_base = pci_resource_start(pdev, 0);
  3478. mgp->mtrr = -1;
  3479. mgp->wc_enabled = 0;
  3480. #ifdef CONFIG_MTRR
  3481. mgp->mtrr = mtrr_add(mgp->iomem_base, mgp->board_span,
  3482. MTRR_TYPE_WRCOMB, 1);
  3483. if (mgp->mtrr >= 0)
  3484. mgp->wc_enabled = 1;
  3485. #endif
  3486. mgp->sram = ioremap_wc(mgp->iomem_base, mgp->board_span);
  3487. if (mgp->sram == NULL) {
  3488. dev_err(&pdev->dev, "ioremap failed for %ld bytes at 0x%lx\n",
  3489. mgp->board_span, mgp->iomem_base);
  3490. status = -ENXIO;
  3491. goto abort_with_mtrr;
  3492. }
  3493. hdr_offset =
  3494. ntohl(__raw_readl(mgp->sram + MCP_HEADER_PTR_OFFSET)) & 0xffffc;
  3495. ss_offset = hdr_offset + offsetof(struct mcp_gen_header, string_specs);
  3496. mgp->sram_size = ntohl(__raw_readl(mgp->sram + ss_offset));
  3497. if (mgp->sram_size > mgp->board_span ||
  3498. mgp->sram_size <= MYRI10GE_FW_OFFSET) {
  3499. dev_err(&pdev->dev,
  3500. "invalid sram_size %dB or board span %ldB\n",
  3501. mgp->sram_size, mgp->board_span);
  3502. goto abort_with_ioremap;
  3503. }
  3504. memcpy_fromio(mgp->eeprom_strings,
  3505. mgp->sram + mgp->sram_size, MYRI10GE_EEPROM_STRINGS_SIZE);
  3506. memset(mgp->eeprom_strings + MYRI10GE_EEPROM_STRINGS_SIZE - 2, 0, 2);
  3507. status = myri10ge_read_mac_addr(mgp);
  3508. if (status)
  3509. goto abort_with_ioremap;
  3510. for (i = 0; i < ETH_ALEN; i++)
  3511. netdev->dev_addr[i] = mgp->mac_addr[i];
  3512. myri10ge_select_firmware(mgp);
  3513. status = myri10ge_load_firmware(mgp, 1);
  3514. if (status != 0) {
  3515. dev_err(&pdev->dev, "failed to load firmware\n");
  3516. goto abort_with_ioremap;
  3517. }
  3518. myri10ge_probe_slices(mgp);
  3519. status = myri10ge_alloc_slices(mgp);
  3520. if (status != 0) {
  3521. dev_err(&pdev->dev, "failed to alloc slice state\n");
  3522. goto abort_with_firmware;
  3523. }
  3524. netif_set_real_num_tx_queues(netdev, mgp->num_slices);
  3525. netif_set_real_num_rx_queues(netdev, mgp->num_slices);
  3526. status = myri10ge_reset(mgp);
  3527. if (status != 0) {
  3528. dev_err(&pdev->dev, "failed reset\n");
  3529. goto abort_with_slices;
  3530. }
  3531. #ifdef CONFIG_MYRI10GE_DCA
  3532. myri10ge_setup_dca(mgp);
  3533. #endif
  3534. pci_set_drvdata(pdev, mgp);
  3535. if ((myri10ge_initial_mtu + ETH_HLEN) > MYRI10GE_MAX_ETHER_MTU)
  3536. myri10ge_initial_mtu = MYRI10GE_MAX_ETHER_MTU - ETH_HLEN;
  3537. if ((myri10ge_initial_mtu + ETH_HLEN) < 68)
  3538. myri10ge_initial_mtu = 68;
  3539. netdev->netdev_ops = &myri10ge_netdev_ops;
  3540. netdev->mtu = myri10ge_initial_mtu;
  3541. netdev->base_addr = mgp->iomem_base;
  3542. netdev->hw_features = mgp->features | NETIF_F_LRO | NETIF_F_RXCSUM;
  3543. netdev->features = netdev->hw_features;
  3544. if (dac_enabled)
  3545. netdev->features |= NETIF_F_HIGHDMA;
  3546. netdev->vlan_features |= mgp->features;
  3547. if (mgp->fw_ver_tiny < 37)
  3548. netdev->vlan_features &= ~NETIF_F_TSO6;
  3549. if (mgp->fw_ver_tiny < 32)
  3550. netdev->vlan_features &= ~NETIF_F_TSO;
  3551. /* make sure we can get an irq, and that MSI can be
  3552. * setup (if available). Also ensure netdev->irq
  3553. * is set to correct value if MSI is enabled */
  3554. status = myri10ge_request_irq(mgp);
  3555. if (status != 0)
  3556. goto abort_with_firmware;
  3557. netdev->irq = pdev->irq;
  3558. myri10ge_free_irq(mgp);
  3559. /* Save configuration space to be restored if the
  3560. * nic resets due to a parity error */
  3561. pci_save_state(pdev);
  3562. /* Setup the watchdog timer */
  3563. setup_timer(&mgp->watchdog_timer, myri10ge_watchdog_timer,
  3564. (unsigned long)mgp);
  3565. SET_ETHTOOL_OPS(netdev, &myri10ge_ethtool_ops);
  3566. INIT_WORK(&mgp->watchdog_work, myri10ge_watchdog);
  3567. status = register_netdev(netdev);
  3568. if (status != 0) {
  3569. dev_err(&pdev->dev, "register_netdev failed: %d\n", status);
  3570. goto abort_with_state;
  3571. }
  3572. if (mgp->msix_enabled)
  3573. dev_info(dev, "%d MSI-X IRQs, tx bndry %d, fw %s, WC %s\n",
  3574. mgp->num_slices, mgp->tx_boundary, mgp->fw_name,
  3575. (mgp->wc_enabled ? "Enabled" : "Disabled"));
  3576. else
  3577. dev_info(dev, "%s IRQ %d, tx bndry %d, fw %s, WC %s\n",
  3578. mgp->msi_enabled ? "MSI" : "xPIC",
  3579. netdev->irq, mgp->tx_boundary, mgp->fw_name,
  3580. (mgp->wc_enabled ? "Enabled" : "Disabled"));
  3581. board_number++;
  3582. return 0;
  3583. abort_with_state:
  3584. pci_restore_state(pdev);
  3585. abort_with_slices:
  3586. myri10ge_free_slices(mgp);
  3587. abort_with_firmware:
  3588. myri10ge_dummy_rdma(mgp, 0);
  3589. abort_with_ioremap:
  3590. if (mgp->mac_addr_string != NULL)
  3591. dev_err(&pdev->dev,
  3592. "myri10ge_probe() failed: MAC=%s, SN=%ld\n",
  3593. mgp->mac_addr_string, mgp->serial_number);
  3594. iounmap(mgp->sram);
  3595. abort_with_mtrr:
  3596. #ifdef CONFIG_MTRR
  3597. if (mgp->mtrr >= 0)
  3598. mtrr_del(mgp->mtrr, mgp->iomem_base, mgp->board_span);
  3599. #endif
  3600. dma_free_coherent(&pdev->dev, sizeof(*mgp->cmd),
  3601. mgp->cmd, mgp->cmd_bus);
  3602. abort_with_enabled:
  3603. pci_disable_device(pdev);
  3604. abort_with_netdev:
  3605. set_fw_name(mgp, NULL, false);
  3606. free_netdev(netdev);
  3607. return status;
  3608. }
  3609. /*
  3610. * myri10ge_remove
  3611. *
  3612. * Does what is necessary to shutdown one Myrinet device. Called
  3613. * once for each Myrinet card by the kernel when a module is
  3614. * unloaded.
  3615. */
  3616. static void myri10ge_remove(struct pci_dev *pdev)
  3617. {
  3618. struct myri10ge_priv *mgp;
  3619. struct net_device *netdev;
  3620. mgp = pci_get_drvdata(pdev);
  3621. if (mgp == NULL)
  3622. return;
  3623. cancel_work_sync(&mgp->watchdog_work);
  3624. netdev = mgp->dev;
  3625. unregister_netdev(netdev);
  3626. #ifdef CONFIG_MYRI10GE_DCA
  3627. myri10ge_teardown_dca(mgp);
  3628. #endif
  3629. myri10ge_dummy_rdma(mgp, 0);
  3630. /* avoid a memory leak */
  3631. pci_restore_state(pdev);
  3632. iounmap(mgp->sram);
  3633. #ifdef CONFIG_MTRR
  3634. if (mgp->mtrr >= 0)
  3635. mtrr_del(mgp->mtrr, mgp->iomem_base, mgp->board_span);
  3636. #endif
  3637. myri10ge_free_slices(mgp);
  3638. if (mgp->msix_vectors != NULL)
  3639. kfree(mgp->msix_vectors);
  3640. dma_free_coherent(&pdev->dev, sizeof(*mgp->cmd),
  3641. mgp->cmd, mgp->cmd_bus);
  3642. set_fw_name(mgp, NULL, false);
  3643. free_netdev(netdev);
  3644. pci_disable_device(pdev);
  3645. pci_set_drvdata(pdev, NULL);
  3646. }
  3647. #define PCI_DEVICE_ID_MYRICOM_MYRI10GE_Z8E 0x0008
  3648. #define PCI_DEVICE_ID_MYRICOM_MYRI10GE_Z8E_9 0x0009
  3649. static DEFINE_PCI_DEVICE_TABLE(myri10ge_pci_tbl) = {
  3650. {PCI_DEVICE(PCI_VENDOR_ID_MYRICOM, PCI_DEVICE_ID_MYRICOM_MYRI10GE_Z8E)},
  3651. {PCI_DEVICE
  3652. (PCI_VENDOR_ID_MYRICOM, PCI_DEVICE_ID_MYRICOM_MYRI10GE_Z8E_9)},
  3653. {0},
  3654. };
  3655. MODULE_DEVICE_TABLE(pci, myri10ge_pci_tbl);
  3656. static struct pci_driver myri10ge_driver = {
  3657. .name = "myri10ge",
  3658. .probe = myri10ge_probe,
  3659. .remove = myri10ge_remove,
  3660. .id_table = myri10ge_pci_tbl,
  3661. #ifdef CONFIG_PM
  3662. .suspend = myri10ge_suspend,
  3663. .resume = myri10ge_resume,
  3664. #endif
  3665. };
  3666. #ifdef CONFIG_MYRI10GE_DCA
  3667. static int
  3668. myri10ge_notify_dca(struct notifier_block *nb, unsigned long event, void *p)
  3669. {
  3670. int err = driver_for_each_device(&myri10ge_driver.driver,
  3671. NULL, &event,
  3672. myri10ge_notify_dca_device);
  3673. if (err)
  3674. return NOTIFY_BAD;
  3675. return NOTIFY_DONE;
  3676. }
  3677. static struct notifier_block myri10ge_dca_notifier = {
  3678. .notifier_call = myri10ge_notify_dca,
  3679. .next = NULL,
  3680. .priority = 0,
  3681. };
  3682. #endif /* CONFIG_MYRI10GE_DCA */
  3683. static __init int myri10ge_init_module(void)
  3684. {
  3685. pr_info("Version %s\n", MYRI10GE_VERSION_STR);
  3686. if (myri10ge_rss_hash > MXGEFW_RSS_HASH_TYPE_MAX) {
  3687. pr_err("Illegal rssh hash type %d, defaulting to source port\n",
  3688. myri10ge_rss_hash);
  3689. myri10ge_rss_hash = MXGEFW_RSS_HASH_TYPE_SRC_PORT;
  3690. }
  3691. #ifdef CONFIG_MYRI10GE_DCA
  3692. dca_register_notify(&myri10ge_dca_notifier);
  3693. #endif
  3694. if (myri10ge_max_slices > MYRI10GE_MAX_SLICES)
  3695. myri10ge_max_slices = MYRI10GE_MAX_SLICES;
  3696. return pci_register_driver(&myri10ge_driver);
  3697. }
  3698. module_init(myri10ge_init_module);
  3699. static __exit void myri10ge_cleanup_module(void)
  3700. {
  3701. #ifdef CONFIG_MYRI10GE_DCA
  3702. dca_unregister_notify(&myri10ge_dca_notifier);
  3703. #endif
  3704. pci_unregister_driver(&myri10ge_driver);
  3705. }
  3706. module_exit(myri10ge_cleanup_module);