blob: a3d7ec62b76c5df6acb350b9025048954fc97a85 [file] [log] [blame]
Jesse Brandeburg02e9c292013-09-11 08:40:17 +00001/*******************************************************************************
2 *
3 * Intel Ethernet Controller XL710 Family Linux Driver
Jesse Brandeburg13cb3e92016-01-13 16:51:47 -08004 * Copyright(c) 2013 - 2016 Intel Corporation.
Jesse Brandeburg02e9c292013-09-11 08:40:17 +00005 *
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 *
Greg Rosedc641b72013-12-18 13:45:51 +000015 * 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/>.
Jesse Brandeburg02e9c292013-09-11 08:40:17 +000017 *
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
27#ifdef CONFIG_DEBUG_FS
28
29#include <linux/fs.h>
30#include <linux/debugfs.h>
31
32#include "i40e.h"
33
34static struct dentry *i40e_dbg_root;
35
36/**
37 * i40e_dbg_find_vsi - searches for the vsi with the given seid
Jeff Kirsherb40c82e62015-02-27 09:18:34 +000038 * @pf - the PF structure to search for the vsi
Jesse Brandeburg02e9c292013-09-11 08:40:17 +000039 * @seid - seid of the vsi it is searching for
40 **/
41static struct i40e_vsi *i40e_dbg_find_vsi(struct i40e_pf *pf, int seid)
42{
43 int i;
44
45 if (seid < 0)
46 dev_info(&pf->pdev->dev, "%d: bad seid\n", seid);
47 else
Mitch Williams505682c2014-05-20 08:01:37 +000048 for (i = 0; i < pf->num_alloc_vsi; i++)
Jesse Brandeburg02e9c292013-09-11 08:40:17 +000049 if (pf->vsi[i] && (pf->vsi[i]->seid == seid))
50 return pf->vsi[i];
51
52 return NULL;
53}
54
55/**
56 * i40e_dbg_find_veb - searches for the veb with the given seid
Jeff Kirsherb40c82e62015-02-27 09:18:34 +000057 * @pf - the PF structure to search for the veb
Jesse Brandeburg02e9c292013-09-11 08:40:17 +000058 * @seid - seid of the veb it is searching for
59 **/
60static struct i40e_veb *i40e_dbg_find_veb(struct i40e_pf *pf, int seid)
61{
62 int i;
63
Kiran Patil4147e2c2016-01-15 14:33:14 -080064 for (i = 0; i < I40E_MAX_VEB; i++)
65 if (pf->veb[i] && pf->veb[i]->seid == seid)
66 return pf->veb[i];
Jesse Brandeburg02e9c292013-09-11 08:40:17 +000067 return NULL;
68}
69
70/**************************************************************
Jesse Brandeburg02e9c292013-09-11 08:40:17 +000071 * command
72 * The command entry in debugfs is for giving the driver commands
73 * to be executed - these may be for changing the internal switch
74 * setup, adding or removing filters, or other things. Many of
75 * these will be useful for some forms of unit testing.
76 **************************************************************/
Greg Rosed1da3ac2015-02-27 09:18:29 +000077static char i40e_dbg_command_buf[256] = "";
Jesse Brandeburg02e9c292013-09-11 08:40:17 +000078
79/**
80 * i40e_dbg_command_read - read for command datum
81 * @filp: the opened file
82 * @buffer: where to write the data for the user to read
83 * @count: the size of the user's buffer
84 * @ppos: file position offset
85 **/
86static ssize_t i40e_dbg_command_read(struct file *filp, char __user *buffer,
87 size_t count, loff_t *ppos)
88{
89 struct i40e_pf *pf = filp->private_data;
90 int bytes_not_copied;
91 int buf_size = 256;
92 char *buf;
93 int len;
94
95 /* don't allow partial reads */
96 if (*ppos != 0)
97 return 0;
98 if (count < buf_size)
99 return -ENOSPC;
100
101 buf = kzalloc(buf_size, GFP_KERNEL);
102 if (!buf)
103 return -ENOSPC;
104
105 len = snprintf(buf, buf_size, "%s: %s\n",
106 pf->vsi[pf->lan_vsi]->netdev->name,
107 i40e_dbg_command_buf);
108
109 bytes_not_copied = copy_to_user(buffer, buf, len);
110 kfree(buf);
111
Rasmus Villemoes0286c672015-10-17 22:58:19 +0200112 if (bytes_not_copied)
113 return -EFAULT;
Jesse Brandeburg02e9c292013-09-11 08:40:17 +0000114
115 *ppos = len;
116 return len;
117}
118
Mitch Williamsc3c7ea22016-06-20 09:10:38 -0700119static char *i40e_filter_state_string[] = {
120 "INVALID",
121 "NEW",
122 "ACTIVE",
123 "FAILED",
124 "REMOVE",
125};
126
Jesse Brandeburg02e9c292013-09-11 08:40:17 +0000127/**
Shannon Nelsone625f712013-11-26 10:49:31 +0000128 * i40e_dbg_dump_vsi_seid - handles dump vsi seid write into command datum
Jesse Brandeburg02e9c292013-09-11 08:40:17 +0000129 * @pf: the i40e_pf created in command write
130 * @seid: the seid the user put in
131 **/
132static void i40e_dbg_dump_vsi_seid(struct i40e_pf *pf, int seid)
133{
134 struct rtnl_link_stats64 *nstat;
135 struct i40e_mac_filter *f;
136 struct i40e_vsi *vsi;
Jacob Keller278e7d02016-10-05 09:30:37 -0700137 int i, bkt;
Jesse Brandeburg02e9c292013-09-11 08:40:17 +0000138
139 vsi = i40e_dbg_find_vsi(pf, seid);
140 if (!vsi) {
141 dev_info(&pf->pdev->dev,
142 "dump %d: seid not found\n", seid);
143 return;
144 }
145 dev_info(&pf->pdev->dev, "vsi seid %d\n", seid);
Shannon Nelsonde1017f2015-12-23 12:05:53 -0800146 if (vsi->netdev) {
147 struct net_device *nd = vsi->netdev;
148
149 dev_info(&pf->pdev->dev, " netdev: name = %s, state = %lu, flags = 0x%08x\n",
150 nd->name, nd->state, nd->flags);
151 dev_info(&pf->pdev->dev, " features = 0x%08lx\n",
152 (unsigned long int)nd->features);
153 dev_info(&pf->pdev->dev, " hw_features = 0x%08lx\n",
154 (unsigned long int)nd->hw_features);
155 dev_info(&pf->pdev->dev, " vlan_features = 0x%08lx\n",
156 (unsigned long int)nd->vlan_features);
157 }
Colin Kingafb8ece2016-02-13 23:57:16 +0000158 dev_info(&pf->pdev->dev,
159 " vlgrp: & = %p\n", vsi->active_vlans);
Jesse Brandeburg02e9c292013-09-11 08:40:17 +0000160 dev_info(&pf->pdev->dev,
Shannon Nelsonde1017f2015-12-23 12:05:53 -0800161 " state = %li flags = 0x%08lx, netdev_registered = %i, current_netdev_flags = 0x%04x\n",
162 vsi->state, vsi->flags,
163 vsi->netdev_registered, vsi->current_netdev_flags);
Shannon Nelson2ddb80c2015-02-27 09:18:36 +0000164 if (vsi == pf->vsi[pf->lan_vsi])
Shannon Nelsonde1017f2015-12-23 12:05:53 -0800165 dev_info(&pf->pdev->dev, " MAC address: %pM SAN MAC: %pM Port MAC: %pM\n",
Shannon Nelson2ddb80c2015-02-27 09:18:36 +0000166 pf->hw.mac.addr,
167 pf->hw.mac.san_addr,
168 pf->hw.mac.port_addr);
Jacob Keller278e7d02016-10-05 09:30:37 -0700169 hash_for_each(vsi->mac_filter_hash, bkt, f, hlist) {
Jesse Brandeburg02e9c292013-09-11 08:40:17 +0000170 dev_info(&pf->pdev->dev,
Jacob Keller1bc87e82016-10-05 09:30:31 -0700171 " mac_filter_hash: %pM vid=%d, state %s\n",
172 f->macaddr, f->vlan,
173 i40e_filter_state_string[f->state]);
Jesse Brandeburg02e9c292013-09-11 08:40:17 +0000174 }
Jacob Keller5951cf92016-11-21 13:03:47 -0800175 dev_info(&pf->pdev->dev, " active_filters %u, promisc_threshold %u, overflow promisc %s\n",
Mitch Williamsc3c7ea22016-06-20 09:10:38 -0700176 vsi->active_filters, vsi->promisc_threshold,
177 (test_bit(__I40E_FILTER_OVERFLOW_PROMISC, &vsi->state) ?
178 "ON" : "OFF"));
Jesse Brandeburg02e9c292013-09-11 08:40:17 +0000179 nstat = i40e_get_vsi_stats_struct(vsi);
180 dev_info(&pf->pdev->dev,
181 " net_stats: rx_packets = %lu, rx_bytes = %lu, rx_errors = %lu, rx_dropped = %lu\n",
Jesse Brandeburg6995b362015-08-28 17:55:54 -0400182 (unsigned long int)nstat->rx_packets,
183 (unsigned long int)nstat->rx_bytes,
184 (unsigned long int)nstat->rx_errors,
185 (unsigned long int)nstat->rx_dropped);
Jesse Brandeburg02e9c292013-09-11 08:40:17 +0000186 dev_info(&pf->pdev->dev,
187 " net_stats: tx_packets = %lu, tx_bytes = %lu, tx_errors = %lu, tx_dropped = %lu\n",
Jesse Brandeburg6995b362015-08-28 17:55:54 -0400188 (unsigned long int)nstat->tx_packets,
189 (unsigned long int)nstat->tx_bytes,
190 (unsigned long int)nstat->tx_errors,
191 (unsigned long int)nstat->tx_dropped);
Jesse Brandeburg02e9c292013-09-11 08:40:17 +0000192 dev_info(&pf->pdev->dev,
193 " net_stats: multicast = %lu, collisions = %lu\n",
Jesse Brandeburg6995b362015-08-28 17:55:54 -0400194 (unsigned long int)nstat->multicast,
195 (unsigned long int)nstat->collisions);
Jesse Brandeburg02e9c292013-09-11 08:40:17 +0000196 dev_info(&pf->pdev->dev,
197 " net_stats: rx_length_errors = %lu, rx_over_errors = %lu, rx_crc_errors = %lu\n",
Jesse Brandeburg6995b362015-08-28 17:55:54 -0400198 (unsigned long int)nstat->rx_length_errors,
199 (unsigned long int)nstat->rx_over_errors,
200 (unsigned long int)nstat->rx_crc_errors);
Jesse Brandeburg02e9c292013-09-11 08:40:17 +0000201 dev_info(&pf->pdev->dev,
202 " net_stats: rx_frame_errors = %lu, rx_fifo_errors = %lu, rx_missed_errors = %lu\n",
Jesse Brandeburg6995b362015-08-28 17:55:54 -0400203 (unsigned long int)nstat->rx_frame_errors,
204 (unsigned long int)nstat->rx_fifo_errors,
205 (unsigned long int)nstat->rx_missed_errors);
Jesse Brandeburg02e9c292013-09-11 08:40:17 +0000206 dev_info(&pf->pdev->dev,
207 " net_stats: tx_aborted_errors = %lu, tx_carrier_errors = %lu, tx_fifo_errors = %lu\n",
Jesse Brandeburg6995b362015-08-28 17:55:54 -0400208 (unsigned long int)nstat->tx_aborted_errors,
209 (unsigned long int)nstat->tx_carrier_errors,
210 (unsigned long int)nstat->tx_fifo_errors);
Jesse Brandeburg02e9c292013-09-11 08:40:17 +0000211 dev_info(&pf->pdev->dev,
212 " net_stats: tx_heartbeat_errors = %lu, tx_window_errors = %lu\n",
Jesse Brandeburg6995b362015-08-28 17:55:54 -0400213 (unsigned long int)nstat->tx_heartbeat_errors,
214 (unsigned long int)nstat->tx_window_errors);
Jesse Brandeburg02e9c292013-09-11 08:40:17 +0000215 dev_info(&pf->pdev->dev,
216 " net_stats: rx_compressed = %lu, tx_compressed = %lu\n",
Jesse Brandeburg6995b362015-08-28 17:55:54 -0400217 (unsigned long int)nstat->rx_compressed,
218 (unsigned long int)nstat->tx_compressed);
Jesse Brandeburg02e9c292013-09-11 08:40:17 +0000219 dev_info(&pf->pdev->dev,
220 " net_stats_offsets: rx_packets = %lu, rx_bytes = %lu, rx_errors = %lu, rx_dropped = %lu\n",
Jesse Brandeburg6995b362015-08-28 17:55:54 -0400221 (unsigned long int)vsi->net_stats_offsets.rx_packets,
222 (unsigned long int)vsi->net_stats_offsets.rx_bytes,
223 (unsigned long int)vsi->net_stats_offsets.rx_errors,
224 (unsigned long int)vsi->net_stats_offsets.rx_dropped);
Jesse Brandeburg02e9c292013-09-11 08:40:17 +0000225 dev_info(&pf->pdev->dev,
226 " net_stats_offsets: tx_packets = %lu, tx_bytes = %lu, tx_errors = %lu, tx_dropped = %lu\n",
Jesse Brandeburg6995b362015-08-28 17:55:54 -0400227 (unsigned long int)vsi->net_stats_offsets.tx_packets,
228 (unsigned long int)vsi->net_stats_offsets.tx_bytes,
229 (unsigned long int)vsi->net_stats_offsets.tx_errors,
230 (unsigned long int)vsi->net_stats_offsets.tx_dropped);
Jesse Brandeburg02e9c292013-09-11 08:40:17 +0000231 dev_info(&pf->pdev->dev,
232 " net_stats_offsets: multicast = %lu, collisions = %lu\n",
Jesse Brandeburg6995b362015-08-28 17:55:54 -0400233 (unsigned long int)vsi->net_stats_offsets.multicast,
234 (unsigned long int)vsi->net_stats_offsets.collisions);
Jesse Brandeburg02e9c292013-09-11 08:40:17 +0000235 dev_info(&pf->pdev->dev,
236 " net_stats_offsets: rx_length_errors = %lu, rx_over_errors = %lu, rx_crc_errors = %lu\n",
Jesse Brandeburg6995b362015-08-28 17:55:54 -0400237 (unsigned long int)vsi->net_stats_offsets.rx_length_errors,
238 (unsigned long int)vsi->net_stats_offsets.rx_over_errors,
239 (unsigned long int)vsi->net_stats_offsets.rx_crc_errors);
Jesse Brandeburg02e9c292013-09-11 08:40:17 +0000240 dev_info(&pf->pdev->dev,
241 " net_stats_offsets: rx_frame_errors = %lu, rx_fifo_errors = %lu, rx_missed_errors = %lu\n",
Jesse Brandeburg6995b362015-08-28 17:55:54 -0400242 (unsigned long int)vsi->net_stats_offsets.rx_frame_errors,
243 (unsigned long int)vsi->net_stats_offsets.rx_fifo_errors,
244 (unsigned long int)vsi->net_stats_offsets.rx_missed_errors);
Jesse Brandeburg02e9c292013-09-11 08:40:17 +0000245 dev_info(&pf->pdev->dev,
246 " net_stats_offsets: tx_aborted_errors = %lu, tx_carrier_errors = %lu, tx_fifo_errors = %lu\n",
Jesse Brandeburg6995b362015-08-28 17:55:54 -0400247 (unsigned long int)vsi->net_stats_offsets.tx_aborted_errors,
248 (unsigned long int)vsi->net_stats_offsets.tx_carrier_errors,
249 (unsigned long int)vsi->net_stats_offsets.tx_fifo_errors);
Jesse Brandeburg02e9c292013-09-11 08:40:17 +0000250 dev_info(&pf->pdev->dev,
251 " net_stats_offsets: tx_heartbeat_errors = %lu, tx_window_errors = %lu\n",
Jesse Brandeburg6995b362015-08-28 17:55:54 -0400252 (unsigned long int)vsi->net_stats_offsets.tx_heartbeat_errors,
253 (unsigned long int)vsi->net_stats_offsets.tx_window_errors);
Jesse Brandeburg02e9c292013-09-11 08:40:17 +0000254 dev_info(&pf->pdev->dev,
255 " net_stats_offsets: rx_compressed = %lu, tx_compressed = %lu\n",
Jesse Brandeburg6995b362015-08-28 17:55:54 -0400256 (unsigned long int)vsi->net_stats_offsets.rx_compressed,
257 (unsigned long int)vsi->net_stats_offsets.tx_compressed);
Jesse Brandeburg02e9c292013-09-11 08:40:17 +0000258 dev_info(&pf->pdev->dev,
259 " tx_restart = %d, tx_busy = %d, rx_buf_failed = %d, rx_page_failed = %d\n",
260 vsi->tx_restart, vsi->tx_busy,
261 vsi->rx_buf_failed, vsi->rx_page_failed);
Alexander Duyck9f65e152013-09-28 06:00:58 +0000262 rcu_read_lock();
263 for (i = 0; i < vsi->num_queue_pairs; i++) {
264 struct i40e_ring *rx_ring = ACCESS_ONCE(vsi->rx_rings[i]);
Jesse Brandeburg6995b362015-08-28 17:55:54 -0400265
Alexander Duyck9f65e152013-09-28 06:00:58 +0000266 if (!rx_ring)
267 continue;
268
269 dev_info(&pf->pdev->dev,
270 " rx_rings[%i]: desc = %p\n",
271 i, rx_ring->desc);
272 dev_info(&pf->pdev->dev,
273 " rx_rings[%i]: dev = %p, netdev = %p, rx_bi = %p\n",
274 i, rx_ring->dev,
275 rx_ring->netdev,
276 rx_ring->rx_bi);
277 dev_info(&pf->pdev->dev,
278 " rx_rings[%i]: state = %li, queue_index = %d, reg_idx = %d\n",
279 i, rx_ring->state,
280 rx_ring->queue_index,
281 rx_ring->reg_idx);
282 dev_info(&pf->pdev->dev,
Jesse Brandeburg1a557afc2016-04-20 19:43:37 -0700283 " rx_rings[%i]: rx_buf_len = %d\n",
284 i, rx_ring->rx_buf_len);
Alexander Duyck9f65e152013-09-28 06:00:58 +0000285 dev_info(&pf->pdev->dev,
Jesse Brandeburgb32bfa172016-04-18 11:33:42 -0700286 " rx_rings[%i]: next_to_use = %d, next_to_clean = %d, ring_active = %i\n",
287 i,
Alexander Duyck9f65e152013-09-28 06:00:58 +0000288 rx_ring->next_to_use,
289 rx_ring->next_to_clean,
290 rx_ring->ring_active);
291 dev_info(&pf->pdev->dev,
292 " rx_rings[%i]: rx_stats: packets = %lld, bytes = %lld, non_eop_descs = %lld\n",
293 i, rx_ring->stats.packets,
294 rx_ring->stats.bytes,
295 rx_ring->rx_stats.non_eop_descs);
296 dev_info(&pf->pdev->dev,
Mitch Williams420136c2013-12-18 13:45:59 +0000297 " rx_rings[%i]: rx_stats: alloc_page_failed = %lld, alloc_buff_failed = %lld\n",
Alexander Duyck9f65e152013-09-28 06:00:58 +0000298 i,
Mitch Williams420136c2013-12-18 13:45:59 +0000299 rx_ring->rx_stats.alloc_page_failed,
300 rx_ring->rx_stats.alloc_buff_failed);
Alexander Duyck9f65e152013-09-28 06:00:58 +0000301 dev_info(&pf->pdev->dev,
Mitch Williamsf16704e2016-01-13 16:51:49 -0800302 " rx_rings[%i]: rx_stats: realloc_count = %lld, page_reuse_count = %lld\n",
303 i,
304 rx_ring->rx_stats.realloc_count,
305 rx_ring->rx_stats.page_reuse_count);
306 dev_info(&pf->pdev->dev,
Alexander Duyck9f65e152013-09-28 06:00:58 +0000307 " rx_rings[%i]: size = %i, dma = 0x%08lx\n",
308 i, rx_ring->size,
Jesse Brandeburg6995b362015-08-28 17:55:54 -0400309 (unsigned long int)rx_ring->dma);
Alexander Duyck9f65e152013-09-28 06:00:58 +0000310 dev_info(&pf->pdev->dev,
311 " rx_rings[%i]: vsi = %p, q_vector = %p\n",
312 i, rx_ring->vsi,
313 rx_ring->q_vector);
Kan Lianga75e8002016-02-19 09:24:04 -0500314 dev_info(&pf->pdev->dev,
315 " rx_rings[%i]: rx_itr_setting = %d (%s)\n",
316 i, rx_ring->rx_itr_setting,
317 ITR_IS_DYNAMIC(rx_ring->rx_itr_setting) ? "dynamic" : "fixed");
Jesse Brandeburg02e9c292013-09-11 08:40:17 +0000318 }
Alexander Duyck9f65e152013-09-28 06:00:58 +0000319 for (i = 0; i < vsi->num_queue_pairs; i++) {
320 struct i40e_ring *tx_ring = ACCESS_ONCE(vsi->tx_rings[i]);
Jesse Brandeburg6995b362015-08-28 17:55:54 -0400321
Alexander Duyck9f65e152013-09-28 06:00:58 +0000322 if (!tx_ring)
323 continue;
Jesse Brandeburg1b60f3c2013-11-28 06:39:35 +0000324
Alexander Duyck9f65e152013-09-28 06:00:58 +0000325 dev_info(&pf->pdev->dev,
326 " tx_rings[%i]: desc = %p\n",
327 i, tx_ring->desc);
328 dev_info(&pf->pdev->dev,
329 " tx_rings[%i]: dev = %p, netdev = %p, tx_bi = %p\n",
330 i, tx_ring->dev,
331 tx_ring->netdev,
332 tx_ring->tx_bi);
333 dev_info(&pf->pdev->dev,
334 " tx_rings[%i]: state = %li, queue_index = %d, reg_idx = %d\n",
335 i, tx_ring->state,
336 tx_ring->queue_index,
337 tx_ring->reg_idx);
338 dev_info(&pf->pdev->dev,
Mitch Williams46686072016-01-13 16:51:51 -0800339 " tx_rings[%i]: next_to_use = %d, next_to_clean = %d, ring_active = %i\n",
340 i,
Alexander Duyck9f65e152013-09-28 06:00:58 +0000341 tx_ring->next_to_use,
342 tx_ring->next_to_clean,
343 tx_ring->ring_active);
344 dev_info(&pf->pdev->dev,
345 " tx_rings[%i]: tx_stats: packets = %lld, bytes = %lld, restart_queue = %lld\n",
346 i, tx_ring->stats.packets,
347 tx_ring->stats.bytes,
348 tx_ring->tx_stats.restart_queue);
349 dev_info(&pf->pdev->dev,
350 " tx_rings[%i]: tx_stats: tx_busy = %lld, tx_done_old = %lld\n",
351 i,
352 tx_ring->tx_stats.tx_busy,
353 tx_ring->tx_stats.tx_done_old);
354 dev_info(&pf->pdev->dev,
355 " tx_rings[%i]: size = %i, dma = 0x%08lx\n",
356 i, tx_ring->size,
Jesse Brandeburg6995b362015-08-28 17:55:54 -0400357 (unsigned long int)tx_ring->dma);
Alexander Duyck9f65e152013-09-28 06:00:58 +0000358 dev_info(&pf->pdev->dev,
359 " tx_rings[%i]: vsi = %p, q_vector = %p\n",
360 i, tx_ring->vsi,
361 tx_ring->q_vector);
362 dev_info(&pf->pdev->dev,
363 " tx_rings[%i]: DCB tc = %d\n",
364 i, tx_ring->dcb_tc);
Kan Lianga75e8002016-02-19 09:24:04 -0500365 dev_info(&pf->pdev->dev,
366 " tx_rings[%i]: tx_itr_setting = %d (%s)\n",
367 i, tx_ring->tx_itr_setting,
368 ITR_IS_DYNAMIC(tx_ring->tx_itr_setting) ? "dynamic" : "fixed");
Jesse Brandeburg02e9c292013-09-11 08:40:17 +0000369 }
Alexander Duyck9f65e152013-09-28 06:00:58 +0000370 rcu_read_unlock();
Jesse Brandeburg02e9c292013-09-11 08:40:17 +0000371 dev_info(&pf->pdev->dev,
Kan Lianga75e8002016-02-19 09:24:04 -0500372 " work_limit = %d\n",
373 vsi->work_limit);
Jesse Brandeburg02e9c292013-09-11 08:40:17 +0000374 dev_info(&pf->pdev->dev,
Jesse Brandeburg1a557afc2016-04-20 19:43:37 -0700375 " max_frame = %d, rx_buf_len = %d dtype = %d\n",
Jesse Brandeburgbec60fc2016-04-18 11:33:47 -0700376 vsi->max_frame, vsi->rx_buf_len, 0);
Jesse Brandeburg02e9c292013-09-11 08:40:17 +0000377 dev_info(&pf->pdev->dev,
378 " num_q_vectors = %i, base_vector = %i\n",
379 vsi->num_q_vectors, vsi->base_vector);
380 dev_info(&pf->pdev->dev,
381 " seid = %d, id = %d, uplink_seid = %d\n",
382 vsi->seid, vsi->id, vsi->uplink_seid);
383 dev_info(&pf->pdev->dev,
384 " base_queue = %d, num_queue_pairs = %d, num_desc = %d\n",
385 vsi->base_queue, vsi->num_queue_pairs, vsi->num_desc);
386 dev_info(&pf->pdev->dev, " type = %i\n", vsi->type);
Mitch Williams31180252017-04-12 07:16:52 -0400387 if (vsi->type == I40E_VSI_SRIOV)
388 dev_info(&pf->pdev->dev, " VF ID = %i\n", vsi->vf_id);
Jesse Brandeburg02e9c292013-09-11 08:40:17 +0000389 dev_info(&pf->pdev->dev,
390 " info: valid_sections = 0x%04x, switch_id = 0x%04x\n",
391 vsi->info.valid_sections, vsi->info.switch_id);
392 dev_info(&pf->pdev->dev,
393 " info: sw_reserved[] = 0x%02x 0x%02x\n",
394 vsi->info.sw_reserved[0], vsi->info.sw_reserved[1]);
395 dev_info(&pf->pdev->dev,
396 " info: sec_flags = 0x%02x, sec_reserved = 0x%02x\n",
397 vsi->info.sec_flags, vsi->info.sec_reserved);
398 dev_info(&pf->pdev->dev,
399 " info: pvid = 0x%04x, fcoe_pvid = 0x%04x, port_vlan_flags = 0x%02x\n",
400 vsi->info.pvid, vsi->info.fcoe_pvid,
401 vsi->info.port_vlan_flags);
402 dev_info(&pf->pdev->dev,
403 " info: pvlan_reserved[] = 0x%02x 0x%02x 0x%02x\n",
404 vsi->info.pvlan_reserved[0], vsi->info.pvlan_reserved[1],
405 vsi->info.pvlan_reserved[2]);
406 dev_info(&pf->pdev->dev,
407 " info: ingress_table = 0x%08x, egress_table = 0x%08x\n",
408 vsi->info.ingress_table, vsi->info.egress_table);
409 dev_info(&pf->pdev->dev,
410 " info: cas_pv_stag = 0x%04x, cas_pv_flags= 0x%02x, cas_pv_reserved = 0x%02x\n",
411 vsi->info.cas_pv_tag, vsi->info.cas_pv_flags,
412 vsi->info.cas_pv_reserved);
413 dev_info(&pf->pdev->dev,
414 " info: queue_mapping[0..7 ] = 0x%04x 0x%04x 0x%04x 0x%04x 0x%04x 0x%04x 0x%04x 0x%04x\n",
415 vsi->info.queue_mapping[0], vsi->info.queue_mapping[1],
416 vsi->info.queue_mapping[2], vsi->info.queue_mapping[3],
417 vsi->info.queue_mapping[4], vsi->info.queue_mapping[5],
418 vsi->info.queue_mapping[6], vsi->info.queue_mapping[7]);
419 dev_info(&pf->pdev->dev,
420 " info: queue_mapping[8..15] = 0x%04x 0x%04x 0x%04x 0x%04x 0x%04x 0x%04x 0x%04x 0x%04x\n",
421 vsi->info.queue_mapping[8], vsi->info.queue_mapping[9],
422 vsi->info.queue_mapping[10], vsi->info.queue_mapping[11],
423 vsi->info.queue_mapping[12], vsi->info.queue_mapping[13],
424 vsi->info.queue_mapping[14], vsi->info.queue_mapping[15]);
425 dev_info(&pf->pdev->dev,
426 " info: tc_mapping[] = 0x%04x 0x%04x 0x%04x 0x%04x 0x%04x 0x%04x 0x%04x 0x%04x\n",
427 vsi->info.tc_mapping[0], vsi->info.tc_mapping[1],
428 vsi->info.tc_mapping[2], vsi->info.tc_mapping[3],
429 vsi->info.tc_mapping[4], vsi->info.tc_mapping[5],
430 vsi->info.tc_mapping[6], vsi->info.tc_mapping[7]);
431 dev_info(&pf->pdev->dev,
432 " info: queueing_opt_flags = 0x%02x queueing_opt_reserved[0..2] = 0x%02x 0x%02x 0x%02x\n",
433 vsi->info.queueing_opt_flags,
434 vsi->info.queueing_opt_reserved[0],
435 vsi->info.queueing_opt_reserved[1],
436 vsi->info.queueing_opt_reserved[2]);
437 dev_info(&pf->pdev->dev,
438 " info: up_enable_bits = 0x%02x\n",
439 vsi->info.up_enable_bits);
440 dev_info(&pf->pdev->dev,
441 " info: sched_reserved = 0x%02x, outer_up_table = 0x%04x\n",
442 vsi->info.sched_reserved, vsi->info.outer_up_table);
443 dev_info(&pf->pdev->dev,
444 " info: cmd_reserved[] = 0x%02x 0x%02x 0x%02x 0x0%02x 0x%02x 0x%02x 0x%02x 0x0%02x\n",
445 vsi->info.cmd_reserved[0], vsi->info.cmd_reserved[1],
446 vsi->info.cmd_reserved[2], vsi->info.cmd_reserved[3],
447 vsi->info.cmd_reserved[4], vsi->info.cmd_reserved[5],
448 vsi->info.cmd_reserved[6], vsi->info.cmd_reserved[7]);
449 dev_info(&pf->pdev->dev,
450 " info: qs_handle[] = 0x%04x 0x%04x 0x%04x 0x%04x 0x%04x 0x%04x 0x%04x 0x%04x\n",
451 vsi->info.qs_handle[0], vsi->info.qs_handle[1],
452 vsi->info.qs_handle[2], vsi->info.qs_handle[3],
453 vsi->info.qs_handle[4], vsi->info.qs_handle[5],
454 vsi->info.qs_handle[6], vsi->info.qs_handle[7]);
455 dev_info(&pf->pdev->dev,
456 " info: stat_counter_idx = 0x%04x, sched_id = 0x%04x\n",
457 vsi->info.stat_counter_idx, vsi->info.sched_id);
458 dev_info(&pf->pdev->dev,
459 " 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",
460 vsi->info.resp_reserved[0], vsi->info.resp_reserved[1],
461 vsi->info.resp_reserved[2], vsi->info.resp_reserved[3],
462 vsi->info.resp_reserved[4], vsi->info.resp_reserved[5],
463 vsi->info.resp_reserved[6], vsi->info.resp_reserved[7],
464 vsi->info.resp_reserved[8], vsi->info.resp_reserved[9],
465 vsi->info.resp_reserved[10], vsi->info.resp_reserved[11]);
466 if (vsi->back)
Jeff Kirsherb40c82e62015-02-27 09:18:34 +0000467 dev_info(&pf->pdev->dev, " PF = %p\n", vsi->back);
Jesse Brandeburg02e9c292013-09-11 08:40:17 +0000468 dev_info(&pf->pdev->dev, " idx = %d\n", vsi->idx);
469 dev_info(&pf->pdev->dev,
470 " tc_config: numtc = %d, enabled_tc = 0x%x\n",
471 vsi->tc_config.numtc, vsi->tc_config.enabled_tc);
472 for (i = 0; i < I40E_MAX_TRAFFIC_CLASS; i++) {
473 dev_info(&pf->pdev->dev,
474 " tc_config: tc = %d, qoffset = %d, qcount = %d, netdev_tc = %d\n",
475 i, vsi->tc_config.tc_info[i].qoffset,
476 vsi->tc_config.tc_info[i].qcount,
477 vsi->tc_config.tc_info[i].netdev_tc);
478 }
479 dev_info(&pf->pdev->dev,
480 " bw: bw_limit = %d, bw_max_quanta = %d\n",
481 vsi->bw_limit, vsi->bw_max_quanta);
482 for (i = 0; i < I40E_MAX_TRAFFIC_CLASS; i++) {
483 dev_info(&pf->pdev->dev,
484 " bw[%d]: ets_share_credits = %d, ets_limit_credits = %d, max_quanta = %d\n",
485 i, vsi->bw_ets_share_credits[i],
486 vsi->bw_ets_limit_credits[i],
487 vsi->bw_ets_max_quanta[i]);
488 }
489}
490
491/**
492 * i40e_dbg_dump_aq_desc - handles dump aq_desc write into command datum
493 * @pf: the i40e_pf created in command write
494 **/
495static void i40e_dbg_dump_aq_desc(struct i40e_pf *pf)
496{
497 struct i40e_adminq_ring *ring;
498 struct i40e_hw *hw = &pf->hw;
Shannon Nelsone625f712013-11-26 10:49:31 +0000499 char hdr[32];
Jesse Brandeburg02e9c292013-09-11 08:40:17 +0000500 int i;
501
Shannon Nelsone625f712013-11-26 10:49:31 +0000502 snprintf(hdr, sizeof(hdr), "%s %s: ",
503 dev_driver_string(&pf->pdev->dev),
504 dev_name(&pf->pdev->dev));
505
Jesse Brandeburg02e9c292013-09-11 08:40:17 +0000506 /* first the send (command) ring, then the receive (event) ring */
507 dev_info(&pf->pdev->dev, "AdminQ Tx Ring\n");
508 ring = &(hw->aq.asq);
509 for (i = 0; i < ring->count; i++) {
510 struct i40e_aq_desc *d = I40E_ADMINQ_DESC(*ring, i);
Jesse Brandeburg6995b362015-08-28 17:55:54 -0400511
Jesse Brandeburg02e9c292013-09-11 08:40:17 +0000512 dev_info(&pf->pdev->dev,
513 " at[%02d] flags=0x%04x op=0x%04x dlen=0x%04x ret=0x%04x cookie_h=0x%08x cookie_l=0x%08x\n",
514 i, d->flags, d->opcode, d->datalen, d->retval,
515 d->cookie_high, d->cookie_low);
Shannon Nelsone625f712013-11-26 10:49:31 +0000516 print_hex_dump(KERN_INFO, hdr, DUMP_PREFIX_NONE,
517 16, 1, d->params.raw, 16, 0);
Jesse Brandeburg02e9c292013-09-11 08:40:17 +0000518 }
519
520 dev_info(&pf->pdev->dev, "AdminQ Rx Ring\n");
521 ring = &(hw->aq.arq);
522 for (i = 0; i < ring->count; i++) {
523 struct i40e_aq_desc *d = I40E_ADMINQ_DESC(*ring, i);
Jesse Brandeburg6995b362015-08-28 17:55:54 -0400524
Jesse Brandeburg02e9c292013-09-11 08:40:17 +0000525 dev_info(&pf->pdev->dev,
526 " ar[%02d] flags=0x%04x op=0x%04x dlen=0x%04x ret=0x%04x cookie_h=0x%08x cookie_l=0x%08x\n",
527 i, d->flags, d->opcode, d->datalen, d->retval,
528 d->cookie_high, d->cookie_low);
Shannon Nelsone625f712013-11-26 10:49:31 +0000529 print_hex_dump(KERN_INFO, hdr, DUMP_PREFIX_NONE,
530 16, 1, d->params.raw, 16, 0);
Jesse Brandeburg02e9c292013-09-11 08:40:17 +0000531 }
532}
533
534/**
535 * i40e_dbg_dump_desc - handles dump desc write into command datum
536 * @cnt: number of arguments that the user supplied
537 * @vsi_seid: vsi id entered by user
538 * @ring_id: ring id entered by user
539 * @desc_n: descriptor number entered by user
540 * @pf: the i40e_pf created in command write
541 * @is_rx_ring: true if rx, false if tx
542 **/
543static void i40e_dbg_dump_desc(int cnt, int vsi_seid, int ring_id, int desc_n,
544 struct i40e_pf *pf, bool is_rx_ring)
545{
Shannon Nelson68bf94a2014-01-15 15:18:23 -0800546 struct i40e_tx_desc *txd;
547 union i40e_rx_desc *rxd;
Joe Perchese6c97232014-11-18 05:53:00 +0000548 struct i40e_ring *ring;
Jesse Brandeburg02e9c292013-09-11 08:40:17 +0000549 struct i40e_vsi *vsi;
550 int i;
551
552 vsi = i40e_dbg_find_vsi(pf, vsi_seid);
553 if (!vsi) {
Shannon Nelson7792fe42013-11-26 10:49:29 +0000554 dev_info(&pf->pdev->dev, "vsi %d not found\n", vsi_seid);
Jesse Brandeburg02e9c292013-09-11 08:40:17 +0000555 return;
556 }
557 if (ring_id >= vsi->num_queue_pairs || ring_id < 0) {
558 dev_info(&pf->pdev->dev, "ring %d not found\n", ring_id);
Jesse Brandeburg02e9c292013-09-11 08:40:17 +0000559 return;
560 }
Shannon Nelson68bf94a2014-01-15 15:18:23 -0800561 if (!vsi->tx_rings || !vsi->tx_rings[0]->desc) {
Shannon Nelson29d07902013-11-26 10:49:26 +0000562 dev_info(&pf->pdev->dev,
563 "descriptor rings have not been allocated for vsi %d\n",
564 vsi_seid);
565 return;
566 }
Joe Perchese6c97232014-11-18 05:53:00 +0000567
568 ring = kmemdup(is_rx_ring
569 ? vsi->rx_rings[ring_id] : vsi->tx_rings[ring_id],
570 sizeof(*ring), GFP_KERNEL);
571 if (!ring)
572 return;
573
Jesse Brandeburg02e9c292013-09-11 08:40:17 +0000574 if (cnt == 2) {
575 dev_info(&pf->pdev->dev, "vsi = %02i %s ring = %02i\n",
576 vsi_seid, is_rx_ring ? "rx" : "tx", ring_id);
Joe Perchese6c97232014-11-18 05:53:00 +0000577 for (i = 0; i < ring->count; i++) {
Shannon Nelson68bf94a2014-01-15 15:18:23 -0800578 if (!is_rx_ring) {
Joe Perchese6c97232014-11-18 05:53:00 +0000579 txd = I40E_TX_DESC(ring, i);
Jesse Brandeburg02e9c292013-09-11 08:40:17 +0000580 dev_info(&pf->pdev->dev,
Jesse Brandeburg13cb3e92016-01-13 16:51:47 -0800581 " d[%03x] = 0x%016llx 0x%016llx\n",
Shannon Nelson68bf94a2014-01-15 15:18:23 -0800582 i, txd->buffer_addr,
583 txd->cmd_type_offset_bsz);
Shannon Nelson68bf94a2014-01-15 15:18:23 -0800584 } else {
Joe Perchese6c97232014-11-18 05:53:00 +0000585 rxd = I40E_RX_DESC(ring, i);
Jesse Brandeburg02e9c292013-09-11 08:40:17 +0000586 dev_info(&pf->pdev->dev,
Jesse Brandeburg13cb3e92016-01-13 16:51:47 -0800587 " d[%03x] = 0x%016llx 0x%016llx 0x%016llx 0x%016llx\n",
Shannon Nelson68bf94a2014-01-15 15:18:23 -0800588 i, rxd->read.pkt_addr,
589 rxd->read.hdr_addr,
590 rxd->read.rsvd1, rxd->read.rsvd2);
591 }
Jesse Brandeburg02e9c292013-09-11 08:40:17 +0000592 }
593 } else if (cnt == 3) {
Joe Perchese6c97232014-11-18 05:53:00 +0000594 if (desc_n >= ring->count || desc_n < 0) {
Jesse Brandeburg02e9c292013-09-11 08:40:17 +0000595 dev_info(&pf->pdev->dev,
596 "descriptor %d not found\n", desc_n);
Joe Perchese3fe44c2014-12-08 04:28:39 +0000597 goto out;
Jesse Brandeburg02e9c292013-09-11 08:40:17 +0000598 }
Shannon Nelson68bf94a2014-01-15 15:18:23 -0800599 if (!is_rx_ring) {
Joe Perchese6c97232014-11-18 05:53:00 +0000600 txd = I40E_TX_DESC(ring, desc_n);
Jesse Brandeburg02e9c292013-09-11 08:40:17 +0000601 dev_info(&pf->pdev->dev,
Jesse Brandeburg13cb3e92016-01-13 16:51:47 -0800602 "vsi = %02i tx ring = %02i d[%03x] = 0x%016llx 0x%016llx\n",
Shannon Nelson68bf94a2014-01-15 15:18:23 -0800603 vsi_seid, ring_id, desc_n,
604 txd->buffer_addr, txd->cmd_type_offset_bsz);
Shannon Nelson68bf94a2014-01-15 15:18:23 -0800605 } else {
Joe Perchese6c97232014-11-18 05:53:00 +0000606 rxd = I40E_RX_DESC(ring, desc_n);
Jesse Brandeburg02e9c292013-09-11 08:40:17 +0000607 dev_info(&pf->pdev->dev,
Jesse Brandeburg13cb3e92016-01-13 16:51:47 -0800608 "vsi = %02i rx ring = %02i d[%03x] = 0x%016llx 0x%016llx 0x%016llx 0x%016llx\n",
Shannon Nelson68bf94a2014-01-15 15:18:23 -0800609 vsi_seid, ring_id, desc_n,
610 rxd->read.pkt_addr, rxd->read.hdr_addr,
611 rxd->read.rsvd1, rxd->read.rsvd2);
612 }
Jesse Brandeburg02e9c292013-09-11 08:40:17 +0000613 } else {
Shannon Nelson7792fe42013-11-26 10:49:29 +0000614 dev_info(&pf->pdev->dev, "dump desc rx/tx <vsi_seid> <ring_id> [<desc_n>]\n");
Jesse Brandeburg02e9c292013-09-11 08:40:17 +0000615 }
Joe Perchese3fe44c2014-12-08 04:28:39 +0000616
617out:
Joe Perchese6c97232014-11-18 05:53:00 +0000618 kfree(ring);
Jesse Brandeburg02e9c292013-09-11 08:40:17 +0000619}
620
621/**
622 * i40e_dbg_dump_vsi_no_seid - handles dump vsi write into command datum
623 * @pf: the i40e_pf created in command write
624 **/
625static void i40e_dbg_dump_vsi_no_seid(struct i40e_pf *pf)
626{
627 int i;
628
Mitch Williams505682c2014-05-20 08:01:37 +0000629 for (i = 0; i < pf->num_alloc_vsi; i++)
Jesse Brandeburg02e9c292013-09-11 08:40:17 +0000630 if (pf->vsi[i])
631 dev_info(&pf->pdev->dev, "dump vsi[%d]: %d\n",
632 i, pf->vsi[i]->seid);
633}
634
635/**
636 * i40e_dbg_dump_stats - handles dump stats write into command datum
637 * @pf: the i40e_pf created in command write
638 * @estats: the eth stats structure to be dumped
639 **/
640static void i40e_dbg_dump_eth_stats(struct i40e_pf *pf,
641 struct i40e_eth_stats *estats)
642{
643 dev_info(&pf->pdev->dev, " ethstats:\n");
644 dev_info(&pf->pdev->dev,
645 " rx_bytes = \t%lld \trx_unicast = \t\t%lld \trx_multicast = \t%lld\n",
646 estats->rx_bytes, estats->rx_unicast, estats->rx_multicast);
647 dev_info(&pf->pdev->dev,
Shannon Nelson03da6f62014-04-23 04:50:19 +0000648 " rx_broadcast = \t%lld \trx_discards = \t\t%lld\n",
649 estats->rx_broadcast, estats->rx_discards);
Jesse Brandeburg02e9c292013-09-11 08:40:17 +0000650 dev_info(&pf->pdev->dev,
Shannon Nelson03da6f62014-04-23 04:50:19 +0000651 " rx_unknown_protocol = \t%lld \ttx_bytes = \t%lld\n",
652 estats->rx_unknown_protocol, estats->tx_bytes);
Jesse Brandeburg02e9c292013-09-11 08:40:17 +0000653 dev_info(&pf->pdev->dev,
654 " tx_unicast = \t%lld \ttx_multicast = \t\t%lld \ttx_broadcast = \t%lld\n",
655 estats->tx_unicast, estats->tx_multicast, estats->tx_broadcast);
656 dev_info(&pf->pdev->dev,
657 " tx_discards = \t%lld \ttx_errors = \t\t%lld\n",
658 estats->tx_discards, estats->tx_errors);
659}
660
661/**
Jesse Brandeburg02e9c292013-09-11 08:40:17 +0000662 * i40e_dbg_dump_veb_seid - handles dump stats of a single given veb
663 * @pf: the i40e_pf created in command write
664 * @seid: the seid the user put in
665 **/
666static void i40e_dbg_dump_veb_seid(struct i40e_pf *pf, int seid)
667{
668 struct i40e_veb *veb;
669
Jesse Brandeburg02e9c292013-09-11 08:40:17 +0000670 veb = i40e_dbg_find_veb(pf, seid);
671 if (!veb) {
Shannon Nelsone625f712013-11-26 10:49:31 +0000672 dev_info(&pf->pdev->dev, "can't find veb %d\n", seid);
Jesse Brandeburg02e9c292013-09-11 08:40:17 +0000673 return;
674 }
675 dev_info(&pf->pdev->dev,
Neerav Parikh51616012015-02-06 08:52:14 +0000676 "veb idx=%d,%d stats_ic=%d seid=%d uplink=%d mode=%s\n",
Jesse Brandeburg02e9c292013-09-11 08:40:17 +0000677 veb->idx, veb->veb_idx, veb->stats_idx, veb->seid,
Neerav Parikh51616012015-02-06 08:52:14 +0000678 veb->uplink_seid,
679 veb->bridge_mode == BRIDGE_MODE_VEPA ? "VEPA" : "VEB");
Jesse Brandeburg02e9c292013-09-11 08:40:17 +0000680 i40e_dbg_dump_eth_stats(pf, &veb->stats);
681}
682
683/**
684 * i40e_dbg_dump_veb_all - dumps all known veb's stats
685 * @pf: the i40e_pf created in command write
686 **/
687static void i40e_dbg_dump_veb_all(struct i40e_pf *pf)
688{
689 struct i40e_veb *veb;
690 int i;
691
692 for (i = 0; i < I40E_MAX_VEB; i++) {
693 veb = pf->veb[i];
694 if (veb)
695 i40e_dbg_dump_veb_seid(pf, veb->seid);
696 }
697}
698
Mitch Williams31180252017-04-12 07:16:52 -0400699/**
700 * i40e_dbg_dump_vf - dump VF info
701 * @pf: the i40e_pf created in command write
702 * @vf_id: the vf_id from the user
703 **/
704static void i40e_dbg_dump_vf(struct i40e_pf *pf, int vf_id)
705{
706 struct i40e_vf *vf;
707 struct i40e_vsi *vsi;
708
709 if (!pf->num_alloc_vfs) {
710 dev_info(&pf->pdev->dev, "no VFs allocated\n");
711 } else if ((vf_id >= 0) && (vf_id < pf->num_alloc_vfs)) {
712 vf = &pf->vf[vf_id];
713 vsi = pf->vsi[vf->lan_vsi_idx];
714 dev_info(&pf->pdev->dev, "vf %2d: VSI id=%d, seid=%d, qps=%d\n",
715 vf_id, vf->lan_vsi_id, vsi->seid, vf->num_queue_pairs);
716 dev_info(&pf->pdev->dev, " num MDD=%lld, invalid msg=%lld, valid msg=%lld\n",
717 vf->num_mdd_events,
718 vf->num_invalid_msgs,
719 vf->num_valid_msgs);
720 } else {
721 dev_info(&pf->pdev->dev, "invalid VF id %d\n", vf_id);
722 }
723}
724
725/**
726 * i40e_dbg_dump_vf_all - dump VF info for all VFs
727 * @pf: the i40e_pf created in command write
728 **/
729static void i40e_dbg_dump_vf_all(struct i40e_pf *pf)
730{
731 int i;
732
733 if (!pf->num_alloc_vfs)
734 dev_info(&pf->pdev->dev, "no VFs enabled!\n");
735 else
736 for (i = 0; i < pf->num_alloc_vfs; i++)
737 i40e_dbg_dump_vf(pf, i);
738}
739
Jesse Brandeburg02e9c292013-09-11 08:40:17 +0000740#define I40E_MAX_DEBUG_OUT_BUFFER (4096*4)
741/**
742 * i40e_dbg_command_write - write into command datum
743 * @filp: the opened file
744 * @buffer: where to find the user's data
745 * @count: the length of the user's data
746 * @ppos: file position offset
747 **/
748static ssize_t i40e_dbg_command_write(struct file *filp,
749 const char __user *buffer,
750 size_t count, loff_t *ppos)
751{
752 struct i40e_pf *pf = filp->private_data;
Jesse Brandeburg004173c2013-09-28 07:13:44 +0000753 char *cmd_buf, *cmd_buf_tmp;
Jesse Brandeburg02e9c292013-09-11 08:40:17 +0000754 int bytes_not_copied;
755 struct i40e_vsi *vsi;
Jesse Brandeburg02e9c292013-09-11 08:40:17 +0000756 int vsi_seid;
757 int veb_seid;
Mitch Williams31180252017-04-12 07:16:52 -0400758 int vf_id;
Jesse Brandeburg02e9c292013-09-11 08:40:17 +0000759 int cnt;
760
761 /* don't allow partial writes */
762 if (*ppos != 0)
763 return 0;
764
765 cmd_buf = kzalloc(count + 1, GFP_KERNEL);
766 if (!cmd_buf)
767 return count;
768 bytes_not_copied = copy_from_user(cmd_buf, buffer, count);
Rasmus Villemoes0286c672015-10-17 22:58:19 +0200769 if (bytes_not_copied) {
Alexey Khoroshilovdda094a2015-02-21 07:32:47 +0000770 kfree(cmd_buf);
Rasmus Villemoes0286c672015-10-17 22:58:19 +0200771 return -EFAULT;
Alexey Khoroshilovdda094a2015-02-21 07:32:47 +0000772 }
Jesse Brandeburg02e9c292013-09-11 08:40:17 +0000773 cmd_buf[count] = '\0';
774
Jesse Brandeburg004173c2013-09-28 07:13:44 +0000775 cmd_buf_tmp = strchr(cmd_buf, '\n');
776 if (cmd_buf_tmp) {
777 *cmd_buf_tmp = '\0';
778 count = cmd_buf_tmp - cmd_buf + 1;
779 }
780
Jesse Brandeburg02e9c292013-09-11 08:40:17 +0000781 if (strncmp(cmd_buf, "add vsi", 7) == 0) {
782 vsi_seid = -1;
783 cnt = sscanf(&cmd_buf[7], "%i", &vsi_seid);
784 if (cnt == 0) {
785 /* default to PF VSI */
786 vsi_seid = pf->vsi[pf->lan_vsi]->seid;
787 } else if (vsi_seid < 0) {
788 dev_info(&pf->pdev->dev, "add VSI %d: bad vsi seid\n",
789 vsi_seid);
790 goto command_write_done;
791 }
792
Anjali Singhai Jainfc608612015-05-08 15:35:57 -0700793 /* By default we are in VEPA mode, if this is the first VF/VMDq
794 * VSI to be added switch to VEB mode.
795 */
796 if (!(pf->flags & I40E_FLAG_VEB_MODE_ENABLED)) {
797 pf->flags |= I40E_FLAG_VEB_MODE_ENABLED;
798 i40e_do_reset_safe(pf,
799 BIT_ULL(__I40E_PF_RESET_REQUESTED));
800 }
801
Jesse Brandeburg02e9c292013-09-11 08:40:17 +0000802 vsi = i40e_vsi_setup(pf, I40E_VSI_VMDQ2, vsi_seid, 0);
803 if (vsi)
804 dev_info(&pf->pdev->dev, "added VSI %d to relay %d\n",
805 vsi->seid, vsi->uplink_seid);
806 else
807 dev_info(&pf->pdev->dev, "'%s' failed\n", cmd_buf);
808
809 } else if (strncmp(cmd_buf, "del vsi", 7) == 0) {
Jesse Brandeburg6995b362015-08-28 17:55:54 -0400810 cnt = sscanf(&cmd_buf[7], "%i", &vsi_seid);
811 if (cnt != 1) {
812 dev_info(&pf->pdev->dev,
813 "del vsi: bad command string, cnt=%d\n",
814 cnt);
815 goto command_write_done;
816 }
Jesse Brandeburg02e9c292013-09-11 08:40:17 +0000817 vsi = i40e_dbg_find_vsi(pf, vsi_seid);
818 if (!vsi) {
819 dev_info(&pf->pdev->dev, "del VSI %d: seid not found\n",
820 vsi_seid);
821 goto command_write_done;
822 }
823
824 dev_info(&pf->pdev->dev, "deleting VSI %d\n", vsi_seid);
825 i40e_vsi_release(vsi);
826
827 } else if (strncmp(cmd_buf, "add relay", 9) == 0) {
828 struct i40e_veb *veb;
829 int uplink_seid, i;
830
831 cnt = sscanf(&cmd_buf[9], "%i %i", &uplink_seid, &vsi_seid);
832 if (cnt != 2) {
833 dev_info(&pf->pdev->dev,
834 "add relay: bad command string, cnt=%d\n",
835 cnt);
836 goto command_write_done;
837 } else if (uplink_seid < 0) {
838 dev_info(&pf->pdev->dev,
839 "add relay %d: bad uplink seid\n",
840 uplink_seid);
841 goto command_write_done;
842 }
843
844 vsi = i40e_dbg_find_vsi(pf, vsi_seid);
845 if (!vsi) {
846 dev_info(&pf->pdev->dev,
Shannon Nelsonc07019e2013-12-21 05:44:51 +0000847 "add relay: VSI %d not found\n", vsi_seid);
Jesse Brandeburg02e9c292013-09-11 08:40:17 +0000848 goto command_write_done;
849 }
850
851 for (i = 0; i < I40E_MAX_VEB; i++)
852 if (pf->veb[i] && pf->veb[i]->seid == uplink_seid)
853 break;
854 if (i >= I40E_MAX_VEB && uplink_seid != 0 &&
855 uplink_seid != pf->mac_seid) {
856 dev_info(&pf->pdev->dev,
857 "add relay: relay uplink %d not found\n",
858 uplink_seid);
859 goto command_write_done;
860 }
861
862 veb = i40e_veb_setup(pf, 0, uplink_seid, vsi_seid,
863 vsi->tc_config.enabled_tc);
864 if (veb)
865 dev_info(&pf->pdev->dev, "added relay %d\n", veb->seid);
866 else
867 dev_info(&pf->pdev->dev, "add relay failed\n");
868
869 } else if (strncmp(cmd_buf, "del relay", 9) == 0) {
870 int i;
871 cnt = sscanf(&cmd_buf[9], "%i", &veb_seid);
872 if (cnt != 1) {
873 dev_info(&pf->pdev->dev,
874 "del relay: bad command string, cnt=%d\n",
875 cnt);
876 goto command_write_done;
877 } else if (veb_seid < 0) {
878 dev_info(&pf->pdev->dev,
879 "del relay %d: bad relay seid\n", veb_seid);
880 goto command_write_done;
881 }
882
883 /* find the veb */
884 for (i = 0; i < I40E_MAX_VEB; i++)
885 if (pf->veb[i] && pf->veb[i]->seid == veb_seid)
886 break;
887 if (i >= I40E_MAX_VEB) {
888 dev_info(&pf->pdev->dev,
889 "del relay: relay %d not found\n", veb_seid);
890 goto command_write_done;
891 }
892
893 dev_info(&pf->pdev->dev, "deleting relay %d\n", veb_seid);
894 i40e_veb_release(pf->veb[i]);
Jesse Brandeburg02e9c292013-09-11 08:40:17 +0000895 } else if (strncmp(cmd_buf, "add pvid", 8) == 0) {
Jesse Brandeburg02e9c292013-09-11 08:40:17 +0000896 i40e_status ret;
Shannon Nelson738a9e92013-09-28 07:14:04 +0000897 u16 vid;
Toralf Försterefe1ac22014-05-20 08:23:00 +0000898 unsigned int v;
Jesse Brandeburg02e9c292013-09-11 08:40:17 +0000899
900 cnt = sscanf(&cmd_buf[8], "%i %u", &vsi_seid, &v);
901 if (cnt != 2) {
902 dev_info(&pf->pdev->dev,
903 "add pvid: bad command string, cnt=%d\n", cnt);
904 goto command_write_done;
905 }
906
907 vsi = i40e_dbg_find_vsi(pf, vsi_seid);
908 if (!vsi) {
909 dev_info(&pf->pdev->dev, "add pvid: VSI %d not found\n",
910 vsi_seid);
911 goto command_write_done;
912 }
913
Toralf Försterefe1ac22014-05-20 08:23:00 +0000914 vid = v;
Jesse Brandeburg02e9c292013-09-11 08:40:17 +0000915 ret = i40e_vsi_add_pvid(vsi, vid);
916 if (!ret)
917 dev_info(&pf->pdev->dev,
918 "add pvid: %d added to VSI %d\n",
919 vid, vsi_seid);
920 else
921 dev_info(&pf->pdev->dev,
922 "add pvid: %d to VSI %d failed, ret=%d\n",
923 vid, vsi_seid, ret);
924
925 } else if (strncmp(cmd_buf, "del pvid", 8) == 0) {
926
927 cnt = sscanf(&cmd_buf[8], "%i", &vsi_seid);
928 if (cnt != 1) {
929 dev_info(&pf->pdev->dev,
930 "del pvid: bad command string, cnt=%d\n",
931 cnt);
932 goto command_write_done;
933 }
934
935 vsi = i40e_dbg_find_vsi(pf, vsi_seid);
936 if (!vsi) {
937 dev_info(&pf->pdev->dev,
938 "del pvid: VSI %d not found\n", vsi_seid);
939 goto command_write_done;
940 }
941
942 i40e_vsi_remove_pvid(vsi);
943 dev_info(&pf->pdev->dev,
944 "del pvid: removed from VSI %d\n", vsi_seid);
945
946 } else if (strncmp(cmd_buf, "dump", 4) == 0) {
947 if (strncmp(&cmd_buf[5], "switch", 6) == 0) {
948 i40e_fetch_switch_configuration(pf, true);
949 } else if (strncmp(&cmd_buf[5], "vsi", 3) == 0) {
950 cnt = sscanf(&cmd_buf[8], "%i", &vsi_seid);
951 if (cnt > 0)
952 i40e_dbg_dump_vsi_seid(pf, vsi_seid);
953 else
954 i40e_dbg_dump_vsi_no_seid(pf);
955 } else if (strncmp(&cmd_buf[5], "veb", 3) == 0) {
956 cnt = sscanf(&cmd_buf[8], "%i", &vsi_seid);
957 if (cnt > 0)
958 i40e_dbg_dump_veb_seid(pf, vsi_seid);
959 else
960 i40e_dbg_dump_veb_all(pf);
Mitch Williams31180252017-04-12 07:16:52 -0400961 } else if (strncmp(&cmd_buf[5], "vf", 2) == 0) {
962 cnt = sscanf(&cmd_buf[7], "%i", &vf_id);
963 if (cnt > 0)
964 i40e_dbg_dump_vf(pf, vf_id);
965 else
966 i40e_dbg_dump_vf_all(pf);
Jesse Brandeburg02e9c292013-09-11 08:40:17 +0000967 } else if (strncmp(&cmd_buf[5], "desc", 4) == 0) {
968 int ring_id, desc_n;
969 if (strncmp(&cmd_buf[10], "rx", 2) == 0) {
970 cnt = sscanf(&cmd_buf[12], "%i %i %i",
971 &vsi_seid, &ring_id, &desc_n);
972 i40e_dbg_dump_desc(cnt, vsi_seid, ring_id,
973 desc_n, pf, true);
974 } else if (strncmp(&cmd_buf[10], "tx", 2)
975 == 0) {
976 cnt = sscanf(&cmd_buf[12], "%i %i %i",
977 &vsi_seid, &ring_id, &desc_n);
978 i40e_dbg_dump_desc(cnt, vsi_seid, ring_id,
979 desc_n, pf, false);
980 } else if (strncmp(&cmd_buf[10], "aq", 2) == 0) {
981 i40e_dbg_dump_aq_desc(pf);
982 } else {
983 dev_info(&pf->pdev->dev,
984 "dump desc tx <vsi_seid> <ring_id> [<desc_n>]\n");
985 dev_info(&pf->pdev->dev,
986 "dump desc rx <vsi_seid> <ring_id> [<desc_n>]\n");
987 dev_info(&pf->pdev->dev, "dump desc aq\n");
988 }
Jesse Brandeburg02e9c292013-09-11 08:40:17 +0000989 } else if (strncmp(&cmd_buf[5], "reset stats", 11) == 0) {
990 dev_info(&pf->pdev->dev,
991 "core reset count: %d\n", pf->corer_count);
992 dev_info(&pf->pdev->dev,
993 "global reset count: %d\n", pf->globr_count);
994 dev_info(&pf->pdev->dev,
995 "emp reset count: %d\n", pf->empr_count);
996 dev_info(&pf->pdev->dev,
997 "pf reset count: %d\n", pf->pfr_count);
Anjali Singhai Jain810b3ae2014-07-10 07:58:25 +0000998 dev_info(&pf->pdev->dev,
999 "pf tx sluggish count: %d\n",
1000 pf->tx_sluggish_count);
Jesse Brandeburg02e9c292013-09-11 08:40:17 +00001001 } else if (strncmp(&cmd_buf[5], "port", 4) == 0) {
1002 struct i40e_aqc_query_port_ets_config_resp *bw_data;
1003 struct i40e_dcbx_config *cfg =
1004 &pf->hw.local_dcbx_config;
1005 struct i40e_dcbx_config *r_cfg =
1006 &pf->hw.remote_dcbx_config;
1007 int i, ret;
Jacob Keller2ae0bf52016-12-12 15:44:14 -08001008 u16 switch_id;
Jesse Brandeburg02e9c292013-09-11 08:40:17 +00001009
1010 bw_data = kzalloc(sizeof(
1011 struct i40e_aqc_query_port_ets_config_resp),
1012 GFP_KERNEL);
1013 if (!bw_data) {
1014 ret = -ENOMEM;
1015 goto command_write_done;
1016 }
1017
Alan Bradya01c7f62016-08-24 11:33:47 -07001018 vsi = pf->vsi[pf->lan_vsi];
1019 switch_id =
Jacob Keller2ae0bf52016-12-12 15:44:14 -08001020 le16_to_cpu(vsi->info.switch_id) &
1021 I40E_AQ_VSI_SW_ID_MASK;
Alan Bradya01c7f62016-08-24 11:33:47 -07001022
Jesse Brandeburg02e9c292013-09-11 08:40:17 +00001023 ret = i40e_aq_query_port_ets_config(&pf->hw,
Alan Bradya01c7f62016-08-24 11:33:47 -07001024 switch_id,
Jesse Brandeburg02e9c292013-09-11 08:40:17 +00001025 bw_data, NULL);
1026 if (ret) {
1027 dev_info(&pf->pdev->dev,
1028 "Query Port ETS Config AQ command failed =0x%x\n",
1029 pf->hw.aq.asq_last_status);
1030 kfree(bw_data);
1031 bw_data = NULL;
1032 goto command_write_done;
1033 }
1034 dev_info(&pf->pdev->dev,
1035 "port bw: tc_valid=0x%x tc_strict_prio=0x%x, tc_bw_max=0x%04x,0x%04x\n",
1036 bw_data->tc_valid_bits,
1037 bw_data->tc_strict_priority_bits,
1038 le16_to_cpu(bw_data->tc_bw_max[0]),
1039 le16_to_cpu(bw_data->tc_bw_max[1]));
1040 for (i = 0; i < I40E_MAX_TRAFFIC_CLASS; i++) {
1041 dev_info(&pf->pdev->dev, "port bw: tc_bw_share=%d tc_bw_limit=%d\n",
1042 bw_data->tc_bw_share_credits[i],
1043 le16_to_cpu(bw_data->tc_bw_limits[i]));
1044 }
1045
1046 kfree(bw_data);
1047 bw_data = NULL;
1048
1049 dev_info(&pf->pdev->dev,
Neerav Parikh9fa61dd2014-11-12 00:18:25 +00001050 "port dcbx_mode=%d\n", cfg->dcbx_mode);
1051 dev_info(&pf->pdev->dev,
Jesse Brandeburg02e9c292013-09-11 08:40:17 +00001052 "port ets_cfg: willing=%d cbs=%d, maxtcs=%d\n",
1053 cfg->etscfg.willing, cfg->etscfg.cbs,
1054 cfg->etscfg.maxtcs);
1055 for (i = 0; i < I40E_MAX_TRAFFIC_CLASS; i++) {
1056 dev_info(&pf->pdev->dev, "port ets_cfg: %d prio_tc=%d tcbw=%d tctsa=%d\n",
1057 i, cfg->etscfg.prioritytable[i],
1058 cfg->etscfg.tcbwtable[i],
1059 cfg->etscfg.tsatable[i]);
1060 }
1061 for (i = 0; i < I40E_MAX_TRAFFIC_CLASS; i++) {
1062 dev_info(&pf->pdev->dev, "port ets_rec: %d prio_tc=%d tcbw=%d tctsa=%d\n",
1063 i, cfg->etsrec.prioritytable[i],
1064 cfg->etsrec.tcbwtable[i],
1065 cfg->etsrec.tsatable[i]);
1066 }
1067 dev_info(&pf->pdev->dev,
1068 "port pfc_cfg: willing=%d mbc=%d, pfccap=%d pfcenable=0x%x\n",
1069 cfg->pfc.willing, cfg->pfc.mbc,
1070 cfg->pfc.pfccap, cfg->pfc.pfcenable);
1071 dev_info(&pf->pdev->dev,
1072 "port app_table: num_apps=%d\n", cfg->numapps);
1073 for (i = 0; i < cfg->numapps; i++) {
1074 dev_info(&pf->pdev->dev, "port app_table: %d prio=%d selector=%d protocol=0x%x\n",
1075 i, cfg->app[i].priority,
1076 cfg->app[i].selector,
1077 cfg->app[i].protocolid);
1078 }
1079 /* Peer TLV DCBX data */
1080 dev_info(&pf->pdev->dev,
1081 "remote port ets_cfg: willing=%d cbs=%d, maxtcs=%d\n",
1082 r_cfg->etscfg.willing,
1083 r_cfg->etscfg.cbs, r_cfg->etscfg.maxtcs);
1084 for (i = 0; i < I40E_MAX_TRAFFIC_CLASS; i++) {
1085 dev_info(&pf->pdev->dev, "remote port ets_cfg: %d prio_tc=%d tcbw=%d tctsa=%d\n",
1086 i, r_cfg->etscfg.prioritytable[i],
1087 r_cfg->etscfg.tcbwtable[i],
1088 r_cfg->etscfg.tsatable[i]);
1089 }
1090 for (i = 0; i < I40E_MAX_TRAFFIC_CLASS; i++) {
1091 dev_info(&pf->pdev->dev, "remote port ets_rec: %d prio_tc=%d tcbw=%d tctsa=%d\n",
1092 i, r_cfg->etsrec.prioritytable[i],
1093 r_cfg->etsrec.tcbwtable[i],
1094 r_cfg->etsrec.tsatable[i]);
1095 }
1096 dev_info(&pf->pdev->dev,
1097 "remote port pfc_cfg: willing=%d mbc=%d, pfccap=%d pfcenable=0x%x\n",
1098 r_cfg->pfc.willing,
1099 r_cfg->pfc.mbc,
1100 r_cfg->pfc.pfccap,
1101 r_cfg->pfc.pfcenable);
1102 dev_info(&pf->pdev->dev,
1103 "remote port app_table: num_apps=%d\n",
1104 r_cfg->numapps);
1105 for (i = 0; i < r_cfg->numapps; i++) {
1106 dev_info(&pf->pdev->dev, "remote port app_table: %d prio=%d selector=%d protocol=0x%x\n",
1107 i, r_cfg->app[i].priority,
1108 r_cfg->app[i].selector,
1109 r_cfg->app[i].protocolid);
1110 }
Jesse Brandeburg3169c322015-04-07 19:45:37 -04001111 } else if (strncmp(&cmd_buf[5], "debug fwdata", 12) == 0) {
1112 int cluster_id, table_id;
1113 int index, ret;
1114 u16 buff_len = 4096;
1115 u32 next_index;
1116 u8 next_table;
1117 u8 *buff;
1118 u16 rlen;
1119
1120 cnt = sscanf(&cmd_buf[18], "%i %i %i",
1121 &cluster_id, &table_id, &index);
1122 if (cnt != 3) {
1123 dev_info(&pf->pdev->dev,
1124 "dump debug fwdata <cluster_id> <table_id> <index>\n");
1125 goto command_write_done;
1126 }
1127
1128 dev_info(&pf->pdev->dev,
1129 "AQ debug dump fwdata params %x %x %x %x\n",
1130 cluster_id, table_id, index, buff_len);
1131 buff = kzalloc(buff_len, GFP_KERNEL);
1132 if (!buff)
1133 goto command_write_done;
1134
1135 ret = i40e_aq_debug_dump(&pf->hw, cluster_id, table_id,
1136 index, buff_len, buff, &rlen,
1137 &next_table, &next_index,
1138 NULL);
1139 if (ret) {
1140 dev_info(&pf->pdev->dev,
1141 "debug dump fwdata AQ Failed %d 0x%x\n",
1142 ret, pf->hw.aq.asq_last_status);
1143 kfree(buff);
1144 buff = NULL;
1145 goto command_write_done;
1146 }
1147 dev_info(&pf->pdev->dev,
1148 "AQ debug dump fwdata rlen=0x%x next_table=0x%x next_index=0x%x\n",
1149 rlen, next_table, next_index);
1150 print_hex_dump(KERN_INFO, "AQ buffer WB: ",
1151 DUMP_PREFIX_OFFSET, 16, 1,
1152 buff, rlen, true);
1153 kfree(buff);
1154 buff = NULL;
Jesse Brandeburg02e9c292013-09-11 08:40:17 +00001155 } else {
1156 dev_info(&pf->pdev->dev,
1157 "dump desc tx <vsi_seid> <ring_id> [<desc_n>], dump desc rx <vsi_seid> <ring_id> [<desc_n>],\n");
Shannon Nelson7204a782014-10-17 03:14:47 +00001158 dev_info(&pf->pdev->dev, "dump switch\n");
1159 dev_info(&pf->pdev->dev, "dump vsi [seid]\n");
Jesse Brandeburg02e9c292013-09-11 08:40:17 +00001160 dev_info(&pf->pdev->dev, "dump reset stats\n");
1161 dev_info(&pf->pdev->dev, "dump port\n");
Mitch Williams31180252017-04-12 07:16:52 -04001162 dev_info(&pf->pdev->dev, "dump vf [vf_id]\n");
Jesse Brandeburg02e9c292013-09-11 08:40:17 +00001163 dev_info(&pf->pdev->dev,
1164 "dump debug fwdata <cluster_id> <table_id> <index>\n");
1165 }
Jesse Brandeburg02e9c292013-09-11 08:40:17 +00001166 } else if (strncmp(cmd_buf, "pfr", 3) == 0) {
Jesse Brandeburg69bfb112014-02-11 08:24:13 +00001167 dev_info(&pf->pdev->dev, "debugfs: forcing PFR\n");
Jesse Brandeburg41a1d042015-06-04 16:24:02 -04001168 i40e_do_reset_safe(pf, BIT(__I40E_PF_RESET_REQUESTED));
Jesse Brandeburg02e9c292013-09-11 08:40:17 +00001169
1170 } else if (strncmp(cmd_buf, "corer", 5) == 0) {
Jesse Brandeburg69bfb112014-02-11 08:24:13 +00001171 dev_info(&pf->pdev->dev, "debugfs: forcing CoreR\n");
Jesse Brandeburg41a1d042015-06-04 16:24:02 -04001172 i40e_do_reset_safe(pf, BIT(__I40E_CORE_RESET_REQUESTED));
Jesse Brandeburg02e9c292013-09-11 08:40:17 +00001173
1174 } else if (strncmp(cmd_buf, "globr", 5) == 0) {
Jesse Brandeburg69bfb112014-02-11 08:24:13 +00001175 dev_info(&pf->pdev->dev, "debugfs: forcing GlobR\n");
Jesse Brandeburg41a1d042015-06-04 16:24:02 -04001176 i40e_do_reset_safe(pf, BIT(__I40E_GLOBAL_RESET_REQUESTED));
Jesse Brandeburg02e9c292013-09-11 08:40:17 +00001177
Shannon Nelson7823fe32013-11-16 10:00:45 +00001178 } else if (strncmp(cmd_buf, "empr", 4) == 0) {
Jesse Brandeburg69bfb112014-02-11 08:24:13 +00001179 dev_info(&pf->pdev->dev, "debugfs: forcing EMPR\n");
Jesse Brandeburg41a1d042015-06-04 16:24:02 -04001180 i40e_do_reset_safe(pf, BIT(__I40E_EMP_RESET_REQUESTED));
Shannon Nelson7823fe32013-11-16 10:00:45 +00001181
Jesse Brandeburg02e9c292013-09-11 08:40:17 +00001182 } else if (strncmp(cmd_buf, "read", 4) == 0) {
1183 u32 address;
1184 u32 value;
Jesse Brandeburg6995b362015-08-28 17:55:54 -04001185
Shannon Nelson2706a202013-11-26 10:49:30 +00001186 cnt = sscanf(&cmd_buf[4], "%i", &address);
Jesse Brandeburg02e9c292013-09-11 08:40:17 +00001187 if (cnt != 1) {
1188 dev_info(&pf->pdev->dev, "read <reg>\n");
1189 goto command_write_done;
1190 }
1191
1192 /* check the range on address */
Shannon Nelson2ac8b672015-07-23 16:54:37 -04001193 if (address > (pf->ioremap_len - sizeof(u32))) {
1194 dev_info(&pf->pdev->dev, "read reg address 0x%08x too large, max=0x%08lx\n",
Jesse Brandeburge88ae662015-08-13 18:54:26 -07001195 address, (unsigned long int)(pf->ioremap_len - sizeof(u32)));
Jesse Brandeburg02e9c292013-09-11 08:40:17 +00001196 goto command_write_done;
1197 }
1198
1199 value = rd32(&pf->hw, address);
1200 dev_info(&pf->pdev->dev, "read: 0x%08x = 0x%08x\n",
1201 address, value);
1202
1203 } else if (strncmp(cmd_buf, "write", 5) == 0) {
1204 u32 address, value;
Jesse Brandeburg6995b362015-08-28 17:55:54 -04001205
Shannon Nelson2706a202013-11-26 10:49:30 +00001206 cnt = sscanf(&cmd_buf[5], "%i %i", &address, &value);
Jesse Brandeburg02e9c292013-09-11 08:40:17 +00001207 if (cnt != 2) {
1208 dev_info(&pf->pdev->dev, "write <reg> <value>\n");
1209 goto command_write_done;
1210 }
1211
1212 /* check the range on address */
Shannon Nelson2ac8b672015-07-23 16:54:37 -04001213 if (address > (pf->ioremap_len - sizeof(u32))) {
1214 dev_info(&pf->pdev->dev, "write reg address 0x%08x too large, max=0x%08lx\n",
Jesse Brandeburge88ae662015-08-13 18:54:26 -07001215 address, (unsigned long int)(pf->ioremap_len - sizeof(u32)));
Jesse Brandeburg02e9c292013-09-11 08:40:17 +00001216 goto command_write_done;
1217 }
1218 wr32(&pf->hw, address, value);
1219 value = rd32(&pf->hw, address);
1220 dev_info(&pf->pdev->dev, "write: 0x%08x = 0x%08x\n",
1221 address, value);
1222 } else if (strncmp(cmd_buf, "clear_stats", 11) == 0) {
1223 if (strncmp(&cmd_buf[12], "vsi", 3) == 0) {
Shannon Nelson2706a202013-11-26 10:49:30 +00001224 cnt = sscanf(&cmd_buf[15], "%i", &vsi_seid);
Jesse Brandeburg02e9c292013-09-11 08:40:17 +00001225 if (cnt == 0) {
1226 int i;
Jesse Brandeburg6995b362015-08-28 17:55:54 -04001227
Mitch Williams505682c2014-05-20 08:01:37 +00001228 for (i = 0; i < pf->num_alloc_vsi; i++)
Jesse Brandeburg02e9c292013-09-11 08:40:17 +00001229 i40e_vsi_reset_stats(pf->vsi[i]);
1230 dev_info(&pf->pdev->dev, "vsi clear stats called for all vsi's\n");
1231 } else if (cnt == 1) {
1232 vsi = i40e_dbg_find_vsi(pf, vsi_seid);
1233 if (!vsi) {
1234 dev_info(&pf->pdev->dev,
1235 "clear_stats vsi: bad vsi %d\n",
1236 vsi_seid);
1237 goto command_write_done;
1238 }
1239 i40e_vsi_reset_stats(vsi);
1240 dev_info(&pf->pdev->dev,
1241 "vsi clear stats called for vsi %d\n",
1242 vsi_seid);
1243 } else {
1244 dev_info(&pf->pdev->dev, "clear_stats vsi [seid]\n");
1245 }
Shannon Nelson694dc1c2015-01-24 09:58:34 +00001246 } else if (strncmp(&cmd_buf[12], "port", 4) == 0) {
1247 if (pf->hw.partition_id == 1) {
1248 i40e_pf_reset_stats(pf);
1249 dev_info(&pf->pdev->dev, "port stats cleared\n");
1250 } else {
1251 dev_info(&pf->pdev->dev, "clear port stats not allowed on this port partition\n");
1252 }
Jesse Brandeburg02e9c292013-09-11 08:40:17 +00001253 } else {
Shannon Nelson694dc1c2015-01-24 09:58:34 +00001254 dev_info(&pf->pdev->dev, "clear_stats vsi [seid] or clear_stats port\n");
Jesse Brandeburg02e9c292013-09-11 08:40:17 +00001255 }
Anjali Singhai Jainf1143c42013-11-28 06:42:38 +00001256 } else if (strncmp(cmd_buf, "send aq_cmd", 11) == 0) {
1257 struct i40e_aq_desc *desc;
1258 i40e_status ret;
1259
1260 desc = kzalloc(sizeof(struct i40e_aq_desc), GFP_KERNEL);
1261 if (!desc)
1262 goto command_write_done;
1263 cnt = sscanf(&cmd_buf[11],
Shannon Nelsonfbe82102014-11-11 20:05:13 +00001264 "%hi %hi %hi %hi %i %i %i %i %i %i",
Anjali Singhai Jainf1143c42013-11-28 06:42:38 +00001265 &desc->flags,
1266 &desc->opcode, &desc->datalen, &desc->retval,
1267 &desc->cookie_high, &desc->cookie_low,
1268 &desc->params.internal.param0,
1269 &desc->params.internal.param1,
1270 &desc->params.internal.param2,
1271 &desc->params.internal.param3);
1272 if (cnt != 10) {
1273 dev_info(&pf->pdev->dev,
1274 "send aq_cmd: bad command string, cnt=%d\n",
1275 cnt);
1276 kfree(desc);
1277 desc = NULL;
1278 goto command_write_done;
1279 }
1280 ret = i40e_asq_send_command(&pf->hw, desc, NULL, 0, NULL);
1281 if (!ret) {
1282 dev_info(&pf->pdev->dev, "AQ command sent Status : Success\n");
1283 } else if (ret == I40E_ERR_ADMIN_QUEUE_ERROR) {
1284 dev_info(&pf->pdev->dev,
1285 "AQ command send failed Opcode %x AQ Error: %d\n",
1286 desc->opcode, pf->hw.aq.asq_last_status);
1287 } else {
1288 dev_info(&pf->pdev->dev,
1289 "AQ command send failed Opcode %x Status: %d\n",
1290 desc->opcode, ret);
1291 }
1292 dev_info(&pf->pdev->dev,
1293 "AQ desc WB 0x%04x 0x%04x 0x%04x 0x%04x 0x%08x 0x%08x 0x%08x 0x%08x 0x%08x 0x%08x\n",
1294 desc->flags, desc->opcode, desc->datalen, desc->retval,
1295 desc->cookie_high, desc->cookie_low,
1296 desc->params.internal.param0,
1297 desc->params.internal.param1,
1298 desc->params.internal.param2,
1299 desc->params.internal.param3);
1300 kfree(desc);
1301 desc = NULL;
1302 } else if (strncmp(cmd_buf, "send indirect aq_cmd", 20) == 0) {
1303 struct i40e_aq_desc *desc;
1304 i40e_status ret;
1305 u16 buffer_len;
1306 u8 *buff;
1307
1308 desc = kzalloc(sizeof(struct i40e_aq_desc), GFP_KERNEL);
1309 if (!desc)
1310 goto command_write_done;
1311 cnt = sscanf(&cmd_buf[20],
Shannon Nelsonfbe82102014-11-11 20:05:13 +00001312 "%hi %hi %hi %hi %i %i %i %i %i %i %hi",
Anjali Singhai Jainf1143c42013-11-28 06:42:38 +00001313 &desc->flags,
1314 &desc->opcode, &desc->datalen, &desc->retval,
1315 &desc->cookie_high, &desc->cookie_low,
1316 &desc->params.internal.param0,
1317 &desc->params.internal.param1,
1318 &desc->params.internal.param2,
1319 &desc->params.internal.param3,
1320 &buffer_len);
1321 if (cnt != 11) {
1322 dev_info(&pf->pdev->dev,
1323 "send indirect aq_cmd: bad command string, cnt=%d\n",
1324 cnt);
1325 kfree(desc);
1326 desc = NULL;
1327 goto command_write_done;
1328 }
1329 /* Just stub a buffer big enough in case user messed up */
1330 if (buffer_len == 0)
1331 buffer_len = 1280;
1332
1333 buff = kzalloc(buffer_len, GFP_KERNEL);
1334 if (!buff) {
1335 kfree(desc);
1336 desc = NULL;
1337 goto command_write_done;
1338 }
1339 desc->flags |= cpu_to_le16((u16)I40E_AQ_FLAG_BUF);
1340 ret = i40e_asq_send_command(&pf->hw, desc, buff,
1341 buffer_len, NULL);
1342 if (!ret) {
1343 dev_info(&pf->pdev->dev, "AQ command sent Status : Success\n");
1344 } else if (ret == I40E_ERR_ADMIN_QUEUE_ERROR) {
1345 dev_info(&pf->pdev->dev,
1346 "AQ command send failed Opcode %x AQ Error: %d\n",
1347 desc->opcode, pf->hw.aq.asq_last_status);
1348 } else {
1349 dev_info(&pf->pdev->dev,
1350 "AQ command send failed Opcode %x Status: %d\n",
1351 desc->opcode, ret);
1352 }
1353 dev_info(&pf->pdev->dev,
1354 "AQ desc WB 0x%04x 0x%04x 0x%04x 0x%04x 0x%08x 0x%08x 0x%08x 0x%08x 0x%08x 0x%08x\n",
1355 desc->flags, desc->opcode, desc->datalen, desc->retval,
1356 desc->cookie_high, desc->cookie_low,
1357 desc->params.internal.param0,
1358 desc->params.internal.param1,
1359 desc->params.internal.param2,
1360 desc->params.internal.param3);
1361 print_hex_dump(KERN_INFO, "AQ buffer WB: ",
1362 DUMP_PREFIX_OFFSET, 16, 1,
1363 buff, buffer_len, true);
1364 kfree(buff);
1365 buff = NULL;
1366 kfree(desc);
1367 desc = NULL;
Anjali Singhai Jaine17ff052014-06-04 04:22:48 +00001368 } else if (strncmp(cmd_buf, "fd current cnt", 14) == 0) {
1369 dev_info(&pf->pdev->dev, "FD current total filter count for this interface: %d\n",
1370 i40e_get_current_fd_count(pf));
Jesse Brandeburg02e9c292013-09-11 08:40:17 +00001371 } else if (strncmp(cmd_buf, "lldp", 4) == 0) {
1372 if (strncmp(&cmd_buf[5], "stop", 4) == 0) {
1373 int ret;
Jesse Brandeburg6995b362015-08-28 17:55:54 -04001374
Jesse Brandeburg02e9c292013-09-11 08:40:17 +00001375 ret = i40e_aq_stop_lldp(&pf->hw, false, NULL);
1376 if (ret) {
1377 dev_info(&pf->pdev->dev,
1378 "Stop LLDP AQ command failed =0x%x\n",
1379 pf->hw.aq.asq_last_status);
1380 goto command_write_done;
1381 }
Neerav Parikh4e3b35b2014-01-17 15:36:37 -08001382 ret = i40e_aq_add_rem_control_packet_filter(&pf->hw,
1383 pf->hw.mac.addr,
1384 I40E_ETH_P_LLDP, 0,
1385 pf->vsi[pf->lan_vsi]->seid,
1386 0, true, NULL, NULL);
1387 if (ret) {
1388 dev_info(&pf->pdev->dev,
1389 "%s: Add Control Packet Filter AQ command failed =0x%x\n",
1390 __func__, pf->hw.aq.asq_last_status);
1391 goto command_write_done;
1392 }
1393#ifdef CONFIG_I40E_DCB
1394 pf->dcbx_cap = DCB_CAP_DCBX_HOST |
1395 DCB_CAP_DCBX_VER_IEEE;
1396#endif /* CONFIG_I40E_DCB */
Jesse Brandeburg02e9c292013-09-11 08:40:17 +00001397 } else if (strncmp(&cmd_buf[5], "start", 5) == 0) {
1398 int ret;
Jesse Brandeburg6995b362015-08-28 17:55:54 -04001399
Neerav Parikh4e3b35b2014-01-17 15:36:37 -08001400 ret = i40e_aq_add_rem_control_packet_filter(&pf->hw,
1401 pf->hw.mac.addr,
1402 I40E_ETH_P_LLDP, 0,
1403 pf->vsi[pf->lan_vsi]->seid,
1404 0, false, NULL, NULL);
1405 if (ret) {
1406 dev_info(&pf->pdev->dev,
1407 "%s: Remove Control Packet Filter AQ command failed =0x%x\n",
1408 __func__, pf->hw.aq.asq_last_status);
1409 /* Continue and start FW LLDP anyways */
1410 }
1411
Jesse Brandeburg02e9c292013-09-11 08:40:17 +00001412 ret = i40e_aq_start_lldp(&pf->hw, NULL);
1413 if (ret) {
1414 dev_info(&pf->pdev->dev,
1415 "Start LLDP AQ command failed =0x%x\n",
1416 pf->hw.aq.asq_last_status);
1417 goto command_write_done;
1418 }
Neerav Parikh4e3b35b2014-01-17 15:36:37 -08001419#ifdef CONFIG_I40E_DCB
1420 pf->dcbx_cap = DCB_CAP_DCBX_LLD_MANAGED |
1421 DCB_CAP_DCBX_VER_IEEE;
1422#endif /* CONFIG_I40E_DCB */
Jesse Brandeburg02e9c292013-09-11 08:40:17 +00001423 } else if (strncmp(&cmd_buf[5],
1424 "get local", 9) == 0) {
Shannon Nelson738a9e92013-09-28 07:14:04 +00001425 u16 llen, rlen;
Neerav Parikh3753cb22013-11-26 10:49:25 +00001426 int ret;
Jesse Brandeburg02e9c292013-09-11 08:40:17 +00001427 u8 *buff;
Jesse Brandeburg6995b362015-08-28 17:55:54 -04001428
Jesse Brandeburg02e9c292013-09-11 08:40:17 +00001429 buff = kzalloc(I40E_LLDPDU_SIZE, GFP_KERNEL);
1430 if (!buff)
1431 goto command_write_done;
1432
1433 ret = i40e_aq_get_lldp_mib(&pf->hw, 0,
1434 I40E_AQ_LLDP_MIB_LOCAL,
1435 buff, I40E_LLDPDU_SIZE,
1436 &llen, &rlen, NULL);
1437 if (ret) {
1438 dev_info(&pf->pdev->dev,
1439 "Get LLDP MIB (local) AQ command failed =0x%x\n",
1440 pf->hw.aq.asq_last_status);
1441 kfree(buff);
1442 buff = NULL;
1443 goto command_write_done;
1444 }
Neerav Parikh3753cb22013-11-26 10:49:25 +00001445 dev_info(&pf->pdev->dev, "LLDP MIB (local)\n");
1446 print_hex_dump(KERN_INFO, "LLDP MIB (local): ",
1447 DUMP_PREFIX_OFFSET, 16, 1,
1448 buff, I40E_LLDPDU_SIZE, true);
Jesse Brandeburg02e9c292013-09-11 08:40:17 +00001449 kfree(buff);
1450 buff = NULL;
1451 } else if (strncmp(&cmd_buf[5], "get remote", 10) == 0) {
Shannon Nelson738a9e92013-09-28 07:14:04 +00001452 u16 llen, rlen;
Neerav Parikh3753cb22013-11-26 10:49:25 +00001453 int ret;
Jesse Brandeburg02e9c292013-09-11 08:40:17 +00001454 u8 *buff;
Jesse Brandeburg6995b362015-08-28 17:55:54 -04001455
Jesse Brandeburg02e9c292013-09-11 08:40:17 +00001456 buff = kzalloc(I40E_LLDPDU_SIZE, GFP_KERNEL);
1457 if (!buff)
1458 goto command_write_done;
1459
1460 ret = i40e_aq_get_lldp_mib(&pf->hw,
1461 I40E_AQ_LLDP_BRIDGE_TYPE_NEAREST_BRIDGE,
Neerav Parikhc27936e2014-06-03 23:50:16 +00001462 I40E_AQ_LLDP_MIB_REMOTE,
Jesse Brandeburg02e9c292013-09-11 08:40:17 +00001463 buff, I40E_LLDPDU_SIZE,
1464 &llen, &rlen, NULL);
1465 if (ret) {
1466 dev_info(&pf->pdev->dev,
1467 "Get LLDP MIB (remote) AQ command failed =0x%x\n",
1468 pf->hw.aq.asq_last_status);
1469 kfree(buff);
1470 buff = NULL;
1471 goto command_write_done;
1472 }
Neerav Parikh3753cb22013-11-26 10:49:25 +00001473 dev_info(&pf->pdev->dev, "LLDP MIB (remote)\n");
1474 print_hex_dump(KERN_INFO, "LLDP MIB (remote): ",
1475 DUMP_PREFIX_OFFSET, 16, 1,
1476 buff, I40E_LLDPDU_SIZE, true);
Jesse Brandeburg02e9c292013-09-11 08:40:17 +00001477 kfree(buff);
1478 buff = NULL;
1479 } else if (strncmp(&cmd_buf[5], "event on", 8) == 0) {
1480 int ret;
Jesse Brandeburg6995b362015-08-28 17:55:54 -04001481
Jesse Brandeburg02e9c292013-09-11 08:40:17 +00001482 ret = i40e_aq_cfg_lldp_mib_change_event(&pf->hw,
1483 true, NULL);
1484 if (ret) {
1485 dev_info(&pf->pdev->dev,
1486 "Config LLDP MIB Change Event (on) AQ command failed =0x%x\n",
1487 pf->hw.aq.asq_last_status);
1488 goto command_write_done;
1489 }
1490 } else if (strncmp(&cmd_buf[5], "event off", 9) == 0) {
1491 int ret;
Jesse Brandeburg6995b362015-08-28 17:55:54 -04001492
Jesse Brandeburg02e9c292013-09-11 08:40:17 +00001493 ret = i40e_aq_cfg_lldp_mib_change_event(&pf->hw,
1494 false, NULL);
1495 if (ret) {
1496 dev_info(&pf->pdev->dev,
1497 "Config LLDP MIB Change Event (off) AQ command failed =0x%x\n",
1498 pf->hw.aq.asq_last_status);
1499 goto command_write_done;
1500 }
1501 }
1502 } else if (strncmp(cmd_buf, "nvm read", 8) == 0) {
Neerav Parikh3753cb22013-11-26 10:49:25 +00001503 u16 buffer_len, bytes;
Jesse Brandeburg02e9c292013-09-11 08:40:17 +00001504 u16 module;
1505 u32 offset;
1506 u16 *buff;
1507 int ret;
1508
1509 cnt = sscanf(&cmd_buf[8], "%hx %x %hx",
1510 &module, &offset, &buffer_len);
1511 if (cnt == 0) {
1512 module = 0;
1513 offset = 0;
1514 buffer_len = 0;
1515 } else if (cnt == 1) {
1516 offset = 0;
1517 buffer_len = 0;
1518 } else if (cnt == 2) {
1519 buffer_len = 0;
1520 } else if (cnt > 3) {
1521 dev_info(&pf->pdev->dev,
1522 "nvm read: bad command string, cnt=%d\n", cnt);
1523 goto command_write_done;
1524 }
1525
Jesse Brandeburg520dfd82013-09-28 07:13:39 +00001526 /* set the max length */
1527 buffer_len = min_t(u16, buffer_len, I40E_MAX_AQ_BUF_SIZE/2);
Jesse Brandeburg02e9c292013-09-11 08:40:17 +00001528
1529 bytes = 2 * buffer_len;
Jesse Brandeburg520dfd82013-09-28 07:13:39 +00001530
1531 /* read at least 1k bytes, no more than 4kB */
1532 bytes = clamp(bytes, (u16)1024, (u16)I40E_MAX_AQ_BUF_SIZE);
Jesse Brandeburg02e9c292013-09-11 08:40:17 +00001533 buff = kzalloc(bytes, GFP_KERNEL);
1534 if (!buff)
1535 goto command_write_done;
1536
1537 ret = i40e_acquire_nvm(&pf->hw, I40E_RESOURCE_READ);
1538 if (ret) {
1539 dev_info(&pf->pdev->dev,
1540 "Failed Acquiring NVM resource for read err=%d status=0x%x\n",
1541 ret, pf->hw.aq.asq_last_status);
1542 kfree(buff);
1543 goto command_write_done;
1544 }
1545
1546 ret = i40e_aq_read_nvm(&pf->hw, module, (2 * offset),
1547 bytes, (u8 *)buff, true, NULL);
1548 i40e_release_nvm(&pf->hw);
1549 if (ret) {
1550 dev_info(&pf->pdev->dev,
1551 "Read NVM AQ failed err=%d status=0x%x\n",
1552 ret, pf->hw.aq.asq_last_status);
1553 } else {
1554 dev_info(&pf->pdev->dev,
1555 "Read NVM module=0x%x offset=0x%x words=%d\n",
1556 module, offset, buffer_len);
Anjali Singhai Jaina45e88c2013-11-28 06:39:26 +00001557 if (bytes)
Neerav Parikh3753cb22013-11-26 10:49:25 +00001558 print_hex_dump(KERN_INFO, "NVM Dump: ",
1559 DUMP_PREFIX_OFFSET, 16, 2,
Anjali Singhai Jaina45e88c2013-11-28 06:39:26 +00001560 buff, bytes, true);
Jesse Brandeburg02e9c292013-09-11 08:40:17 +00001561 }
1562 kfree(buff);
1563 buff = NULL;
1564 } else {
1565 dev_info(&pf->pdev->dev, "unknown command '%s'\n", cmd_buf);
1566 dev_info(&pf->pdev->dev, "available commands\n");
1567 dev_info(&pf->pdev->dev, " add vsi [relay_seid]\n");
1568 dev_info(&pf->pdev->dev, " del vsi [vsi_seid]\n");
1569 dev_info(&pf->pdev->dev, " add relay <uplink_seid> <vsi_seid>\n");
1570 dev_info(&pf->pdev->dev, " del relay <relay_seid>\n");
Jesse Brandeburg02e9c292013-09-11 08:40:17 +00001571 dev_info(&pf->pdev->dev, " add pvid <vsi_seid> <vid>\n");
1572 dev_info(&pf->pdev->dev, " del pvid <vsi_seid>\n");
1573 dev_info(&pf->pdev->dev, " dump switch\n");
1574 dev_info(&pf->pdev->dev, " dump vsi [seid]\n");
1575 dev_info(&pf->pdev->dev, " dump desc tx <vsi_seid> <ring_id> [<desc_n>]\n");
1576 dev_info(&pf->pdev->dev, " dump desc rx <vsi_seid> <ring_id> [<desc_n>]\n");
1577 dev_info(&pf->pdev->dev, " dump desc aq\n");
Jesse Brandeburg02e9c292013-09-11 08:40:17 +00001578 dev_info(&pf->pdev->dev, " dump reset stats\n");
Jesse Brandeburg3169c322015-04-07 19:45:37 -04001579 dev_info(&pf->pdev->dev, " dump debug fwdata <cluster_id> <table_id> <index>\n");
Jesse Brandeburg02e9c292013-09-11 08:40:17 +00001580 dev_info(&pf->pdev->dev, " read <reg>\n");
1581 dev_info(&pf->pdev->dev, " write <reg> <value>\n");
1582 dev_info(&pf->pdev->dev, " clear_stats vsi [seid]\n");
Shannon Nelson694dc1c2015-01-24 09:58:34 +00001583 dev_info(&pf->pdev->dev, " clear_stats port\n");
Jesse Brandeburg02e9c292013-09-11 08:40:17 +00001584 dev_info(&pf->pdev->dev, " pfr\n");
1585 dev_info(&pf->pdev->dev, " corer\n");
1586 dev_info(&pf->pdev->dev, " globr\n");
Anjali Singhai Jainf1143c42013-11-28 06:42:38 +00001587 dev_info(&pf->pdev->dev, " send aq_cmd <flags> <opcode> <datalen> <retval> <cookie_h> <cookie_l> <param0> <param1> <param2> <param3>\n");
1588 dev_info(&pf->pdev->dev, " send indirect aq_cmd <flags> <opcode> <datalen> <retval> <cookie_h> <cookie_l> <param0> <param1> <param2> <param3> <buffer_len>\n");
Anjali Singhai Jaine17ff052014-06-04 04:22:48 +00001589 dev_info(&pf->pdev->dev, " fd current cnt");
Jesse Brandeburg02e9c292013-09-11 08:40:17 +00001590 dev_info(&pf->pdev->dev, " lldp start\n");
1591 dev_info(&pf->pdev->dev, " lldp stop\n");
1592 dev_info(&pf->pdev->dev, " lldp get local\n");
1593 dev_info(&pf->pdev->dev, " lldp get remote\n");
1594 dev_info(&pf->pdev->dev, " lldp event on\n");
1595 dev_info(&pf->pdev->dev, " lldp event off\n");
1596 dev_info(&pf->pdev->dev, " nvm read [module] [word_offset] [word_count]\n");
1597 }
1598
1599command_write_done:
1600 kfree(cmd_buf);
1601 cmd_buf = NULL;
Jesse Brandeburg02e9c292013-09-11 08:40:17 +00001602 return count;
1603}
1604
1605static const struct file_operations i40e_dbg_command_fops = {
1606 .owner = THIS_MODULE,
1607 .open = simple_open,
1608 .read = i40e_dbg_command_read,
1609 .write = i40e_dbg_command_write,
1610};
1611
1612/**************************************************************
1613 * netdev_ops
1614 * The netdev_ops entry in debugfs is for giving the driver commands
1615 * to be executed from the netdev operations.
1616 **************************************************************/
Greg Rosed1da3ac2015-02-27 09:18:29 +00001617static char i40e_dbg_netdev_ops_buf[256] = "";
Jesse Brandeburg02e9c292013-09-11 08:40:17 +00001618
1619/**
1620 * i40e_dbg_netdev_ops - read for netdev_ops datum
1621 * @filp: the opened file
1622 * @buffer: where to write the data for the user to read
1623 * @count: the size of the user's buffer
1624 * @ppos: file position offset
1625 **/
1626static ssize_t i40e_dbg_netdev_ops_read(struct file *filp, char __user *buffer,
1627 size_t count, loff_t *ppos)
1628{
1629 struct i40e_pf *pf = filp->private_data;
1630 int bytes_not_copied;
1631 int buf_size = 256;
1632 char *buf;
1633 int len;
1634
1635 /* don't allow partal reads */
1636 if (*ppos != 0)
1637 return 0;
1638 if (count < buf_size)
1639 return -ENOSPC;
1640
1641 buf = kzalloc(buf_size, GFP_KERNEL);
1642 if (!buf)
1643 return -ENOSPC;
1644
1645 len = snprintf(buf, buf_size, "%s: %s\n",
1646 pf->vsi[pf->lan_vsi]->netdev->name,
1647 i40e_dbg_netdev_ops_buf);
1648
1649 bytes_not_copied = copy_to_user(buffer, buf, len);
1650 kfree(buf);
1651
Rasmus Villemoes0286c672015-10-17 22:58:19 +02001652 if (bytes_not_copied)
1653 return -EFAULT;
Jesse Brandeburg02e9c292013-09-11 08:40:17 +00001654
1655 *ppos = len;
1656 return len;
1657}
1658
1659/**
1660 * i40e_dbg_netdev_ops_write - write into netdev_ops datum
1661 * @filp: the opened file
1662 * @buffer: where to find the user's data
1663 * @count: the length of the user's data
1664 * @ppos: file position offset
1665 **/
1666static ssize_t i40e_dbg_netdev_ops_write(struct file *filp,
1667 const char __user *buffer,
1668 size_t count, loff_t *ppos)
1669{
1670 struct i40e_pf *pf = filp->private_data;
1671 int bytes_not_copied;
1672 struct i40e_vsi *vsi;
Jesse Brandeburg004173c2013-09-28 07:13:44 +00001673 char *buf_tmp;
Jesse Brandeburg02e9c292013-09-11 08:40:17 +00001674 int vsi_seid;
1675 int i, cnt;
1676
1677 /* don't allow partial writes */
1678 if (*ppos != 0)
1679 return 0;
1680 if (count >= sizeof(i40e_dbg_netdev_ops_buf))
1681 return -ENOSPC;
1682
1683 memset(i40e_dbg_netdev_ops_buf, 0, sizeof(i40e_dbg_netdev_ops_buf));
1684 bytes_not_copied = copy_from_user(i40e_dbg_netdev_ops_buf,
1685 buffer, count);
Rasmus Villemoes0286c672015-10-17 22:58:19 +02001686 if (bytes_not_copied)
1687 return -EFAULT;
Jesse Brandeburg02e9c292013-09-11 08:40:17 +00001688 i40e_dbg_netdev_ops_buf[count] = '\0';
1689
Jesse Brandeburg004173c2013-09-28 07:13:44 +00001690 buf_tmp = strchr(i40e_dbg_netdev_ops_buf, '\n');
1691 if (buf_tmp) {
1692 *buf_tmp = '\0';
1693 count = buf_tmp - i40e_dbg_netdev_ops_buf + 1;
1694 }
1695
Jesse Brandeburg02e9c292013-09-11 08:40:17 +00001696 if (strncmp(i40e_dbg_netdev_ops_buf, "tx_timeout", 10) == 0) {
1697 cnt = sscanf(&i40e_dbg_netdev_ops_buf[11], "%i", &vsi_seid);
1698 if (cnt != 1) {
1699 dev_info(&pf->pdev->dev, "tx_timeout <vsi_seid>\n");
1700 goto netdev_ops_write_done;
1701 }
1702 vsi = i40e_dbg_find_vsi(pf, vsi_seid);
1703 if (!vsi) {
1704 dev_info(&pf->pdev->dev,
1705 "tx_timeout: VSI %d not found\n", vsi_seid);
Shannon Nelsonca046572014-03-06 09:00:02 +00001706 } else if (!vsi->netdev) {
1707 dev_info(&pf->pdev->dev, "tx_timeout: no netdev for VSI %d\n",
1708 vsi_seid);
1709 } else if (test_bit(__I40E_DOWN, &vsi->state)) {
1710 dev_info(&pf->pdev->dev, "tx_timeout: VSI %d not UP\n",
1711 vsi_seid);
1712 } else if (rtnl_trylock()) {
Jesse Brandeburg02e9c292013-09-11 08:40:17 +00001713 vsi->netdev->netdev_ops->ndo_tx_timeout(vsi->netdev);
1714 rtnl_unlock();
1715 dev_info(&pf->pdev->dev, "tx_timeout called\n");
1716 } else {
1717 dev_info(&pf->pdev->dev, "Could not acquire RTNL - please try again\n");
1718 }
1719 } else if (strncmp(i40e_dbg_netdev_ops_buf, "change_mtu", 10) == 0) {
1720 int mtu;
Jesse Brandeburg6995b362015-08-28 17:55:54 -04001721
Jesse Brandeburg02e9c292013-09-11 08:40:17 +00001722 cnt = sscanf(&i40e_dbg_netdev_ops_buf[11], "%i %i",
1723 &vsi_seid, &mtu);
1724 if (cnt != 2) {
1725 dev_info(&pf->pdev->dev, "change_mtu <vsi_seid> <mtu>\n");
1726 goto netdev_ops_write_done;
1727 }
1728 vsi = i40e_dbg_find_vsi(pf, vsi_seid);
1729 if (!vsi) {
1730 dev_info(&pf->pdev->dev,
1731 "change_mtu: VSI %d not found\n", vsi_seid);
Shannon Nelsonca046572014-03-06 09:00:02 +00001732 } else if (!vsi->netdev) {
1733 dev_info(&pf->pdev->dev, "change_mtu: no netdev for VSI %d\n",
1734 vsi_seid);
1735 } else if (rtnl_trylock()) {
Jesse Brandeburg02e9c292013-09-11 08:40:17 +00001736 vsi->netdev->netdev_ops->ndo_change_mtu(vsi->netdev,
1737 mtu);
1738 rtnl_unlock();
1739 dev_info(&pf->pdev->dev, "change_mtu called\n");
1740 } else {
1741 dev_info(&pf->pdev->dev, "Could not acquire RTNL - please try again\n");
1742 }
1743
1744 } else if (strncmp(i40e_dbg_netdev_ops_buf, "set_rx_mode", 11) == 0) {
1745 cnt = sscanf(&i40e_dbg_netdev_ops_buf[11], "%i", &vsi_seid);
1746 if (cnt != 1) {
1747 dev_info(&pf->pdev->dev, "set_rx_mode <vsi_seid>\n");
1748 goto netdev_ops_write_done;
1749 }
1750 vsi = i40e_dbg_find_vsi(pf, vsi_seid);
1751 if (!vsi) {
1752 dev_info(&pf->pdev->dev,
1753 "set_rx_mode: VSI %d not found\n", vsi_seid);
Shannon Nelsonca046572014-03-06 09:00:02 +00001754 } else if (!vsi->netdev) {
1755 dev_info(&pf->pdev->dev, "set_rx_mode: no netdev for VSI %d\n",
1756 vsi_seid);
1757 } else if (rtnl_trylock()) {
Jesse Brandeburg02e9c292013-09-11 08:40:17 +00001758 vsi->netdev->netdev_ops->ndo_set_rx_mode(vsi->netdev);
1759 rtnl_unlock();
1760 dev_info(&pf->pdev->dev, "set_rx_mode called\n");
1761 } else {
1762 dev_info(&pf->pdev->dev, "Could not acquire RTNL - please try again\n");
1763 }
1764
1765 } else if (strncmp(i40e_dbg_netdev_ops_buf, "napi", 4) == 0) {
1766 cnt = sscanf(&i40e_dbg_netdev_ops_buf[4], "%i", &vsi_seid);
1767 if (cnt != 1) {
1768 dev_info(&pf->pdev->dev, "napi <vsi_seid>\n");
1769 goto netdev_ops_write_done;
1770 }
1771 vsi = i40e_dbg_find_vsi(pf, vsi_seid);
1772 if (!vsi) {
1773 dev_info(&pf->pdev->dev, "napi: VSI %d not found\n",
1774 vsi_seid);
Shannon Nelsonca046572014-03-06 09:00:02 +00001775 } else if (!vsi->netdev) {
1776 dev_info(&pf->pdev->dev, "napi: no netdev for VSI %d\n",
1777 vsi_seid);
1778 } else {
1779 for (i = 0; i < vsi->num_q_vectors; i++)
1780 napi_schedule(&vsi->q_vectors[i]->napi);
1781 dev_info(&pf->pdev->dev, "napi called\n");
Jesse Brandeburg02e9c292013-09-11 08:40:17 +00001782 }
Jesse Brandeburg02e9c292013-09-11 08:40:17 +00001783 } else {
1784 dev_info(&pf->pdev->dev, "unknown command '%s'\n",
1785 i40e_dbg_netdev_ops_buf);
1786 dev_info(&pf->pdev->dev, "available commands\n");
1787 dev_info(&pf->pdev->dev, " tx_timeout <vsi_seid>\n");
1788 dev_info(&pf->pdev->dev, " change_mtu <vsi_seid> <mtu>\n");
1789 dev_info(&pf->pdev->dev, " set_rx_mode <vsi_seid>\n");
1790 dev_info(&pf->pdev->dev, " napi <vsi_seid>\n");
1791 }
1792netdev_ops_write_done:
1793 return count;
1794}
1795
1796static const struct file_operations i40e_dbg_netdev_ops_fops = {
1797 .owner = THIS_MODULE,
1798 .open = simple_open,
1799 .read = i40e_dbg_netdev_ops_read,
1800 .write = i40e_dbg_netdev_ops_write,
1801};
1802
1803/**
Jeff Kirsherb40c82e62015-02-27 09:18:34 +00001804 * i40e_dbg_pf_init - setup the debugfs directory for the PF
1805 * @pf: the PF that is starting up
Jesse Brandeburg02e9c292013-09-11 08:40:17 +00001806 **/
1807void i40e_dbg_pf_init(struct i40e_pf *pf)
1808{
Jesse Brandeburg63010022013-09-28 07:13:33 +00001809 struct dentry *pfile;
Jesse Brandeburg02e9c292013-09-11 08:40:17 +00001810 const char *name = pci_name(pf->pdev);
Jesse Brandeburg63010022013-09-28 07:13:33 +00001811 const struct device *dev = &pf->pdev->dev;
Jesse Brandeburg02e9c292013-09-11 08:40:17 +00001812
1813 pf->i40e_dbg_pf = debugfs_create_dir(name, i40e_dbg_root);
Jesse Brandeburg63010022013-09-28 07:13:33 +00001814 if (!pf->i40e_dbg_pf)
1815 return;
1816
1817 pfile = debugfs_create_file("command", 0600, pf->i40e_dbg_pf, pf,
1818 &i40e_dbg_command_fops);
1819 if (!pfile)
1820 goto create_failed;
1821
Jesse Brandeburg63010022013-09-28 07:13:33 +00001822 pfile = debugfs_create_file("netdev_ops", 0600, pf->i40e_dbg_pf, pf,
1823 &i40e_dbg_netdev_ops_fops);
1824 if (!pfile)
1825 goto create_failed;
1826
1827 return;
1828
1829create_failed:
1830 dev_info(dev, "debugfs dir/file for %s failed\n", name);
1831 debugfs_remove_recursive(pf->i40e_dbg_pf);
Jesse Brandeburg02e9c292013-09-11 08:40:17 +00001832}
1833
1834/**
Jeff Kirsherb40c82e62015-02-27 09:18:34 +00001835 * i40e_dbg_pf_exit - clear out the PF's debugfs entries
1836 * @pf: the PF that is stopping
Jesse Brandeburg02e9c292013-09-11 08:40:17 +00001837 **/
1838void i40e_dbg_pf_exit(struct i40e_pf *pf)
1839{
1840 debugfs_remove_recursive(pf->i40e_dbg_pf);
1841 pf->i40e_dbg_pf = NULL;
Jesse Brandeburg02e9c292013-09-11 08:40:17 +00001842}
1843
1844/**
1845 * i40e_dbg_init - start up debugfs for the driver
1846 **/
1847void i40e_dbg_init(void)
1848{
1849 i40e_dbg_root = debugfs_create_dir(i40e_driver_name, NULL);
1850 if (!i40e_dbg_root)
1851 pr_info("init of debugfs failed\n");
1852}
1853
1854/**
1855 * i40e_dbg_exit - clean out the driver's debugfs entries
1856 **/
1857void i40e_dbg_exit(void)
1858{
1859 debugfs_remove_recursive(i40e_dbg_root);
1860 i40e_dbg_root = NULL;
1861}
1862
1863#endif /* CONFIG_DEBUG_FS */