i40evf_main.c 76 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757275827592760276127622763276427652766276727682769277027712772277327742775277627772778277927802781278227832784278527862787278827892790279127922793279427952796279727982799280028012802280328042805280628072808280928102811281228132814281528162817281828192820282128222823282428252826282728282829283028312832283328342835283628372838283928402841284228432844284528462847284828492850285128522853285428552856285728582859286028612862286328642865286628672868286928702871287228732874
  1. /*******************************************************************************
  2. *
  3. * Intel Ethernet Controller XL710 Family Linux Virtual Function 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 "i40evf.h"
  27. #include "i40e_prototype.h"
  28. static int i40evf_setup_all_tx_resources(struct i40evf_adapter *adapter);
  29. static int i40evf_setup_all_rx_resources(struct i40evf_adapter *adapter);
  30. static int i40evf_close(struct net_device *netdev);
  31. char i40evf_driver_name[] = "i40evf";
  32. static const char i40evf_driver_string[] =
  33. "Intel(R) 40-10 Gigabit Virtual Function Network Driver";
  34. #define DRV_KERN "-k"
  35. #define DRV_VERSION_MAJOR 1
  36. #define DRV_VERSION_MINOR 5
  37. #define DRV_VERSION_BUILD 10
  38. #define DRV_VERSION __stringify(DRV_VERSION_MAJOR) "." \
  39. __stringify(DRV_VERSION_MINOR) "." \
  40. __stringify(DRV_VERSION_BUILD) \
  41. DRV_KERN
  42. const char i40evf_driver_version[] = DRV_VERSION;
  43. static const char i40evf_copyright[] =
  44. "Copyright (c) 2013 - 2015 Intel Corporation.";
  45. /* i40evf_pci_tbl - PCI Device ID Table
  46. *
  47. * Wildcard entries (PCI_ANY_ID) should come last
  48. * Last entry must be all 0s
  49. *
  50. * { Vendor ID, Device ID, SubVendor ID, SubDevice ID,
  51. * Class, Class Mask, private data (not used) }
  52. */
  53. static const struct pci_device_id i40evf_pci_tbl[] = {
  54. {PCI_VDEVICE(INTEL, I40E_DEV_ID_VF), 0},
  55. {PCI_VDEVICE(INTEL, I40E_DEV_ID_X722_VF), 0},
  56. /* required last entry */
  57. {0, }
  58. };
  59. MODULE_DEVICE_TABLE(pci, i40evf_pci_tbl);
  60. MODULE_AUTHOR("Intel Corporation, <linux.nics@intel.com>");
  61. MODULE_DESCRIPTION("Intel(R) XL710 X710 Virtual Function Network Driver");
  62. MODULE_LICENSE("GPL");
  63. MODULE_VERSION(DRV_VERSION);
  64. static struct workqueue_struct *i40evf_wq;
  65. /**
  66. * i40evf_allocate_dma_mem_d - OS specific memory alloc for shared code
  67. * @hw: pointer to the HW structure
  68. * @mem: ptr to mem struct to fill out
  69. * @size: size of memory requested
  70. * @alignment: what to align the allocation to
  71. **/
  72. i40e_status i40evf_allocate_dma_mem_d(struct i40e_hw *hw,
  73. struct i40e_dma_mem *mem,
  74. u64 size, u32 alignment)
  75. {
  76. struct i40evf_adapter *adapter = (struct i40evf_adapter *)hw->back;
  77. if (!mem)
  78. return I40E_ERR_PARAM;
  79. mem->size = ALIGN(size, alignment);
  80. mem->va = dma_alloc_coherent(&adapter->pdev->dev, mem->size,
  81. (dma_addr_t *)&mem->pa, GFP_KERNEL);
  82. if (mem->va)
  83. return 0;
  84. else
  85. return I40E_ERR_NO_MEMORY;
  86. }
  87. /**
  88. * i40evf_free_dma_mem_d - OS specific memory free for shared code
  89. * @hw: pointer to the HW structure
  90. * @mem: ptr to mem struct to free
  91. **/
  92. i40e_status i40evf_free_dma_mem_d(struct i40e_hw *hw, struct i40e_dma_mem *mem)
  93. {
  94. struct i40evf_adapter *adapter = (struct i40evf_adapter *)hw->back;
  95. if (!mem || !mem->va)
  96. return I40E_ERR_PARAM;
  97. dma_free_coherent(&adapter->pdev->dev, mem->size,
  98. mem->va, (dma_addr_t)mem->pa);
  99. return 0;
  100. }
  101. /**
  102. * i40evf_allocate_virt_mem_d - OS specific memory alloc for shared code
  103. * @hw: pointer to the HW structure
  104. * @mem: ptr to mem struct to fill out
  105. * @size: size of memory requested
  106. **/
  107. i40e_status i40evf_allocate_virt_mem_d(struct i40e_hw *hw,
  108. struct i40e_virt_mem *mem, u32 size)
  109. {
  110. if (!mem)
  111. return I40E_ERR_PARAM;
  112. mem->size = size;
  113. mem->va = kzalloc(size, GFP_KERNEL);
  114. if (mem->va)
  115. return 0;
  116. else
  117. return I40E_ERR_NO_MEMORY;
  118. }
  119. /**
  120. * i40evf_free_virt_mem_d - OS specific memory free for shared code
  121. * @hw: pointer to the HW structure
  122. * @mem: ptr to mem struct to free
  123. **/
  124. i40e_status i40evf_free_virt_mem_d(struct i40e_hw *hw,
  125. struct i40e_virt_mem *mem)
  126. {
  127. if (!mem)
  128. return I40E_ERR_PARAM;
  129. /* it's ok to kfree a NULL pointer */
  130. kfree(mem->va);
  131. return 0;
  132. }
  133. /**
  134. * i40evf_debug_d - OS dependent version of debug printing
  135. * @hw: pointer to the HW structure
  136. * @mask: debug level mask
  137. * @fmt_str: printf-type format description
  138. **/
  139. void i40evf_debug_d(void *hw, u32 mask, char *fmt_str, ...)
  140. {
  141. char buf[512];
  142. va_list argptr;
  143. if (!(mask & ((struct i40e_hw *)hw)->debug_mask))
  144. return;
  145. va_start(argptr, fmt_str);
  146. vsnprintf(buf, sizeof(buf), fmt_str, argptr);
  147. va_end(argptr);
  148. /* the debug string is already formatted with a newline */
  149. pr_info("%s", buf);
  150. }
  151. /**
  152. * i40evf_schedule_reset - Set the flags and schedule a reset event
  153. * @adapter: board private structure
  154. **/
  155. void i40evf_schedule_reset(struct i40evf_adapter *adapter)
  156. {
  157. if (!(adapter->flags &
  158. (I40EVF_FLAG_RESET_PENDING | I40EVF_FLAG_RESET_NEEDED))) {
  159. adapter->flags |= I40EVF_FLAG_RESET_NEEDED;
  160. schedule_work(&adapter->reset_task);
  161. }
  162. }
  163. /**
  164. * i40evf_tx_timeout - Respond to a Tx Hang
  165. * @netdev: network interface device structure
  166. **/
  167. static void i40evf_tx_timeout(struct net_device *netdev)
  168. {
  169. struct i40evf_adapter *adapter = netdev_priv(netdev);
  170. adapter->tx_timeout_count++;
  171. i40evf_schedule_reset(adapter);
  172. }
  173. /**
  174. * i40evf_misc_irq_disable - Mask off interrupt generation on the NIC
  175. * @adapter: board private structure
  176. **/
  177. static void i40evf_misc_irq_disable(struct i40evf_adapter *adapter)
  178. {
  179. struct i40e_hw *hw = &adapter->hw;
  180. wr32(hw, I40E_VFINT_DYN_CTL01, 0);
  181. /* read flush */
  182. rd32(hw, I40E_VFGEN_RSTAT);
  183. synchronize_irq(adapter->msix_entries[0].vector);
  184. }
  185. /**
  186. * i40evf_misc_irq_enable - Enable default interrupt generation settings
  187. * @adapter: board private structure
  188. **/
  189. static void i40evf_misc_irq_enable(struct i40evf_adapter *adapter)
  190. {
  191. struct i40e_hw *hw = &adapter->hw;
  192. wr32(hw, I40E_VFINT_DYN_CTL01, I40E_VFINT_DYN_CTL01_INTENA_MASK |
  193. I40E_VFINT_DYN_CTL01_ITR_INDX_MASK);
  194. wr32(hw, I40E_VFINT_ICR0_ENA1, I40E_VFINT_ICR0_ENA1_ADMINQ_MASK);
  195. /* read flush */
  196. rd32(hw, I40E_VFGEN_RSTAT);
  197. }
  198. /**
  199. * i40evf_irq_disable - Mask off interrupt generation on the NIC
  200. * @adapter: board private structure
  201. **/
  202. static void i40evf_irq_disable(struct i40evf_adapter *adapter)
  203. {
  204. int i;
  205. struct i40e_hw *hw = &adapter->hw;
  206. if (!adapter->msix_entries)
  207. return;
  208. for (i = 1; i < adapter->num_msix_vectors; i++) {
  209. wr32(hw, I40E_VFINT_DYN_CTLN1(i - 1), 0);
  210. synchronize_irq(adapter->msix_entries[i].vector);
  211. }
  212. /* read flush */
  213. rd32(hw, I40E_VFGEN_RSTAT);
  214. }
  215. /**
  216. * i40evf_irq_enable_queues - Enable interrupt for specified queues
  217. * @adapter: board private structure
  218. * @mask: bitmap of queues to enable
  219. **/
  220. void i40evf_irq_enable_queues(struct i40evf_adapter *adapter, u32 mask)
  221. {
  222. struct i40e_hw *hw = &adapter->hw;
  223. int i;
  224. for (i = 1; i < adapter->num_msix_vectors; i++) {
  225. if (mask & BIT(i - 1)) {
  226. wr32(hw, I40E_VFINT_DYN_CTLN1(i - 1),
  227. I40E_VFINT_DYN_CTLN1_INTENA_MASK |
  228. I40E_VFINT_DYN_CTLN1_ITR_INDX_MASK |
  229. I40E_VFINT_DYN_CTLN1_CLEARPBA_MASK);
  230. }
  231. }
  232. }
  233. /**
  234. * i40evf_fire_sw_int - Generate SW interrupt for specified vectors
  235. * @adapter: board private structure
  236. * @mask: bitmap of vectors to trigger
  237. **/
  238. static void i40evf_fire_sw_int(struct i40evf_adapter *adapter, u32 mask)
  239. {
  240. struct i40e_hw *hw = &adapter->hw;
  241. int i;
  242. u32 dyn_ctl;
  243. if (mask & 1) {
  244. dyn_ctl = rd32(hw, I40E_VFINT_DYN_CTL01);
  245. dyn_ctl |= I40E_VFINT_DYN_CTLN1_SWINT_TRIG_MASK |
  246. I40E_VFINT_DYN_CTLN1_ITR_INDX_MASK |
  247. I40E_VFINT_DYN_CTLN1_CLEARPBA_MASK;
  248. wr32(hw, I40E_VFINT_DYN_CTL01, dyn_ctl);
  249. }
  250. for (i = 1; i < adapter->num_msix_vectors; i++) {
  251. if (mask & BIT(i)) {
  252. dyn_ctl = rd32(hw, I40E_VFINT_DYN_CTLN1(i - 1));
  253. dyn_ctl |= I40E_VFINT_DYN_CTLN1_SWINT_TRIG_MASK |
  254. I40E_VFINT_DYN_CTLN1_ITR_INDX_MASK |
  255. I40E_VFINT_DYN_CTLN1_CLEARPBA_MASK;
  256. wr32(hw, I40E_VFINT_DYN_CTLN1(i - 1), dyn_ctl);
  257. }
  258. }
  259. }
  260. /**
  261. * i40evf_irq_enable - Enable default interrupt generation settings
  262. * @adapter: board private structure
  263. * @flush: boolean value whether to run rd32()
  264. **/
  265. void i40evf_irq_enable(struct i40evf_adapter *adapter, bool flush)
  266. {
  267. struct i40e_hw *hw = &adapter->hw;
  268. i40evf_misc_irq_enable(adapter);
  269. i40evf_irq_enable_queues(adapter, ~0);
  270. if (flush)
  271. rd32(hw, I40E_VFGEN_RSTAT);
  272. }
  273. /**
  274. * i40evf_msix_aq - Interrupt handler for vector 0
  275. * @irq: interrupt number
  276. * @data: pointer to netdev
  277. **/
  278. static irqreturn_t i40evf_msix_aq(int irq, void *data)
  279. {
  280. struct net_device *netdev = data;
  281. struct i40evf_adapter *adapter = netdev_priv(netdev);
  282. struct i40e_hw *hw = &adapter->hw;
  283. u32 val;
  284. /* handle non-queue interrupts, these reads clear the registers */
  285. val = rd32(hw, I40E_VFINT_ICR01);
  286. val = rd32(hw, I40E_VFINT_ICR0_ENA1);
  287. val = rd32(hw, I40E_VFINT_DYN_CTL01) |
  288. I40E_VFINT_DYN_CTL01_CLEARPBA_MASK;
  289. wr32(hw, I40E_VFINT_DYN_CTL01, val);
  290. /* schedule work on the private workqueue */
  291. schedule_work(&adapter->adminq_task);
  292. return IRQ_HANDLED;
  293. }
  294. /**
  295. * i40evf_msix_clean_rings - MSIX mode Interrupt Handler
  296. * @irq: interrupt number
  297. * @data: pointer to a q_vector
  298. **/
  299. static irqreturn_t i40evf_msix_clean_rings(int irq, void *data)
  300. {
  301. struct i40e_q_vector *q_vector = data;
  302. if (!q_vector->tx.ring && !q_vector->rx.ring)
  303. return IRQ_HANDLED;
  304. napi_schedule_irqoff(&q_vector->napi);
  305. return IRQ_HANDLED;
  306. }
  307. /**
  308. * i40evf_map_vector_to_rxq - associate irqs with rx queues
  309. * @adapter: board private structure
  310. * @v_idx: interrupt number
  311. * @r_idx: queue number
  312. **/
  313. static void
  314. i40evf_map_vector_to_rxq(struct i40evf_adapter *adapter, int v_idx, int r_idx)
  315. {
  316. struct i40e_q_vector *q_vector = &adapter->q_vectors[v_idx];
  317. struct i40e_ring *rx_ring = &adapter->rx_rings[r_idx];
  318. rx_ring->q_vector = q_vector;
  319. rx_ring->next = q_vector->rx.ring;
  320. rx_ring->vsi = &adapter->vsi;
  321. q_vector->rx.ring = rx_ring;
  322. q_vector->rx.count++;
  323. q_vector->rx.latency_range = I40E_LOW_LATENCY;
  324. q_vector->itr_countdown = ITR_COUNTDOWN_START;
  325. }
  326. /**
  327. * i40evf_map_vector_to_txq - associate irqs with tx queues
  328. * @adapter: board private structure
  329. * @v_idx: interrupt number
  330. * @t_idx: queue number
  331. **/
  332. static void
  333. i40evf_map_vector_to_txq(struct i40evf_adapter *adapter, int v_idx, int t_idx)
  334. {
  335. struct i40e_q_vector *q_vector = &adapter->q_vectors[v_idx];
  336. struct i40e_ring *tx_ring = &adapter->tx_rings[t_idx];
  337. tx_ring->q_vector = q_vector;
  338. tx_ring->next = q_vector->tx.ring;
  339. tx_ring->vsi = &adapter->vsi;
  340. q_vector->tx.ring = tx_ring;
  341. q_vector->tx.count++;
  342. q_vector->tx.latency_range = I40E_LOW_LATENCY;
  343. q_vector->itr_countdown = ITR_COUNTDOWN_START;
  344. q_vector->num_ringpairs++;
  345. q_vector->ring_mask |= BIT(t_idx);
  346. }
  347. /**
  348. * i40evf_map_rings_to_vectors - Maps descriptor rings to vectors
  349. * @adapter: board private structure to initialize
  350. *
  351. * This function maps descriptor rings to the queue-specific vectors
  352. * we were allotted through the MSI-X enabling code. Ideally, we'd have
  353. * one vector per ring/queue, but on a constrained vector budget, we
  354. * group the rings as "efficiently" as possible. You would add new
  355. * mapping configurations in here.
  356. **/
  357. static int i40evf_map_rings_to_vectors(struct i40evf_adapter *adapter)
  358. {
  359. int q_vectors;
  360. int v_start = 0;
  361. int rxr_idx = 0, txr_idx = 0;
  362. int rxr_remaining = adapter->num_active_queues;
  363. int txr_remaining = adapter->num_active_queues;
  364. int i, j;
  365. int rqpv, tqpv;
  366. int err = 0;
  367. q_vectors = adapter->num_msix_vectors - NONQ_VECS;
  368. /* The ideal configuration...
  369. * We have enough vectors to map one per queue.
  370. */
  371. if (q_vectors >= (rxr_remaining * 2)) {
  372. for (; rxr_idx < rxr_remaining; v_start++, rxr_idx++)
  373. i40evf_map_vector_to_rxq(adapter, v_start, rxr_idx);
  374. for (; txr_idx < txr_remaining; v_start++, txr_idx++)
  375. i40evf_map_vector_to_txq(adapter, v_start, txr_idx);
  376. goto out;
  377. }
  378. /* If we don't have enough vectors for a 1-to-1
  379. * mapping, we'll have to group them so there are
  380. * multiple queues per vector.
  381. * Re-adjusting *qpv takes care of the remainder.
  382. */
  383. for (i = v_start; i < q_vectors; i++) {
  384. rqpv = DIV_ROUND_UP(rxr_remaining, q_vectors - i);
  385. for (j = 0; j < rqpv; j++) {
  386. i40evf_map_vector_to_rxq(adapter, i, rxr_idx);
  387. rxr_idx++;
  388. rxr_remaining--;
  389. }
  390. }
  391. for (i = v_start; i < q_vectors; i++) {
  392. tqpv = DIV_ROUND_UP(txr_remaining, q_vectors - i);
  393. for (j = 0; j < tqpv; j++) {
  394. i40evf_map_vector_to_txq(adapter, i, txr_idx);
  395. txr_idx++;
  396. txr_remaining--;
  397. }
  398. }
  399. out:
  400. adapter->aq_required |= I40EVF_FLAG_AQ_MAP_VECTORS;
  401. return err;
  402. }
  403. #ifdef CONFIG_NET_POLL_CONTROLLER
  404. /**
  405. * i40evf_netpoll - A Polling 'interrupt' handler
  406. * @netdev: network interface device structure
  407. *
  408. * This is used by netconsole to send skbs without having to re-enable
  409. * interrupts. It's not called while the normal interrupt routine is executing.
  410. **/
  411. static void i40evf_netpoll(struct net_device *netdev)
  412. {
  413. struct i40evf_adapter *adapter = netdev_priv(netdev);
  414. int q_vectors = adapter->num_msix_vectors - NONQ_VECS;
  415. int i;
  416. /* if interface is down do nothing */
  417. if (test_bit(__I40E_DOWN, &adapter->vsi.state))
  418. return;
  419. for (i = 0; i < q_vectors; i++)
  420. i40evf_msix_clean_rings(0, &adapter->q_vectors[i]);
  421. }
  422. #endif
  423. /**
  424. * i40evf_request_traffic_irqs - Initialize MSI-X interrupts
  425. * @adapter: board private structure
  426. *
  427. * Allocates MSI-X vectors for tx and rx handling, and requests
  428. * interrupts from the kernel.
  429. **/
  430. static int
  431. i40evf_request_traffic_irqs(struct i40evf_adapter *adapter, char *basename)
  432. {
  433. int vector, err, q_vectors;
  434. int rx_int_idx = 0, tx_int_idx = 0;
  435. i40evf_irq_disable(adapter);
  436. /* Decrement for Other and TCP Timer vectors */
  437. q_vectors = adapter->num_msix_vectors - NONQ_VECS;
  438. for (vector = 0; vector < q_vectors; vector++) {
  439. struct i40e_q_vector *q_vector = &adapter->q_vectors[vector];
  440. if (q_vector->tx.ring && q_vector->rx.ring) {
  441. snprintf(q_vector->name, sizeof(q_vector->name) - 1,
  442. "i40evf-%s-%s-%d", basename,
  443. "TxRx", rx_int_idx++);
  444. tx_int_idx++;
  445. } else if (q_vector->rx.ring) {
  446. snprintf(q_vector->name, sizeof(q_vector->name) - 1,
  447. "i40evf-%s-%s-%d", basename,
  448. "rx", rx_int_idx++);
  449. } else if (q_vector->tx.ring) {
  450. snprintf(q_vector->name, sizeof(q_vector->name) - 1,
  451. "i40evf-%s-%s-%d", basename,
  452. "tx", tx_int_idx++);
  453. } else {
  454. /* skip this unused q_vector */
  455. continue;
  456. }
  457. err = request_irq(
  458. adapter->msix_entries[vector + NONQ_VECS].vector,
  459. i40evf_msix_clean_rings,
  460. 0,
  461. q_vector->name,
  462. q_vector);
  463. if (err) {
  464. dev_info(&adapter->pdev->dev,
  465. "Request_irq failed, error: %d\n", err);
  466. goto free_queue_irqs;
  467. }
  468. /* assign the mask for this irq */
  469. irq_set_affinity_hint(
  470. adapter->msix_entries[vector + NONQ_VECS].vector,
  471. q_vector->affinity_mask);
  472. }
  473. return 0;
  474. free_queue_irqs:
  475. while (vector) {
  476. vector--;
  477. irq_set_affinity_hint(
  478. adapter->msix_entries[vector + NONQ_VECS].vector,
  479. NULL);
  480. free_irq(adapter->msix_entries[vector + NONQ_VECS].vector,
  481. &adapter->q_vectors[vector]);
  482. }
  483. return err;
  484. }
  485. /**
  486. * i40evf_request_misc_irq - Initialize MSI-X interrupts
  487. * @adapter: board private structure
  488. *
  489. * Allocates MSI-X vector 0 and requests interrupts from the kernel. This
  490. * vector is only for the admin queue, and stays active even when the netdev
  491. * is closed.
  492. **/
  493. static int i40evf_request_misc_irq(struct i40evf_adapter *adapter)
  494. {
  495. struct net_device *netdev = adapter->netdev;
  496. int err;
  497. snprintf(adapter->misc_vector_name,
  498. sizeof(adapter->misc_vector_name) - 1, "i40evf-%s:mbx",
  499. dev_name(&adapter->pdev->dev));
  500. err = request_irq(adapter->msix_entries[0].vector,
  501. &i40evf_msix_aq, 0,
  502. adapter->misc_vector_name, netdev);
  503. if (err) {
  504. dev_err(&adapter->pdev->dev,
  505. "request_irq for %s failed: %d\n",
  506. adapter->misc_vector_name, err);
  507. free_irq(adapter->msix_entries[0].vector, netdev);
  508. }
  509. return err;
  510. }
  511. /**
  512. * i40evf_free_traffic_irqs - Free MSI-X interrupts
  513. * @adapter: board private structure
  514. *
  515. * Frees all MSI-X vectors other than 0.
  516. **/
  517. static void i40evf_free_traffic_irqs(struct i40evf_adapter *adapter)
  518. {
  519. int i;
  520. int q_vectors;
  521. q_vectors = adapter->num_msix_vectors - NONQ_VECS;
  522. for (i = 0; i < q_vectors; i++) {
  523. irq_set_affinity_hint(adapter->msix_entries[i+1].vector,
  524. NULL);
  525. free_irq(adapter->msix_entries[i+1].vector,
  526. &adapter->q_vectors[i]);
  527. }
  528. }
  529. /**
  530. * i40evf_free_misc_irq - Free MSI-X miscellaneous vector
  531. * @adapter: board private structure
  532. *
  533. * Frees MSI-X vector 0.
  534. **/
  535. static void i40evf_free_misc_irq(struct i40evf_adapter *adapter)
  536. {
  537. struct net_device *netdev = adapter->netdev;
  538. free_irq(adapter->msix_entries[0].vector, netdev);
  539. }
  540. /**
  541. * i40evf_configure_tx - Configure Transmit Unit after Reset
  542. * @adapter: board private structure
  543. *
  544. * Configure the Tx unit of the MAC after a reset.
  545. **/
  546. static void i40evf_configure_tx(struct i40evf_adapter *adapter)
  547. {
  548. struct i40e_hw *hw = &adapter->hw;
  549. int i;
  550. for (i = 0; i < adapter->num_active_queues; i++)
  551. adapter->tx_rings[i].tail = hw->hw_addr + I40E_QTX_TAIL1(i);
  552. }
  553. /**
  554. * i40evf_configure_rx - Configure Receive Unit after Reset
  555. * @adapter: board private structure
  556. *
  557. * Configure the Rx unit of the MAC after a reset.
  558. **/
  559. static void i40evf_configure_rx(struct i40evf_adapter *adapter)
  560. {
  561. struct i40e_hw *hw = &adapter->hw;
  562. struct net_device *netdev = adapter->netdev;
  563. int max_frame = netdev->mtu + ETH_HLEN + ETH_FCS_LEN;
  564. int i;
  565. int rx_buf_len;
  566. /* Set the RX buffer length according to the mode */
  567. if (adapter->flags & I40EVF_FLAG_RX_PS_ENABLED ||
  568. netdev->mtu <= ETH_DATA_LEN)
  569. rx_buf_len = I40EVF_RXBUFFER_2048;
  570. else
  571. rx_buf_len = ALIGN(max_frame, 1024);
  572. for (i = 0; i < adapter->num_active_queues; i++) {
  573. adapter->rx_rings[i].tail = hw->hw_addr + I40E_QRX_TAIL1(i);
  574. adapter->rx_rings[i].rx_buf_len = rx_buf_len;
  575. if (adapter->flags & I40EVF_FLAG_RX_PS_ENABLED) {
  576. set_ring_ps_enabled(&adapter->rx_rings[i]);
  577. adapter->rx_rings[i].rx_hdr_len = I40E_RX_HDR_SIZE;
  578. } else {
  579. clear_ring_ps_enabled(&adapter->rx_rings[i]);
  580. }
  581. }
  582. }
  583. /**
  584. * i40evf_find_vlan - Search filter list for specific vlan filter
  585. * @adapter: board private structure
  586. * @vlan: vlan tag
  587. *
  588. * Returns ptr to the filter object or NULL
  589. **/
  590. static struct
  591. i40evf_vlan_filter *i40evf_find_vlan(struct i40evf_adapter *adapter, u16 vlan)
  592. {
  593. struct i40evf_vlan_filter *f;
  594. list_for_each_entry(f, &adapter->vlan_filter_list, list) {
  595. if (vlan == f->vlan)
  596. return f;
  597. }
  598. return NULL;
  599. }
  600. /**
  601. * i40evf_add_vlan - Add a vlan filter to the list
  602. * @adapter: board private structure
  603. * @vlan: VLAN tag
  604. *
  605. * Returns ptr to the filter object or NULL when no memory available.
  606. **/
  607. static struct
  608. i40evf_vlan_filter *i40evf_add_vlan(struct i40evf_adapter *adapter, u16 vlan)
  609. {
  610. struct i40evf_vlan_filter *f = NULL;
  611. int count = 50;
  612. while (test_and_set_bit(__I40EVF_IN_CRITICAL_TASK,
  613. &adapter->crit_section)) {
  614. udelay(1);
  615. if (--count == 0)
  616. goto out;
  617. }
  618. f = i40evf_find_vlan(adapter, vlan);
  619. if (!f) {
  620. f = kzalloc(sizeof(*f), GFP_ATOMIC);
  621. if (!f)
  622. goto clearout;
  623. f->vlan = vlan;
  624. INIT_LIST_HEAD(&f->list);
  625. list_add(&f->list, &adapter->vlan_filter_list);
  626. f->add = true;
  627. adapter->aq_required |= I40EVF_FLAG_AQ_ADD_VLAN_FILTER;
  628. }
  629. clearout:
  630. clear_bit(__I40EVF_IN_CRITICAL_TASK, &adapter->crit_section);
  631. out:
  632. return f;
  633. }
  634. /**
  635. * i40evf_del_vlan - Remove a vlan filter from the list
  636. * @adapter: board private structure
  637. * @vlan: VLAN tag
  638. **/
  639. static void i40evf_del_vlan(struct i40evf_adapter *adapter, u16 vlan)
  640. {
  641. struct i40evf_vlan_filter *f;
  642. int count = 50;
  643. while (test_and_set_bit(__I40EVF_IN_CRITICAL_TASK,
  644. &adapter->crit_section)) {
  645. udelay(1);
  646. if (--count == 0)
  647. return;
  648. }
  649. f = i40evf_find_vlan(adapter, vlan);
  650. if (f) {
  651. f->remove = true;
  652. adapter->aq_required |= I40EVF_FLAG_AQ_DEL_VLAN_FILTER;
  653. }
  654. clear_bit(__I40EVF_IN_CRITICAL_TASK, &adapter->crit_section);
  655. }
  656. /**
  657. * i40evf_vlan_rx_add_vid - Add a VLAN filter to a device
  658. * @netdev: network device struct
  659. * @vid: VLAN tag
  660. **/
  661. static int i40evf_vlan_rx_add_vid(struct net_device *netdev,
  662. __always_unused __be16 proto, u16 vid)
  663. {
  664. struct i40evf_adapter *adapter = netdev_priv(netdev);
  665. if (!VLAN_ALLOWED(adapter))
  666. return -EIO;
  667. if (i40evf_add_vlan(adapter, vid) == NULL)
  668. return -ENOMEM;
  669. return 0;
  670. }
  671. /**
  672. * i40evf_vlan_rx_kill_vid - Remove a VLAN filter from a device
  673. * @netdev: network device struct
  674. * @vid: VLAN tag
  675. **/
  676. static int i40evf_vlan_rx_kill_vid(struct net_device *netdev,
  677. __always_unused __be16 proto, u16 vid)
  678. {
  679. struct i40evf_adapter *adapter = netdev_priv(netdev);
  680. if (VLAN_ALLOWED(adapter)) {
  681. i40evf_del_vlan(adapter, vid);
  682. return 0;
  683. }
  684. return -EIO;
  685. }
  686. /**
  687. * i40evf_find_filter - Search filter list for specific mac filter
  688. * @adapter: board private structure
  689. * @macaddr: the MAC address
  690. *
  691. * Returns ptr to the filter object or NULL
  692. **/
  693. static struct
  694. i40evf_mac_filter *i40evf_find_filter(struct i40evf_adapter *adapter,
  695. u8 *macaddr)
  696. {
  697. struct i40evf_mac_filter *f;
  698. if (!macaddr)
  699. return NULL;
  700. list_for_each_entry(f, &adapter->mac_filter_list, list) {
  701. if (ether_addr_equal(macaddr, f->macaddr))
  702. return f;
  703. }
  704. return NULL;
  705. }
  706. /**
  707. * i40e_add_filter - Add a mac filter to the filter list
  708. * @adapter: board private structure
  709. * @macaddr: the MAC address
  710. *
  711. * Returns ptr to the filter object or NULL when no memory available.
  712. **/
  713. static struct
  714. i40evf_mac_filter *i40evf_add_filter(struct i40evf_adapter *adapter,
  715. u8 *macaddr)
  716. {
  717. struct i40evf_mac_filter *f;
  718. int count = 50;
  719. if (!macaddr)
  720. return NULL;
  721. while (test_and_set_bit(__I40EVF_IN_CRITICAL_TASK,
  722. &adapter->crit_section)) {
  723. udelay(1);
  724. if (--count == 0)
  725. return NULL;
  726. }
  727. f = i40evf_find_filter(adapter, macaddr);
  728. if (!f) {
  729. f = kzalloc(sizeof(*f), GFP_ATOMIC);
  730. if (!f) {
  731. clear_bit(__I40EVF_IN_CRITICAL_TASK,
  732. &adapter->crit_section);
  733. return NULL;
  734. }
  735. ether_addr_copy(f->macaddr, macaddr);
  736. list_add(&f->list, &adapter->mac_filter_list);
  737. f->add = true;
  738. adapter->aq_required |= I40EVF_FLAG_AQ_ADD_MAC_FILTER;
  739. }
  740. clear_bit(__I40EVF_IN_CRITICAL_TASK, &adapter->crit_section);
  741. return f;
  742. }
  743. /**
  744. * i40evf_set_mac - NDO callback to set port mac address
  745. * @netdev: network interface device structure
  746. * @p: pointer to an address structure
  747. *
  748. * Returns 0 on success, negative on failure
  749. **/
  750. static int i40evf_set_mac(struct net_device *netdev, void *p)
  751. {
  752. struct i40evf_adapter *adapter = netdev_priv(netdev);
  753. struct i40e_hw *hw = &adapter->hw;
  754. struct i40evf_mac_filter *f;
  755. struct sockaddr *addr = p;
  756. if (!is_valid_ether_addr(addr->sa_data))
  757. return -EADDRNOTAVAIL;
  758. if (ether_addr_equal(netdev->dev_addr, addr->sa_data))
  759. return 0;
  760. if (adapter->flags & I40EVF_FLAG_ADDR_SET_BY_PF)
  761. return -EPERM;
  762. f = i40evf_find_filter(adapter, hw->mac.addr);
  763. if (f) {
  764. f->remove = true;
  765. adapter->aq_required |= I40EVF_FLAG_AQ_DEL_MAC_FILTER;
  766. }
  767. f = i40evf_add_filter(adapter, addr->sa_data);
  768. if (f) {
  769. ether_addr_copy(hw->mac.addr, addr->sa_data);
  770. ether_addr_copy(netdev->dev_addr, adapter->hw.mac.addr);
  771. }
  772. return (f == NULL) ? -ENOMEM : 0;
  773. }
  774. /**
  775. * i40evf_set_rx_mode - NDO callback to set the netdev filters
  776. * @netdev: network interface device structure
  777. **/
  778. static void i40evf_set_rx_mode(struct net_device *netdev)
  779. {
  780. struct i40evf_adapter *adapter = netdev_priv(netdev);
  781. struct i40evf_mac_filter *f, *ftmp;
  782. struct netdev_hw_addr *uca;
  783. struct netdev_hw_addr *mca;
  784. struct netdev_hw_addr *ha;
  785. int count = 50;
  786. /* add addr if not already in the filter list */
  787. netdev_for_each_uc_addr(uca, netdev) {
  788. i40evf_add_filter(adapter, uca->addr);
  789. }
  790. netdev_for_each_mc_addr(mca, netdev) {
  791. i40evf_add_filter(adapter, mca->addr);
  792. }
  793. while (test_and_set_bit(__I40EVF_IN_CRITICAL_TASK,
  794. &adapter->crit_section)) {
  795. udelay(1);
  796. if (--count == 0) {
  797. dev_err(&adapter->pdev->dev,
  798. "Failed to get lock in %s\n", __func__);
  799. return;
  800. }
  801. }
  802. /* remove filter if not in netdev list */
  803. list_for_each_entry_safe(f, ftmp, &adapter->mac_filter_list, list) {
  804. netdev_for_each_mc_addr(mca, netdev)
  805. if (ether_addr_equal(mca->addr, f->macaddr))
  806. goto bottom_of_search_loop;
  807. netdev_for_each_uc_addr(uca, netdev)
  808. if (ether_addr_equal(uca->addr, f->macaddr))
  809. goto bottom_of_search_loop;
  810. for_each_dev_addr(netdev, ha)
  811. if (ether_addr_equal(ha->addr, f->macaddr))
  812. goto bottom_of_search_loop;
  813. if (ether_addr_equal(f->macaddr, adapter->hw.mac.addr))
  814. goto bottom_of_search_loop;
  815. /* f->macaddr wasn't found in uc, mc, or ha list so delete it */
  816. f->remove = true;
  817. adapter->aq_required |= I40EVF_FLAG_AQ_DEL_MAC_FILTER;
  818. bottom_of_search_loop:
  819. continue;
  820. }
  821. if (netdev->flags & IFF_PROMISC &&
  822. !(adapter->flags & I40EVF_FLAG_PROMISC_ON))
  823. adapter->aq_required |= I40EVF_FLAG_AQ_REQUEST_PROMISC;
  824. else if (!(netdev->flags & IFF_PROMISC) &&
  825. adapter->flags & I40EVF_FLAG_PROMISC_ON)
  826. adapter->aq_required |= I40EVF_FLAG_AQ_RELEASE_PROMISC;
  827. clear_bit(__I40EVF_IN_CRITICAL_TASK, &adapter->crit_section);
  828. }
  829. /**
  830. * i40evf_napi_enable_all - enable NAPI on all queue vectors
  831. * @adapter: board private structure
  832. **/
  833. static void i40evf_napi_enable_all(struct i40evf_adapter *adapter)
  834. {
  835. int q_idx;
  836. struct i40e_q_vector *q_vector;
  837. int q_vectors = adapter->num_msix_vectors - NONQ_VECS;
  838. for (q_idx = 0; q_idx < q_vectors; q_idx++) {
  839. struct napi_struct *napi;
  840. q_vector = &adapter->q_vectors[q_idx];
  841. napi = &q_vector->napi;
  842. napi_enable(napi);
  843. }
  844. }
  845. /**
  846. * i40evf_napi_disable_all - disable NAPI on all queue vectors
  847. * @adapter: board private structure
  848. **/
  849. static void i40evf_napi_disable_all(struct i40evf_adapter *adapter)
  850. {
  851. int q_idx;
  852. struct i40e_q_vector *q_vector;
  853. int q_vectors = adapter->num_msix_vectors - NONQ_VECS;
  854. for (q_idx = 0; q_idx < q_vectors; q_idx++) {
  855. q_vector = &adapter->q_vectors[q_idx];
  856. napi_disable(&q_vector->napi);
  857. }
  858. }
  859. /**
  860. * i40evf_configure - set up transmit and receive data structures
  861. * @adapter: board private structure
  862. **/
  863. static void i40evf_configure(struct i40evf_adapter *adapter)
  864. {
  865. struct net_device *netdev = adapter->netdev;
  866. int i;
  867. i40evf_set_rx_mode(netdev);
  868. i40evf_configure_tx(adapter);
  869. i40evf_configure_rx(adapter);
  870. adapter->aq_required |= I40EVF_FLAG_AQ_CONFIGURE_QUEUES;
  871. for (i = 0; i < adapter->num_active_queues; i++) {
  872. struct i40e_ring *ring = &adapter->rx_rings[i];
  873. if (adapter->flags & I40EVF_FLAG_RX_PS_ENABLED) {
  874. i40evf_alloc_rx_headers(ring);
  875. i40evf_alloc_rx_buffers_ps(ring, ring->count);
  876. } else {
  877. i40evf_alloc_rx_buffers_1buf(ring, ring->count);
  878. }
  879. ring->next_to_use = ring->count - 1;
  880. writel(ring->next_to_use, ring->tail);
  881. }
  882. }
  883. /**
  884. * i40evf_up_complete - Finish the last steps of bringing up a connection
  885. * @adapter: board private structure
  886. **/
  887. static int i40evf_up_complete(struct i40evf_adapter *adapter)
  888. {
  889. adapter->state = __I40EVF_RUNNING;
  890. clear_bit(__I40E_DOWN, &adapter->vsi.state);
  891. i40evf_napi_enable_all(adapter);
  892. adapter->aq_required |= I40EVF_FLAG_AQ_ENABLE_QUEUES;
  893. mod_timer_pending(&adapter->watchdog_timer, jiffies + 1);
  894. return 0;
  895. }
  896. /**
  897. * i40e_down - Shutdown the connection processing
  898. * @adapter: board private structure
  899. **/
  900. void i40evf_down(struct i40evf_adapter *adapter)
  901. {
  902. struct net_device *netdev = adapter->netdev;
  903. struct i40evf_mac_filter *f;
  904. if (adapter->state <= __I40EVF_DOWN_PENDING)
  905. return;
  906. while (test_and_set_bit(__I40EVF_IN_CRITICAL_TASK,
  907. &adapter->crit_section))
  908. usleep_range(500, 1000);
  909. netif_carrier_off(netdev);
  910. netif_tx_disable(netdev);
  911. i40evf_napi_disable_all(adapter);
  912. i40evf_irq_disable(adapter);
  913. /* remove all MAC filters */
  914. list_for_each_entry(f, &adapter->mac_filter_list, list) {
  915. f->remove = true;
  916. }
  917. /* remove all VLAN filters */
  918. list_for_each_entry(f, &adapter->vlan_filter_list, list) {
  919. f->remove = true;
  920. }
  921. if (!(adapter->flags & I40EVF_FLAG_PF_COMMS_FAILED) &&
  922. adapter->state != __I40EVF_RESETTING) {
  923. /* cancel any current operation */
  924. adapter->current_op = I40E_VIRTCHNL_OP_UNKNOWN;
  925. /* Schedule operations to close down the HW. Don't wait
  926. * here for this to complete. The watchdog is still running
  927. * and it will take care of this.
  928. */
  929. adapter->aq_required = I40EVF_FLAG_AQ_DEL_MAC_FILTER;
  930. adapter->aq_required |= I40EVF_FLAG_AQ_DEL_VLAN_FILTER;
  931. adapter->aq_required |= I40EVF_FLAG_AQ_DISABLE_QUEUES;
  932. }
  933. clear_bit(__I40EVF_IN_CRITICAL_TASK, &adapter->crit_section);
  934. }
  935. /**
  936. * i40evf_acquire_msix_vectors - Setup the MSIX capability
  937. * @adapter: board private structure
  938. * @vectors: number of vectors to request
  939. *
  940. * Work with the OS to set up the MSIX vectors needed.
  941. *
  942. * Returns 0 on success, negative on failure
  943. **/
  944. static int
  945. i40evf_acquire_msix_vectors(struct i40evf_adapter *adapter, int vectors)
  946. {
  947. int err, vector_threshold;
  948. /* We'll want at least 3 (vector_threshold):
  949. * 0) Other (Admin Queue and link, mostly)
  950. * 1) TxQ[0] Cleanup
  951. * 2) RxQ[0] Cleanup
  952. */
  953. vector_threshold = MIN_MSIX_COUNT;
  954. /* The more we get, the more we will assign to Tx/Rx Cleanup
  955. * for the separate queues...where Rx Cleanup >= Tx Cleanup.
  956. * Right now, we simply care about how many we'll get; we'll
  957. * set them up later while requesting irq's.
  958. */
  959. err = pci_enable_msix_range(adapter->pdev, adapter->msix_entries,
  960. vector_threshold, vectors);
  961. if (err < 0) {
  962. dev_err(&adapter->pdev->dev, "Unable to allocate MSI-X interrupts\n");
  963. kfree(adapter->msix_entries);
  964. adapter->msix_entries = NULL;
  965. return err;
  966. }
  967. /* Adjust for only the vectors we'll use, which is minimum
  968. * of max_msix_q_vectors + NONQ_VECS, or the number of
  969. * vectors we were allocated.
  970. */
  971. adapter->num_msix_vectors = err;
  972. return 0;
  973. }
  974. /**
  975. * i40evf_free_queues - Free memory for all rings
  976. * @adapter: board private structure to initialize
  977. *
  978. * Free all of the memory associated with queue pairs.
  979. **/
  980. static void i40evf_free_queues(struct i40evf_adapter *adapter)
  981. {
  982. if (!adapter->vsi_res)
  983. return;
  984. kfree(adapter->tx_rings);
  985. adapter->tx_rings = NULL;
  986. kfree(adapter->rx_rings);
  987. adapter->rx_rings = NULL;
  988. }
  989. /**
  990. * i40evf_alloc_queues - Allocate memory for all rings
  991. * @adapter: board private structure to initialize
  992. *
  993. * We allocate one ring per queue at run-time since we don't know the
  994. * number of queues at compile-time. The polling_netdev array is
  995. * intended for Multiqueue, but should work fine with a single queue.
  996. **/
  997. static int i40evf_alloc_queues(struct i40evf_adapter *adapter)
  998. {
  999. int i;
  1000. adapter->tx_rings = kcalloc(adapter->num_active_queues,
  1001. sizeof(struct i40e_ring), GFP_KERNEL);
  1002. if (!adapter->tx_rings)
  1003. goto err_out;
  1004. adapter->rx_rings = kcalloc(adapter->num_active_queues,
  1005. sizeof(struct i40e_ring), GFP_KERNEL);
  1006. if (!adapter->rx_rings)
  1007. goto err_out;
  1008. for (i = 0; i < adapter->num_active_queues; i++) {
  1009. struct i40e_ring *tx_ring;
  1010. struct i40e_ring *rx_ring;
  1011. tx_ring = &adapter->tx_rings[i];
  1012. tx_ring->queue_index = i;
  1013. tx_ring->netdev = adapter->netdev;
  1014. tx_ring->dev = &adapter->pdev->dev;
  1015. tx_ring->count = adapter->tx_desc_count;
  1016. if (adapter->flags & I40E_FLAG_WB_ON_ITR_CAPABLE)
  1017. tx_ring->flags |= I40E_TXR_FLAGS_WB_ON_ITR;
  1018. rx_ring = &adapter->rx_rings[i];
  1019. rx_ring->queue_index = i;
  1020. rx_ring->netdev = adapter->netdev;
  1021. rx_ring->dev = &adapter->pdev->dev;
  1022. rx_ring->count = adapter->rx_desc_count;
  1023. }
  1024. return 0;
  1025. err_out:
  1026. i40evf_free_queues(adapter);
  1027. return -ENOMEM;
  1028. }
  1029. /**
  1030. * i40evf_set_interrupt_capability - set MSI-X or FAIL if not supported
  1031. * @adapter: board private structure to initialize
  1032. *
  1033. * Attempt to configure the interrupts using the best available
  1034. * capabilities of the hardware and the kernel.
  1035. **/
  1036. static int i40evf_set_interrupt_capability(struct i40evf_adapter *adapter)
  1037. {
  1038. int vector, v_budget;
  1039. int pairs = 0;
  1040. int err = 0;
  1041. if (!adapter->vsi_res) {
  1042. err = -EIO;
  1043. goto out;
  1044. }
  1045. pairs = adapter->num_active_queues;
  1046. /* It's easy to be greedy for MSI-X vectors, but it really
  1047. * doesn't do us much good if we have a lot more vectors
  1048. * than CPU's. So let's be conservative and only ask for
  1049. * (roughly) twice the number of vectors as there are CPU's.
  1050. */
  1051. v_budget = min_t(int, pairs, (int)(num_online_cpus() * 2)) + NONQ_VECS;
  1052. v_budget = min_t(int, v_budget, (int)adapter->vf_res->max_vectors);
  1053. adapter->msix_entries = kcalloc(v_budget,
  1054. sizeof(struct msix_entry), GFP_KERNEL);
  1055. if (!adapter->msix_entries) {
  1056. err = -ENOMEM;
  1057. goto out;
  1058. }
  1059. for (vector = 0; vector < v_budget; vector++)
  1060. adapter->msix_entries[vector].entry = vector;
  1061. err = i40evf_acquire_msix_vectors(adapter, v_budget);
  1062. out:
  1063. netif_set_real_num_rx_queues(adapter->netdev, pairs);
  1064. netif_set_real_num_tx_queues(adapter->netdev, pairs);
  1065. return err;
  1066. }
  1067. /**
  1068. * i40e_config_rss_aq - Configure RSS keys and lut by using AQ commands
  1069. * @adapter: board private structure
  1070. *
  1071. * Return 0 on success, negative on failure
  1072. **/
  1073. static int i40evf_config_rss_aq(struct i40evf_adapter *adapter)
  1074. {
  1075. struct i40e_aqc_get_set_rss_key_data *rss_key =
  1076. (struct i40e_aqc_get_set_rss_key_data *)adapter->rss_key;
  1077. struct i40e_hw *hw = &adapter->hw;
  1078. int ret = 0;
  1079. if (adapter->current_op != I40E_VIRTCHNL_OP_UNKNOWN) {
  1080. /* bail because we already have a command pending */
  1081. dev_err(&adapter->pdev->dev, "Cannot configure RSS, command %d pending\n",
  1082. adapter->current_op);
  1083. return -EBUSY;
  1084. }
  1085. ret = i40evf_aq_set_rss_key(hw, adapter->vsi.id, rss_key);
  1086. if (ret) {
  1087. dev_err(&adapter->pdev->dev, "Cannot set RSS key, err %s aq_err %s\n",
  1088. i40evf_stat_str(hw, ret),
  1089. i40evf_aq_str(hw, hw->aq.asq_last_status));
  1090. return ret;
  1091. }
  1092. ret = i40evf_aq_set_rss_lut(hw, adapter->vsi.id, false,
  1093. adapter->rss_lut, adapter->rss_lut_size);
  1094. if (ret) {
  1095. dev_err(&adapter->pdev->dev, "Cannot set RSS lut, err %s aq_err %s\n",
  1096. i40evf_stat_str(hw, ret),
  1097. i40evf_aq_str(hw, hw->aq.asq_last_status));
  1098. }
  1099. return ret;
  1100. }
  1101. /**
  1102. * i40evf_config_rss_reg - Configure RSS keys and lut by writing registers
  1103. * @adapter: board private structure
  1104. *
  1105. * Returns 0 on success, negative on failure
  1106. **/
  1107. static int i40evf_config_rss_reg(struct i40evf_adapter *adapter)
  1108. {
  1109. struct i40e_hw *hw = &adapter->hw;
  1110. u32 *dw;
  1111. u16 i;
  1112. dw = (u32 *)adapter->rss_key;
  1113. for (i = 0; i <= adapter->rss_key_size / 4; i++)
  1114. wr32(hw, I40E_VFQF_HKEY(i), dw[i]);
  1115. dw = (u32 *)adapter->rss_lut;
  1116. for (i = 0; i <= adapter->rss_lut_size / 4; i++)
  1117. wr32(hw, I40E_VFQF_HLUT(i), dw[i]);
  1118. i40e_flush(hw);
  1119. return 0;
  1120. }
  1121. /**
  1122. * i40evf_config_rss - Configure RSS keys and lut
  1123. * @adapter: board private structure
  1124. *
  1125. * Returns 0 on success, negative on failure
  1126. **/
  1127. int i40evf_config_rss(struct i40evf_adapter *adapter)
  1128. {
  1129. if (RSS_PF(adapter)) {
  1130. adapter->aq_required |= I40EVF_FLAG_AQ_SET_RSS_LUT |
  1131. I40EVF_FLAG_AQ_SET_RSS_KEY;
  1132. return 0;
  1133. } else if (RSS_AQ(adapter)) {
  1134. return i40evf_config_rss_aq(adapter);
  1135. } else {
  1136. return i40evf_config_rss_reg(adapter);
  1137. }
  1138. }
  1139. /**
  1140. * i40evf_fill_rss_lut - Fill the lut with default values
  1141. * @adapter: board private structure
  1142. **/
  1143. static void i40evf_fill_rss_lut(struct i40evf_adapter *adapter)
  1144. {
  1145. u16 i;
  1146. for (i = 0; i < adapter->rss_lut_size; i++)
  1147. adapter->rss_lut[i] = i % adapter->num_active_queues;
  1148. }
  1149. /**
  1150. * i40evf_init_rss - Prepare for RSS
  1151. * @adapter: board private structure
  1152. *
  1153. * Return 0 on success, negative on failure
  1154. **/
  1155. static int i40evf_init_rss(struct i40evf_adapter *adapter)
  1156. {
  1157. struct i40e_hw *hw = &adapter->hw;
  1158. int ret;
  1159. if (!RSS_PF(adapter)) {
  1160. /* Enable PCTYPES for RSS, TCP/UDP with IPv4/IPv6 */
  1161. if (adapter->vf_res->vf_offload_flags &
  1162. I40E_VIRTCHNL_VF_OFFLOAD_RSS_PCTYPE_V2)
  1163. adapter->hena = I40E_DEFAULT_RSS_HENA_EXPANDED;
  1164. else
  1165. adapter->hena = I40E_DEFAULT_RSS_HENA;
  1166. wr32(hw, I40E_VFQF_HENA(0), (u32)adapter->hena);
  1167. wr32(hw, I40E_VFQF_HENA(1), (u32)(adapter->hena >> 32));
  1168. }
  1169. i40evf_fill_rss_lut(adapter);
  1170. netdev_rss_key_fill((void *)adapter->rss_key, adapter->rss_key_size);
  1171. ret = i40evf_config_rss(adapter);
  1172. return ret;
  1173. }
  1174. /**
  1175. * i40evf_alloc_q_vectors - Allocate memory for interrupt vectors
  1176. * @adapter: board private structure to initialize
  1177. *
  1178. * We allocate one q_vector per queue interrupt. If allocation fails we
  1179. * return -ENOMEM.
  1180. **/
  1181. static int i40evf_alloc_q_vectors(struct i40evf_adapter *adapter)
  1182. {
  1183. int q_idx = 0, num_q_vectors;
  1184. struct i40e_q_vector *q_vector;
  1185. num_q_vectors = adapter->num_msix_vectors - NONQ_VECS;
  1186. adapter->q_vectors = kcalloc(num_q_vectors, sizeof(*q_vector),
  1187. GFP_KERNEL);
  1188. if (!adapter->q_vectors)
  1189. return -ENOMEM;
  1190. for (q_idx = 0; q_idx < num_q_vectors; q_idx++) {
  1191. q_vector = &adapter->q_vectors[q_idx];
  1192. q_vector->adapter = adapter;
  1193. q_vector->vsi = &adapter->vsi;
  1194. q_vector->v_idx = q_idx;
  1195. netif_napi_add(adapter->netdev, &q_vector->napi,
  1196. i40evf_napi_poll, NAPI_POLL_WEIGHT);
  1197. }
  1198. return 0;
  1199. }
  1200. /**
  1201. * i40evf_free_q_vectors - Free memory allocated for interrupt vectors
  1202. * @adapter: board private structure to initialize
  1203. *
  1204. * This function frees the memory allocated to the q_vectors. In addition if
  1205. * NAPI is enabled it will delete any references to the NAPI struct prior
  1206. * to freeing the q_vector.
  1207. **/
  1208. static void i40evf_free_q_vectors(struct i40evf_adapter *adapter)
  1209. {
  1210. int q_idx, num_q_vectors;
  1211. int napi_vectors;
  1212. num_q_vectors = adapter->num_msix_vectors - NONQ_VECS;
  1213. napi_vectors = adapter->num_active_queues;
  1214. for (q_idx = 0; q_idx < num_q_vectors; q_idx++) {
  1215. struct i40e_q_vector *q_vector = &adapter->q_vectors[q_idx];
  1216. if (q_idx < napi_vectors)
  1217. netif_napi_del(&q_vector->napi);
  1218. }
  1219. kfree(adapter->q_vectors);
  1220. }
  1221. /**
  1222. * i40evf_reset_interrupt_capability - Reset MSIX setup
  1223. * @adapter: board private structure
  1224. *
  1225. **/
  1226. void i40evf_reset_interrupt_capability(struct i40evf_adapter *adapter)
  1227. {
  1228. pci_disable_msix(adapter->pdev);
  1229. kfree(adapter->msix_entries);
  1230. adapter->msix_entries = NULL;
  1231. }
  1232. /**
  1233. * i40evf_init_interrupt_scheme - Determine if MSIX is supported and init
  1234. * @adapter: board private structure to initialize
  1235. *
  1236. **/
  1237. int i40evf_init_interrupt_scheme(struct i40evf_adapter *adapter)
  1238. {
  1239. int err;
  1240. err = i40evf_set_interrupt_capability(adapter);
  1241. if (err) {
  1242. dev_err(&adapter->pdev->dev,
  1243. "Unable to setup interrupt capabilities\n");
  1244. goto err_set_interrupt;
  1245. }
  1246. err = i40evf_alloc_q_vectors(adapter);
  1247. if (err) {
  1248. dev_err(&adapter->pdev->dev,
  1249. "Unable to allocate memory for queue vectors\n");
  1250. goto err_alloc_q_vectors;
  1251. }
  1252. err = i40evf_alloc_queues(adapter);
  1253. if (err) {
  1254. dev_err(&adapter->pdev->dev,
  1255. "Unable to allocate memory for queues\n");
  1256. goto err_alloc_queues;
  1257. }
  1258. dev_info(&adapter->pdev->dev, "Multiqueue %s: Queue pair count = %u",
  1259. (adapter->num_active_queues > 1) ? "Enabled" : "Disabled",
  1260. adapter->num_active_queues);
  1261. return 0;
  1262. err_alloc_queues:
  1263. i40evf_free_q_vectors(adapter);
  1264. err_alloc_q_vectors:
  1265. i40evf_reset_interrupt_capability(adapter);
  1266. err_set_interrupt:
  1267. return err;
  1268. }
  1269. /**
  1270. * i40evf_free_rss - Free memory used by RSS structs
  1271. * @adapter: board private structure
  1272. **/
  1273. static void i40evf_free_rss(struct i40evf_adapter *adapter)
  1274. {
  1275. kfree(adapter->rss_key);
  1276. adapter->rss_key = NULL;
  1277. kfree(adapter->rss_lut);
  1278. adapter->rss_lut = NULL;
  1279. }
  1280. /**
  1281. * i40evf_watchdog_timer - Periodic call-back timer
  1282. * @data: pointer to adapter disguised as unsigned long
  1283. **/
  1284. static void i40evf_watchdog_timer(unsigned long data)
  1285. {
  1286. struct i40evf_adapter *adapter = (struct i40evf_adapter *)data;
  1287. schedule_work(&adapter->watchdog_task);
  1288. /* timer will be rescheduled in watchdog task */
  1289. }
  1290. /**
  1291. * i40evf_watchdog_task - Periodic call-back task
  1292. * @work: pointer to work_struct
  1293. **/
  1294. static void i40evf_watchdog_task(struct work_struct *work)
  1295. {
  1296. struct i40evf_adapter *adapter = container_of(work,
  1297. struct i40evf_adapter,
  1298. watchdog_task);
  1299. struct i40e_hw *hw = &adapter->hw;
  1300. u32 reg_val;
  1301. if (test_and_set_bit(__I40EVF_IN_CRITICAL_TASK, &adapter->crit_section))
  1302. goto restart_watchdog;
  1303. if (adapter->flags & I40EVF_FLAG_PF_COMMS_FAILED) {
  1304. reg_val = rd32(hw, I40E_VFGEN_RSTAT) &
  1305. I40E_VFGEN_RSTAT_VFR_STATE_MASK;
  1306. if ((reg_val == I40E_VFR_VFACTIVE) ||
  1307. (reg_val == I40E_VFR_COMPLETED)) {
  1308. /* A chance for redemption! */
  1309. dev_err(&adapter->pdev->dev, "Hardware came out of reset. Attempting reinit.\n");
  1310. adapter->state = __I40EVF_STARTUP;
  1311. adapter->flags &= ~I40EVF_FLAG_PF_COMMS_FAILED;
  1312. schedule_delayed_work(&adapter->init_task, 10);
  1313. clear_bit(__I40EVF_IN_CRITICAL_TASK,
  1314. &adapter->crit_section);
  1315. /* Don't reschedule the watchdog, since we've restarted
  1316. * the init task. When init_task contacts the PF and
  1317. * gets everything set up again, it'll restart the
  1318. * watchdog for us. Down, boy. Sit. Stay. Woof.
  1319. */
  1320. return;
  1321. }
  1322. adapter->aq_required = 0;
  1323. adapter->current_op = I40E_VIRTCHNL_OP_UNKNOWN;
  1324. goto watchdog_done;
  1325. }
  1326. if ((adapter->state < __I40EVF_DOWN) ||
  1327. (adapter->flags & I40EVF_FLAG_RESET_PENDING))
  1328. goto watchdog_done;
  1329. /* check for reset */
  1330. reg_val = rd32(hw, I40E_VF_ARQLEN1) & I40E_VF_ARQLEN1_ARQENABLE_MASK;
  1331. if (!(adapter->flags & I40EVF_FLAG_RESET_PENDING) && !reg_val) {
  1332. adapter->state = __I40EVF_RESETTING;
  1333. adapter->flags |= I40EVF_FLAG_RESET_PENDING;
  1334. dev_err(&adapter->pdev->dev, "Hardware reset detected\n");
  1335. schedule_work(&adapter->reset_task);
  1336. adapter->aq_required = 0;
  1337. adapter->current_op = I40E_VIRTCHNL_OP_UNKNOWN;
  1338. goto watchdog_done;
  1339. }
  1340. /* Process admin queue tasks. After init, everything gets done
  1341. * here so we don't race on the admin queue.
  1342. */
  1343. if (adapter->current_op) {
  1344. if (!i40evf_asq_done(hw)) {
  1345. dev_dbg(&adapter->pdev->dev, "Admin queue timeout\n");
  1346. i40evf_send_api_ver(adapter);
  1347. }
  1348. goto watchdog_done;
  1349. }
  1350. if (adapter->aq_required & I40EVF_FLAG_AQ_GET_CONFIG) {
  1351. i40evf_send_vf_config_msg(adapter);
  1352. goto watchdog_done;
  1353. }
  1354. if (adapter->aq_required & I40EVF_FLAG_AQ_DISABLE_QUEUES) {
  1355. i40evf_disable_queues(adapter);
  1356. goto watchdog_done;
  1357. }
  1358. if (adapter->aq_required & I40EVF_FLAG_AQ_MAP_VECTORS) {
  1359. i40evf_map_queues(adapter);
  1360. goto watchdog_done;
  1361. }
  1362. if (adapter->aq_required & I40EVF_FLAG_AQ_ADD_MAC_FILTER) {
  1363. i40evf_add_ether_addrs(adapter);
  1364. goto watchdog_done;
  1365. }
  1366. if (adapter->aq_required & I40EVF_FLAG_AQ_ADD_VLAN_FILTER) {
  1367. i40evf_add_vlans(adapter);
  1368. goto watchdog_done;
  1369. }
  1370. if (adapter->aq_required & I40EVF_FLAG_AQ_DEL_MAC_FILTER) {
  1371. i40evf_del_ether_addrs(adapter);
  1372. goto watchdog_done;
  1373. }
  1374. if (adapter->aq_required & I40EVF_FLAG_AQ_DEL_VLAN_FILTER) {
  1375. i40evf_del_vlans(adapter);
  1376. goto watchdog_done;
  1377. }
  1378. if (adapter->aq_required & I40EVF_FLAG_AQ_CONFIGURE_QUEUES) {
  1379. i40evf_configure_queues(adapter);
  1380. goto watchdog_done;
  1381. }
  1382. if (adapter->aq_required & I40EVF_FLAG_AQ_ENABLE_QUEUES) {
  1383. i40evf_enable_queues(adapter);
  1384. goto watchdog_done;
  1385. }
  1386. if (adapter->aq_required & I40EVF_FLAG_AQ_CONFIGURE_RSS) {
  1387. /* This message goes straight to the firmware, not the
  1388. * PF, so we don't have to set current_op as we will
  1389. * not get a response through the ARQ.
  1390. */
  1391. i40evf_init_rss(adapter);
  1392. adapter->aq_required &= ~I40EVF_FLAG_AQ_CONFIGURE_RSS;
  1393. goto watchdog_done;
  1394. }
  1395. if (adapter->aq_required & I40EVF_FLAG_AQ_GET_HENA) {
  1396. i40evf_get_hena(adapter);
  1397. goto watchdog_done;
  1398. }
  1399. if (adapter->aq_required & I40EVF_FLAG_AQ_SET_HENA) {
  1400. i40evf_set_hena(adapter);
  1401. goto watchdog_done;
  1402. }
  1403. if (adapter->aq_required & I40EVF_FLAG_AQ_SET_RSS_KEY) {
  1404. i40evf_set_rss_key(adapter);
  1405. goto watchdog_done;
  1406. }
  1407. if (adapter->aq_required & I40EVF_FLAG_AQ_SET_RSS_LUT) {
  1408. i40evf_set_rss_lut(adapter);
  1409. goto watchdog_done;
  1410. }
  1411. if (adapter->aq_required & I40EVF_FLAG_AQ_REQUEST_PROMISC) {
  1412. i40evf_set_promiscuous(adapter, I40E_FLAG_VF_UNICAST_PROMISC |
  1413. I40E_FLAG_VF_MULTICAST_PROMISC);
  1414. goto watchdog_done;
  1415. }
  1416. if (adapter->aq_required & I40EVF_FLAG_AQ_RELEASE_PROMISC) {
  1417. i40evf_set_promiscuous(adapter, 0);
  1418. goto watchdog_done;
  1419. }
  1420. if (adapter->state == __I40EVF_RUNNING)
  1421. i40evf_request_stats(adapter);
  1422. watchdog_done:
  1423. if (adapter->state == __I40EVF_RUNNING) {
  1424. i40evf_irq_enable_queues(adapter, ~0);
  1425. i40evf_fire_sw_int(adapter, 0xFF);
  1426. } else {
  1427. i40evf_fire_sw_int(adapter, 0x1);
  1428. }
  1429. clear_bit(__I40EVF_IN_CRITICAL_TASK, &adapter->crit_section);
  1430. restart_watchdog:
  1431. if (adapter->state == __I40EVF_REMOVE)
  1432. return;
  1433. if (adapter->aq_required)
  1434. mod_timer(&adapter->watchdog_timer,
  1435. jiffies + msecs_to_jiffies(20));
  1436. else
  1437. mod_timer(&adapter->watchdog_timer, jiffies + (HZ * 2));
  1438. schedule_work(&adapter->adminq_task);
  1439. }
  1440. #define I40EVF_RESET_WAIT_MS 10
  1441. #define I40EVF_RESET_WAIT_COUNT 500
  1442. /**
  1443. * i40evf_reset_task - Call-back task to handle hardware reset
  1444. * @work: pointer to work_struct
  1445. *
  1446. * During reset we need to shut down and reinitialize the admin queue
  1447. * before we can use it to communicate with the PF again. We also clear
  1448. * and reinit the rings because that context is lost as well.
  1449. **/
  1450. static void i40evf_reset_task(struct work_struct *work)
  1451. {
  1452. struct i40evf_adapter *adapter = container_of(work,
  1453. struct i40evf_adapter,
  1454. reset_task);
  1455. struct net_device *netdev = adapter->netdev;
  1456. struct i40e_hw *hw = &adapter->hw;
  1457. struct i40evf_vlan_filter *vlf;
  1458. struct i40evf_mac_filter *f;
  1459. u32 reg_val;
  1460. int i = 0, err;
  1461. while (test_and_set_bit(__I40EVF_IN_CRITICAL_TASK,
  1462. &adapter->crit_section))
  1463. usleep_range(500, 1000);
  1464. i40evf_misc_irq_disable(adapter);
  1465. if (adapter->flags & I40EVF_FLAG_RESET_NEEDED) {
  1466. adapter->flags &= ~I40EVF_FLAG_RESET_NEEDED;
  1467. /* Restart the AQ here. If we have been reset but didn't
  1468. * detect it, or if the PF had to reinit, our AQ will be hosed.
  1469. */
  1470. i40evf_shutdown_adminq(hw);
  1471. i40evf_init_adminq(hw);
  1472. i40evf_request_reset(adapter);
  1473. }
  1474. adapter->flags |= I40EVF_FLAG_RESET_PENDING;
  1475. /* poll until we see the reset actually happen */
  1476. for (i = 0; i < I40EVF_RESET_WAIT_COUNT; i++) {
  1477. reg_val = rd32(hw, I40E_VF_ARQLEN1) &
  1478. I40E_VF_ARQLEN1_ARQENABLE_MASK;
  1479. if (!reg_val)
  1480. break;
  1481. usleep_range(5000, 10000);
  1482. }
  1483. if (i == I40EVF_RESET_WAIT_COUNT) {
  1484. dev_info(&adapter->pdev->dev, "Never saw reset\n");
  1485. goto continue_reset; /* act like the reset happened */
  1486. }
  1487. /* wait until the reset is complete and the PF is responding to us */
  1488. for (i = 0; i < I40EVF_RESET_WAIT_COUNT; i++) {
  1489. reg_val = rd32(hw, I40E_VFGEN_RSTAT) &
  1490. I40E_VFGEN_RSTAT_VFR_STATE_MASK;
  1491. if (reg_val == I40E_VFR_VFACTIVE)
  1492. break;
  1493. msleep(I40EVF_RESET_WAIT_MS);
  1494. }
  1495. pci_set_master(adapter->pdev);
  1496. /* extra wait to make sure minimum wait is met */
  1497. msleep(I40EVF_RESET_WAIT_MS);
  1498. if (i == I40EVF_RESET_WAIT_COUNT) {
  1499. struct i40evf_mac_filter *ftmp;
  1500. struct i40evf_vlan_filter *fv, *fvtmp;
  1501. /* reset never finished */
  1502. dev_err(&adapter->pdev->dev, "Reset never finished (%x)\n",
  1503. reg_val);
  1504. adapter->flags |= I40EVF_FLAG_PF_COMMS_FAILED;
  1505. if (netif_running(adapter->netdev)) {
  1506. set_bit(__I40E_DOWN, &adapter->vsi.state);
  1507. netif_carrier_off(netdev);
  1508. netif_tx_disable(netdev);
  1509. i40evf_napi_disable_all(adapter);
  1510. i40evf_irq_disable(adapter);
  1511. i40evf_free_traffic_irqs(adapter);
  1512. i40evf_free_all_tx_resources(adapter);
  1513. i40evf_free_all_rx_resources(adapter);
  1514. }
  1515. /* Delete all of the filters, both MAC and VLAN. */
  1516. list_for_each_entry_safe(f, ftmp, &adapter->mac_filter_list,
  1517. list) {
  1518. list_del(&f->list);
  1519. kfree(f);
  1520. }
  1521. list_for_each_entry_safe(fv, fvtmp, &adapter->vlan_filter_list,
  1522. list) {
  1523. list_del(&fv->list);
  1524. kfree(fv);
  1525. }
  1526. i40evf_free_misc_irq(adapter);
  1527. i40evf_reset_interrupt_capability(adapter);
  1528. i40evf_free_queues(adapter);
  1529. i40evf_free_q_vectors(adapter);
  1530. kfree(adapter->vf_res);
  1531. i40evf_shutdown_adminq(hw);
  1532. adapter->netdev->flags &= ~IFF_UP;
  1533. clear_bit(__I40EVF_IN_CRITICAL_TASK, &adapter->crit_section);
  1534. adapter->flags &= ~I40EVF_FLAG_RESET_PENDING;
  1535. adapter->state = __I40EVF_DOWN;
  1536. dev_info(&adapter->pdev->dev, "Reset task did not complete, VF disabled\n");
  1537. return; /* Do not attempt to reinit. It's dead, Jim. */
  1538. }
  1539. continue_reset:
  1540. if (netif_running(adapter->netdev)) {
  1541. netif_carrier_off(netdev);
  1542. netif_tx_stop_all_queues(netdev);
  1543. i40evf_napi_disable_all(adapter);
  1544. }
  1545. i40evf_irq_disable(adapter);
  1546. adapter->state = __I40EVF_RESETTING;
  1547. adapter->flags &= ~I40EVF_FLAG_RESET_PENDING;
  1548. /* free the Tx/Rx rings and descriptors, might be better to just
  1549. * re-use them sometime in the future
  1550. */
  1551. i40evf_free_all_rx_resources(adapter);
  1552. i40evf_free_all_tx_resources(adapter);
  1553. /* kill and reinit the admin queue */
  1554. if (i40evf_shutdown_adminq(hw))
  1555. dev_warn(&adapter->pdev->dev, "Failed to shut down adminq\n");
  1556. adapter->current_op = I40E_VIRTCHNL_OP_UNKNOWN;
  1557. err = i40evf_init_adminq(hw);
  1558. if (err)
  1559. dev_info(&adapter->pdev->dev, "Failed to init adminq: %d\n",
  1560. err);
  1561. adapter->aq_required = I40EVF_FLAG_AQ_GET_CONFIG;
  1562. adapter->aq_required |= I40EVF_FLAG_AQ_MAP_VECTORS;
  1563. /* re-add all MAC filters */
  1564. list_for_each_entry(f, &adapter->mac_filter_list, list) {
  1565. f->add = true;
  1566. }
  1567. /* re-add all VLAN filters */
  1568. list_for_each_entry(vlf, &adapter->vlan_filter_list, list) {
  1569. vlf->add = true;
  1570. }
  1571. adapter->aq_required |= I40EVF_FLAG_AQ_ADD_MAC_FILTER;
  1572. adapter->aq_required |= I40EVF_FLAG_AQ_ADD_VLAN_FILTER;
  1573. clear_bit(__I40EVF_IN_CRITICAL_TASK, &adapter->crit_section);
  1574. i40evf_misc_irq_enable(adapter);
  1575. mod_timer(&adapter->watchdog_timer, jiffies + 2);
  1576. if (netif_running(adapter->netdev)) {
  1577. /* allocate transmit descriptors */
  1578. err = i40evf_setup_all_tx_resources(adapter);
  1579. if (err)
  1580. goto reset_err;
  1581. /* allocate receive descriptors */
  1582. err = i40evf_setup_all_rx_resources(adapter);
  1583. if (err)
  1584. goto reset_err;
  1585. i40evf_configure(adapter);
  1586. err = i40evf_up_complete(adapter);
  1587. if (err)
  1588. goto reset_err;
  1589. i40evf_irq_enable(adapter, true);
  1590. } else {
  1591. adapter->state = __I40EVF_DOWN;
  1592. }
  1593. return;
  1594. reset_err:
  1595. dev_err(&adapter->pdev->dev, "failed to allocate resources during reinit\n");
  1596. i40evf_close(adapter->netdev);
  1597. }
  1598. /**
  1599. * i40evf_adminq_task - worker thread to clean the admin queue
  1600. * @work: pointer to work_struct containing our data
  1601. **/
  1602. static void i40evf_adminq_task(struct work_struct *work)
  1603. {
  1604. struct i40evf_adapter *adapter =
  1605. container_of(work, struct i40evf_adapter, adminq_task);
  1606. struct i40e_hw *hw = &adapter->hw;
  1607. struct i40e_arq_event_info event;
  1608. struct i40e_virtchnl_msg *v_msg;
  1609. i40e_status ret;
  1610. u32 val, oldval;
  1611. u16 pending;
  1612. if (adapter->flags & I40EVF_FLAG_PF_COMMS_FAILED)
  1613. goto out;
  1614. event.buf_len = I40EVF_MAX_AQ_BUF_SIZE;
  1615. event.msg_buf = kzalloc(event.buf_len, GFP_KERNEL);
  1616. if (!event.msg_buf)
  1617. goto out;
  1618. v_msg = (struct i40e_virtchnl_msg *)&event.desc;
  1619. do {
  1620. ret = i40evf_clean_arq_element(hw, &event, &pending);
  1621. if (ret || !v_msg->v_opcode)
  1622. break; /* No event to process or error cleaning ARQ */
  1623. i40evf_virtchnl_completion(adapter, v_msg->v_opcode,
  1624. v_msg->v_retval, event.msg_buf,
  1625. event.msg_len);
  1626. if (pending != 0)
  1627. memset(event.msg_buf, 0, I40EVF_MAX_AQ_BUF_SIZE);
  1628. } while (pending);
  1629. if ((adapter->flags &
  1630. (I40EVF_FLAG_RESET_PENDING | I40EVF_FLAG_RESET_NEEDED)) ||
  1631. adapter->state == __I40EVF_RESETTING)
  1632. goto freedom;
  1633. /* check for error indications */
  1634. val = rd32(hw, hw->aq.arq.len);
  1635. if (val == 0xdeadbeef) /* indicates device in reset */
  1636. goto freedom;
  1637. oldval = val;
  1638. if (val & I40E_VF_ARQLEN1_ARQVFE_MASK) {
  1639. dev_info(&adapter->pdev->dev, "ARQ VF Error detected\n");
  1640. val &= ~I40E_VF_ARQLEN1_ARQVFE_MASK;
  1641. }
  1642. if (val & I40E_VF_ARQLEN1_ARQOVFL_MASK) {
  1643. dev_info(&adapter->pdev->dev, "ARQ Overflow Error detected\n");
  1644. val &= ~I40E_VF_ARQLEN1_ARQOVFL_MASK;
  1645. }
  1646. if (val & I40E_VF_ARQLEN1_ARQCRIT_MASK) {
  1647. dev_info(&adapter->pdev->dev, "ARQ Critical Error detected\n");
  1648. val &= ~I40E_VF_ARQLEN1_ARQCRIT_MASK;
  1649. }
  1650. if (oldval != val)
  1651. wr32(hw, hw->aq.arq.len, val);
  1652. val = rd32(hw, hw->aq.asq.len);
  1653. oldval = val;
  1654. if (val & I40E_VF_ATQLEN1_ATQVFE_MASK) {
  1655. dev_info(&adapter->pdev->dev, "ASQ VF Error detected\n");
  1656. val &= ~I40E_VF_ATQLEN1_ATQVFE_MASK;
  1657. }
  1658. if (val & I40E_VF_ATQLEN1_ATQOVFL_MASK) {
  1659. dev_info(&adapter->pdev->dev, "ASQ Overflow Error detected\n");
  1660. val &= ~I40E_VF_ATQLEN1_ATQOVFL_MASK;
  1661. }
  1662. if (val & I40E_VF_ATQLEN1_ATQCRIT_MASK) {
  1663. dev_info(&adapter->pdev->dev, "ASQ Critical Error detected\n");
  1664. val &= ~I40E_VF_ATQLEN1_ATQCRIT_MASK;
  1665. }
  1666. if (oldval != val)
  1667. wr32(hw, hw->aq.asq.len, val);
  1668. freedom:
  1669. kfree(event.msg_buf);
  1670. out:
  1671. /* re-enable Admin queue interrupt cause */
  1672. i40evf_misc_irq_enable(adapter);
  1673. }
  1674. /**
  1675. * i40evf_free_all_tx_resources - Free Tx Resources for All Queues
  1676. * @adapter: board private structure
  1677. *
  1678. * Free all transmit software resources
  1679. **/
  1680. void i40evf_free_all_tx_resources(struct i40evf_adapter *adapter)
  1681. {
  1682. int i;
  1683. if (!adapter->tx_rings)
  1684. return;
  1685. for (i = 0; i < adapter->num_active_queues; i++)
  1686. if (adapter->tx_rings[i].desc)
  1687. i40evf_free_tx_resources(&adapter->tx_rings[i]);
  1688. }
  1689. /**
  1690. * i40evf_setup_all_tx_resources - allocate all queues Tx resources
  1691. * @adapter: board private structure
  1692. *
  1693. * If this function returns with an error, then it's possible one or
  1694. * more of the rings is populated (while the rest are not). It is the
  1695. * callers duty to clean those orphaned rings.
  1696. *
  1697. * Return 0 on success, negative on failure
  1698. **/
  1699. static int i40evf_setup_all_tx_resources(struct i40evf_adapter *adapter)
  1700. {
  1701. int i, err = 0;
  1702. for (i = 0; i < adapter->num_active_queues; i++) {
  1703. adapter->tx_rings[i].count = adapter->tx_desc_count;
  1704. err = i40evf_setup_tx_descriptors(&adapter->tx_rings[i]);
  1705. if (!err)
  1706. continue;
  1707. dev_err(&adapter->pdev->dev,
  1708. "Allocation for Tx Queue %u failed\n", i);
  1709. break;
  1710. }
  1711. return err;
  1712. }
  1713. /**
  1714. * i40evf_setup_all_rx_resources - allocate all queues Rx resources
  1715. * @adapter: board private structure
  1716. *
  1717. * If this function returns with an error, then it's possible one or
  1718. * more of the rings is populated (while the rest are not). It is the
  1719. * callers duty to clean those orphaned rings.
  1720. *
  1721. * Return 0 on success, negative on failure
  1722. **/
  1723. static int i40evf_setup_all_rx_resources(struct i40evf_adapter *adapter)
  1724. {
  1725. int i, err = 0;
  1726. for (i = 0; i < adapter->num_active_queues; i++) {
  1727. adapter->rx_rings[i].count = adapter->rx_desc_count;
  1728. err = i40evf_setup_rx_descriptors(&adapter->rx_rings[i]);
  1729. if (!err)
  1730. continue;
  1731. dev_err(&adapter->pdev->dev,
  1732. "Allocation for Rx Queue %u failed\n", i);
  1733. break;
  1734. }
  1735. return err;
  1736. }
  1737. /**
  1738. * i40evf_free_all_rx_resources - Free Rx Resources for All Queues
  1739. * @adapter: board private structure
  1740. *
  1741. * Free all receive software resources
  1742. **/
  1743. void i40evf_free_all_rx_resources(struct i40evf_adapter *adapter)
  1744. {
  1745. int i;
  1746. if (!adapter->rx_rings)
  1747. return;
  1748. for (i = 0; i < adapter->num_active_queues; i++)
  1749. if (adapter->rx_rings[i].desc)
  1750. i40evf_free_rx_resources(&adapter->rx_rings[i]);
  1751. }
  1752. /**
  1753. * i40evf_open - Called when a network interface is made active
  1754. * @netdev: network interface device structure
  1755. *
  1756. * Returns 0 on success, negative value on failure
  1757. *
  1758. * The open entry point is called when a network interface is made
  1759. * active by the system (IFF_UP). At this point all resources needed
  1760. * for transmit and receive operations are allocated, the interrupt
  1761. * handler is registered with the OS, the watchdog timer is started,
  1762. * and the stack is notified that the interface is ready.
  1763. **/
  1764. static int i40evf_open(struct net_device *netdev)
  1765. {
  1766. struct i40evf_adapter *adapter = netdev_priv(netdev);
  1767. int err;
  1768. if (adapter->flags & I40EVF_FLAG_PF_COMMS_FAILED) {
  1769. dev_err(&adapter->pdev->dev, "Unable to open device due to PF driver failure.\n");
  1770. return -EIO;
  1771. }
  1772. if (adapter->state != __I40EVF_DOWN)
  1773. return -EBUSY;
  1774. /* allocate transmit descriptors */
  1775. err = i40evf_setup_all_tx_resources(adapter);
  1776. if (err)
  1777. goto err_setup_tx;
  1778. /* allocate receive descriptors */
  1779. err = i40evf_setup_all_rx_resources(adapter);
  1780. if (err)
  1781. goto err_setup_rx;
  1782. /* clear any pending interrupts, may auto mask */
  1783. err = i40evf_request_traffic_irqs(adapter, netdev->name);
  1784. if (err)
  1785. goto err_req_irq;
  1786. i40evf_add_filter(adapter, adapter->hw.mac.addr);
  1787. i40evf_configure(adapter);
  1788. err = i40evf_up_complete(adapter);
  1789. if (err)
  1790. goto err_req_irq;
  1791. i40evf_irq_enable(adapter, true);
  1792. return 0;
  1793. err_req_irq:
  1794. i40evf_down(adapter);
  1795. i40evf_free_traffic_irqs(adapter);
  1796. err_setup_rx:
  1797. i40evf_free_all_rx_resources(adapter);
  1798. err_setup_tx:
  1799. i40evf_free_all_tx_resources(adapter);
  1800. return err;
  1801. }
  1802. /**
  1803. * i40evf_close - Disables a network interface
  1804. * @netdev: network interface device structure
  1805. *
  1806. * Returns 0, this is not allowed to fail
  1807. *
  1808. * The close entry point is called when an interface is de-activated
  1809. * by the OS. The hardware is still under the drivers control, but
  1810. * needs to be disabled. All IRQs except vector 0 (reserved for admin queue)
  1811. * are freed, along with all transmit and receive resources.
  1812. **/
  1813. static int i40evf_close(struct net_device *netdev)
  1814. {
  1815. struct i40evf_adapter *adapter = netdev_priv(netdev);
  1816. if (adapter->state <= __I40EVF_DOWN_PENDING)
  1817. return 0;
  1818. set_bit(__I40E_DOWN, &adapter->vsi.state);
  1819. i40evf_down(adapter);
  1820. adapter->state = __I40EVF_DOWN_PENDING;
  1821. i40evf_free_traffic_irqs(adapter);
  1822. return 0;
  1823. }
  1824. /**
  1825. * i40evf_get_stats - Get System Network Statistics
  1826. * @netdev: network interface device structure
  1827. *
  1828. * Returns the address of the device statistics structure.
  1829. * The statistics are actually updated from the timer callback.
  1830. **/
  1831. static struct net_device_stats *i40evf_get_stats(struct net_device *netdev)
  1832. {
  1833. struct i40evf_adapter *adapter = netdev_priv(netdev);
  1834. /* only return the current stats */
  1835. return &adapter->net_stats;
  1836. }
  1837. /**
  1838. * i40evf_change_mtu - Change the Maximum Transfer Unit
  1839. * @netdev: network interface device structure
  1840. * @new_mtu: new value for maximum frame size
  1841. *
  1842. * Returns 0 on success, negative on failure
  1843. **/
  1844. static int i40evf_change_mtu(struct net_device *netdev, int new_mtu)
  1845. {
  1846. struct i40evf_adapter *adapter = netdev_priv(netdev);
  1847. int max_frame = new_mtu + ETH_HLEN + ETH_FCS_LEN;
  1848. if ((new_mtu < 68) || (max_frame > I40E_MAX_RXBUFFER))
  1849. return -EINVAL;
  1850. netdev->mtu = new_mtu;
  1851. adapter->flags |= I40EVF_FLAG_RESET_NEEDED;
  1852. schedule_work(&adapter->reset_task);
  1853. return 0;
  1854. }
  1855. #define I40EVF_VLAN_FEATURES (NETIF_F_HW_VLAN_CTAG_TX |\
  1856. NETIF_F_HW_VLAN_CTAG_RX |\
  1857. NETIF_F_HW_VLAN_CTAG_FILTER)
  1858. /**
  1859. * i40evf_fix_features - fix up the netdev feature bits
  1860. * @netdev: our net device
  1861. * @features: desired feature bits
  1862. *
  1863. * Returns fixed-up features bits
  1864. **/
  1865. static netdev_features_t i40evf_fix_features(struct net_device *netdev,
  1866. netdev_features_t features)
  1867. {
  1868. struct i40evf_adapter *adapter = netdev_priv(netdev);
  1869. features &= ~I40EVF_VLAN_FEATURES;
  1870. if (adapter->vf_res->vf_offload_flags & I40E_VIRTCHNL_VF_OFFLOAD_VLAN)
  1871. features |= I40EVF_VLAN_FEATURES;
  1872. return features;
  1873. }
  1874. static const struct net_device_ops i40evf_netdev_ops = {
  1875. .ndo_open = i40evf_open,
  1876. .ndo_stop = i40evf_close,
  1877. .ndo_start_xmit = i40evf_xmit_frame,
  1878. .ndo_get_stats = i40evf_get_stats,
  1879. .ndo_set_rx_mode = i40evf_set_rx_mode,
  1880. .ndo_validate_addr = eth_validate_addr,
  1881. .ndo_set_mac_address = i40evf_set_mac,
  1882. .ndo_change_mtu = i40evf_change_mtu,
  1883. .ndo_tx_timeout = i40evf_tx_timeout,
  1884. .ndo_vlan_rx_add_vid = i40evf_vlan_rx_add_vid,
  1885. .ndo_vlan_rx_kill_vid = i40evf_vlan_rx_kill_vid,
  1886. .ndo_fix_features = i40evf_fix_features,
  1887. #ifdef CONFIG_NET_POLL_CONTROLLER
  1888. .ndo_poll_controller = i40evf_netpoll,
  1889. #endif
  1890. };
  1891. /**
  1892. * i40evf_check_reset_complete - check that VF reset is complete
  1893. * @hw: pointer to hw struct
  1894. *
  1895. * Returns 0 if device is ready to use, or -EBUSY if it's in reset.
  1896. **/
  1897. static int i40evf_check_reset_complete(struct i40e_hw *hw)
  1898. {
  1899. u32 rstat;
  1900. int i;
  1901. for (i = 0; i < 100; i++) {
  1902. rstat = rd32(hw, I40E_VFGEN_RSTAT) &
  1903. I40E_VFGEN_RSTAT_VFR_STATE_MASK;
  1904. if ((rstat == I40E_VFR_VFACTIVE) ||
  1905. (rstat == I40E_VFR_COMPLETED))
  1906. return 0;
  1907. usleep_range(10, 20);
  1908. }
  1909. return -EBUSY;
  1910. }
  1911. /**
  1912. * i40evf_process_config - Process the config information we got from the PF
  1913. * @adapter: board private structure
  1914. *
  1915. * Verify that we have a valid config struct, and set up our netdev features
  1916. * and our VSI struct.
  1917. **/
  1918. int i40evf_process_config(struct i40evf_adapter *adapter)
  1919. {
  1920. struct i40e_virtchnl_vf_resource *vfres = adapter->vf_res;
  1921. struct net_device *netdev = adapter->netdev;
  1922. struct i40e_vsi *vsi = &adapter->vsi;
  1923. int i;
  1924. /* got VF config message back from PF, now we can parse it */
  1925. for (i = 0; i < vfres->num_vsis; i++) {
  1926. if (vfres->vsi_res[i].vsi_type == I40E_VSI_SRIOV)
  1927. adapter->vsi_res = &vfres->vsi_res[i];
  1928. }
  1929. if (!adapter->vsi_res) {
  1930. dev_err(&adapter->pdev->dev, "No LAN VSI found\n");
  1931. return -ENODEV;
  1932. }
  1933. netdev->hw_enc_features |= NETIF_F_SG |
  1934. NETIF_F_IP_CSUM |
  1935. NETIF_F_IPV6_CSUM |
  1936. NETIF_F_HIGHDMA |
  1937. NETIF_F_SOFT_FEATURES |
  1938. NETIF_F_TSO |
  1939. NETIF_F_TSO_ECN |
  1940. NETIF_F_TSO6 |
  1941. NETIF_F_GSO_GRE |
  1942. NETIF_F_GSO_GRE_CSUM |
  1943. NETIF_F_GSO_IPIP |
  1944. NETIF_F_GSO_SIT |
  1945. NETIF_F_GSO_UDP_TUNNEL |
  1946. NETIF_F_GSO_UDP_TUNNEL_CSUM |
  1947. NETIF_F_GSO_PARTIAL |
  1948. NETIF_F_SCTP_CRC |
  1949. NETIF_F_RXHASH |
  1950. NETIF_F_RXCSUM |
  1951. 0;
  1952. if (!(adapter->flags & I40EVF_FLAG_OUTER_UDP_CSUM_CAPABLE))
  1953. netdev->gso_partial_features |= NETIF_F_GSO_UDP_TUNNEL_CSUM;
  1954. netdev->gso_partial_features |= NETIF_F_GSO_GRE_CSUM;
  1955. /* record features VLANs can make use of */
  1956. netdev->vlan_features |= netdev->hw_enc_features |
  1957. NETIF_F_TSO_MANGLEID;
  1958. /* Write features and hw_features separately to avoid polluting
  1959. * with, or dropping, features that are set when we registgered.
  1960. */
  1961. netdev->hw_features |= netdev->hw_enc_features;
  1962. netdev->features |= netdev->hw_enc_features | I40EVF_VLAN_FEATURES;
  1963. netdev->hw_enc_features |= NETIF_F_TSO_MANGLEID;
  1964. /* disable VLAN features if not supported */
  1965. if (!(vfres->vf_offload_flags & I40E_VIRTCHNL_VF_OFFLOAD_VLAN))
  1966. netdev->features ^= I40EVF_VLAN_FEATURES;
  1967. adapter->vsi.id = adapter->vsi_res->vsi_id;
  1968. adapter->vsi.back = adapter;
  1969. adapter->vsi.base_vector = 1;
  1970. adapter->vsi.work_limit = I40E_DEFAULT_IRQ_WORK;
  1971. adapter->vsi.rx_itr_setting = (I40E_ITR_DYNAMIC |
  1972. ITR_REG_TO_USEC(I40E_ITR_RX_DEF));
  1973. adapter->vsi.tx_itr_setting = (I40E_ITR_DYNAMIC |
  1974. ITR_REG_TO_USEC(I40E_ITR_TX_DEF));
  1975. vsi->netdev = adapter->netdev;
  1976. vsi->qs_handle = adapter->vsi_res->qset_handle;
  1977. if (vfres->vf_offload_flags & I40E_VIRTCHNL_VF_OFFLOAD_RSS_PF) {
  1978. adapter->rss_key_size = vfres->rss_key_size;
  1979. adapter->rss_lut_size = vfres->rss_lut_size;
  1980. } else {
  1981. adapter->rss_key_size = I40EVF_HKEY_ARRAY_SIZE;
  1982. adapter->rss_lut_size = I40EVF_HLUT_ARRAY_SIZE;
  1983. }
  1984. return 0;
  1985. }
  1986. /**
  1987. * i40evf_init_task - worker thread to perform delayed initialization
  1988. * @work: pointer to work_struct containing our data
  1989. *
  1990. * This task completes the work that was begun in probe. Due to the nature
  1991. * of VF-PF communications, we may need to wait tens of milliseconds to get
  1992. * responses back from the PF. Rather than busy-wait in probe and bog down the
  1993. * whole system, we'll do it in a task so we can sleep.
  1994. * This task only runs during driver init. Once we've established
  1995. * communications with the PF driver and set up our netdev, the watchdog
  1996. * takes over.
  1997. **/
  1998. static void i40evf_init_task(struct work_struct *work)
  1999. {
  2000. struct i40evf_adapter *adapter = container_of(work,
  2001. struct i40evf_adapter,
  2002. init_task.work);
  2003. struct net_device *netdev = adapter->netdev;
  2004. struct i40e_hw *hw = &adapter->hw;
  2005. struct pci_dev *pdev = adapter->pdev;
  2006. int err, bufsz;
  2007. switch (adapter->state) {
  2008. case __I40EVF_STARTUP:
  2009. /* driver loaded, probe complete */
  2010. adapter->flags &= ~I40EVF_FLAG_PF_COMMS_FAILED;
  2011. adapter->flags &= ~I40EVF_FLAG_RESET_PENDING;
  2012. err = i40e_set_mac_type(hw);
  2013. if (err) {
  2014. dev_err(&pdev->dev, "Failed to set MAC type (%d)\n",
  2015. err);
  2016. goto err;
  2017. }
  2018. err = i40evf_check_reset_complete(hw);
  2019. if (err) {
  2020. dev_info(&pdev->dev, "Device is still in reset (%d), retrying\n",
  2021. err);
  2022. goto err;
  2023. }
  2024. hw->aq.num_arq_entries = I40EVF_AQ_LEN;
  2025. hw->aq.num_asq_entries = I40EVF_AQ_LEN;
  2026. hw->aq.arq_buf_size = I40EVF_MAX_AQ_BUF_SIZE;
  2027. hw->aq.asq_buf_size = I40EVF_MAX_AQ_BUF_SIZE;
  2028. err = i40evf_init_adminq(hw);
  2029. if (err) {
  2030. dev_err(&pdev->dev, "Failed to init Admin Queue (%d)\n",
  2031. err);
  2032. goto err;
  2033. }
  2034. err = i40evf_send_api_ver(adapter);
  2035. if (err) {
  2036. dev_err(&pdev->dev, "Unable to send to PF (%d)\n", err);
  2037. i40evf_shutdown_adminq(hw);
  2038. goto err;
  2039. }
  2040. adapter->state = __I40EVF_INIT_VERSION_CHECK;
  2041. goto restart;
  2042. case __I40EVF_INIT_VERSION_CHECK:
  2043. if (!i40evf_asq_done(hw)) {
  2044. dev_err(&pdev->dev, "Admin queue command never completed\n");
  2045. i40evf_shutdown_adminq(hw);
  2046. adapter->state = __I40EVF_STARTUP;
  2047. goto err;
  2048. }
  2049. /* aq msg sent, awaiting reply */
  2050. err = i40evf_verify_api_ver(adapter);
  2051. if (err) {
  2052. if (err == I40E_ERR_ADMIN_QUEUE_NO_WORK)
  2053. err = i40evf_send_api_ver(adapter);
  2054. else
  2055. dev_err(&pdev->dev, "Unsupported PF API version %d.%d, expected %d.%d\n",
  2056. adapter->pf_version.major,
  2057. adapter->pf_version.minor,
  2058. I40E_VIRTCHNL_VERSION_MAJOR,
  2059. I40E_VIRTCHNL_VERSION_MINOR);
  2060. goto err;
  2061. }
  2062. err = i40evf_send_vf_config_msg(adapter);
  2063. if (err) {
  2064. dev_err(&pdev->dev, "Unable to send config request (%d)\n",
  2065. err);
  2066. goto err;
  2067. }
  2068. adapter->state = __I40EVF_INIT_GET_RESOURCES;
  2069. goto restart;
  2070. case __I40EVF_INIT_GET_RESOURCES:
  2071. /* aq msg sent, awaiting reply */
  2072. if (!adapter->vf_res) {
  2073. bufsz = sizeof(struct i40e_virtchnl_vf_resource) +
  2074. (I40E_MAX_VF_VSI *
  2075. sizeof(struct i40e_virtchnl_vsi_resource));
  2076. adapter->vf_res = kzalloc(bufsz, GFP_KERNEL);
  2077. if (!adapter->vf_res)
  2078. goto err;
  2079. }
  2080. err = i40evf_get_vf_config(adapter);
  2081. if (err == I40E_ERR_ADMIN_QUEUE_NO_WORK) {
  2082. err = i40evf_send_vf_config_msg(adapter);
  2083. goto err;
  2084. } else if (err == I40E_ERR_PARAM) {
  2085. /* We only get ERR_PARAM if the device is in a very bad
  2086. * state or if we've been disabled for previous bad
  2087. * behavior. Either way, we're done now.
  2088. */
  2089. i40evf_shutdown_adminq(hw);
  2090. dev_err(&pdev->dev, "Unable to get VF config due to PF error condition, not retrying\n");
  2091. return;
  2092. }
  2093. if (err) {
  2094. dev_err(&pdev->dev, "Unable to get VF config (%d)\n",
  2095. err);
  2096. goto err_alloc;
  2097. }
  2098. adapter->state = __I40EVF_INIT_SW;
  2099. break;
  2100. default:
  2101. goto err_alloc;
  2102. }
  2103. if (hw->mac.type == I40E_MAC_X722_VF)
  2104. adapter->flags |= I40EVF_FLAG_OUTER_UDP_CSUM_CAPABLE;
  2105. if (i40evf_process_config(adapter))
  2106. goto err_alloc;
  2107. adapter->current_op = I40E_VIRTCHNL_OP_UNKNOWN;
  2108. adapter->flags |= I40EVF_FLAG_RX_CSUM_ENABLED;
  2109. adapter->flags |= I40EVF_FLAG_RX_1BUF_CAPABLE;
  2110. adapter->flags |= I40EVF_FLAG_RX_PS_CAPABLE;
  2111. /* Default to single buffer rx, can be changed through ethtool. */
  2112. adapter->flags &= ~I40EVF_FLAG_RX_PS_ENABLED;
  2113. netdev->netdev_ops = &i40evf_netdev_ops;
  2114. i40evf_set_ethtool_ops(netdev);
  2115. netdev->watchdog_timeo = 5 * HZ;
  2116. if (!is_valid_ether_addr(adapter->hw.mac.addr)) {
  2117. dev_info(&pdev->dev, "Invalid MAC address %pM, using random\n",
  2118. adapter->hw.mac.addr);
  2119. eth_hw_addr_random(netdev);
  2120. ether_addr_copy(adapter->hw.mac.addr, netdev->dev_addr);
  2121. } else {
  2122. adapter->flags |= I40EVF_FLAG_ADDR_SET_BY_PF;
  2123. ether_addr_copy(netdev->dev_addr, adapter->hw.mac.addr);
  2124. ether_addr_copy(netdev->perm_addr, adapter->hw.mac.addr);
  2125. }
  2126. init_timer(&adapter->watchdog_timer);
  2127. adapter->watchdog_timer.function = &i40evf_watchdog_timer;
  2128. adapter->watchdog_timer.data = (unsigned long)adapter;
  2129. mod_timer(&adapter->watchdog_timer, jiffies + 1);
  2130. adapter->num_active_queues = min_t(int,
  2131. adapter->vsi_res->num_queue_pairs,
  2132. (int)(num_online_cpus()));
  2133. adapter->tx_desc_count = I40EVF_DEFAULT_TXD;
  2134. adapter->rx_desc_count = I40EVF_DEFAULT_RXD;
  2135. err = i40evf_init_interrupt_scheme(adapter);
  2136. if (err)
  2137. goto err_sw_init;
  2138. i40evf_map_rings_to_vectors(adapter);
  2139. if (adapter->vf_res->vf_offload_flags &
  2140. I40E_VIRTCHNL_VF_OFFLOAD_WB_ON_ITR)
  2141. adapter->flags |= I40EVF_FLAG_WB_ON_ITR_CAPABLE;
  2142. err = i40evf_request_misc_irq(adapter);
  2143. if (err)
  2144. goto err_sw_init;
  2145. netif_carrier_off(netdev);
  2146. if (!adapter->netdev_registered) {
  2147. err = register_netdev(netdev);
  2148. if (err)
  2149. goto err_register;
  2150. }
  2151. adapter->netdev_registered = true;
  2152. netif_tx_stop_all_queues(netdev);
  2153. dev_info(&pdev->dev, "MAC address: %pM\n", adapter->hw.mac.addr);
  2154. if (netdev->features & NETIF_F_GRO)
  2155. dev_info(&pdev->dev, "GRO is enabled\n");
  2156. adapter->state = __I40EVF_DOWN;
  2157. set_bit(__I40E_DOWN, &adapter->vsi.state);
  2158. i40evf_misc_irq_enable(adapter);
  2159. adapter->rss_key = kzalloc(adapter->rss_key_size, GFP_KERNEL);
  2160. adapter->rss_lut = kzalloc(adapter->rss_lut_size, GFP_KERNEL);
  2161. if (!adapter->rss_key || !adapter->rss_lut)
  2162. goto err_mem;
  2163. if (RSS_AQ(adapter)) {
  2164. adapter->aq_required |= I40EVF_FLAG_AQ_CONFIGURE_RSS;
  2165. mod_timer_pending(&adapter->watchdog_timer, jiffies + 1);
  2166. } else {
  2167. i40evf_init_rss(adapter);
  2168. }
  2169. return;
  2170. restart:
  2171. schedule_delayed_work(&adapter->init_task, msecs_to_jiffies(30));
  2172. return;
  2173. err_mem:
  2174. i40evf_free_rss(adapter);
  2175. err_register:
  2176. i40evf_free_misc_irq(adapter);
  2177. err_sw_init:
  2178. i40evf_reset_interrupt_capability(adapter);
  2179. err_alloc:
  2180. kfree(adapter->vf_res);
  2181. adapter->vf_res = NULL;
  2182. err:
  2183. /* Things went into the weeds, so try again later */
  2184. if (++adapter->aq_wait_count > I40EVF_AQ_MAX_ERR) {
  2185. dev_err(&pdev->dev, "Failed to communicate with PF; waiting before retry\n");
  2186. adapter->flags |= I40EVF_FLAG_PF_COMMS_FAILED;
  2187. i40evf_shutdown_adminq(hw);
  2188. adapter->state = __I40EVF_STARTUP;
  2189. schedule_delayed_work(&adapter->init_task, HZ * 5);
  2190. return;
  2191. }
  2192. schedule_delayed_work(&adapter->init_task, HZ);
  2193. }
  2194. /**
  2195. * i40evf_shutdown - Shutdown the device in preparation for a reboot
  2196. * @pdev: pci device structure
  2197. **/
  2198. static void i40evf_shutdown(struct pci_dev *pdev)
  2199. {
  2200. struct net_device *netdev = pci_get_drvdata(pdev);
  2201. struct i40evf_adapter *adapter = netdev_priv(netdev);
  2202. netif_device_detach(netdev);
  2203. if (netif_running(netdev))
  2204. i40evf_close(netdev);
  2205. /* Prevent the watchdog from running. */
  2206. adapter->state = __I40EVF_REMOVE;
  2207. adapter->aq_required = 0;
  2208. #ifdef CONFIG_PM
  2209. pci_save_state(pdev);
  2210. #endif
  2211. pci_disable_device(pdev);
  2212. }
  2213. /**
  2214. * i40evf_probe - Device Initialization Routine
  2215. * @pdev: PCI device information struct
  2216. * @ent: entry in i40evf_pci_tbl
  2217. *
  2218. * Returns 0 on success, negative on failure
  2219. *
  2220. * i40evf_probe initializes an adapter identified by a pci_dev structure.
  2221. * The OS initialization, configuring of the adapter private structure,
  2222. * and a hardware reset occur.
  2223. **/
  2224. static int i40evf_probe(struct pci_dev *pdev, const struct pci_device_id *ent)
  2225. {
  2226. struct net_device *netdev;
  2227. struct i40evf_adapter *adapter = NULL;
  2228. struct i40e_hw *hw = NULL;
  2229. int err;
  2230. err = pci_enable_device(pdev);
  2231. if (err)
  2232. return err;
  2233. err = dma_set_mask_and_coherent(&pdev->dev, DMA_BIT_MASK(64));
  2234. if (err) {
  2235. err = dma_set_mask_and_coherent(&pdev->dev, DMA_BIT_MASK(32));
  2236. if (err) {
  2237. dev_err(&pdev->dev,
  2238. "DMA configuration failed: 0x%x\n", err);
  2239. goto err_dma;
  2240. }
  2241. }
  2242. err = pci_request_regions(pdev, i40evf_driver_name);
  2243. if (err) {
  2244. dev_err(&pdev->dev,
  2245. "pci_request_regions failed 0x%x\n", err);
  2246. goto err_pci_reg;
  2247. }
  2248. pci_enable_pcie_error_reporting(pdev);
  2249. pci_set_master(pdev);
  2250. netdev = alloc_etherdev_mq(sizeof(struct i40evf_adapter), MAX_QUEUES);
  2251. if (!netdev) {
  2252. err = -ENOMEM;
  2253. goto err_alloc_etherdev;
  2254. }
  2255. SET_NETDEV_DEV(netdev, &pdev->dev);
  2256. pci_set_drvdata(pdev, netdev);
  2257. adapter = netdev_priv(netdev);
  2258. adapter->netdev = netdev;
  2259. adapter->pdev = pdev;
  2260. hw = &adapter->hw;
  2261. hw->back = adapter;
  2262. adapter->msg_enable = BIT(DEFAULT_DEBUG_LEVEL_SHIFT) - 1;
  2263. adapter->state = __I40EVF_STARTUP;
  2264. /* Call save state here because it relies on the adapter struct. */
  2265. pci_save_state(pdev);
  2266. hw->hw_addr = ioremap(pci_resource_start(pdev, 0),
  2267. pci_resource_len(pdev, 0));
  2268. if (!hw->hw_addr) {
  2269. err = -EIO;
  2270. goto err_ioremap;
  2271. }
  2272. hw->vendor_id = pdev->vendor;
  2273. hw->device_id = pdev->device;
  2274. pci_read_config_byte(pdev, PCI_REVISION_ID, &hw->revision_id);
  2275. hw->subsystem_vendor_id = pdev->subsystem_vendor;
  2276. hw->subsystem_device_id = pdev->subsystem_device;
  2277. hw->bus.device = PCI_SLOT(pdev->devfn);
  2278. hw->bus.func = PCI_FUNC(pdev->devfn);
  2279. /* set up the locks for the AQ, do this only once in probe
  2280. * and destroy them only once in remove
  2281. */
  2282. mutex_init(&hw->aq.asq_mutex);
  2283. mutex_init(&hw->aq.arq_mutex);
  2284. INIT_LIST_HEAD(&adapter->mac_filter_list);
  2285. INIT_LIST_HEAD(&adapter->vlan_filter_list);
  2286. INIT_WORK(&adapter->reset_task, i40evf_reset_task);
  2287. INIT_WORK(&adapter->adminq_task, i40evf_adminq_task);
  2288. INIT_WORK(&adapter->watchdog_task, i40evf_watchdog_task);
  2289. INIT_DELAYED_WORK(&adapter->init_task, i40evf_init_task);
  2290. schedule_delayed_work(&adapter->init_task,
  2291. msecs_to_jiffies(5 * (pdev->devfn & 0x07)));
  2292. return 0;
  2293. err_ioremap:
  2294. free_netdev(netdev);
  2295. err_alloc_etherdev:
  2296. pci_release_regions(pdev);
  2297. err_pci_reg:
  2298. err_dma:
  2299. pci_disable_device(pdev);
  2300. return err;
  2301. }
  2302. #ifdef CONFIG_PM
  2303. /**
  2304. * i40evf_suspend - Power management suspend routine
  2305. * @pdev: PCI device information struct
  2306. * @state: unused
  2307. *
  2308. * Called when the system (VM) is entering sleep/suspend.
  2309. **/
  2310. static int i40evf_suspend(struct pci_dev *pdev, pm_message_t state)
  2311. {
  2312. struct net_device *netdev = pci_get_drvdata(pdev);
  2313. struct i40evf_adapter *adapter = netdev_priv(netdev);
  2314. int retval = 0;
  2315. netif_device_detach(netdev);
  2316. if (netif_running(netdev)) {
  2317. rtnl_lock();
  2318. i40evf_down(adapter);
  2319. rtnl_unlock();
  2320. }
  2321. i40evf_free_misc_irq(adapter);
  2322. i40evf_reset_interrupt_capability(adapter);
  2323. retval = pci_save_state(pdev);
  2324. if (retval)
  2325. return retval;
  2326. pci_disable_device(pdev);
  2327. return 0;
  2328. }
  2329. /**
  2330. * i40evf_resume - Power management resume routine
  2331. * @pdev: PCI device information struct
  2332. *
  2333. * Called when the system (VM) is resumed from sleep/suspend.
  2334. **/
  2335. static int i40evf_resume(struct pci_dev *pdev)
  2336. {
  2337. struct i40evf_adapter *adapter = pci_get_drvdata(pdev);
  2338. struct net_device *netdev = adapter->netdev;
  2339. u32 err;
  2340. pci_set_power_state(pdev, PCI_D0);
  2341. pci_restore_state(pdev);
  2342. /* pci_restore_state clears dev->state_saved so call
  2343. * pci_save_state to restore it.
  2344. */
  2345. pci_save_state(pdev);
  2346. err = pci_enable_device_mem(pdev);
  2347. if (err) {
  2348. dev_err(&pdev->dev, "Cannot enable PCI device from suspend.\n");
  2349. return err;
  2350. }
  2351. pci_set_master(pdev);
  2352. rtnl_lock();
  2353. err = i40evf_set_interrupt_capability(adapter);
  2354. if (err) {
  2355. rtnl_unlock();
  2356. dev_err(&pdev->dev, "Cannot enable MSI-X interrupts.\n");
  2357. return err;
  2358. }
  2359. err = i40evf_request_misc_irq(adapter);
  2360. rtnl_unlock();
  2361. if (err) {
  2362. dev_err(&pdev->dev, "Cannot get interrupt vector.\n");
  2363. return err;
  2364. }
  2365. schedule_work(&adapter->reset_task);
  2366. netif_device_attach(netdev);
  2367. return err;
  2368. }
  2369. #endif /* CONFIG_PM */
  2370. /**
  2371. * i40evf_remove - Device Removal Routine
  2372. * @pdev: PCI device information struct
  2373. *
  2374. * i40evf_remove is called by the PCI subsystem to alert the driver
  2375. * that it should release a PCI device. The could be caused by a
  2376. * Hot-Plug event, or because the driver is going to be removed from
  2377. * memory.
  2378. **/
  2379. static void i40evf_remove(struct pci_dev *pdev)
  2380. {
  2381. struct net_device *netdev = pci_get_drvdata(pdev);
  2382. struct i40evf_adapter *adapter = netdev_priv(netdev);
  2383. struct i40evf_mac_filter *f, *ftmp;
  2384. struct i40e_hw *hw = &adapter->hw;
  2385. cancel_delayed_work_sync(&adapter->init_task);
  2386. cancel_work_sync(&adapter->reset_task);
  2387. if (adapter->netdev_registered) {
  2388. unregister_netdev(netdev);
  2389. adapter->netdev_registered = false;
  2390. }
  2391. /* Shut down all the garbage mashers on the detention level */
  2392. adapter->state = __I40EVF_REMOVE;
  2393. adapter->aq_required = 0;
  2394. i40evf_request_reset(adapter);
  2395. msleep(50);
  2396. /* If the FW isn't responding, kick it once, but only once. */
  2397. if (!i40evf_asq_done(hw)) {
  2398. i40evf_request_reset(adapter);
  2399. msleep(50);
  2400. }
  2401. if (adapter->msix_entries) {
  2402. i40evf_misc_irq_disable(adapter);
  2403. i40evf_free_misc_irq(adapter);
  2404. i40evf_reset_interrupt_capability(adapter);
  2405. i40evf_free_q_vectors(adapter);
  2406. }
  2407. if (adapter->watchdog_timer.function)
  2408. del_timer_sync(&adapter->watchdog_timer);
  2409. flush_scheduled_work();
  2410. i40evf_free_rss(adapter);
  2411. if (hw->aq.asq.count)
  2412. i40evf_shutdown_adminq(hw);
  2413. /* destroy the locks only once, here */
  2414. mutex_destroy(&hw->aq.arq_mutex);
  2415. mutex_destroy(&hw->aq.asq_mutex);
  2416. iounmap(hw->hw_addr);
  2417. pci_release_regions(pdev);
  2418. i40evf_free_all_tx_resources(adapter);
  2419. i40evf_free_all_rx_resources(adapter);
  2420. i40evf_free_queues(adapter);
  2421. kfree(adapter->vf_res);
  2422. /* If we got removed before an up/down sequence, we've got a filter
  2423. * hanging out there that we need to get rid of.
  2424. */
  2425. list_for_each_entry_safe(f, ftmp, &adapter->mac_filter_list, list) {
  2426. list_del(&f->list);
  2427. kfree(f);
  2428. }
  2429. list_for_each_entry_safe(f, ftmp, &adapter->vlan_filter_list, list) {
  2430. list_del(&f->list);
  2431. kfree(f);
  2432. }
  2433. free_netdev(netdev);
  2434. pci_disable_pcie_error_reporting(pdev);
  2435. pci_disable_device(pdev);
  2436. }
  2437. static struct pci_driver i40evf_driver = {
  2438. .name = i40evf_driver_name,
  2439. .id_table = i40evf_pci_tbl,
  2440. .probe = i40evf_probe,
  2441. .remove = i40evf_remove,
  2442. #ifdef CONFIG_PM
  2443. .suspend = i40evf_suspend,
  2444. .resume = i40evf_resume,
  2445. #endif
  2446. .shutdown = i40evf_shutdown,
  2447. };
  2448. /**
  2449. * i40e_init_module - Driver Registration Routine
  2450. *
  2451. * i40e_init_module is the first routine called when the driver is
  2452. * loaded. All it does is register with the PCI subsystem.
  2453. **/
  2454. static int __init i40evf_init_module(void)
  2455. {
  2456. int ret;
  2457. pr_info("i40evf: %s - version %s\n", i40evf_driver_string,
  2458. i40evf_driver_version);
  2459. pr_info("%s\n", i40evf_copyright);
  2460. i40evf_wq = create_singlethread_workqueue(i40evf_driver_name);
  2461. if (!i40evf_wq) {
  2462. pr_err("%s: Failed to create workqueue\n", i40evf_driver_name);
  2463. return -ENOMEM;
  2464. }
  2465. ret = pci_register_driver(&i40evf_driver);
  2466. return ret;
  2467. }
  2468. module_init(i40evf_init_module);
  2469. /**
  2470. * i40e_exit_module - Driver Exit Cleanup Routine
  2471. *
  2472. * i40e_exit_module is called just before the driver is removed
  2473. * from memory.
  2474. **/
  2475. static void __exit i40evf_exit_module(void)
  2476. {
  2477. pci_unregister_driver(&i40evf_driver);
  2478. destroy_workqueue(i40evf_wq);
  2479. }
  2480. module_exit(i40evf_exit_module);
  2481. /* i40evf_main.c */