sge.c 82 KB

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