sge.c 82 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757275827592760276127622763276427652766276727682769277027712772277327742775277627772778277927802781278227832784278527862787278827892790279127922793279427952796279727982799280028012802280328042805280628072808280928102811281228132814281528162817281828192820282128222823282428252826282728282829283028312832283328342835283628372838283928402841284228432844284528462847284828492850285128522853285428552856285728582859286028612862286328642865286628672868286928702871287228732874287528762877287828792880288128822883288428852886288728882889289028912892289328942895289628972898
  1. /*
  2. * Copyright (c) 2005-2007 Chelsio, Inc. All rights reserved.
  3. *
  4. * This software is available to you under a choice of one of two
  5. * licenses. You may choose to be licensed under the terms of the GNU
  6. * General Public License (GPL) Version 2, available from the file
  7. * COPYING in the main directory of this source tree, or the
  8. * OpenIB.org BSD license below:
  9. *
  10. * Redistribution and use in source and binary forms, with or
  11. * without modification, are permitted provided that the following
  12. * conditions are met:
  13. *
  14. * - Redistributions of source code must retain the above
  15. * copyright notice, this list of conditions and the following
  16. * disclaimer.
  17. *
  18. * - Redistributions in binary form must reproduce the above
  19. * copyright notice, this list of conditions and the following
  20. * disclaimer in the documentation and/or other materials
  21. * provided with the distribution.
  22. *
  23. * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
  24. * EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
  25. * MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
  26. * NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS
  27. * BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN
  28. * ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN
  29. * CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
  30. * SOFTWARE.
  31. */
  32. #include <linux/skbuff.h>
  33. #include <linux/netdevice.h>
  34. #include <linux/etherdevice.h>
  35. #include <linux/if_vlan.h>
  36. #include <linux/ip.h>
  37. #include <linux/tcp.h>
  38. #include <linux/dma-mapping.h>
  39. #include "common.h"
  40. #include "regs.h"
  41. #include "sge_defs.h"
  42. #include "t3_cpl.h"
  43. #include "firmware_exports.h"
  44. #define USE_GTS 0
  45. #define SGE_RX_SM_BUF_SIZE 1536
  46. #define SGE_RX_COPY_THRES 256
  47. #define SGE_RX_PULL_LEN 128
  48. /*
  49. * Page chunk size for FL0 buffers if FL0 is to be populated with page chunks.
  50. * It must be a divisor of PAGE_SIZE. If set to 0 FL0 will use sk_buffs
  51. * directly.
  52. */
  53. #define FL0_PG_CHUNK_SIZE 2048
  54. #define SGE_RX_DROP_THRES 16
  55. /*
  56. * Period of the Tx buffer reclaim timer. This timer does not need to run
  57. * frequently as Tx buffers are usually reclaimed by new Tx packets.
  58. */
  59. #define TX_RECLAIM_PERIOD (HZ / 4)
  60. /* WR size in bytes */
  61. #define WR_LEN (WR_FLITS * 8)
  62. /*
  63. * Types of Tx queues in each queue set. Order here matters, do not change.
  64. */
  65. enum { TXQ_ETH, TXQ_OFLD, TXQ_CTRL };
  66. /* Values for sge_txq.flags */
  67. enum {
  68. TXQ_RUNNING = 1 << 0, /* fetch engine is running */
  69. TXQ_LAST_PKT_DB = 1 << 1, /* last packet rang the doorbell */
  70. };
  71. struct tx_desc {
  72. __be64 flit[TX_DESC_FLITS];
  73. };
  74. struct rx_desc {
  75. __be32 addr_lo;
  76. __be32 len_gen;
  77. __be32 gen2;
  78. __be32 addr_hi;
  79. };
  80. struct tx_sw_desc { /* SW state per Tx descriptor */
  81. struct sk_buff *skb;
  82. u8 eop; /* set if last descriptor for packet */
  83. u8 addr_idx; /* buffer index of first SGL entry in descriptor */
  84. u8 fragidx; /* first page fragment associated with descriptor */
  85. s8 sflit; /* start flit of first SGL entry in descriptor */
  86. };
  87. struct rx_sw_desc { /* SW state per Rx descriptor */
  88. union {
  89. struct sk_buff *skb;
  90. struct fl_pg_chunk pg_chunk;
  91. };
  92. DECLARE_PCI_UNMAP_ADDR(dma_addr);
  93. };
  94. struct rsp_desc { /* response queue descriptor */
  95. struct rss_header rss_hdr;
  96. __be32 flags;
  97. __be32 len_cq;
  98. u8 imm_data[47];
  99. u8 intr_gen;
  100. };
  101. /*
  102. * Holds unmapping information for Tx packets that need deferred unmapping.
  103. * This structure lives at skb->head and must be allocated by callers.
  104. */
  105. struct deferred_unmap_info {
  106. struct pci_dev *pdev;
  107. dma_addr_t addr[MAX_SKB_FRAGS + 1];
  108. };
  109. /*
  110. * Maps a number of flits to the number of Tx descriptors that can hold them.
  111. * The formula is
  112. *
  113. * desc = 1 + (flits - 2) / (WR_FLITS - 1).
  114. *
  115. * HW allows up to 4 descriptors to be combined into a WR.
  116. */
  117. static u8 flit_desc_map[] = {
  118. 0,
  119. #if SGE_NUM_GENBITS == 1
  120. 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1,
  121. 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2,
  122. 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3,
  123. 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4
  124. #elif SGE_NUM_GENBITS == 2
  125. 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1,
  126. 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2,
  127. 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3,
  128. 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4,
  129. #else
  130. # error "SGE_NUM_GENBITS must be 1 or 2"
  131. #endif
  132. };
  133. static inline struct sge_qset *fl_to_qset(const struct sge_fl *q, int qidx)
  134. {
  135. return container_of(q, struct sge_qset, fl[qidx]);
  136. }
  137. static inline struct sge_qset *rspq_to_qset(const struct sge_rspq *q)
  138. {
  139. return container_of(q, struct sge_qset, rspq);
  140. }
  141. static inline struct sge_qset *txq_to_qset(const struct sge_txq *q, int qidx)
  142. {
  143. return container_of(q, struct sge_qset, txq[qidx]);
  144. }
  145. /**
  146. * refill_rspq - replenish an SGE response queue
  147. * @adapter: the adapter
  148. * @q: the response queue to replenish
  149. * @credits: how many new responses to make available
  150. *
  151. * Replenishes a response queue by making the supplied number of responses
  152. * available to HW.
  153. */
  154. static inline void refill_rspq(struct adapter *adapter,
  155. const struct sge_rspq *q, unsigned int credits)
  156. {
  157. rmb();
  158. t3_write_reg(adapter, A_SG_RSPQ_CREDIT_RETURN,
  159. V_RSPQ(q->cntxt_id) | V_CREDITS(credits));
  160. }
  161. /**
  162. * need_skb_unmap - does the platform need unmapping of sk_buffs?
  163. *
  164. * Returns true if the platfrom needs sk_buff unmapping. The compiler
  165. * optimizes away unecessary code if this returns true.
  166. */
  167. static inline int need_skb_unmap(void)
  168. {
  169. /*
  170. * This structure is used to tell if the platfrom needs buffer
  171. * unmapping by checking if DECLARE_PCI_UNMAP_ADDR defines anything.
  172. */
  173. struct dummy {
  174. DECLARE_PCI_UNMAP_ADDR(addr);
  175. };
  176. return sizeof(struct dummy) != 0;
  177. }
  178. /**
  179. * unmap_skb - unmap a packet main body and its page fragments
  180. * @skb: the packet
  181. * @q: the Tx queue containing Tx descriptors for the packet
  182. * @cidx: index of Tx descriptor
  183. * @pdev: the PCI device
  184. *
  185. * Unmap the main body of an sk_buff and its page fragments, if any.
  186. * Because of the fairly complicated structure of our SGLs and the desire
  187. * to conserve space for metadata, the information necessary to unmap an
  188. * sk_buff is spread across the sk_buff itself (buffer lengths), the HW Tx
  189. * descriptors (the physical addresses of the various data buffers), and
  190. * the SW descriptor state (assorted indices). The send functions
  191. * initialize the indices for the first packet descriptor so we can unmap
  192. * the buffers held in the first Tx descriptor here, and we have enough
  193. * information at this point to set the state for the next Tx descriptor.
  194. *
  195. * Note that it is possible to clean up the first descriptor of a packet
  196. * before the send routines have written the next descriptors, but this
  197. * race does not cause any problem. We just end up writing the unmapping
  198. * info for the descriptor first.
  199. */
  200. static inline void unmap_skb(struct sk_buff *skb, struct sge_txq *q,
  201. unsigned int cidx, struct pci_dev *pdev)
  202. {
  203. const struct sg_ent *sgp;
  204. struct tx_sw_desc *d = &q->sdesc[cidx];
  205. int nfrags, frag_idx, curflit, j = d->addr_idx;
  206. sgp = (struct sg_ent *)&q->desc[cidx].flit[d->sflit];
  207. frag_idx = d->fragidx;
  208. if (frag_idx == 0 && skb_headlen(skb)) {
  209. pci_unmap_single(pdev, be64_to_cpu(sgp->addr[0]),
  210. skb_headlen(skb), PCI_DMA_TODEVICE);
  211. j = 1;
  212. }
  213. curflit = d->sflit + 1 + j;
  214. nfrags = skb_shinfo(skb)->nr_frags;
  215. while (frag_idx < nfrags && curflit < WR_FLITS) {
  216. pci_unmap_page(pdev, be64_to_cpu(sgp->addr[j]),
  217. skb_shinfo(skb)->frags[frag_idx].size,
  218. PCI_DMA_TODEVICE);
  219. j ^= 1;
  220. if (j == 0) {
  221. sgp++;
  222. curflit++;
  223. }
  224. curflit++;
  225. frag_idx++;
  226. }
  227. if (frag_idx < nfrags) { /* SGL continues into next Tx descriptor */
  228. d = cidx + 1 == q->size ? q->sdesc : d + 1;
  229. d->fragidx = frag_idx;
  230. d->addr_idx = j;
  231. d->sflit = curflit - WR_FLITS - j; /* sflit can be -1 */
  232. }
  233. }
  234. /**
  235. * free_tx_desc - reclaims Tx descriptors and their buffers
  236. * @adapter: the adapter
  237. * @q: the Tx queue to reclaim descriptors from
  238. * @n: the number of descriptors to reclaim
  239. *
  240. * Reclaims Tx descriptors from an SGE Tx queue and frees the associated
  241. * Tx buffers. Called with the Tx queue lock held.
  242. */
  243. static void free_tx_desc(struct adapter *adapter, struct sge_txq *q,
  244. unsigned int n)
  245. {
  246. struct tx_sw_desc *d;
  247. struct pci_dev *pdev = adapter->pdev;
  248. unsigned int cidx = q->cidx;
  249. const int need_unmap = need_skb_unmap() &&
  250. q->cntxt_id >= FW_TUNNEL_SGEEC_START;
  251. d = &q->sdesc[cidx];
  252. while (n--) {
  253. if (d->skb) { /* an SGL is present */
  254. if (need_unmap)
  255. unmap_skb(d->skb, q, cidx, pdev);
  256. if (d->eop)
  257. kfree_skb(d->skb);
  258. }
  259. ++d;
  260. if (++cidx == q->size) {
  261. cidx = 0;
  262. d = q->sdesc;
  263. }
  264. }
  265. q->cidx = cidx;
  266. }
  267. /**
  268. * reclaim_completed_tx - reclaims completed Tx descriptors
  269. * @adapter: the adapter
  270. * @q: the Tx queue to reclaim completed descriptors from
  271. *
  272. * Reclaims Tx descriptors that the SGE has indicated it has processed,
  273. * and frees the associated buffers if possible. Called with the Tx
  274. * queue's lock held.
  275. */
  276. static inline void reclaim_completed_tx(struct adapter *adapter,
  277. struct sge_txq *q)
  278. {
  279. unsigned int reclaim = q->processed - q->cleaned;
  280. if (reclaim) {
  281. free_tx_desc(adapter, q, reclaim);
  282. q->cleaned += reclaim;
  283. q->in_use -= reclaim;
  284. }
  285. }
  286. /**
  287. * should_restart_tx - are there enough resources to restart a Tx queue?
  288. * @q: the Tx queue
  289. *
  290. * Checks if there are enough descriptors to restart a suspended Tx queue.
  291. */
  292. static inline int should_restart_tx(const struct sge_txq *q)
  293. {
  294. unsigned int r = q->processed - q->cleaned;
  295. return q->in_use - r < (q->size >> 1);
  296. }
  297. /**
  298. * free_rx_bufs - free the Rx buffers on an SGE free list
  299. * @pdev: the PCI device associated with the adapter
  300. * @rxq: the SGE free list to clean up
  301. *
  302. * Release the buffers on an SGE free-buffer Rx queue. HW fetching from
  303. * this queue should be stopped before calling this function.
  304. */
  305. static void free_rx_bufs(struct pci_dev *pdev, struct sge_fl *q)
  306. {
  307. unsigned int cidx = q->cidx;
  308. while (q->credits--) {
  309. struct rx_sw_desc *d = &q->sdesc[cidx];
  310. pci_unmap_single(pdev, pci_unmap_addr(d, dma_addr),
  311. q->buf_size, PCI_DMA_FROMDEVICE);
  312. if (q->use_pages) {
  313. put_page(d->pg_chunk.page);
  314. d->pg_chunk.page = NULL;
  315. } else {
  316. kfree_skb(d->skb);
  317. d->skb = NULL;
  318. }
  319. if (++cidx == q->size)
  320. cidx = 0;
  321. }
  322. if (q->pg_chunk.page) {
  323. __free_page(q->pg_chunk.page);
  324. q->pg_chunk.page = NULL;
  325. }
  326. }
  327. /**
  328. * add_one_rx_buf - add a packet buffer to a free-buffer list
  329. * @va: buffer start VA
  330. * @len: the buffer length
  331. * @d: the HW Rx descriptor to write
  332. * @sd: the SW Rx descriptor to write
  333. * @gen: the generation bit value
  334. * @pdev: the PCI device associated with the adapter
  335. *
  336. * Add a buffer of the given length to the supplied HW and SW Rx
  337. * descriptors.
  338. */
  339. static inline void add_one_rx_buf(void *va, unsigned int len,
  340. struct rx_desc *d, struct rx_sw_desc *sd,
  341. unsigned int gen, struct pci_dev *pdev)
  342. {
  343. dma_addr_t mapping;
  344. mapping = pci_map_single(pdev, va, len, PCI_DMA_FROMDEVICE);
  345. pci_unmap_addr_set(sd, dma_addr, mapping);
  346. d->addr_lo = cpu_to_be32(mapping);
  347. d->addr_hi = cpu_to_be32((u64) mapping >> 32);
  348. wmb();
  349. d->len_gen = cpu_to_be32(V_FLD_GEN1(gen));
  350. d->gen2 = cpu_to_be32(V_FLD_GEN2(gen));
  351. }
  352. static int alloc_pg_chunk(struct sge_fl *q, struct rx_sw_desc *sd, gfp_t gfp)
  353. {
  354. if (!q->pg_chunk.page) {
  355. q->pg_chunk.page = alloc_page(gfp);
  356. if (unlikely(!q->pg_chunk.page))
  357. return -ENOMEM;
  358. q->pg_chunk.va = page_address(q->pg_chunk.page);
  359. q->pg_chunk.offset = 0;
  360. }
  361. sd->pg_chunk = q->pg_chunk;
  362. q->pg_chunk.offset += q->buf_size;
  363. if (q->pg_chunk.offset == PAGE_SIZE)
  364. q->pg_chunk.page = NULL;
  365. else {
  366. q->pg_chunk.va += q->buf_size;
  367. get_page(q->pg_chunk.page);
  368. }
  369. return 0;
  370. }
  371. /**
  372. * refill_fl - refill an SGE free-buffer list
  373. * @adapter: the adapter
  374. * @q: the free-list to refill
  375. * @n: the number of new buffers to allocate
  376. * @gfp: the gfp flags for allocating new buffers
  377. *
  378. * (Re)populate an SGE free-buffer list with up to @n new packet buffers,
  379. * allocated with the supplied gfp flags. The caller must assure that
  380. * @n does not exceed the queue's capacity.
  381. */
  382. static void refill_fl(struct adapter *adap, struct sge_fl *q, int n, gfp_t gfp)
  383. {
  384. void *buf_start;
  385. struct rx_sw_desc *sd = &q->sdesc[q->pidx];
  386. struct rx_desc *d = &q->desc[q->pidx];
  387. while (n--) {
  388. if (q->use_pages) {
  389. if (unlikely(alloc_pg_chunk(q, sd, gfp))) {
  390. nomem: q->alloc_failed++;
  391. break;
  392. }
  393. buf_start = sd->pg_chunk.va;
  394. } else {
  395. struct sk_buff *skb = alloc_skb(q->buf_size, gfp);
  396. if (!skb)
  397. goto nomem;
  398. sd->skb = skb;
  399. buf_start = skb->data;
  400. }
  401. add_one_rx_buf(buf_start, q->buf_size, d, sd, q->gen,
  402. adap->pdev);
  403. d++;
  404. sd++;
  405. if (++q->pidx == q->size) {
  406. q->pidx = 0;
  407. q->gen ^= 1;
  408. sd = q->sdesc;
  409. d = q->desc;
  410. }
  411. q->credits++;
  412. }
  413. wmb();
  414. t3_write_reg(adap, A_SG_KDOORBELL, V_EGRCNTX(q->cntxt_id));
  415. }
  416. static inline void __refill_fl(struct adapter *adap, struct sge_fl *fl)
  417. {
  418. refill_fl(adap, fl, min(16U, fl->size - fl->credits), GFP_ATOMIC);
  419. }
  420. /**
  421. * recycle_rx_buf - recycle a receive buffer
  422. * @adapter: the adapter
  423. * @q: the SGE free list
  424. * @idx: index of buffer to recycle
  425. *
  426. * Recycles the specified buffer on the given free list by adding it at
  427. * the next available slot on the list.
  428. */
  429. static void recycle_rx_buf(struct adapter *adap, struct sge_fl *q,
  430. unsigned int idx)
  431. {
  432. struct rx_desc *from = &q->desc[idx];
  433. struct rx_desc *to = &q->desc[q->pidx];
  434. q->sdesc[q->pidx] = q->sdesc[idx];
  435. to->addr_lo = from->addr_lo; /* already big endian */
  436. to->addr_hi = from->addr_hi; /* likewise */
  437. wmb();
  438. to->len_gen = cpu_to_be32(V_FLD_GEN1(q->gen));
  439. to->gen2 = cpu_to_be32(V_FLD_GEN2(q->gen));
  440. q->credits++;
  441. if (++q->pidx == q->size) {
  442. q->pidx = 0;
  443. q->gen ^= 1;
  444. }
  445. t3_write_reg(adap, A_SG_KDOORBELL, V_EGRCNTX(q->cntxt_id));
  446. }
  447. /**
  448. * alloc_ring - allocate resources for an SGE descriptor ring
  449. * @pdev: the PCI device
  450. * @nelem: the number of descriptors
  451. * @elem_size: the size of each descriptor
  452. * @sw_size: the size of the SW state associated with each ring element
  453. * @phys: the physical address of the allocated ring
  454. * @metadata: address of the array holding the SW state for the ring
  455. *
  456. * Allocates resources for an SGE descriptor ring, such as Tx queues,
  457. * free buffer lists, or response queues. Each SGE ring requires
  458. * space for its HW descriptors plus, optionally, space for the SW state
  459. * associated with each HW entry (the metadata). The function returns
  460. * three values: the virtual address for the HW ring (the return value
  461. * of the function), the physical address of the HW ring, and the address
  462. * of the SW ring.
  463. */
  464. static void *alloc_ring(struct pci_dev *pdev, size_t nelem, size_t elem_size,
  465. size_t sw_size, dma_addr_t * phys, void *metadata)
  466. {
  467. size_t len = nelem * elem_size;
  468. void *s = NULL;
  469. void *p = dma_alloc_coherent(&pdev->dev, len, phys, GFP_KERNEL);
  470. if (!p)
  471. return NULL;
  472. if (sw_size) {
  473. s = kcalloc(nelem, sw_size, GFP_KERNEL);
  474. if (!s) {
  475. dma_free_coherent(&pdev->dev, len, p, *phys);
  476. return NULL;
  477. }
  478. }
  479. if (metadata)
  480. *(void **)metadata = s;
  481. memset(p, 0, len);
  482. return p;
  483. }
  484. /**
  485. * free_qset - free the resources of an SGE queue set
  486. * @adapter: the adapter owning the queue set
  487. * @q: the queue set
  488. *
  489. * Release the HW and SW resources associated with an SGE queue set, such
  490. * as HW contexts, packet buffers, and descriptor rings. Traffic to the
  491. * queue set must be quiesced prior to calling this.
  492. */
  493. static void t3_free_qset(struct adapter *adapter, struct sge_qset *q)
  494. {
  495. int i;
  496. struct pci_dev *pdev = adapter->pdev;
  497. if (q->tx_reclaim_timer.function)
  498. del_timer_sync(&q->tx_reclaim_timer);
  499. for (i = 0; i < SGE_RXQ_PER_SET; ++i)
  500. if (q->fl[i].desc) {
  501. spin_lock(&adapter->sge.reg_lock);
  502. t3_sge_disable_fl(adapter, q->fl[i].cntxt_id);
  503. spin_unlock(&adapter->sge.reg_lock);
  504. free_rx_bufs(pdev, &q->fl[i]);
  505. kfree(q->fl[i].sdesc);
  506. dma_free_coherent(&pdev->dev,
  507. q->fl[i].size *
  508. sizeof(struct rx_desc), q->fl[i].desc,
  509. q->fl[i].phys_addr);
  510. }
  511. for (i = 0; i < SGE_TXQ_PER_SET; ++i)
  512. if (q->txq[i].desc) {
  513. spin_lock(&adapter->sge.reg_lock);
  514. t3_sge_enable_ecntxt(adapter, q->txq[i].cntxt_id, 0);
  515. spin_unlock(&adapter->sge.reg_lock);
  516. if (q->txq[i].sdesc) {
  517. free_tx_desc(adapter, &q->txq[i],
  518. q->txq[i].in_use);
  519. kfree(q->txq[i].sdesc);
  520. }
  521. dma_free_coherent(&pdev->dev,
  522. q->txq[i].size *
  523. sizeof(struct tx_desc),
  524. q->txq[i].desc, q->txq[i].phys_addr);
  525. __skb_queue_purge(&q->txq[i].sendq);
  526. }
  527. if (q->rspq.desc) {
  528. spin_lock(&adapter->sge.reg_lock);
  529. t3_sge_disable_rspcntxt(adapter, q->rspq.cntxt_id);
  530. spin_unlock(&adapter->sge.reg_lock);
  531. dma_free_coherent(&pdev->dev,
  532. q->rspq.size * sizeof(struct rsp_desc),
  533. q->rspq.desc, q->rspq.phys_addr);
  534. }
  535. memset(q, 0, sizeof(*q));
  536. }
  537. /**
  538. * init_qset_cntxt - initialize an SGE queue set context info
  539. * @qs: the queue set
  540. * @id: the queue set id
  541. *
  542. * Initializes the TIDs and context ids for the queues of a queue set.
  543. */
  544. static void init_qset_cntxt(struct sge_qset *qs, unsigned int id)
  545. {
  546. qs->rspq.cntxt_id = id;
  547. qs->fl[0].cntxt_id = 2 * id;
  548. qs->fl[1].cntxt_id = 2 * id + 1;
  549. qs->txq[TXQ_ETH].cntxt_id = FW_TUNNEL_SGEEC_START + id;
  550. qs->txq[TXQ_ETH].token = FW_TUNNEL_TID_START + id;
  551. qs->txq[TXQ_OFLD].cntxt_id = FW_OFLD_SGEEC_START + id;
  552. qs->txq[TXQ_CTRL].cntxt_id = FW_CTRL_SGEEC_START + id;
  553. qs->txq[TXQ_CTRL].token = FW_CTRL_TID_START + id;
  554. }
  555. /**
  556. * sgl_len - calculates the size of an SGL of the given capacity
  557. * @n: the number of SGL entries
  558. *
  559. * Calculates the number of flits needed for a scatter/gather list that
  560. * can hold the given number of entries.
  561. */
  562. static inline unsigned int sgl_len(unsigned int n)
  563. {
  564. /* alternatively: 3 * (n / 2) + 2 * (n & 1) */
  565. return (3 * n) / 2 + (n & 1);
  566. }
  567. /**
  568. * flits_to_desc - returns the num of Tx descriptors for the given flits
  569. * @n: the number of flits
  570. *
  571. * Calculates the number of Tx descriptors needed for the supplied number
  572. * of flits.
  573. */
  574. static inline unsigned int flits_to_desc(unsigned int n)
  575. {
  576. BUG_ON(n >= ARRAY_SIZE(flit_desc_map));
  577. return flit_desc_map[n];
  578. }
  579. /**
  580. * get_packet - return the next ingress packet buffer from a free list
  581. * @adap: the adapter that received the packet
  582. * @fl: the SGE free list holding the packet
  583. * @len: the packet length including any SGE padding
  584. * @drop_thres: # of remaining buffers before we start dropping packets
  585. *
  586. * Get the next packet from a free list and complete setup of the
  587. * sk_buff. If the packet is small we make a copy and recycle the
  588. * original buffer, otherwise we use the original buffer itself. If a
  589. * positive drop threshold is supplied packets are dropped and their
  590. * buffers recycled if (a) the number of remaining buffers is under the
  591. * threshold and the packet is too big to copy, or (b) the packet should
  592. * be copied but there is no memory for the copy.
  593. */
  594. static struct sk_buff *get_packet(struct adapter *adap, struct sge_fl *fl,
  595. unsigned int len, unsigned int drop_thres)
  596. {
  597. struct sk_buff *skb = NULL;
  598. struct rx_sw_desc *sd = &fl->sdesc[fl->cidx];
  599. prefetch(sd->skb->data);
  600. fl->credits--;
  601. if (len <= SGE_RX_COPY_THRES) {
  602. skb = alloc_skb(len, GFP_ATOMIC);
  603. if (likely(skb != NULL)) {
  604. __skb_put(skb, len);
  605. pci_dma_sync_single_for_cpu(adap->pdev,
  606. pci_unmap_addr(sd, dma_addr), len,
  607. PCI_DMA_FROMDEVICE);
  608. memcpy(skb->data, sd->skb->data, len);
  609. pci_dma_sync_single_for_device(adap->pdev,
  610. pci_unmap_addr(sd, dma_addr), len,
  611. PCI_DMA_FROMDEVICE);
  612. } else if (!drop_thres)
  613. goto use_orig_buf;
  614. recycle:
  615. recycle_rx_buf(adap, fl, fl->cidx);
  616. return skb;
  617. }
  618. if (unlikely(fl->credits < drop_thres))
  619. goto recycle;
  620. use_orig_buf:
  621. pci_unmap_single(adap->pdev, pci_unmap_addr(sd, dma_addr),
  622. fl->buf_size, PCI_DMA_FROMDEVICE);
  623. skb = sd->skb;
  624. skb_put(skb, len);
  625. __refill_fl(adap, fl);
  626. return skb;
  627. }
  628. /**
  629. * get_packet_pg - return the next ingress packet buffer from a free list
  630. * @adap: the adapter that received the packet
  631. * @fl: the SGE free list holding the packet
  632. * @len: the packet length including any SGE padding
  633. * @drop_thres: # of remaining buffers before we start dropping packets
  634. *
  635. * Get the next packet from a free list populated with page chunks.
  636. * If the packet is small we make a copy and recycle the original buffer,
  637. * otherwise we attach the original buffer as a page fragment to a fresh
  638. * sk_buff. If a positive drop threshold is supplied packets are dropped
  639. * and their buffers recycled if (a) the number of remaining buffers is
  640. * under the threshold and the packet is too big to copy, or (b) there's
  641. * no system memory.
  642. *
  643. * Note: this function is similar to @get_packet but deals with Rx buffers
  644. * that are page chunks rather than sk_buffs.
  645. */
  646. static struct sk_buff *get_packet_pg(struct adapter *adap, struct sge_fl *fl,
  647. unsigned int len, unsigned int drop_thres)
  648. {
  649. struct sk_buff *skb = NULL;
  650. struct rx_sw_desc *sd = &fl->sdesc[fl->cidx];
  651. if (len <= SGE_RX_COPY_THRES) {
  652. skb = alloc_skb(len, GFP_ATOMIC);
  653. if (likely(skb != NULL)) {
  654. __skb_put(skb, len);
  655. pci_dma_sync_single_for_cpu(adap->pdev,
  656. pci_unmap_addr(sd, dma_addr), len,
  657. PCI_DMA_FROMDEVICE);
  658. memcpy(skb->data, sd->pg_chunk.va, len);
  659. pci_dma_sync_single_for_device(adap->pdev,
  660. pci_unmap_addr(sd, dma_addr), len,
  661. PCI_DMA_FROMDEVICE);
  662. } else if (!drop_thres)
  663. return NULL;
  664. recycle:
  665. fl->credits--;
  666. recycle_rx_buf(adap, fl, fl->cidx);
  667. return skb;
  668. }
  669. if (unlikely(fl->credits <= drop_thres))
  670. goto recycle;
  671. skb = alloc_skb(SGE_RX_PULL_LEN, GFP_ATOMIC);
  672. if (unlikely(!skb)) {
  673. if (!drop_thres)
  674. return NULL;
  675. goto recycle;
  676. }
  677. pci_unmap_single(adap->pdev, pci_unmap_addr(sd, dma_addr),
  678. fl->buf_size, PCI_DMA_FROMDEVICE);
  679. __skb_put(skb, SGE_RX_PULL_LEN);
  680. memcpy(skb->data, sd->pg_chunk.va, SGE_RX_PULL_LEN);
  681. skb_fill_page_desc(skb, 0, sd->pg_chunk.page,
  682. sd->pg_chunk.offset + SGE_RX_PULL_LEN,
  683. len - SGE_RX_PULL_LEN);
  684. skb->len = len;
  685. skb->data_len = len - SGE_RX_PULL_LEN;
  686. skb->truesize += skb->data_len;
  687. fl->credits--;
  688. /*
  689. * We do not refill FLs here, we let the caller do it to overlap a
  690. * prefetch.
  691. */
  692. return skb;
  693. }
  694. /**
  695. * get_imm_packet - return the next ingress packet buffer from a response
  696. * @resp: the response descriptor containing the packet data
  697. *
  698. * Return a packet containing the immediate data of the given response.
  699. */
  700. static inline struct sk_buff *get_imm_packet(const struct rsp_desc *resp)
  701. {
  702. struct sk_buff *skb = alloc_skb(IMMED_PKT_SIZE, GFP_ATOMIC);
  703. if (skb) {
  704. __skb_put(skb, IMMED_PKT_SIZE);
  705. skb_copy_to_linear_data(skb, resp->imm_data, IMMED_PKT_SIZE);
  706. }
  707. return skb;
  708. }
  709. /**
  710. * calc_tx_descs - calculate the number of Tx descriptors for a packet
  711. * @skb: the packet
  712. *
  713. * Returns the number of Tx descriptors needed for the given Ethernet
  714. * packet. Ethernet packets require addition of WR and CPL headers.
  715. */
  716. static inline unsigned int calc_tx_descs(const struct sk_buff *skb)
  717. {
  718. unsigned int flits;
  719. if (skb->len <= WR_LEN - sizeof(struct cpl_tx_pkt))
  720. return 1;
  721. flits = sgl_len(skb_shinfo(skb)->nr_frags + 1) + 2;
  722. if (skb_shinfo(skb)->gso_size)
  723. flits++;
  724. return flits_to_desc(flits);
  725. }
  726. /**
  727. * make_sgl - populate a scatter/gather list for a packet
  728. * @skb: the packet
  729. * @sgp: the SGL to populate
  730. * @start: start address of skb main body data to include in the SGL
  731. * @len: length of skb main body data to include in the SGL
  732. * @pdev: the PCI device
  733. *
  734. * Generates a scatter/gather list for the buffers that make up a packet
  735. * and returns the SGL size in 8-byte words. The caller must size the SGL
  736. * appropriately.
  737. */
  738. static inline unsigned int make_sgl(const struct sk_buff *skb,
  739. struct sg_ent *sgp, unsigned char *start,
  740. unsigned int len, struct pci_dev *pdev)
  741. {
  742. dma_addr_t mapping;
  743. unsigned int i, j = 0, nfrags;
  744. if (len) {
  745. mapping = pci_map_single(pdev, start, len, PCI_DMA_TODEVICE);
  746. sgp->len[0] = cpu_to_be32(len);
  747. sgp->addr[0] = cpu_to_be64(mapping);
  748. j = 1;
  749. }
  750. nfrags = skb_shinfo(skb)->nr_frags;
  751. for (i = 0; i < nfrags; i++) {
  752. skb_frag_t *frag = &skb_shinfo(skb)->frags[i];
  753. mapping = pci_map_page(pdev, frag->page, frag->page_offset,
  754. frag->size, PCI_DMA_TODEVICE);
  755. sgp->len[j] = cpu_to_be32(frag->size);
  756. sgp->addr[j] = cpu_to_be64(mapping);
  757. j ^= 1;
  758. if (j == 0)
  759. ++sgp;
  760. }
  761. if (j)
  762. sgp->len[j] = 0;
  763. return ((nfrags + (len != 0)) * 3) / 2 + j;
  764. }
  765. /**
  766. * check_ring_tx_db - check and potentially ring a Tx queue's doorbell
  767. * @adap: the adapter
  768. * @q: the Tx queue
  769. *
  770. * Ring the doorbel if a Tx queue is asleep. There is a natural race,
  771. * where the HW is going to sleep just after we checked, however,
  772. * then the interrupt handler will detect the outstanding TX packet
  773. * and ring the doorbell for us.
  774. *
  775. * When GTS is disabled we unconditionally ring the doorbell.
  776. */
  777. static inline void check_ring_tx_db(struct adapter *adap, struct sge_txq *q)
  778. {
  779. #if USE_GTS
  780. clear_bit(TXQ_LAST_PKT_DB, &q->flags);
  781. if (test_and_set_bit(TXQ_RUNNING, &q->flags) == 0) {
  782. set_bit(TXQ_LAST_PKT_DB, &q->flags);
  783. t3_write_reg(adap, A_SG_KDOORBELL,
  784. F_SELEGRCNTX | V_EGRCNTX(q->cntxt_id));
  785. }
  786. #else
  787. wmb(); /* write descriptors before telling HW */
  788. t3_write_reg(adap, A_SG_KDOORBELL,
  789. F_SELEGRCNTX | V_EGRCNTX(q->cntxt_id));
  790. #endif
  791. }
  792. static inline void wr_gen2(struct tx_desc *d, unsigned int gen)
  793. {
  794. #if SGE_NUM_GENBITS == 2
  795. d->flit[TX_DESC_FLITS - 1] = cpu_to_be64(gen);
  796. #endif
  797. }
  798. /**
  799. * write_wr_hdr_sgl - write a WR header and, optionally, SGL
  800. * @ndesc: number of Tx descriptors spanned by the SGL
  801. * @skb: the packet corresponding to the WR
  802. * @d: first Tx descriptor to be written
  803. * @pidx: index of above descriptors
  804. * @q: the SGE Tx queue
  805. * @sgl: the SGL
  806. * @flits: number of flits to the start of the SGL in the first descriptor
  807. * @sgl_flits: the SGL size in flits
  808. * @gen: the Tx descriptor generation
  809. * @wr_hi: top 32 bits of WR header based on WR type (big endian)
  810. * @wr_lo: low 32 bits of WR header based on WR type (big endian)
  811. *
  812. * Write a work request header and an associated SGL. If the SGL is
  813. * small enough to fit into one Tx descriptor it has already been written
  814. * and we just need to write the WR header. Otherwise we distribute the
  815. * SGL across the number of descriptors it spans.
  816. */
  817. static void write_wr_hdr_sgl(unsigned int ndesc, struct sk_buff *skb,
  818. struct tx_desc *d, unsigned int pidx,
  819. const struct sge_txq *q,
  820. const struct sg_ent *sgl,
  821. unsigned int flits, unsigned int sgl_flits,
  822. unsigned int gen, __be32 wr_hi,
  823. __be32 wr_lo)
  824. {
  825. struct work_request_hdr *wrp = (struct work_request_hdr *)d;
  826. struct tx_sw_desc *sd = &q->sdesc[pidx];
  827. sd->skb = skb;
  828. if (need_skb_unmap()) {
  829. sd->fragidx = 0;
  830. sd->addr_idx = 0;
  831. sd->sflit = flits;
  832. }
  833. if (likely(ndesc == 1)) {
  834. sd->eop = 1;
  835. wrp->wr_hi = htonl(F_WR_SOP | F_WR_EOP | V_WR_DATATYPE(1) |
  836. V_WR_SGLSFLT(flits)) | wr_hi;
  837. wmb();
  838. wrp->wr_lo = htonl(V_WR_LEN(flits + sgl_flits) |
  839. V_WR_GEN(gen)) | wr_lo;
  840. wr_gen2(d, gen);
  841. } else {
  842. unsigned int ogen = gen;
  843. const u64 *fp = (const u64 *)sgl;
  844. struct work_request_hdr *wp = wrp;
  845. wrp->wr_hi = htonl(F_WR_SOP | V_WR_DATATYPE(1) |
  846. V_WR_SGLSFLT(flits)) | wr_hi;
  847. while (sgl_flits) {
  848. unsigned int avail = WR_FLITS - flits;
  849. if (avail > sgl_flits)
  850. avail = sgl_flits;
  851. memcpy(&d->flit[flits], fp, avail * sizeof(*fp));
  852. sgl_flits -= avail;
  853. ndesc--;
  854. if (!sgl_flits)
  855. break;
  856. fp += avail;
  857. d++;
  858. sd->eop = 0;
  859. sd++;
  860. if (++pidx == q->size) {
  861. pidx = 0;
  862. gen ^= 1;
  863. d = q->desc;
  864. sd = q->sdesc;
  865. }
  866. sd->skb = skb;
  867. wrp = (struct work_request_hdr *)d;
  868. wrp->wr_hi = htonl(V_WR_DATATYPE(1) |
  869. V_WR_SGLSFLT(1)) | wr_hi;
  870. wrp->wr_lo = htonl(V_WR_LEN(min(WR_FLITS,
  871. sgl_flits + 1)) |
  872. V_WR_GEN(gen)) | wr_lo;
  873. wr_gen2(d, gen);
  874. flits = 1;
  875. }
  876. sd->eop = 1;
  877. wrp->wr_hi |= htonl(F_WR_EOP);
  878. wmb();
  879. wp->wr_lo = htonl(V_WR_LEN(WR_FLITS) | V_WR_GEN(ogen)) | wr_lo;
  880. wr_gen2((struct tx_desc *)wp, ogen);
  881. WARN_ON(ndesc != 0);
  882. }
  883. }
  884. /**
  885. * write_tx_pkt_wr - write a TX_PKT work request
  886. * @adap: the adapter
  887. * @skb: the packet to send
  888. * @pi: the egress interface
  889. * @pidx: index of the first Tx descriptor to write
  890. * @gen: the generation value to use
  891. * @q: the Tx queue
  892. * @ndesc: number of descriptors the packet will occupy
  893. * @compl: the value of the COMPL bit to use
  894. *
  895. * Generate a TX_PKT work request to send the supplied packet.
  896. */
  897. static void write_tx_pkt_wr(struct adapter *adap, struct sk_buff *skb,
  898. const struct port_info *pi,
  899. unsigned int pidx, unsigned int gen,
  900. struct sge_txq *q, unsigned int ndesc,
  901. unsigned int compl)
  902. {
  903. unsigned int flits, sgl_flits, cntrl, tso_info;
  904. struct sg_ent *sgp, sgl[MAX_SKB_FRAGS / 2 + 1];
  905. struct tx_desc *d = &q->desc[pidx];
  906. struct cpl_tx_pkt *cpl = (struct cpl_tx_pkt *)d;
  907. cpl->len = htonl(skb->len | 0x80000000);
  908. cntrl = V_TXPKT_INTF(pi->port_id);
  909. if (vlan_tx_tag_present(skb) && pi->vlan_grp)
  910. cntrl |= F_TXPKT_VLAN_VLD | V_TXPKT_VLAN(vlan_tx_tag_get(skb));
  911. tso_info = V_LSO_MSS(skb_shinfo(skb)->gso_size);
  912. if (tso_info) {
  913. int eth_type;
  914. struct cpl_tx_pkt_lso *hdr = (struct cpl_tx_pkt_lso *)cpl;
  915. d->flit[2] = 0;
  916. cntrl |= V_TXPKT_OPCODE(CPL_TX_PKT_LSO);
  917. hdr->cntrl = htonl(cntrl);
  918. eth_type = skb_network_offset(skb) == ETH_HLEN ?
  919. CPL_ETH_II : CPL_ETH_II_VLAN;
  920. tso_info |= V_LSO_ETH_TYPE(eth_type) |
  921. V_LSO_IPHDR_WORDS(ip_hdr(skb)->ihl) |
  922. V_LSO_TCPHDR_WORDS(tcp_hdr(skb)->doff);
  923. hdr->lso_info = htonl(tso_info);
  924. flits = 3;
  925. } else {
  926. cntrl |= V_TXPKT_OPCODE(CPL_TX_PKT);
  927. cntrl |= F_TXPKT_IPCSUM_DIS; /* SW calculates IP csum */
  928. cntrl |= V_TXPKT_L4CSUM_DIS(skb->ip_summed != CHECKSUM_PARTIAL);
  929. cpl->cntrl = htonl(cntrl);
  930. if (skb->len <= WR_LEN - sizeof(*cpl)) {
  931. q->sdesc[pidx].skb = NULL;
  932. if (!skb->data_len)
  933. skb_copy_from_linear_data(skb, &d->flit[2],
  934. skb->len);
  935. else
  936. skb_copy_bits(skb, 0, &d->flit[2], skb->len);
  937. flits = (skb->len + 7) / 8 + 2;
  938. cpl->wr.wr_hi = htonl(V_WR_BCNTLFLT(skb->len & 7) |
  939. V_WR_OP(FW_WROPCODE_TUNNEL_TX_PKT)
  940. | F_WR_SOP | F_WR_EOP | compl);
  941. wmb();
  942. cpl->wr.wr_lo = htonl(V_WR_LEN(flits) | V_WR_GEN(gen) |
  943. V_WR_TID(q->token));
  944. wr_gen2(d, gen);
  945. kfree_skb(skb);
  946. return;
  947. }
  948. flits = 2;
  949. }
  950. sgp = ndesc == 1 ? (struct sg_ent *)&d->flit[flits] : sgl;
  951. sgl_flits = make_sgl(skb, sgp, skb->data, skb_headlen(skb), adap->pdev);
  952. write_wr_hdr_sgl(ndesc, skb, d, pidx, q, sgl, flits, sgl_flits, gen,
  953. htonl(V_WR_OP(FW_WROPCODE_TUNNEL_TX_PKT) | compl),
  954. htonl(V_WR_TID(q->token)));
  955. }
  956. /**
  957. * eth_xmit - add a packet to the Ethernet Tx queue
  958. * @skb: the packet
  959. * @dev: the egress net device
  960. *
  961. * Add a packet to an SGE Tx queue. Runs with softirqs disabled.
  962. */
  963. int t3_eth_xmit(struct sk_buff *skb, struct net_device *dev)
  964. {
  965. unsigned int ndesc, pidx, credits, gen, compl;
  966. const struct port_info *pi = netdev_priv(dev);
  967. struct adapter *adap = pi->adapter;
  968. struct sge_qset *qs = pi->qs;
  969. struct sge_txq *q = &qs->txq[TXQ_ETH];
  970. /*
  971. * The chip min packet length is 9 octets but play safe and reject
  972. * anything shorter than an Ethernet header.
  973. */
  974. if (unlikely(skb->len < ETH_HLEN)) {
  975. dev_kfree_skb(skb);
  976. return NETDEV_TX_OK;
  977. }
  978. spin_lock(&q->lock);
  979. reclaim_completed_tx(adap, q);
  980. credits = q->size - q->in_use;
  981. ndesc = calc_tx_descs(skb);
  982. if (unlikely(credits < ndesc)) {
  983. if (!netif_queue_stopped(dev)) {
  984. netif_stop_queue(dev);
  985. set_bit(TXQ_ETH, &qs->txq_stopped);
  986. q->stops++;
  987. dev_err(&adap->pdev->dev,
  988. "%s: Tx ring %u full while queue awake!\n",
  989. dev->name, q->cntxt_id & 7);
  990. }
  991. spin_unlock(&q->lock);
  992. return NETDEV_TX_BUSY;
  993. }
  994. q->in_use += ndesc;
  995. if (unlikely(credits - ndesc < q->stop_thres)) {
  996. q->stops++;
  997. netif_stop_queue(dev);
  998. set_bit(TXQ_ETH, &qs->txq_stopped);
  999. #if !USE_GTS
  1000. if (should_restart_tx(q) &&
  1001. test_and_clear_bit(TXQ_ETH, &qs->txq_stopped)) {
  1002. q->restarts++;
  1003. netif_wake_queue(dev);
  1004. }
  1005. #endif
  1006. }
  1007. gen = q->gen;
  1008. q->unacked += ndesc;
  1009. compl = (q->unacked & 8) << (S_WR_COMPL - 3);
  1010. q->unacked &= 7;
  1011. pidx = q->pidx;
  1012. q->pidx += ndesc;
  1013. if (q->pidx >= q->size) {
  1014. q->pidx -= q->size;
  1015. q->gen ^= 1;
  1016. }
  1017. /* update port statistics */
  1018. if (skb->ip_summed == CHECKSUM_COMPLETE)
  1019. qs->port_stats[SGE_PSTAT_TX_CSUM]++;
  1020. if (skb_shinfo(skb)->gso_size)
  1021. qs->port_stats[SGE_PSTAT_TSO]++;
  1022. if (vlan_tx_tag_present(skb) && pi->vlan_grp)
  1023. qs->port_stats[SGE_PSTAT_VLANINS]++;
  1024. dev->trans_start = jiffies;
  1025. spin_unlock(&q->lock);
  1026. /*
  1027. * We do not use Tx completion interrupts to free DMAd Tx packets.
  1028. * This is good for performamce but means that we rely on new Tx
  1029. * packets arriving to run the destructors of completed packets,
  1030. * which open up space in their sockets' send queues. Sometimes
  1031. * we do not get such new packets causing Tx to stall. A single
  1032. * UDP transmitter is a good example of this situation. We have
  1033. * a clean up timer that periodically reclaims completed packets
  1034. * but it doesn't run often enough (nor do we want it to) to prevent
  1035. * lengthy stalls. A solution to this problem is to run the
  1036. * destructor early, after the packet is queued but before it's DMAd.
  1037. * A cons is that we lie to socket memory accounting, but the amount
  1038. * of extra memory is reasonable (limited by the number of Tx
  1039. * descriptors), the packets do actually get freed quickly by new
  1040. * packets almost always, and for protocols like TCP that wait for
  1041. * acks to really free up the data the extra memory is even less.
  1042. * On the positive side we run the destructors on the sending CPU
  1043. * rather than on a potentially different completing CPU, usually a
  1044. * good thing. We also run them without holding our Tx queue lock,
  1045. * unlike what reclaim_completed_tx() would otherwise do.
  1046. *
  1047. * Run the destructor before telling the DMA engine about the packet
  1048. * to make sure it doesn't complete and get freed prematurely.
  1049. */
  1050. if (likely(!skb_shared(skb)))
  1051. skb_orphan(skb);
  1052. write_tx_pkt_wr(adap, skb, pi, pidx, gen, q, ndesc, compl);
  1053. check_ring_tx_db(adap, q);
  1054. return NETDEV_TX_OK;
  1055. }
  1056. /**
  1057. * write_imm - write a packet into a Tx descriptor as immediate data
  1058. * @d: the Tx descriptor to write
  1059. * @skb: the packet
  1060. * @len: the length of packet data to write as immediate data
  1061. * @gen: the generation bit value to write
  1062. *
  1063. * Writes a packet as immediate data into a Tx descriptor. The packet
  1064. * contains a work request at its beginning. We must write the packet
  1065. * carefully so the SGE doesn't read it accidentally before it's written
  1066. * in its entirety.
  1067. */
  1068. static inline void write_imm(struct tx_desc *d, struct sk_buff *skb,
  1069. unsigned int len, unsigned int gen)
  1070. {
  1071. struct work_request_hdr *from = (struct work_request_hdr *)skb->data;
  1072. struct work_request_hdr *to = (struct work_request_hdr *)d;
  1073. if (likely(!skb->data_len))
  1074. memcpy(&to[1], &from[1], len - sizeof(*from));
  1075. else
  1076. skb_copy_bits(skb, sizeof(*from), &to[1], len - sizeof(*from));
  1077. to->wr_hi = from->wr_hi | htonl(F_WR_SOP | F_WR_EOP |
  1078. V_WR_BCNTLFLT(len & 7));
  1079. wmb();
  1080. to->wr_lo = from->wr_lo | htonl(V_WR_GEN(gen) |
  1081. V_WR_LEN((len + 7) / 8));
  1082. wr_gen2(d, gen);
  1083. kfree_skb(skb);
  1084. }
  1085. /**
  1086. * check_desc_avail - check descriptor availability on a send queue
  1087. * @adap: the adapter
  1088. * @q: the send queue
  1089. * @skb: the packet needing the descriptors
  1090. * @ndesc: the number of Tx descriptors needed
  1091. * @qid: the Tx queue number in its queue set (TXQ_OFLD or TXQ_CTRL)
  1092. *
  1093. * Checks if the requested number of Tx descriptors is available on an
  1094. * SGE send queue. If the queue is already suspended or not enough
  1095. * descriptors are available the packet is queued for later transmission.
  1096. * Must be called with the Tx queue locked.
  1097. *
  1098. * Returns 0 if enough descriptors are available, 1 if there aren't
  1099. * enough descriptors and the packet has been queued, and 2 if the caller
  1100. * needs to retry because there weren't enough descriptors at the
  1101. * beginning of the call but some freed up in the mean time.
  1102. */
  1103. static inline int check_desc_avail(struct adapter *adap, struct sge_txq *q,
  1104. struct sk_buff *skb, unsigned int ndesc,
  1105. unsigned int qid)
  1106. {
  1107. if (unlikely(!skb_queue_empty(&q->sendq))) {
  1108. addq_exit:__skb_queue_tail(&q->sendq, skb);
  1109. return 1;
  1110. }
  1111. if (unlikely(q->size - q->in_use < ndesc)) {
  1112. struct sge_qset *qs = txq_to_qset(q, qid);
  1113. set_bit(qid, &qs->txq_stopped);
  1114. smp_mb__after_clear_bit();
  1115. if (should_restart_tx(q) &&
  1116. test_and_clear_bit(qid, &qs->txq_stopped))
  1117. return 2;
  1118. q->stops++;
  1119. goto addq_exit;
  1120. }
  1121. return 0;
  1122. }
  1123. /**
  1124. * reclaim_completed_tx_imm - reclaim completed control-queue Tx descs
  1125. * @q: the SGE control Tx queue
  1126. *
  1127. * This is a variant of reclaim_completed_tx() that is used for Tx queues
  1128. * that send only immediate data (presently just the control queues) and
  1129. * thus do not have any sk_buffs to release.
  1130. */
  1131. static inline void reclaim_completed_tx_imm(struct sge_txq *q)
  1132. {
  1133. unsigned int reclaim = q->processed - q->cleaned;
  1134. q->in_use -= reclaim;
  1135. q->cleaned += reclaim;
  1136. }
  1137. static inline int immediate(const struct sk_buff *skb)
  1138. {
  1139. return skb->len <= WR_LEN;
  1140. }
  1141. /**
  1142. * ctrl_xmit - send a packet through an SGE control Tx queue
  1143. * @adap: the adapter
  1144. * @q: the control queue
  1145. * @skb: the packet
  1146. *
  1147. * Send a packet through an SGE control Tx queue. Packets sent through
  1148. * a control queue must fit entirely as immediate data in a single Tx
  1149. * descriptor and have no page fragments.
  1150. */
  1151. static int ctrl_xmit(struct adapter *adap, struct sge_txq *q,
  1152. struct sk_buff *skb)
  1153. {
  1154. int ret;
  1155. struct work_request_hdr *wrp = (struct work_request_hdr *)skb->data;
  1156. if (unlikely(!immediate(skb))) {
  1157. WARN_ON(1);
  1158. dev_kfree_skb(skb);
  1159. return NET_XMIT_SUCCESS;
  1160. }
  1161. wrp->wr_hi |= htonl(F_WR_SOP | F_WR_EOP);
  1162. wrp->wr_lo = htonl(V_WR_TID(q->token));
  1163. spin_lock(&q->lock);
  1164. again:reclaim_completed_tx_imm(q);
  1165. ret = check_desc_avail(adap, q, skb, 1, TXQ_CTRL);
  1166. if (unlikely(ret)) {
  1167. if (ret == 1) {
  1168. spin_unlock(&q->lock);
  1169. return NET_XMIT_CN;
  1170. }
  1171. goto again;
  1172. }
  1173. write_imm(&q->desc[q->pidx], skb, skb->len, q->gen);
  1174. q->in_use++;
  1175. if (++q->pidx >= q->size) {
  1176. q->pidx = 0;
  1177. q->gen ^= 1;
  1178. }
  1179. spin_unlock(&q->lock);
  1180. wmb();
  1181. t3_write_reg(adap, A_SG_KDOORBELL,
  1182. F_SELEGRCNTX | V_EGRCNTX(q->cntxt_id));
  1183. return NET_XMIT_SUCCESS;
  1184. }
  1185. /**
  1186. * restart_ctrlq - restart a suspended control queue
  1187. * @qs: the queue set cotaining the control queue
  1188. *
  1189. * Resumes transmission on a suspended Tx control queue.
  1190. */
  1191. static void restart_ctrlq(unsigned long data)
  1192. {
  1193. struct sk_buff *skb;
  1194. struct sge_qset *qs = (struct sge_qset *)data;
  1195. struct sge_txq *q = &qs->txq[TXQ_CTRL];
  1196. spin_lock(&q->lock);
  1197. again:reclaim_completed_tx_imm(q);
  1198. while (q->in_use < q->size &&
  1199. (skb = __skb_dequeue(&q->sendq)) != NULL) {
  1200. write_imm(&q->desc[q->pidx], skb, skb->len, q->gen);
  1201. if (++q->pidx >= q->size) {
  1202. q->pidx = 0;
  1203. q->gen ^= 1;
  1204. }
  1205. q->in_use++;
  1206. }
  1207. if (!skb_queue_empty(&q->sendq)) {
  1208. set_bit(TXQ_CTRL, &qs->txq_stopped);
  1209. smp_mb__after_clear_bit();
  1210. if (should_restart_tx(q) &&
  1211. test_and_clear_bit(TXQ_CTRL, &qs->txq_stopped))
  1212. goto again;
  1213. q->stops++;
  1214. }
  1215. spin_unlock(&q->lock);
  1216. wmb();
  1217. t3_write_reg(qs->adap, A_SG_KDOORBELL,
  1218. F_SELEGRCNTX | V_EGRCNTX(q->cntxt_id));
  1219. }
  1220. /*
  1221. * Send a management message through control queue 0
  1222. */
  1223. int t3_mgmt_tx(struct adapter *adap, struct sk_buff *skb)
  1224. {
  1225. int ret;
  1226. local_bh_disable();
  1227. ret = ctrl_xmit(adap, &adap->sge.qs[0].txq[TXQ_CTRL], skb);
  1228. local_bh_enable();
  1229. return ret;
  1230. }
  1231. /**
  1232. * deferred_unmap_destructor - unmap a packet when it is freed
  1233. * @skb: the packet
  1234. *
  1235. * This is the packet destructor used for Tx packets that need to remain
  1236. * mapped until they are freed rather than until their Tx descriptors are
  1237. * freed.
  1238. */
  1239. static void deferred_unmap_destructor(struct sk_buff *skb)
  1240. {
  1241. int i;
  1242. const dma_addr_t *p;
  1243. const struct skb_shared_info *si;
  1244. const struct deferred_unmap_info *dui;
  1245. dui = (struct deferred_unmap_info *)skb->head;
  1246. p = dui->addr;
  1247. if (skb->tail - skb->transport_header)
  1248. pci_unmap_single(dui->pdev, *p++,
  1249. skb->tail - skb->transport_header,
  1250. PCI_DMA_TODEVICE);
  1251. si = skb_shinfo(skb);
  1252. for (i = 0; i < si->nr_frags; i++)
  1253. pci_unmap_page(dui->pdev, *p++, si->frags[i].size,
  1254. PCI_DMA_TODEVICE);
  1255. }
  1256. static void setup_deferred_unmapping(struct sk_buff *skb, struct pci_dev *pdev,
  1257. const struct sg_ent *sgl, int sgl_flits)
  1258. {
  1259. dma_addr_t *p;
  1260. struct deferred_unmap_info *dui;
  1261. dui = (struct deferred_unmap_info *)skb->head;
  1262. dui->pdev = pdev;
  1263. for (p = dui->addr; sgl_flits >= 3; sgl++, sgl_flits -= 3) {
  1264. *p++ = be64_to_cpu(sgl->addr[0]);
  1265. *p++ = be64_to_cpu(sgl->addr[1]);
  1266. }
  1267. if (sgl_flits)
  1268. *p = be64_to_cpu(sgl->addr[0]);
  1269. }
  1270. /**
  1271. * write_ofld_wr - write an offload work request
  1272. * @adap: the adapter
  1273. * @skb: the packet to send
  1274. * @q: the Tx queue
  1275. * @pidx: index of the first Tx descriptor to write
  1276. * @gen: the generation value to use
  1277. * @ndesc: number of descriptors the packet will occupy
  1278. *
  1279. * Write an offload work request to send the supplied packet. The packet
  1280. * data already carry the work request with most fields populated.
  1281. */
  1282. static void write_ofld_wr(struct adapter *adap, struct sk_buff *skb,
  1283. struct sge_txq *q, unsigned int pidx,
  1284. unsigned int gen, unsigned int ndesc)
  1285. {
  1286. unsigned int sgl_flits, flits;
  1287. struct work_request_hdr *from;
  1288. struct sg_ent *sgp, sgl[MAX_SKB_FRAGS / 2 + 1];
  1289. struct tx_desc *d = &q->desc[pidx];
  1290. if (immediate(skb)) {
  1291. q->sdesc[pidx].skb = NULL;
  1292. write_imm(d, skb, skb->len, gen);
  1293. return;
  1294. }
  1295. /* Only TX_DATA builds SGLs */
  1296. from = (struct work_request_hdr *)skb->data;
  1297. memcpy(&d->flit[1], &from[1],
  1298. skb_transport_offset(skb) - sizeof(*from));
  1299. flits = skb_transport_offset(skb) / 8;
  1300. sgp = ndesc == 1 ? (struct sg_ent *)&d->flit[flits] : sgl;
  1301. sgl_flits = make_sgl(skb, sgp, skb_transport_header(skb),
  1302. skb->tail - skb->transport_header,
  1303. adap->pdev);
  1304. if (need_skb_unmap()) {
  1305. setup_deferred_unmapping(skb, adap->pdev, sgp, sgl_flits);
  1306. skb->destructor = deferred_unmap_destructor;
  1307. }
  1308. write_wr_hdr_sgl(ndesc, skb, d, pidx, q, sgl, flits, sgl_flits,
  1309. gen, from->wr_hi, from->wr_lo);
  1310. }
  1311. /**
  1312. * calc_tx_descs_ofld - calculate # of Tx descriptors for an offload packet
  1313. * @skb: the packet
  1314. *
  1315. * Returns the number of Tx descriptors needed for the given offload
  1316. * packet. These packets are already fully constructed.
  1317. */
  1318. static inline unsigned int calc_tx_descs_ofld(const struct sk_buff *skb)
  1319. {
  1320. unsigned int flits, cnt;
  1321. if (skb->len <= WR_LEN)
  1322. return 1; /* packet fits as immediate data */
  1323. flits = skb_transport_offset(skb) / 8; /* headers */
  1324. cnt = skb_shinfo(skb)->nr_frags;
  1325. if (skb->tail != skb->transport_header)
  1326. cnt++;
  1327. return flits_to_desc(flits + sgl_len(cnt));
  1328. }
  1329. /**
  1330. * ofld_xmit - send a packet through an offload queue
  1331. * @adap: the adapter
  1332. * @q: the Tx offload queue
  1333. * @skb: the packet
  1334. *
  1335. * Send an offload packet through an SGE offload queue.
  1336. */
  1337. static int ofld_xmit(struct adapter *adap, struct sge_txq *q,
  1338. struct sk_buff *skb)
  1339. {
  1340. int ret;
  1341. unsigned int ndesc = calc_tx_descs_ofld(skb), pidx, gen;
  1342. spin_lock(&q->lock);
  1343. again:reclaim_completed_tx(adap, q);
  1344. ret = check_desc_avail(adap, q, skb, ndesc, TXQ_OFLD);
  1345. if (unlikely(ret)) {
  1346. if (ret == 1) {
  1347. skb->priority = ndesc; /* save for restart */
  1348. spin_unlock(&q->lock);
  1349. return NET_XMIT_CN;
  1350. }
  1351. goto again;
  1352. }
  1353. gen = q->gen;
  1354. q->in_use += ndesc;
  1355. pidx = q->pidx;
  1356. q->pidx += ndesc;
  1357. if (q->pidx >= q->size) {
  1358. q->pidx -= q->size;
  1359. q->gen ^= 1;
  1360. }
  1361. spin_unlock(&q->lock);
  1362. write_ofld_wr(adap, skb, q, pidx, gen, ndesc);
  1363. check_ring_tx_db(adap, q);
  1364. return NET_XMIT_SUCCESS;
  1365. }
  1366. /**
  1367. * restart_offloadq - restart a suspended offload queue
  1368. * @qs: the queue set cotaining the offload queue
  1369. *
  1370. * Resumes transmission on a suspended Tx offload queue.
  1371. */
  1372. static void restart_offloadq(unsigned long data)
  1373. {
  1374. struct sk_buff *skb;
  1375. struct sge_qset *qs = (struct sge_qset *)data;
  1376. struct sge_txq *q = &qs->txq[TXQ_OFLD];
  1377. const struct port_info *pi = netdev_priv(qs->netdev);
  1378. struct adapter *adap = pi->adapter;
  1379. spin_lock(&q->lock);
  1380. again:reclaim_completed_tx(adap, q);
  1381. while ((skb = skb_peek(&q->sendq)) != NULL) {
  1382. unsigned int gen, pidx;
  1383. unsigned int ndesc = skb->priority;
  1384. if (unlikely(q->size - q->in_use < ndesc)) {
  1385. set_bit(TXQ_OFLD, &qs->txq_stopped);
  1386. smp_mb__after_clear_bit();
  1387. if (should_restart_tx(q) &&
  1388. test_and_clear_bit(TXQ_OFLD, &qs->txq_stopped))
  1389. goto again;
  1390. q->stops++;
  1391. break;
  1392. }
  1393. gen = q->gen;
  1394. q->in_use += ndesc;
  1395. pidx = q->pidx;
  1396. q->pidx += ndesc;
  1397. if (q->pidx >= q->size) {
  1398. q->pidx -= q->size;
  1399. q->gen ^= 1;
  1400. }
  1401. __skb_unlink(skb, &q->sendq);
  1402. spin_unlock(&q->lock);
  1403. write_ofld_wr(adap, skb, q, pidx, gen, ndesc);
  1404. spin_lock(&q->lock);
  1405. }
  1406. spin_unlock(&q->lock);
  1407. #if USE_GTS
  1408. set_bit(TXQ_RUNNING, &q->flags);
  1409. set_bit(TXQ_LAST_PKT_DB, &q->flags);
  1410. #endif
  1411. wmb();
  1412. t3_write_reg(adap, A_SG_KDOORBELL,
  1413. F_SELEGRCNTX | V_EGRCNTX(q->cntxt_id));
  1414. }
  1415. /**
  1416. * queue_set - return the queue set a packet should use
  1417. * @skb: the packet
  1418. *
  1419. * Maps a packet to the SGE queue set it should use. The desired queue
  1420. * set is carried in bits 1-3 in the packet's priority.
  1421. */
  1422. static inline int queue_set(const struct sk_buff *skb)
  1423. {
  1424. return skb->priority >> 1;
  1425. }
  1426. /**
  1427. * is_ctrl_pkt - return whether an offload packet is a control packet
  1428. * @skb: the packet
  1429. *
  1430. * Determines whether an offload packet should use an OFLD or a CTRL
  1431. * Tx queue. This is indicated by bit 0 in the packet's priority.
  1432. */
  1433. static inline int is_ctrl_pkt(const struct sk_buff *skb)
  1434. {
  1435. return skb->priority & 1;
  1436. }
  1437. /**
  1438. * t3_offload_tx - send an offload packet
  1439. * @tdev: the offload device to send to
  1440. * @skb: the packet
  1441. *
  1442. * Sends an offload packet. We use the packet priority to select the
  1443. * appropriate Tx queue as follows: bit 0 indicates whether the packet
  1444. * should be sent as regular or control, bits 1-3 select the queue set.
  1445. */
  1446. int t3_offload_tx(struct t3cdev *tdev, struct sk_buff *skb)
  1447. {
  1448. struct adapter *adap = tdev2adap(tdev);
  1449. struct sge_qset *qs = &adap->sge.qs[queue_set(skb)];
  1450. if (unlikely(is_ctrl_pkt(skb)))
  1451. return ctrl_xmit(adap, &qs->txq[TXQ_CTRL], skb);
  1452. return ofld_xmit(adap, &qs->txq[TXQ_OFLD], skb);
  1453. }
  1454. /**
  1455. * offload_enqueue - add an offload packet to an SGE offload receive queue
  1456. * @q: the SGE response queue
  1457. * @skb: the packet
  1458. *
  1459. * Add a new offload packet to an SGE response queue's offload packet
  1460. * queue. If the packet is the first on the queue it schedules the RX
  1461. * softirq to process the queue.
  1462. */
  1463. static inline void offload_enqueue(struct sge_rspq *q, struct sk_buff *skb)
  1464. {
  1465. skb->next = skb->prev = NULL;
  1466. if (q->rx_tail)
  1467. q->rx_tail->next = skb;
  1468. else {
  1469. struct sge_qset *qs = rspq_to_qset(q);
  1470. napi_schedule(&qs->napi);
  1471. q->rx_head = skb;
  1472. }
  1473. q->rx_tail = skb;
  1474. }
  1475. /**
  1476. * deliver_partial_bundle - deliver a (partial) bundle of Rx offload pkts
  1477. * @tdev: the offload device that will be receiving the packets
  1478. * @q: the SGE response queue that assembled the bundle
  1479. * @skbs: the partial bundle
  1480. * @n: the number of packets in the bundle
  1481. *
  1482. * Delivers a (partial) bundle of Rx offload packets to an offload device.
  1483. */
  1484. static inline void deliver_partial_bundle(struct t3cdev *tdev,
  1485. struct sge_rspq *q,
  1486. struct sk_buff *skbs[], int n)
  1487. {
  1488. if (n) {
  1489. q->offload_bundles++;
  1490. tdev->recv(tdev, skbs, n);
  1491. }
  1492. }
  1493. /**
  1494. * ofld_poll - NAPI handler for offload packets in interrupt mode
  1495. * @dev: the network device doing the polling
  1496. * @budget: polling budget
  1497. *
  1498. * The NAPI handler for offload packets when a response queue is serviced
  1499. * by the hard interrupt handler, i.e., when it's operating in non-polling
  1500. * mode. Creates small packet batches and sends them through the offload
  1501. * receive handler. Batches need to be of modest size as we do prefetches
  1502. * on the packets in each.
  1503. */
  1504. static int ofld_poll(struct napi_struct *napi, int budget)
  1505. {
  1506. struct sge_qset *qs = container_of(napi, struct sge_qset, napi);
  1507. struct sge_rspq *q = &qs->rspq;
  1508. struct adapter *adapter = qs->adap;
  1509. int work_done = 0;
  1510. while (work_done < budget) {
  1511. struct sk_buff *head, *tail, *skbs[RX_BUNDLE_SIZE];
  1512. int ngathered;
  1513. spin_lock_irq(&q->lock);
  1514. head = q->rx_head;
  1515. if (!head) {
  1516. napi_complete(napi);
  1517. spin_unlock_irq(&q->lock);
  1518. return work_done;
  1519. }
  1520. tail = q->rx_tail;
  1521. q->rx_head = q->rx_tail = NULL;
  1522. spin_unlock_irq(&q->lock);
  1523. for (ngathered = 0; work_done < budget && head; work_done++) {
  1524. prefetch(head->data);
  1525. skbs[ngathered] = head;
  1526. head = head->next;
  1527. skbs[ngathered]->next = NULL;
  1528. if (++ngathered == RX_BUNDLE_SIZE) {
  1529. q->offload_bundles++;
  1530. adapter->tdev.recv(&adapter->tdev, skbs,
  1531. ngathered);
  1532. ngathered = 0;
  1533. }
  1534. }
  1535. if (head) { /* splice remaining packets back onto Rx queue */
  1536. spin_lock_irq(&q->lock);
  1537. tail->next = q->rx_head;
  1538. if (!q->rx_head)
  1539. q->rx_tail = tail;
  1540. q->rx_head = head;
  1541. spin_unlock_irq(&q->lock);
  1542. }
  1543. deliver_partial_bundle(&adapter->tdev, q, skbs, ngathered);
  1544. }
  1545. return work_done;
  1546. }
  1547. /**
  1548. * rx_offload - process a received offload packet
  1549. * @tdev: the offload device receiving the packet
  1550. * @rq: the response queue that received the packet
  1551. * @skb: the packet
  1552. * @rx_gather: a gather list of packets if we are building a bundle
  1553. * @gather_idx: index of the next available slot in the bundle
  1554. *
  1555. * Process an ingress offload pakcet and add it to the offload ingress
  1556. * queue. Returns the index of the next available slot in the bundle.
  1557. */
  1558. static inline int rx_offload(struct t3cdev *tdev, struct sge_rspq *rq,
  1559. struct sk_buff *skb, struct sk_buff *rx_gather[],
  1560. unsigned int gather_idx)
  1561. {
  1562. skb_reset_mac_header(skb);
  1563. skb_reset_network_header(skb);
  1564. skb_reset_transport_header(skb);
  1565. if (rq->polling) {
  1566. rx_gather[gather_idx++] = skb;
  1567. if (gather_idx == RX_BUNDLE_SIZE) {
  1568. tdev->recv(tdev, rx_gather, RX_BUNDLE_SIZE);
  1569. gather_idx = 0;
  1570. rq->offload_bundles++;
  1571. }
  1572. } else
  1573. offload_enqueue(rq, skb);
  1574. return gather_idx;
  1575. }
  1576. /**
  1577. * restart_tx - check whether to restart suspended Tx queues
  1578. * @qs: the queue set to resume
  1579. *
  1580. * Restarts suspended Tx queues of an SGE queue set if they have enough
  1581. * free resources to resume operation.
  1582. */
  1583. static void restart_tx(struct sge_qset *qs)
  1584. {
  1585. if (test_bit(TXQ_ETH, &qs->txq_stopped) &&
  1586. should_restart_tx(&qs->txq[TXQ_ETH]) &&
  1587. test_and_clear_bit(TXQ_ETH, &qs->txq_stopped)) {
  1588. qs->txq[TXQ_ETH].restarts++;
  1589. if (netif_running(qs->netdev))
  1590. netif_wake_queue(qs->netdev);
  1591. }
  1592. if (test_bit(TXQ_OFLD, &qs->txq_stopped) &&
  1593. should_restart_tx(&qs->txq[TXQ_OFLD]) &&
  1594. test_and_clear_bit(TXQ_OFLD, &qs->txq_stopped)) {
  1595. qs->txq[TXQ_OFLD].restarts++;
  1596. tasklet_schedule(&qs->txq[TXQ_OFLD].qresume_tsk);
  1597. }
  1598. if (test_bit(TXQ_CTRL, &qs->txq_stopped) &&
  1599. should_restart_tx(&qs->txq[TXQ_CTRL]) &&
  1600. test_and_clear_bit(TXQ_CTRL, &qs->txq_stopped)) {
  1601. qs->txq[TXQ_CTRL].restarts++;
  1602. tasklet_schedule(&qs->txq[TXQ_CTRL].qresume_tsk);
  1603. }
  1604. }
  1605. /**
  1606. * rx_eth - process an ingress ethernet packet
  1607. * @adap: the adapter
  1608. * @rq: the response queue that received the packet
  1609. * @skb: the packet
  1610. * @pad: amount of padding at the start of the buffer
  1611. *
  1612. * Process an ingress ethernet pakcet and deliver it to the stack.
  1613. * The padding is 2 if the packet was delivered in an Rx buffer and 0
  1614. * if it was immediate data in a response.
  1615. */
  1616. static void rx_eth(struct adapter *adap, struct sge_rspq *rq,
  1617. struct sk_buff *skb, int pad)
  1618. {
  1619. struct cpl_rx_pkt *p = (struct cpl_rx_pkt *)(skb->data + pad);
  1620. struct port_info *pi;
  1621. skb_pull(skb, sizeof(*p) + pad);
  1622. skb->protocol = eth_type_trans(skb, adap->port[p->iff]);
  1623. skb->dev->last_rx = jiffies;
  1624. pi = netdev_priv(skb->dev);
  1625. if (pi->rx_csum_offload && p->csum_valid && p->csum == htons(0xffff) &&
  1626. !p->fragment) {
  1627. rspq_to_qset(rq)->port_stats[SGE_PSTAT_RX_CSUM_GOOD]++;
  1628. skb->ip_summed = CHECKSUM_UNNECESSARY;
  1629. } else
  1630. skb->ip_summed = CHECKSUM_NONE;
  1631. if (unlikely(p->vlan_valid)) {
  1632. struct vlan_group *grp = pi->vlan_grp;
  1633. rspq_to_qset(rq)->port_stats[SGE_PSTAT_VLANEX]++;
  1634. if (likely(grp))
  1635. __vlan_hwaccel_rx(skb, grp, ntohs(p->vlan),
  1636. rq->polling);
  1637. else
  1638. dev_kfree_skb_any(skb);
  1639. } else if (rq->polling)
  1640. netif_receive_skb(skb);
  1641. else
  1642. netif_rx(skb);
  1643. }
  1644. /**
  1645. * handle_rsp_cntrl_info - handles control information in a response
  1646. * @qs: the queue set corresponding to the response
  1647. * @flags: the response control flags
  1648. *
  1649. * Handles the control information of an SGE response, such as GTS
  1650. * indications and completion credits for the queue set's Tx queues.
  1651. * HW coalesces credits, we don't do any extra SW coalescing.
  1652. */
  1653. static inline void handle_rsp_cntrl_info(struct sge_qset *qs, u32 flags)
  1654. {
  1655. unsigned int credits;
  1656. #if USE_GTS
  1657. if (flags & F_RSPD_TXQ0_GTS)
  1658. clear_bit(TXQ_RUNNING, &qs->txq[TXQ_ETH].flags);
  1659. #endif
  1660. credits = G_RSPD_TXQ0_CR(flags);
  1661. if (credits)
  1662. qs->txq[TXQ_ETH].processed += credits;
  1663. credits = G_RSPD_TXQ2_CR(flags);
  1664. if (credits)
  1665. qs->txq[TXQ_CTRL].processed += credits;
  1666. # if USE_GTS
  1667. if (flags & F_RSPD_TXQ1_GTS)
  1668. clear_bit(TXQ_RUNNING, &qs->txq[TXQ_OFLD].flags);
  1669. # endif
  1670. credits = G_RSPD_TXQ1_CR(flags);
  1671. if (credits)
  1672. qs->txq[TXQ_OFLD].processed += credits;
  1673. }
  1674. /**
  1675. * check_ring_db - check if we need to ring any doorbells
  1676. * @adapter: the adapter
  1677. * @qs: the queue set whose Tx queues are to be examined
  1678. * @sleeping: indicates which Tx queue sent GTS
  1679. *
  1680. * Checks if some of a queue set's Tx queues need to ring their doorbells
  1681. * to resume transmission after idling while they still have unprocessed
  1682. * descriptors.
  1683. */
  1684. static void check_ring_db(struct adapter *adap, struct sge_qset *qs,
  1685. unsigned int sleeping)
  1686. {
  1687. if (sleeping & F_RSPD_TXQ0_GTS) {
  1688. struct sge_txq *txq = &qs->txq[TXQ_ETH];
  1689. if (txq->cleaned + txq->in_use != txq->processed &&
  1690. !test_and_set_bit(TXQ_LAST_PKT_DB, &txq->flags)) {
  1691. set_bit(TXQ_RUNNING, &txq->flags);
  1692. t3_write_reg(adap, A_SG_KDOORBELL, F_SELEGRCNTX |
  1693. V_EGRCNTX(txq->cntxt_id));
  1694. }
  1695. }
  1696. if (sleeping & F_RSPD_TXQ1_GTS) {
  1697. struct sge_txq *txq = &qs->txq[TXQ_OFLD];
  1698. if (txq->cleaned + txq->in_use != txq->processed &&
  1699. !test_and_set_bit(TXQ_LAST_PKT_DB, &txq->flags)) {
  1700. set_bit(TXQ_RUNNING, &txq->flags);
  1701. t3_write_reg(adap, A_SG_KDOORBELL, F_SELEGRCNTX |
  1702. V_EGRCNTX(txq->cntxt_id));
  1703. }
  1704. }
  1705. }
  1706. /**
  1707. * is_new_response - check if a response is newly written
  1708. * @r: the response descriptor
  1709. * @q: the response queue
  1710. *
  1711. * Returns true if a response descriptor contains a yet unprocessed
  1712. * response.
  1713. */
  1714. static inline int is_new_response(const struct rsp_desc *r,
  1715. const struct sge_rspq *q)
  1716. {
  1717. return (r->intr_gen & F_RSPD_GEN2) == q->gen;
  1718. }
  1719. #define RSPD_GTS_MASK (F_RSPD_TXQ0_GTS | F_RSPD_TXQ1_GTS)
  1720. #define RSPD_CTRL_MASK (RSPD_GTS_MASK | \
  1721. V_RSPD_TXQ0_CR(M_RSPD_TXQ0_CR) | \
  1722. V_RSPD_TXQ1_CR(M_RSPD_TXQ1_CR) | \
  1723. V_RSPD_TXQ2_CR(M_RSPD_TXQ2_CR))
  1724. /* How long to delay the next interrupt in case of memory shortage, in 0.1us. */
  1725. #define NOMEM_INTR_DELAY 2500
  1726. /**
  1727. * process_responses - process responses from an SGE response queue
  1728. * @adap: the adapter
  1729. * @qs: the queue set to which the response queue belongs
  1730. * @budget: how many responses can be processed in this round
  1731. *
  1732. * Process responses from an SGE response queue up to the supplied budget.
  1733. * Responses include received packets as well as credits and other events
  1734. * for the queues that belong to the response queue's queue set.
  1735. * A negative budget is effectively unlimited.
  1736. *
  1737. * Additionally choose the interrupt holdoff time for the next interrupt
  1738. * on this queue. If the system is under memory shortage use a fairly
  1739. * long delay to help recovery.
  1740. */
  1741. static int process_responses(struct adapter *adap, struct sge_qset *qs,
  1742. int budget)
  1743. {
  1744. struct sge_rspq *q = &qs->rspq;
  1745. struct rsp_desc *r = &q->desc[q->cidx];
  1746. int budget_left = budget;
  1747. unsigned int sleeping = 0;
  1748. struct sk_buff *offload_skbs[RX_BUNDLE_SIZE];
  1749. int ngathered = 0;
  1750. q->next_holdoff = q->holdoff_tmr;
  1751. while (likely(budget_left && is_new_response(r, q))) {
  1752. int eth, ethpad = 2;
  1753. struct sk_buff *skb = NULL;
  1754. u32 len, flags = ntohl(r->flags);
  1755. __be32 rss_hi = *(const __be32 *)r, rss_lo = r->rss_hdr.rss_hash_val;
  1756. eth = r->rss_hdr.opcode == CPL_RX_PKT;
  1757. if (unlikely(flags & F_RSPD_ASYNC_NOTIF)) {
  1758. skb = alloc_skb(AN_PKT_SIZE, GFP_ATOMIC);
  1759. if (!skb)
  1760. goto no_mem;
  1761. memcpy(__skb_put(skb, AN_PKT_SIZE), r, AN_PKT_SIZE);
  1762. skb->data[0] = CPL_ASYNC_NOTIF;
  1763. rss_hi = htonl(CPL_ASYNC_NOTIF << 24);
  1764. q->async_notif++;
  1765. } else if (flags & F_RSPD_IMM_DATA_VALID) {
  1766. skb = get_imm_packet(r);
  1767. if (unlikely(!skb)) {
  1768. no_mem:
  1769. q->next_holdoff = NOMEM_INTR_DELAY;
  1770. q->nomem++;
  1771. /* consume one credit since we tried */
  1772. budget_left--;
  1773. break;
  1774. }
  1775. q->imm_data++;
  1776. ethpad = 0;
  1777. } else if ((len = ntohl(r->len_cq)) != 0) {
  1778. struct sge_fl *fl;
  1779. fl = (len & F_RSPD_FLQ) ? &qs->fl[1] : &qs->fl[0];
  1780. if (fl->use_pages) {
  1781. void *addr = fl->sdesc[fl->cidx].pg_chunk.va;
  1782. prefetch(addr);
  1783. #if L1_CACHE_BYTES < 128
  1784. prefetch(addr + L1_CACHE_BYTES);
  1785. #endif
  1786. __refill_fl(adap, fl);
  1787. skb = get_packet_pg(adap, fl, G_RSPD_LEN(len),
  1788. eth ? SGE_RX_DROP_THRES : 0);
  1789. } else
  1790. skb = get_packet(adap, fl, G_RSPD_LEN(len),
  1791. eth ? SGE_RX_DROP_THRES : 0);
  1792. if (unlikely(!skb)) {
  1793. if (!eth)
  1794. goto no_mem;
  1795. q->rx_drops++;
  1796. } else if (unlikely(r->rss_hdr.opcode == CPL_TRACE_PKT))
  1797. __skb_pull(skb, 2);
  1798. if (++fl->cidx == fl->size)
  1799. fl->cidx = 0;
  1800. } else
  1801. q->pure_rsps++;
  1802. if (flags & RSPD_CTRL_MASK) {
  1803. sleeping |= flags & RSPD_GTS_MASK;
  1804. handle_rsp_cntrl_info(qs, flags);
  1805. }
  1806. r++;
  1807. if (unlikely(++q->cidx == q->size)) {
  1808. q->cidx = 0;
  1809. q->gen ^= 1;
  1810. r = q->desc;
  1811. }
  1812. prefetch(r);
  1813. if (++q->credits >= (q->size / 4)) {
  1814. refill_rspq(adap, q, q->credits);
  1815. q->credits = 0;
  1816. }
  1817. if (likely(skb != NULL)) {
  1818. if (eth)
  1819. rx_eth(adap, q, skb, ethpad);
  1820. else {
  1821. q->offload_pkts++;
  1822. /* Preserve the RSS info in csum & priority */
  1823. skb->csum = rss_hi;
  1824. skb->priority = rss_lo;
  1825. ngathered = rx_offload(&adap->tdev, q, skb,
  1826. offload_skbs,
  1827. ngathered);
  1828. }
  1829. }
  1830. --budget_left;
  1831. }
  1832. deliver_partial_bundle(&adap->tdev, q, offload_skbs, ngathered);
  1833. if (sleeping)
  1834. check_ring_db(adap, qs, sleeping);
  1835. smp_mb(); /* commit Tx queue .processed updates */
  1836. if (unlikely(qs->txq_stopped != 0))
  1837. restart_tx(qs);
  1838. budget -= budget_left;
  1839. return budget;
  1840. }
  1841. static inline int is_pure_response(const struct rsp_desc *r)
  1842. {
  1843. u32 n = ntohl(r->flags) & (F_RSPD_ASYNC_NOTIF | F_RSPD_IMM_DATA_VALID);
  1844. return (n | r->len_cq) == 0;
  1845. }
  1846. /**
  1847. * napi_rx_handler - the NAPI handler for Rx processing
  1848. * @napi: the napi instance
  1849. * @budget: how many packets we can process in this round
  1850. *
  1851. * Handler for new data events when using NAPI.
  1852. */
  1853. static int napi_rx_handler(struct napi_struct *napi, int budget)
  1854. {
  1855. struct sge_qset *qs = container_of(napi, struct sge_qset, napi);
  1856. struct adapter *adap = qs->adap;
  1857. int work_done = process_responses(adap, qs, budget);
  1858. if (likely(work_done < budget)) {
  1859. napi_complete(napi);
  1860. /*
  1861. * Because we don't atomically flush the following
  1862. * write it is possible that in very rare cases it can
  1863. * reach the device in a way that races with a new
  1864. * response being written plus an error interrupt
  1865. * causing the NAPI interrupt handler below to return
  1866. * unhandled status to the OS. To protect against
  1867. * this would require flushing the write and doing
  1868. * both the write and the flush with interrupts off.
  1869. * Way too expensive and unjustifiable given the
  1870. * rarity of the race.
  1871. *
  1872. * The race cannot happen at all with MSI-X.
  1873. */
  1874. t3_write_reg(adap, A_SG_GTS, V_RSPQ(qs->rspq.cntxt_id) |
  1875. V_NEWTIMER(qs->rspq.next_holdoff) |
  1876. V_NEWINDEX(qs->rspq.cidx));
  1877. }
  1878. return work_done;
  1879. }
  1880. /*
  1881. * Returns true if the device is already scheduled for polling.
  1882. */
  1883. static inline int napi_is_scheduled(struct napi_struct *napi)
  1884. {
  1885. return test_bit(NAPI_STATE_SCHED, &napi->state);
  1886. }
  1887. /**
  1888. * process_pure_responses - process pure responses from a response queue
  1889. * @adap: the adapter
  1890. * @qs: the queue set owning the response queue
  1891. * @r: the first pure response to process
  1892. *
  1893. * A simpler version of process_responses() that handles only pure (i.e.,
  1894. * non data-carrying) responses. Such respones are too light-weight to
  1895. * justify calling a softirq under NAPI, so we handle them specially in
  1896. * the interrupt handler. The function is called with a pointer to a
  1897. * response, which the caller must ensure is a valid pure response.
  1898. *
  1899. * Returns 1 if it encounters a valid data-carrying response, 0 otherwise.
  1900. */
  1901. static int process_pure_responses(struct adapter *adap, struct sge_qset *qs,
  1902. struct rsp_desc *r)
  1903. {
  1904. struct sge_rspq *q = &qs->rspq;
  1905. unsigned int sleeping = 0;
  1906. do {
  1907. u32 flags = ntohl(r->flags);
  1908. r++;
  1909. if (unlikely(++q->cidx == q->size)) {
  1910. q->cidx = 0;
  1911. q->gen ^= 1;
  1912. r = q->desc;
  1913. }
  1914. prefetch(r);
  1915. if (flags & RSPD_CTRL_MASK) {
  1916. sleeping |= flags & RSPD_GTS_MASK;
  1917. handle_rsp_cntrl_info(qs, flags);
  1918. }
  1919. q->pure_rsps++;
  1920. if (++q->credits >= (q->size / 4)) {
  1921. refill_rspq(adap, q, q->credits);
  1922. q->credits = 0;
  1923. }
  1924. } while (is_new_response(r, q) && is_pure_response(r));
  1925. if (sleeping)
  1926. check_ring_db(adap, qs, sleeping);
  1927. smp_mb(); /* commit Tx queue .processed updates */
  1928. if (unlikely(qs->txq_stopped != 0))
  1929. restart_tx(qs);
  1930. return is_new_response(r, q);
  1931. }
  1932. /**
  1933. * handle_responses - decide what to do with new responses in NAPI mode
  1934. * @adap: the adapter
  1935. * @q: the response queue
  1936. *
  1937. * This is used by the NAPI interrupt handlers to decide what to do with
  1938. * new SGE responses. If there are no new responses it returns -1. If
  1939. * there are new responses and they are pure (i.e., non-data carrying)
  1940. * it handles them straight in hard interrupt context as they are very
  1941. * cheap and don't deliver any packets. Finally, if there are any data
  1942. * signaling responses it schedules the NAPI handler. Returns 1 if it
  1943. * schedules NAPI, 0 if all new responses were pure.
  1944. *
  1945. * The caller must ascertain NAPI is not already running.
  1946. */
  1947. static inline int handle_responses(struct adapter *adap, struct sge_rspq *q)
  1948. {
  1949. struct sge_qset *qs = rspq_to_qset(q);
  1950. struct rsp_desc *r = &q->desc[q->cidx];
  1951. if (!is_new_response(r, q))
  1952. return -1;
  1953. if (is_pure_response(r) && process_pure_responses(adap, qs, r) == 0) {
  1954. t3_write_reg(adap, A_SG_GTS, V_RSPQ(q->cntxt_id) |
  1955. V_NEWTIMER(q->holdoff_tmr) | V_NEWINDEX(q->cidx));
  1956. return 0;
  1957. }
  1958. napi_schedule(&qs->napi);
  1959. return 1;
  1960. }
  1961. /*
  1962. * The MSI-X interrupt handler for an SGE response queue for the non-NAPI case
  1963. * (i.e., response queue serviced in hard interrupt).
  1964. */
  1965. irqreturn_t t3_sge_intr_msix(int irq, void *cookie)
  1966. {
  1967. struct sge_qset *qs = cookie;
  1968. struct adapter *adap = qs->adap;
  1969. struct sge_rspq *q = &qs->rspq;
  1970. spin_lock(&q->lock);
  1971. if (process_responses(adap, qs, -1) == 0)
  1972. q->unhandled_irqs++;
  1973. t3_write_reg(adap, A_SG_GTS, V_RSPQ(q->cntxt_id) |
  1974. V_NEWTIMER(q->next_holdoff) | V_NEWINDEX(q->cidx));
  1975. spin_unlock(&q->lock);
  1976. return IRQ_HANDLED;
  1977. }
  1978. /*
  1979. * The MSI-X interrupt handler for an SGE response queue for the NAPI case
  1980. * (i.e., response queue serviced by NAPI polling).
  1981. */
  1982. static irqreturn_t t3_sge_intr_msix_napi(int irq, void *cookie)
  1983. {
  1984. struct sge_qset *qs = cookie;
  1985. struct sge_rspq *q = &qs->rspq;
  1986. spin_lock(&q->lock);
  1987. if (handle_responses(qs->adap, q) < 0)
  1988. q->unhandled_irqs++;
  1989. spin_unlock(&q->lock);
  1990. return IRQ_HANDLED;
  1991. }
  1992. /*
  1993. * The non-NAPI MSI interrupt handler. This needs to handle data events from
  1994. * SGE response queues as well as error and other async events as they all use
  1995. * the same MSI vector. We use one SGE response queue per port in this mode
  1996. * and protect all response queues with queue 0's lock.
  1997. */
  1998. static irqreturn_t t3_intr_msi(int irq, void *cookie)
  1999. {
  2000. int new_packets = 0;
  2001. struct adapter *adap = cookie;
  2002. struct sge_rspq *q = &adap->sge.qs[0].rspq;
  2003. spin_lock(&q->lock);
  2004. if (process_responses(adap, &adap->sge.qs[0], -1)) {
  2005. t3_write_reg(adap, A_SG_GTS, V_RSPQ(q->cntxt_id) |
  2006. V_NEWTIMER(q->next_holdoff) | V_NEWINDEX(q->cidx));
  2007. new_packets = 1;
  2008. }
  2009. if (adap->params.nports == 2 &&
  2010. process_responses(adap, &adap->sge.qs[1], -1)) {
  2011. struct sge_rspq *q1 = &adap->sge.qs[1].rspq;
  2012. t3_write_reg(adap, A_SG_GTS, V_RSPQ(q1->cntxt_id) |
  2013. V_NEWTIMER(q1->next_holdoff) |
  2014. V_NEWINDEX(q1->cidx));
  2015. new_packets = 1;
  2016. }
  2017. if (!new_packets && t3_slow_intr_handler(adap) == 0)
  2018. q->unhandled_irqs++;
  2019. spin_unlock(&q->lock);
  2020. return IRQ_HANDLED;
  2021. }
  2022. static int rspq_check_napi(struct sge_qset *qs)
  2023. {
  2024. struct sge_rspq *q = &qs->rspq;
  2025. if (!napi_is_scheduled(&qs->napi) &&
  2026. is_new_response(&q->desc[q->cidx], q)) {
  2027. napi_schedule(&qs->napi);
  2028. return 1;
  2029. }
  2030. return 0;
  2031. }
  2032. /*
  2033. * The MSI interrupt handler for the NAPI case (i.e., response queues serviced
  2034. * by NAPI polling). Handles data events from SGE response queues as well as
  2035. * error and other async events as they all use the same MSI vector. We use
  2036. * one SGE response queue per port in this mode and protect all response
  2037. * queues with queue 0's lock.
  2038. */
  2039. static irqreturn_t t3_intr_msi_napi(int irq, void *cookie)
  2040. {
  2041. int new_packets;
  2042. struct adapter *adap = cookie;
  2043. struct sge_rspq *q = &adap->sge.qs[0].rspq;
  2044. spin_lock(&q->lock);
  2045. new_packets = rspq_check_napi(&adap->sge.qs[0]);
  2046. if (adap->params.nports == 2)
  2047. new_packets += rspq_check_napi(&adap->sge.qs[1]);
  2048. if (!new_packets && t3_slow_intr_handler(adap) == 0)
  2049. q->unhandled_irqs++;
  2050. spin_unlock(&q->lock);
  2051. return IRQ_HANDLED;
  2052. }
  2053. /*
  2054. * A helper function that processes responses and issues GTS.
  2055. */
  2056. static inline int process_responses_gts(struct adapter *adap,
  2057. struct sge_rspq *rq)
  2058. {
  2059. int work;
  2060. work = process_responses(adap, rspq_to_qset(rq), -1);
  2061. t3_write_reg(adap, A_SG_GTS, V_RSPQ(rq->cntxt_id) |
  2062. V_NEWTIMER(rq->next_holdoff) | V_NEWINDEX(rq->cidx));
  2063. return work;
  2064. }
  2065. /*
  2066. * The legacy INTx interrupt handler. This needs to handle data events from
  2067. * SGE response queues as well as error and other async events as they all use
  2068. * the same interrupt pin. We use one SGE response queue per port in this mode
  2069. * and protect all response queues with queue 0's lock.
  2070. */
  2071. static irqreturn_t t3_intr(int irq, void *cookie)
  2072. {
  2073. int work_done, w0, w1;
  2074. struct adapter *adap = cookie;
  2075. struct sge_rspq *q0 = &adap->sge.qs[0].rspq;
  2076. struct sge_rspq *q1 = &adap->sge.qs[1].rspq;
  2077. spin_lock(&q0->lock);
  2078. w0 = is_new_response(&q0->desc[q0->cidx], q0);
  2079. w1 = adap->params.nports == 2 &&
  2080. is_new_response(&q1->desc[q1->cidx], q1);
  2081. if (likely(w0 | w1)) {
  2082. t3_write_reg(adap, A_PL_CLI, 0);
  2083. t3_read_reg(adap, A_PL_CLI); /* flush */
  2084. if (likely(w0))
  2085. process_responses_gts(adap, q0);
  2086. if (w1)
  2087. process_responses_gts(adap, q1);
  2088. work_done = w0 | w1;
  2089. } else
  2090. work_done = t3_slow_intr_handler(adap);
  2091. spin_unlock(&q0->lock);
  2092. return IRQ_RETVAL(work_done != 0);
  2093. }
  2094. /*
  2095. * Interrupt handler for legacy INTx interrupts for T3B-based cards.
  2096. * Handles data events from SGE response queues as well as error and other
  2097. * async events as they all use the same interrupt pin. We use one SGE
  2098. * response queue per port in this mode and protect all response queues with
  2099. * queue 0's lock.
  2100. */
  2101. static irqreturn_t t3b_intr(int irq, void *cookie)
  2102. {
  2103. u32 map;
  2104. struct adapter *adap = cookie;
  2105. struct sge_rspq *q0 = &adap->sge.qs[0].rspq;
  2106. t3_write_reg(adap, A_PL_CLI, 0);
  2107. map = t3_read_reg(adap, A_SG_DATA_INTR);
  2108. if (unlikely(!map)) /* shared interrupt, most likely */
  2109. return IRQ_NONE;
  2110. spin_lock(&q0->lock);
  2111. if (unlikely(map & F_ERRINTR))
  2112. t3_slow_intr_handler(adap);
  2113. if (likely(map & 1))
  2114. process_responses_gts(adap, q0);
  2115. if (map & 2)
  2116. process_responses_gts(adap, &adap->sge.qs[1].rspq);
  2117. spin_unlock(&q0->lock);
  2118. return IRQ_HANDLED;
  2119. }
  2120. /*
  2121. * NAPI interrupt handler for legacy INTx interrupts for T3B-based cards.
  2122. * Handles data events from SGE response queues as well as error and other
  2123. * async events as they all use the same interrupt pin. We use one SGE
  2124. * response queue per port in this mode and protect all response queues with
  2125. * queue 0's lock.
  2126. */
  2127. static irqreturn_t t3b_intr_napi(int irq, void *cookie)
  2128. {
  2129. u32 map;
  2130. struct adapter *adap = cookie;
  2131. struct sge_qset *qs0 = &adap->sge.qs[0];
  2132. struct sge_rspq *q0 = &qs0->rspq;
  2133. t3_write_reg(adap, A_PL_CLI, 0);
  2134. map = t3_read_reg(adap, A_SG_DATA_INTR);
  2135. if (unlikely(!map)) /* shared interrupt, most likely */
  2136. return IRQ_NONE;
  2137. spin_lock(&q0->lock);
  2138. if (unlikely(map & F_ERRINTR))
  2139. t3_slow_intr_handler(adap);
  2140. if (likely(map & 1))
  2141. napi_schedule(&qs0->napi);
  2142. if (map & 2)
  2143. napi_schedule(&adap->sge.qs[1].napi);
  2144. spin_unlock(&q0->lock);
  2145. return IRQ_HANDLED;
  2146. }
  2147. /**
  2148. * t3_intr_handler - select the top-level interrupt handler
  2149. * @adap: the adapter
  2150. * @polling: whether using NAPI to service response queues
  2151. *
  2152. * Selects the top-level interrupt handler based on the type of interrupts
  2153. * (MSI-X, MSI, or legacy) and whether NAPI will be used to service the
  2154. * response queues.
  2155. */
  2156. irq_handler_t t3_intr_handler(struct adapter *adap, int polling)
  2157. {
  2158. if (adap->flags & USING_MSIX)
  2159. return polling ? t3_sge_intr_msix_napi : t3_sge_intr_msix;
  2160. if (adap->flags & USING_MSI)
  2161. return polling ? t3_intr_msi_napi : t3_intr_msi;
  2162. if (adap->params.rev > 0)
  2163. return polling ? t3b_intr_napi : t3b_intr;
  2164. return t3_intr;
  2165. }
  2166. #define SGE_PARERR (F_CPPARITYERROR | F_OCPARITYERROR | F_RCPARITYERROR | \
  2167. F_IRPARITYERROR | V_ITPARITYERROR(M_ITPARITYERROR) | \
  2168. V_FLPARITYERROR(M_FLPARITYERROR) | F_LODRBPARITYERROR | \
  2169. F_HIDRBPARITYERROR | F_LORCQPARITYERROR | \
  2170. F_HIRCQPARITYERROR)
  2171. #define SGE_FRAMINGERR (F_UC_REQ_FRAMINGERROR | F_R_REQ_FRAMINGERROR)
  2172. #define SGE_FATALERR (SGE_PARERR | SGE_FRAMINGERR | F_RSPQCREDITOVERFOW | \
  2173. F_RSPQDISABLED)
  2174. /**
  2175. * t3_sge_err_intr_handler - SGE async event interrupt handler
  2176. * @adapter: the adapter
  2177. *
  2178. * Interrupt handler for SGE asynchronous (non-data) events.
  2179. */
  2180. void t3_sge_err_intr_handler(struct adapter *adapter)
  2181. {
  2182. unsigned int v, status = t3_read_reg(adapter, A_SG_INT_CAUSE);
  2183. if (status & SGE_PARERR)
  2184. CH_ALERT(adapter, "SGE parity error (0x%x)\n",
  2185. status & SGE_PARERR);
  2186. if (status & SGE_FRAMINGERR)
  2187. CH_ALERT(adapter, "SGE framing error (0x%x)\n",
  2188. status & SGE_FRAMINGERR);
  2189. if (status & F_RSPQCREDITOVERFOW)
  2190. CH_ALERT(adapter, "SGE response queue credit overflow\n");
  2191. if (status & F_RSPQDISABLED) {
  2192. v = t3_read_reg(adapter, A_SG_RSPQ_FL_STATUS);
  2193. CH_ALERT(adapter,
  2194. "packet delivered to disabled response queue "
  2195. "(0x%x)\n", (v >> S_RSPQ0DISABLED) & 0xff);
  2196. }
  2197. if (status & (F_HIPIODRBDROPERR | F_LOPIODRBDROPERR))
  2198. CH_ALERT(adapter, "SGE dropped %s priority doorbell\n",
  2199. status & F_HIPIODRBDROPERR ? "high" : "lo");
  2200. t3_write_reg(adapter, A_SG_INT_CAUSE, status);
  2201. if (status & SGE_FATALERR)
  2202. t3_fatal_err(adapter);
  2203. }
  2204. /**
  2205. * sge_timer_cb - perform periodic maintenance of an SGE qset
  2206. * @data: the SGE queue set to maintain
  2207. *
  2208. * Runs periodically from a timer to perform maintenance of an SGE queue
  2209. * set. It performs two tasks:
  2210. *
  2211. * a) Cleans up any completed Tx descriptors that may still be pending.
  2212. * Normal descriptor cleanup happens when new packets are added to a Tx
  2213. * queue so this timer is relatively infrequent and does any cleanup only
  2214. * if the Tx queue has not seen any new packets in a while. We make a
  2215. * best effort attempt to reclaim descriptors, in that we don't wait
  2216. * around if we cannot get a queue's lock (which most likely is because
  2217. * someone else is queueing new packets and so will also handle the clean
  2218. * up). Since control queues use immediate data exclusively we don't
  2219. * bother cleaning them up here.
  2220. *
  2221. * b) Replenishes Rx queues that have run out due to memory shortage.
  2222. * Normally new Rx buffers are added when existing ones are consumed but
  2223. * when out of memory a queue can become empty. We try to add only a few
  2224. * buffers here, the queue will be replenished fully as these new buffers
  2225. * are used up if memory shortage has subsided.
  2226. */
  2227. static void sge_timer_cb(unsigned long data)
  2228. {
  2229. spinlock_t *lock;
  2230. struct sge_qset *qs = (struct sge_qset *)data;
  2231. struct adapter *adap = qs->adap;
  2232. if (spin_trylock(&qs->txq[TXQ_ETH].lock)) {
  2233. reclaim_completed_tx(adap, &qs->txq[TXQ_ETH]);
  2234. spin_unlock(&qs->txq[TXQ_ETH].lock);
  2235. }
  2236. if (spin_trylock(&qs->txq[TXQ_OFLD].lock)) {
  2237. reclaim_completed_tx(adap, &qs->txq[TXQ_OFLD]);
  2238. spin_unlock(&qs->txq[TXQ_OFLD].lock);
  2239. }
  2240. lock = (adap->flags & USING_MSIX) ? &qs->rspq.lock :
  2241. &adap->sge.qs[0].rspq.lock;
  2242. if (spin_trylock_irq(lock)) {
  2243. if (!napi_is_scheduled(&qs->napi)) {
  2244. u32 status = t3_read_reg(adap, A_SG_RSPQ_FL_STATUS);
  2245. if (qs->fl[0].credits < qs->fl[0].size)
  2246. __refill_fl(adap, &qs->fl[0]);
  2247. if (qs->fl[1].credits < qs->fl[1].size)
  2248. __refill_fl(adap, &qs->fl[1]);
  2249. if (status & (1 << qs->rspq.cntxt_id)) {
  2250. qs->rspq.starved++;
  2251. if (qs->rspq.credits) {
  2252. refill_rspq(adap, &qs->rspq, 1);
  2253. qs->rspq.credits--;
  2254. qs->rspq.restarted++;
  2255. t3_write_reg(adap, A_SG_RSPQ_FL_STATUS,
  2256. 1 << qs->rspq.cntxt_id);
  2257. }
  2258. }
  2259. }
  2260. spin_unlock_irq(lock);
  2261. }
  2262. mod_timer(&qs->tx_reclaim_timer, jiffies + TX_RECLAIM_PERIOD);
  2263. }
  2264. /**
  2265. * t3_update_qset_coalesce - update coalescing settings for a queue set
  2266. * @qs: the SGE queue set
  2267. * @p: new queue set parameters
  2268. *
  2269. * Update the coalescing settings for an SGE queue set. Nothing is done
  2270. * if the queue set is not initialized yet.
  2271. */
  2272. void t3_update_qset_coalesce(struct sge_qset *qs, const struct qset_params *p)
  2273. {
  2274. qs->rspq.holdoff_tmr = max(p->coalesce_usecs * 10, 1U);/* can't be 0 */
  2275. qs->rspq.polling = p->polling;
  2276. qs->napi.poll = p->polling ? napi_rx_handler : ofld_poll;
  2277. }
  2278. /**
  2279. * t3_sge_alloc_qset - initialize an SGE queue set
  2280. * @adapter: the adapter
  2281. * @id: the queue set id
  2282. * @nports: how many Ethernet ports will be using this queue set
  2283. * @irq_vec_idx: the IRQ vector index for response queue interrupts
  2284. * @p: configuration parameters for this queue set
  2285. * @ntxq: number of Tx queues for the queue set
  2286. * @netdev: net device associated with this queue set
  2287. *
  2288. * Allocate resources and initialize an SGE queue set. A queue set
  2289. * comprises a response queue, two Rx free-buffer queues, and up to 3
  2290. * Tx queues. The Tx queues are assigned roles in the order Ethernet
  2291. * queue, offload queue, and control queue.
  2292. */
  2293. int t3_sge_alloc_qset(struct adapter *adapter, unsigned int id, int nports,
  2294. int irq_vec_idx, const struct qset_params *p,
  2295. int ntxq, struct net_device *dev)
  2296. {
  2297. int i, ret = -ENOMEM;
  2298. struct sge_qset *q = &adapter->sge.qs[id];
  2299. init_qset_cntxt(q, id);
  2300. init_timer(&q->tx_reclaim_timer);
  2301. q->tx_reclaim_timer.data = (unsigned long)q;
  2302. q->tx_reclaim_timer.function = sge_timer_cb;
  2303. q->fl[0].desc = alloc_ring(adapter->pdev, p->fl_size,
  2304. sizeof(struct rx_desc),
  2305. sizeof(struct rx_sw_desc),
  2306. &q->fl[0].phys_addr, &q->fl[0].sdesc);
  2307. if (!q->fl[0].desc)
  2308. goto err;
  2309. q->fl[1].desc = alloc_ring(adapter->pdev, p->jumbo_size,
  2310. sizeof(struct rx_desc),
  2311. sizeof(struct rx_sw_desc),
  2312. &q->fl[1].phys_addr, &q->fl[1].sdesc);
  2313. if (!q->fl[1].desc)
  2314. goto err;
  2315. q->rspq.desc = alloc_ring(adapter->pdev, p->rspq_size,
  2316. sizeof(struct rsp_desc), 0,
  2317. &q->rspq.phys_addr, NULL);
  2318. if (!q->rspq.desc)
  2319. goto err;
  2320. for (i = 0; i < ntxq; ++i) {
  2321. /*
  2322. * The control queue always uses immediate data so does not
  2323. * need to keep track of any sk_buffs.
  2324. */
  2325. size_t sz = i == TXQ_CTRL ? 0 : sizeof(struct tx_sw_desc);
  2326. q->txq[i].desc = alloc_ring(adapter->pdev, p->txq_size[i],
  2327. sizeof(struct tx_desc), sz,
  2328. &q->txq[i].phys_addr,
  2329. &q->txq[i].sdesc);
  2330. if (!q->txq[i].desc)
  2331. goto err;
  2332. q->txq[i].gen = 1;
  2333. q->txq[i].size = p->txq_size[i];
  2334. spin_lock_init(&q->txq[i].lock);
  2335. skb_queue_head_init(&q->txq[i].sendq);
  2336. }
  2337. tasklet_init(&q->txq[TXQ_OFLD].qresume_tsk, restart_offloadq,
  2338. (unsigned long)q);
  2339. tasklet_init(&q->txq[TXQ_CTRL].qresume_tsk, restart_ctrlq,
  2340. (unsigned long)q);
  2341. q->fl[0].gen = q->fl[1].gen = 1;
  2342. q->fl[0].size = p->fl_size;
  2343. q->fl[1].size = p->jumbo_size;
  2344. q->rspq.gen = 1;
  2345. q->rspq.size = p->rspq_size;
  2346. spin_lock_init(&q->rspq.lock);
  2347. q->txq[TXQ_ETH].stop_thres = nports *
  2348. flits_to_desc(sgl_len(MAX_SKB_FRAGS + 1) + 3);
  2349. #if FL0_PG_CHUNK_SIZE > 0
  2350. q->fl[0].buf_size = FL0_PG_CHUNK_SIZE;
  2351. #else
  2352. q->fl[0].buf_size = SGE_RX_SM_BUF_SIZE + sizeof(struct cpl_rx_data);
  2353. #endif
  2354. q->fl[0].use_pages = FL0_PG_CHUNK_SIZE > 0;
  2355. q->fl[1].buf_size = is_offload(adapter) ?
  2356. (16 * 1024) - SKB_DATA_ALIGN(sizeof(struct skb_shared_info)) :
  2357. MAX_FRAME_SIZE + 2 + sizeof(struct cpl_rx_pkt);
  2358. spin_lock(&adapter->sge.reg_lock);
  2359. /* FL threshold comparison uses < */
  2360. ret = t3_sge_init_rspcntxt(adapter, q->rspq.cntxt_id, irq_vec_idx,
  2361. q->rspq.phys_addr, q->rspq.size,
  2362. q->fl[0].buf_size, 1, 0);
  2363. if (ret)
  2364. goto err_unlock;
  2365. for (i = 0; i < SGE_RXQ_PER_SET; ++i) {
  2366. ret = t3_sge_init_flcntxt(adapter, q->fl[i].cntxt_id, 0,
  2367. q->fl[i].phys_addr, q->fl[i].size,
  2368. q->fl[i].buf_size, p->cong_thres, 1,
  2369. 0);
  2370. if (ret)
  2371. goto err_unlock;
  2372. }
  2373. ret = t3_sge_init_ecntxt(adapter, q->txq[TXQ_ETH].cntxt_id, USE_GTS,
  2374. SGE_CNTXT_ETH, id, q->txq[TXQ_ETH].phys_addr,
  2375. q->txq[TXQ_ETH].size, q->txq[TXQ_ETH].token,
  2376. 1, 0);
  2377. if (ret)
  2378. goto err_unlock;
  2379. if (ntxq > 1) {
  2380. ret = t3_sge_init_ecntxt(adapter, q->txq[TXQ_OFLD].cntxt_id,
  2381. USE_GTS, SGE_CNTXT_OFLD, id,
  2382. q->txq[TXQ_OFLD].phys_addr,
  2383. q->txq[TXQ_OFLD].size, 0, 1, 0);
  2384. if (ret)
  2385. goto err_unlock;
  2386. }
  2387. if (ntxq > 2) {
  2388. ret = t3_sge_init_ecntxt(adapter, q->txq[TXQ_CTRL].cntxt_id, 0,
  2389. SGE_CNTXT_CTRL, id,
  2390. q->txq[TXQ_CTRL].phys_addr,
  2391. q->txq[TXQ_CTRL].size,
  2392. q->txq[TXQ_CTRL].token, 1, 0);
  2393. if (ret)
  2394. goto err_unlock;
  2395. }
  2396. spin_unlock(&adapter->sge.reg_lock);
  2397. q->adap = adapter;
  2398. q->netdev = dev;
  2399. t3_update_qset_coalesce(q, p);
  2400. refill_fl(adapter, &q->fl[0], q->fl[0].size, GFP_KERNEL);
  2401. refill_fl(adapter, &q->fl[1], q->fl[1].size, GFP_KERNEL);
  2402. refill_rspq(adapter, &q->rspq, q->rspq.size - 1);
  2403. t3_write_reg(adapter, A_SG_GTS, V_RSPQ(q->rspq.cntxt_id) |
  2404. V_NEWTIMER(q->rspq.holdoff_tmr));
  2405. mod_timer(&q->tx_reclaim_timer, jiffies + TX_RECLAIM_PERIOD);
  2406. return 0;
  2407. err_unlock:
  2408. spin_unlock(&adapter->sge.reg_lock);
  2409. err:
  2410. t3_free_qset(adapter, q);
  2411. return ret;
  2412. }
  2413. /**
  2414. * t3_free_sge_resources - free SGE resources
  2415. * @adap: the adapter
  2416. *
  2417. * Frees resources used by the SGE queue sets.
  2418. */
  2419. void t3_free_sge_resources(struct adapter *adap)
  2420. {
  2421. int i;
  2422. for (i = 0; i < SGE_QSETS; ++i)
  2423. t3_free_qset(adap, &adap->sge.qs[i]);
  2424. }
  2425. /**
  2426. * t3_sge_start - enable SGE
  2427. * @adap: the adapter
  2428. *
  2429. * Enables the SGE for DMAs. This is the last step in starting packet
  2430. * transfers.
  2431. */
  2432. void t3_sge_start(struct adapter *adap)
  2433. {
  2434. t3_set_reg_field(adap, A_SG_CONTROL, F_GLOBALENABLE, F_GLOBALENABLE);
  2435. }
  2436. /**
  2437. * t3_sge_stop - disable SGE operation
  2438. * @adap: the adapter
  2439. *
  2440. * Disables the DMA engine. This can be called in emeregencies (e.g.,
  2441. * from error interrupts) or from normal process context. In the latter
  2442. * case it also disables any pending queue restart tasklets. Note that
  2443. * if it is called in interrupt context it cannot disable the restart
  2444. * tasklets as it cannot wait, however the tasklets will have no effect
  2445. * since the doorbells are disabled and the driver will call this again
  2446. * later from process context, at which time the tasklets will be stopped
  2447. * if they are still running.
  2448. */
  2449. void t3_sge_stop(struct adapter *adap)
  2450. {
  2451. t3_set_reg_field(adap, A_SG_CONTROL, F_GLOBALENABLE, 0);
  2452. if (!in_interrupt()) {
  2453. int i;
  2454. for (i = 0; i < SGE_QSETS; ++i) {
  2455. struct sge_qset *qs = &adap->sge.qs[i];
  2456. tasklet_kill(&qs->txq[TXQ_OFLD].qresume_tsk);
  2457. tasklet_kill(&qs->txq[TXQ_CTRL].qresume_tsk);
  2458. }
  2459. }
  2460. }
  2461. /**
  2462. * t3_sge_init - initialize SGE
  2463. * @adap: the adapter
  2464. * @p: the SGE parameters
  2465. *
  2466. * Performs SGE initialization needed every time after a chip reset.
  2467. * We do not initialize any of the queue sets here, instead the driver
  2468. * top-level must request those individually. We also do not enable DMA
  2469. * here, that should be done after the queues have been set up.
  2470. */
  2471. void t3_sge_init(struct adapter *adap, struct sge_params *p)
  2472. {
  2473. unsigned int ctrl, ups = ffs(pci_resource_len(adap->pdev, 2) >> 12);
  2474. ctrl = F_DROPPKT | V_PKTSHIFT(2) | F_FLMODE | F_AVOIDCQOVFL |
  2475. F_CQCRDTCTRL | F_CONGMODE | F_TNLFLMODE | F_FATLPERREN |
  2476. V_HOSTPAGESIZE(PAGE_SHIFT - 11) | F_BIGENDIANINGRESS |
  2477. V_USERSPACESIZE(ups ? ups - 1 : 0) | F_ISCSICOALESCING;
  2478. #if SGE_NUM_GENBITS == 1
  2479. ctrl |= F_EGRGENCTRL;
  2480. #endif
  2481. if (adap->params.rev > 0) {
  2482. if (!(adap->flags & (USING_MSIX | USING_MSI)))
  2483. ctrl |= F_ONEINTMULTQ | F_OPTONEINTMULTQ;
  2484. }
  2485. t3_write_reg(adap, A_SG_CONTROL, ctrl);
  2486. t3_write_reg(adap, A_SG_EGR_RCQ_DRB_THRSH, V_HIRCQDRBTHRSH(512) |
  2487. V_LORCQDRBTHRSH(512));
  2488. t3_write_reg(adap, A_SG_TIMER_TICK, core_ticks_per_usec(adap) / 10);
  2489. t3_write_reg(adap, A_SG_CMDQ_CREDIT_TH, V_THRESHOLD(32) |
  2490. V_TIMEOUT(200 * core_ticks_per_usec(adap)));
  2491. t3_write_reg(adap, A_SG_HI_DRB_HI_THRSH,
  2492. adap->params.rev < T3_REV_C ? 1000 : 500);
  2493. t3_write_reg(adap, A_SG_HI_DRB_LO_THRSH, 256);
  2494. t3_write_reg(adap, A_SG_LO_DRB_HI_THRSH, 1000);
  2495. t3_write_reg(adap, A_SG_LO_DRB_LO_THRSH, 256);
  2496. t3_write_reg(adap, A_SG_OCO_BASE, V_BASE1(0xfff));
  2497. t3_write_reg(adap, A_SG_DRB_PRI_THRESH, 63 * 1024);
  2498. }
  2499. /**
  2500. * t3_sge_prep - one-time SGE initialization
  2501. * @adap: the associated adapter
  2502. * @p: SGE parameters
  2503. *
  2504. * Performs one-time initialization of SGE SW state. Includes determining
  2505. * defaults for the assorted SGE parameters, which admins can change until
  2506. * they are used to initialize the SGE.
  2507. */
  2508. void __devinit t3_sge_prep(struct adapter *adap, struct sge_params *p)
  2509. {
  2510. int i;
  2511. p->max_pkt_size = (16 * 1024) - sizeof(struct cpl_rx_data) -
  2512. SKB_DATA_ALIGN(sizeof(struct skb_shared_info));
  2513. for (i = 0; i < SGE_QSETS; ++i) {
  2514. struct qset_params *q = p->qset + i;
  2515. q->polling = adap->params.rev > 0;
  2516. q->coalesce_usecs = 5;
  2517. q->rspq_size = 1024;
  2518. q->fl_size = 1024;
  2519. q->jumbo_size = 512;
  2520. q->txq_size[TXQ_ETH] = 1024;
  2521. q->txq_size[TXQ_OFLD] = 1024;
  2522. q->txq_size[TXQ_CTRL] = 256;
  2523. q->cong_thres = 0;
  2524. }
  2525. spin_lock_init(&adap->sge.reg_lock);
  2526. }
  2527. /**
  2528. * t3_get_desc - dump an SGE descriptor for debugging purposes
  2529. * @qs: the queue set
  2530. * @qnum: identifies the specific queue (0..2: Tx, 3:response, 4..5: Rx)
  2531. * @idx: the descriptor index in the queue
  2532. * @data: where to dump the descriptor contents
  2533. *
  2534. * Dumps the contents of a HW descriptor of an SGE queue. Returns the
  2535. * size of the descriptor.
  2536. */
  2537. int t3_get_desc(const struct sge_qset *qs, unsigned int qnum, unsigned int idx,
  2538. unsigned char *data)
  2539. {
  2540. if (qnum >= 6)
  2541. return -EINVAL;
  2542. if (qnum < 3) {
  2543. if (!qs->txq[qnum].desc || idx >= qs->txq[qnum].size)
  2544. return -EINVAL;
  2545. memcpy(data, &qs->txq[qnum].desc[idx], sizeof(struct tx_desc));
  2546. return sizeof(struct tx_desc);
  2547. }
  2548. if (qnum == 3) {
  2549. if (!qs->rspq.desc || idx >= qs->rspq.size)
  2550. return -EINVAL;
  2551. memcpy(data, &qs->rspq.desc[idx], sizeof(struct rsp_desc));
  2552. return sizeof(struct rsp_desc);
  2553. }
  2554. qnum -= 4;
  2555. if (!qs->fl[qnum].desc || idx >= qs->fl[qnum].size)
  2556. return -EINVAL;
  2557. memcpy(data, &qs->fl[qnum].desc[idx], sizeof(struct rx_desc));
  2558. return sizeof(struct rx_desc);
  2559. }