sge.c 61 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217
  1. /*****************************************************************************
  2. * *
  3. * File: sge.c *
  4. * $Revision: 1.26 $ *
  5. * $Date: 2005/06/21 18:29:48 $ *
  6. * Description: *
  7. * DMA engine. *
  8. * part of the Chelsio 10Gb Ethernet Driver. *
  9. * *
  10. * This program is free software; you can redistribute it and/or modify *
  11. * it under the terms of the GNU General Public License, version 2, as *
  12. * published by the Free Software Foundation. *
  13. * *
  14. * You should have received a copy of the GNU General Public License along *
  15. * with this program; if not, write to the Free Software Foundation, Inc., *
  16. * 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. *
  17. * *
  18. * THIS SOFTWARE IS PROVIDED ``AS IS'' AND WITHOUT ANY EXPRESS OR IMPLIED *
  19. * WARRANTIES, INCLUDING, WITHOUT LIMITATION, THE IMPLIED WARRANTIES OF *
  20. * MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE. *
  21. * *
  22. * http://www.chelsio.com *
  23. * *
  24. * Copyright (c) 2003 - 2005 Chelsio Communications, Inc. *
  25. * All rights reserved. *
  26. * *
  27. * Maintainers: maintainers@chelsio.com *
  28. * *
  29. * Authors: Dimitrios Michailidis <dm@chelsio.com> *
  30. * Tina Yang <tainay@chelsio.com> *
  31. * Felix Marti <felix@chelsio.com> *
  32. * Scott Bardone <sbardone@chelsio.com> *
  33. * Kurt Ottaway <kottaway@chelsio.com> *
  34. * Frank DiMambro <frank@chelsio.com> *
  35. * *
  36. * History: *
  37. * *
  38. ****************************************************************************/
  39. #include "common.h"
  40. #include <linux/types.h>
  41. #include <linux/errno.h>
  42. #include <linux/pci.h>
  43. #include <linux/ktime.h>
  44. #include <linux/netdevice.h>
  45. #include <linux/etherdevice.h>
  46. #include <linux/if_vlan.h>
  47. #include <linux/skbuff.h>
  48. #include <linux/init.h>
  49. #include <linux/mm.h>
  50. #include <linux/tcp.h>
  51. #include <linux/ip.h>
  52. #include <linux/in.h>
  53. #include <linux/if_arp.h>
  54. #include "cpl5_cmd.h"
  55. #include "sge.h"
  56. #include "regs.h"
  57. #include "espi.h"
  58. /* This belongs in if_ether.h */
  59. #define ETH_P_CPL5 0xf
  60. #define SGE_CMDQ_N 2
  61. #define SGE_FREELQ_N 2
  62. #define SGE_CMDQ0_E_N 1024
  63. #define SGE_CMDQ1_E_N 128
  64. #define SGE_FREEL_SIZE 4096
  65. #define SGE_JUMBO_FREEL_SIZE 512
  66. #define SGE_FREEL_REFILL_THRESH 16
  67. #define SGE_RESPQ_E_N 1024
  68. #define SGE_INTRTIMER_NRES 1000
  69. #define SGE_RX_COPY_THRES 256
  70. #define SGE_RX_SM_BUF_SIZE 1536
  71. #define SGE_TX_DESC_MAX_PLEN 16384
  72. # define SGE_RX_DROP_THRES 2
  73. #define SGE_RESPQ_REPLENISH_THRES (SGE_RESPQ_E_N / 4)
  74. /*
  75. * Period of the TX buffer reclaim timer. This timer does not need to run
  76. * frequently as TX buffers are usually reclaimed by new TX packets.
  77. */
  78. #define TX_RECLAIM_PERIOD (HZ / 4)
  79. #define M_CMD_LEN 0x7fffffff
  80. #define V_CMD_LEN(v) (v)
  81. #define G_CMD_LEN(v) ((v) & M_CMD_LEN)
  82. #define V_CMD_GEN1(v) ((v) << 31)
  83. #define V_CMD_GEN2(v) (v)
  84. #define F_CMD_DATAVALID (1 << 1)
  85. #define F_CMD_SOP (1 << 2)
  86. #define V_CMD_EOP(v) ((v) << 3)
  87. /*
  88. * Command queue, receive buffer list, and response queue descriptors.
  89. */
  90. #if defined(__BIG_ENDIAN_BITFIELD)
  91. struct cmdQ_e {
  92. u32 addr_lo;
  93. u32 len_gen;
  94. u32 flags;
  95. u32 addr_hi;
  96. };
  97. struct freelQ_e {
  98. u32 addr_lo;
  99. u32 len_gen;
  100. u32 gen2;
  101. u32 addr_hi;
  102. };
  103. struct respQ_e {
  104. u32 Qsleeping : 4;
  105. u32 Cmdq1CreditReturn : 5;
  106. u32 Cmdq1DmaComplete : 5;
  107. u32 Cmdq0CreditReturn : 5;
  108. u32 Cmdq0DmaComplete : 5;
  109. u32 FreelistQid : 2;
  110. u32 CreditValid : 1;
  111. u32 DataValid : 1;
  112. u32 Offload : 1;
  113. u32 Eop : 1;
  114. u32 Sop : 1;
  115. u32 GenerationBit : 1;
  116. u32 BufferLength;
  117. };
  118. #elif defined(__LITTLE_ENDIAN_BITFIELD)
  119. struct cmdQ_e {
  120. u32 len_gen;
  121. u32 addr_lo;
  122. u32 addr_hi;
  123. u32 flags;
  124. };
  125. struct freelQ_e {
  126. u32 len_gen;
  127. u32 addr_lo;
  128. u32 addr_hi;
  129. u32 gen2;
  130. };
  131. struct respQ_e {
  132. u32 BufferLength;
  133. u32 GenerationBit : 1;
  134. u32 Sop : 1;
  135. u32 Eop : 1;
  136. u32 Offload : 1;
  137. u32 DataValid : 1;
  138. u32 CreditValid : 1;
  139. u32 FreelistQid : 2;
  140. u32 Cmdq0DmaComplete : 5;
  141. u32 Cmdq0CreditReturn : 5;
  142. u32 Cmdq1DmaComplete : 5;
  143. u32 Cmdq1CreditReturn : 5;
  144. u32 Qsleeping : 4;
  145. } ;
  146. #endif
  147. /*
  148. * SW Context Command and Freelist Queue Descriptors
  149. */
  150. struct cmdQ_ce {
  151. struct sk_buff *skb;
  152. DECLARE_PCI_UNMAP_ADDR(dma_addr);
  153. DECLARE_PCI_UNMAP_LEN(dma_len);
  154. };
  155. struct freelQ_ce {
  156. struct sk_buff *skb;
  157. DECLARE_PCI_UNMAP_ADDR(dma_addr);
  158. DECLARE_PCI_UNMAP_LEN(dma_len);
  159. };
  160. /*
  161. * SW command, freelist and response rings
  162. */
  163. struct cmdQ {
  164. unsigned long status; /* HW DMA fetch status */
  165. unsigned int in_use; /* # of in-use command descriptors */
  166. unsigned int size; /* # of descriptors */
  167. unsigned int processed; /* total # of descs HW has processed */
  168. unsigned int cleaned; /* total # of descs SW has reclaimed */
  169. unsigned int stop_thres; /* SW TX queue suspend threshold */
  170. u16 pidx; /* producer index (SW) */
  171. u16 cidx; /* consumer index (HW) */
  172. u8 genbit; /* current generation (=valid) bit */
  173. u8 sop; /* is next entry start of packet? */
  174. struct cmdQ_e *entries; /* HW command descriptor Q */
  175. struct cmdQ_ce *centries; /* SW command context descriptor Q */
  176. dma_addr_t dma_addr; /* DMA addr HW command descriptor Q */
  177. spinlock_t lock; /* Lock to protect cmdQ enqueuing */
  178. };
  179. struct freelQ {
  180. unsigned int credits; /* # of available RX buffers */
  181. unsigned int size; /* free list capacity */
  182. u16 pidx; /* producer index (SW) */
  183. u16 cidx; /* consumer index (HW) */
  184. u16 rx_buffer_size; /* Buffer size on this free list */
  185. u16 dma_offset; /* DMA offset to align IP headers */
  186. u16 recycleq_idx; /* skb recycle q to use */
  187. u8 genbit; /* current generation (=valid) bit */
  188. struct freelQ_e *entries; /* HW freelist descriptor Q */
  189. struct freelQ_ce *centries; /* SW freelist context descriptor Q */
  190. dma_addr_t dma_addr; /* DMA addr HW freelist descriptor Q */
  191. };
  192. struct respQ {
  193. unsigned int credits; /* credits to be returned to SGE */
  194. unsigned int size; /* # of response Q descriptors */
  195. u16 cidx; /* consumer index (SW) */
  196. u8 genbit; /* current generation(=valid) bit */
  197. struct respQ_e *entries; /* HW response descriptor Q */
  198. dma_addr_t dma_addr; /* DMA addr HW response descriptor Q */
  199. };
  200. /* Bit flags for cmdQ.status */
  201. enum {
  202. CMDQ_STAT_RUNNING = 1, /* fetch engine is running */
  203. CMDQ_STAT_LAST_PKT_DB = 2 /* last packet rung the doorbell */
  204. };
  205. /* T204 TX SW scheduler */
  206. /* Per T204 TX port */
  207. struct sched_port {
  208. unsigned int avail; /* available bits - quota */
  209. unsigned int drain_bits_per_1024ns; /* drain rate */
  210. unsigned int speed; /* drain rate, mbps */
  211. unsigned int mtu; /* mtu size */
  212. struct sk_buff_head skbq; /* pending skbs */
  213. };
  214. /* Per T204 device */
  215. struct sched {
  216. ktime_t last_updated; /* last time quotas were computed */
  217. unsigned int max_avail; /* max bits to be sent to any port */
  218. unsigned int port; /* port index (round robin ports) */
  219. unsigned int num; /* num skbs in per port queues */
  220. struct sched_port p[MAX_NPORTS];
  221. struct tasklet_struct sched_tsk;/* tasklet used to run scheduler */
  222. };
  223. static void restart_sched(unsigned long);
  224. /*
  225. * Main SGE data structure
  226. *
  227. * Interrupts are handled by a single CPU and it is likely that on a MP system
  228. * the application is migrated to another CPU. In that scenario, we try to
  229. * seperate the RX(in irq context) and TX state in order to decrease memory
  230. * contention.
  231. */
  232. struct sge {
  233. struct adapter *adapter; /* adapter backpointer */
  234. struct net_device *netdev; /* netdevice backpointer */
  235. struct freelQ freelQ[SGE_FREELQ_N]; /* buffer free lists */
  236. struct respQ respQ; /* response Q */
  237. unsigned long stopped_tx_queues; /* bitmap of suspended Tx queues */
  238. unsigned int rx_pkt_pad; /* RX padding for L2 packets */
  239. unsigned int jumbo_fl; /* jumbo freelist Q index */
  240. unsigned int intrtimer_nres; /* no-resource interrupt timer */
  241. unsigned int fixed_intrtimer;/* non-adaptive interrupt timer */
  242. struct timer_list tx_reclaim_timer; /* reclaims TX buffers */
  243. struct timer_list espibug_timer;
  244. unsigned long espibug_timeout;
  245. struct sk_buff *espibug_skb[MAX_NPORTS];
  246. u32 sge_control; /* shadow value of sge control reg */
  247. struct sge_intr_counts stats;
  248. struct sge_port_stats *port_stats[MAX_NPORTS];
  249. struct sched *tx_sched;
  250. struct cmdQ cmdQ[SGE_CMDQ_N] ____cacheline_aligned_in_smp;
  251. };
  252. /*
  253. * stop tasklet and free all pending skb's
  254. */
  255. static void tx_sched_stop(struct sge *sge)
  256. {
  257. struct sched *s = sge->tx_sched;
  258. int i;
  259. tasklet_kill(&s->sched_tsk);
  260. for (i = 0; i < MAX_NPORTS; i++)
  261. __skb_queue_purge(&s->p[s->port].skbq);
  262. }
  263. /*
  264. * t1_sched_update_parms() is called when the MTU or link speed changes. It
  265. * re-computes scheduler parameters to scope with the change.
  266. */
  267. unsigned int t1_sched_update_parms(struct sge *sge, unsigned int port,
  268. unsigned int mtu, unsigned int speed)
  269. {
  270. struct sched *s = sge->tx_sched;
  271. struct sched_port *p = &s->p[port];
  272. unsigned int max_avail_segs;
  273. pr_debug("t1_sched_update_params mtu=%d speed=%d\n", mtu, speed);
  274. if (speed)
  275. p->speed = speed;
  276. if (mtu)
  277. p->mtu = mtu;
  278. if (speed || mtu) {
  279. unsigned long long drain = 1024ULL * p->speed * (p->mtu - 40);
  280. do_div(drain, (p->mtu + 50) * 1000);
  281. p->drain_bits_per_1024ns = (unsigned int) drain;
  282. if (p->speed < 1000)
  283. p->drain_bits_per_1024ns =
  284. 90 * p->drain_bits_per_1024ns / 100;
  285. }
  286. if (board_info(sge->adapter)->board == CHBT_BOARD_CHT204) {
  287. p->drain_bits_per_1024ns -= 16;
  288. s->max_avail = max(4096U, p->mtu + 16 + 14 + 4);
  289. max_avail_segs = max(1U, 4096 / (p->mtu - 40));
  290. } else {
  291. s->max_avail = 16384;
  292. max_avail_segs = max(1U, 9000 / (p->mtu - 40));
  293. }
  294. pr_debug("t1_sched_update_parms: mtu %u speed %u max_avail %u "
  295. "max_avail_segs %u drain_bits_per_1024ns %u\n", p->mtu,
  296. p->speed, s->max_avail, max_avail_segs,
  297. p->drain_bits_per_1024ns);
  298. return max_avail_segs * (p->mtu - 40);
  299. }
  300. /*
  301. * t1_sched_max_avail_bytes() tells the scheduler the maximum amount of
  302. * data that can be pushed per port.
  303. */
  304. void t1_sched_set_max_avail_bytes(struct sge *sge, unsigned int val)
  305. {
  306. struct sched *s = sge->tx_sched;
  307. unsigned int i;
  308. s->max_avail = val;
  309. for (i = 0; i < MAX_NPORTS; i++)
  310. t1_sched_update_parms(sge, i, 0, 0);
  311. }
  312. /*
  313. * t1_sched_set_drain_bits_per_us() tells the scheduler at which rate a port
  314. * is draining.
  315. */
  316. void t1_sched_set_drain_bits_per_us(struct sge *sge, unsigned int port,
  317. unsigned int val)
  318. {
  319. struct sched *s = sge->tx_sched;
  320. struct sched_port *p = &s->p[port];
  321. p->drain_bits_per_1024ns = val * 1024 / 1000;
  322. t1_sched_update_parms(sge, port, 0, 0);
  323. }
  324. /*
  325. * get_clock() implements a ns clock (see ktime_get)
  326. */
  327. static inline ktime_t get_clock(void)
  328. {
  329. struct timespec ts;
  330. ktime_get_ts(&ts);
  331. return timespec_to_ktime(ts);
  332. }
  333. /*
  334. * tx_sched_init() allocates resources and does basic initialization.
  335. */
  336. static int tx_sched_init(struct sge *sge)
  337. {
  338. struct sched *s;
  339. int i;
  340. s = kzalloc(sizeof (struct sched), GFP_KERNEL);
  341. if (!s)
  342. return -ENOMEM;
  343. pr_debug("tx_sched_init\n");
  344. tasklet_init(&s->sched_tsk, restart_sched, (unsigned long) sge);
  345. sge->tx_sched = s;
  346. for (i = 0; i < MAX_NPORTS; i++) {
  347. skb_queue_head_init(&s->p[i].skbq);
  348. t1_sched_update_parms(sge, i, 1500, 1000);
  349. }
  350. return 0;
  351. }
  352. /*
  353. * sched_update_avail() computes the delta since the last time it was called
  354. * and updates the per port quota (number of bits that can be sent to the any
  355. * port).
  356. */
  357. static inline int sched_update_avail(struct sge *sge)
  358. {
  359. struct sched *s = sge->tx_sched;
  360. ktime_t now = get_clock();
  361. unsigned int i;
  362. long long delta_time_ns;
  363. delta_time_ns = ktime_to_ns(ktime_sub(now, s->last_updated));
  364. pr_debug("sched_update_avail delta=%lld\n", delta_time_ns);
  365. if (delta_time_ns < 15000)
  366. return 0;
  367. for (i = 0; i < MAX_NPORTS; i++) {
  368. struct sched_port *p = &s->p[i];
  369. unsigned int delta_avail;
  370. delta_avail = (p->drain_bits_per_1024ns * delta_time_ns) >> 13;
  371. p->avail = min(p->avail + delta_avail, s->max_avail);
  372. }
  373. s->last_updated = now;
  374. return 1;
  375. }
  376. /*
  377. * sched_skb() is called from two different places. In the tx path, any
  378. * packet generating load on an output port will call sched_skb()
  379. * (skb != NULL). In addition, sched_skb() is called from the irq/soft irq
  380. * context (skb == NULL).
  381. * The scheduler only returns a skb (which will then be sent) if the
  382. * length of the skb is <= the current quota of the output port.
  383. */
  384. static struct sk_buff *sched_skb(struct sge *sge, struct sk_buff *skb,
  385. unsigned int credits)
  386. {
  387. struct sched *s = sge->tx_sched;
  388. struct sk_buff_head *skbq;
  389. unsigned int i, len, update = 1;
  390. pr_debug("sched_skb %p\n", skb);
  391. if (!skb) {
  392. if (!s->num)
  393. return NULL;
  394. } else {
  395. skbq = &s->p[skb->dev->if_port].skbq;
  396. __skb_queue_tail(skbq, skb);
  397. s->num++;
  398. skb = NULL;
  399. }
  400. if (credits < MAX_SKB_FRAGS + 1)
  401. goto out;
  402. again:
  403. for (i = 0; i < MAX_NPORTS; i++) {
  404. s->port = ++s->port & (MAX_NPORTS - 1);
  405. skbq = &s->p[s->port].skbq;
  406. skb = skb_peek(skbq);
  407. if (!skb)
  408. continue;
  409. len = skb->len;
  410. if (len <= s->p[s->port].avail) {
  411. s->p[s->port].avail -= len;
  412. s->num--;
  413. __skb_unlink(skb, skbq);
  414. goto out;
  415. }
  416. skb = NULL;
  417. }
  418. if (update-- && sched_update_avail(sge))
  419. goto again;
  420. out:
  421. /* If there are more pending skbs, we use the hardware to schedule us
  422. * again.
  423. */
  424. if (s->num && !skb) {
  425. struct cmdQ *q = &sge->cmdQ[0];
  426. clear_bit(CMDQ_STAT_LAST_PKT_DB, &q->status);
  427. if (test_and_set_bit(CMDQ_STAT_RUNNING, &q->status) == 0) {
  428. set_bit(CMDQ_STAT_LAST_PKT_DB, &q->status);
  429. writel(F_CMDQ0_ENABLE, sge->adapter->regs + A_SG_DOORBELL);
  430. }
  431. }
  432. pr_debug("sched_skb ret %p\n", skb);
  433. return skb;
  434. }
  435. /*
  436. * PIO to indicate that memory mapped Q contains valid descriptor(s).
  437. */
  438. static inline void doorbell_pio(struct adapter *adapter, u32 val)
  439. {
  440. wmb();
  441. writel(val, adapter->regs + A_SG_DOORBELL);
  442. }
  443. /*
  444. * Frees all RX buffers on the freelist Q. The caller must make sure that
  445. * the SGE is turned off before calling this function.
  446. */
  447. static void free_freelQ_buffers(struct pci_dev *pdev, struct freelQ *q)
  448. {
  449. unsigned int cidx = q->cidx;
  450. while (q->credits--) {
  451. struct freelQ_ce *ce = &q->centries[cidx];
  452. pci_unmap_single(pdev, pci_unmap_addr(ce, dma_addr),
  453. pci_unmap_len(ce, dma_len),
  454. PCI_DMA_FROMDEVICE);
  455. dev_kfree_skb(ce->skb);
  456. ce->skb = NULL;
  457. if (++cidx == q->size)
  458. cidx = 0;
  459. }
  460. }
  461. /*
  462. * Free RX free list and response queue resources.
  463. */
  464. static void free_rx_resources(struct sge *sge)
  465. {
  466. struct pci_dev *pdev = sge->adapter->pdev;
  467. unsigned int size, i;
  468. if (sge->respQ.entries) {
  469. size = sizeof(struct respQ_e) * sge->respQ.size;
  470. pci_free_consistent(pdev, size, sge->respQ.entries,
  471. sge->respQ.dma_addr);
  472. }
  473. for (i = 0; i < SGE_FREELQ_N; i++) {
  474. struct freelQ *q = &sge->freelQ[i];
  475. if (q->centries) {
  476. free_freelQ_buffers(pdev, q);
  477. kfree(q->centries);
  478. }
  479. if (q->entries) {
  480. size = sizeof(struct freelQ_e) * q->size;
  481. pci_free_consistent(pdev, size, q->entries,
  482. q->dma_addr);
  483. }
  484. }
  485. }
  486. /*
  487. * Allocates basic RX resources, consisting of memory mapped freelist Qs and a
  488. * response queue.
  489. */
  490. static int alloc_rx_resources(struct sge *sge, struct sge_params *p)
  491. {
  492. struct pci_dev *pdev = sge->adapter->pdev;
  493. unsigned int size, i;
  494. for (i = 0; i < SGE_FREELQ_N; i++) {
  495. struct freelQ *q = &sge->freelQ[i];
  496. q->genbit = 1;
  497. q->size = p->freelQ_size[i];
  498. q->dma_offset = sge->rx_pkt_pad ? 0 : NET_IP_ALIGN;
  499. size = sizeof(struct freelQ_e) * q->size;
  500. q->entries = pci_alloc_consistent(pdev, size, &q->dma_addr);
  501. if (!q->entries)
  502. goto err_no_mem;
  503. size = sizeof(struct freelQ_ce) * q->size;
  504. q->centries = kzalloc(size, GFP_KERNEL);
  505. if (!q->centries)
  506. goto err_no_mem;
  507. }
  508. /*
  509. * Calculate the buffer sizes for the two free lists. FL0 accommodates
  510. * regular sized Ethernet frames, FL1 is sized not to exceed 16K,
  511. * including all the sk_buff overhead.
  512. *
  513. * Note: For T2 FL0 and FL1 are reversed.
  514. */
  515. sge->freelQ[!sge->jumbo_fl].rx_buffer_size = SGE_RX_SM_BUF_SIZE +
  516. sizeof(struct cpl_rx_data) +
  517. sge->freelQ[!sge->jumbo_fl].dma_offset;
  518. size = (16 * 1024) -
  519. SKB_DATA_ALIGN(sizeof(struct skb_shared_info));
  520. sge->freelQ[sge->jumbo_fl].rx_buffer_size = size;
  521. /*
  522. * Setup which skb recycle Q should be used when recycling buffers from
  523. * each free list.
  524. */
  525. sge->freelQ[!sge->jumbo_fl].recycleq_idx = 0;
  526. sge->freelQ[sge->jumbo_fl].recycleq_idx = 1;
  527. sge->respQ.genbit = 1;
  528. sge->respQ.size = SGE_RESPQ_E_N;
  529. sge->respQ.credits = 0;
  530. size = sizeof(struct respQ_e) * sge->respQ.size;
  531. sge->respQ.entries =
  532. pci_alloc_consistent(pdev, size, &sge->respQ.dma_addr);
  533. if (!sge->respQ.entries)
  534. goto err_no_mem;
  535. return 0;
  536. err_no_mem:
  537. free_rx_resources(sge);
  538. return -ENOMEM;
  539. }
  540. /*
  541. * Reclaims n TX descriptors and frees the buffers associated with them.
  542. */
  543. static void free_cmdQ_buffers(struct sge *sge, struct cmdQ *q, unsigned int n)
  544. {
  545. struct cmdQ_ce *ce;
  546. struct pci_dev *pdev = sge->adapter->pdev;
  547. unsigned int cidx = q->cidx;
  548. q->in_use -= n;
  549. ce = &q->centries[cidx];
  550. while (n--) {
  551. if (likely(pci_unmap_len(ce, dma_len))) {
  552. pci_unmap_single(pdev, pci_unmap_addr(ce, dma_addr),
  553. pci_unmap_len(ce, dma_len),
  554. PCI_DMA_TODEVICE);
  555. if (q->sop)
  556. q->sop = 0;
  557. }
  558. if (ce->skb) {
  559. dev_kfree_skb_any(ce->skb);
  560. q->sop = 1;
  561. }
  562. ce++;
  563. if (++cidx == q->size) {
  564. cidx = 0;
  565. ce = q->centries;
  566. }
  567. }
  568. q->cidx = cidx;
  569. }
  570. /*
  571. * Free TX resources.
  572. *
  573. * Assumes that SGE is stopped and all interrupts are disabled.
  574. */
  575. static void free_tx_resources(struct sge *sge)
  576. {
  577. struct pci_dev *pdev = sge->adapter->pdev;
  578. unsigned int size, i;
  579. for (i = 0; i < SGE_CMDQ_N; i++) {
  580. struct cmdQ *q = &sge->cmdQ[i];
  581. if (q->centries) {
  582. if (q->in_use)
  583. free_cmdQ_buffers(sge, q, q->in_use);
  584. kfree(q->centries);
  585. }
  586. if (q->entries) {
  587. size = sizeof(struct cmdQ_e) * q->size;
  588. pci_free_consistent(pdev, size, q->entries,
  589. q->dma_addr);
  590. }
  591. }
  592. }
  593. /*
  594. * Allocates basic TX resources, consisting of memory mapped command Qs.
  595. */
  596. static int alloc_tx_resources(struct sge *sge, struct sge_params *p)
  597. {
  598. struct pci_dev *pdev = sge->adapter->pdev;
  599. unsigned int size, i;
  600. for (i = 0; i < SGE_CMDQ_N; i++) {
  601. struct cmdQ *q = &sge->cmdQ[i];
  602. q->genbit = 1;
  603. q->sop = 1;
  604. q->size = p->cmdQ_size[i];
  605. q->in_use = 0;
  606. q->status = 0;
  607. q->processed = q->cleaned = 0;
  608. q->stop_thres = 0;
  609. spin_lock_init(&q->lock);
  610. size = sizeof(struct cmdQ_e) * q->size;
  611. q->entries = pci_alloc_consistent(pdev, size, &q->dma_addr);
  612. if (!q->entries)
  613. goto err_no_mem;
  614. size = sizeof(struct cmdQ_ce) * q->size;
  615. q->centries = kzalloc(size, GFP_KERNEL);
  616. if (!q->centries)
  617. goto err_no_mem;
  618. }
  619. /*
  620. * CommandQ 0 handles Ethernet and TOE packets, while queue 1 is TOE
  621. * only. For queue 0 set the stop threshold so we can handle one more
  622. * packet from each port, plus reserve an additional 24 entries for
  623. * Ethernet packets only. Queue 1 never suspends nor do we reserve
  624. * space for Ethernet packets.
  625. */
  626. sge->cmdQ[0].stop_thres = sge->adapter->params.nports *
  627. (MAX_SKB_FRAGS + 1);
  628. return 0;
  629. err_no_mem:
  630. free_tx_resources(sge);
  631. return -ENOMEM;
  632. }
  633. static inline void setup_ring_params(struct adapter *adapter, u64 addr,
  634. u32 size, int base_reg_lo,
  635. int base_reg_hi, int size_reg)
  636. {
  637. writel((u32)addr, adapter->regs + base_reg_lo);
  638. writel(addr >> 32, adapter->regs + base_reg_hi);
  639. writel(size, adapter->regs + size_reg);
  640. }
  641. /*
  642. * Enable/disable VLAN acceleration.
  643. */
  644. void t1_set_vlan_accel(struct adapter *adapter, int on_off)
  645. {
  646. struct sge *sge = adapter->sge;
  647. sge->sge_control &= ~F_VLAN_XTRACT;
  648. if (on_off)
  649. sge->sge_control |= F_VLAN_XTRACT;
  650. if (adapter->open_device_map) {
  651. writel(sge->sge_control, adapter->regs + A_SG_CONTROL);
  652. readl(adapter->regs + A_SG_CONTROL); /* flush */
  653. }
  654. }
  655. /*
  656. * Programs the various SGE registers. However, the engine is not yet enabled,
  657. * but sge->sge_control is setup and ready to go.
  658. */
  659. static void configure_sge(struct sge *sge, struct sge_params *p)
  660. {
  661. struct adapter *ap = sge->adapter;
  662. writel(0, ap->regs + A_SG_CONTROL);
  663. setup_ring_params(ap, sge->cmdQ[0].dma_addr, sge->cmdQ[0].size,
  664. A_SG_CMD0BASELWR, A_SG_CMD0BASEUPR, A_SG_CMD0SIZE);
  665. setup_ring_params(ap, sge->cmdQ[1].dma_addr, sge->cmdQ[1].size,
  666. A_SG_CMD1BASELWR, A_SG_CMD1BASEUPR, A_SG_CMD1SIZE);
  667. setup_ring_params(ap, sge->freelQ[0].dma_addr,
  668. sge->freelQ[0].size, A_SG_FL0BASELWR,
  669. A_SG_FL0BASEUPR, A_SG_FL0SIZE);
  670. setup_ring_params(ap, sge->freelQ[1].dma_addr,
  671. sge->freelQ[1].size, A_SG_FL1BASELWR,
  672. A_SG_FL1BASEUPR, A_SG_FL1SIZE);
  673. /* The threshold comparison uses <. */
  674. writel(SGE_RX_SM_BUF_SIZE + 1, ap->regs + A_SG_FLTHRESHOLD);
  675. setup_ring_params(ap, sge->respQ.dma_addr, sge->respQ.size,
  676. A_SG_RSPBASELWR, A_SG_RSPBASEUPR, A_SG_RSPSIZE);
  677. writel((u32)sge->respQ.size - 1, ap->regs + A_SG_RSPQUEUECREDIT);
  678. sge->sge_control = F_CMDQ0_ENABLE | F_CMDQ1_ENABLE | F_FL0_ENABLE |
  679. F_FL1_ENABLE | F_CPL_ENABLE | F_RESPONSE_QUEUE_ENABLE |
  680. V_CMDQ_PRIORITY(2) | F_DISABLE_CMDQ1_GTS | F_ISCSI_COALESCE |
  681. V_RX_PKT_OFFSET(sge->rx_pkt_pad);
  682. #if defined(__BIG_ENDIAN_BITFIELD)
  683. sge->sge_control |= F_ENABLE_BIG_ENDIAN;
  684. #endif
  685. /* Initialize no-resource timer */
  686. sge->intrtimer_nres = SGE_INTRTIMER_NRES * core_ticks_per_usec(ap);
  687. t1_sge_set_coalesce_params(sge, p);
  688. }
  689. /*
  690. * Return the payload capacity of the jumbo free-list buffers.
  691. */
  692. static inline unsigned int jumbo_payload_capacity(const struct sge *sge)
  693. {
  694. return sge->freelQ[sge->jumbo_fl].rx_buffer_size -
  695. sge->freelQ[sge->jumbo_fl].dma_offset -
  696. sizeof(struct cpl_rx_data);
  697. }
  698. /*
  699. * Frees all SGE related resources and the sge structure itself
  700. */
  701. void t1_sge_destroy(struct sge *sge)
  702. {
  703. int i;
  704. for_each_port(sge->adapter, i)
  705. free_percpu(sge->port_stats[i]);
  706. kfree(sge->tx_sched);
  707. free_tx_resources(sge);
  708. free_rx_resources(sge);
  709. kfree(sge);
  710. }
  711. /*
  712. * Allocates new RX buffers on the freelist Q (and tracks them on the freelist
  713. * context Q) until the Q is full or alloc_skb fails.
  714. *
  715. * It is possible that the generation bits already match, indicating that the
  716. * buffer is already valid and nothing needs to be done. This happens when we
  717. * copied a received buffer into a new sk_buff during the interrupt processing.
  718. *
  719. * If the SGE doesn't automatically align packets properly (!sge->rx_pkt_pad),
  720. * we specify a RX_OFFSET in order to make sure that the IP header is 4B
  721. * aligned.
  722. */
  723. static void refill_free_list(struct sge *sge, struct freelQ *q)
  724. {
  725. struct pci_dev *pdev = sge->adapter->pdev;
  726. struct freelQ_ce *ce = &q->centries[q->pidx];
  727. struct freelQ_e *e = &q->entries[q->pidx];
  728. unsigned int dma_len = q->rx_buffer_size - q->dma_offset;
  729. while (q->credits < q->size) {
  730. struct sk_buff *skb;
  731. dma_addr_t mapping;
  732. skb = alloc_skb(q->rx_buffer_size, GFP_ATOMIC);
  733. if (!skb)
  734. break;
  735. skb_reserve(skb, q->dma_offset);
  736. mapping = pci_map_single(pdev, skb->data, dma_len,
  737. PCI_DMA_FROMDEVICE);
  738. ce->skb = skb;
  739. pci_unmap_addr_set(ce, dma_addr, mapping);
  740. pci_unmap_len_set(ce, dma_len, dma_len);
  741. e->addr_lo = (u32)mapping;
  742. e->addr_hi = (u64)mapping >> 32;
  743. e->len_gen = V_CMD_LEN(dma_len) | V_CMD_GEN1(q->genbit);
  744. wmb();
  745. e->gen2 = V_CMD_GEN2(q->genbit);
  746. e++;
  747. ce++;
  748. if (++q->pidx == q->size) {
  749. q->pidx = 0;
  750. q->genbit ^= 1;
  751. ce = q->centries;
  752. e = q->entries;
  753. }
  754. q->credits++;
  755. }
  756. }
  757. /*
  758. * Calls refill_free_list for both free lists. If we cannot fill at least 1/4
  759. * of both rings, we go into 'few interrupt mode' in order to give the system
  760. * time to free up resources.
  761. */
  762. static void freelQs_empty(struct sge *sge)
  763. {
  764. struct adapter *adapter = sge->adapter;
  765. u32 irq_reg = readl(adapter->regs + A_SG_INT_ENABLE);
  766. u32 irqholdoff_reg;
  767. refill_free_list(sge, &sge->freelQ[0]);
  768. refill_free_list(sge, &sge->freelQ[1]);
  769. if (sge->freelQ[0].credits > (sge->freelQ[0].size >> 2) &&
  770. sge->freelQ[1].credits > (sge->freelQ[1].size >> 2)) {
  771. irq_reg |= F_FL_EXHAUSTED;
  772. irqholdoff_reg = sge->fixed_intrtimer;
  773. } else {
  774. /* Clear the F_FL_EXHAUSTED interrupts for now */
  775. irq_reg &= ~F_FL_EXHAUSTED;
  776. irqholdoff_reg = sge->intrtimer_nres;
  777. }
  778. writel(irqholdoff_reg, adapter->regs + A_SG_INTRTIMER);
  779. writel(irq_reg, adapter->regs + A_SG_INT_ENABLE);
  780. /* We reenable the Qs to force a freelist GTS interrupt later */
  781. doorbell_pio(adapter, F_FL0_ENABLE | F_FL1_ENABLE);
  782. }
  783. #define SGE_PL_INTR_MASK (F_PL_INTR_SGE_ERR | F_PL_INTR_SGE_DATA)
  784. #define SGE_INT_FATAL (F_RESPQ_OVERFLOW | F_PACKET_TOO_BIG | F_PACKET_MISMATCH)
  785. #define SGE_INT_ENABLE (F_RESPQ_EXHAUSTED | F_RESPQ_OVERFLOW | \
  786. F_FL_EXHAUSTED | F_PACKET_TOO_BIG | F_PACKET_MISMATCH)
  787. /*
  788. * Disable SGE Interrupts
  789. */
  790. void t1_sge_intr_disable(struct sge *sge)
  791. {
  792. u32 val = readl(sge->adapter->regs + A_PL_ENABLE);
  793. writel(val & ~SGE_PL_INTR_MASK, sge->adapter->regs + A_PL_ENABLE);
  794. writel(0, sge->adapter->regs + A_SG_INT_ENABLE);
  795. }
  796. /*
  797. * Enable SGE interrupts.
  798. */
  799. void t1_sge_intr_enable(struct sge *sge)
  800. {
  801. u32 en = SGE_INT_ENABLE;
  802. u32 val = readl(sge->adapter->regs + A_PL_ENABLE);
  803. if (sge->adapter->flags & TSO_CAPABLE)
  804. en &= ~F_PACKET_TOO_BIG;
  805. writel(en, sge->adapter->regs + A_SG_INT_ENABLE);
  806. writel(val | SGE_PL_INTR_MASK, sge->adapter->regs + A_PL_ENABLE);
  807. }
  808. /*
  809. * Clear SGE interrupts.
  810. */
  811. void t1_sge_intr_clear(struct sge *sge)
  812. {
  813. writel(SGE_PL_INTR_MASK, sge->adapter->regs + A_PL_CAUSE);
  814. writel(0xffffffff, sge->adapter->regs + A_SG_INT_CAUSE);
  815. }
  816. /*
  817. * SGE 'Error' interrupt handler
  818. */
  819. int t1_sge_intr_error_handler(struct sge *sge)
  820. {
  821. struct adapter *adapter = sge->adapter;
  822. u32 cause = readl(adapter->regs + A_SG_INT_CAUSE);
  823. if (adapter->flags & TSO_CAPABLE)
  824. cause &= ~F_PACKET_TOO_BIG;
  825. if (cause & F_RESPQ_EXHAUSTED)
  826. sge->stats.respQ_empty++;
  827. if (cause & F_RESPQ_OVERFLOW) {
  828. sge->stats.respQ_overflow++;
  829. CH_ALERT("%s: SGE response queue overflow\n",
  830. adapter->name);
  831. }
  832. if (cause & F_FL_EXHAUSTED) {
  833. sge->stats.freelistQ_empty++;
  834. freelQs_empty(sge);
  835. }
  836. if (cause & F_PACKET_TOO_BIG) {
  837. sge->stats.pkt_too_big++;
  838. CH_ALERT("%s: SGE max packet size exceeded\n",
  839. adapter->name);
  840. }
  841. if (cause & F_PACKET_MISMATCH) {
  842. sge->stats.pkt_mismatch++;
  843. CH_ALERT("%s: SGE packet mismatch\n", adapter->name);
  844. }
  845. if (cause & SGE_INT_FATAL)
  846. t1_fatal_err(adapter);
  847. writel(cause, adapter->regs + A_SG_INT_CAUSE);
  848. return 0;
  849. }
  850. const struct sge_intr_counts *t1_sge_get_intr_counts(const struct sge *sge)
  851. {
  852. return &sge->stats;
  853. }
  854. void t1_sge_get_port_stats(const struct sge *sge, int port,
  855. struct sge_port_stats *ss)
  856. {
  857. int cpu;
  858. memset(ss, 0, sizeof(*ss));
  859. for_each_possible_cpu(cpu) {
  860. struct sge_port_stats *st = per_cpu_ptr(sge->port_stats[port], cpu);
  861. ss->rx_packets += st->rx_packets;
  862. ss->rx_cso_good += st->rx_cso_good;
  863. ss->tx_packets += st->tx_packets;
  864. ss->tx_cso += st->tx_cso;
  865. ss->tx_tso += st->tx_tso;
  866. ss->vlan_xtract += st->vlan_xtract;
  867. ss->vlan_insert += st->vlan_insert;
  868. }
  869. }
  870. /**
  871. * recycle_fl_buf - recycle a free list buffer
  872. * @fl: the free list
  873. * @idx: index of buffer to recycle
  874. *
  875. * Recycles the specified buffer on the given free list by adding it at
  876. * the next available slot on the list.
  877. */
  878. static void recycle_fl_buf(struct freelQ *fl, int idx)
  879. {
  880. struct freelQ_e *from = &fl->entries[idx];
  881. struct freelQ_e *to = &fl->entries[fl->pidx];
  882. fl->centries[fl->pidx] = fl->centries[idx];
  883. to->addr_lo = from->addr_lo;
  884. to->addr_hi = from->addr_hi;
  885. to->len_gen = G_CMD_LEN(from->len_gen) | V_CMD_GEN1(fl->genbit);
  886. wmb();
  887. to->gen2 = V_CMD_GEN2(fl->genbit);
  888. fl->credits++;
  889. if (++fl->pidx == fl->size) {
  890. fl->pidx = 0;
  891. fl->genbit ^= 1;
  892. }
  893. }
  894. /**
  895. * get_packet - return the next ingress packet buffer
  896. * @pdev: the PCI device that received the packet
  897. * @fl: the SGE free list holding the packet
  898. * @len: the actual packet length, excluding any SGE padding
  899. * @dma_pad: padding at beginning of buffer left by SGE DMA
  900. * @skb_pad: padding to be used if the packet is copied
  901. * @copy_thres: length threshold under which a packet should be copied
  902. * @drop_thres: # of remaining buffers before we start dropping packets
  903. *
  904. * Get the next packet from a free list and complete setup of the
  905. * sk_buff. If the packet is small we make a copy and recycle the
  906. * original buffer, otherwise we use the original buffer itself. If a
  907. * positive drop threshold is supplied packets are dropped and their
  908. * buffers recycled if (a) the number of remaining buffers is under the
  909. * threshold and the packet is too big to copy, or (b) the packet should
  910. * be copied but there is no memory for the copy.
  911. */
  912. static inline struct sk_buff *get_packet(struct pci_dev *pdev,
  913. struct freelQ *fl, unsigned int len,
  914. int dma_pad, int skb_pad,
  915. unsigned int copy_thres,
  916. unsigned int drop_thres)
  917. {
  918. struct sk_buff *skb;
  919. struct freelQ_ce *ce = &fl->centries[fl->cidx];
  920. if (len < copy_thres) {
  921. skb = alloc_skb(len + skb_pad, GFP_ATOMIC);
  922. if (likely(skb != NULL)) {
  923. skb_reserve(skb, skb_pad);
  924. skb_put(skb, len);
  925. pci_dma_sync_single_for_cpu(pdev,
  926. pci_unmap_addr(ce, dma_addr),
  927. pci_unmap_len(ce, dma_len),
  928. PCI_DMA_FROMDEVICE);
  929. memcpy(skb->data, ce->skb->data + dma_pad, len);
  930. pci_dma_sync_single_for_device(pdev,
  931. pci_unmap_addr(ce, dma_addr),
  932. pci_unmap_len(ce, dma_len),
  933. PCI_DMA_FROMDEVICE);
  934. } else if (!drop_thres)
  935. goto use_orig_buf;
  936. recycle_fl_buf(fl, fl->cidx);
  937. return skb;
  938. }
  939. if (fl->credits < drop_thres) {
  940. recycle_fl_buf(fl, fl->cidx);
  941. return NULL;
  942. }
  943. use_orig_buf:
  944. pci_unmap_single(pdev, pci_unmap_addr(ce, dma_addr),
  945. pci_unmap_len(ce, dma_len), PCI_DMA_FROMDEVICE);
  946. skb = ce->skb;
  947. skb_reserve(skb, dma_pad);
  948. skb_put(skb, len);
  949. return skb;
  950. }
  951. /**
  952. * unexpected_offload - handle an unexpected offload packet
  953. * @adapter: the adapter
  954. * @fl: the free list that received the packet
  955. *
  956. * Called when we receive an unexpected offload packet (e.g., the TOE
  957. * function is disabled or the card is a NIC). Prints a message and
  958. * recycles the buffer.
  959. */
  960. static void unexpected_offload(struct adapter *adapter, struct freelQ *fl)
  961. {
  962. struct freelQ_ce *ce = &fl->centries[fl->cidx];
  963. struct sk_buff *skb = ce->skb;
  964. pci_dma_sync_single_for_cpu(adapter->pdev, pci_unmap_addr(ce, dma_addr),
  965. pci_unmap_len(ce, dma_len), PCI_DMA_FROMDEVICE);
  966. CH_ERR("%s: unexpected offload packet, cmd %u\n",
  967. adapter->name, *skb->data);
  968. recycle_fl_buf(fl, fl->cidx);
  969. }
  970. /*
  971. * T1/T2 SGE limits the maximum DMA size per TX descriptor to
  972. * SGE_TX_DESC_MAX_PLEN (16KB). If the PAGE_SIZE is larger than 16KB, the
  973. * stack might send more than SGE_TX_DESC_MAX_PLEN in a contiguous manner.
  974. * Note that the *_large_page_tx_descs stuff will be optimized out when
  975. * PAGE_SIZE <= SGE_TX_DESC_MAX_PLEN.
  976. *
  977. * compute_large_page_descs() computes how many additional descriptors are
  978. * required to break down the stack's request.
  979. */
  980. static inline unsigned int compute_large_page_tx_descs(struct sk_buff *skb)
  981. {
  982. unsigned int count = 0;
  983. if (PAGE_SIZE > SGE_TX_DESC_MAX_PLEN) {
  984. unsigned int nfrags = skb_shinfo(skb)->nr_frags;
  985. unsigned int i, len = skb->len - skb->data_len;
  986. while (len > SGE_TX_DESC_MAX_PLEN) {
  987. count++;
  988. len -= SGE_TX_DESC_MAX_PLEN;
  989. }
  990. for (i = 0; nfrags--; i++) {
  991. skb_frag_t *frag = &skb_shinfo(skb)->frags[i];
  992. len = frag->size;
  993. while (len > SGE_TX_DESC_MAX_PLEN) {
  994. count++;
  995. len -= SGE_TX_DESC_MAX_PLEN;
  996. }
  997. }
  998. }
  999. return count;
  1000. }
  1001. /*
  1002. * Write a cmdQ entry.
  1003. *
  1004. * Since this function writes the 'flags' field, it must not be used to
  1005. * write the first cmdQ entry.
  1006. */
  1007. static inline void write_tx_desc(struct cmdQ_e *e, dma_addr_t mapping,
  1008. unsigned int len, unsigned int gen,
  1009. unsigned int eop)
  1010. {
  1011. if (unlikely(len > SGE_TX_DESC_MAX_PLEN))
  1012. BUG();
  1013. e->addr_lo = (u32)mapping;
  1014. e->addr_hi = (u64)mapping >> 32;
  1015. e->len_gen = V_CMD_LEN(len) | V_CMD_GEN1(gen);
  1016. e->flags = F_CMD_DATAVALID | V_CMD_EOP(eop) | V_CMD_GEN2(gen);
  1017. }
  1018. /*
  1019. * See comment for previous function.
  1020. *
  1021. * write_tx_descs_large_page() writes additional SGE tx descriptors if
  1022. * *desc_len exceeds HW's capability.
  1023. */
  1024. static inline unsigned int write_large_page_tx_descs(unsigned int pidx,
  1025. struct cmdQ_e **e,
  1026. struct cmdQ_ce **ce,
  1027. unsigned int *gen,
  1028. dma_addr_t *desc_mapping,
  1029. unsigned int *desc_len,
  1030. unsigned int nfrags,
  1031. struct cmdQ *q)
  1032. {
  1033. if (PAGE_SIZE > SGE_TX_DESC_MAX_PLEN) {
  1034. struct cmdQ_e *e1 = *e;
  1035. struct cmdQ_ce *ce1 = *ce;
  1036. while (*desc_len > SGE_TX_DESC_MAX_PLEN) {
  1037. *desc_len -= SGE_TX_DESC_MAX_PLEN;
  1038. write_tx_desc(e1, *desc_mapping, SGE_TX_DESC_MAX_PLEN,
  1039. *gen, nfrags == 0 && *desc_len == 0);
  1040. ce1->skb = NULL;
  1041. pci_unmap_len_set(ce1, dma_len, 0);
  1042. *desc_mapping += SGE_TX_DESC_MAX_PLEN;
  1043. if (*desc_len) {
  1044. ce1++;
  1045. e1++;
  1046. if (++pidx == q->size) {
  1047. pidx = 0;
  1048. *gen ^= 1;
  1049. ce1 = q->centries;
  1050. e1 = q->entries;
  1051. }
  1052. }
  1053. }
  1054. *e = e1;
  1055. *ce = ce1;
  1056. }
  1057. return pidx;
  1058. }
  1059. /*
  1060. * Write the command descriptors to transmit the given skb starting at
  1061. * descriptor pidx with the given generation.
  1062. */
  1063. static inline void write_tx_descs(struct adapter *adapter, struct sk_buff *skb,
  1064. unsigned int pidx, unsigned int gen,
  1065. struct cmdQ *q)
  1066. {
  1067. dma_addr_t mapping, desc_mapping;
  1068. struct cmdQ_e *e, *e1;
  1069. struct cmdQ_ce *ce;
  1070. unsigned int i, flags, first_desc_len, desc_len,
  1071. nfrags = skb_shinfo(skb)->nr_frags;
  1072. e = e1 = &q->entries[pidx];
  1073. ce = &q->centries[pidx];
  1074. mapping = pci_map_single(adapter->pdev, skb->data,
  1075. skb->len - skb->data_len, PCI_DMA_TODEVICE);
  1076. desc_mapping = mapping;
  1077. desc_len = skb->len - skb->data_len;
  1078. flags = F_CMD_DATAVALID | F_CMD_SOP |
  1079. V_CMD_EOP(nfrags == 0 && desc_len <= SGE_TX_DESC_MAX_PLEN) |
  1080. V_CMD_GEN2(gen);
  1081. first_desc_len = (desc_len <= SGE_TX_DESC_MAX_PLEN) ?
  1082. desc_len : SGE_TX_DESC_MAX_PLEN;
  1083. e->addr_lo = (u32)desc_mapping;
  1084. e->addr_hi = (u64)desc_mapping >> 32;
  1085. e->len_gen = V_CMD_LEN(first_desc_len) | V_CMD_GEN1(gen);
  1086. ce->skb = NULL;
  1087. pci_unmap_len_set(ce, dma_len, 0);
  1088. if (PAGE_SIZE > SGE_TX_DESC_MAX_PLEN &&
  1089. desc_len > SGE_TX_DESC_MAX_PLEN) {
  1090. desc_mapping += first_desc_len;
  1091. desc_len -= first_desc_len;
  1092. e1++;
  1093. ce++;
  1094. if (++pidx == q->size) {
  1095. pidx = 0;
  1096. gen ^= 1;
  1097. e1 = q->entries;
  1098. ce = q->centries;
  1099. }
  1100. pidx = write_large_page_tx_descs(pidx, &e1, &ce, &gen,
  1101. &desc_mapping, &desc_len,
  1102. nfrags, q);
  1103. if (likely(desc_len))
  1104. write_tx_desc(e1, desc_mapping, desc_len, gen,
  1105. nfrags == 0);
  1106. }
  1107. ce->skb = NULL;
  1108. pci_unmap_addr_set(ce, dma_addr, mapping);
  1109. pci_unmap_len_set(ce, dma_len, skb->len - skb->data_len);
  1110. for (i = 0; nfrags--; i++) {
  1111. skb_frag_t *frag = &skb_shinfo(skb)->frags[i];
  1112. e1++;
  1113. ce++;
  1114. if (++pidx == q->size) {
  1115. pidx = 0;
  1116. gen ^= 1;
  1117. e1 = q->entries;
  1118. ce = q->centries;
  1119. }
  1120. mapping = pci_map_page(adapter->pdev, frag->page,
  1121. frag->page_offset, frag->size,
  1122. PCI_DMA_TODEVICE);
  1123. desc_mapping = mapping;
  1124. desc_len = frag->size;
  1125. pidx = write_large_page_tx_descs(pidx, &e1, &ce, &gen,
  1126. &desc_mapping, &desc_len,
  1127. nfrags, q);
  1128. if (likely(desc_len))
  1129. write_tx_desc(e1, desc_mapping, desc_len, gen,
  1130. nfrags == 0);
  1131. ce->skb = NULL;
  1132. pci_unmap_addr_set(ce, dma_addr, mapping);
  1133. pci_unmap_len_set(ce, dma_len, frag->size);
  1134. }
  1135. ce->skb = skb;
  1136. wmb();
  1137. e->flags = flags;
  1138. }
  1139. /*
  1140. * Clean up completed Tx buffers.
  1141. */
  1142. static inline void reclaim_completed_tx(struct sge *sge, struct cmdQ *q)
  1143. {
  1144. unsigned int reclaim = q->processed - q->cleaned;
  1145. if (reclaim) {
  1146. pr_debug("reclaim_completed_tx processed:%d cleaned:%d\n",
  1147. q->processed, q->cleaned);
  1148. free_cmdQ_buffers(sge, q, reclaim);
  1149. q->cleaned += reclaim;
  1150. }
  1151. }
  1152. /*
  1153. * Called from tasklet. Checks the scheduler for any
  1154. * pending skbs that can be sent.
  1155. */
  1156. static void restart_sched(unsigned long arg)
  1157. {
  1158. struct sge *sge = (struct sge *) arg;
  1159. struct adapter *adapter = sge->adapter;
  1160. struct cmdQ *q = &sge->cmdQ[0];
  1161. struct sk_buff *skb;
  1162. unsigned int credits, queued_skb = 0;
  1163. spin_lock(&q->lock);
  1164. reclaim_completed_tx(sge, q);
  1165. credits = q->size - q->in_use;
  1166. pr_debug("restart_sched credits=%d\n", credits);
  1167. while ((skb = sched_skb(sge, NULL, credits)) != NULL) {
  1168. unsigned int genbit, pidx, count;
  1169. count = 1 + skb_shinfo(skb)->nr_frags;
  1170. count += compute_large_page_tx_descs(skb);
  1171. q->in_use += count;
  1172. genbit = q->genbit;
  1173. pidx = q->pidx;
  1174. q->pidx += count;
  1175. if (q->pidx >= q->size) {
  1176. q->pidx -= q->size;
  1177. q->genbit ^= 1;
  1178. }
  1179. write_tx_descs(adapter, skb, pidx, genbit, q);
  1180. credits = q->size - q->in_use;
  1181. queued_skb = 1;
  1182. }
  1183. if (queued_skb) {
  1184. clear_bit(CMDQ_STAT_LAST_PKT_DB, &q->status);
  1185. if (test_and_set_bit(CMDQ_STAT_RUNNING, &q->status) == 0) {
  1186. set_bit(CMDQ_STAT_LAST_PKT_DB, &q->status);
  1187. writel(F_CMDQ0_ENABLE, adapter->regs + A_SG_DOORBELL);
  1188. }
  1189. }
  1190. spin_unlock(&q->lock);
  1191. }
  1192. /**
  1193. * sge_rx - process an ingress ethernet packet
  1194. * @sge: the sge structure
  1195. * @fl: the free list that contains the packet buffer
  1196. * @len: the packet length
  1197. *
  1198. * Process an ingress ethernet pakcet and deliver it to the stack.
  1199. */
  1200. static int sge_rx(struct sge *sge, struct freelQ *fl, unsigned int len)
  1201. {
  1202. struct sk_buff *skb;
  1203. struct cpl_rx_pkt *p;
  1204. struct adapter *adapter = sge->adapter;
  1205. struct sge_port_stats *st;
  1206. skb = get_packet(adapter->pdev, fl, len - sge->rx_pkt_pad,
  1207. sge->rx_pkt_pad, 2, SGE_RX_COPY_THRES,
  1208. SGE_RX_DROP_THRES);
  1209. if (unlikely(!skb)) {
  1210. sge->stats.rx_drops++;
  1211. return 0;
  1212. }
  1213. p = (struct cpl_rx_pkt *)skb->data;
  1214. skb_pull(skb, sizeof(*p));
  1215. if (p->iff >= adapter->params.nports) {
  1216. kfree_skb(skb);
  1217. return 0;
  1218. }
  1219. skb->dev = adapter->port[p->iff].dev;
  1220. skb->dev->last_rx = jiffies;
  1221. st = per_cpu_ptr(sge->port_stats[p->iff], smp_processor_id());
  1222. st->rx_packets++;
  1223. skb->protocol = eth_type_trans(skb, skb->dev);
  1224. if ((adapter->flags & RX_CSUM_ENABLED) && p->csum == 0xffff &&
  1225. skb->protocol == htons(ETH_P_IP) &&
  1226. (skb->data[9] == IPPROTO_TCP || skb->data[9] == IPPROTO_UDP)) {
  1227. ++st->rx_cso_good;
  1228. skb->ip_summed = CHECKSUM_UNNECESSARY;
  1229. } else
  1230. skb->ip_summed = CHECKSUM_NONE;
  1231. if (unlikely(adapter->vlan_grp && p->vlan_valid)) {
  1232. st->vlan_xtract++;
  1233. #ifdef CONFIG_CHELSIO_T1_NAPI
  1234. vlan_hwaccel_receive_skb(skb, adapter->vlan_grp,
  1235. ntohs(p->vlan));
  1236. #else
  1237. vlan_hwaccel_rx(skb, adapter->vlan_grp,
  1238. ntohs(p->vlan));
  1239. #endif
  1240. } else {
  1241. #ifdef CONFIG_CHELSIO_T1_NAPI
  1242. netif_receive_skb(skb);
  1243. #else
  1244. netif_rx(skb);
  1245. #endif
  1246. }
  1247. return 0;
  1248. }
  1249. /*
  1250. * Returns true if a command queue has enough available descriptors that
  1251. * we can resume Tx operation after temporarily disabling its packet queue.
  1252. */
  1253. static inline int enough_free_Tx_descs(const struct cmdQ *q)
  1254. {
  1255. unsigned int r = q->processed - q->cleaned;
  1256. return q->in_use - r < (q->size >> 1);
  1257. }
  1258. /*
  1259. * Called when sufficient space has become available in the SGE command queues
  1260. * after the Tx packet schedulers have been suspended to restart the Tx path.
  1261. */
  1262. static void restart_tx_queues(struct sge *sge)
  1263. {
  1264. struct adapter *adap = sge->adapter;
  1265. int i;
  1266. if (!enough_free_Tx_descs(&sge->cmdQ[0]))
  1267. return;
  1268. for_each_port(adap, i) {
  1269. struct net_device *nd = adap->port[i].dev;
  1270. if (test_and_clear_bit(nd->if_port, &sge->stopped_tx_queues) &&
  1271. netif_running(nd)) {
  1272. sge->stats.cmdQ_restarted[2]++;
  1273. netif_wake_queue(nd);
  1274. }
  1275. }
  1276. }
  1277. /*
  1278. * update_tx_info is called from the interrupt handler/NAPI to return cmdQ0
  1279. * information.
  1280. */
  1281. static unsigned int update_tx_info(struct adapter *adapter,
  1282. unsigned int flags,
  1283. unsigned int pr0)
  1284. {
  1285. struct sge *sge = adapter->sge;
  1286. struct cmdQ *cmdq = &sge->cmdQ[0];
  1287. cmdq->processed += pr0;
  1288. if (flags & (F_FL0_ENABLE | F_FL1_ENABLE)) {
  1289. freelQs_empty(sge);
  1290. flags &= ~(F_FL0_ENABLE | F_FL1_ENABLE);
  1291. }
  1292. if (flags & F_CMDQ0_ENABLE) {
  1293. clear_bit(CMDQ_STAT_RUNNING, &cmdq->status);
  1294. if (cmdq->cleaned + cmdq->in_use != cmdq->processed &&
  1295. !test_and_set_bit(CMDQ_STAT_LAST_PKT_DB, &cmdq->status)) {
  1296. set_bit(CMDQ_STAT_RUNNING, &cmdq->status);
  1297. writel(F_CMDQ0_ENABLE, adapter->regs + A_SG_DOORBELL);
  1298. }
  1299. if (sge->tx_sched)
  1300. tasklet_hi_schedule(&sge->tx_sched->sched_tsk);
  1301. flags &= ~F_CMDQ0_ENABLE;
  1302. }
  1303. if (unlikely(sge->stopped_tx_queues != 0))
  1304. restart_tx_queues(sge);
  1305. return flags;
  1306. }
  1307. /*
  1308. * Process SGE responses, up to the supplied budget. Returns the number of
  1309. * responses processed. A negative budget is effectively unlimited.
  1310. */
  1311. static int process_responses(struct adapter *adapter, int budget)
  1312. {
  1313. struct sge *sge = adapter->sge;
  1314. struct respQ *q = &sge->respQ;
  1315. struct respQ_e *e = &q->entries[q->cidx];
  1316. int budget_left = budget;
  1317. unsigned int flags = 0;
  1318. unsigned int cmdq_processed[SGE_CMDQ_N] = {0, 0};
  1319. while (likely(budget_left && e->GenerationBit == q->genbit)) {
  1320. flags |= e->Qsleeping;
  1321. cmdq_processed[0] += e->Cmdq0CreditReturn;
  1322. cmdq_processed[1] += e->Cmdq1CreditReturn;
  1323. /* We batch updates to the TX side to avoid cacheline
  1324. * ping-pong of TX state information on MP where the sender
  1325. * might run on a different CPU than this function...
  1326. */
  1327. if (unlikely(flags & F_CMDQ0_ENABLE || cmdq_processed[0] > 64)) {
  1328. flags = update_tx_info(adapter, flags, cmdq_processed[0]);
  1329. cmdq_processed[0] = 0;
  1330. }
  1331. if (unlikely(cmdq_processed[1] > 16)) {
  1332. sge->cmdQ[1].processed += cmdq_processed[1];
  1333. cmdq_processed[1] = 0;
  1334. }
  1335. if (likely(e->DataValid)) {
  1336. struct freelQ *fl = &sge->freelQ[e->FreelistQid];
  1337. BUG_ON(!e->Sop || !e->Eop);
  1338. if (unlikely(e->Offload))
  1339. unexpected_offload(adapter, fl);
  1340. else
  1341. sge_rx(sge, fl, e->BufferLength);
  1342. /*
  1343. * Note: this depends on each packet consuming a
  1344. * single free-list buffer; cf. the BUG above.
  1345. */
  1346. if (++fl->cidx == fl->size)
  1347. fl->cidx = 0;
  1348. if (unlikely(--fl->credits <
  1349. fl->size - SGE_FREEL_REFILL_THRESH))
  1350. refill_free_list(sge, fl);
  1351. } else
  1352. sge->stats.pure_rsps++;
  1353. e++;
  1354. if (unlikely(++q->cidx == q->size)) {
  1355. q->cidx = 0;
  1356. q->genbit ^= 1;
  1357. e = q->entries;
  1358. }
  1359. prefetch(e);
  1360. if (++q->credits > SGE_RESPQ_REPLENISH_THRES) {
  1361. writel(q->credits, adapter->regs + A_SG_RSPQUEUECREDIT);
  1362. q->credits = 0;
  1363. }
  1364. --budget_left;
  1365. }
  1366. flags = update_tx_info(adapter, flags, cmdq_processed[0]);
  1367. sge->cmdQ[1].processed += cmdq_processed[1];
  1368. budget -= budget_left;
  1369. return budget;
  1370. }
  1371. #ifdef CONFIG_CHELSIO_T1_NAPI
  1372. /*
  1373. * A simpler version of process_responses() that handles only pure (i.e.,
  1374. * non data-carrying) responses. Such respones are too light-weight to justify
  1375. * calling a softirq when using NAPI, so we handle them specially in hard
  1376. * interrupt context. The function is called with a pointer to a response,
  1377. * which the caller must ensure is a valid pure response. Returns 1 if it
  1378. * encounters a valid data-carrying response, 0 otherwise.
  1379. */
  1380. static int process_pure_responses(struct adapter *adapter, struct respQ_e *e)
  1381. {
  1382. struct sge *sge = adapter->sge;
  1383. struct respQ *q = &sge->respQ;
  1384. unsigned int flags = 0;
  1385. unsigned int cmdq_processed[SGE_CMDQ_N] = {0, 0};
  1386. do {
  1387. flags |= e->Qsleeping;
  1388. cmdq_processed[0] += e->Cmdq0CreditReturn;
  1389. cmdq_processed[1] += e->Cmdq1CreditReturn;
  1390. e++;
  1391. if (unlikely(++q->cidx == q->size)) {
  1392. q->cidx = 0;
  1393. q->genbit ^= 1;
  1394. e = q->entries;
  1395. }
  1396. prefetch(e);
  1397. if (++q->credits > SGE_RESPQ_REPLENISH_THRES) {
  1398. writel(q->credits, adapter->regs + A_SG_RSPQUEUECREDIT);
  1399. q->credits = 0;
  1400. }
  1401. sge->stats.pure_rsps++;
  1402. } while (e->GenerationBit == q->genbit && !e->DataValid);
  1403. flags = update_tx_info(adapter, flags, cmdq_processed[0]);
  1404. sge->cmdQ[1].processed += cmdq_processed[1];
  1405. return e->GenerationBit == q->genbit;
  1406. }
  1407. /*
  1408. * Handler for new data events when using NAPI. This does not need any locking
  1409. * or protection from interrupts as data interrupts are off at this point and
  1410. * other adapter interrupts do not interfere.
  1411. */
  1412. int t1_poll(struct net_device *dev, int *budget)
  1413. {
  1414. struct adapter *adapter = dev->priv;
  1415. int effective_budget = min(*budget, dev->quota);
  1416. int work_done = process_responses(adapter, effective_budget);
  1417. *budget -= work_done;
  1418. dev->quota -= work_done;
  1419. if (work_done >= effective_budget)
  1420. return 1;
  1421. spin_lock_irq(&adapter->async_lock);
  1422. __netif_rx_complete(dev);
  1423. writel(adapter->sge->respQ.cidx, adapter->regs + A_SG_SLEEPING);
  1424. writel(adapter->slow_intr_mask | F_PL_INTR_SGE_DATA,
  1425. adapter->regs + A_PL_ENABLE);
  1426. spin_unlock_irq(&adapter->async_lock);
  1427. return 0;
  1428. }
  1429. /*
  1430. * NAPI version of the main interrupt handler.
  1431. */
  1432. irqreturn_t t1_interrupt(int irq, void *data)
  1433. {
  1434. struct adapter *adapter = data;
  1435. struct net_device *dev = adapter->sge->netdev;
  1436. struct sge *sge = adapter->sge;
  1437. u32 cause;
  1438. int handled = 0;
  1439. cause = readl(adapter->regs + A_PL_CAUSE);
  1440. if (cause == 0 || cause == ~0)
  1441. return IRQ_NONE;
  1442. spin_lock(&adapter->async_lock);
  1443. if (cause & F_PL_INTR_SGE_DATA) {
  1444. struct respQ *q = &adapter->sge->respQ;
  1445. struct respQ_e *e = &q->entries[q->cidx];
  1446. handled = 1;
  1447. writel(F_PL_INTR_SGE_DATA, adapter->regs + A_PL_CAUSE);
  1448. if (e->GenerationBit == q->genbit &&
  1449. __netif_rx_schedule_prep(dev)) {
  1450. if (e->DataValid || process_pure_responses(adapter, e)) {
  1451. /* mask off data IRQ */
  1452. writel(adapter->slow_intr_mask,
  1453. adapter->regs + A_PL_ENABLE);
  1454. __netif_rx_schedule(sge->netdev);
  1455. goto unlock;
  1456. }
  1457. /* no data, no NAPI needed */
  1458. netif_poll_enable(dev);
  1459. }
  1460. writel(q->cidx, adapter->regs + A_SG_SLEEPING);
  1461. } else
  1462. handled = t1_slow_intr_handler(adapter);
  1463. if (!handled)
  1464. sge->stats.unhandled_irqs++;
  1465. unlock:
  1466. spin_unlock(&adapter->async_lock);
  1467. return IRQ_RETVAL(handled != 0);
  1468. }
  1469. #else
  1470. /*
  1471. * Main interrupt handler, optimized assuming that we took a 'DATA'
  1472. * interrupt.
  1473. *
  1474. * 1. Clear the interrupt
  1475. * 2. Loop while we find valid descriptors and process them; accumulate
  1476. * information that can be processed after the loop
  1477. * 3. Tell the SGE at which index we stopped processing descriptors
  1478. * 4. Bookkeeping; free TX buffers, ring doorbell if there are any
  1479. * outstanding TX buffers waiting, replenish RX buffers, potentially
  1480. * reenable upper layers if they were turned off due to lack of TX
  1481. * resources which are available again.
  1482. * 5. If we took an interrupt, but no valid respQ descriptors was found we
  1483. * let the slow_intr_handler run and do error handling.
  1484. */
  1485. irqreturn_t t1_interrupt(int irq, void *cookie)
  1486. {
  1487. int work_done;
  1488. struct respQ_e *e;
  1489. struct adapter *adapter = cookie;
  1490. struct respQ *Q = &adapter->sge->respQ;
  1491. spin_lock(&adapter->async_lock);
  1492. e = &Q->entries[Q->cidx];
  1493. prefetch(e);
  1494. writel(F_PL_INTR_SGE_DATA, adapter->regs + A_PL_CAUSE);
  1495. if (likely(e->GenerationBit == Q->genbit))
  1496. work_done = process_responses(adapter, -1);
  1497. else
  1498. work_done = t1_slow_intr_handler(adapter);
  1499. /*
  1500. * The unconditional clearing of the PL_CAUSE above may have raced
  1501. * with DMA completion and the corresponding generation of a response
  1502. * to cause us to miss the resulting data interrupt. The next write
  1503. * is also unconditional to recover the missed interrupt and render
  1504. * this race harmless.
  1505. */
  1506. writel(Q->cidx, adapter->regs + A_SG_SLEEPING);
  1507. if (!work_done)
  1508. adapter->sge->stats.unhandled_irqs++;
  1509. spin_unlock(&adapter->async_lock);
  1510. return IRQ_RETVAL(work_done != 0);
  1511. }
  1512. #endif
  1513. /*
  1514. * Enqueues the sk_buff onto the cmdQ[qid] and has hardware fetch it.
  1515. *
  1516. * The code figures out how many entries the sk_buff will require in the
  1517. * cmdQ and updates the cmdQ data structure with the state once the enqueue
  1518. * has complete. Then, it doesn't access the global structure anymore, but
  1519. * uses the corresponding fields on the stack. In conjuction with a spinlock
  1520. * around that code, we can make the function reentrant without holding the
  1521. * lock when we actually enqueue (which might be expensive, especially on
  1522. * architectures with IO MMUs).
  1523. *
  1524. * This runs with softirqs disabled.
  1525. */
  1526. static int t1_sge_tx(struct sk_buff *skb, struct adapter *adapter,
  1527. unsigned int qid, struct net_device *dev)
  1528. {
  1529. struct sge *sge = adapter->sge;
  1530. struct cmdQ *q = &sge->cmdQ[qid];
  1531. unsigned int credits, pidx, genbit, count, use_sched_skb = 0;
  1532. if (!spin_trylock(&q->lock))
  1533. return NETDEV_TX_LOCKED;
  1534. reclaim_completed_tx(sge, q);
  1535. pidx = q->pidx;
  1536. credits = q->size - q->in_use;
  1537. count = 1 + skb_shinfo(skb)->nr_frags;
  1538. count += compute_large_page_tx_descs(skb);
  1539. /* Ethernet packet */
  1540. if (unlikely(credits < count)) {
  1541. if (!netif_queue_stopped(dev)) {
  1542. netif_stop_queue(dev);
  1543. set_bit(dev->if_port, &sge->stopped_tx_queues);
  1544. sge->stats.cmdQ_full[2]++;
  1545. CH_ERR("%s: Tx ring full while queue awake!\n",
  1546. adapter->name);
  1547. }
  1548. spin_unlock(&q->lock);
  1549. return NETDEV_TX_BUSY;
  1550. }
  1551. if (unlikely(credits - count < q->stop_thres)) {
  1552. netif_stop_queue(dev);
  1553. set_bit(dev->if_port, &sge->stopped_tx_queues);
  1554. sge->stats.cmdQ_full[2]++;
  1555. }
  1556. /* T204 cmdQ0 skbs that are destined for a certain port have to go
  1557. * through the scheduler.
  1558. */
  1559. if (sge->tx_sched && !qid && skb->dev) {
  1560. use_sched:
  1561. use_sched_skb = 1;
  1562. /* Note that the scheduler might return a different skb than
  1563. * the one passed in.
  1564. */
  1565. skb = sched_skb(sge, skb, credits);
  1566. if (!skb) {
  1567. spin_unlock(&q->lock);
  1568. return NETDEV_TX_OK;
  1569. }
  1570. pidx = q->pidx;
  1571. count = 1 + skb_shinfo(skb)->nr_frags;
  1572. count += compute_large_page_tx_descs(skb);
  1573. }
  1574. q->in_use += count;
  1575. genbit = q->genbit;
  1576. pidx = q->pidx;
  1577. q->pidx += count;
  1578. if (q->pidx >= q->size) {
  1579. q->pidx -= q->size;
  1580. q->genbit ^= 1;
  1581. }
  1582. spin_unlock(&q->lock);
  1583. write_tx_descs(adapter, skb, pidx, genbit, q);
  1584. /*
  1585. * We always ring the doorbell for cmdQ1. For cmdQ0, we only ring
  1586. * the doorbell if the Q is asleep. There is a natural race, where
  1587. * the hardware is going to sleep just after we checked, however,
  1588. * then the interrupt handler will detect the outstanding TX packet
  1589. * and ring the doorbell for us.
  1590. */
  1591. if (qid)
  1592. doorbell_pio(adapter, F_CMDQ1_ENABLE);
  1593. else {
  1594. clear_bit(CMDQ_STAT_LAST_PKT_DB, &q->status);
  1595. if (test_and_set_bit(CMDQ_STAT_RUNNING, &q->status) == 0) {
  1596. set_bit(CMDQ_STAT_LAST_PKT_DB, &q->status);
  1597. writel(F_CMDQ0_ENABLE, adapter->regs + A_SG_DOORBELL);
  1598. }
  1599. }
  1600. if (use_sched_skb) {
  1601. if (spin_trylock(&q->lock)) {
  1602. credits = q->size - q->in_use;
  1603. skb = NULL;
  1604. goto use_sched;
  1605. }
  1606. }
  1607. return NETDEV_TX_OK;
  1608. }
  1609. #define MK_ETH_TYPE_MSS(type, mss) (((mss) & 0x3FFF) | ((type) << 14))
  1610. /*
  1611. * eth_hdr_len - return the length of an Ethernet header
  1612. * @data: pointer to the start of the Ethernet header
  1613. *
  1614. * Returns the length of an Ethernet header, including optional VLAN tag.
  1615. */
  1616. static inline int eth_hdr_len(const void *data)
  1617. {
  1618. const struct ethhdr *e = data;
  1619. return e->h_proto == htons(ETH_P_8021Q) ? VLAN_ETH_HLEN : ETH_HLEN;
  1620. }
  1621. /*
  1622. * Adds the CPL header to the sk_buff and passes it to t1_sge_tx.
  1623. */
  1624. int t1_start_xmit(struct sk_buff *skb, struct net_device *dev)
  1625. {
  1626. struct adapter *adapter = dev->priv;
  1627. struct sge *sge = adapter->sge;
  1628. struct sge_port_stats *st = per_cpu_ptr(sge->port_stats[dev->if_port], smp_processor_id());
  1629. struct cpl_tx_pkt *cpl;
  1630. struct sk_buff *orig_skb = skb;
  1631. int ret;
  1632. if (skb->protocol == htons(ETH_P_CPL5))
  1633. goto send;
  1634. if (skb_shinfo(skb)->gso_size) {
  1635. int eth_type;
  1636. struct cpl_tx_pkt_lso *hdr;
  1637. ++st->tx_tso;
  1638. eth_type = skb->nh.raw - skb->data == ETH_HLEN ?
  1639. CPL_ETH_II : CPL_ETH_II_VLAN;
  1640. hdr = (struct cpl_tx_pkt_lso *)skb_push(skb, sizeof(*hdr));
  1641. hdr->opcode = CPL_TX_PKT_LSO;
  1642. hdr->ip_csum_dis = hdr->l4_csum_dis = 0;
  1643. hdr->ip_hdr_words = skb->nh.iph->ihl;
  1644. hdr->tcp_hdr_words = skb->h.th->doff;
  1645. hdr->eth_type_mss = htons(MK_ETH_TYPE_MSS(eth_type,
  1646. skb_shinfo(skb)->gso_size));
  1647. hdr->len = htonl(skb->len - sizeof(*hdr));
  1648. cpl = (struct cpl_tx_pkt *)hdr;
  1649. } else {
  1650. /*
  1651. * Packets shorter than ETH_HLEN can break the MAC, drop them
  1652. * early. Also, we may get oversized packets because some
  1653. * parts of the kernel don't handle our unusual hard_header_len
  1654. * right, drop those too.
  1655. */
  1656. if (unlikely(skb->len < ETH_HLEN ||
  1657. skb->len > dev->mtu + eth_hdr_len(skb->data))) {
  1658. pr_debug("%s: packet size %d hdr %d mtu%d\n", dev->name,
  1659. skb->len, eth_hdr_len(skb->data), dev->mtu);
  1660. dev_kfree_skb_any(skb);
  1661. return NETDEV_TX_OK;
  1662. }
  1663. /*
  1664. * We are using a non-standard hard_header_len and some kernel
  1665. * components, such as pktgen, do not handle it right.
  1666. * Complain when this happens but try to fix things up.
  1667. */
  1668. if (unlikely(skb_headroom(skb) < dev->hard_header_len - ETH_HLEN)) {
  1669. pr_debug("%s: headroom %d header_len %d\n", dev->name,
  1670. skb_headroom(skb), dev->hard_header_len);
  1671. if (net_ratelimit())
  1672. printk(KERN_ERR "%s: inadequate headroom in "
  1673. "Tx packet\n", dev->name);
  1674. skb = skb_realloc_headroom(skb, sizeof(*cpl));
  1675. dev_kfree_skb_any(orig_skb);
  1676. if (!skb)
  1677. return NETDEV_TX_OK;
  1678. }
  1679. if (!(adapter->flags & UDP_CSUM_CAPABLE) &&
  1680. skb->ip_summed == CHECKSUM_PARTIAL &&
  1681. skb->nh.iph->protocol == IPPROTO_UDP) {
  1682. if (unlikely(skb_checksum_help(skb))) {
  1683. pr_debug("%s: unable to do udp checksum\n", dev->name);
  1684. dev_kfree_skb_any(skb);
  1685. return NETDEV_TX_OK;
  1686. }
  1687. }
  1688. /* Hmmm, assuming to catch the gratious arp... and we'll use
  1689. * it to flush out stuck espi packets...
  1690. */
  1691. if ((unlikely(!adapter->sge->espibug_skb[dev->if_port]))) {
  1692. if (skb->protocol == htons(ETH_P_ARP) &&
  1693. skb->nh.arph->ar_op == htons(ARPOP_REQUEST)) {
  1694. adapter->sge->espibug_skb[dev->if_port] = skb;
  1695. /* We want to re-use this skb later. We
  1696. * simply bump the reference count and it
  1697. * will not be freed...
  1698. */
  1699. skb = skb_get(skb);
  1700. }
  1701. }
  1702. cpl = (struct cpl_tx_pkt *)__skb_push(skb, sizeof(*cpl));
  1703. cpl->opcode = CPL_TX_PKT;
  1704. cpl->ip_csum_dis = 1; /* SW calculates IP csum */
  1705. cpl->l4_csum_dis = skb->ip_summed == CHECKSUM_PARTIAL ? 0 : 1;
  1706. /* the length field isn't used so don't bother setting it */
  1707. st->tx_cso += (skb->ip_summed == CHECKSUM_PARTIAL);
  1708. }
  1709. cpl->iff = dev->if_port;
  1710. #if defined(CONFIG_VLAN_8021Q) || defined(CONFIG_VLAN_8021Q_MODULE)
  1711. if (adapter->vlan_grp && vlan_tx_tag_present(skb)) {
  1712. cpl->vlan_valid = 1;
  1713. cpl->vlan = htons(vlan_tx_tag_get(skb));
  1714. st->vlan_insert++;
  1715. } else
  1716. #endif
  1717. cpl->vlan_valid = 0;
  1718. send:
  1719. st->tx_packets++;
  1720. dev->trans_start = jiffies;
  1721. ret = t1_sge_tx(skb, adapter, 0, dev);
  1722. /* If transmit busy, and we reallocated skb's due to headroom limit,
  1723. * then silently discard to avoid leak.
  1724. */
  1725. if (unlikely(ret != NETDEV_TX_OK && skb != orig_skb)) {
  1726. dev_kfree_skb_any(skb);
  1727. ret = NETDEV_TX_OK;
  1728. }
  1729. return ret;
  1730. }
  1731. /*
  1732. * Callback for the Tx buffer reclaim timer. Runs with softirqs disabled.
  1733. */
  1734. static void sge_tx_reclaim_cb(unsigned long data)
  1735. {
  1736. int i;
  1737. struct sge *sge = (struct sge *)data;
  1738. for (i = 0; i < SGE_CMDQ_N; ++i) {
  1739. struct cmdQ *q = &sge->cmdQ[i];
  1740. if (!spin_trylock(&q->lock))
  1741. continue;
  1742. reclaim_completed_tx(sge, q);
  1743. if (i == 0 && q->in_use) { /* flush pending credits */
  1744. writel(F_CMDQ0_ENABLE, sge->adapter->regs + A_SG_DOORBELL);
  1745. }
  1746. spin_unlock(&q->lock);
  1747. }
  1748. mod_timer(&sge->tx_reclaim_timer, jiffies + TX_RECLAIM_PERIOD);
  1749. }
  1750. /*
  1751. * Propagate changes of the SGE coalescing parameters to the HW.
  1752. */
  1753. int t1_sge_set_coalesce_params(struct sge *sge, struct sge_params *p)
  1754. {
  1755. sge->fixed_intrtimer = p->rx_coalesce_usecs *
  1756. core_ticks_per_usec(sge->adapter);
  1757. writel(sge->fixed_intrtimer, sge->adapter->regs + A_SG_INTRTIMER);
  1758. return 0;
  1759. }
  1760. /*
  1761. * Allocates both RX and TX resources and configures the SGE. However,
  1762. * the hardware is not enabled yet.
  1763. */
  1764. int t1_sge_configure(struct sge *sge, struct sge_params *p)
  1765. {
  1766. if (alloc_rx_resources(sge, p))
  1767. return -ENOMEM;
  1768. if (alloc_tx_resources(sge, p)) {
  1769. free_rx_resources(sge);
  1770. return -ENOMEM;
  1771. }
  1772. configure_sge(sge, p);
  1773. /*
  1774. * Now that we have sized the free lists calculate the payload
  1775. * capacity of the large buffers. Other parts of the driver use
  1776. * this to set the max offload coalescing size so that RX packets
  1777. * do not overflow our large buffers.
  1778. */
  1779. p->large_buf_capacity = jumbo_payload_capacity(sge);
  1780. return 0;
  1781. }
  1782. /*
  1783. * Disables the DMA engine.
  1784. */
  1785. void t1_sge_stop(struct sge *sge)
  1786. {
  1787. int i;
  1788. writel(0, sge->adapter->regs + A_SG_CONTROL);
  1789. readl(sge->adapter->regs + A_SG_CONTROL); /* flush */
  1790. if (is_T2(sge->adapter))
  1791. del_timer_sync(&sge->espibug_timer);
  1792. del_timer_sync(&sge->tx_reclaim_timer);
  1793. if (sge->tx_sched)
  1794. tx_sched_stop(sge);
  1795. for (i = 0; i < MAX_NPORTS; i++)
  1796. if (sge->espibug_skb[i])
  1797. kfree_skb(sge->espibug_skb[i]);
  1798. }
  1799. /*
  1800. * Enables the DMA engine.
  1801. */
  1802. void t1_sge_start(struct sge *sge)
  1803. {
  1804. refill_free_list(sge, &sge->freelQ[0]);
  1805. refill_free_list(sge, &sge->freelQ[1]);
  1806. writel(sge->sge_control, sge->adapter->regs + A_SG_CONTROL);
  1807. doorbell_pio(sge->adapter, F_FL0_ENABLE | F_FL1_ENABLE);
  1808. readl(sge->adapter->regs + A_SG_CONTROL); /* flush */
  1809. mod_timer(&sge->tx_reclaim_timer, jiffies + TX_RECLAIM_PERIOD);
  1810. if (is_T2(sge->adapter))
  1811. mod_timer(&sge->espibug_timer, jiffies + sge->espibug_timeout);
  1812. }
  1813. /*
  1814. * Callback for the T2 ESPI 'stuck packet feature' workaorund
  1815. */
  1816. static void espibug_workaround_t204(unsigned long data)
  1817. {
  1818. struct adapter *adapter = (struct adapter *)data;
  1819. struct sge *sge = adapter->sge;
  1820. unsigned int nports = adapter->params.nports;
  1821. u32 seop[MAX_NPORTS];
  1822. if (adapter->open_device_map & PORT_MASK) {
  1823. int i;
  1824. if (t1_espi_get_mon_t204(adapter, &(seop[0]), 0) < 0)
  1825. return;
  1826. for (i = 0; i < nports; i++) {
  1827. struct sk_buff *skb = sge->espibug_skb[i];
  1828. if (!netif_running(adapter->port[i].dev) ||
  1829. netif_queue_stopped(adapter->port[i].dev) ||
  1830. !seop[i] || ((seop[i] & 0xfff) != 0) || !skb)
  1831. continue;
  1832. if (!skb->cb[0]) {
  1833. u8 ch_mac_addr[ETH_ALEN] = {
  1834. 0x0, 0x7, 0x43, 0x0, 0x0, 0x0
  1835. };
  1836. memcpy(skb->data + sizeof(struct cpl_tx_pkt),
  1837. ch_mac_addr, ETH_ALEN);
  1838. memcpy(skb->data + skb->len - 10,
  1839. ch_mac_addr, ETH_ALEN);
  1840. skb->cb[0] = 0xff;
  1841. }
  1842. /* bump the reference count to avoid freeing of
  1843. * the skb once the DMA has completed.
  1844. */
  1845. skb = skb_get(skb);
  1846. t1_sge_tx(skb, adapter, 0, adapter->port[i].dev);
  1847. }
  1848. }
  1849. mod_timer(&sge->espibug_timer, jiffies + sge->espibug_timeout);
  1850. }
  1851. static void espibug_workaround(unsigned long data)
  1852. {
  1853. struct adapter *adapter = (struct adapter *)data;
  1854. struct sge *sge = adapter->sge;
  1855. if (netif_running(adapter->port[0].dev)) {
  1856. struct sk_buff *skb = sge->espibug_skb[0];
  1857. u32 seop = t1_espi_get_mon(adapter, 0x930, 0);
  1858. if ((seop & 0xfff0fff) == 0xfff && skb) {
  1859. if (!skb->cb[0]) {
  1860. u8 ch_mac_addr[ETH_ALEN] =
  1861. {0x0, 0x7, 0x43, 0x0, 0x0, 0x0};
  1862. memcpy(skb->data + sizeof(struct cpl_tx_pkt),
  1863. ch_mac_addr, ETH_ALEN);
  1864. memcpy(skb->data + skb->len - 10, ch_mac_addr,
  1865. ETH_ALEN);
  1866. skb->cb[0] = 0xff;
  1867. }
  1868. /* bump the reference count to avoid freeing of the
  1869. * skb once the DMA has completed.
  1870. */
  1871. skb = skb_get(skb);
  1872. t1_sge_tx(skb, adapter, 0, adapter->port[0].dev);
  1873. }
  1874. }
  1875. mod_timer(&sge->espibug_timer, jiffies + sge->espibug_timeout);
  1876. }
  1877. /*
  1878. * Creates a t1_sge structure and returns suggested resource parameters.
  1879. */
  1880. struct sge * __devinit t1_sge_create(struct adapter *adapter,
  1881. struct sge_params *p)
  1882. {
  1883. struct sge *sge = kzalloc(sizeof(*sge), GFP_KERNEL);
  1884. int i;
  1885. if (!sge)
  1886. return NULL;
  1887. sge->adapter = adapter;
  1888. sge->netdev = adapter->port[0].dev;
  1889. sge->rx_pkt_pad = t1_is_T1B(adapter) ? 0 : 2;
  1890. sge->jumbo_fl = t1_is_T1B(adapter) ? 1 : 0;
  1891. for_each_port(adapter, i) {
  1892. sge->port_stats[i] = alloc_percpu(struct sge_port_stats);
  1893. if (!sge->port_stats[i])
  1894. goto nomem_port;
  1895. }
  1896. init_timer(&sge->tx_reclaim_timer);
  1897. sge->tx_reclaim_timer.data = (unsigned long)sge;
  1898. sge->tx_reclaim_timer.function = sge_tx_reclaim_cb;
  1899. if (is_T2(sge->adapter)) {
  1900. init_timer(&sge->espibug_timer);
  1901. if (adapter->params.nports > 1) {
  1902. tx_sched_init(sge);
  1903. sge->espibug_timer.function = espibug_workaround_t204;
  1904. } else
  1905. sge->espibug_timer.function = espibug_workaround;
  1906. sge->espibug_timer.data = (unsigned long)sge->adapter;
  1907. sge->espibug_timeout = 1;
  1908. /* for T204, every 10ms */
  1909. if (adapter->params.nports > 1)
  1910. sge->espibug_timeout = HZ/100;
  1911. }
  1912. p->cmdQ_size[0] = SGE_CMDQ0_E_N;
  1913. p->cmdQ_size[1] = SGE_CMDQ1_E_N;
  1914. p->freelQ_size[!sge->jumbo_fl] = SGE_FREEL_SIZE;
  1915. p->freelQ_size[sge->jumbo_fl] = SGE_JUMBO_FREEL_SIZE;
  1916. if (sge->tx_sched) {
  1917. if (board_info(sge->adapter)->board == CHBT_BOARD_CHT204)
  1918. p->rx_coalesce_usecs = 15;
  1919. else
  1920. p->rx_coalesce_usecs = 50;
  1921. } else
  1922. p->rx_coalesce_usecs = 50;
  1923. p->coalesce_enable = 0;
  1924. p->sample_interval_usecs = 0;
  1925. return sge;
  1926. nomem_port:
  1927. while (i >= 0) {
  1928. free_percpu(sge->port_stats[i]);
  1929. --i;
  1930. }
  1931. kfree(sge);
  1932. return NULL;
  1933. }