i40e_debugfs.c 69 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193
  1. /*******************************************************************************
  2. *
  3. * Intel Ethernet Controller XL710 Family Linux 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. #ifdef CONFIG_DEBUG_FS
  27. #include <linux/fs.h>
  28. #include <linux/debugfs.h>
  29. #include "i40e.h"
  30. static struct dentry *i40e_dbg_root;
  31. /**
  32. * i40e_dbg_find_vsi - searches for the vsi with the given seid
  33. * @pf - the pf structure to search for the vsi
  34. * @seid - seid of the vsi it is searching for
  35. **/
  36. static struct i40e_vsi *i40e_dbg_find_vsi(struct i40e_pf *pf, int seid)
  37. {
  38. int i;
  39. if (seid < 0)
  40. dev_info(&pf->pdev->dev, "%d: bad seid\n", seid);
  41. else
  42. for (i = 0; i < pf->num_alloc_vsi; i++)
  43. if (pf->vsi[i] && (pf->vsi[i]->seid == seid))
  44. return pf->vsi[i];
  45. return NULL;
  46. }
  47. /**
  48. * i40e_dbg_find_veb - searches for the veb with the given seid
  49. * @pf - the pf structure to search for the veb
  50. * @seid - seid of the veb it is searching for
  51. **/
  52. static struct i40e_veb *i40e_dbg_find_veb(struct i40e_pf *pf, int seid)
  53. {
  54. int i;
  55. if ((seid < I40E_BASE_VEB_SEID) ||
  56. (seid > (I40E_BASE_VEB_SEID + I40E_MAX_VEB)))
  57. dev_info(&pf->pdev->dev, "%d: bad seid\n", seid);
  58. else
  59. for (i = 0; i < I40E_MAX_VEB; i++)
  60. if (pf->veb[i] && pf->veb[i]->seid == seid)
  61. return pf->veb[i];
  62. return NULL;
  63. }
  64. /**************************************************************
  65. * dump
  66. * The dump entry in debugfs is for getting a data snapshow of
  67. * the driver's current configuration and runtime details.
  68. * When the filesystem entry is written, a snapshot is taken.
  69. * When the entry is read, the most recent snapshot data is dumped.
  70. **************************************************************/
  71. static char *i40e_dbg_dump_buf;
  72. static ssize_t i40e_dbg_dump_data_len;
  73. static ssize_t i40e_dbg_dump_buffer_len;
  74. /**
  75. * i40e_dbg_dump_read - read the dump data
  76. * @filp: the opened file
  77. * @buffer: where to write the data for the user to read
  78. * @count: the size of the user's buffer
  79. * @ppos: file position offset
  80. **/
  81. static ssize_t i40e_dbg_dump_read(struct file *filp, char __user *buffer,
  82. size_t count, loff_t *ppos)
  83. {
  84. int bytes_not_copied;
  85. int len;
  86. /* is *ppos bigger than the available data? */
  87. if (*ppos >= i40e_dbg_dump_data_len || !i40e_dbg_dump_buf)
  88. return 0;
  89. /* be sure to not read beyond the end of available data */
  90. len = min_t(int, count, (i40e_dbg_dump_data_len - *ppos));
  91. bytes_not_copied = copy_to_user(buffer, &i40e_dbg_dump_buf[*ppos], len);
  92. if (bytes_not_copied < 0)
  93. return bytes_not_copied;
  94. *ppos += len;
  95. return len;
  96. }
  97. /**
  98. * i40e_dbg_prep_dump_buf
  99. * @pf: the pf we're working with
  100. * @buflen: the desired buffer length
  101. *
  102. * Return positive if success, 0 if failed
  103. **/
  104. static int i40e_dbg_prep_dump_buf(struct i40e_pf *pf, int buflen)
  105. {
  106. /* if not already big enough, prep for re alloc */
  107. if (i40e_dbg_dump_buffer_len && i40e_dbg_dump_buffer_len < buflen) {
  108. kfree(i40e_dbg_dump_buf);
  109. i40e_dbg_dump_buffer_len = 0;
  110. i40e_dbg_dump_buf = NULL;
  111. }
  112. /* get a new buffer if needed */
  113. if (!i40e_dbg_dump_buf) {
  114. i40e_dbg_dump_buf = kzalloc(buflen, GFP_KERNEL);
  115. if (i40e_dbg_dump_buf != NULL)
  116. i40e_dbg_dump_buffer_len = buflen;
  117. }
  118. return i40e_dbg_dump_buffer_len;
  119. }
  120. /**
  121. * i40e_dbg_dump_write - trigger a datadump snapshot
  122. * @filp: the opened file
  123. * @buffer: where to find the user's data
  124. * @count: the length of the user's data
  125. * @ppos: file position offset
  126. *
  127. * Any write clears the stats
  128. **/
  129. static ssize_t i40e_dbg_dump_write(struct file *filp,
  130. const char __user *buffer,
  131. size_t count, loff_t *ppos)
  132. {
  133. struct i40e_pf *pf = filp->private_data;
  134. bool seid_found = false;
  135. long seid = -1;
  136. int buflen = 0;
  137. int i, ret;
  138. int len;
  139. u8 *p;
  140. /* don't allow partial writes */
  141. if (*ppos != 0)
  142. return 0;
  143. /* decode the SEID given to be dumped */
  144. ret = kstrtol_from_user(buffer, count, 0, &seid);
  145. if (ret) {
  146. dev_info(&pf->pdev->dev, "bad seid value\n");
  147. } else if (seid == 0) {
  148. seid_found = true;
  149. kfree(i40e_dbg_dump_buf);
  150. i40e_dbg_dump_buffer_len = 0;
  151. i40e_dbg_dump_data_len = 0;
  152. i40e_dbg_dump_buf = NULL;
  153. dev_info(&pf->pdev->dev, "debug buffer freed\n");
  154. } else if (seid == pf->pf_seid || seid == 1) {
  155. seid_found = true;
  156. buflen = sizeof(struct i40e_pf);
  157. buflen += (sizeof(struct i40e_aq_desc)
  158. * (pf->hw.aq.num_arq_entries + pf->hw.aq.num_asq_entries));
  159. if (i40e_dbg_prep_dump_buf(pf, buflen)) {
  160. p = i40e_dbg_dump_buf;
  161. len = sizeof(struct i40e_pf);
  162. memcpy(p, pf, len);
  163. p += len;
  164. len = (sizeof(struct i40e_aq_desc)
  165. * pf->hw.aq.num_asq_entries);
  166. memcpy(p, pf->hw.aq.asq.desc_buf.va, len);
  167. p += len;
  168. len = (sizeof(struct i40e_aq_desc)
  169. * pf->hw.aq.num_arq_entries);
  170. memcpy(p, pf->hw.aq.arq.desc_buf.va, len);
  171. p += len;
  172. i40e_dbg_dump_data_len = buflen;
  173. dev_info(&pf->pdev->dev,
  174. "PF seid %ld dumped %d bytes\n",
  175. seid, (int)i40e_dbg_dump_data_len);
  176. }
  177. } else if (seid >= I40E_BASE_VSI_SEID) {
  178. struct i40e_vsi *vsi = NULL;
  179. struct i40e_mac_filter *f;
  180. int filter_count = 0;
  181. mutex_lock(&pf->switch_mutex);
  182. vsi = i40e_dbg_find_vsi(pf, seid);
  183. if (!vsi) {
  184. mutex_unlock(&pf->switch_mutex);
  185. goto write_exit;
  186. }
  187. buflen = sizeof(struct i40e_vsi);
  188. buflen += sizeof(struct i40e_q_vector) * vsi->num_q_vectors;
  189. buflen += sizeof(struct i40e_ring) * 2 * vsi->num_queue_pairs;
  190. buflen += sizeof(struct i40e_tx_buffer) * vsi->num_queue_pairs;
  191. buflen += sizeof(struct i40e_rx_buffer) * vsi->num_queue_pairs;
  192. list_for_each_entry(f, &vsi->mac_filter_list, list)
  193. filter_count++;
  194. buflen += sizeof(struct i40e_mac_filter) * filter_count;
  195. if (i40e_dbg_prep_dump_buf(pf, buflen)) {
  196. p = i40e_dbg_dump_buf;
  197. seid_found = true;
  198. len = sizeof(struct i40e_vsi);
  199. memcpy(p, vsi, len);
  200. p += len;
  201. if (vsi->num_q_vectors) {
  202. len = (sizeof(struct i40e_q_vector)
  203. * vsi->num_q_vectors);
  204. memcpy(p, vsi->q_vectors, len);
  205. p += len;
  206. }
  207. if (vsi->num_queue_pairs) {
  208. len = (sizeof(struct i40e_ring) *
  209. vsi->num_queue_pairs);
  210. memcpy(p, vsi->tx_rings, len);
  211. p += len;
  212. memcpy(p, vsi->rx_rings, len);
  213. p += len;
  214. }
  215. if (vsi->tx_rings[0]) {
  216. len = sizeof(struct i40e_tx_buffer);
  217. for (i = 0; i < vsi->num_queue_pairs; i++) {
  218. memcpy(p, vsi->tx_rings[i]->tx_bi, len);
  219. p += len;
  220. }
  221. len = sizeof(struct i40e_rx_buffer);
  222. for (i = 0; i < vsi->num_queue_pairs; i++) {
  223. memcpy(p, vsi->rx_rings[i]->rx_bi, len);
  224. p += len;
  225. }
  226. }
  227. /* macvlan filter list */
  228. len = sizeof(struct i40e_mac_filter);
  229. list_for_each_entry(f, &vsi->mac_filter_list, list) {
  230. memcpy(p, f, len);
  231. p += len;
  232. }
  233. i40e_dbg_dump_data_len = buflen;
  234. dev_info(&pf->pdev->dev,
  235. "VSI seid %ld dumped %d bytes\n",
  236. seid, (int)i40e_dbg_dump_data_len);
  237. }
  238. mutex_unlock(&pf->switch_mutex);
  239. } else if (seid >= I40E_BASE_VEB_SEID) {
  240. struct i40e_veb *veb = NULL;
  241. mutex_lock(&pf->switch_mutex);
  242. veb = i40e_dbg_find_veb(pf, seid);
  243. if (!veb) {
  244. mutex_unlock(&pf->switch_mutex);
  245. goto write_exit;
  246. }
  247. buflen = sizeof(struct i40e_veb);
  248. if (i40e_dbg_prep_dump_buf(pf, buflen)) {
  249. seid_found = true;
  250. memcpy(i40e_dbg_dump_buf, veb, buflen);
  251. i40e_dbg_dump_data_len = buflen;
  252. dev_info(&pf->pdev->dev,
  253. "VEB seid %ld dumped %d bytes\n",
  254. seid, (int)i40e_dbg_dump_data_len);
  255. }
  256. mutex_unlock(&pf->switch_mutex);
  257. }
  258. write_exit:
  259. if (!seid_found)
  260. dev_info(&pf->pdev->dev, "unknown seid %ld\n", seid);
  261. return count;
  262. }
  263. static const struct file_operations i40e_dbg_dump_fops = {
  264. .owner = THIS_MODULE,
  265. .open = simple_open,
  266. .read = i40e_dbg_dump_read,
  267. .write = i40e_dbg_dump_write,
  268. };
  269. /**************************************************************
  270. * command
  271. * The command entry in debugfs is for giving the driver commands
  272. * to be executed - these may be for changing the internal switch
  273. * setup, adding or removing filters, or other things. Many of
  274. * these will be useful for some forms of unit testing.
  275. **************************************************************/
  276. static char i40e_dbg_command_buf[256] = "hello world";
  277. /**
  278. * i40e_dbg_command_read - read for command datum
  279. * @filp: the opened file
  280. * @buffer: where to write the data for the user to read
  281. * @count: the size of the user's buffer
  282. * @ppos: file position offset
  283. **/
  284. static ssize_t i40e_dbg_command_read(struct file *filp, char __user *buffer,
  285. size_t count, loff_t *ppos)
  286. {
  287. struct i40e_pf *pf = filp->private_data;
  288. int bytes_not_copied;
  289. int buf_size = 256;
  290. char *buf;
  291. int len;
  292. /* don't allow partial reads */
  293. if (*ppos != 0)
  294. return 0;
  295. if (count < buf_size)
  296. return -ENOSPC;
  297. buf = kzalloc(buf_size, GFP_KERNEL);
  298. if (!buf)
  299. return -ENOSPC;
  300. len = snprintf(buf, buf_size, "%s: %s\n",
  301. pf->vsi[pf->lan_vsi]->netdev->name,
  302. i40e_dbg_command_buf);
  303. bytes_not_copied = copy_to_user(buffer, buf, len);
  304. kfree(buf);
  305. if (bytes_not_copied < 0)
  306. return bytes_not_copied;
  307. *ppos = len;
  308. return len;
  309. }
  310. /**
  311. * i40e_dbg_dump_vsi_seid - handles dump vsi seid write into command datum
  312. * @pf: the i40e_pf created in command write
  313. * @seid: the seid the user put in
  314. **/
  315. static void i40e_dbg_dump_vsi_seid(struct i40e_pf *pf, int seid)
  316. {
  317. struct rtnl_link_stats64 *nstat;
  318. struct i40e_mac_filter *f;
  319. struct i40e_vsi *vsi;
  320. int i;
  321. vsi = i40e_dbg_find_vsi(pf, seid);
  322. if (!vsi) {
  323. dev_info(&pf->pdev->dev,
  324. "dump %d: seid not found\n", seid);
  325. return;
  326. }
  327. dev_info(&pf->pdev->dev, "vsi seid %d\n", seid);
  328. if (vsi->netdev)
  329. dev_info(&pf->pdev->dev,
  330. " netdev: name = %s\n",
  331. vsi->netdev->name);
  332. if (vsi->active_vlans)
  333. dev_info(&pf->pdev->dev,
  334. " vlgrp: & = %p\n", vsi->active_vlans);
  335. dev_info(&pf->pdev->dev,
  336. " netdev_registered = %i, current_netdev_flags = 0x%04x, state = %li flags = 0x%08lx\n",
  337. vsi->netdev_registered,
  338. vsi->current_netdev_flags, vsi->state, vsi->flags);
  339. list_for_each_entry(f, &vsi->mac_filter_list, list) {
  340. dev_info(&pf->pdev->dev,
  341. " mac_filter_list: %pM vid=%d, is_netdev=%d is_vf=%d counter=%d\n",
  342. f->macaddr, f->vlan, f->is_netdev, f->is_vf,
  343. f->counter);
  344. }
  345. nstat = i40e_get_vsi_stats_struct(vsi);
  346. dev_info(&pf->pdev->dev,
  347. " net_stats: rx_packets = %lu, rx_bytes = %lu, rx_errors = %lu, rx_dropped = %lu\n",
  348. (long unsigned int)nstat->rx_packets,
  349. (long unsigned int)nstat->rx_bytes,
  350. (long unsigned int)nstat->rx_errors,
  351. (long unsigned int)nstat->rx_dropped);
  352. dev_info(&pf->pdev->dev,
  353. " net_stats: tx_packets = %lu, tx_bytes = %lu, tx_errors = %lu, tx_dropped = %lu\n",
  354. (long unsigned int)nstat->tx_packets,
  355. (long unsigned int)nstat->tx_bytes,
  356. (long unsigned int)nstat->tx_errors,
  357. (long unsigned int)nstat->tx_dropped);
  358. dev_info(&pf->pdev->dev,
  359. " net_stats: multicast = %lu, collisions = %lu\n",
  360. (long unsigned int)nstat->multicast,
  361. (long unsigned int)nstat->collisions);
  362. dev_info(&pf->pdev->dev,
  363. " net_stats: rx_length_errors = %lu, rx_over_errors = %lu, rx_crc_errors = %lu\n",
  364. (long unsigned int)nstat->rx_length_errors,
  365. (long unsigned int)nstat->rx_over_errors,
  366. (long unsigned int)nstat->rx_crc_errors);
  367. dev_info(&pf->pdev->dev,
  368. " net_stats: rx_frame_errors = %lu, rx_fifo_errors = %lu, rx_missed_errors = %lu\n",
  369. (long unsigned int)nstat->rx_frame_errors,
  370. (long unsigned int)nstat->rx_fifo_errors,
  371. (long unsigned int)nstat->rx_missed_errors);
  372. dev_info(&pf->pdev->dev,
  373. " net_stats: tx_aborted_errors = %lu, tx_carrier_errors = %lu, tx_fifo_errors = %lu\n",
  374. (long unsigned int)nstat->tx_aborted_errors,
  375. (long unsigned int)nstat->tx_carrier_errors,
  376. (long unsigned int)nstat->tx_fifo_errors);
  377. dev_info(&pf->pdev->dev,
  378. " net_stats: tx_heartbeat_errors = %lu, tx_window_errors = %lu\n",
  379. (long unsigned int)nstat->tx_heartbeat_errors,
  380. (long unsigned int)nstat->tx_window_errors);
  381. dev_info(&pf->pdev->dev,
  382. " net_stats: rx_compressed = %lu, tx_compressed = %lu\n",
  383. (long unsigned int)nstat->rx_compressed,
  384. (long unsigned int)nstat->tx_compressed);
  385. dev_info(&pf->pdev->dev,
  386. " net_stats_offsets: rx_packets = %lu, rx_bytes = %lu, rx_errors = %lu, rx_dropped = %lu\n",
  387. (long unsigned int)vsi->net_stats_offsets.rx_packets,
  388. (long unsigned int)vsi->net_stats_offsets.rx_bytes,
  389. (long unsigned int)vsi->net_stats_offsets.rx_errors,
  390. (long unsigned int)vsi->net_stats_offsets.rx_dropped);
  391. dev_info(&pf->pdev->dev,
  392. " net_stats_offsets: tx_packets = %lu, tx_bytes = %lu, tx_errors = %lu, tx_dropped = %lu\n",
  393. (long unsigned int)vsi->net_stats_offsets.tx_packets,
  394. (long unsigned int)vsi->net_stats_offsets.tx_bytes,
  395. (long unsigned int)vsi->net_stats_offsets.tx_errors,
  396. (long unsigned int)vsi->net_stats_offsets.tx_dropped);
  397. dev_info(&pf->pdev->dev,
  398. " net_stats_offsets: multicast = %lu, collisions = %lu\n",
  399. (long unsigned int)vsi->net_stats_offsets.multicast,
  400. (long unsigned int)vsi->net_stats_offsets.collisions);
  401. dev_info(&pf->pdev->dev,
  402. " net_stats_offsets: rx_length_errors = %lu, rx_over_errors = %lu, rx_crc_errors = %lu\n",
  403. (long unsigned int)vsi->net_stats_offsets.rx_length_errors,
  404. (long unsigned int)vsi->net_stats_offsets.rx_over_errors,
  405. (long unsigned int)vsi->net_stats_offsets.rx_crc_errors);
  406. dev_info(&pf->pdev->dev,
  407. " net_stats_offsets: rx_frame_errors = %lu, rx_fifo_errors = %lu, rx_missed_errors = %lu\n",
  408. (long unsigned int)vsi->net_stats_offsets.rx_frame_errors,
  409. (long unsigned int)vsi->net_stats_offsets.rx_fifo_errors,
  410. (long unsigned int)vsi->net_stats_offsets.rx_missed_errors);
  411. dev_info(&pf->pdev->dev,
  412. " net_stats_offsets: tx_aborted_errors = %lu, tx_carrier_errors = %lu, tx_fifo_errors = %lu\n",
  413. (long unsigned int)vsi->net_stats_offsets.tx_aborted_errors,
  414. (long unsigned int)vsi->net_stats_offsets.tx_carrier_errors,
  415. (long unsigned int)vsi->net_stats_offsets.tx_fifo_errors);
  416. dev_info(&pf->pdev->dev,
  417. " net_stats_offsets: tx_heartbeat_errors = %lu, tx_window_errors = %lu\n",
  418. (long unsigned int)vsi->net_stats_offsets.tx_heartbeat_errors,
  419. (long unsigned int)vsi->net_stats_offsets.tx_window_errors);
  420. dev_info(&pf->pdev->dev,
  421. " net_stats_offsets: rx_compressed = %lu, tx_compressed = %lu\n",
  422. (long unsigned int)vsi->net_stats_offsets.rx_compressed,
  423. (long unsigned int)vsi->net_stats_offsets.tx_compressed);
  424. dev_info(&pf->pdev->dev,
  425. " tx_restart = %d, tx_busy = %d, rx_buf_failed = %d, rx_page_failed = %d\n",
  426. vsi->tx_restart, vsi->tx_busy,
  427. vsi->rx_buf_failed, vsi->rx_page_failed);
  428. rcu_read_lock();
  429. for (i = 0; i < vsi->num_queue_pairs; i++) {
  430. struct i40e_ring *rx_ring = ACCESS_ONCE(vsi->rx_rings[i]);
  431. if (!rx_ring)
  432. continue;
  433. dev_info(&pf->pdev->dev,
  434. " rx_rings[%i]: desc = %p\n",
  435. i, rx_ring->desc);
  436. dev_info(&pf->pdev->dev,
  437. " rx_rings[%i]: dev = %p, netdev = %p, rx_bi = %p\n",
  438. i, rx_ring->dev,
  439. rx_ring->netdev,
  440. rx_ring->rx_bi);
  441. dev_info(&pf->pdev->dev,
  442. " rx_rings[%i]: state = %li, queue_index = %d, reg_idx = %d\n",
  443. i, rx_ring->state,
  444. rx_ring->queue_index,
  445. rx_ring->reg_idx);
  446. dev_info(&pf->pdev->dev,
  447. " rx_rings[%i]: rx_hdr_len = %d, rx_buf_len = %d, dtype = %d\n",
  448. i, rx_ring->rx_hdr_len,
  449. rx_ring->rx_buf_len,
  450. rx_ring->dtype);
  451. dev_info(&pf->pdev->dev,
  452. " rx_rings[%i]: hsplit = %d, next_to_use = %d, next_to_clean = %d, ring_active = %i\n",
  453. i, rx_ring->hsplit,
  454. rx_ring->next_to_use,
  455. rx_ring->next_to_clean,
  456. rx_ring->ring_active);
  457. dev_info(&pf->pdev->dev,
  458. " rx_rings[%i]: rx_stats: packets = %lld, bytes = %lld, non_eop_descs = %lld\n",
  459. i, rx_ring->stats.packets,
  460. rx_ring->stats.bytes,
  461. rx_ring->rx_stats.non_eop_descs);
  462. dev_info(&pf->pdev->dev,
  463. " rx_rings[%i]: rx_stats: alloc_page_failed = %lld, alloc_buff_failed = %lld\n",
  464. i,
  465. rx_ring->rx_stats.alloc_page_failed,
  466. rx_ring->rx_stats.alloc_buff_failed);
  467. dev_info(&pf->pdev->dev,
  468. " rx_rings[%i]: size = %i, dma = 0x%08lx\n",
  469. i, rx_ring->size,
  470. (long unsigned int)rx_ring->dma);
  471. dev_info(&pf->pdev->dev,
  472. " rx_rings[%i]: vsi = %p, q_vector = %p\n",
  473. i, rx_ring->vsi,
  474. rx_ring->q_vector);
  475. }
  476. for (i = 0; i < vsi->num_queue_pairs; i++) {
  477. struct i40e_ring *tx_ring = ACCESS_ONCE(vsi->tx_rings[i]);
  478. if (!tx_ring)
  479. continue;
  480. dev_info(&pf->pdev->dev,
  481. " tx_rings[%i]: desc = %p\n",
  482. i, tx_ring->desc);
  483. dev_info(&pf->pdev->dev,
  484. " tx_rings[%i]: dev = %p, netdev = %p, tx_bi = %p\n",
  485. i, tx_ring->dev,
  486. tx_ring->netdev,
  487. tx_ring->tx_bi);
  488. dev_info(&pf->pdev->dev,
  489. " tx_rings[%i]: state = %li, queue_index = %d, reg_idx = %d\n",
  490. i, tx_ring->state,
  491. tx_ring->queue_index,
  492. tx_ring->reg_idx);
  493. dev_info(&pf->pdev->dev,
  494. " tx_rings[%i]: dtype = %d\n",
  495. i, tx_ring->dtype);
  496. dev_info(&pf->pdev->dev,
  497. " tx_rings[%i]: hsplit = %d, next_to_use = %d, next_to_clean = %d, ring_active = %i\n",
  498. i, tx_ring->hsplit,
  499. tx_ring->next_to_use,
  500. tx_ring->next_to_clean,
  501. tx_ring->ring_active);
  502. dev_info(&pf->pdev->dev,
  503. " tx_rings[%i]: tx_stats: packets = %lld, bytes = %lld, restart_queue = %lld\n",
  504. i, tx_ring->stats.packets,
  505. tx_ring->stats.bytes,
  506. tx_ring->tx_stats.restart_queue);
  507. dev_info(&pf->pdev->dev,
  508. " tx_rings[%i]: tx_stats: tx_busy = %lld, tx_done_old = %lld\n",
  509. i,
  510. tx_ring->tx_stats.tx_busy,
  511. tx_ring->tx_stats.tx_done_old);
  512. dev_info(&pf->pdev->dev,
  513. " tx_rings[%i]: size = %i, dma = 0x%08lx\n",
  514. i, tx_ring->size,
  515. (long unsigned int)tx_ring->dma);
  516. dev_info(&pf->pdev->dev,
  517. " tx_rings[%i]: vsi = %p, q_vector = %p\n",
  518. i, tx_ring->vsi,
  519. tx_ring->q_vector);
  520. dev_info(&pf->pdev->dev,
  521. " tx_rings[%i]: DCB tc = %d\n",
  522. i, tx_ring->dcb_tc);
  523. }
  524. rcu_read_unlock();
  525. dev_info(&pf->pdev->dev,
  526. " work_limit = %d, rx_itr_setting = %d (%s), tx_itr_setting = %d (%s)\n",
  527. vsi->work_limit, vsi->rx_itr_setting,
  528. ITR_IS_DYNAMIC(vsi->rx_itr_setting) ? "dynamic" : "fixed",
  529. vsi->tx_itr_setting,
  530. ITR_IS_DYNAMIC(vsi->tx_itr_setting) ? "dynamic" : "fixed");
  531. dev_info(&pf->pdev->dev,
  532. " max_frame = %d, rx_hdr_len = %d, rx_buf_len = %d dtype = %d\n",
  533. vsi->max_frame, vsi->rx_hdr_len, vsi->rx_buf_len, vsi->dtype);
  534. dev_info(&pf->pdev->dev,
  535. " num_q_vectors = %i, base_vector = %i\n",
  536. vsi->num_q_vectors, vsi->base_vector);
  537. dev_info(&pf->pdev->dev,
  538. " seid = %d, id = %d, uplink_seid = %d\n",
  539. vsi->seid, vsi->id, vsi->uplink_seid);
  540. dev_info(&pf->pdev->dev,
  541. " base_queue = %d, num_queue_pairs = %d, num_desc = %d\n",
  542. vsi->base_queue, vsi->num_queue_pairs, vsi->num_desc);
  543. dev_info(&pf->pdev->dev, " type = %i\n", vsi->type);
  544. dev_info(&pf->pdev->dev,
  545. " info: valid_sections = 0x%04x, switch_id = 0x%04x\n",
  546. vsi->info.valid_sections, vsi->info.switch_id);
  547. dev_info(&pf->pdev->dev,
  548. " info: sw_reserved[] = 0x%02x 0x%02x\n",
  549. vsi->info.sw_reserved[0], vsi->info.sw_reserved[1]);
  550. dev_info(&pf->pdev->dev,
  551. " info: sec_flags = 0x%02x, sec_reserved = 0x%02x\n",
  552. vsi->info.sec_flags, vsi->info.sec_reserved);
  553. dev_info(&pf->pdev->dev,
  554. " info: pvid = 0x%04x, fcoe_pvid = 0x%04x, port_vlan_flags = 0x%02x\n",
  555. vsi->info.pvid, vsi->info.fcoe_pvid,
  556. vsi->info.port_vlan_flags);
  557. dev_info(&pf->pdev->dev,
  558. " info: pvlan_reserved[] = 0x%02x 0x%02x 0x%02x\n",
  559. vsi->info.pvlan_reserved[0], vsi->info.pvlan_reserved[1],
  560. vsi->info.pvlan_reserved[2]);
  561. dev_info(&pf->pdev->dev,
  562. " info: ingress_table = 0x%08x, egress_table = 0x%08x\n",
  563. vsi->info.ingress_table, vsi->info.egress_table);
  564. dev_info(&pf->pdev->dev,
  565. " info: cas_pv_stag = 0x%04x, cas_pv_flags= 0x%02x, cas_pv_reserved = 0x%02x\n",
  566. vsi->info.cas_pv_tag, vsi->info.cas_pv_flags,
  567. vsi->info.cas_pv_reserved);
  568. dev_info(&pf->pdev->dev,
  569. " info: queue_mapping[0..7 ] = 0x%04x 0x%04x 0x%04x 0x%04x 0x%04x 0x%04x 0x%04x 0x%04x\n",
  570. vsi->info.queue_mapping[0], vsi->info.queue_mapping[1],
  571. vsi->info.queue_mapping[2], vsi->info.queue_mapping[3],
  572. vsi->info.queue_mapping[4], vsi->info.queue_mapping[5],
  573. vsi->info.queue_mapping[6], vsi->info.queue_mapping[7]);
  574. dev_info(&pf->pdev->dev,
  575. " info: queue_mapping[8..15] = 0x%04x 0x%04x 0x%04x 0x%04x 0x%04x 0x%04x 0x%04x 0x%04x\n",
  576. vsi->info.queue_mapping[8], vsi->info.queue_mapping[9],
  577. vsi->info.queue_mapping[10], vsi->info.queue_mapping[11],
  578. vsi->info.queue_mapping[12], vsi->info.queue_mapping[13],
  579. vsi->info.queue_mapping[14], vsi->info.queue_mapping[15]);
  580. dev_info(&pf->pdev->dev,
  581. " info: tc_mapping[] = 0x%04x 0x%04x 0x%04x 0x%04x 0x%04x 0x%04x 0x%04x 0x%04x\n",
  582. vsi->info.tc_mapping[0], vsi->info.tc_mapping[1],
  583. vsi->info.tc_mapping[2], vsi->info.tc_mapping[3],
  584. vsi->info.tc_mapping[4], vsi->info.tc_mapping[5],
  585. vsi->info.tc_mapping[6], vsi->info.tc_mapping[7]);
  586. dev_info(&pf->pdev->dev,
  587. " info: queueing_opt_flags = 0x%02x queueing_opt_reserved[0..2] = 0x%02x 0x%02x 0x%02x\n",
  588. vsi->info.queueing_opt_flags,
  589. vsi->info.queueing_opt_reserved[0],
  590. vsi->info.queueing_opt_reserved[1],
  591. vsi->info.queueing_opt_reserved[2]);
  592. dev_info(&pf->pdev->dev,
  593. " info: up_enable_bits = 0x%02x\n",
  594. vsi->info.up_enable_bits);
  595. dev_info(&pf->pdev->dev,
  596. " info: sched_reserved = 0x%02x, outer_up_table = 0x%04x\n",
  597. vsi->info.sched_reserved, vsi->info.outer_up_table);
  598. dev_info(&pf->pdev->dev,
  599. " info: cmd_reserved[] = 0x%02x 0x%02x 0x%02x 0x0%02x 0x%02x 0x%02x 0x%02x 0x0%02x\n",
  600. vsi->info.cmd_reserved[0], vsi->info.cmd_reserved[1],
  601. vsi->info.cmd_reserved[2], vsi->info.cmd_reserved[3],
  602. vsi->info.cmd_reserved[4], vsi->info.cmd_reserved[5],
  603. vsi->info.cmd_reserved[6], vsi->info.cmd_reserved[7]);
  604. dev_info(&pf->pdev->dev,
  605. " info: qs_handle[] = 0x%04x 0x%04x 0x%04x 0x%04x 0x%04x 0x%04x 0x%04x 0x%04x\n",
  606. vsi->info.qs_handle[0], vsi->info.qs_handle[1],
  607. vsi->info.qs_handle[2], vsi->info.qs_handle[3],
  608. vsi->info.qs_handle[4], vsi->info.qs_handle[5],
  609. vsi->info.qs_handle[6], vsi->info.qs_handle[7]);
  610. dev_info(&pf->pdev->dev,
  611. " info: stat_counter_idx = 0x%04x, sched_id = 0x%04x\n",
  612. vsi->info.stat_counter_idx, vsi->info.sched_id);
  613. dev_info(&pf->pdev->dev,
  614. " info: resp_reserved[] = 0x%02x 0x%02x 0x%02x 0x%02x 0x%02x 0x%02x 0x%02x 0x%02x 0x%02x 0x%02x 0x%02x 0x%02x\n",
  615. vsi->info.resp_reserved[0], vsi->info.resp_reserved[1],
  616. vsi->info.resp_reserved[2], vsi->info.resp_reserved[3],
  617. vsi->info.resp_reserved[4], vsi->info.resp_reserved[5],
  618. vsi->info.resp_reserved[6], vsi->info.resp_reserved[7],
  619. vsi->info.resp_reserved[8], vsi->info.resp_reserved[9],
  620. vsi->info.resp_reserved[10], vsi->info.resp_reserved[11]);
  621. if (vsi->back)
  622. dev_info(&pf->pdev->dev, " pf = %p\n", vsi->back);
  623. dev_info(&pf->pdev->dev, " idx = %d\n", vsi->idx);
  624. dev_info(&pf->pdev->dev,
  625. " tc_config: numtc = %d, enabled_tc = 0x%x\n",
  626. vsi->tc_config.numtc, vsi->tc_config.enabled_tc);
  627. for (i = 0; i < I40E_MAX_TRAFFIC_CLASS; i++) {
  628. dev_info(&pf->pdev->dev,
  629. " tc_config: tc = %d, qoffset = %d, qcount = %d, netdev_tc = %d\n",
  630. i, vsi->tc_config.tc_info[i].qoffset,
  631. vsi->tc_config.tc_info[i].qcount,
  632. vsi->tc_config.tc_info[i].netdev_tc);
  633. }
  634. dev_info(&pf->pdev->dev,
  635. " bw: bw_limit = %d, bw_max_quanta = %d\n",
  636. vsi->bw_limit, vsi->bw_max_quanta);
  637. for (i = 0; i < I40E_MAX_TRAFFIC_CLASS; i++) {
  638. dev_info(&pf->pdev->dev,
  639. " bw[%d]: ets_share_credits = %d, ets_limit_credits = %d, max_quanta = %d\n",
  640. i, vsi->bw_ets_share_credits[i],
  641. vsi->bw_ets_limit_credits[i],
  642. vsi->bw_ets_max_quanta[i]);
  643. }
  644. #ifdef I40E_FCOE
  645. if (vsi->type == I40E_VSI_FCOE) {
  646. dev_info(&pf->pdev->dev,
  647. " fcoe_stats: rx_packets = %llu, rx_dwords = %llu, rx_dropped = %llu\n",
  648. vsi->fcoe_stats.rx_fcoe_packets,
  649. vsi->fcoe_stats.rx_fcoe_dwords,
  650. vsi->fcoe_stats.rx_fcoe_dropped);
  651. dev_info(&pf->pdev->dev,
  652. " fcoe_stats: tx_packets = %llu, tx_dwords = %llu\n",
  653. vsi->fcoe_stats.tx_fcoe_packets,
  654. vsi->fcoe_stats.tx_fcoe_dwords);
  655. dev_info(&pf->pdev->dev,
  656. " fcoe_stats: bad_crc = %llu, last_error = %llu\n",
  657. vsi->fcoe_stats.fcoe_bad_fccrc,
  658. vsi->fcoe_stats.fcoe_last_error);
  659. dev_info(&pf->pdev->dev, " fcoe_stats: ddp_count = %llu\n",
  660. vsi->fcoe_stats.fcoe_ddp_count);
  661. }
  662. #endif
  663. }
  664. /**
  665. * i40e_dbg_dump_aq_desc - handles dump aq_desc write into command datum
  666. * @pf: the i40e_pf created in command write
  667. **/
  668. static void i40e_dbg_dump_aq_desc(struct i40e_pf *pf)
  669. {
  670. struct i40e_adminq_ring *ring;
  671. struct i40e_hw *hw = &pf->hw;
  672. char hdr[32];
  673. int i;
  674. snprintf(hdr, sizeof(hdr), "%s %s: ",
  675. dev_driver_string(&pf->pdev->dev),
  676. dev_name(&pf->pdev->dev));
  677. /* first the send (command) ring, then the receive (event) ring */
  678. dev_info(&pf->pdev->dev, "AdminQ Tx Ring\n");
  679. ring = &(hw->aq.asq);
  680. for (i = 0; i < ring->count; i++) {
  681. struct i40e_aq_desc *d = I40E_ADMINQ_DESC(*ring, i);
  682. dev_info(&pf->pdev->dev,
  683. " at[%02d] flags=0x%04x op=0x%04x dlen=0x%04x ret=0x%04x cookie_h=0x%08x cookie_l=0x%08x\n",
  684. i, d->flags, d->opcode, d->datalen, d->retval,
  685. d->cookie_high, d->cookie_low);
  686. print_hex_dump(KERN_INFO, hdr, DUMP_PREFIX_NONE,
  687. 16, 1, d->params.raw, 16, 0);
  688. }
  689. dev_info(&pf->pdev->dev, "AdminQ Rx Ring\n");
  690. ring = &(hw->aq.arq);
  691. for (i = 0; i < ring->count; i++) {
  692. struct i40e_aq_desc *d = I40E_ADMINQ_DESC(*ring, i);
  693. dev_info(&pf->pdev->dev,
  694. " ar[%02d] flags=0x%04x op=0x%04x dlen=0x%04x ret=0x%04x cookie_h=0x%08x cookie_l=0x%08x\n",
  695. i, d->flags, d->opcode, d->datalen, d->retval,
  696. d->cookie_high, d->cookie_low);
  697. print_hex_dump(KERN_INFO, hdr, DUMP_PREFIX_NONE,
  698. 16, 1, d->params.raw, 16, 0);
  699. }
  700. }
  701. /**
  702. * i40e_dbg_dump_desc - handles dump desc write into command datum
  703. * @cnt: number of arguments that the user supplied
  704. * @vsi_seid: vsi id entered by user
  705. * @ring_id: ring id entered by user
  706. * @desc_n: descriptor number entered by user
  707. * @pf: the i40e_pf created in command write
  708. * @is_rx_ring: true if rx, false if tx
  709. **/
  710. static void i40e_dbg_dump_desc(int cnt, int vsi_seid, int ring_id, int desc_n,
  711. struct i40e_pf *pf, bool is_rx_ring)
  712. {
  713. struct i40e_tx_desc *txd;
  714. union i40e_rx_desc *rxd;
  715. struct i40e_ring *ring;
  716. struct i40e_vsi *vsi;
  717. int i;
  718. vsi = i40e_dbg_find_vsi(pf, vsi_seid);
  719. if (!vsi) {
  720. dev_info(&pf->pdev->dev, "vsi %d not found\n", vsi_seid);
  721. return;
  722. }
  723. if (ring_id >= vsi->num_queue_pairs || ring_id < 0) {
  724. dev_info(&pf->pdev->dev, "ring %d not found\n", ring_id);
  725. return;
  726. }
  727. if (!vsi->tx_rings || !vsi->tx_rings[0]->desc) {
  728. dev_info(&pf->pdev->dev,
  729. "descriptor rings have not been allocated for vsi %d\n",
  730. vsi_seid);
  731. return;
  732. }
  733. ring = kmemdup(is_rx_ring
  734. ? vsi->rx_rings[ring_id] : vsi->tx_rings[ring_id],
  735. sizeof(*ring), GFP_KERNEL);
  736. if (!ring)
  737. return;
  738. if (cnt == 2) {
  739. dev_info(&pf->pdev->dev, "vsi = %02i %s ring = %02i\n",
  740. vsi_seid, is_rx_ring ? "rx" : "tx", ring_id);
  741. for (i = 0; i < ring->count; i++) {
  742. if (!is_rx_ring) {
  743. txd = I40E_TX_DESC(ring, i);
  744. dev_info(&pf->pdev->dev,
  745. " d[%03i] = 0x%016llx 0x%016llx\n",
  746. i, txd->buffer_addr,
  747. txd->cmd_type_offset_bsz);
  748. } else if (sizeof(union i40e_rx_desc) ==
  749. sizeof(union i40e_16byte_rx_desc)) {
  750. rxd = I40E_RX_DESC(ring, i);
  751. dev_info(&pf->pdev->dev,
  752. " d[%03i] = 0x%016llx 0x%016llx\n",
  753. i, rxd->read.pkt_addr,
  754. rxd->read.hdr_addr);
  755. } else {
  756. rxd = I40E_RX_DESC(ring, i);
  757. dev_info(&pf->pdev->dev,
  758. " d[%03i] = 0x%016llx 0x%016llx 0x%016llx 0x%016llx\n",
  759. i, rxd->read.pkt_addr,
  760. rxd->read.hdr_addr,
  761. rxd->read.rsvd1, rxd->read.rsvd2);
  762. }
  763. }
  764. } else if (cnt == 3) {
  765. if (desc_n >= ring->count || desc_n < 0) {
  766. dev_info(&pf->pdev->dev,
  767. "descriptor %d not found\n", desc_n);
  768. goto out;
  769. }
  770. if (!is_rx_ring) {
  771. txd = I40E_TX_DESC(ring, desc_n);
  772. dev_info(&pf->pdev->dev,
  773. "vsi = %02i tx ring = %02i d[%03i] = 0x%016llx 0x%016llx\n",
  774. vsi_seid, ring_id, desc_n,
  775. txd->buffer_addr, txd->cmd_type_offset_bsz);
  776. } else if (sizeof(union i40e_rx_desc) ==
  777. sizeof(union i40e_16byte_rx_desc)) {
  778. rxd = I40E_RX_DESC(ring, desc_n);
  779. dev_info(&pf->pdev->dev,
  780. "vsi = %02i rx ring = %02i d[%03i] = 0x%016llx 0x%016llx\n",
  781. vsi_seid, ring_id, desc_n,
  782. rxd->read.pkt_addr, rxd->read.hdr_addr);
  783. } else {
  784. rxd = I40E_RX_DESC(ring, desc_n);
  785. dev_info(&pf->pdev->dev,
  786. "vsi = %02i rx ring = %02i d[%03i] = 0x%016llx 0x%016llx 0x%016llx 0x%016llx\n",
  787. vsi_seid, ring_id, desc_n,
  788. rxd->read.pkt_addr, rxd->read.hdr_addr,
  789. rxd->read.rsvd1, rxd->read.rsvd2);
  790. }
  791. } else {
  792. dev_info(&pf->pdev->dev, "dump desc rx/tx <vsi_seid> <ring_id> [<desc_n>]\n");
  793. }
  794. out:
  795. kfree(ring);
  796. }
  797. /**
  798. * i40e_dbg_dump_vsi_no_seid - handles dump vsi write into command datum
  799. * @pf: the i40e_pf created in command write
  800. **/
  801. static void i40e_dbg_dump_vsi_no_seid(struct i40e_pf *pf)
  802. {
  803. int i;
  804. for (i = 0; i < pf->num_alloc_vsi; i++)
  805. if (pf->vsi[i])
  806. dev_info(&pf->pdev->dev, "dump vsi[%d]: %d\n",
  807. i, pf->vsi[i]->seid);
  808. }
  809. /**
  810. * i40e_dbg_dump_stats - handles dump stats write into command datum
  811. * @pf: the i40e_pf created in command write
  812. * @estats: the eth stats structure to be dumped
  813. **/
  814. static void i40e_dbg_dump_eth_stats(struct i40e_pf *pf,
  815. struct i40e_eth_stats *estats)
  816. {
  817. dev_info(&pf->pdev->dev, " ethstats:\n");
  818. dev_info(&pf->pdev->dev,
  819. " rx_bytes = \t%lld \trx_unicast = \t\t%lld \trx_multicast = \t%lld\n",
  820. estats->rx_bytes, estats->rx_unicast, estats->rx_multicast);
  821. dev_info(&pf->pdev->dev,
  822. " rx_broadcast = \t%lld \trx_discards = \t\t%lld\n",
  823. estats->rx_broadcast, estats->rx_discards);
  824. dev_info(&pf->pdev->dev,
  825. " rx_unknown_protocol = \t%lld \ttx_bytes = \t%lld\n",
  826. estats->rx_unknown_protocol, estats->tx_bytes);
  827. dev_info(&pf->pdev->dev,
  828. " tx_unicast = \t%lld \ttx_multicast = \t\t%lld \ttx_broadcast = \t%lld\n",
  829. estats->tx_unicast, estats->tx_multicast, estats->tx_broadcast);
  830. dev_info(&pf->pdev->dev,
  831. " tx_discards = \t%lld \ttx_errors = \t\t%lld\n",
  832. estats->tx_discards, estats->tx_errors);
  833. }
  834. /**
  835. * i40e_dbg_dump_veb_seid - handles dump stats of a single given veb
  836. * @pf: the i40e_pf created in command write
  837. * @seid: the seid the user put in
  838. **/
  839. static void i40e_dbg_dump_veb_seid(struct i40e_pf *pf, int seid)
  840. {
  841. struct i40e_veb *veb;
  842. if ((seid < I40E_BASE_VEB_SEID) ||
  843. (seid >= (I40E_MAX_VEB + I40E_BASE_VEB_SEID))) {
  844. dev_info(&pf->pdev->dev, "%d: bad seid\n", seid);
  845. return;
  846. }
  847. veb = i40e_dbg_find_veb(pf, seid);
  848. if (!veb) {
  849. dev_info(&pf->pdev->dev, "can't find veb %d\n", seid);
  850. return;
  851. }
  852. dev_info(&pf->pdev->dev,
  853. "veb idx=%d,%d stats_ic=%d seid=%d uplink=%d\n",
  854. veb->idx, veb->veb_idx, veb->stats_idx, veb->seid,
  855. veb->uplink_seid);
  856. i40e_dbg_dump_eth_stats(pf, &veb->stats);
  857. }
  858. /**
  859. * i40e_dbg_dump_veb_all - dumps all known veb's stats
  860. * @pf: the i40e_pf created in command write
  861. **/
  862. static void i40e_dbg_dump_veb_all(struct i40e_pf *pf)
  863. {
  864. struct i40e_veb *veb;
  865. int i;
  866. for (i = 0; i < I40E_MAX_VEB; i++) {
  867. veb = pf->veb[i];
  868. if (veb)
  869. i40e_dbg_dump_veb_seid(pf, veb->seid);
  870. }
  871. }
  872. /**
  873. * i40e_dbg_cmd_fd_ctrl - Enable/disable FD sideband/ATR
  874. * @pf: the pf that would be altered
  875. * @flag: flag that needs enabling or disabling
  876. * @enable: Enable/disable FD SD/ATR
  877. **/
  878. static void i40e_dbg_cmd_fd_ctrl(struct i40e_pf *pf, u64 flag, bool enable)
  879. {
  880. if (enable) {
  881. pf->flags |= flag;
  882. } else {
  883. pf->flags &= ~flag;
  884. pf->auto_disable_flags |= flag;
  885. }
  886. dev_info(&pf->pdev->dev, "requesting a pf reset\n");
  887. i40e_do_reset_safe(pf, (1 << __I40E_PF_RESET_REQUESTED));
  888. }
  889. #define I40E_MAX_DEBUG_OUT_BUFFER (4096*4)
  890. /**
  891. * i40e_dbg_command_write - write into command datum
  892. * @filp: the opened file
  893. * @buffer: where to find the user's data
  894. * @count: the length of the user's data
  895. * @ppos: file position offset
  896. **/
  897. static ssize_t i40e_dbg_command_write(struct file *filp,
  898. const char __user *buffer,
  899. size_t count, loff_t *ppos)
  900. {
  901. struct i40e_pf *pf = filp->private_data;
  902. char *cmd_buf, *cmd_buf_tmp;
  903. int bytes_not_copied;
  904. struct i40e_vsi *vsi;
  905. int vsi_seid;
  906. int veb_seid;
  907. int cnt;
  908. /* don't allow partial writes */
  909. if (*ppos != 0)
  910. return 0;
  911. cmd_buf = kzalloc(count + 1, GFP_KERNEL);
  912. if (!cmd_buf)
  913. return count;
  914. bytes_not_copied = copy_from_user(cmd_buf, buffer, count);
  915. if (bytes_not_copied < 0)
  916. return bytes_not_copied;
  917. if (bytes_not_copied > 0)
  918. count -= bytes_not_copied;
  919. cmd_buf[count] = '\0';
  920. cmd_buf_tmp = strchr(cmd_buf, '\n');
  921. if (cmd_buf_tmp) {
  922. *cmd_buf_tmp = '\0';
  923. count = cmd_buf_tmp - cmd_buf + 1;
  924. }
  925. if (strncmp(cmd_buf, "add vsi", 7) == 0) {
  926. vsi_seid = -1;
  927. cnt = sscanf(&cmd_buf[7], "%i", &vsi_seid);
  928. if (cnt == 0) {
  929. /* default to PF VSI */
  930. vsi_seid = pf->vsi[pf->lan_vsi]->seid;
  931. } else if (vsi_seid < 0) {
  932. dev_info(&pf->pdev->dev, "add VSI %d: bad vsi seid\n",
  933. vsi_seid);
  934. goto command_write_done;
  935. }
  936. vsi = i40e_vsi_setup(pf, I40E_VSI_VMDQ2, vsi_seid, 0);
  937. if (vsi)
  938. dev_info(&pf->pdev->dev, "added VSI %d to relay %d\n",
  939. vsi->seid, vsi->uplink_seid);
  940. else
  941. dev_info(&pf->pdev->dev, "'%s' failed\n", cmd_buf);
  942. } else if (strncmp(cmd_buf, "del vsi", 7) == 0) {
  943. sscanf(&cmd_buf[7], "%i", &vsi_seid);
  944. vsi = i40e_dbg_find_vsi(pf, vsi_seid);
  945. if (!vsi) {
  946. dev_info(&pf->pdev->dev, "del VSI %d: seid not found\n",
  947. vsi_seid);
  948. goto command_write_done;
  949. }
  950. dev_info(&pf->pdev->dev, "deleting VSI %d\n", vsi_seid);
  951. i40e_vsi_release(vsi);
  952. } else if (strncmp(cmd_buf, "add relay", 9) == 0) {
  953. struct i40e_veb *veb;
  954. int uplink_seid, i;
  955. cnt = sscanf(&cmd_buf[9], "%i %i", &uplink_seid, &vsi_seid);
  956. if (cnt != 2) {
  957. dev_info(&pf->pdev->dev,
  958. "add relay: bad command string, cnt=%d\n",
  959. cnt);
  960. goto command_write_done;
  961. } else if (uplink_seid < 0) {
  962. dev_info(&pf->pdev->dev,
  963. "add relay %d: bad uplink seid\n",
  964. uplink_seid);
  965. goto command_write_done;
  966. }
  967. vsi = i40e_dbg_find_vsi(pf, vsi_seid);
  968. if (!vsi) {
  969. dev_info(&pf->pdev->dev,
  970. "add relay: VSI %d not found\n", vsi_seid);
  971. goto command_write_done;
  972. }
  973. for (i = 0; i < I40E_MAX_VEB; i++)
  974. if (pf->veb[i] && pf->veb[i]->seid == uplink_seid)
  975. break;
  976. if (i >= I40E_MAX_VEB && uplink_seid != 0 &&
  977. uplink_seid != pf->mac_seid) {
  978. dev_info(&pf->pdev->dev,
  979. "add relay: relay uplink %d not found\n",
  980. uplink_seid);
  981. goto command_write_done;
  982. }
  983. veb = i40e_veb_setup(pf, 0, uplink_seid, vsi_seid,
  984. vsi->tc_config.enabled_tc);
  985. if (veb)
  986. dev_info(&pf->pdev->dev, "added relay %d\n", veb->seid);
  987. else
  988. dev_info(&pf->pdev->dev, "add relay failed\n");
  989. } else if (strncmp(cmd_buf, "del relay", 9) == 0) {
  990. int i;
  991. cnt = sscanf(&cmd_buf[9], "%i", &veb_seid);
  992. if (cnt != 1) {
  993. dev_info(&pf->pdev->dev,
  994. "del relay: bad command string, cnt=%d\n",
  995. cnt);
  996. goto command_write_done;
  997. } else if (veb_seid < 0) {
  998. dev_info(&pf->pdev->dev,
  999. "del relay %d: bad relay seid\n", veb_seid);
  1000. goto command_write_done;
  1001. }
  1002. /* find the veb */
  1003. for (i = 0; i < I40E_MAX_VEB; i++)
  1004. if (pf->veb[i] && pf->veb[i]->seid == veb_seid)
  1005. break;
  1006. if (i >= I40E_MAX_VEB) {
  1007. dev_info(&pf->pdev->dev,
  1008. "del relay: relay %d not found\n", veb_seid);
  1009. goto command_write_done;
  1010. }
  1011. dev_info(&pf->pdev->dev, "deleting relay %d\n", veb_seid);
  1012. i40e_veb_release(pf->veb[i]);
  1013. } else if (strncmp(cmd_buf, "add macaddr", 11) == 0) {
  1014. struct i40e_mac_filter *f;
  1015. int vlan = 0;
  1016. u8 ma[6];
  1017. int ret;
  1018. cnt = sscanf(&cmd_buf[11],
  1019. "%i %hhx:%hhx:%hhx:%hhx:%hhx:%hhx %i",
  1020. &vsi_seid,
  1021. &ma[0], &ma[1], &ma[2], &ma[3], &ma[4], &ma[5],
  1022. &vlan);
  1023. if (cnt == 7) {
  1024. vlan = 0;
  1025. } else if (cnt != 8) {
  1026. dev_info(&pf->pdev->dev,
  1027. "add macaddr: bad command string, cnt=%d\n",
  1028. cnt);
  1029. goto command_write_done;
  1030. }
  1031. vsi = i40e_dbg_find_vsi(pf, vsi_seid);
  1032. if (!vsi) {
  1033. dev_info(&pf->pdev->dev,
  1034. "add macaddr: VSI %d not found\n", vsi_seid);
  1035. goto command_write_done;
  1036. }
  1037. f = i40e_add_filter(vsi, ma, vlan, false, false);
  1038. ret = i40e_sync_vsi_filters(vsi);
  1039. if (f && !ret)
  1040. dev_info(&pf->pdev->dev,
  1041. "add macaddr: %pM vlan=%d added to VSI %d\n",
  1042. ma, vlan, vsi_seid);
  1043. else
  1044. dev_info(&pf->pdev->dev,
  1045. "add macaddr: %pM vlan=%d to VSI %d failed, f=%p ret=%d\n",
  1046. ma, vlan, vsi_seid, f, ret);
  1047. } else if (strncmp(cmd_buf, "del macaddr", 11) == 0) {
  1048. int vlan = 0;
  1049. u8 ma[6];
  1050. int ret;
  1051. cnt = sscanf(&cmd_buf[11],
  1052. "%i %hhx:%hhx:%hhx:%hhx:%hhx:%hhx %i",
  1053. &vsi_seid,
  1054. &ma[0], &ma[1], &ma[2], &ma[3], &ma[4], &ma[5],
  1055. &vlan);
  1056. if (cnt == 7) {
  1057. vlan = 0;
  1058. } else if (cnt != 8) {
  1059. dev_info(&pf->pdev->dev,
  1060. "del macaddr: bad command string, cnt=%d\n",
  1061. cnt);
  1062. goto command_write_done;
  1063. }
  1064. vsi = i40e_dbg_find_vsi(pf, vsi_seid);
  1065. if (!vsi) {
  1066. dev_info(&pf->pdev->dev,
  1067. "del macaddr: VSI %d not found\n", vsi_seid);
  1068. goto command_write_done;
  1069. }
  1070. i40e_del_filter(vsi, ma, vlan, false, false);
  1071. ret = i40e_sync_vsi_filters(vsi);
  1072. if (!ret)
  1073. dev_info(&pf->pdev->dev,
  1074. "del macaddr: %pM vlan=%d removed from VSI %d\n",
  1075. ma, vlan, vsi_seid);
  1076. else
  1077. dev_info(&pf->pdev->dev,
  1078. "del macaddr: %pM vlan=%d from VSI %d failed, ret=%d\n",
  1079. ma, vlan, vsi_seid, ret);
  1080. } else if (strncmp(cmd_buf, "add pvid", 8) == 0) {
  1081. i40e_status ret;
  1082. u16 vid;
  1083. unsigned int v;
  1084. cnt = sscanf(&cmd_buf[8], "%i %u", &vsi_seid, &v);
  1085. if (cnt != 2) {
  1086. dev_info(&pf->pdev->dev,
  1087. "add pvid: bad command string, cnt=%d\n", cnt);
  1088. goto command_write_done;
  1089. }
  1090. vsi = i40e_dbg_find_vsi(pf, vsi_seid);
  1091. if (!vsi) {
  1092. dev_info(&pf->pdev->dev, "add pvid: VSI %d not found\n",
  1093. vsi_seid);
  1094. goto command_write_done;
  1095. }
  1096. vid = v;
  1097. ret = i40e_vsi_add_pvid(vsi, vid);
  1098. if (!ret)
  1099. dev_info(&pf->pdev->dev,
  1100. "add pvid: %d added to VSI %d\n",
  1101. vid, vsi_seid);
  1102. else
  1103. dev_info(&pf->pdev->dev,
  1104. "add pvid: %d to VSI %d failed, ret=%d\n",
  1105. vid, vsi_seid, ret);
  1106. } else if (strncmp(cmd_buf, "del pvid", 8) == 0) {
  1107. cnt = sscanf(&cmd_buf[8], "%i", &vsi_seid);
  1108. if (cnt != 1) {
  1109. dev_info(&pf->pdev->dev,
  1110. "del pvid: bad command string, cnt=%d\n",
  1111. cnt);
  1112. goto command_write_done;
  1113. }
  1114. vsi = i40e_dbg_find_vsi(pf, vsi_seid);
  1115. if (!vsi) {
  1116. dev_info(&pf->pdev->dev,
  1117. "del pvid: VSI %d not found\n", vsi_seid);
  1118. goto command_write_done;
  1119. }
  1120. i40e_vsi_remove_pvid(vsi);
  1121. dev_info(&pf->pdev->dev,
  1122. "del pvid: removed from VSI %d\n", vsi_seid);
  1123. } else if (strncmp(cmd_buf, "dump", 4) == 0) {
  1124. if (strncmp(&cmd_buf[5], "switch", 6) == 0) {
  1125. i40e_fetch_switch_configuration(pf, true);
  1126. } else if (strncmp(&cmd_buf[5], "vsi", 3) == 0) {
  1127. cnt = sscanf(&cmd_buf[8], "%i", &vsi_seid);
  1128. if (cnt > 0)
  1129. i40e_dbg_dump_vsi_seid(pf, vsi_seid);
  1130. else
  1131. i40e_dbg_dump_vsi_no_seid(pf);
  1132. } else if (strncmp(&cmd_buf[5], "veb", 3) == 0) {
  1133. cnt = sscanf(&cmd_buf[8], "%i", &vsi_seid);
  1134. if (cnt > 0)
  1135. i40e_dbg_dump_veb_seid(pf, vsi_seid);
  1136. else
  1137. i40e_dbg_dump_veb_all(pf);
  1138. } else if (strncmp(&cmd_buf[5], "desc", 4) == 0) {
  1139. int ring_id, desc_n;
  1140. if (strncmp(&cmd_buf[10], "rx", 2) == 0) {
  1141. cnt = sscanf(&cmd_buf[12], "%i %i %i",
  1142. &vsi_seid, &ring_id, &desc_n);
  1143. i40e_dbg_dump_desc(cnt, vsi_seid, ring_id,
  1144. desc_n, pf, true);
  1145. } else if (strncmp(&cmd_buf[10], "tx", 2)
  1146. == 0) {
  1147. cnt = sscanf(&cmd_buf[12], "%i %i %i",
  1148. &vsi_seid, &ring_id, &desc_n);
  1149. i40e_dbg_dump_desc(cnt, vsi_seid, ring_id,
  1150. desc_n, pf, false);
  1151. } else if (strncmp(&cmd_buf[10], "aq", 2) == 0) {
  1152. i40e_dbg_dump_aq_desc(pf);
  1153. } else {
  1154. dev_info(&pf->pdev->dev,
  1155. "dump desc tx <vsi_seid> <ring_id> [<desc_n>]\n");
  1156. dev_info(&pf->pdev->dev,
  1157. "dump desc rx <vsi_seid> <ring_id> [<desc_n>]\n");
  1158. dev_info(&pf->pdev->dev, "dump desc aq\n");
  1159. }
  1160. } else if (strncmp(&cmd_buf[5], "reset stats", 11) == 0) {
  1161. dev_info(&pf->pdev->dev,
  1162. "core reset count: %d\n", pf->corer_count);
  1163. dev_info(&pf->pdev->dev,
  1164. "global reset count: %d\n", pf->globr_count);
  1165. dev_info(&pf->pdev->dev,
  1166. "emp reset count: %d\n", pf->empr_count);
  1167. dev_info(&pf->pdev->dev,
  1168. "pf reset count: %d\n", pf->pfr_count);
  1169. dev_info(&pf->pdev->dev,
  1170. "pf tx sluggish count: %d\n",
  1171. pf->tx_sluggish_count);
  1172. } else if (strncmp(&cmd_buf[5], "port", 4) == 0) {
  1173. struct i40e_aqc_query_port_ets_config_resp *bw_data;
  1174. struct i40e_dcbx_config *cfg =
  1175. &pf->hw.local_dcbx_config;
  1176. struct i40e_dcbx_config *r_cfg =
  1177. &pf->hw.remote_dcbx_config;
  1178. int i, ret;
  1179. bw_data = kzalloc(sizeof(
  1180. struct i40e_aqc_query_port_ets_config_resp),
  1181. GFP_KERNEL);
  1182. if (!bw_data) {
  1183. ret = -ENOMEM;
  1184. goto command_write_done;
  1185. }
  1186. ret = i40e_aq_query_port_ets_config(&pf->hw,
  1187. pf->mac_seid,
  1188. bw_data, NULL);
  1189. if (ret) {
  1190. dev_info(&pf->pdev->dev,
  1191. "Query Port ETS Config AQ command failed =0x%x\n",
  1192. pf->hw.aq.asq_last_status);
  1193. kfree(bw_data);
  1194. bw_data = NULL;
  1195. goto command_write_done;
  1196. }
  1197. dev_info(&pf->pdev->dev,
  1198. "port bw: tc_valid=0x%x tc_strict_prio=0x%x, tc_bw_max=0x%04x,0x%04x\n",
  1199. bw_data->tc_valid_bits,
  1200. bw_data->tc_strict_priority_bits,
  1201. le16_to_cpu(bw_data->tc_bw_max[0]),
  1202. le16_to_cpu(bw_data->tc_bw_max[1]));
  1203. for (i = 0; i < I40E_MAX_TRAFFIC_CLASS; i++) {
  1204. dev_info(&pf->pdev->dev, "port bw: tc_bw_share=%d tc_bw_limit=%d\n",
  1205. bw_data->tc_bw_share_credits[i],
  1206. le16_to_cpu(bw_data->tc_bw_limits[i]));
  1207. }
  1208. kfree(bw_data);
  1209. bw_data = NULL;
  1210. dev_info(&pf->pdev->dev,
  1211. "port dcbx_mode=%d\n", cfg->dcbx_mode);
  1212. dev_info(&pf->pdev->dev,
  1213. "port ets_cfg: willing=%d cbs=%d, maxtcs=%d\n",
  1214. cfg->etscfg.willing, cfg->etscfg.cbs,
  1215. cfg->etscfg.maxtcs);
  1216. for (i = 0; i < I40E_MAX_TRAFFIC_CLASS; i++) {
  1217. dev_info(&pf->pdev->dev, "port ets_cfg: %d prio_tc=%d tcbw=%d tctsa=%d\n",
  1218. i, cfg->etscfg.prioritytable[i],
  1219. cfg->etscfg.tcbwtable[i],
  1220. cfg->etscfg.tsatable[i]);
  1221. }
  1222. for (i = 0; i < I40E_MAX_TRAFFIC_CLASS; i++) {
  1223. dev_info(&pf->pdev->dev, "port ets_rec: %d prio_tc=%d tcbw=%d tctsa=%d\n",
  1224. i, cfg->etsrec.prioritytable[i],
  1225. cfg->etsrec.tcbwtable[i],
  1226. cfg->etsrec.tsatable[i]);
  1227. }
  1228. dev_info(&pf->pdev->dev,
  1229. "port pfc_cfg: willing=%d mbc=%d, pfccap=%d pfcenable=0x%x\n",
  1230. cfg->pfc.willing, cfg->pfc.mbc,
  1231. cfg->pfc.pfccap, cfg->pfc.pfcenable);
  1232. dev_info(&pf->pdev->dev,
  1233. "port app_table: num_apps=%d\n", cfg->numapps);
  1234. for (i = 0; i < cfg->numapps; i++) {
  1235. dev_info(&pf->pdev->dev, "port app_table: %d prio=%d selector=%d protocol=0x%x\n",
  1236. i, cfg->app[i].priority,
  1237. cfg->app[i].selector,
  1238. cfg->app[i].protocolid);
  1239. }
  1240. /* Peer TLV DCBX data */
  1241. dev_info(&pf->pdev->dev,
  1242. "remote port ets_cfg: willing=%d cbs=%d, maxtcs=%d\n",
  1243. r_cfg->etscfg.willing,
  1244. r_cfg->etscfg.cbs, r_cfg->etscfg.maxtcs);
  1245. for (i = 0; i < I40E_MAX_TRAFFIC_CLASS; i++) {
  1246. dev_info(&pf->pdev->dev, "remote port ets_cfg: %d prio_tc=%d tcbw=%d tctsa=%d\n",
  1247. i, r_cfg->etscfg.prioritytable[i],
  1248. r_cfg->etscfg.tcbwtable[i],
  1249. r_cfg->etscfg.tsatable[i]);
  1250. }
  1251. for (i = 0; i < I40E_MAX_TRAFFIC_CLASS; i++) {
  1252. dev_info(&pf->pdev->dev, "remote port ets_rec: %d prio_tc=%d tcbw=%d tctsa=%d\n",
  1253. i, r_cfg->etsrec.prioritytable[i],
  1254. r_cfg->etsrec.tcbwtable[i],
  1255. r_cfg->etsrec.tsatable[i]);
  1256. }
  1257. dev_info(&pf->pdev->dev,
  1258. "remote port pfc_cfg: willing=%d mbc=%d, pfccap=%d pfcenable=0x%x\n",
  1259. r_cfg->pfc.willing,
  1260. r_cfg->pfc.mbc,
  1261. r_cfg->pfc.pfccap,
  1262. r_cfg->pfc.pfcenable);
  1263. dev_info(&pf->pdev->dev,
  1264. "remote port app_table: num_apps=%d\n",
  1265. r_cfg->numapps);
  1266. for (i = 0; i < r_cfg->numapps; i++) {
  1267. dev_info(&pf->pdev->dev, "remote port app_table: %d prio=%d selector=%d protocol=0x%x\n",
  1268. i, r_cfg->app[i].priority,
  1269. r_cfg->app[i].selector,
  1270. r_cfg->app[i].protocolid);
  1271. }
  1272. } else {
  1273. dev_info(&pf->pdev->dev,
  1274. "dump desc tx <vsi_seid> <ring_id> [<desc_n>], dump desc rx <vsi_seid> <ring_id> [<desc_n>],\n");
  1275. dev_info(&pf->pdev->dev, "dump switch\n");
  1276. dev_info(&pf->pdev->dev, "dump vsi [seid]\n");
  1277. dev_info(&pf->pdev->dev, "dump reset stats\n");
  1278. dev_info(&pf->pdev->dev, "dump port\n");
  1279. dev_info(&pf->pdev->dev,
  1280. "dump debug fwdata <cluster_id> <table_id> <index>\n");
  1281. }
  1282. } else if (strncmp(cmd_buf, "msg_enable", 10) == 0) {
  1283. u32 level;
  1284. cnt = sscanf(&cmd_buf[10], "%i", &level);
  1285. if (cnt) {
  1286. if (I40E_DEBUG_USER & level) {
  1287. pf->hw.debug_mask = level;
  1288. dev_info(&pf->pdev->dev,
  1289. "set hw.debug_mask = 0x%08x\n",
  1290. pf->hw.debug_mask);
  1291. }
  1292. pf->msg_enable = level;
  1293. dev_info(&pf->pdev->dev, "set msg_enable = 0x%08x\n",
  1294. pf->msg_enable);
  1295. } else {
  1296. dev_info(&pf->pdev->dev, "msg_enable = 0x%08x\n",
  1297. pf->msg_enable);
  1298. }
  1299. } else if (strncmp(cmd_buf, "pfr", 3) == 0) {
  1300. dev_info(&pf->pdev->dev, "debugfs: forcing PFR\n");
  1301. i40e_do_reset_safe(pf, (1 << __I40E_PF_RESET_REQUESTED));
  1302. } else if (strncmp(cmd_buf, "corer", 5) == 0) {
  1303. dev_info(&pf->pdev->dev, "debugfs: forcing CoreR\n");
  1304. i40e_do_reset_safe(pf, (1 << __I40E_CORE_RESET_REQUESTED));
  1305. } else if (strncmp(cmd_buf, "globr", 5) == 0) {
  1306. dev_info(&pf->pdev->dev, "debugfs: forcing GlobR\n");
  1307. i40e_do_reset_safe(pf, (1 << __I40E_GLOBAL_RESET_REQUESTED));
  1308. } else if (strncmp(cmd_buf, "empr", 4) == 0) {
  1309. dev_info(&pf->pdev->dev, "debugfs: forcing EMPR\n");
  1310. i40e_do_reset_safe(pf, (1 << __I40E_EMP_RESET_REQUESTED));
  1311. } else if (strncmp(cmd_buf, "read", 4) == 0) {
  1312. u32 address;
  1313. u32 value;
  1314. cnt = sscanf(&cmd_buf[4], "%i", &address);
  1315. if (cnt != 1) {
  1316. dev_info(&pf->pdev->dev, "read <reg>\n");
  1317. goto command_write_done;
  1318. }
  1319. /* check the range on address */
  1320. if (address >= I40E_MAX_REGISTER) {
  1321. dev_info(&pf->pdev->dev, "read reg address 0x%08x too large\n",
  1322. address);
  1323. goto command_write_done;
  1324. }
  1325. value = rd32(&pf->hw, address);
  1326. dev_info(&pf->pdev->dev, "read: 0x%08x = 0x%08x\n",
  1327. address, value);
  1328. } else if (strncmp(cmd_buf, "write", 5) == 0) {
  1329. u32 address, value;
  1330. cnt = sscanf(&cmd_buf[5], "%i %i", &address, &value);
  1331. if (cnt != 2) {
  1332. dev_info(&pf->pdev->dev, "write <reg> <value>\n");
  1333. goto command_write_done;
  1334. }
  1335. /* check the range on address */
  1336. if (address >= I40E_MAX_REGISTER) {
  1337. dev_info(&pf->pdev->dev, "write reg address 0x%08x too large\n",
  1338. address);
  1339. goto command_write_done;
  1340. }
  1341. wr32(&pf->hw, address, value);
  1342. value = rd32(&pf->hw, address);
  1343. dev_info(&pf->pdev->dev, "write: 0x%08x = 0x%08x\n",
  1344. address, value);
  1345. } else if (strncmp(cmd_buf, "clear_stats", 11) == 0) {
  1346. if (strncmp(&cmd_buf[12], "vsi", 3) == 0) {
  1347. cnt = sscanf(&cmd_buf[15], "%i", &vsi_seid);
  1348. if (cnt == 0) {
  1349. int i;
  1350. for (i = 0; i < pf->num_alloc_vsi; i++)
  1351. i40e_vsi_reset_stats(pf->vsi[i]);
  1352. dev_info(&pf->pdev->dev, "vsi clear stats called for all vsi's\n");
  1353. } else if (cnt == 1) {
  1354. vsi = i40e_dbg_find_vsi(pf, vsi_seid);
  1355. if (!vsi) {
  1356. dev_info(&pf->pdev->dev,
  1357. "clear_stats vsi: bad vsi %d\n",
  1358. vsi_seid);
  1359. goto command_write_done;
  1360. }
  1361. i40e_vsi_reset_stats(vsi);
  1362. dev_info(&pf->pdev->dev,
  1363. "vsi clear stats called for vsi %d\n",
  1364. vsi_seid);
  1365. } else {
  1366. dev_info(&pf->pdev->dev, "clear_stats vsi [seid]\n");
  1367. }
  1368. } else if (strncmp(&cmd_buf[12], "pf", 2) == 0) {
  1369. i40e_pf_reset_stats(pf);
  1370. dev_info(&pf->pdev->dev, "pf clear stats called\n");
  1371. } else {
  1372. dev_info(&pf->pdev->dev, "clear_stats vsi [seid] or clear_stats pf\n");
  1373. }
  1374. } else if (strncmp(cmd_buf, "send aq_cmd", 11) == 0) {
  1375. struct i40e_aq_desc *desc;
  1376. i40e_status ret;
  1377. desc = kzalloc(sizeof(struct i40e_aq_desc), GFP_KERNEL);
  1378. if (!desc)
  1379. goto command_write_done;
  1380. cnt = sscanf(&cmd_buf[11],
  1381. "%hi %hi %hi %hi %i %i %i %i %i %i",
  1382. &desc->flags,
  1383. &desc->opcode, &desc->datalen, &desc->retval,
  1384. &desc->cookie_high, &desc->cookie_low,
  1385. &desc->params.internal.param0,
  1386. &desc->params.internal.param1,
  1387. &desc->params.internal.param2,
  1388. &desc->params.internal.param3);
  1389. if (cnt != 10) {
  1390. dev_info(&pf->pdev->dev,
  1391. "send aq_cmd: bad command string, cnt=%d\n",
  1392. cnt);
  1393. kfree(desc);
  1394. desc = NULL;
  1395. goto command_write_done;
  1396. }
  1397. ret = i40e_asq_send_command(&pf->hw, desc, NULL, 0, NULL);
  1398. if (!ret) {
  1399. dev_info(&pf->pdev->dev, "AQ command sent Status : Success\n");
  1400. } else if (ret == I40E_ERR_ADMIN_QUEUE_ERROR) {
  1401. dev_info(&pf->pdev->dev,
  1402. "AQ command send failed Opcode %x AQ Error: %d\n",
  1403. desc->opcode, pf->hw.aq.asq_last_status);
  1404. } else {
  1405. dev_info(&pf->pdev->dev,
  1406. "AQ command send failed Opcode %x Status: %d\n",
  1407. desc->opcode, ret);
  1408. }
  1409. dev_info(&pf->pdev->dev,
  1410. "AQ desc WB 0x%04x 0x%04x 0x%04x 0x%04x 0x%08x 0x%08x 0x%08x 0x%08x 0x%08x 0x%08x\n",
  1411. desc->flags, desc->opcode, desc->datalen, desc->retval,
  1412. desc->cookie_high, desc->cookie_low,
  1413. desc->params.internal.param0,
  1414. desc->params.internal.param1,
  1415. desc->params.internal.param2,
  1416. desc->params.internal.param3);
  1417. kfree(desc);
  1418. desc = NULL;
  1419. } else if (strncmp(cmd_buf, "send indirect aq_cmd", 20) == 0) {
  1420. struct i40e_aq_desc *desc;
  1421. i40e_status ret;
  1422. u16 buffer_len;
  1423. u8 *buff;
  1424. desc = kzalloc(sizeof(struct i40e_aq_desc), GFP_KERNEL);
  1425. if (!desc)
  1426. goto command_write_done;
  1427. cnt = sscanf(&cmd_buf[20],
  1428. "%hi %hi %hi %hi %i %i %i %i %i %i %hi",
  1429. &desc->flags,
  1430. &desc->opcode, &desc->datalen, &desc->retval,
  1431. &desc->cookie_high, &desc->cookie_low,
  1432. &desc->params.internal.param0,
  1433. &desc->params.internal.param1,
  1434. &desc->params.internal.param2,
  1435. &desc->params.internal.param3,
  1436. &buffer_len);
  1437. if (cnt != 11) {
  1438. dev_info(&pf->pdev->dev,
  1439. "send indirect aq_cmd: bad command string, cnt=%d\n",
  1440. cnt);
  1441. kfree(desc);
  1442. desc = NULL;
  1443. goto command_write_done;
  1444. }
  1445. /* Just stub a buffer big enough in case user messed up */
  1446. if (buffer_len == 0)
  1447. buffer_len = 1280;
  1448. buff = kzalloc(buffer_len, GFP_KERNEL);
  1449. if (!buff) {
  1450. kfree(desc);
  1451. desc = NULL;
  1452. goto command_write_done;
  1453. }
  1454. desc->flags |= cpu_to_le16((u16)I40E_AQ_FLAG_BUF);
  1455. ret = i40e_asq_send_command(&pf->hw, desc, buff,
  1456. buffer_len, NULL);
  1457. if (!ret) {
  1458. dev_info(&pf->pdev->dev, "AQ command sent Status : Success\n");
  1459. } else if (ret == I40E_ERR_ADMIN_QUEUE_ERROR) {
  1460. dev_info(&pf->pdev->dev,
  1461. "AQ command send failed Opcode %x AQ Error: %d\n",
  1462. desc->opcode, pf->hw.aq.asq_last_status);
  1463. } else {
  1464. dev_info(&pf->pdev->dev,
  1465. "AQ command send failed Opcode %x Status: %d\n",
  1466. desc->opcode, ret);
  1467. }
  1468. dev_info(&pf->pdev->dev,
  1469. "AQ desc WB 0x%04x 0x%04x 0x%04x 0x%04x 0x%08x 0x%08x 0x%08x 0x%08x 0x%08x 0x%08x\n",
  1470. desc->flags, desc->opcode, desc->datalen, desc->retval,
  1471. desc->cookie_high, desc->cookie_low,
  1472. desc->params.internal.param0,
  1473. desc->params.internal.param1,
  1474. desc->params.internal.param2,
  1475. desc->params.internal.param3);
  1476. print_hex_dump(KERN_INFO, "AQ buffer WB: ",
  1477. DUMP_PREFIX_OFFSET, 16, 1,
  1478. buff, buffer_len, true);
  1479. kfree(buff);
  1480. buff = NULL;
  1481. kfree(desc);
  1482. desc = NULL;
  1483. } else if ((strncmp(cmd_buf, "add fd_filter", 13) == 0) ||
  1484. (strncmp(cmd_buf, "rem fd_filter", 13) == 0)) {
  1485. struct i40e_fdir_filter fd_data;
  1486. u16 packet_len, i, j = 0;
  1487. char *asc_packet;
  1488. u8 *raw_packet;
  1489. bool add = false;
  1490. int ret;
  1491. if (!(pf->flags & I40E_FLAG_FD_SB_ENABLED))
  1492. goto command_write_done;
  1493. if (strncmp(cmd_buf, "add", 3) == 0)
  1494. add = true;
  1495. if (add && (pf->auto_disable_flags & I40E_FLAG_FD_SB_ENABLED))
  1496. goto command_write_done;
  1497. asc_packet = kzalloc(I40E_FDIR_MAX_RAW_PACKET_SIZE,
  1498. GFP_KERNEL);
  1499. if (!asc_packet)
  1500. goto command_write_done;
  1501. raw_packet = kzalloc(I40E_FDIR_MAX_RAW_PACKET_SIZE,
  1502. GFP_KERNEL);
  1503. if (!raw_packet) {
  1504. kfree(asc_packet);
  1505. asc_packet = NULL;
  1506. goto command_write_done;
  1507. }
  1508. cnt = sscanf(&cmd_buf[13],
  1509. "%hx %2hhx %2hhx %hx %2hhx %2hhx %hx %x %hd %511s",
  1510. &fd_data.q_index,
  1511. &fd_data.flex_off, &fd_data.pctype,
  1512. &fd_data.dest_vsi, &fd_data.dest_ctl,
  1513. &fd_data.fd_status, &fd_data.cnt_index,
  1514. &fd_data.fd_id, &packet_len, asc_packet);
  1515. if (cnt != 10) {
  1516. dev_info(&pf->pdev->dev,
  1517. "program fd_filter: bad command string, cnt=%d\n",
  1518. cnt);
  1519. kfree(asc_packet);
  1520. asc_packet = NULL;
  1521. kfree(raw_packet);
  1522. goto command_write_done;
  1523. }
  1524. /* fix packet length if user entered 0 */
  1525. if (packet_len == 0)
  1526. packet_len = I40E_FDIR_MAX_RAW_PACKET_SIZE;
  1527. /* make sure to check the max as well */
  1528. packet_len = min_t(u16,
  1529. packet_len, I40E_FDIR_MAX_RAW_PACKET_SIZE);
  1530. for (i = 0; i < packet_len; i++) {
  1531. sscanf(&asc_packet[j], "%2hhx ",
  1532. &raw_packet[i]);
  1533. j += 3;
  1534. }
  1535. dev_info(&pf->pdev->dev, "FD raw packet dump\n");
  1536. print_hex_dump(KERN_INFO, "FD raw packet: ",
  1537. DUMP_PREFIX_OFFSET, 16, 1,
  1538. raw_packet, packet_len, true);
  1539. ret = i40e_program_fdir_filter(&fd_data, raw_packet, pf, add);
  1540. if (!ret) {
  1541. dev_info(&pf->pdev->dev, "Filter command send Status : Success\n");
  1542. } else {
  1543. dev_info(&pf->pdev->dev,
  1544. "Filter command send failed %d\n", ret);
  1545. }
  1546. kfree(raw_packet);
  1547. raw_packet = NULL;
  1548. kfree(asc_packet);
  1549. asc_packet = NULL;
  1550. } else if (strncmp(cmd_buf, "fd-atr off", 10) == 0) {
  1551. i40e_dbg_cmd_fd_ctrl(pf, I40E_FLAG_FD_ATR_ENABLED, false);
  1552. } else if (strncmp(cmd_buf, "fd-atr on", 9) == 0) {
  1553. i40e_dbg_cmd_fd_ctrl(pf, I40E_FLAG_FD_ATR_ENABLED, true);
  1554. } else if (strncmp(cmd_buf, "fd current cnt", 14) == 0) {
  1555. dev_info(&pf->pdev->dev, "FD current total filter count for this interface: %d\n",
  1556. i40e_get_current_fd_count(pf));
  1557. } else if (strncmp(cmd_buf, "lldp", 4) == 0) {
  1558. if (strncmp(&cmd_buf[5], "stop", 4) == 0) {
  1559. int ret;
  1560. ret = i40e_aq_stop_lldp(&pf->hw, false, NULL);
  1561. if (ret) {
  1562. dev_info(&pf->pdev->dev,
  1563. "Stop LLDP AQ command failed =0x%x\n",
  1564. pf->hw.aq.asq_last_status);
  1565. goto command_write_done;
  1566. }
  1567. ret = i40e_aq_add_rem_control_packet_filter(&pf->hw,
  1568. pf->hw.mac.addr,
  1569. I40E_ETH_P_LLDP, 0,
  1570. pf->vsi[pf->lan_vsi]->seid,
  1571. 0, true, NULL, NULL);
  1572. if (ret) {
  1573. dev_info(&pf->pdev->dev,
  1574. "%s: Add Control Packet Filter AQ command failed =0x%x\n",
  1575. __func__, pf->hw.aq.asq_last_status);
  1576. goto command_write_done;
  1577. }
  1578. #ifdef CONFIG_I40E_DCB
  1579. pf->dcbx_cap = DCB_CAP_DCBX_HOST |
  1580. DCB_CAP_DCBX_VER_IEEE;
  1581. #endif /* CONFIG_I40E_DCB */
  1582. } else if (strncmp(&cmd_buf[5], "start", 5) == 0) {
  1583. int ret;
  1584. ret = i40e_aq_add_rem_control_packet_filter(&pf->hw,
  1585. pf->hw.mac.addr,
  1586. I40E_ETH_P_LLDP, 0,
  1587. pf->vsi[pf->lan_vsi]->seid,
  1588. 0, false, NULL, NULL);
  1589. if (ret) {
  1590. dev_info(&pf->pdev->dev,
  1591. "%s: Remove Control Packet Filter AQ command failed =0x%x\n",
  1592. __func__, pf->hw.aq.asq_last_status);
  1593. /* Continue and start FW LLDP anyways */
  1594. }
  1595. ret = i40e_aq_start_lldp(&pf->hw, NULL);
  1596. if (ret) {
  1597. dev_info(&pf->pdev->dev,
  1598. "Start LLDP AQ command failed =0x%x\n",
  1599. pf->hw.aq.asq_last_status);
  1600. goto command_write_done;
  1601. }
  1602. #ifdef CONFIG_I40E_DCB
  1603. pf->dcbx_cap = DCB_CAP_DCBX_LLD_MANAGED |
  1604. DCB_CAP_DCBX_VER_IEEE;
  1605. #endif /* CONFIG_I40E_DCB */
  1606. } else if (strncmp(&cmd_buf[5],
  1607. "get local", 9) == 0) {
  1608. u16 llen, rlen;
  1609. int ret;
  1610. u8 *buff;
  1611. buff = kzalloc(I40E_LLDPDU_SIZE, GFP_KERNEL);
  1612. if (!buff)
  1613. goto command_write_done;
  1614. ret = i40e_aq_get_lldp_mib(&pf->hw, 0,
  1615. I40E_AQ_LLDP_MIB_LOCAL,
  1616. buff, I40E_LLDPDU_SIZE,
  1617. &llen, &rlen, NULL);
  1618. if (ret) {
  1619. dev_info(&pf->pdev->dev,
  1620. "Get LLDP MIB (local) AQ command failed =0x%x\n",
  1621. pf->hw.aq.asq_last_status);
  1622. kfree(buff);
  1623. buff = NULL;
  1624. goto command_write_done;
  1625. }
  1626. dev_info(&pf->pdev->dev, "LLDP MIB (local)\n");
  1627. print_hex_dump(KERN_INFO, "LLDP MIB (local): ",
  1628. DUMP_PREFIX_OFFSET, 16, 1,
  1629. buff, I40E_LLDPDU_SIZE, true);
  1630. kfree(buff);
  1631. buff = NULL;
  1632. } else if (strncmp(&cmd_buf[5], "get remote", 10) == 0) {
  1633. u16 llen, rlen;
  1634. int ret;
  1635. u8 *buff;
  1636. buff = kzalloc(I40E_LLDPDU_SIZE, GFP_KERNEL);
  1637. if (!buff)
  1638. goto command_write_done;
  1639. ret = i40e_aq_get_lldp_mib(&pf->hw,
  1640. I40E_AQ_LLDP_BRIDGE_TYPE_NEAREST_BRIDGE,
  1641. I40E_AQ_LLDP_MIB_REMOTE,
  1642. buff, I40E_LLDPDU_SIZE,
  1643. &llen, &rlen, NULL);
  1644. if (ret) {
  1645. dev_info(&pf->pdev->dev,
  1646. "Get LLDP MIB (remote) AQ command failed =0x%x\n",
  1647. pf->hw.aq.asq_last_status);
  1648. kfree(buff);
  1649. buff = NULL;
  1650. goto command_write_done;
  1651. }
  1652. dev_info(&pf->pdev->dev, "LLDP MIB (remote)\n");
  1653. print_hex_dump(KERN_INFO, "LLDP MIB (remote): ",
  1654. DUMP_PREFIX_OFFSET, 16, 1,
  1655. buff, I40E_LLDPDU_SIZE, true);
  1656. kfree(buff);
  1657. buff = NULL;
  1658. } else if (strncmp(&cmd_buf[5], "event on", 8) == 0) {
  1659. int ret;
  1660. ret = i40e_aq_cfg_lldp_mib_change_event(&pf->hw,
  1661. true, NULL);
  1662. if (ret) {
  1663. dev_info(&pf->pdev->dev,
  1664. "Config LLDP MIB Change Event (on) AQ command failed =0x%x\n",
  1665. pf->hw.aq.asq_last_status);
  1666. goto command_write_done;
  1667. }
  1668. } else if (strncmp(&cmd_buf[5], "event off", 9) == 0) {
  1669. int ret;
  1670. ret = i40e_aq_cfg_lldp_mib_change_event(&pf->hw,
  1671. false, NULL);
  1672. if (ret) {
  1673. dev_info(&pf->pdev->dev,
  1674. "Config LLDP MIB Change Event (off) AQ command failed =0x%x\n",
  1675. pf->hw.aq.asq_last_status);
  1676. goto command_write_done;
  1677. }
  1678. }
  1679. } else if (strncmp(cmd_buf, "nvm read", 8) == 0) {
  1680. u16 buffer_len, bytes;
  1681. u16 module;
  1682. u32 offset;
  1683. u16 *buff;
  1684. int ret;
  1685. cnt = sscanf(&cmd_buf[8], "%hx %x %hx",
  1686. &module, &offset, &buffer_len);
  1687. if (cnt == 0) {
  1688. module = 0;
  1689. offset = 0;
  1690. buffer_len = 0;
  1691. } else if (cnt == 1) {
  1692. offset = 0;
  1693. buffer_len = 0;
  1694. } else if (cnt == 2) {
  1695. buffer_len = 0;
  1696. } else if (cnt > 3) {
  1697. dev_info(&pf->pdev->dev,
  1698. "nvm read: bad command string, cnt=%d\n", cnt);
  1699. goto command_write_done;
  1700. }
  1701. /* set the max length */
  1702. buffer_len = min_t(u16, buffer_len, I40E_MAX_AQ_BUF_SIZE/2);
  1703. bytes = 2 * buffer_len;
  1704. /* read at least 1k bytes, no more than 4kB */
  1705. bytes = clamp(bytes, (u16)1024, (u16)I40E_MAX_AQ_BUF_SIZE);
  1706. buff = kzalloc(bytes, GFP_KERNEL);
  1707. if (!buff)
  1708. goto command_write_done;
  1709. ret = i40e_acquire_nvm(&pf->hw, I40E_RESOURCE_READ);
  1710. if (ret) {
  1711. dev_info(&pf->pdev->dev,
  1712. "Failed Acquiring NVM resource for read err=%d status=0x%x\n",
  1713. ret, pf->hw.aq.asq_last_status);
  1714. kfree(buff);
  1715. goto command_write_done;
  1716. }
  1717. ret = i40e_aq_read_nvm(&pf->hw, module, (2 * offset),
  1718. bytes, (u8 *)buff, true, NULL);
  1719. i40e_release_nvm(&pf->hw);
  1720. if (ret) {
  1721. dev_info(&pf->pdev->dev,
  1722. "Read NVM AQ failed err=%d status=0x%x\n",
  1723. ret, pf->hw.aq.asq_last_status);
  1724. } else {
  1725. dev_info(&pf->pdev->dev,
  1726. "Read NVM module=0x%x offset=0x%x words=%d\n",
  1727. module, offset, buffer_len);
  1728. if (bytes)
  1729. print_hex_dump(KERN_INFO, "NVM Dump: ",
  1730. DUMP_PREFIX_OFFSET, 16, 2,
  1731. buff, bytes, true);
  1732. }
  1733. kfree(buff);
  1734. buff = NULL;
  1735. } else {
  1736. dev_info(&pf->pdev->dev, "unknown command '%s'\n", cmd_buf);
  1737. dev_info(&pf->pdev->dev, "available commands\n");
  1738. dev_info(&pf->pdev->dev, " add vsi [relay_seid]\n");
  1739. dev_info(&pf->pdev->dev, " del vsi [vsi_seid]\n");
  1740. dev_info(&pf->pdev->dev, " add relay <uplink_seid> <vsi_seid>\n");
  1741. dev_info(&pf->pdev->dev, " del relay <relay_seid>\n");
  1742. dev_info(&pf->pdev->dev, " add macaddr <vsi_seid> <aa:bb:cc:dd:ee:ff> [vlan]\n");
  1743. dev_info(&pf->pdev->dev, " del macaddr <vsi_seid> <aa:bb:cc:dd:ee:ff> [vlan]\n");
  1744. dev_info(&pf->pdev->dev, " add pvid <vsi_seid> <vid>\n");
  1745. dev_info(&pf->pdev->dev, " del pvid <vsi_seid>\n");
  1746. dev_info(&pf->pdev->dev, " dump switch\n");
  1747. dev_info(&pf->pdev->dev, " dump vsi [seid]\n");
  1748. dev_info(&pf->pdev->dev, " dump desc tx <vsi_seid> <ring_id> [<desc_n>]\n");
  1749. dev_info(&pf->pdev->dev, " dump desc rx <vsi_seid> <ring_id> [<desc_n>]\n");
  1750. dev_info(&pf->pdev->dev, " dump desc aq\n");
  1751. dev_info(&pf->pdev->dev, " dump stats\n");
  1752. dev_info(&pf->pdev->dev, " dump reset stats\n");
  1753. dev_info(&pf->pdev->dev, " msg_enable [level]\n");
  1754. dev_info(&pf->pdev->dev, " read <reg>\n");
  1755. dev_info(&pf->pdev->dev, " write <reg> <value>\n");
  1756. dev_info(&pf->pdev->dev, " clear_stats vsi [seid]\n");
  1757. dev_info(&pf->pdev->dev, " clear_stats pf\n");
  1758. dev_info(&pf->pdev->dev, " pfr\n");
  1759. dev_info(&pf->pdev->dev, " corer\n");
  1760. dev_info(&pf->pdev->dev, " globr\n");
  1761. dev_info(&pf->pdev->dev, " send aq_cmd <flags> <opcode> <datalen> <retval> <cookie_h> <cookie_l> <param0> <param1> <param2> <param3>\n");
  1762. dev_info(&pf->pdev->dev, " send indirect aq_cmd <flags> <opcode> <datalen> <retval> <cookie_h> <cookie_l> <param0> <param1> <param2> <param3> <buffer_len>\n");
  1763. dev_info(&pf->pdev->dev, " add fd_filter <dest q_index> <flex_off> <pctype> <dest_vsi> <dest_ctl> <fd_status> <cnt_index> <fd_id> <packet_len> <packet>\n");
  1764. dev_info(&pf->pdev->dev, " rem fd_filter <dest q_index> <flex_off> <pctype> <dest_vsi> <dest_ctl> <fd_status> <cnt_index> <fd_id> <packet_len> <packet>\n");
  1765. dev_info(&pf->pdev->dev, " fd-atr off\n");
  1766. dev_info(&pf->pdev->dev, " fd-atr on\n");
  1767. dev_info(&pf->pdev->dev, " fd current cnt");
  1768. dev_info(&pf->pdev->dev, " lldp start\n");
  1769. dev_info(&pf->pdev->dev, " lldp stop\n");
  1770. dev_info(&pf->pdev->dev, " lldp get local\n");
  1771. dev_info(&pf->pdev->dev, " lldp get remote\n");
  1772. dev_info(&pf->pdev->dev, " lldp event on\n");
  1773. dev_info(&pf->pdev->dev, " lldp event off\n");
  1774. dev_info(&pf->pdev->dev, " nvm read [module] [word_offset] [word_count]\n");
  1775. }
  1776. command_write_done:
  1777. kfree(cmd_buf);
  1778. cmd_buf = NULL;
  1779. return count;
  1780. }
  1781. static const struct file_operations i40e_dbg_command_fops = {
  1782. .owner = THIS_MODULE,
  1783. .open = simple_open,
  1784. .read = i40e_dbg_command_read,
  1785. .write = i40e_dbg_command_write,
  1786. };
  1787. /**************************************************************
  1788. * netdev_ops
  1789. * The netdev_ops entry in debugfs is for giving the driver commands
  1790. * to be executed from the netdev operations.
  1791. **************************************************************/
  1792. static char i40e_dbg_netdev_ops_buf[256] = "hello world";
  1793. /**
  1794. * i40e_dbg_netdev_ops - read for netdev_ops datum
  1795. * @filp: the opened file
  1796. * @buffer: where to write the data for the user to read
  1797. * @count: the size of the user's buffer
  1798. * @ppos: file position offset
  1799. **/
  1800. static ssize_t i40e_dbg_netdev_ops_read(struct file *filp, char __user *buffer,
  1801. size_t count, loff_t *ppos)
  1802. {
  1803. struct i40e_pf *pf = filp->private_data;
  1804. int bytes_not_copied;
  1805. int buf_size = 256;
  1806. char *buf;
  1807. int len;
  1808. /* don't allow partal reads */
  1809. if (*ppos != 0)
  1810. return 0;
  1811. if (count < buf_size)
  1812. return -ENOSPC;
  1813. buf = kzalloc(buf_size, GFP_KERNEL);
  1814. if (!buf)
  1815. return -ENOSPC;
  1816. len = snprintf(buf, buf_size, "%s: %s\n",
  1817. pf->vsi[pf->lan_vsi]->netdev->name,
  1818. i40e_dbg_netdev_ops_buf);
  1819. bytes_not_copied = copy_to_user(buffer, buf, len);
  1820. kfree(buf);
  1821. if (bytes_not_copied < 0)
  1822. return bytes_not_copied;
  1823. *ppos = len;
  1824. return len;
  1825. }
  1826. /**
  1827. * i40e_dbg_netdev_ops_write - write into netdev_ops datum
  1828. * @filp: the opened file
  1829. * @buffer: where to find the user's data
  1830. * @count: the length of the user's data
  1831. * @ppos: file position offset
  1832. **/
  1833. static ssize_t i40e_dbg_netdev_ops_write(struct file *filp,
  1834. const char __user *buffer,
  1835. size_t count, loff_t *ppos)
  1836. {
  1837. struct i40e_pf *pf = filp->private_data;
  1838. int bytes_not_copied;
  1839. struct i40e_vsi *vsi;
  1840. char *buf_tmp;
  1841. int vsi_seid;
  1842. int i, cnt;
  1843. /* don't allow partial writes */
  1844. if (*ppos != 0)
  1845. return 0;
  1846. if (count >= sizeof(i40e_dbg_netdev_ops_buf))
  1847. return -ENOSPC;
  1848. memset(i40e_dbg_netdev_ops_buf, 0, sizeof(i40e_dbg_netdev_ops_buf));
  1849. bytes_not_copied = copy_from_user(i40e_dbg_netdev_ops_buf,
  1850. buffer, count);
  1851. if (bytes_not_copied < 0)
  1852. return bytes_not_copied;
  1853. else if (bytes_not_copied > 0)
  1854. count -= bytes_not_copied;
  1855. i40e_dbg_netdev_ops_buf[count] = '\0';
  1856. buf_tmp = strchr(i40e_dbg_netdev_ops_buf, '\n');
  1857. if (buf_tmp) {
  1858. *buf_tmp = '\0';
  1859. count = buf_tmp - i40e_dbg_netdev_ops_buf + 1;
  1860. }
  1861. if (strncmp(i40e_dbg_netdev_ops_buf, "tx_timeout", 10) == 0) {
  1862. cnt = sscanf(&i40e_dbg_netdev_ops_buf[11], "%i", &vsi_seid);
  1863. if (cnt != 1) {
  1864. dev_info(&pf->pdev->dev, "tx_timeout <vsi_seid>\n");
  1865. goto netdev_ops_write_done;
  1866. }
  1867. vsi = i40e_dbg_find_vsi(pf, vsi_seid);
  1868. if (!vsi) {
  1869. dev_info(&pf->pdev->dev,
  1870. "tx_timeout: VSI %d not found\n", vsi_seid);
  1871. } else if (!vsi->netdev) {
  1872. dev_info(&pf->pdev->dev, "tx_timeout: no netdev for VSI %d\n",
  1873. vsi_seid);
  1874. } else if (test_bit(__I40E_DOWN, &vsi->state)) {
  1875. dev_info(&pf->pdev->dev, "tx_timeout: VSI %d not UP\n",
  1876. vsi_seid);
  1877. } else if (rtnl_trylock()) {
  1878. vsi->netdev->netdev_ops->ndo_tx_timeout(vsi->netdev);
  1879. rtnl_unlock();
  1880. dev_info(&pf->pdev->dev, "tx_timeout called\n");
  1881. } else {
  1882. dev_info(&pf->pdev->dev, "Could not acquire RTNL - please try again\n");
  1883. }
  1884. } else if (strncmp(i40e_dbg_netdev_ops_buf, "change_mtu", 10) == 0) {
  1885. int mtu;
  1886. cnt = sscanf(&i40e_dbg_netdev_ops_buf[11], "%i %i",
  1887. &vsi_seid, &mtu);
  1888. if (cnt != 2) {
  1889. dev_info(&pf->pdev->dev, "change_mtu <vsi_seid> <mtu>\n");
  1890. goto netdev_ops_write_done;
  1891. }
  1892. vsi = i40e_dbg_find_vsi(pf, vsi_seid);
  1893. if (!vsi) {
  1894. dev_info(&pf->pdev->dev,
  1895. "change_mtu: VSI %d not found\n", vsi_seid);
  1896. } else if (!vsi->netdev) {
  1897. dev_info(&pf->pdev->dev, "change_mtu: no netdev for VSI %d\n",
  1898. vsi_seid);
  1899. } else if (rtnl_trylock()) {
  1900. vsi->netdev->netdev_ops->ndo_change_mtu(vsi->netdev,
  1901. mtu);
  1902. rtnl_unlock();
  1903. dev_info(&pf->pdev->dev, "change_mtu called\n");
  1904. } else {
  1905. dev_info(&pf->pdev->dev, "Could not acquire RTNL - please try again\n");
  1906. }
  1907. } else if (strncmp(i40e_dbg_netdev_ops_buf, "set_rx_mode", 11) == 0) {
  1908. cnt = sscanf(&i40e_dbg_netdev_ops_buf[11], "%i", &vsi_seid);
  1909. if (cnt != 1) {
  1910. dev_info(&pf->pdev->dev, "set_rx_mode <vsi_seid>\n");
  1911. goto netdev_ops_write_done;
  1912. }
  1913. vsi = i40e_dbg_find_vsi(pf, vsi_seid);
  1914. if (!vsi) {
  1915. dev_info(&pf->pdev->dev,
  1916. "set_rx_mode: VSI %d not found\n", vsi_seid);
  1917. } else if (!vsi->netdev) {
  1918. dev_info(&pf->pdev->dev, "set_rx_mode: no netdev for VSI %d\n",
  1919. vsi_seid);
  1920. } else if (rtnl_trylock()) {
  1921. vsi->netdev->netdev_ops->ndo_set_rx_mode(vsi->netdev);
  1922. rtnl_unlock();
  1923. dev_info(&pf->pdev->dev, "set_rx_mode called\n");
  1924. } else {
  1925. dev_info(&pf->pdev->dev, "Could not acquire RTNL - please try again\n");
  1926. }
  1927. } else if (strncmp(i40e_dbg_netdev_ops_buf, "napi", 4) == 0) {
  1928. cnt = sscanf(&i40e_dbg_netdev_ops_buf[4], "%i", &vsi_seid);
  1929. if (cnt != 1) {
  1930. dev_info(&pf->pdev->dev, "napi <vsi_seid>\n");
  1931. goto netdev_ops_write_done;
  1932. }
  1933. vsi = i40e_dbg_find_vsi(pf, vsi_seid);
  1934. if (!vsi) {
  1935. dev_info(&pf->pdev->dev, "napi: VSI %d not found\n",
  1936. vsi_seid);
  1937. } else if (!vsi->netdev) {
  1938. dev_info(&pf->pdev->dev, "napi: no netdev for VSI %d\n",
  1939. vsi_seid);
  1940. } else {
  1941. for (i = 0; i < vsi->num_q_vectors; i++)
  1942. napi_schedule(&vsi->q_vectors[i]->napi);
  1943. dev_info(&pf->pdev->dev, "napi called\n");
  1944. }
  1945. } else {
  1946. dev_info(&pf->pdev->dev, "unknown command '%s'\n",
  1947. i40e_dbg_netdev_ops_buf);
  1948. dev_info(&pf->pdev->dev, "available commands\n");
  1949. dev_info(&pf->pdev->dev, " tx_timeout <vsi_seid>\n");
  1950. dev_info(&pf->pdev->dev, " change_mtu <vsi_seid> <mtu>\n");
  1951. dev_info(&pf->pdev->dev, " set_rx_mode <vsi_seid>\n");
  1952. dev_info(&pf->pdev->dev, " napi <vsi_seid>\n");
  1953. }
  1954. netdev_ops_write_done:
  1955. return count;
  1956. }
  1957. static const struct file_operations i40e_dbg_netdev_ops_fops = {
  1958. .owner = THIS_MODULE,
  1959. .open = simple_open,
  1960. .read = i40e_dbg_netdev_ops_read,
  1961. .write = i40e_dbg_netdev_ops_write,
  1962. };
  1963. /**
  1964. * i40e_dbg_pf_init - setup the debugfs directory for the pf
  1965. * @pf: the pf that is starting up
  1966. **/
  1967. void i40e_dbg_pf_init(struct i40e_pf *pf)
  1968. {
  1969. struct dentry *pfile;
  1970. const char *name = pci_name(pf->pdev);
  1971. const struct device *dev = &pf->pdev->dev;
  1972. pf->i40e_dbg_pf = debugfs_create_dir(name, i40e_dbg_root);
  1973. if (!pf->i40e_dbg_pf)
  1974. return;
  1975. pfile = debugfs_create_file("command", 0600, pf->i40e_dbg_pf, pf,
  1976. &i40e_dbg_command_fops);
  1977. if (!pfile)
  1978. goto create_failed;
  1979. pfile = debugfs_create_file("dump", 0600, pf->i40e_dbg_pf, pf,
  1980. &i40e_dbg_dump_fops);
  1981. if (!pfile)
  1982. goto create_failed;
  1983. pfile = debugfs_create_file("netdev_ops", 0600, pf->i40e_dbg_pf, pf,
  1984. &i40e_dbg_netdev_ops_fops);
  1985. if (!pfile)
  1986. goto create_failed;
  1987. return;
  1988. create_failed:
  1989. dev_info(dev, "debugfs dir/file for %s failed\n", name);
  1990. debugfs_remove_recursive(pf->i40e_dbg_pf);
  1991. return;
  1992. }
  1993. /**
  1994. * i40e_dbg_pf_exit - clear out the pf's debugfs entries
  1995. * @pf: the pf that is stopping
  1996. **/
  1997. void i40e_dbg_pf_exit(struct i40e_pf *pf)
  1998. {
  1999. debugfs_remove_recursive(pf->i40e_dbg_pf);
  2000. pf->i40e_dbg_pf = NULL;
  2001. kfree(i40e_dbg_dump_buf);
  2002. i40e_dbg_dump_buf = NULL;
  2003. }
  2004. /**
  2005. * i40e_dbg_init - start up debugfs for the driver
  2006. **/
  2007. void i40e_dbg_init(void)
  2008. {
  2009. i40e_dbg_root = debugfs_create_dir(i40e_driver_name, NULL);
  2010. if (!i40e_dbg_root)
  2011. pr_info("init of debugfs failed\n");
  2012. }
  2013. /**
  2014. * i40e_dbg_exit - clean out the driver's debugfs entries
  2015. **/
  2016. void i40e_dbg_exit(void)
  2017. {
  2018. debugfs_remove_recursive(i40e_dbg_root);
  2019. i40e_dbg_root = NULL;
  2020. }
  2021. #endif /* CONFIG_DEBUG_FS */