i40evf_main.c 66 KB

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