i40e_txrx.c 83 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757275827592760276127622763276427652766276727682769277027712772277327742775277627772778277927802781278227832784278527862787278827892790279127922793279427952796279727982799280028012802280328042805280628072808280928102811281228132814281528162817281828192820282128222823282428252826282728282829283028312832283328342835283628372838283928402841284228432844284528462847284828492850285128522853285428552856285728582859286028612862286328642865286628672868286928702871287228732874287528762877287828792880288128822883288428852886288728882889289028912892289328942895289628972898289929002901290229032904290529062907290829092910291129122913291429152916291729182919292029212922292329242925292629272928292929302931293229332934293529362937293829392940294129422943294429452946294729482949295029512952295329542955295629572958295929602961296229632964296529662967296829692970297129722973297429752976297729782979298029812982298329842985298629872988298929902991299229932994
  1. /*******************************************************************************
  2. *
  3. * Intel Ethernet Controller XL710 Family Linux Driver
  4. * Copyright(c) 2013 - 2016 Intel Corporation.
  5. *
  6. * This program is free software; you can redistribute it and/or modify it
  7. * under the terms and conditions of the GNU General Public License,
  8. * version 2, as published by the Free Software Foundation.
  9. *
  10. * This program is distributed in the hope it will be useful, but WITHOUT
  11. * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
  12. * FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for
  13. * more details.
  14. *
  15. * You should have received a copy of the GNU General Public License along
  16. * with this program. If not, see <http://www.gnu.org/licenses/>.
  17. *
  18. * The full GNU General Public License is included in this distribution in
  19. * the file called "COPYING".
  20. *
  21. * Contact Information:
  22. * e1000-devel Mailing List <e1000-devel@lists.sourceforge.net>
  23. * Intel Corporation, 5200 N.E. Elam Young Parkway, Hillsboro, OR 97124-6497
  24. *
  25. ******************************************************************************/
  26. #include <linux/prefetch.h>
  27. #include <net/busy_poll.h>
  28. #include "i40e.h"
  29. #include "i40e_prototype.h"
  30. static inline __le64 build_ctob(u32 td_cmd, u32 td_offset, unsigned int size,
  31. u32 td_tag)
  32. {
  33. return cpu_to_le64(I40E_TX_DESC_DTYPE_DATA |
  34. ((u64)td_cmd << I40E_TXD_QW1_CMD_SHIFT) |
  35. ((u64)td_offset << I40E_TXD_QW1_OFFSET_SHIFT) |
  36. ((u64)size << I40E_TXD_QW1_TX_BUF_SZ_SHIFT) |
  37. ((u64)td_tag << I40E_TXD_QW1_L2TAG1_SHIFT));
  38. }
  39. #define I40E_TXD_CMD (I40E_TX_DESC_CMD_EOP | I40E_TX_DESC_CMD_RS)
  40. #define I40E_FD_CLEAN_DELAY 10
  41. /**
  42. * i40e_program_fdir_filter - Program a Flow Director filter
  43. * @fdir_data: Packet data that will be filter parameters
  44. * @raw_packet: the pre-allocated packet buffer for FDir
  45. * @pf: The PF pointer
  46. * @add: True for add/update, False for remove
  47. **/
  48. int i40e_program_fdir_filter(struct i40e_fdir_filter *fdir_data, u8 *raw_packet,
  49. struct i40e_pf *pf, bool add)
  50. {
  51. struct i40e_filter_program_desc *fdir_desc;
  52. struct i40e_tx_buffer *tx_buf, *first;
  53. struct i40e_tx_desc *tx_desc;
  54. struct i40e_ring *tx_ring;
  55. unsigned int fpt, dcc;
  56. struct i40e_vsi *vsi;
  57. struct device *dev;
  58. dma_addr_t dma;
  59. u32 td_cmd = 0;
  60. u16 delay = 0;
  61. u16 i;
  62. /* find existing FDIR VSI */
  63. vsi = NULL;
  64. for (i = 0; i < pf->num_alloc_vsi; i++)
  65. if (pf->vsi[i] && pf->vsi[i]->type == I40E_VSI_FDIR)
  66. vsi = pf->vsi[i];
  67. if (!vsi)
  68. return -ENOENT;
  69. tx_ring = vsi->tx_rings[0];
  70. dev = tx_ring->dev;
  71. /* we need two descriptors to add/del a filter and we can wait */
  72. do {
  73. if (I40E_DESC_UNUSED(tx_ring) > 1)
  74. break;
  75. msleep_interruptible(1);
  76. delay++;
  77. } while (delay < I40E_FD_CLEAN_DELAY);
  78. if (!(I40E_DESC_UNUSED(tx_ring) > 1))
  79. return -EAGAIN;
  80. dma = dma_map_single(dev, raw_packet,
  81. I40E_FDIR_MAX_RAW_PACKET_SIZE, DMA_TO_DEVICE);
  82. if (dma_mapping_error(dev, dma))
  83. goto dma_fail;
  84. /* grab the next descriptor */
  85. i = tx_ring->next_to_use;
  86. fdir_desc = I40E_TX_FDIRDESC(tx_ring, i);
  87. first = &tx_ring->tx_bi[i];
  88. memset(first, 0, sizeof(struct i40e_tx_buffer));
  89. tx_ring->next_to_use = ((i + 1) < tx_ring->count) ? i + 1 : 0;
  90. fpt = (fdir_data->q_index << I40E_TXD_FLTR_QW0_QINDEX_SHIFT) &
  91. I40E_TXD_FLTR_QW0_QINDEX_MASK;
  92. fpt |= (fdir_data->flex_off << I40E_TXD_FLTR_QW0_FLEXOFF_SHIFT) &
  93. I40E_TXD_FLTR_QW0_FLEXOFF_MASK;
  94. fpt |= (fdir_data->pctype << I40E_TXD_FLTR_QW0_PCTYPE_SHIFT) &
  95. I40E_TXD_FLTR_QW0_PCTYPE_MASK;
  96. /* Use LAN VSI Id if not programmed by user */
  97. if (fdir_data->dest_vsi == 0)
  98. fpt |= (pf->vsi[pf->lan_vsi]->id) <<
  99. I40E_TXD_FLTR_QW0_DEST_VSI_SHIFT;
  100. else
  101. fpt |= ((u32)fdir_data->dest_vsi <<
  102. I40E_TXD_FLTR_QW0_DEST_VSI_SHIFT) &
  103. I40E_TXD_FLTR_QW0_DEST_VSI_MASK;
  104. dcc = I40E_TX_DESC_DTYPE_FILTER_PROG;
  105. if (add)
  106. dcc |= I40E_FILTER_PROGRAM_DESC_PCMD_ADD_UPDATE <<
  107. I40E_TXD_FLTR_QW1_PCMD_SHIFT;
  108. else
  109. dcc |= I40E_FILTER_PROGRAM_DESC_PCMD_REMOVE <<
  110. I40E_TXD_FLTR_QW1_PCMD_SHIFT;
  111. dcc |= (fdir_data->dest_ctl << I40E_TXD_FLTR_QW1_DEST_SHIFT) &
  112. I40E_TXD_FLTR_QW1_DEST_MASK;
  113. dcc |= (fdir_data->fd_status << I40E_TXD_FLTR_QW1_FD_STATUS_SHIFT) &
  114. I40E_TXD_FLTR_QW1_FD_STATUS_MASK;
  115. if (fdir_data->cnt_index != 0) {
  116. dcc |= I40E_TXD_FLTR_QW1_CNT_ENA_MASK;
  117. dcc |= ((u32)fdir_data->cnt_index <<
  118. I40E_TXD_FLTR_QW1_CNTINDEX_SHIFT) &
  119. I40E_TXD_FLTR_QW1_CNTINDEX_MASK;
  120. }
  121. fdir_desc->qindex_flex_ptype_vsi = cpu_to_le32(fpt);
  122. fdir_desc->rsvd = cpu_to_le32(0);
  123. fdir_desc->dtype_cmd_cntindex = cpu_to_le32(dcc);
  124. fdir_desc->fd_id = cpu_to_le32(fdir_data->fd_id);
  125. /* Now program a dummy descriptor */
  126. i = tx_ring->next_to_use;
  127. tx_desc = I40E_TX_DESC(tx_ring, i);
  128. tx_buf = &tx_ring->tx_bi[i];
  129. tx_ring->next_to_use = ((i + 1) < tx_ring->count) ? i + 1 : 0;
  130. memset(tx_buf, 0, sizeof(struct i40e_tx_buffer));
  131. /* record length, and DMA address */
  132. dma_unmap_len_set(tx_buf, len, I40E_FDIR_MAX_RAW_PACKET_SIZE);
  133. dma_unmap_addr_set(tx_buf, dma, dma);
  134. tx_desc->buffer_addr = cpu_to_le64(dma);
  135. td_cmd = I40E_TXD_CMD | I40E_TX_DESC_CMD_DUMMY;
  136. tx_buf->tx_flags = I40E_TX_FLAGS_FD_SB;
  137. tx_buf->raw_buf = (void *)raw_packet;
  138. tx_desc->cmd_type_offset_bsz =
  139. build_ctob(td_cmd, 0, I40E_FDIR_MAX_RAW_PACKET_SIZE, 0);
  140. /* Force memory writes to complete before letting h/w
  141. * know there are new descriptors to fetch.
  142. */
  143. wmb();
  144. /* Mark the data descriptor to be watched */
  145. first->next_to_watch = tx_desc;
  146. writel(tx_ring->next_to_use, tx_ring->tail);
  147. return 0;
  148. dma_fail:
  149. return -1;
  150. }
  151. #define IP_HEADER_OFFSET 14
  152. #define I40E_UDPIP_DUMMY_PACKET_LEN 42
  153. /**
  154. * i40e_add_del_fdir_udpv4 - Add/Remove UDPv4 filters
  155. * @vsi: pointer to the targeted VSI
  156. * @fd_data: the flow director data required for the FDir descriptor
  157. * @add: true adds a filter, false removes it
  158. *
  159. * Returns 0 if the filters were successfully added or removed
  160. **/
  161. static int i40e_add_del_fdir_udpv4(struct i40e_vsi *vsi,
  162. struct i40e_fdir_filter *fd_data,
  163. bool add)
  164. {
  165. struct i40e_pf *pf = vsi->back;
  166. struct udphdr *udp;
  167. struct iphdr *ip;
  168. bool err = false;
  169. u8 *raw_packet;
  170. int ret;
  171. static char packet[] = {0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0x08, 0,
  172. 0x45, 0, 0, 0x1c, 0, 0, 0x40, 0, 0x40, 0x11, 0, 0, 0, 0, 0, 0,
  173. 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0};
  174. raw_packet = kzalloc(I40E_FDIR_MAX_RAW_PACKET_SIZE, GFP_KERNEL);
  175. if (!raw_packet)
  176. return -ENOMEM;
  177. memcpy(raw_packet, packet, I40E_UDPIP_DUMMY_PACKET_LEN);
  178. ip = (struct iphdr *)(raw_packet + IP_HEADER_OFFSET);
  179. udp = (struct udphdr *)(raw_packet + IP_HEADER_OFFSET
  180. + sizeof(struct iphdr));
  181. ip->daddr = fd_data->dst_ip[0];
  182. udp->dest = fd_data->dst_port;
  183. ip->saddr = fd_data->src_ip[0];
  184. udp->source = fd_data->src_port;
  185. fd_data->pctype = I40E_FILTER_PCTYPE_NONF_IPV4_UDP;
  186. ret = i40e_program_fdir_filter(fd_data, raw_packet, pf, add);
  187. if (ret) {
  188. dev_info(&pf->pdev->dev,
  189. "PCTYPE:%d, Filter command send failed for fd_id:%d (ret = %d)\n",
  190. fd_data->pctype, fd_data->fd_id, ret);
  191. err = true;
  192. } else if (I40E_DEBUG_FD & pf->hw.debug_mask) {
  193. if (add)
  194. dev_info(&pf->pdev->dev,
  195. "Filter OK for PCTYPE %d loc = %d\n",
  196. fd_data->pctype, fd_data->fd_id);
  197. else
  198. dev_info(&pf->pdev->dev,
  199. "Filter deleted for PCTYPE %d loc = %d\n",
  200. fd_data->pctype, fd_data->fd_id);
  201. }
  202. if (err)
  203. kfree(raw_packet);
  204. return err ? -EOPNOTSUPP : 0;
  205. }
  206. #define I40E_TCPIP_DUMMY_PACKET_LEN 54
  207. /**
  208. * i40e_add_del_fdir_tcpv4 - Add/Remove TCPv4 filters
  209. * @vsi: pointer to the targeted VSI
  210. * @fd_data: the flow director data required for the FDir descriptor
  211. * @add: true adds a filter, false removes it
  212. *
  213. * Returns 0 if the filters were successfully added or removed
  214. **/
  215. static int i40e_add_del_fdir_tcpv4(struct i40e_vsi *vsi,
  216. struct i40e_fdir_filter *fd_data,
  217. bool add)
  218. {
  219. struct i40e_pf *pf = vsi->back;
  220. struct tcphdr *tcp;
  221. struct iphdr *ip;
  222. bool err = false;
  223. u8 *raw_packet;
  224. int ret;
  225. /* Dummy packet */
  226. static char packet[] = {0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0x08, 0,
  227. 0x45, 0, 0, 0x28, 0, 0, 0x40, 0, 0x40, 0x6, 0, 0, 0, 0, 0, 0,
  228. 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0x80, 0x11,
  229. 0x0, 0x72, 0, 0, 0, 0};
  230. raw_packet = kzalloc(I40E_FDIR_MAX_RAW_PACKET_SIZE, GFP_KERNEL);
  231. if (!raw_packet)
  232. return -ENOMEM;
  233. memcpy(raw_packet, packet, I40E_TCPIP_DUMMY_PACKET_LEN);
  234. ip = (struct iphdr *)(raw_packet + IP_HEADER_OFFSET);
  235. tcp = (struct tcphdr *)(raw_packet + IP_HEADER_OFFSET
  236. + sizeof(struct iphdr));
  237. ip->daddr = fd_data->dst_ip[0];
  238. tcp->dest = fd_data->dst_port;
  239. ip->saddr = fd_data->src_ip[0];
  240. tcp->source = fd_data->src_port;
  241. if (add) {
  242. pf->fd_tcp_rule++;
  243. if (pf->flags & I40E_FLAG_FD_ATR_ENABLED) {
  244. if (I40E_DEBUG_FD & pf->hw.debug_mask)
  245. dev_info(&pf->pdev->dev, "Forcing ATR off, sideband rules for TCP/IPv4 flow being applied\n");
  246. pf->flags &= ~I40E_FLAG_FD_ATR_ENABLED;
  247. }
  248. } else {
  249. pf->fd_tcp_rule = (pf->fd_tcp_rule > 0) ?
  250. (pf->fd_tcp_rule - 1) : 0;
  251. if (pf->fd_tcp_rule == 0) {
  252. pf->flags |= I40E_FLAG_FD_ATR_ENABLED;
  253. if (I40E_DEBUG_FD & pf->hw.debug_mask)
  254. dev_info(&pf->pdev->dev, "ATR re-enabled due to no sideband TCP/IPv4 rules\n");
  255. }
  256. }
  257. fd_data->pctype = I40E_FILTER_PCTYPE_NONF_IPV4_TCP;
  258. ret = i40e_program_fdir_filter(fd_data, raw_packet, pf, add);
  259. if (ret) {
  260. dev_info(&pf->pdev->dev,
  261. "PCTYPE:%d, Filter command send failed for fd_id:%d (ret = %d)\n",
  262. fd_data->pctype, fd_data->fd_id, ret);
  263. err = true;
  264. } else if (I40E_DEBUG_FD & pf->hw.debug_mask) {
  265. if (add)
  266. dev_info(&pf->pdev->dev, "Filter OK for PCTYPE %d loc = %d)\n",
  267. fd_data->pctype, fd_data->fd_id);
  268. else
  269. dev_info(&pf->pdev->dev,
  270. "Filter deleted for PCTYPE %d loc = %d\n",
  271. fd_data->pctype, fd_data->fd_id);
  272. }
  273. if (err)
  274. kfree(raw_packet);
  275. return err ? -EOPNOTSUPP : 0;
  276. }
  277. /**
  278. * i40e_add_del_fdir_sctpv4 - Add/Remove SCTPv4 Flow Director filters for
  279. * a specific flow spec
  280. * @vsi: pointer to the targeted VSI
  281. * @fd_data: the flow director data required for the FDir descriptor
  282. * @add: true adds a filter, false removes it
  283. *
  284. * Returns 0 if the filters were successfully added or removed
  285. **/
  286. static int i40e_add_del_fdir_sctpv4(struct i40e_vsi *vsi,
  287. struct i40e_fdir_filter *fd_data,
  288. bool add)
  289. {
  290. return -EOPNOTSUPP;
  291. }
  292. #define I40E_IP_DUMMY_PACKET_LEN 34
  293. /**
  294. * i40e_add_del_fdir_ipv4 - Add/Remove IPv4 Flow Director filters for
  295. * a specific flow spec
  296. * @vsi: pointer to the targeted VSI
  297. * @fd_data: the flow director data required for the FDir descriptor
  298. * @add: true adds a filter, false removes it
  299. *
  300. * Returns 0 if the filters were successfully added or removed
  301. **/
  302. static int i40e_add_del_fdir_ipv4(struct i40e_vsi *vsi,
  303. struct i40e_fdir_filter *fd_data,
  304. bool add)
  305. {
  306. struct i40e_pf *pf = vsi->back;
  307. struct iphdr *ip;
  308. bool err = false;
  309. u8 *raw_packet;
  310. int ret;
  311. int i;
  312. static char packet[] = {0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0x08, 0,
  313. 0x45, 0, 0, 0x14, 0, 0, 0x40, 0, 0x40, 0x10, 0, 0, 0, 0, 0, 0,
  314. 0, 0, 0, 0};
  315. for (i = I40E_FILTER_PCTYPE_NONF_IPV4_OTHER;
  316. i <= I40E_FILTER_PCTYPE_FRAG_IPV4; i++) {
  317. raw_packet = kzalloc(I40E_FDIR_MAX_RAW_PACKET_SIZE, GFP_KERNEL);
  318. if (!raw_packet)
  319. return -ENOMEM;
  320. memcpy(raw_packet, packet, I40E_IP_DUMMY_PACKET_LEN);
  321. ip = (struct iphdr *)(raw_packet + IP_HEADER_OFFSET);
  322. ip->saddr = fd_data->src_ip[0];
  323. ip->daddr = fd_data->dst_ip[0];
  324. ip->protocol = 0;
  325. fd_data->pctype = i;
  326. ret = i40e_program_fdir_filter(fd_data, raw_packet, pf, add);
  327. if (ret) {
  328. dev_info(&pf->pdev->dev,
  329. "PCTYPE:%d, Filter command send failed for fd_id:%d (ret = %d)\n",
  330. fd_data->pctype, fd_data->fd_id, ret);
  331. err = true;
  332. } else if (I40E_DEBUG_FD & pf->hw.debug_mask) {
  333. if (add)
  334. dev_info(&pf->pdev->dev,
  335. "Filter OK for PCTYPE %d loc = %d\n",
  336. fd_data->pctype, fd_data->fd_id);
  337. else
  338. dev_info(&pf->pdev->dev,
  339. "Filter deleted for PCTYPE %d loc = %d\n",
  340. fd_data->pctype, fd_data->fd_id);
  341. }
  342. }
  343. if (err)
  344. kfree(raw_packet);
  345. return err ? -EOPNOTSUPP : 0;
  346. }
  347. /**
  348. * i40e_add_del_fdir - Build raw packets to add/del fdir filter
  349. * @vsi: pointer to the targeted VSI
  350. * @cmd: command to get or set RX flow classification rules
  351. * @add: true adds a filter, false removes it
  352. *
  353. **/
  354. int i40e_add_del_fdir(struct i40e_vsi *vsi,
  355. struct i40e_fdir_filter *input, bool add)
  356. {
  357. struct i40e_pf *pf = vsi->back;
  358. int ret;
  359. switch (input->flow_type & ~FLOW_EXT) {
  360. case TCP_V4_FLOW:
  361. ret = i40e_add_del_fdir_tcpv4(vsi, input, add);
  362. break;
  363. case UDP_V4_FLOW:
  364. ret = i40e_add_del_fdir_udpv4(vsi, input, add);
  365. break;
  366. case SCTP_V4_FLOW:
  367. ret = i40e_add_del_fdir_sctpv4(vsi, input, add);
  368. break;
  369. case IPV4_FLOW:
  370. ret = i40e_add_del_fdir_ipv4(vsi, input, add);
  371. break;
  372. case IP_USER_FLOW:
  373. switch (input->ip4_proto) {
  374. case IPPROTO_TCP:
  375. ret = i40e_add_del_fdir_tcpv4(vsi, input, add);
  376. break;
  377. case IPPROTO_UDP:
  378. ret = i40e_add_del_fdir_udpv4(vsi, input, add);
  379. break;
  380. case IPPROTO_SCTP:
  381. ret = i40e_add_del_fdir_sctpv4(vsi, input, add);
  382. break;
  383. default:
  384. ret = i40e_add_del_fdir_ipv4(vsi, input, add);
  385. break;
  386. }
  387. break;
  388. default:
  389. dev_info(&pf->pdev->dev, "Could not specify spec type %d\n",
  390. input->flow_type);
  391. ret = -EINVAL;
  392. }
  393. /* The buffer allocated here is freed by the i40e_clean_tx_ring() */
  394. return ret;
  395. }
  396. /**
  397. * i40e_fd_handle_status - check the Programming Status for FD
  398. * @rx_ring: the Rx ring for this descriptor
  399. * @rx_desc: the Rx descriptor for programming Status, not a packet descriptor.
  400. * @prog_id: the id originally used for programming
  401. *
  402. * This is used to verify if the FD programming or invalidation
  403. * requested by SW to the HW is successful or not and take actions accordingly.
  404. **/
  405. static void i40e_fd_handle_status(struct i40e_ring *rx_ring,
  406. union i40e_rx_desc *rx_desc, u8 prog_id)
  407. {
  408. struct i40e_pf *pf = rx_ring->vsi->back;
  409. struct pci_dev *pdev = pf->pdev;
  410. u32 fcnt_prog, fcnt_avail;
  411. u32 error;
  412. u64 qw;
  413. qw = le64_to_cpu(rx_desc->wb.qword1.status_error_len);
  414. error = (qw & I40E_RX_PROG_STATUS_DESC_QW1_ERROR_MASK) >>
  415. I40E_RX_PROG_STATUS_DESC_QW1_ERROR_SHIFT;
  416. if (error == BIT(I40E_RX_PROG_STATUS_DESC_FD_TBL_FULL_SHIFT)) {
  417. pf->fd_inv = le32_to_cpu(rx_desc->wb.qword0.hi_dword.fd_id);
  418. if ((rx_desc->wb.qword0.hi_dword.fd_id != 0) ||
  419. (I40E_DEBUG_FD & pf->hw.debug_mask))
  420. dev_warn(&pdev->dev, "ntuple filter loc = %d, could not be added\n",
  421. pf->fd_inv);
  422. /* Check if the programming error is for ATR.
  423. * If so, auto disable ATR and set a state for
  424. * flush in progress. Next time we come here if flush is in
  425. * progress do nothing, once flush is complete the state will
  426. * be cleared.
  427. */
  428. if (test_bit(__I40E_FD_FLUSH_REQUESTED, &pf->state))
  429. return;
  430. pf->fd_add_err++;
  431. /* store the current atr filter count */
  432. pf->fd_atr_cnt = i40e_get_current_atr_cnt(pf);
  433. if ((rx_desc->wb.qword0.hi_dword.fd_id == 0) &&
  434. (pf->auto_disable_flags & I40E_FLAG_FD_SB_ENABLED)) {
  435. pf->auto_disable_flags |= I40E_FLAG_FD_ATR_ENABLED;
  436. set_bit(__I40E_FD_FLUSH_REQUESTED, &pf->state);
  437. }
  438. /* filter programming failed most likely due to table full */
  439. fcnt_prog = i40e_get_global_fd_count(pf);
  440. fcnt_avail = pf->fdir_pf_filter_count;
  441. /* If ATR is running fcnt_prog can quickly change,
  442. * if we are very close to full, it makes sense to disable
  443. * FD ATR/SB and then re-enable it when there is room.
  444. */
  445. if (fcnt_prog >= (fcnt_avail - I40E_FDIR_BUFFER_FULL_MARGIN)) {
  446. if ((pf->flags & I40E_FLAG_FD_SB_ENABLED) &&
  447. !(pf->auto_disable_flags &
  448. I40E_FLAG_FD_SB_ENABLED)) {
  449. if (I40E_DEBUG_FD & pf->hw.debug_mask)
  450. dev_warn(&pdev->dev, "FD filter space full, new ntuple rules will not be added\n");
  451. pf->auto_disable_flags |=
  452. I40E_FLAG_FD_SB_ENABLED;
  453. }
  454. }
  455. } else if (error == BIT(I40E_RX_PROG_STATUS_DESC_NO_FD_ENTRY_SHIFT)) {
  456. if (I40E_DEBUG_FD & pf->hw.debug_mask)
  457. dev_info(&pdev->dev, "ntuple filter fd_id = %d, could not be removed\n",
  458. rx_desc->wb.qword0.hi_dword.fd_id);
  459. }
  460. }
  461. /**
  462. * i40e_unmap_and_free_tx_resource - Release a Tx buffer
  463. * @ring: the ring that owns the buffer
  464. * @tx_buffer: the buffer to free
  465. **/
  466. static void i40e_unmap_and_free_tx_resource(struct i40e_ring *ring,
  467. struct i40e_tx_buffer *tx_buffer)
  468. {
  469. if (tx_buffer->skb) {
  470. dev_kfree_skb_any(tx_buffer->skb);
  471. if (dma_unmap_len(tx_buffer, len))
  472. dma_unmap_single(ring->dev,
  473. dma_unmap_addr(tx_buffer, dma),
  474. dma_unmap_len(tx_buffer, len),
  475. DMA_TO_DEVICE);
  476. } else if (dma_unmap_len(tx_buffer, len)) {
  477. dma_unmap_page(ring->dev,
  478. dma_unmap_addr(tx_buffer, dma),
  479. dma_unmap_len(tx_buffer, len),
  480. DMA_TO_DEVICE);
  481. }
  482. if (tx_buffer->tx_flags & I40E_TX_FLAGS_FD_SB)
  483. kfree(tx_buffer->raw_buf);
  484. tx_buffer->next_to_watch = NULL;
  485. tx_buffer->skb = NULL;
  486. dma_unmap_len_set(tx_buffer, len, 0);
  487. /* tx_buffer must be completely set up in the transmit path */
  488. }
  489. /**
  490. * i40e_clean_tx_ring - Free any empty Tx buffers
  491. * @tx_ring: ring to be cleaned
  492. **/
  493. void i40e_clean_tx_ring(struct i40e_ring *tx_ring)
  494. {
  495. unsigned long bi_size;
  496. u16 i;
  497. /* ring already cleared, nothing to do */
  498. if (!tx_ring->tx_bi)
  499. return;
  500. /* Free all the Tx ring sk_buffs */
  501. for (i = 0; i < tx_ring->count; i++)
  502. i40e_unmap_and_free_tx_resource(tx_ring, &tx_ring->tx_bi[i]);
  503. bi_size = sizeof(struct i40e_tx_buffer) * tx_ring->count;
  504. memset(tx_ring->tx_bi, 0, bi_size);
  505. /* Zero out the descriptor ring */
  506. memset(tx_ring->desc, 0, tx_ring->size);
  507. tx_ring->next_to_use = 0;
  508. tx_ring->next_to_clean = 0;
  509. if (!tx_ring->netdev)
  510. return;
  511. /* cleanup Tx queue statistics */
  512. netdev_tx_reset_queue(netdev_get_tx_queue(tx_ring->netdev,
  513. tx_ring->queue_index));
  514. }
  515. /**
  516. * i40e_free_tx_resources - Free Tx resources per queue
  517. * @tx_ring: Tx descriptor ring for a specific queue
  518. *
  519. * Free all transmit software resources
  520. **/
  521. void i40e_free_tx_resources(struct i40e_ring *tx_ring)
  522. {
  523. i40e_clean_tx_ring(tx_ring);
  524. kfree(tx_ring->tx_bi);
  525. tx_ring->tx_bi = NULL;
  526. if (tx_ring->desc) {
  527. dma_free_coherent(tx_ring->dev, tx_ring->size,
  528. tx_ring->desc, tx_ring->dma);
  529. tx_ring->desc = NULL;
  530. }
  531. }
  532. /**
  533. * i40e_get_tx_pending - how many tx descriptors not processed
  534. * @tx_ring: the ring of descriptors
  535. * @in_sw: is tx_pending being checked in SW or HW
  536. *
  537. * Since there is no access to the ring head register
  538. * in XL710, we need to use our local copies
  539. **/
  540. u32 i40e_get_tx_pending(struct i40e_ring *ring, bool in_sw)
  541. {
  542. u32 head, tail;
  543. if (!in_sw)
  544. head = i40e_get_head(ring);
  545. else
  546. head = ring->next_to_clean;
  547. tail = readl(ring->tail);
  548. if (head != tail)
  549. return (head < tail) ?
  550. tail - head : (tail + ring->count - head);
  551. return 0;
  552. }
  553. #define WB_STRIDE 0x3
  554. /**
  555. * i40e_clean_tx_irq - Reclaim resources after transmit completes
  556. * @vsi: the VSI we care about
  557. * @tx_ring: Tx ring to clean
  558. * @napi_budget: Used to determine if we are in netpoll
  559. *
  560. * Returns true if there's any budget left (e.g. the clean is finished)
  561. **/
  562. static bool i40e_clean_tx_irq(struct i40e_vsi *vsi,
  563. struct i40e_ring *tx_ring, int napi_budget)
  564. {
  565. u16 i = tx_ring->next_to_clean;
  566. struct i40e_tx_buffer *tx_buf;
  567. struct i40e_tx_desc *tx_head;
  568. struct i40e_tx_desc *tx_desc;
  569. unsigned int total_bytes = 0, total_packets = 0;
  570. unsigned int budget = vsi->work_limit;
  571. tx_buf = &tx_ring->tx_bi[i];
  572. tx_desc = I40E_TX_DESC(tx_ring, i);
  573. i -= tx_ring->count;
  574. tx_head = I40E_TX_DESC(tx_ring, i40e_get_head(tx_ring));
  575. do {
  576. struct i40e_tx_desc *eop_desc = tx_buf->next_to_watch;
  577. /* if next_to_watch is not set then there is no work pending */
  578. if (!eop_desc)
  579. break;
  580. /* prevent any other reads prior to eop_desc */
  581. read_barrier_depends();
  582. /* we have caught up to head, no work left to do */
  583. if (tx_head == tx_desc)
  584. break;
  585. /* clear next_to_watch to prevent false hangs */
  586. tx_buf->next_to_watch = NULL;
  587. /* update the statistics for this packet */
  588. total_bytes += tx_buf->bytecount;
  589. total_packets += tx_buf->gso_segs;
  590. /* free the skb */
  591. napi_consume_skb(tx_buf->skb, napi_budget);
  592. /* unmap skb header data */
  593. dma_unmap_single(tx_ring->dev,
  594. dma_unmap_addr(tx_buf, dma),
  595. dma_unmap_len(tx_buf, len),
  596. DMA_TO_DEVICE);
  597. /* clear tx_buffer data */
  598. tx_buf->skb = NULL;
  599. dma_unmap_len_set(tx_buf, len, 0);
  600. /* unmap remaining buffers */
  601. while (tx_desc != eop_desc) {
  602. tx_buf++;
  603. tx_desc++;
  604. i++;
  605. if (unlikely(!i)) {
  606. i -= tx_ring->count;
  607. tx_buf = tx_ring->tx_bi;
  608. tx_desc = I40E_TX_DESC(tx_ring, 0);
  609. }
  610. /* unmap any remaining paged data */
  611. if (dma_unmap_len(tx_buf, len)) {
  612. dma_unmap_page(tx_ring->dev,
  613. dma_unmap_addr(tx_buf, dma),
  614. dma_unmap_len(tx_buf, len),
  615. DMA_TO_DEVICE);
  616. dma_unmap_len_set(tx_buf, len, 0);
  617. }
  618. }
  619. /* move us one more past the eop_desc for start of next pkt */
  620. tx_buf++;
  621. tx_desc++;
  622. i++;
  623. if (unlikely(!i)) {
  624. i -= tx_ring->count;
  625. tx_buf = tx_ring->tx_bi;
  626. tx_desc = I40E_TX_DESC(tx_ring, 0);
  627. }
  628. prefetch(tx_desc);
  629. /* update budget accounting */
  630. budget--;
  631. } while (likely(budget));
  632. i += tx_ring->count;
  633. tx_ring->next_to_clean = i;
  634. u64_stats_update_begin(&tx_ring->syncp);
  635. tx_ring->stats.bytes += total_bytes;
  636. tx_ring->stats.packets += total_packets;
  637. u64_stats_update_end(&tx_ring->syncp);
  638. tx_ring->q_vector->tx.total_bytes += total_bytes;
  639. tx_ring->q_vector->tx.total_packets += total_packets;
  640. if (tx_ring->flags & I40E_TXR_FLAGS_WB_ON_ITR) {
  641. /* check to see if there are < 4 descriptors
  642. * waiting to be written back, then kick the hardware to force
  643. * them to be written back in case we stay in NAPI.
  644. * In this mode on X722 we do not enable Interrupt.
  645. */
  646. unsigned int j = i40e_get_tx_pending(tx_ring, false);
  647. if (budget &&
  648. ((j / (WB_STRIDE + 1)) == 0) && (j != 0) &&
  649. !test_bit(__I40E_DOWN, &vsi->state) &&
  650. (I40E_DESC_UNUSED(tx_ring) != tx_ring->count))
  651. tx_ring->arm_wb = true;
  652. }
  653. netdev_tx_completed_queue(netdev_get_tx_queue(tx_ring->netdev,
  654. tx_ring->queue_index),
  655. total_packets, total_bytes);
  656. #define TX_WAKE_THRESHOLD (DESC_NEEDED * 2)
  657. if (unlikely(total_packets && netif_carrier_ok(tx_ring->netdev) &&
  658. (I40E_DESC_UNUSED(tx_ring) >= TX_WAKE_THRESHOLD))) {
  659. /* Make sure that anybody stopping the queue after this
  660. * sees the new next_to_clean.
  661. */
  662. smp_mb();
  663. if (__netif_subqueue_stopped(tx_ring->netdev,
  664. tx_ring->queue_index) &&
  665. !test_bit(__I40E_DOWN, &vsi->state)) {
  666. netif_wake_subqueue(tx_ring->netdev,
  667. tx_ring->queue_index);
  668. ++tx_ring->tx_stats.restart_queue;
  669. }
  670. }
  671. return !!budget;
  672. }
  673. /**
  674. * i40e_enable_wb_on_itr - Arm hardware to do a wb, interrupts are not enabled
  675. * @vsi: the VSI we care about
  676. * @q_vector: the vector on which to enable writeback
  677. *
  678. **/
  679. static void i40e_enable_wb_on_itr(struct i40e_vsi *vsi,
  680. struct i40e_q_vector *q_vector)
  681. {
  682. u16 flags = q_vector->tx.ring[0].flags;
  683. u32 val;
  684. if (!(flags & I40E_TXR_FLAGS_WB_ON_ITR))
  685. return;
  686. if (q_vector->arm_wb_state)
  687. return;
  688. if (vsi->back->flags & I40E_FLAG_MSIX_ENABLED) {
  689. val = I40E_PFINT_DYN_CTLN_WB_ON_ITR_MASK |
  690. I40E_PFINT_DYN_CTLN_ITR_INDX_MASK; /* set noitr */
  691. wr32(&vsi->back->hw,
  692. I40E_PFINT_DYN_CTLN(q_vector->v_idx + vsi->base_vector - 1),
  693. val);
  694. } else {
  695. val = I40E_PFINT_DYN_CTL0_WB_ON_ITR_MASK |
  696. I40E_PFINT_DYN_CTL0_ITR_INDX_MASK; /* set noitr */
  697. wr32(&vsi->back->hw, I40E_PFINT_DYN_CTL0, val);
  698. }
  699. q_vector->arm_wb_state = true;
  700. }
  701. /**
  702. * i40e_force_wb - Issue SW Interrupt so HW does a wb
  703. * @vsi: the VSI we care about
  704. * @q_vector: the vector on which to force writeback
  705. *
  706. **/
  707. void i40e_force_wb(struct i40e_vsi *vsi, struct i40e_q_vector *q_vector)
  708. {
  709. if (vsi->back->flags & I40E_FLAG_MSIX_ENABLED) {
  710. u32 val = I40E_PFINT_DYN_CTLN_INTENA_MASK |
  711. I40E_PFINT_DYN_CTLN_ITR_INDX_MASK | /* set noitr */
  712. I40E_PFINT_DYN_CTLN_SWINT_TRIG_MASK |
  713. I40E_PFINT_DYN_CTLN_SW_ITR_INDX_ENA_MASK;
  714. /* allow 00 to be written to the index */
  715. wr32(&vsi->back->hw,
  716. I40E_PFINT_DYN_CTLN(q_vector->v_idx +
  717. vsi->base_vector - 1), val);
  718. } else {
  719. u32 val = I40E_PFINT_DYN_CTL0_INTENA_MASK |
  720. I40E_PFINT_DYN_CTL0_ITR_INDX_MASK | /* set noitr */
  721. I40E_PFINT_DYN_CTL0_SWINT_TRIG_MASK |
  722. I40E_PFINT_DYN_CTL0_SW_ITR_INDX_ENA_MASK;
  723. /* allow 00 to be written to the index */
  724. wr32(&vsi->back->hw, I40E_PFINT_DYN_CTL0, val);
  725. }
  726. }
  727. /**
  728. * i40e_set_new_dynamic_itr - Find new ITR level
  729. * @rc: structure containing ring performance data
  730. *
  731. * Returns true if ITR changed, false if not
  732. *
  733. * Stores a new ITR value based on packets and byte counts during
  734. * the last interrupt. The advantage of per interrupt computation
  735. * is faster updates and more accurate ITR for the current traffic
  736. * pattern. Constants in this function were computed based on
  737. * theoretical maximum wire speed and thresholds were set based on
  738. * testing data as well as attempting to minimize response time
  739. * while increasing bulk throughput.
  740. **/
  741. static bool i40e_set_new_dynamic_itr(struct i40e_ring_container *rc)
  742. {
  743. enum i40e_latency_range new_latency_range = rc->latency_range;
  744. struct i40e_q_vector *qv = rc->ring->q_vector;
  745. u32 new_itr = rc->itr;
  746. int bytes_per_int;
  747. int usecs;
  748. if (rc->total_packets == 0 || !rc->itr)
  749. return false;
  750. /* simple throttlerate management
  751. * 0-10MB/s lowest (50000 ints/s)
  752. * 10-20MB/s low (20000 ints/s)
  753. * 20-1249MB/s bulk (18000 ints/s)
  754. * > 40000 Rx packets per second (8000 ints/s)
  755. *
  756. * The math works out because the divisor is in 10^(-6) which
  757. * turns the bytes/us input value into MB/s values, but
  758. * make sure to use usecs, as the register values written
  759. * are in 2 usec increments in the ITR registers, and make sure
  760. * to use the smoothed values that the countdown timer gives us.
  761. */
  762. usecs = (rc->itr << 1) * ITR_COUNTDOWN_START;
  763. bytes_per_int = rc->total_bytes / usecs;
  764. switch (new_latency_range) {
  765. case I40E_LOWEST_LATENCY:
  766. if (bytes_per_int > 10)
  767. new_latency_range = I40E_LOW_LATENCY;
  768. break;
  769. case I40E_LOW_LATENCY:
  770. if (bytes_per_int > 20)
  771. new_latency_range = I40E_BULK_LATENCY;
  772. else if (bytes_per_int <= 10)
  773. new_latency_range = I40E_LOWEST_LATENCY;
  774. break;
  775. case I40E_BULK_LATENCY:
  776. case I40E_ULTRA_LATENCY:
  777. default:
  778. if (bytes_per_int <= 20)
  779. new_latency_range = I40E_LOW_LATENCY;
  780. break;
  781. }
  782. /* this is to adjust RX more aggressively when streaming small
  783. * packets. The value of 40000 was picked as it is just beyond
  784. * what the hardware can receive per second if in low latency
  785. * mode.
  786. */
  787. #define RX_ULTRA_PACKET_RATE 40000
  788. if ((((rc->total_packets * 1000000) / usecs) > RX_ULTRA_PACKET_RATE) &&
  789. (&qv->rx == rc))
  790. new_latency_range = I40E_ULTRA_LATENCY;
  791. rc->latency_range = new_latency_range;
  792. switch (new_latency_range) {
  793. case I40E_LOWEST_LATENCY:
  794. new_itr = I40E_ITR_50K;
  795. break;
  796. case I40E_LOW_LATENCY:
  797. new_itr = I40E_ITR_20K;
  798. break;
  799. case I40E_BULK_LATENCY:
  800. new_itr = I40E_ITR_18K;
  801. break;
  802. case I40E_ULTRA_LATENCY:
  803. new_itr = I40E_ITR_8K;
  804. break;
  805. default:
  806. break;
  807. }
  808. rc->total_bytes = 0;
  809. rc->total_packets = 0;
  810. if (new_itr != rc->itr) {
  811. rc->itr = new_itr;
  812. return true;
  813. }
  814. return false;
  815. }
  816. /**
  817. * i40e_clean_programming_status - clean the programming status descriptor
  818. * @rx_ring: the rx ring that has this descriptor
  819. * @rx_desc: the rx descriptor written back by HW
  820. *
  821. * Flow director should handle FD_FILTER_STATUS to check its filter programming
  822. * status being successful or not and take actions accordingly. FCoE should
  823. * handle its context/filter programming/invalidation status and take actions.
  824. *
  825. **/
  826. static void i40e_clean_programming_status(struct i40e_ring *rx_ring,
  827. union i40e_rx_desc *rx_desc)
  828. {
  829. u64 qw;
  830. u8 id;
  831. qw = le64_to_cpu(rx_desc->wb.qword1.status_error_len);
  832. id = (qw & I40E_RX_PROG_STATUS_DESC_QW1_PROGID_MASK) >>
  833. I40E_RX_PROG_STATUS_DESC_QW1_PROGID_SHIFT;
  834. if (id == I40E_RX_PROG_STATUS_DESC_FD_FILTER_STATUS)
  835. i40e_fd_handle_status(rx_ring, rx_desc, id);
  836. #ifdef I40E_FCOE
  837. else if ((id == I40E_RX_PROG_STATUS_DESC_FCOE_CTXT_PROG_STATUS) ||
  838. (id == I40E_RX_PROG_STATUS_DESC_FCOE_CTXT_INVL_STATUS))
  839. i40e_fcoe_handle_status(rx_ring, rx_desc, id);
  840. #endif
  841. }
  842. /**
  843. * i40e_setup_tx_descriptors - Allocate the Tx descriptors
  844. * @tx_ring: the tx ring to set up
  845. *
  846. * Return 0 on success, negative on error
  847. **/
  848. int i40e_setup_tx_descriptors(struct i40e_ring *tx_ring)
  849. {
  850. struct device *dev = tx_ring->dev;
  851. int bi_size;
  852. if (!dev)
  853. return -ENOMEM;
  854. /* warn if we are about to overwrite the pointer */
  855. WARN_ON(tx_ring->tx_bi);
  856. bi_size = sizeof(struct i40e_tx_buffer) * tx_ring->count;
  857. tx_ring->tx_bi = kzalloc(bi_size, GFP_KERNEL);
  858. if (!tx_ring->tx_bi)
  859. goto err;
  860. /* round up to nearest 4K */
  861. tx_ring->size = tx_ring->count * sizeof(struct i40e_tx_desc);
  862. /* add u32 for head writeback, align after this takes care of
  863. * guaranteeing this is at least one cache line in size
  864. */
  865. tx_ring->size += sizeof(u32);
  866. tx_ring->size = ALIGN(tx_ring->size, 4096);
  867. tx_ring->desc = dma_alloc_coherent(dev, tx_ring->size,
  868. &tx_ring->dma, GFP_KERNEL);
  869. if (!tx_ring->desc) {
  870. dev_info(dev, "Unable to allocate memory for the Tx descriptor ring, size=%d\n",
  871. tx_ring->size);
  872. goto err;
  873. }
  874. tx_ring->next_to_use = 0;
  875. tx_ring->next_to_clean = 0;
  876. return 0;
  877. err:
  878. kfree(tx_ring->tx_bi);
  879. tx_ring->tx_bi = NULL;
  880. return -ENOMEM;
  881. }
  882. /**
  883. * i40e_clean_rx_ring - Free Rx buffers
  884. * @rx_ring: ring to be cleaned
  885. **/
  886. void i40e_clean_rx_ring(struct i40e_ring *rx_ring)
  887. {
  888. struct device *dev = rx_ring->dev;
  889. unsigned long bi_size;
  890. u16 i;
  891. /* ring already cleared, nothing to do */
  892. if (!rx_ring->rx_bi)
  893. return;
  894. /* Free all the Rx ring sk_buffs */
  895. for (i = 0; i < rx_ring->count; i++) {
  896. struct i40e_rx_buffer *rx_bi = &rx_ring->rx_bi[i];
  897. if (rx_bi->skb) {
  898. dev_kfree_skb(rx_bi->skb);
  899. rx_bi->skb = NULL;
  900. }
  901. if (!rx_bi->page)
  902. continue;
  903. dma_unmap_page(dev, rx_bi->dma, PAGE_SIZE, DMA_FROM_DEVICE);
  904. __free_pages(rx_bi->page, 0);
  905. rx_bi->page = NULL;
  906. rx_bi->page_offset = 0;
  907. }
  908. bi_size = sizeof(struct i40e_rx_buffer) * rx_ring->count;
  909. memset(rx_ring->rx_bi, 0, bi_size);
  910. /* Zero out the descriptor ring */
  911. memset(rx_ring->desc, 0, rx_ring->size);
  912. rx_ring->next_to_alloc = 0;
  913. rx_ring->next_to_clean = 0;
  914. rx_ring->next_to_use = 0;
  915. }
  916. /**
  917. * i40e_free_rx_resources - Free Rx resources
  918. * @rx_ring: ring to clean the resources from
  919. *
  920. * Free all receive software resources
  921. **/
  922. void i40e_free_rx_resources(struct i40e_ring *rx_ring)
  923. {
  924. i40e_clean_rx_ring(rx_ring);
  925. kfree(rx_ring->rx_bi);
  926. rx_ring->rx_bi = NULL;
  927. if (rx_ring->desc) {
  928. dma_free_coherent(rx_ring->dev, rx_ring->size,
  929. rx_ring->desc, rx_ring->dma);
  930. rx_ring->desc = NULL;
  931. }
  932. }
  933. /**
  934. * i40e_setup_rx_descriptors - Allocate Rx descriptors
  935. * @rx_ring: Rx descriptor ring (for a specific queue) to setup
  936. *
  937. * Returns 0 on success, negative on failure
  938. **/
  939. int i40e_setup_rx_descriptors(struct i40e_ring *rx_ring)
  940. {
  941. struct device *dev = rx_ring->dev;
  942. int bi_size;
  943. /* warn if we are about to overwrite the pointer */
  944. WARN_ON(rx_ring->rx_bi);
  945. bi_size = sizeof(struct i40e_rx_buffer) * rx_ring->count;
  946. rx_ring->rx_bi = kzalloc(bi_size, GFP_KERNEL);
  947. if (!rx_ring->rx_bi)
  948. goto err;
  949. u64_stats_init(&rx_ring->syncp);
  950. /* Round up to nearest 4K */
  951. rx_ring->size = rx_ring->count * sizeof(union i40e_32byte_rx_desc);
  952. rx_ring->size = ALIGN(rx_ring->size, 4096);
  953. rx_ring->desc = dma_alloc_coherent(dev, rx_ring->size,
  954. &rx_ring->dma, GFP_KERNEL);
  955. if (!rx_ring->desc) {
  956. dev_info(dev, "Unable to allocate memory for the Rx descriptor ring, size=%d\n",
  957. rx_ring->size);
  958. goto err;
  959. }
  960. rx_ring->next_to_alloc = 0;
  961. rx_ring->next_to_clean = 0;
  962. rx_ring->next_to_use = 0;
  963. return 0;
  964. err:
  965. kfree(rx_ring->rx_bi);
  966. rx_ring->rx_bi = NULL;
  967. return -ENOMEM;
  968. }
  969. /**
  970. * i40e_release_rx_desc - Store the new tail and head values
  971. * @rx_ring: ring to bump
  972. * @val: new head index
  973. **/
  974. static inline void i40e_release_rx_desc(struct i40e_ring *rx_ring, u32 val)
  975. {
  976. rx_ring->next_to_use = val;
  977. /* update next to alloc since we have filled the ring */
  978. rx_ring->next_to_alloc = val;
  979. /* Force memory writes to complete before letting h/w
  980. * know there are new descriptors to fetch. (Only
  981. * applicable for weak-ordered memory model archs,
  982. * such as IA-64).
  983. */
  984. wmb();
  985. writel(val, rx_ring->tail);
  986. }
  987. /**
  988. * i40e_alloc_mapped_page - recycle or make a new page
  989. * @rx_ring: ring to use
  990. * @bi: rx_buffer struct to modify
  991. *
  992. * Returns true if the page was successfully allocated or
  993. * reused.
  994. **/
  995. static bool i40e_alloc_mapped_page(struct i40e_ring *rx_ring,
  996. struct i40e_rx_buffer *bi)
  997. {
  998. struct page *page = bi->page;
  999. dma_addr_t dma;
  1000. /* since we are recycling buffers we should seldom need to alloc */
  1001. if (likely(page)) {
  1002. rx_ring->rx_stats.page_reuse_count++;
  1003. return true;
  1004. }
  1005. /* alloc new page for storage */
  1006. page = dev_alloc_page();
  1007. if (unlikely(!page)) {
  1008. rx_ring->rx_stats.alloc_page_failed++;
  1009. return false;
  1010. }
  1011. /* map page for use */
  1012. dma = dma_map_page(rx_ring->dev, page, 0, PAGE_SIZE, DMA_FROM_DEVICE);
  1013. /* if mapping failed free memory back to system since
  1014. * there isn't much point in holding memory we can't use
  1015. */
  1016. if (dma_mapping_error(rx_ring->dev, dma)) {
  1017. __free_pages(page, 0);
  1018. rx_ring->rx_stats.alloc_page_failed++;
  1019. return false;
  1020. }
  1021. bi->dma = dma;
  1022. bi->page = page;
  1023. bi->page_offset = 0;
  1024. return true;
  1025. }
  1026. /**
  1027. * i40e_receive_skb - Send a completed packet up the stack
  1028. * @rx_ring: rx ring in play
  1029. * @skb: packet to send up
  1030. * @vlan_tag: vlan tag for packet
  1031. **/
  1032. static void i40e_receive_skb(struct i40e_ring *rx_ring,
  1033. struct sk_buff *skb, u16 vlan_tag)
  1034. {
  1035. struct i40e_q_vector *q_vector = rx_ring->q_vector;
  1036. if ((rx_ring->netdev->features & NETIF_F_HW_VLAN_CTAG_RX) &&
  1037. (vlan_tag & VLAN_VID_MASK))
  1038. __vlan_hwaccel_put_tag(skb, htons(ETH_P_8021Q), vlan_tag);
  1039. napi_gro_receive(&q_vector->napi, skb);
  1040. }
  1041. /**
  1042. * i40e_alloc_rx_buffers - Replace used receive buffers
  1043. * @rx_ring: ring to place buffers on
  1044. * @cleaned_count: number of buffers to replace
  1045. *
  1046. * Returns false if all allocations were successful, true if any fail
  1047. **/
  1048. bool i40e_alloc_rx_buffers(struct i40e_ring *rx_ring, u16 cleaned_count)
  1049. {
  1050. u16 ntu = rx_ring->next_to_use;
  1051. union i40e_rx_desc *rx_desc;
  1052. struct i40e_rx_buffer *bi;
  1053. /* do nothing if no valid netdev defined */
  1054. if (!rx_ring->netdev || !cleaned_count)
  1055. return false;
  1056. rx_desc = I40E_RX_DESC(rx_ring, ntu);
  1057. bi = &rx_ring->rx_bi[ntu];
  1058. do {
  1059. if (!i40e_alloc_mapped_page(rx_ring, bi))
  1060. goto no_buffers;
  1061. /* Refresh the desc even if buffer_addrs didn't change
  1062. * because each write-back erases this info.
  1063. */
  1064. rx_desc->read.pkt_addr = cpu_to_le64(bi->dma + bi->page_offset);
  1065. rx_desc->read.hdr_addr = 0;
  1066. rx_desc++;
  1067. bi++;
  1068. ntu++;
  1069. if (unlikely(ntu == rx_ring->count)) {
  1070. rx_desc = I40E_RX_DESC(rx_ring, 0);
  1071. bi = rx_ring->rx_bi;
  1072. ntu = 0;
  1073. }
  1074. /* clear the status bits for the next_to_use descriptor */
  1075. rx_desc->wb.qword1.status_error_len = 0;
  1076. cleaned_count--;
  1077. } while (cleaned_count);
  1078. if (rx_ring->next_to_use != ntu)
  1079. i40e_release_rx_desc(rx_ring, ntu);
  1080. return false;
  1081. no_buffers:
  1082. if (rx_ring->next_to_use != ntu)
  1083. i40e_release_rx_desc(rx_ring, ntu);
  1084. /* make sure to come back via polling to try again after
  1085. * allocation failure
  1086. */
  1087. return true;
  1088. }
  1089. /**
  1090. * i40e_rx_checksum - Indicate in skb if hw indicated a good cksum
  1091. * @vsi: the VSI we care about
  1092. * @skb: skb currently being received and modified
  1093. * @rx_desc: the receive descriptor
  1094. *
  1095. * skb->protocol must be set before this function is called
  1096. **/
  1097. static inline void i40e_rx_checksum(struct i40e_vsi *vsi,
  1098. struct sk_buff *skb,
  1099. union i40e_rx_desc *rx_desc)
  1100. {
  1101. struct i40e_rx_ptype_decoded decoded;
  1102. u32 rx_error, rx_status;
  1103. bool ipv4, ipv6;
  1104. u8 ptype;
  1105. u64 qword;
  1106. qword = le64_to_cpu(rx_desc->wb.qword1.status_error_len);
  1107. ptype = (qword & I40E_RXD_QW1_PTYPE_MASK) >> I40E_RXD_QW1_PTYPE_SHIFT;
  1108. rx_error = (qword & I40E_RXD_QW1_ERROR_MASK) >>
  1109. I40E_RXD_QW1_ERROR_SHIFT;
  1110. rx_status = (qword & I40E_RXD_QW1_STATUS_MASK) >>
  1111. I40E_RXD_QW1_STATUS_SHIFT;
  1112. decoded = decode_rx_desc_ptype(ptype);
  1113. skb->ip_summed = CHECKSUM_NONE;
  1114. skb_checksum_none_assert(skb);
  1115. /* Rx csum enabled and ip headers found? */
  1116. if (!(vsi->netdev->features & NETIF_F_RXCSUM))
  1117. return;
  1118. /* did the hardware decode the packet and checksum? */
  1119. if (!(rx_status & BIT(I40E_RX_DESC_STATUS_L3L4P_SHIFT)))
  1120. return;
  1121. /* both known and outer_ip must be set for the below code to work */
  1122. if (!(decoded.known && decoded.outer_ip))
  1123. return;
  1124. ipv4 = (decoded.outer_ip == I40E_RX_PTYPE_OUTER_IP) &&
  1125. (decoded.outer_ip_ver == I40E_RX_PTYPE_OUTER_IPV4);
  1126. ipv6 = (decoded.outer_ip == I40E_RX_PTYPE_OUTER_IP) &&
  1127. (decoded.outer_ip_ver == I40E_RX_PTYPE_OUTER_IPV6);
  1128. if (ipv4 &&
  1129. (rx_error & (BIT(I40E_RX_DESC_ERROR_IPE_SHIFT) |
  1130. BIT(I40E_RX_DESC_ERROR_EIPE_SHIFT))))
  1131. goto checksum_fail;
  1132. /* likely incorrect csum if alternate IP extension headers found */
  1133. if (ipv6 &&
  1134. rx_status & BIT(I40E_RX_DESC_STATUS_IPV6EXADD_SHIFT))
  1135. /* don't increment checksum err here, non-fatal err */
  1136. return;
  1137. /* there was some L4 error, count error and punt packet to the stack */
  1138. if (rx_error & BIT(I40E_RX_DESC_ERROR_L4E_SHIFT))
  1139. goto checksum_fail;
  1140. /* handle packets that were not able to be checksummed due
  1141. * to arrival speed, in this case the stack can compute
  1142. * the csum.
  1143. */
  1144. if (rx_error & BIT(I40E_RX_DESC_ERROR_PPRS_SHIFT))
  1145. return;
  1146. /* If there is an outer header present that might contain a checksum
  1147. * we need to bump the checksum level by 1 to reflect the fact that
  1148. * we are indicating we validated the inner checksum.
  1149. */
  1150. if (decoded.tunnel_type >= I40E_RX_PTYPE_TUNNEL_IP_GRENAT)
  1151. skb->csum_level = 1;
  1152. /* Only report checksum unnecessary for TCP, UDP, or SCTP */
  1153. switch (decoded.inner_prot) {
  1154. case I40E_RX_PTYPE_INNER_PROT_TCP:
  1155. case I40E_RX_PTYPE_INNER_PROT_UDP:
  1156. case I40E_RX_PTYPE_INNER_PROT_SCTP:
  1157. skb->ip_summed = CHECKSUM_UNNECESSARY;
  1158. /* fall though */
  1159. default:
  1160. break;
  1161. }
  1162. return;
  1163. checksum_fail:
  1164. vsi->back->hw_csum_rx_error++;
  1165. }
  1166. /**
  1167. * i40e_ptype_to_htype - get a hash type
  1168. * @ptype: the ptype value from the descriptor
  1169. *
  1170. * Returns a hash type to be used by skb_set_hash
  1171. **/
  1172. static inline int i40e_ptype_to_htype(u8 ptype)
  1173. {
  1174. struct i40e_rx_ptype_decoded decoded = decode_rx_desc_ptype(ptype);
  1175. if (!decoded.known)
  1176. return PKT_HASH_TYPE_NONE;
  1177. if (decoded.outer_ip == I40E_RX_PTYPE_OUTER_IP &&
  1178. decoded.payload_layer == I40E_RX_PTYPE_PAYLOAD_LAYER_PAY4)
  1179. return PKT_HASH_TYPE_L4;
  1180. else if (decoded.outer_ip == I40E_RX_PTYPE_OUTER_IP &&
  1181. decoded.payload_layer == I40E_RX_PTYPE_PAYLOAD_LAYER_PAY3)
  1182. return PKT_HASH_TYPE_L3;
  1183. else
  1184. return PKT_HASH_TYPE_L2;
  1185. }
  1186. /**
  1187. * i40e_rx_hash - set the hash value in the skb
  1188. * @ring: descriptor ring
  1189. * @rx_desc: specific descriptor
  1190. **/
  1191. static inline void i40e_rx_hash(struct i40e_ring *ring,
  1192. union i40e_rx_desc *rx_desc,
  1193. struct sk_buff *skb,
  1194. u8 rx_ptype)
  1195. {
  1196. u32 hash;
  1197. const __le64 rss_mask =
  1198. cpu_to_le64((u64)I40E_RX_DESC_FLTSTAT_RSS_HASH <<
  1199. I40E_RX_DESC_STATUS_FLTSTAT_SHIFT);
  1200. if (!(ring->netdev->features & NETIF_F_RXHASH))
  1201. return;
  1202. if ((rx_desc->wb.qword1.status_error_len & rss_mask) == rss_mask) {
  1203. hash = le32_to_cpu(rx_desc->wb.qword0.hi_dword.rss);
  1204. skb_set_hash(skb, hash, i40e_ptype_to_htype(rx_ptype));
  1205. }
  1206. }
  1207. /**
  1208. * i40e_process_skb_fields - Populate skb header fields from Rx descriptor
  1209. * @rx_ring: rx descriptor ring packet is being transacted on
  1210. * @rx_desc: pointer to the EOP Rx descriptor
  1211. * @skb: pointer to current skb being populated
  1212. * @rx_ptype: the packet type decoded by hardware
  1213. *
  1214. * This function checks the ring, descriptor, and packet information in
  1215. * order to populate the hash, checksum, VLAN, protocol, and
  1216. * other fields within the skb.
  1217. **/
  1218. static inline
  1219. void i40e_process_skb_fields(struct i40e_ring *rx_ring,
  1220. union i40e_rx_desc *rx_desc, struct sk_buff *skb,
  1221. u8 rx_ptype)
  1222. {
  1223. u64 qword = le64_to_cpu(rx_desc->wb.qword1.status_error_len);
  1224. u32 rx_status = (qword & I40E_RXD_QW1_STATUS_MASK) >>
  1225. I40E_RXD_QW1_STATUS_SHIFT;
  1226. u32 rsyn = (rx_status & I40E_RXD_QW1_STATUS_TSYNINDX_MASK) >>
  1227. I40E_RXD_QW1_STATUS_TSYNINDX_SHIFT;
  1228. if (unlikely(rsyn)) {
  1229. i40e_ptp_rx_hwtstamp(rx_ring->vsi->back, skb, rsyn);
  1230. rx_ring->last_rx_timestamp = jiffies;
  1231. }
  1232. i40e_rx_hash(rx_ring, rx_desc, skb, rx_ptype);
  1233. /* modifies the skb - consumes the enet header */
  1234. skb->protocol = eth_type_trans(skb, rx_ring->netdev);
  1235. i40e_rx_checksum(rx_ring->vsi, skb, rx_desc);
  1236. skb_record_rx_queue(skb, rx_ring->queue_index);
  1237. }
  1238. /**
  1239. * i40e_pull_tail - i40e specific version of skb_pull_tail
  1240. * @rx_ring: rx descriptor ring packet is being transacted on
  1241. * @skb: pointer to current skb being adjusted
  1242. *
  1243. * This function is an i40e specific version of __pskb_pull_tail. The
  1244. * main difference between this version and the original function is that
  1245. * this function can make several assumptions about the state of things
  1246. * that allow for significant optimizations versus the standard function.
  1247. * As a result we can do things like drop a frag and maintain an accurate
  1248. * truesize for the skb.
  1249. */
  1250. static void i40e_pull_tail(struct i40e_ring *rx_ring, struct sk_buff *skb)
  1251. {
  1252. struct skb_frag_struct *frag = &skb_shinfo(skb)->frags[0];
  1253. unsigned char *va;
  1254. unsigned int pull_len;
  1255. /* it is valid to use page_address instead of kmap since we are
  1256. * working with pages allocated out of the lomem pool per
  1257. * alloc_page(GFP_ATOMIC)
  1258. */
  1259. va = skb_frag_address(frag);
  1260. /* we need the header to contain the greater of either ETH_HLEN or
  1261. * 60 bytes if the skb->len is less than 60 for skb_pad.
  1262. */
  1263. pull_len = eth_get_headlen(va, I40E_RX_HDR_SIZE);
  1264. /* align pull length to size of long to optimize memcpy performance */
  1265. skb_copy_to_linear_data(skb, va, ALIGN(pull_len, sizeof(long)));
  1266. /* update all of the pointers */
  1267. skb_frag_size_sub(frag, pull_len);
  1268. frag->page_offset += pull_len;
  1269. skb->data_len -= pull_len;
  1270. skb->tail += pull_len;
  1271. }
  1272. /**
  1273. * i40e_cleanup_headers - Correct empty headers
  1274. * @rx_ring: rx descriptor ring packet is being transacted on
  1275. * @skb: pointer to current skb being fixed
  1276. *
  1277. * Also address the case where we are pulling data in on pages only
  1278. * and as such no data is present in the skb header.
  1279. *
  1280. * In addition if skb is not at least 60 bytes we need to pad it so that
  1281. * it is large enough to qualify as a valid Ethernet frame.
  1282. *
  1283. * Returns true if an error was encountered and skb was freed.
  1284. **/
  1285. static bool i40e_cleanup_headers(struct i40e_ring *rx_ring, struct sk_buff *skb)
  1286. {
  1287. /* place header in linear portion of buffer */
  1288. if (skb_is_nonlinear(skb))
  1289. i40e_pull_tail(rx_ring, skb);
  1290. /* if eth_skb_pad returns an error the skb was freed */
  1291. if (eth_skb_pad(skb))
  1292. return true;
  1293. return false;
  1294. }
  1295. /**
  1296. * i40e_reuse_rx_page - page flip buffer and store it back on the ring
  1297. * @rx_ring: rx descriptor ring to store buffers on
  1298. * @old_buff: donor buffer to have page reused
  1299. *
  1300. * Synchronizes page for reuse by the adapter
  1301. **/
  1302. static void i40e_reuse_rx_page(struct i40e_ring *rx_ring,
  1303. struct i40e_rx_buffer *old_buff)
  1304. {
  1305. struct i40e_rx_buffer *new_buff;
  1306. u16 nta = rx_ring->next_to_alloc;
  1307. new_buff = &rx_ring->rx_bi[nta];
  1308. /* update, and store next to alloc */
  1309. nta++;
  1310. rx_ring->next_to_alloc = (nta < rx_ring->count) ? nta : 0;
  1311. /* transfer page from old buffer to new buffer */
  1312. *new_buff = *old_buff;
  1313. }
  1314. /**
  1315. * i40e_page_is_reserved - check if reuse is possible
  1316. * @page: page struct to check
  1317. */
  1318. static inline bool i40e_page_is_reserved(struct page *page)
  1319. {
  1320. return (page_to_nid(page) != numa_mem_id()) || page_is_pfmemalloc(page);
  1321. }
  1322. /**
  1323. * i40e_add_rx_frag - Add contents of Rx buffer to sk_buff
  1324. * @rx_ring: rx descriptor ring to transact packets on
  1325. * @rx_buffer: buffer containing page to add
  1326. * @rx_desc: descriptor containing length of buffer written by hardware
  1327. * @skb: sk_buff to place the data into
  1328. *
  1329. * This function will add the data contained in rx_buffer->page to the skb.
  1330. * This is done either through a direct copy if the data in the buffer is
  1331. * less than the skb header size, otherwise it will just attach the page as
  1332. * a frag to the skb.
  1333. *
  1334. * The function will then update the page offset if necessary and return
  1335. * true if the buffer can be reused by the adapter.
  1336. **/
  1337. static bool i40e_add_rx_frag(struct i40e_ring *rx_ring,
  1338. struct i40e_rx_buffer *rx_buffer,
  1339. union i40e_rx_desc *rx_desc,
  1340. struct sk_buff *skb)
  1341. {
  1342. struct page *page = rx_buffer->page;
  1343. u64 qword = le64_to_cpu(rx_desc->wb.qword1.status_error_len);
  1344. unsigned int size = (qword & I40E_RXD_QW1_LENGTH_PBUF_MASK) >>
  1345. I40E_RXD_QW1_LENGTH_PBUF_SHIFT;
  1346. #if (PAGE_SIZE < 8192)
  1347. unsigned int truesize = I40E_RXBUFFER_2048;
  1348. #else
  1349. unsigned int truesize = ALIGN(size, L1_CACHE_BYTES);
  1350. unsigned int last_offset = PAGE_SIZE - I40E_RXBUFFER_2048;
  1351. #endif
  1352. /* will the data fit in the skb we allocated? if so, just
  1353. * copy it as it is pretty small anyway
  1354. */
  1355. if ((size <= I40E_RX_HDR_SIZE) && !skb_is_nonlinear(skb)) {
  1356. unsigned char *va = page_address(page) + rx_buffer->page_offset;
  1357. memcpy(__skb_put(skb, size), va, ALIGN(size, sizeof(long)));
  1358. /* page is not reserved, we can reuse buffer as-is */
  1359. if (likely(!i40e_page_is_reserved(page)))
  1360. return true;
  1361. /* this page cannot be reused so discard it */
  1362. __free_pages(page, 0);
  1363. return false;
  1364. }
  1365. skb_add_rx_frag(skb, skb_shinfo(skb)->nr_frags, page,
  1366. rx_buffer->page_offset, size, truesize);
  1367. /* avoid re-using remote pages */
  1368. if (unlikely(i40e_page_is_reserved(page)))
  1369. return false;
  1370. #if (PAGE_SIZE < 8192)
  1371. /* if we are only owner of page we can reuse it */
  1372. if (unlikely(page_count(page) != 1))
  1373. return false;
  1374. /* flip page offset to other buffer */
  1375. rx_buffer->page_offset ^= truesize;
  1376. #else
  1377. /* move offset up to the next cache line */
  1378. rx_buffer->page_offset += truesize;
  1379. if (rx_buffer->page_offset > last_offset)
  1380. return false;
  1381. #endif
  1382. /* Even if we own the page, we are not allowed to use atomic_set()
  1383. * This would break get_page_unless_zero() users.
  1384. */
  1385. get_page(rx_buffer->page);
  1386. return true;
  1387. }
  1388. /**
  1389. * i40e_fetch_rx_buffer - Allocate skb and populate it
  1390. * @rx_ring: rx descriptor ring to transact packets on
  1391. * @rx_desc: descriptor containing info written by hardware
  1392. *
  1393. * This function allocates an skb on the fly, and populates it with the page
  1394. * data from the current receive descriptor, taking care to set up the skb
  1395. * correctly, as well as handling calling the page recycle function if
  1396. * necessary.
  1397. */
  1398. static inline
  1399. struct sk_buff *i40e_fetch_rx_buffer(struct i40e_ring *rx_ring,
  1400. union i40e_rx_desc *rx_desc)
  1401. {
  1402. struct i40e_rx_buffer *rx_buffer;
  1403. struct sk_buff *skb;
  1404. struct page *page;
  1405. rx_buffer = &rx_ring->rx_bi[rx_ring->next_to_clean];
  1406. page = rx_buffer->page;
  1407. prefetchw(page);
  1408. skb = rx_buffer->skb;
  1409. if (likely(!skb)) {
  1410. void *page_addr = page_address(page) + rx_buffer->page_offset;
  1411. /* prefetch first cache line of first page */
  1412. prefetch(page_addr);
  1413. #if L1_CACHE_BYTES < 128
  1414. prefetch(page_addr + L1_CACHE_BYTES);
  1415. #endif
  1416. /* allocate a skb to store the frags */
  1417. skb = __napi_alloc_skb(&rx_ring->q_vector->napi,
  1418. I40E_RX_HDR_SIZE,
  1419. GFP_ATOMIC | __GFP_NOWARN);
  1420. if (unlikely(!skb)) {
  1421. rx_ring->rx_stats.alloc_buff_failed++;
  1422. return NULL;
  1423. }
  1424. /* we will be copying header into skb->data in
  1425. * pskb_may_pull so it is in our interest to prefetch
  1426. * it now to avoid a possible cache miss
  1427. */
  1428. prefetchw(skb->data);
  1429. } else {
  1430. rx_buffer->skb = NULL;
  1431. }
  1432. /* we are reusing so sync this buffer for CPU use */
  1433. dma_sync_single_range_for_cpu(rx_ring->dev,
  1434. rx_buffer->dma,
  1435. rx_buffer->page_offset,
  1436. I40E_RXBUFFER_2048,
  1437. DMA_FROM_DEVICE);
  1438. /* pull page into skb */
  1439. if (i40e_add_rx_frag(rx_ring, rx_buffer, rx_desc, skb)) {
  1440. /* hand second half of page back to the ring */
  1441. i40e_reuse_rx_page(rx_ring, rx_buffer);
  1442. rx_ring->rx_stats.page_reuse_count++;
  1443. } else {
  1444. /* we are not reusing the buffer so unmap it */
  1445. dma_unmap_page(rx_ring->dev, rx_buffer->dma, PAGE_SIZE,
  1446. DMA_FROM_DEVICE);
  1447. }
  1448. /* clear contents of buffer_info */
  1449. rx_buffer->page = NULL;
  1450. return skb;
  1451. }
  1452. /**
  1453. * i40e_is_non_eop - process handling of non-EOP buffers
  1454. * @rx_ring: Rx ring being processed
  1455. * @rx_desc: Rx descriptor for current buffer
  1456. * @skb: Current socket buffer containing buffer in progress
  1457. *
  1458. * This function updates next to clean. If the buffer is an EOP buffer
  1459. * this function exits returning false, otherwise it will place the
  1460. * sk_buff in the next buffer to be chained and return true indicating
  1461. * that this is in fact a non-EOP buffer.
  1462. **/
  1463. static bool i40e_is_non_eop(struct i40e_ring *rx_ring,
  1464. union i40e_rx_desc *rx_desc,
  1465. struct sk_buff *skb)
  1466. {
  1467. u32 ntc = rx_ring->next_to_clean + 1;
  1468. /* fetch, update, and store next to clean */
  1469. ntc = (ntc < rx_ring->count) ? ntc : 0;
  1470. rx_ring->next_to_clean = ntc;
  1471. prefetch(I40E_RX_DESC(rx_ring, ntc));
  1472. #define staterrlen rx_desc->wb.qword1.status_error_len
  1473. if (unlikely(i40e_rx_is_programming_status(le64_to_cpu(staterrlen)))) {
  1474. i40e_clean_programming_status(rx_ring, rx_desc);
  1475. rx_ring->rx_bi[ntc].skb = skb;
  1476. return true;
  1477. }
  1478. /* if we are the last buffer then there is nothing else to do */
  1479. #define I40E_RXD_EOF BIT(I40E_RX_DESC_STATUS_EOF_SHIFT)
  1480. if (likely(i40e_test_staterr(rx_desc, I40E_RXD_EOF)))
  1481. return false;
  1482. /* place skb in next buffer to be received */
  1483. rx_ring->rx_bi[ntc].skb = skb;
  1484. rx_ring->rx_stats.non_eop_descs++;
  1485. return true;
  1486. }
  1487. /**
  1488. * i40e_clean_rx_irq - Clean completed descriptors from Rx ring - bounce buf
  1489. * @rx_ring: rx descriptor ring to transact packets on
  1490. * @budget: Total limit on number of packets to process
  1491. *
  1492. * This function provides a "bounce buffer" approach to Rx interrupt
  1493. * processing. The advantage to this is that on systems that have
  1494. * expensive overhead for IOMMU access this provides a means of avoiding
  1495. * it by maintaining the mapping of the page to the system.
  1496. *
  1497. * Returns amount of work completed
  1498. **/
  1499. static int i40e_clean_rx_irq(struct i40e_ring *rx_ring, int budget)
  1500. {
  1501. unsigned int total_rx_bytes = 0, total_rx_packets = 0;
  1502. u16 cleaned_count = I40E_DESC_UNUSED(rx_ring);
  1503. bool failure = false;
  1504. while (likely(total_rx_packets < budget)) {
  1505. union i40e_rx_desc *rx_desc;
  1506. struct sk_buff *skb;
  1507. u32 rx_status;
  1508. u16 vlan_tag;
  1509. u8 rx_ptype;
  1510. u64 qword;
  1511. /* return some buffers to hardware, one at a time is too slow */
  1512. if (cleaned_count >= I40E_RX_BUFFER_WRITE) {
  1513. failure = failure ||
  1514. i40e_alloc_rx_buffers(rx_ring, cleaned_count);
  1515. cleaned_count = 0;
  1516. }
  1517. rx_desc = I40E_RX_DESC(rx_ring, rx_ring->next_to_clean);
  1518. qword = le64_to_cpu(rx_desc->wb.qword1.status_error_len);
  1519. rx_ptype = (qword & I40E_RXD_QW1_PTYPE_MASK) >>
  1520. I40E_RXD_QW1_PTYPE_SHIFT;
  1521. rx_status = (qword & I40E_RXD_QW1_STATUS_MASK) >>
  1522. I40E_RXD_QW1_STATUS_SHIFT;
  1523. if (!(rx_status & BIT(I40E_RX_DESC_STATUS_DD_SHIFT)))
  1524. break;
  1525. /* status_error_len will always be zero for unused descriptors
  1526. * because it's cleared in cleanup, and overlaps with hdr_addr
  1527. * which is always zero because packet split isn't used, if the
  1528. * hardware wrote DD then it will be non-zero
  1529. */
  1530. if (!rx_desc->wb.qword1.status_error_len)
  1531. break;
  1532. /* This memory barrier is needed to keep us from reading
  1533. * any other fields out of the rx_desc until we know the
  1534. * DD bit is set.
  1535. */
  1536. dma_rmb();
  1537. skb = i40e_fetch_rx_buffer(rx_ring, rx_desc);
  1538. if (!skb)
  1539. break;
  1540. cleaned_count++;
  1541. if (i40e_is_non_eop(rx_ring, rx_desc, skb))
  1542. continue;
  1543. /* ERR_MASK will only have valid bits if EOP set, and
  1544. * what we are doing here is actually checking
  1545. * I40E_RX_DESC_ERROR_RXE_SHIFT, since it is the zeroth bit in
  1546. * the error field
  1547. */
  1548. if (unlikely(i40e_test_staterr(rx_desc, BIT(I40E_RXD_QW1_ERROR_SHIFT)))) {
  1549. dev_kfree_skb_any(skb);
  1550. continue;
  1551. }
  1552. if (i40e_cleanup_headers(rx_ring, skb))
  1553. continue;
  1554. /* probably a little skewed due to removing CRC */
  1555. total_rx_bytes += skb->len;
  1556. /* populate checksum, VLAN, and protocol */
  1557. i40e_process_skb_fields(rx_ring, rx_desc, skb, rx_ptype);
  1558. #ifdef I40E_FCOE
  1559. if (unlikely(
  1560. i40e_rx_is_fcoe(rx_ptype) &&
  1561. !i40e_fcoe_handle_offload(rx_ring, rx_desc, skb))) {
  1562. dev_kfree_skb_any(skb);
  1563. continue;
  1564. }
  1565. #endif
  1566. vlan_tag = (qword & BIT(I40E_RX_DESC_STATUS_L2TAG1P_SHIFT)) ?
  1567. le16_to_cpu(rx_desc->wb.qword0.lo_dword.l2tag1) : 0;
  1568. i40e_receive_skb(rx_ring, skb, vlan_tag);
  1569. /* update budget accounting */
  1570. total_rx_packets++;
  1571. }
  1572. u64_stats_update_begin(&rx_ring->syncp);
  1573. rx_ring->stats.packets += total_rx_packets;
  1574. rx_ring->stats.bytes += total_rx_bytes;
  1575. u64_stats_update_end(&rx_ring->syncp);
  1576. rx_ring->q_vector->rx.total_packets += total_rx_packets;
  1577. rx_ring->q_vector->rx.total_bytes += total_rx_bytes;
  1578. /* guarantee a trip back through this routine if there was a failure */
  1579. return failure ? budget : total_rx_packets;
  1580. }
  1581. static u32 i40e_buildreg_itr(const int type, const u16 itr)
  1582. {
  1583. u32 val;
  1584. val = I40E_PFINT_DYN_CTLN_INTENA_MASK |
  1585. /* Don't clear PBA because that can cause lost interrupts that
  1586. * came in while we were cleaning/polling
  1587. */
  1588. (type << I40E_PFINT_DYN_CTLN_ITR_INDX_SHIFT) |
  1589. (itr << I40E_PFINT_DYN_CTLN_INTERVAL_SHIFT);
  1590. return val;
  1591. }
  1592. /* a small macro to shorten up some long lines */
  1593. #define INTREG I40E_PFINT_DYN_CTLN
  1594. /**
  1595. * i40e_update_enable_itr - Update itr and re-enable MSIX interrupt
  1596. * @vsi: the VSI we care about
  1597. * @q_vector: q_vector for which itr is being updated and interrupt enabled
  1598. *
  1599. **/
  1600. static inline void i40e_update_enable_itr(struct i40e_vsi *vsi,
  1601. struct i40e_q_vector *q_vector)
  1602. {
  1603. struct i40e_hw *hw = &vsi->back->hw;
  1604. bool rx = false, tx = false;
  1605. u32 rxval, txval;
  1606. int vector;
  1607. int idx = q_vector->v_idx;
  1608. vector = (q_vector->v_idx + vsi->base_vector);
  1609. /* avoid dynamic calculation if in countdown mode OR if
  1610. * all dynamic is disabled
  1611. */
  1612. rxval = txval = i40e_buildreg_itr(I40E_ITR_NONE, 0);
  1613. if (q_vector->itr_countdown > 0 ||
  1614. (!ITR_IS_DYNAMIC(vsi->rx_rings[idx]->rx_itr_setting) &&
  1615. !ITR_IS_DYNAMIC(vsi->tx_rings[idx]->tx_itr_setting))) {
  1616. goto enable_int;
  1617. }
  1618. if (ITR_IS_DYNAMIC(vsi->rx_rings[idx]->rx_itr_setting)) {
  1619. rx = i40e_set_new_dynamic_itr(&q_vector->rx);
  1620. rxval = i40e_buildreg_itr(I40E_RX_ITR, q_vector->rx.itr);
  1621. }
  1622. if (ITR_IS_DYNAMIC(vsi->tx_rings[idx]->tx_itr_setting)) {
  1623. tx = i40e_set_new_dynamic_itr(&q_vector->tx);
  1624. txval = i40e_buildreg_itr(I40E_TX_ITR, q_vector->tx.itr);
  1625. }
  1626. if (rx || tx) {
  1627. /* get the higher of the two ITR adjustments and
  1628. * use the same value for both ITR registers
  1629. * when in adaptive mode (Rx and/or Tx)
  1630. */
  1631. u16 itr = max(q_vector->tx.itr, q_vector->rx.itr);
  1632. q_vector->tx.itr = q_vector->rx.itr = itr;
  1633. txval = i40e_buildreg_itr(I40E_TX_ITR, itr);
  1634. tx = true;
  1635. rxval = i40e_buildreg_itr(I40E_RX_ITR, itr);
  1636. rx = true;
  1637. }
  1638. /* only need to enable the interrupt once, but need
  1639. * to possibly update both ITR values
  1640. */
  1641. if (rx) {
  1642. /* set the INTENA_MSK_MASK so that this first write
  1643. * won't actually enable the interrupt, instead just
  1644. * updating the ITR (it's bit 31 PF and VF)
  1645. */
  1646. rxval |= BIT(31);
  1647. /* don't check _DOWN because interrupt isn't being enabled */
  1648. wr32(hw, INTREG(vector - 1), rxval);
  1649. }
  1650. enable_int:
  1651. if (!test_bit(__I40E_DOWN, &vsi->state))
  1652. wr32(hw, INTREG(vector - 1), txval);
  1653. if (q_vector->itr_countdown)
  1654. q_vector->itr_countdown--;
  1655. else
  1656. q_vector->itr_countdown = ITR_COUNTDOWN_START;
  1657. }
  1658. /**
  1659. * i40e_napi_poll - NAPI polling Rx/Tx cleanup routine
  1660. * @napi: napi struct with our devices info in it
  1661. * @budget: amount of work driver is allowed to do this pass, in packets
  1662. *
  1663. * This function will clean all queues associated with a q_vector.
  1664. *
  1665. * Returns the amount of work done
  1666. **/
  1667. int i40e_napi_poll(struct napi_struct *napi, int budget)
  1668. {
  1669. struct i40e_q_vector *q_vector =
  1670. container_of(napi, struct i40e_q_vector, napi);
  1671. struct i40e_vsi *vsi = q_vector->vsi;
  1672. struct i40e_ring *ring;
  1673. bool clean_complete = true;
  1674. bool arm_wb = false;
  1675. int budget_per_ring;
  1676. int work_done = 0;
  1677. if (test_bit(__I40E_DOWN, &vsi->state)) {
  1678. napi_complete(napi);
  1679. return 0;
  1680. }
  1681. /* Clear hung_detected bit */
  1682. clear_bit(I40E_Q_VECTOR_HUNG_DETECT, &q_vector->hung_detected);
  1683. /* Since the actual Tx work is minimal, we can give the Tx a larger
  1684. * budget and be more aggressive about cleaning up the Tx descriptors.
  1685. */
  1686. i40e_for_each_ring(ring, q_vector->tx) {
  1687. if (!i40e_clean_tx_irq(vsi, ring, budget)) {
  1688. clean_complete = false;
  1689. continue;
  1690. }
  1691. arm_wb |= ring->arm_wb;
  1692. ring->arm_wb = false;
  1693. }
  1694. /* Handle case where we are called by netpoll with a budget of 0 */
  1695. if (budget <= 0)
  1696. goto tx_only;
  1697. /* We attempt to distribute budget to each Rx queue fairly, but don't
  1698. * allow the budget to go below 1 because that would exit polling early.
  1699. */
  1700. budget_per_ring = max(budget/q_vector->num_ringpairs, 1);
  1701. i40e_for_each_ring(ring, q_vector->rx) {
  1702. int cleaned = i40e_clean_rx_irq(ring, budget_per_ring);
  1703. work_done += cleaned;
  1704. /* if we clean as many as budgeted, we must not be done */
  1705. if (cleaned >= budget_per_ring)
  1706. clean_complete = false;
  1707. }
  1708. /* If work not completed, return budget and polling will return */
  1709. if (!clean_complete) {
  1710. tx_only:
  1711. if (arm_wb) {
  1712. q_vector->tx.ring[0].tx_stats.tx_force_wb++;
  1713. i40e_enable_wb_on_itr(vsi, q_vector);
  1714. }
  1715. return budget;
  1716. }
  1717. if (vsi->back->flags & I40E_TXR_FLAGS_WB_ON_ITR)
  1718. q_vector->arm_wb_state = false;
  1719. /* Work is done so exit the polling mode and re-enable the interrupt */
  1720. napi_complete_done(napi, work_done);
  1721. if (vsi->back->flags & I40E_FLAG_MSIX_ENABLED) {
  1722. i40e_update_enable_itr(vsi, q_vector);
  1723. } else { /* Legacy mode */
  1724. i40e_irq_dynamic_enable_icr0(vsi->back, false);
  1725. }
  1726. return 0;
  1727. }
  1728. /**
  1729. * i40e_atr - Add a Flow Director ATR filter
  1730. * @tx_ring: ring to add programming descriptor to
  1731. * @skb: send buffer
  1732. * @tx_flags: send tx flags
  1733. **/
  1734. static void i40e_atr(struct i40e_ring *tx_ring, struct sk_buff *skb,
  1735. u32 tx_flags)
  1736. {
  1737. struct i40e_filter_program_desc *fdir_desc;
  1738. struct i40e_pf *pf = tx_ring->vsi->back;
  1739. union {
  1740. unsigned char *network;
  1741. struct iphdr *ipv4;
  1742. struct ipv6hdr *ipv6;
  1743. } hdr;
  1744. struct tcphdr *th;
  1745. unsigned int hlen;
  1746. u32 flex_ptype, dtype_cmd;
  1747. int l4_proto;
  1748. u16 i;
  1749. /* make sure ATR is enabled */
  1750. if (!(pf->flags & I40E_FLAG_FD_ATR_ENABLED))
  1751. return;
  1752. if ((pf->auto_disable_flags & I40E_FLAG_FD_ATR_ENABLED))
  1753. return;
  1754. /* if sampling is disabled do nothing */
  1755. if (!tx_ring->atr_sample_rate)
  1756. return;
  1757. /* Currently only IPv4/IPv6 with TCP is supported */
  1758. if (!(tx_flags & (I40E_TX_FLAGS_IPV4 | I40E_TX_FLAGS_IPV6)))
  1759. return;
  1760. /* snag network header to get L4 type and address */
  1761. hdr.network = (tx_flags & I40E_TX_FLAGS_UDP_TUNNEL) ?
  1762. skb_inner_network_header(skb) : skb_network_header(skb);
  1763. /* Note: tx_flags gets modified to reflect inner protocols in
  1764. * tx_enable_csum function if encap is enabled.
  1765. */
  1766. if (tx_flags & I40E_TX_FLAGS_IPV4) {
  1767. /* access ihl as u8 to avoid unaligned access on ia64 */
  1768. hlen = (hdr.network[0] & 0x0F) << 2;
  1769. l4_proto = hdr.ipv4->protocol;
  1770. } else {
  1771. hlen = hdr.network - skb->data;
  1772. l4_proto = ipv6_find_hdr(skb, &hlen, IPPROTO_TCP, NULL, NULL);
  1773. hlen -= hdr.network - skb->data;
  1774. }
  1775. if (l4_proto != IPPROTO_TCP)
  1776. return;
  1777. th = (struct tcphdr *)(hdr.network + hlen);
  1778. /* Due to lack of space, no more new filters can be programmed */
  1779. if (th->syn && (pf->auto_disable_flags & I40E_FLAG_FD_ATR_ENABLED))
  1780. return;
  1781. if ((pf->flags & I40E_FLAG_HW_ATR_EVICT_CAPABLE) &&
  1782. (!(pf->auto_disable_flags & I40E_FLAG_HW_ATR_EVICT_CAPABLE))) {
  1783. /* HW ATR eviction will take care of removing filters on FIN
  1784. * and RST packets.
  1785. */
  1786. if (th->fin || th->rst)
  1787. return;
  1788. }
  1789. tx_ring->atr_count++;
  1790. /* sample on all syn/fin/rst packets or once every atr sample rate */
  1791. if (!th->fin &&
  1792. !th->syn &&
  1793. !th->rst &&
  1794. (tx_ring->atr_count < tx_ring->atr_sample_rate))
  1795. return;
  1796. tx_ring->atr_count = 0;
  1797. /* grab the next descriptor */
  1798. i = tx_ring->next_to_use;
  1799. fdir_desc = I40E_TX_FDIRDESC(tx_ring, i);
  1800. i++;
  1801. tx_ring->next_to_use = (i < tx_ring->count) ? i : 0;
  1802. flex_ptype = (tx_ring->queue_index << I40E_TXD_FLTR_QW0_QINDEX_SHIFT) &
  1803. I40E_TXD_FLTR_QW0_QINDEX_MASK;
  1804. flex_ptype |= (tx_flags & I40E_TX_FLAGS_IPV4) ?
  1805. (I40E_FILTER_PCTYPE_NONF_IPV4_TCP <<
  1806. I40E_TXD_FLTR_QW0_PCTYPE_SHIFT) :
  1807. (I40E_FILTER_PCTYPE_NONF_IPV6_TCP <<
  1808. I40E_TXD_FLTR_QW0_PCTYPE_SHIFT);
  1809. flex_ptype |= tx_ring->vsi->id << I40E_TXD_FLTR_QW0_DEST_VSI_SHIFT;
  1810. dtype_cmd = I40E_TX_DESC_DTYPE_FILTER_PROG;
  1811. dtype_cmd |= (th->fin || th->rst) ?
  1812. (I40E_FILTER_PROGRAM_DESC_PCMD_REMOVE <<
  1813. I40E_TXD_FLTR_QW1_PCMD_SHIFT) :
  1814. (I40E_FILTER_PROGRAM_DESC_PCMD_ADD_UPDATE <<
  1815. I40E_TXD_FLTR_QW1_PCMD_SHIFT);
  1816. dtype_cmd |= I40E_FILTER_PROGRAM_DESC_DEST_DIRECT_PACKET_QINDEX <<
  1817. I40E_TXD_FLTR_QW1_DEST_SHIFT;
  1818. dtype_cmd |= I40E_FILTER_PROGRAM_DESC_FD_STATUS_FD_ID <<
  1819. I40E_TXD_FLTR_QW1_FD_STATUS_SHIFT;
  1820. dtype_cmd |= I40E_TXD_FLTR_QW1_CNT_ENA_MASK;
  1821. if (!(tx_flags & I40E_TX_FLAGS_UDP_TUNNEL))
  1822. dtype_cmd |=
  1823. ((u32)I40E_FD_ATR_STAT_IDX(pf->hw.pf_id) <<
  1824. I40E_TXD_FLTR_QW1_CNTINDEX_SHIFT) &
  1825. I40E_TXD_FLTR_QW1_CNTINDEX_MASK;
  1826. else
  1827. dtype_cmd |=
  1828. ((u32)I40E_FD_ATR_TUNNEL_STAT_IDX(pf->hw.pf_id) <<
  1829. I40E_TXD_FLTR_QW1_CNTINDEX_SHIFT) &
  1830. I40E_TXD_FLTR_QW1_CNTINDEX_MASK;
  1831. if ((pf->flags & I40E_FLAG_HW_ATR_EVICT_CAPABLE) &&
  1832. (!(pf->auto_disable_flags & I40E_FLAG_HW_ATR_EVICT_CAPABLE)))
  1833. dtype_cmd |= I40E_TXD_FLTR_QW1_ATR_MASK;
  1834. fdir_desc->qindex_flex_ptype_vsi = cpu_to_le32(flex_ptype);
  1835. fdir_desc->rsvd = cpu_to_le32(0);
  1836. fdir_desc->dtype_cmd_cntindex = cpu_to_le32(dtype_cmd);
  1837. fdir_desc->fd_id = cpu_to_le32(0);
  1838. }
  1839. /**
  1840. * i40e_tx_prepare_vlan_flags - prepare generic TX VLAN tagging flags for HW
  1841. * @skb: send buffer
  1842. * @tx_ring: ring to send buffer on
  1843. * @flags: the tx flags to be set
  1844. *
  1845. * Checks the skb and set up correspondingly several generic transmit flags
  1846. * related to VLAN tagging for the HW, such as VLAN, DCB, etc.
  1847. *
  1848. * Returns error code indicate the frame should be dropped upon error and the
  1849. * otherwise returns 0 to indicate the flags has been set properly.
  1850. **/
  1851. #ifdef I40E_FCOE
  1852. inline int i40e_tx_prepare_vlan_flags(struct sk_buff *skb,
  1853. struct i40e_ring *tx_ring,
  1854. u32 *flags)
  1855. #else
  1856. static inline int i40e_tx_prepare_vlan_flags(struct sk_buff *skb,
  1857. struct i40e_ring *tx_ring,
  1858. u32 *flags)
  1859. #endif
  1860. {
  1861. __be16 protocol = skb->protocol;
  1862. u32 tx_flags = 0;
  1863. if (protocol == htons(ETH_P_8021Q) &&
  1864. !(tx_ring->netdev->features & NETIF_F_HW_VLAN_CTAG_TX)) {
  1865. /* When HW VLAN acceleration is turned off by the user the
  1866. * stack sets the protocol to 8021q so that the driver
  1867. * can take any steps required to support the SW only
  1868. * VLAN handling. In our case the driver doesn't need
  1869. * to take any further steps so just set the protocol
  1870. * to the encapsulated ethertype.
  1871. */
  1872. skb->protocol = vlan_get_protocol(skb);
  1873. goto out;
  1874. }
  1875. /* if we have a HW VLAN tag being added, default to the HW one */
  1876. if (skb_vlan_tag_present(skb)) {
  1877. tx_flags |= skb_vlan_tag_get(skb) << I40E_TX_FLAGS_VLAN_SHIFT;
  1878. tx_flags |= I40E_TX_FLAGS_HW_VLAN;
  1879. /* else if it is a SW VLAN, check the next protocol and store the tag */
  1880. } else if (protocol == htons(ETH_P_8021Q)) {
  1881. struct vlan_hdr *vhdr, _vhdr;
  1882. vhdr = skb_header_pointer(skb, ETH_HLEN, sizeof(_vhdr), &_vhdr);
  1883. if (!vhdr)
  1884. return -EINVAL;
  1885. protocol = vhdr->h_vlan_encapsulated_proto;
  1886. tx_flags |= ntohs(vhdr->h_vlan_TCI) << I40E_TX_FLAGS_VLAN_SHIFT;
  1887. tx_flags |= I40E_TX_FLAGS_SW_VLAN;
  1888. }
  1889. if (!(tx_ring->vsi->back->flags & I40E_FLAG_DCB_ENABLED))
  1890. goto out;
  1891. /* Insert 802.1p priority into VLAN header */
  1892. if ((tx_flags & (I40E_TX_FLAGS_HW_VLAN | I40E_TX_FLAGS_SW_VLAN)) ||
  1893. (skb->priority != TC_PRIO_CONTROL)) {
  1894. tx_flags &= ~I40E_TX_FLAGS_VLAN_PRIO_MASK;
  1895. tx_flags |= (skb->priority & 0x7) <<
  1896. I40E_TX_FLAGS_VLAN_PRIO_SHIFT;
  1897. if (tx_flags & I40E_TX_FLAGS_SW_VLAN) {
  1898. struct vlan_ethhdr *vhdr;
  1899. int rc;
  1900. rc = skb_cow_head(skb, 0);
  1901. if (rc < 0)
  1902. return rc;
  1903. vhdr = (struct vlan_ethhdr *)skb->data;
  1904. vhdr->h_vlan_TCI = htons(tx_flags >>
  1905. I40E_TX_FLAGS_VLAN_SHIFT);
  1906. } else {
  1907. tx_flags |= I40E_TX_FLAGS_HW_VLAN;
  1908. }
  1909. }
  1910. out:
  1911. *flags = tx_flags;
  1912. return 0;
  1913. }
  1914. /**
  1915. * i40e_tso - set up the tso context descriptor
  1916. * @skb: ptr to the skb we're sending
  1917. * @hdr_len: ptr to the size of the packet header
  1918. * @cd_type_cmd_tso_mss: Quad Word 1
  1919. *
  1920. * Returns 0 if no TSO can happen, 1 if tso is going, or error
  1921. **/
  1922. static int i40e_tso(struct sk_buff *skb, u8 *hdr_len, u64 *cd_type_cmd_tso_mss)
  1923. {
  1924. u64 cd_cmd, cd_tso_len, cd_mss;
  1925. union {
  1926. struct iphdr *v4;
  1927. struct ipv6hdr *v6;
  1928. unsigned char *hdr;
  1929. } ip;
  1930. union {
  1931. struct tcphdr *tcp;
  1932. struct udphdr *udp;
  1933. unsigned char *hdr;
  1934. } l4;
  1935. u32 paylen, l4_offset;
  1936. int err;
  1937. if (skb->ip_summed != CHECKSUM_PARTIAL)
  1938. return 0;
  1939. if (!skb_is_gso(skb))
  1940. return 0;
  1941. err = skb_cow_head(skb, 0);
  1942. if (err < 0)
  1943. return err;
  1944. ip.hdr = skb_network_header(skb);
  1945. l4.hdr = skb_transport_header(skb);
  1946. /* initialize outer IP header fields */
  1947. if (ip.v4->version == 4) {
  1948. ip.v4->tot_len = 0;
  1949. ip.v4->check = 0;
  1950. } else {
  1951. ip.v6->payload_len = 0;
  1952. }
  1953. if (skb_shinfo(skb)->gso_type & (SKB_GSO_GRE |
  1954. SKB_GSO_GRE_CSUM |
  1955. SKB_GSO_IPXIP4 |
  1956. SKB_GSO_IPXIP6 |
  1957. SKB_GSO_UDP_TUNNEL |
  1958. SKB_GSO_UDP_TUNNEL_CSUM)) {
  1959. if (!(skb_shinfo(skb)->gso_type & SKB_GSO_PARTIAL) &&
  1960. (skb_shinfo(skb)->gso_type & SKB_GSO_UDP_TUNNEL_CSUM)) {
  1961. l4.udp->len = 0;
  1962. /* determine offset of outer transport header */
  1963. l4_offset = l4.hdr - skb->data;
  1964. /* remove payload length from outer checksum */
  1965. paylen = skb->len - l4_offset;
  1966. csum_replace_by_diff(&l4.udp->check, htonl(paylen));
  1967. }
  1968. /* reset pointers to inner headers */
  1969. ip.hdr = skb_inner_network_header(skb);
  1970. l4.hdr = skb_inner_transport_header(skb);
  1971. /* initialize inner IP header fields */
  1972. if (ip.v4->version == 4) {
  1973. ip.v4->tot_len = 0;
  1974. ip.v4->check = 0;
  1975. } else {
  1976. ip.v6->payload_len = 0;
  1977. }
  1978. }
  1979. /* determine offset of inner transport header */
  1980. l4_offset = l4.hdr - skb->data;
  1981. /* remove payload length from inner checksum */
  1982. paylen = skb->len - l4_offset;
  1983. csum_replace_by_diff(&l4.tcp->check, htonl(paylen));
  1984. /* compute length of segmentation header */
  1985. *hdr_len = (l4.tcp->doff * 4) + l4_offset;
  1986. /* find the field values */
  1987. cd_cmd = I40E_TX_CTX_DESC_TSO;
  1988. cd_tso_len = skb->len - *hdr_len;
  1989. cd_mss = skb_shinfo(skb)->gso_size;
  1990. *cd_type_cmd_tso_mss |= (cd_cmd << I40E_TXD_CTX_QW1_CMD_SHIFT) |
  1991. (cd_tso_len << I40E_TXD_CTX_QW1_TSO_LEN_SHIFT) |
  1992. (cd_mss << I40E_TXD_CTX_QW1_MSS_SHIFT);
  1993. return 1;
  1994. }
  1995. /**
  1996. * i40e_tsyn - set up the tsyn context descriptor
  1997. * @tx_ring: ptr to the ring to send
  1998. * @skb: ptr to the skb we're sending
  1999. * @tx_flags: the collected send information
  2000. * @cd_type_cmd_tso_mss: Quad Word 1
  2001. *
  2002. * Returns 0 if no Tx timestamp can happen and 1 if the timestamp will happen
  2003. **/
  2004. static int i40e_tsyn(struct i40e_ring *tx_ring, struct sk_buff *skb,
  2005. u32 tx_flags, u64 *cd_type_cmd_tso_mss)
  2006. {
  2007. struct i40e_pf *pf;
  2008. if (likely(!(skb_shinfo(skb)->tx_flags & SKBTX_HW_TSTAMP)))
  2009. return 0;
  2010. /* Tx timestamps cannot be sampled when doing TSO */
  2011. if (tx_flags & I40E_TX_FLAGS_TSO)
  2012. return 0;
  2013. /* only timestamp the outbound packet if the user has requested it and
  2014. * we are not already transmitting a packet to be timestamped
  2015. */
  2016. pf = i40e_netdev_to_pf(tx_ring->netdev);
  2017. if (!(pf->flags & I40E_FLAG_PTP))
  2018. return 0;
  2019. if (pf->ptp_tx &&
  2020. !test_and_set_bit_lock(__I40E_PTP_TX_IN_PROGRESS, &pf->state)) {
  2021. skb_shinfo(skb)->tx_flags |= SKBTX_IN_PROGRESS;
  2022. pf->ptp_tx_skb = skb_get(skb);
  2023. } else {
  2024. return 0;
  2025. }
  2026. *cd_type_cmd_tso_mss |= (u64)I40E_TX_CTX_DESC_TSYN <<
  2027. I40E_TXD_CTX_QW1_CMD_SHIFT;
  2028. return 1;
  2029. }
  2030. /**
  2031. * i40e_tx_enable_csum - Enable Tx checksum offloads
  2032. * @skb: send buffer
  2033. * @tx_flags: pointer to Tx flags currently set
  2034. * @td_cmd: Tx descriptor command bits to set
  2035. * @td_offset: Tx descriptor header offsets to set
  2036. * @tx_ring: Tx descriptor ring
  2037. * @cd_tunneling: ptr to context desc bits
  2038. **/
  2039. static int i40e_tx_enable_csum(struct sk_buff *skb, u32 *tx_flags,
  2040. u32 *td_cmd, u32 *td_offset,
  2041. struct i40e_ring *tx_ring,
  2042. u32 *cd_tunneling)
  2043. {
  2044. union {
  2045. struct iphdr *v4;
  2046. struct ipv6hdr *v6;
  2047. unsigned char *hdr;
  2048. } ip;
  2049. union {
  2050. struct tcphdr *tcp;
  2051. struct udphdr *udp;
  2052. unsigned char *hdr;
  2053. } l4;
  2054. unsigned char *exthdr;
  2055. u32 offset, cmd = 0;
  2056. __be16 frag_off;
  2057. u8 l4_proto = 0;
  2058. if (skb->ip_summed != CHECKSUM_PARTIAL)
  2059. return 0;
  2060. ip.hdr = skb_network_header(skb);
  2061. l4.hdr = skb_transport_header(skb);
  2062. /* compute outer L2 header size */
  2063. offset = ((ip.hdr - skb->data) / 2) << I40E_TX_DESC_LENGTH_MACLEN_SHIFT;
  2064. if (skb->encapsulation) {
  2065. u32 tunnel = 0;
  2066. /* define outer network header type */
  2067. if (*tx_flags & I40E_TX_FLAGS_IPV4) {
  2068. tunnel |= (*tx_flags & I40E_TX_FLAGS_TSO) ?
  2069. I40E_TX_CTX_EXT_IP_IPV4 :
  2070. I40E_TX_CTX_EXT_IP_IPV4_NO_CSUM;
  2071. l4_proto = ip.v4->protocol;
  2072. } else if (*tx_flags & I40E_TX_FLAGS_IPV6) {
  2073. tunnel |= I40E_TX_CTX_EXT_IP_IPV6;
  2074. exthdr = ip.hdr + sizeof(*ip.v6);
  2075. l4_proto = ip.v6->nexthdr;
  2076. if (l4.hdr != exthdr)
  2077. ipv6_skip_exthdr(skb, exthdr - skb->data,
  2078. &l4_proto, &frag_off);
  2079. }
  2080. /* define outer transport */
  2081. switch (l4_proto) {
  2082. case IPPROTO_UDP:
  2083. tunnel |= I40E_TXD_CTX_UDP_TUNNELING;
  2084. *tx_flags |= I40E_TX_FLAGS_UDP_TUNNEL;
  2085. break;
  2086. case IPPROTO_GRE:
  2087. tunnel |= I40E_TXD_CTX_GRE_TUNNELING;
  2088. *tx_flags |= I40E_TX_FLAGS_UDP_TUNNEL;
  2089. break;
  2090. case IPPROTO_IPIP:
  2091. case IPPROTO_IPV6:
  2092. *tx_flags |= I40E_TX_FLAGS_UDP_TUNNEL;
  2093. l4.hdr = skb_inner_network_header(skb);
  2094. break;
  2095. default:
  2096. if (*tx_flags & I40E_TX_FLAGS_TSO)
  2097. return -1;
  2098. skb_checksum_help(skb);
  2099. return 0;
  2100. }
  2101. /* compute outer L3 header size */
  2102. tunnel |= ((l4.hdr - ip.hdr) / 4) <<
  2103. I40E_TXD_CTX_QW0_EXT_IPLEN_SHIFT;
  2104. /* switch IP header pointer from outer to inner header */
  2105. ip.hdr = skb_inner_network_header(skb);
  2106. /* compute tunnel header size */
  2107. tunnel |= ((ip.hdr - l4.hdr) / 2) <<
  2108. I40E_TXD_CTX_QW0_NATLEN_SHIFT;
  2109. /* indicate if we need to offload outer UDP header */
  2110. if ((*tx_flags & I40E_TX_FLAGS_TSO) &&
  2111. !(skb_shinfo(skb)->gso_type & SKB_GSO_PARTIAL) &&
  2112. (skb_shinfo(skb)->gso_type & SKB_GSO_UDP_TUNNEL_CSUM))
  2113. tunnel |= I40E_TXD_CTX_QW0_L4T_CS_MASK;
  2114. /* record tunnel offload values */
  2115. *cd_tunneling |= tunnel;
  2116. /* switch L4 header pointer from outer to inner */
  2117. l4.hdr = skb_inner_transport_header(skb);
  2118. l4_proto = 0;
  2119. /* reset type as we transition from outer to inner headers */
  2120. *tx_flags &= ~(I40E_TX_FLAGS_IPV4 | I40E_TX_FLAGS_IPV6);
  2121. if (ip.v4->version == 4)
  2122. *tx_flags |= I40E_TX_FLAGS_IPV4;
  2123. if (ip.v6->version == 6)
  2124. *tx_flags |= I40E_TX_FLAGS_IPV6;
  2125. }
  2126. /* Enable IP checksum offloads */
  2127. if (*tx_flags & I40E_TX_FLAGS_IPV4) {
  2128. l4_proto = ip.v4->protocol;
  2129. /* the stack computes the IP header already, the only time we
  2130. * need the hardware to recompute it is in the case of TSO.
  2131. */
  2132. cmd |= (*tx_flags & I40E_TX_FLAGS_TSO) ?
  2133. I40E_TX_DESC_CMD_IIPT_IPV4_CSUM :
  2134. I40E_TX_DESC_CMD_IIPT_IPV4;
  2135. } else if (*tx_flags & I40E_TX_FLAGS_IPV6) {
  2136. cmd |= I40E_TX_DESC_CMD_IIPT_IPV6;
  2137. exthdr = ip.hdr + sizeof(*ip.v6);
  2138. l4_proto = ip.v6->nexthdr;
  2139. if (l4.hdr != exthdr)
  2140. ipv6_skip_exthdr(skb, exthdr - skb->data,
  2141. &l4_proto, &frag_off);
  2142. }
  2143. /* compute inner L3 header size */
  2144. offset |= ((l4.hdr - ip.hdr) / 4) << I40E_TX_DESC_LENGTH_IPLEN_SHIFT;
  2145. /* Enable L4 checksum offloads */
  2146. switch (l4_proto) {
  2147. case IPPROTO_TCP:
  2148. /* enable checksum offloads */
  2149. cmd |= I40E_TX_DESC_CMD_L4T_EOFT_TCP;
  2150. offset |= l4.tcp->doff << I40E_TX_DESC_LENGTH_L4_FC_LEN_SHIFT;
  2151. break;
  2152. case IPPROTO_SCTP:
  2153. /* enable SCTP checksum offload */
  2154. cmd |= I40E_TX_DESC_CMD_L4T_EOFT_SCTP;
  2155. offset |= (sizeof(struct sctphdr) >> 2) <<
  2156. I40E_TX_DESC_LENGTH_L4_FC_LEN_SHIFT;
  2157. break;
  2158. case IPPROTO_UDP:
  2159. /* enable UDP checksum offload */
  2160. cmd |= I40E_TX_DESC_CMD_L4T_EOFT_UDP;
  2161. offset |= (sizeof(struct udphdr) >> 2) <<
  2162. I40E_TX_DESC_LENGTH_L4_FC_LEN_SHIFT;
  2163. break;
  2164. default:
  2165. if (*tx_flags & I40E_TX_FLAGS_TSO)
  2166. return -1;
  2167. skb_checksum_help(skb);
  2168. return 0;
  2169. }
  2170. *td_cmd |= cmd;
  2171. *td_offset |= offset;
  2172. return 1;
  2173. }
  2174. /**
  2175. * i40e_create_tx_ctx Build the Tx context descriptor
  2176. * @tx_ring: ring to create the descriptor on
  2177. * @cd_type_cmd_tso_mss: Quad Word 1
  2178. * @cd_tunneling: Quad Word 0 - bits 0-31
  2179. * @cd_l2tag2: Quad Word 0 - bits 32-63
  2180. **/
  2181. static void i40e_create_tx_ctx(struct i40e_ring *tx_ring,
  2182. const u64 cd_type_cmd_tso_mss,
  2183. const u32 cd_tunneling, const u32 cd_l2tag2)
  2184. {
  2185. struct i40e_tx_context_desc *context_desc;
  2186. int i = tx_ring->next_to_use;
  2187. if ((cd_type_cmd_tso_mss == I40E_TX_DESC_DTYPE_CONTEXT) &&
  2188. !cd_tunneling && !cd_l2tag2)
  2189. return;
  2190. /* grab the next descriptor */
  2191. context_desc = I40E_TX_CTXTDESC(tx_ring, i);
  2192. i++;
  2193. tx_ring->next_to_use = (i < tx_ring->count) ? i : 0;
  2194. /* cpu_to_le32 and assign to struct fields */
  2195. context_desc->tunneling_params = cpu_to_le32(cd_tunneling);
  2196. context_desc->l2tag2 = cpu_to_le16(cd_l2tag2);
  2197. context_desc->rsvd = cpu_to_le16(0);
  2198. context_desc->type_cmd_tso_mss = cpu_to_le64(cd_type_cmd_tso_mss);
  2199. }
  2200. /**
  2201. * __i40e_maybe_stop_tx - 2nd level check for tx stop conditions
  2202. * @tx_ring: the ring to be checked
  2203. * @size: the size buffer we want to assure is available
  2204. *
  2205. * Returns -EBUSY if a stop is needed, else 0
  2206. **/
  2207. int __i40e_maybe_stop_tx(struct i40e_ring *tx_ring, int size)
  2208. {
  2209. netif_stop_subqueue(tx_ring->netdev, tx_ring->queue_index);
  2210. /* Memory barrier before checking head and tail */
  2211. smp_mb();
  2212. /* Check again in a case another CPU has just made room available. */
  2213. if (likely(I40E_DESC_UNUSED(tx_ring) < size))
  2214. return -EBUSY;
  2215. /* A reprieve! - use start_queue because it doesn't call schedule */
  2216. netif_start_subqueue(tx_ring->netdev, tx_ring->queue_index);
  2217. ++tx_ring->tx_stats.restart_queue;
  2218. return 0;
  2219. }
  2220. /**
  2221. * __i40e_chk_linearize - Check if there are more than 8 buffers per packet
  2222. * @skb: send buffer
  2223. *
  2224. * Note: Our HW can't DMA more than 8 buffers to build a packet on the wire
  2225. * and so we need to figure out the cases where we need to linearize the skb.
  2226. *
  2227. * For TSO we need to count the TSO header and segment payload separately.
  2228. * As such we need to check cases where we have 7 fragments or more as we
  2229. * can potentially require 9 DMA transactions, 1 for the TSO header, 1 for
  2230. * the segment payload in the first descriptor, and another 7 for the
  2231. * fragments.
  2232. **/
  2233. bool __i40e_chk_linearize(struct sk_buff *skb)
  2234. {
  2235. const struct skb_frag_struct *frag, *stale;
  2236. int nr_frags, sum;
  2237. /* no need to check if number of frags is less than 7 */
  2238. nr_frags = skb_shinfo(skb)->nr_frags;
  2239. if (nr_frags < (I40E_MAX_BUFFER_TXD - 1))
  2240. return false;
  2241. /* We need to walk through the list and validate that each group
  2242. * of 6 fragments totals at least gso_size. However we don't need
  2243. * to perform such validation on the last 6 since the last 6 cannot
  2244. * inherit any data from a descriptor after them.
  2245. */
  2246. nr_frags -= I40E_MAX_BUFFER_TXD - 2;
  2247. frag = &skb_shinfo(skb)->frags[0];
  2248. /* Initialize size to the negative value of gso_size minus 1. We
  2249. * use this as the worst case scenerio in which the frag ahead
  2250. * of us only provides one byte which is why we are limited to 6
  2251. * descriptors for a single transmit as the header and previous
  2252. * fragment are already consuming 2 descriptors.
  2253. */
  2254. sum = 1 - skb_shinfo(skb)->gso_size;
  2255. /* Add size of frags 0 through 4 to create our initial sum */
  2256. sum += skb_frag_size(frag++);
  2257. sum += skb_frag_size(frag++);
  2258. sum += skb_frag_size(frag++);
  2259. sum += skb_frag_size(frag++);
  2260. sum += skb_frag_size(frag++);
  2261. /* Walk through fragments adding latest fragment, testing it, and
  2262. * then removing stale fragments from the sum.
  2263. */
  2264. stale = &skb_shinfo(skb)->frags[0];
  2265. for (;;) {
  2266. sum += skb_frag_size(frag++);
  2267. /* if sum is negative we failed to make sufficient progress */
  2268. if (sum < 0)
  2269. return true;
  2270. /* use pre-decrement to avoid processing last fragment */
  2271. if (!--nr_frags)
  2272. break;
  2273. sum -= skb_frag_size(stale++);
  2274. }
  2275. return false;
  2276. }
  2277. /**
  2278. * i40e_tx_map - Build the Tx descriptor
  2279. * @tx_ring: ring to send buffer on
  2280. * @skb: send buffer
  2281. * @first: first buffer info buffer to use
  2282. * @tx_flags: collected send information
  2283. * @hdr_len: size of the packet header
  2284. * @td_cmd: the command field in the descriptor
  2285. * @td_offset: offset for checksum or crc
  2286. **/
  2287. #ifdef I40E_FCOE
  2288. inline void i40e_tx_map(struct i40e_ring *tx_ring, struct sk_buff *skb,
  2289. struct i40e_tx_buffer *first, u32 tx_flags,
  2290. const u8 hdr_len, u32 td_cmd, u32 td_offset)
  2291. #else
  2292. static inline void i40e_tx_map(struct i40e_ring *tx_ring, struct sk_buff *skb,
  2293. struct i40e_tx_buffer *first, u32 tx_flags,
  2294. const u8 hdr_len, u32 td_cmd, u32 td_offset)
  2295. #endif
  2296. {
  2297. unsigned int data_len = skb->data_len;
  2298. unsigned int size = skb_headlen(skb);
  2299. struct skb_frag_struct *frag;
  2300. struct i40e_tx_buffer *tx_bi;
  2301. struct i40e_tx_desc *tx_desc;
  2302. u16 i = tx_ring->next_to_use;
  2303. u32 td_tag = 0;
  2304. dma_addr_t dma;
  2305. u16 gso_segs;
  2306. u16 desc_count = 0;
  2307. bool tail_bump = true;
  2308. bool do_rs = false;
  2309. if (tx_flags & I40E_TX_FLAGS_HW_VLAN) {
  2310. td_cmd |= I40E_TX_DESC_CMD_IL2TAG1;
  2311. td_tag = (tx_flags & I40E_TX_FLAGS_VLAN_MASK) >>
  2312. I40E_TX_FLAGS_VLAN_SHIFT;
  2313. }
  2314. if (tx_flags & (I40E_TX_FLAGS_TSO | I40E_TX_FLAGS_FSO))
  2315. gso_segs = skb_shinfo(skb)->gso_segs;
  2316. else
  2317. gso_segs = 1;
  2318. /* multiply data chunks by size of headers */
  2319. first->bytecount = skb->len - hdr_len + (gso_segs * hdr_len);
  2320. first->gso_segs = gso_segs;
  2321. first->skb = skb;
  2322. first->tx_flags = tx_flags;
  2323. dma = dma_map_single(tx_ring->dev, skb->data, size, DMA_TO_DEVICE);
  2324. tx_desc = I40E_TX_DESC(tx_ring, i);
  2325. tx_bi = first;
  2326. for (frag = &skb_shinfo(skb)->frags[0];; frag++) {
  2327. unsigned int max_data = I40E_MAX_DATA_PER_TXD_ALIGNED;
  2328. if (dma_mapping_error(tx_ring->dev, dma))
  2329. goto dma_error;
  2330. /* record length, and DMA address */
  2331. dma_unmap_len_set(tx_bi, len, size);
  2332. dma_unmap_addr_set(tx_bi, dma, dma);
  2333. /* align size to end of page */
  2334. max_data += -dma & (I40E_MAX_READ_REQ_SIZE - 1);
  2335. tx_desc->buffer_addr = cpu_to_le64(dma);
  2336. while (unlikely(size > I40E_MAX_DATA_PER_TXD)) {
  2337. tx_desc->cmd_type_offset_bsz =
  2338. build_ctob(td_cmd, td_offset,
  2339. max_data, td_tag);
  2340. tx_desc++;
  2341. i++;
  2342. desc_count++;
  2343. if (i == tx_ring->count) {
  2344. tx_desc = I40E_TX_DESC(tx_ring, 0);
  2345. i = 0;
  2346. }
  2347. dma += max_data;
  2348. size -= max_data;
  2349. max_data = I40E_MAX_DATA_PER_TXD_ALIGNED;
  2350. tx_desc->buffer_addr = cpu_to_le64(dma);
  2351. }
  2352. if (likely(!data_len))
  2353. break;
  2354. tx_desc->cmd_type_offset_bsz = build_ctob(td_cmd, td_offset,
  2355. size, td_tag);
  2356. tx_desc++;
  2357. i++;
  2358. desc_count++;
  2359. if (i == tx_ring->count) {
  2360. tx_desc = I40E_TX_DESC(tx_ring, 0);
  2361. i = 0;
  2362. }
  2363. size = skb_frag_size(frag);
  2364. data_len -= size;
  2365. dma = skb_frag_dma_map(tx_ring->dev, frag, 0, size,
  2366. DMA_TO_DEVICE);
  2367. tx_bi = &tx_ring->tx_bi[i];
  2368. }
  2369. /* set next_to_watch value indicating a packet is present */
  2370. first->next_to_watch = tx_desc;
  2371. i++;
  2372. if (i == tx_ring->count)
  2373. i = 0;
  2374. tx_ring->next_to_use = i;
  2375. netdev_tx_sent_queue(netdev_get_tx_queue(tx_ring->netdev,
  2376. tx_ring->queue_index),
  2377. first->bytecount);
  2378. i40e_maybe_stop_tx(tx_ring, DESC_NEEDED);
  2379. /* Algorithm to optimize tail and RS bit setting:
  2380. * if xmit_more is supported
  2381. * if xmit_more is true
  2382. * do not update tail and do not mark RS bit.
  2383. * if xmit_more is false and last xmit_more was false
  2384. * if every packet spanned less than 4 desc
  2385. * then set RS bit on 4th packet and update tail
  2386. * on every packet
  2387. * else
  2388. * update tail and set RS bit on every packet.
  2389. * if xmit_more is false and last_xmit_more was true
  2390. * update tail and set RS bit.
  2391. *
  2392. * Optimization: wmb to be issued only in case of tail update.
  2393. * Also optimize the Descriptor WB path for RS bit with the same
  2394. * algorithm.
  2395. *
  2396. * Note: If there are less than 4 packets
  2397. * pending and interrupts were disabled the service task will
  2398. * trigger a force WB.
  2399. */
  2400. if (skb->xmit_more &&
  2401. !netif_xmit_stopped(netdev_get_tx_queue(tx_ring->netdev,
  2402. tx_ring->queue_index))) {
  2403. tx_ring->flags |= I40E_TXR_FLAGS_LAST_XMIT_MORE_SET;
  2404. tail_bump = false;
  2405. } else if (!skb->xmit_more &&
  2406. !netif_xmit_stopped(netdev_get_tx_queue(tx_ring->netdev,
  2407. tx_ring->queue_index)) &&
  2408. (!(tx_ring->flags & I40E_TXR_FLAGS_LAST_XMIT_MORE_SET)) &&
  2409. (tx_ring->packet_stride < WB_STRIDE) &&
  2410. (desc_count < WB_STRIDE)) {
  2411. tx_ring->packet_stride++;
  2412. } else {
  2413. tx_ring->packet_stride = 0;
  2414. tx_ring->flags &= ~I40E_TXR_FLAGS_LAST_XMIT_MORE_SET;
  2415. do_rs = true;
  2416. }
  2417. if (do_rs)
  2418. tx_ring->packet_stride = 0;
  2419. tx_desc->cmd_type_offset_bsz =
  2420. build_ctob(td_cmd, td_offset, size, td_tag) |
  2421. cpu_to_le64((u64)(do_rs ? I40E_TXD_CMD :
  2422. I40E_TX_DESC_CMD_EOP) <<
  2423. I40E_TXD_QW1_CMD_SHIFT);
  2424. /* notify HW of packet */
  2425. if (!tail_bump) {
  2426. prefetchw(tx_desc + 1);
  2427. } else {
  2428. /* Force memory writes to complete before letting h/w
  2429. * know there are new descriptors to fetch. (Only
  2430. * applicable for weak-ordered memory model archs,
  2431. * such as IA-64).
  2432. */
  2433. wmb();
  2434. writel(i, tx_ring->tail);
  2435. }
  2436. return;
  2437. dma_error:
  2438. dev_info(tx_ring->dev, "TX DMA map failed\n");
  2439. /* clear dma mappings for failed tx_bi map */
  2440. for (;;) {
  2441. tx_bi = &tx_ring->tx_bi[i];
  2442. i40e_unmap_and_free_tx_resource(tx_ring, tx_bi);
  2443. if (tx_bi == first)
  2444. break;
  2445. if (i == 0)
  2446. i = tx_ring->count;
  2447. i--;
  2448. }
  2449. tx_ring->next_to_use = i;
  2450. }
  2451. /**
  2452. * i40e_xmit_frame_ring - Sends buffer on Tx ring
  2453. * @skb: send buffer
  2454. * @tx_ring: ring to send buffer on
  2455. *
  2456. * Returns NETDEV_TX_OK if sent, else an error code
  2457. **/
  2458. static netdev_tx_t i40e_xmit_frame_ring(struct sk_buff *skb,
  2459. struct i40e_ring *tx_ring)
  2460. {
  2461. u64 cd_type_cmd_tso_mss = I40E_TX_DESC_DTYPE_CONTEXT;
  2462. u32 cd_tunneling = 0, cd_l2tag2 = 0;
  2463. struct i40e_tx_buffer *first;
  2464. u32 td_offset = 0;
  2465. u32 tx_flags = 0;
  2466. __be16 protocol;
  2467. u32 td_cmd = 0;
  2468. u8 hdr_len = 0;
  2469. int tso, count;
  2470. int tsyn;
  2471. /* prefetch the data, we'll need it later */
  2472. prefetch(skb->data);
  2473. count = i40e_xmit_descriptor_count(skb);
  2474. if (i40e_chk_linearize(skb, count)) {
  2475. if (__skb_linearize(skb))
  2476. goto out_drop;
  2477. count = i40e_txd_use_count(skb->len);
  2478. tx_ring->tx_stats.tx_linearize++;
  2479. }
  2480. /* need: 1 descriptor per page * PAGE_SIZE/I40E_MAX_DATA_PER_TXD,
  2481. * + 1 desc for skb_head_len/I40E_MAX_DATA_PER_TXD,
  2482. * + 4 desc gap to avoid the cache line where head is,
  2483. * + 1 desc for context descriptor,
  2484. * otherwise try next time
  2485. */
  2486. if (i40e_maybe_stop_tx(tx_ring, count + 4 + 1)) {
  2487. tx_ring->tx_stats.tx_busy++;
  2488. return NETDEV_TX_BUSY;
  2489. }
  2490. /* prepare the xmit flags */
  2491. if (i40e_tx_prepare_vlan_flags(skb, tx_ring, &tx_flags))
  2492. goto out_drop;
  2493. /* obtain protocol of skb */
  2494. protocol = vlan_get_protocol(skb);
  2495. /* record the location of the first descriptor for this packet */
  2496. first = &tx_ring->tx_bi[tx_ring->next_to_use];
  2497. /* setup IPv4/IPv6 offloads */
  2498. if (protocol == htons(ETH_P_IP))
  2499. tx_flags |= I40E_TX_FLAGS_IPV4;
  2500. else if (protocol == htons(ETH_P_IPV6))
  2501. tx_flags |= I40E_TX_FLAGS_IPV6;
  2502. tso = i40e_tso(skb, &hdr_len, &cd_type_cmd_tso_mss);
  2503. if (tso < 0)
  2504. goto out_drop;
  2505. else if (tso)
  2506. tx_flags |= I40E_TX_FLAGS_TSO;
  2507. /* Always offload the checksum, since it's in the data descriptor */
  2508. tso = i40e_tx_enable_csum(skb, &tx_flags, &td_cmd, &td_offset,
  2509. tx_ring, &cd_tunneling);
  2510. if (tso < 0)
  2511. goto out_drop;
  2512. tsyn = i40e_tsyn(tx_ring, skb, tx_flags, &cd_type_cmd_tso_mss);
  2513. if (tsyn)
  2514. tx_flags |= I40E_TX_FLAGS_TSYN;
  2515. skb_tx_timestamp(skb);
  2516. /* always enable CRC insertion offload */
  2517. td_cmd |= I40E_TX_DESC_CMD_ICRC;
  2518. i40e_create_tx_ctx(tx_ring, cd_type_cmd_tso_mss,
  2519. cd_tunneling, cd_l2tag2);
  2520. /* Add Flow Director ATR if it's enabled.
  2521. *
  2522. * NOTE: this must always be directly before the data descriptor.
  2523. */
  2524. i40e_atr(tx_ring, skb, tx_flags);
  2525. i40e_tx_map(tx_ring, skb, first, tx_flags, hdr_len,
  2526. td_cmd, td_offset);
  2527. return NETDEV_TX_OK;
  2528. out_drop:
  2529. dev_kfree_skb_any(skb);
  2530. return NETDEV_TX_OK;
  2531. }
  2532. /**
  2533. * i40e_lan_xmit_frame - Selects the correct VSI and Tx queue to send buffer
  2534. * @skb: send buffer
  2535. * @netdev: network interface device structure
  2536. *
  2537. * Returns NETDEV_TX_OK if sent, else an error code
  2538. **/
  2539. netdev_tx_t i40e_lan_xmit_frame(struct sk_buff *skb, struct net_device *netdev)
  2540. {
  2541. struct i40e_netdev_priv *np = netdev_priv(netdev);
  2542. struct i40e_vsi *vsi = np->vsi;
  2543. struct i40e_ring *tx_ring = vsi->tx_rings[skb->queue_mapping];
  2544. /* hardware can't handle really short frames, hardware padding works
  2545. * beyond this point
  2546. */
  2547. if (skb_put_padto(skb, I40E_MIN_TX_LEN))
  2548. return NETDEV_TX_OK;
  2549. return i40e_xmit_frame_ring(skb, tx_ring);
  2550. }