hns3_debugfs.c 14.4 KB
Newer Older
1 2 3 4 5 6 7 8 9 10
// SPDX-License-Identifier: GPL-2.0+
/* Copyright (c) 2018-2019 Hisilicon Limited. */

#include <linux/debugfs.h>
#include <linux/device.h>

#include "hnae3.h"
#include "hns3_enet.h"

#define HNS3_DBG_READ_LEN 256
11
#define HNS3_DBG_WRITE_LEN 1024
12 13 14

static struct dentry *hns3_dbgfs_root;

15 16
static int hns3_dbg_queue_info(struct hnae3_handle *h,
			       const char *cmd_buf)
17 18 19 20 21
{
	struct hns3_nic_priv *priv = h->priv;
	struct hns3_enet_ring *ring;
	u32 base_add_l, base_add_h;
	u32 queue_num, queue_max;
22
	u32 value, i;
23 24
	int cnt;

25 26
	if (!priv->ring) {
		dev_err(&h->pdev->dev, "priv->ring is NULL\n");
27 28 29 30 31 32 33 34 35 36 37 38 39 40
		return -EFAULT;
	}

	queue_max = h->kinfo.num_tqps;
	cnt = kstrtouint(&cmd_buf[11], 0, &queue_num);
	if (cnt)
		queue_num = 0;
	else
		queue_max = queue_num + 1;

	dev_info(&h->pdev->dev, "queue info\n");

	if (queue_num >= h->kinfo.num_tqps) {
		dev_err(&h->pdev->dev,
41
			"Queue number(%u) is out of range(0-%u)\n", queue_num,
42 43 44 45 46 47 48 49 50
			h->kinfo.num_tqps - 1);
		return -EINVAL;
	}

	for (i = queue_num; i < queue_max; i++) {
		/* Each cycle needs to determine whether the instance is reset,
		 * to prevent reference to invalid memory. And need to ensure
		 * that the following code is executed within 100ms.
		 */
51
		if (!test_bit(HNS3_NIC_STATE_INITED, &priv->state) ||
52 53 54
		    test_bit(HNS3_NIC_STATE_RESETTING, &priv->state))
			return -EPERM;

55
		ring = &priv->ring[(u32)(i + h->kinfo.num_tqps)];
56 57 58 59
		base_add_h = readl_relaxed(ring->tqp->io_base +
					   HNS3_RING_RX_RING_BASEADDR_H_REG);
		base_add_l = readl_relaxed(ring->tqp->io_base +
					   HNS3_RING_RX_RING_BASEADDR_L_REG);
60
		dev_info(&h->pdev->dev, "RX(%u) BASE ADD: 0x%08x%08x\n", i,
61 62 63 64
			 base_add_h, base_add_l);

		value = readl_relaxed(ring->tqp->io_base +
				      HNS3_RING_RX_RING_BD_NUM_REG);
65
		dev_info(&h->pdev->dev, "RX(%u) RING BD NUM: %u\n", i, value);
66 67 68

		value = readl_relaxed(ring->tqp->io_base +
				      HNS3_RING_RX_RING_BD_LEN_REG);
69
		dev_info(&h->pdev->dev, "RX(%u) RING BD LEN: %u\n", i, value);
70 71 72

		value = readl_relaxed(ring->tqp->io_base +
				      HNS3_RING_RX_RING_TAIL_REG);
73
		dev_info(&h->pdev->dev, "RX(%u) RING TAIL: %u\n", i, value);
74 75 76

		value = readl_relaxed(ring->tqp->io_base +
				      HNS3_RING_RX_RING_HEAD_REG);
77
		dev_info(&h->pdev->dev, "RX(%u) RING HEAD: %u\n", i, value);
78 79 80

		value = readl_relaxed(ring->tqp->io_base +
				      HNS3_RING_RX_RING_FBDNUM_REG);
81
		dev_info(&h->pdev->dev, "RX(%u) RING FBDNUM: %u\n", i, value);
82 83 84

		value = readl_relaxed(ring->tqp->io_base +
				      HNS3_RING_RX_RING_PKTNUM_RECORD_REG);
85
		dev_info(&h->pdev->dev, "RX(%u) RING PKTNUM: %u\n", i, value);
86

87
		ring = &priv->ring[i];
88 89 90 91
		base_add_h = readl_relaxed(ring->tqp->io_base +
					   HNS3_RING_TX_RING_BASEADDR_H_REG);
		base_add_l = readl_relaxed(ring->tqp->io_base +
					   HNS3_RING_TX_RING_BASEADDR_L_REG);
92
		dev_info(&h->pdev->dev, "TX(%u) BASE ADD: 0x%08x%08x\n", i,
93 94 95 96
			 base_add_h, base_add_l);

		value = readl_relaxed(ring->tqp->io_base +
				      HNS3_RING_TX_RING_BD_NUM_REG);
97
		dev_info(&h->pdev->dev, "TX(%u) RING BD NUM: %u\n", i, value);
98 99 100

		value = readl_relaxed(ring->tqp->io_base +
				      HNS3_RING_TX_RING_TC_REG);
101
		dev_info(&h->pdev->dev, "TX(%u) RING TC: %u\n", i, value);
102 103 104

		value = readl_relaxed(ring->tqp->io_base +
				      HNS3_RING_TX_RING_TAIL_REG);
105
		dev_info(&h->pdev->dev, "TX(%u) RING TAIL: %u\n", i, value);
106 107 108

		value = readl_relaxed(ring->tqp->io_base +
				      HNS3_RING_TX_RING_HEAD_REG);
109
		dev_info(&h->pdev->dev, "TX(%u) RING HEAD: %u\n", i, value);
110 111 112

		value = readl_relaxed(ring->tqp->io_base +
				      HNS3_RING_TX_RING_FBDNUM_REG);
113
		dev_info(&h->pdev->dev, "TX(%u) RING FBDNUM: %u\n", i, value);
114 115 116

		value = readl_relaxed(ring->tqp->io_base +
				      HNS3_RING_TX_RING_OFFSET_REG);
117
		dev_info(&h->pdev->dev, "TX(%u) RING OFFSET: %u\n", i, value);
118 119 120

		value = readl_relaxed(ring->tqp->io_base +
				      HNS3_RING_TX_RING_PKTNUM_RECORD_REG);
121
		dev_info(&h->pdev->dev, "TX(%u) RING PKTNUM: %u\n\n", i,
122 123 124 125 126 127
			 value);
	}

	return 0;
}

128 129 130 131 132 133 134 135 136 137 138 139 140 141 142
static int hns3_dbg_queue_map(struct hnae3_handle *h)
{
	struct hns3_nic_priv *priv = h->priv;
	int i;

	if (!h->ae_algo->ops->get_global_queue_id)
		return -EOPNOTSUPP;

	dev_info(&h->pdev->dev, "map info for queue id and vector id\n");
	dev_info(&h->pdev->dev,
		 "local queue id | global queue id | vector id\n");
	for (i = 0; i < h->kinfo.num_tqps; i++) {
		u16 global_qid;

		global_qid = h->ae_algo->ops->get_global_queue_id(h, i);
143
		if (!priv->ring || !priv->ring[i].tqp_vector)
144 145 146 147
			continue;

		dev_info(&h->pdev->dev,
			 "      %4d            %4d            %4d\n",
148
			 i, global_qid, priv->ring[i].tqp_vector->vector_irq);
149 150 151 152 153
	}

	return 0;
}

154
static int hns3_dbg_bd_info(struct hnae3_handle *h, const char *cmd_buf)
155 156 157 158 159 160 161
{
	struct hns3_nic_priv *priv = h->priv;
	struct hns3_desc *rx_desc, *tx_desc;
	struct device *dev = &h->pdev->dev;
	struct hns3_enet_ring *ring;
	u32 tx_index, rx_index;
	u32 q_num, value;
162
	dma_addr_t addr;
163 164 165 166 167 168 169 170 171 172 173
	int cnt;

	cnt = sscanf(&cmd_buf[8], "%u %u", &q_num, &tx_index);
	if (cnt == 2) {
		rx_index = tx_index;
	} else if (cnt != 1) {
		dev_err(dev, "bd info: bad command string, cnt=%d\n", cnt);
		return -EINVAL;
	}

	if (q_num >= h->kinfo.num_tqps) {
174
		dev_err(dev, "Queue number(%u) is out of range(0-%u)\n", q_num,
175 176 177 178
			h->kinfo.num_tqps - 1);
		return -EINVAL;
	}

179
	ring = &priv->ring[q_num];
180 181 182 183
	value = readl_relaxed(ring->tqp->io_base + HNS3_RING_TX_RING_TAIL_REG);
	tx_index = (cnt == 1) ? value : tx_index;

	if (tx_index >= ring->desc_num) {
184
		dev_err(dev, "bd index(%u) is out of range(0-%u)\n", tx_index,
185 186 187 188 189
			ring->desc_num - 1);
		return -EINVAL;
	}

	tx_desc = &ring->desc[tx_index];
190
	addr = le64_to_cpu(tx_desc->addr);
191
	dev_info(dev, "TX Queue Num: %u, BD Index: %u\n", q_num, tx_index);
192
	dev_info(dev, "(TX)addr: %pad\n", &addr);
193 194 195
	dev_info(dev, "(TX)vlan_tag: %u\n", le16_to_cpu(tx_desc->tx.vlan_tag));
	dev_info(dev, "(TX)send_size: %u\n",
		 le16_to_cpu(tx_desc->tx.send_size));
196 197 198 199
	dev_info(dev, "(TX)vlan_tso: %u\n", tx_desc->tx.type_cs_vlan_tso);
	dev_info(dev, "(TX)l2_len: %u\n", tx_desc->tx.l2_len);
	dev_info(dev, "(TX)l3_len: %u\n", tx_desc->tx.l3_len);
	dev_info(dev, "(TX)l4_len: %u\n", tx_desc->tx.l4_len);
200 201 202
	dev_info(dev, "(TX)vlan_tag: %u\n",
		 le16_to_cpu(tx_desc->tx.outer_vlan_tag));
	dev_info(dev, "(TX)tv: %u\n", le16_to_cpu(tx_desc->tx.tv));
203 204 205 206
	dev_info(dev, "(TX)vlan_msec: %u\n", tx_desc->tx.ol_type_vlan_msec);
	dev_info(dev, "(TX)ol2_len: %u\n", tx_desc->tx.ol2_len);
	dev_info(dev, "(TX)ol3_len: %u\n", tx_desc->tx.ol3_len);
	dev_info(dev, "(TX)ol4_len: %u\n", tx_desc->tx.ol4_len);
207 208 209 210
	dev_info(dev, "(TX)paylen: %u\n", le32_to_cpu(tx_desc->tx.paylen));
	dev_info(dev, "(TX)vld_ra_ri: %u\n",
		 le16_to_cpu(tx_desc->tx.bdtp_fe_sc_vld_ra_ri));
	dev_info(dev, "(TX)mss: %u\n", le16_to_cpu(tx_desc->tx.mss));
211

212
	ring = &priv->ring[q_num + h->kinfo.num_tqps];
213 214
	value = readl_relaxed(ring->tqp->io_base + HNS3_RING_RX_RING_TAIL_REG);
	rx_index = (cnt == 1) ? value : tx_index;
215
	rx_desc = &ring->desc[rx_index];
216

217
	addr = le64_to_cpu(rx_desc->addr);
218
	dev_info(dev, "RX Queue Num: %u, BD Index: %u\n", q_num, rx_index);
219
	dev_info(dev, "(RX)addr: %pad\n", &addr);
220 221 222 223 224 225 226 227 228 229 230 231 232
	dev_info(dev, "(RX)l234_info: %u\n",
		 le32_to_cpu(rx_desc->rx.l234_info));
	dev_info(dev, "(RX)pkt_len: %u\n", le16_to_cpu(rx_desc->rx.pkt_len));
	dev_info(dev, "(RX)size: %u\n", le16_to_cpu(rx_desc->rx.size));
	dev_info(dev, "(RX)rss_hash: %u\n", le32_to_cpu(rx_desc->rx.rss_hash));
	dev_info(dev, "(RX)fd_id: %u\n", le16_to_cpu(rx_desc->rx.fd_id));
	dev_info(dev, "(RX)vlan_tag: %u\n", le16_to_cpu(rx_desc->rx.vlan_tag));
	dev_info(dev, "(RX)o_dm_vlan_id_fb: %u\n",
		 le16_to_cpu(rx_desc->rx.o_dm_vlan_id_fb));
	dev_info(dev, "(RX)ot_vlan_tag: %u\n",
		 le16_to_cpu(rx_desc->rx.ot_vlan_tag));
	dev_info(dev, "(RX)bd_base_info: %u\n",
		 le32_to_cpu(rx_desc->rx.bd_base_info));
233 234 235 236

	return 0;
}

237 238
static void hns3_dbg_help(struct hnae3_handle *h)
{
239 240 241 242
#define HNS3_DBG_BUF_LEN 256

	char printf_buf[HNS3_DBG_BUF_LEN];

243
	dev_info(&h->pdev->dev, "available commands\n");
244
	dev_info(&h->pdev->dev, "queue info <number>\n");
245
	dev_info(&h->pdev->dev, "queue map\n");
246
	dev_info(&h->pdev->dev, "bd info <q_num> <bd index>\n");
247
	dev_info(&h->pdev->dev, "dev capability\n");
248
	dev_info(&h->pdev->dev, "dev spec\n");
249 250 251 252

	if (!hns3_is_phys_func(h->pdev))
		return;

253
	dev_info(&h->pdev->dev, "dump fd tcam\n");
254
	dev_info(&h->pdev->dev, "dump tc\n");
255
	dev_info(&h->pdev->dev, "dump tm map <q_num>\n");
256
	dev_info(&h->pdev->dev, "dump tm\n");
257
	dev_info(&h->pdev->dev, "dump qos pause cfg\n");
258
	dev_info(&h->pdev->dev, "dump qos pri map\n");
259
	dev_info(&h->pdev->dev, "dump qos buf cfg\n");
260
	dev_info(&h->pdev->dev, "dump mng tbl\n");
261
	dev_info(&h->pdev->dev, "dump reset info\n");
262
	dev_info(&h->pdev->dev, "dump m7 info\n");
263
	dev_info(&h->pdev->dev, "dump ncl_config <offset> <length>(in hex)\n");
264
	dev_info(&h->pdev->dev, "dump mac tnl status\n");
265
	dev_info(&h->pdev->dev, "dump loopback\n");
266
	dev_info(&h->pdev->dev, "dump qs shaper [qs id]\n");
267 268
	dev_info(&h->pdev->dev, "dump uc mac list <func id>\n");
	dev_info(&h->pdev->dev, "dump mc mac list <func id>\n");
269
	dev_info(&h->pdev->dev, "dump intr\n");
270 271

	memset(printf_buf, 0, HNS3_DBG_BUF_LEN);
272
	strncat(printf_buf, "dump reg [[bios common] [ssu <port_id>]",
273 274
		HNS3_DBG_BUF_LEN - 1);
	strncat(printf_buf + strlen(printf_buf),
275
		" [igu egu <port_id>] [rpu <tc_queue_num>]",
276 277
		HNS3_DBG_BUF_LEN - strlen(printf_buf) - 1);
	strncat(printf_buf + strlen(printf_buf),
278
		" [rtc] [ppp] [rcb] [tqp <queue_num>] [mac]]\n",
279 280
		HNS3_DBG_BUF_LEN - strlen(printf_buf) - 1);
	dev_info(&h->pdev->dev, "%s", printf_buf);
281 282

	memset(printf_buf, 0, HNS3_DBG_BUF_LEN);
283
	strncat(printf_buf, "dump reg dcb <port_id> <pri_id> <pg_id>",
284
		HNS3_DBG_BUF_LEN - 1);
285
	strncat(printf_buf + strlen(printf_buf), " <rq_id> <nq_id> <qset_id>\n",
286 287
		HNS3_DBG_BUF_LEN - strlen(printf_buf) - 1);
	dev_info(&h->pdev->dev, "%s", printf_buf);
288 289
}

290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310
static void hns3_dbg_dev_caps(struct hnae3_handle *h)
{
	struct hnae3_ae_dev *ae_dev = pci_get_drvdata(h->pdev);
	unsigned long *caps;

	caps = ae_dev->caps;

	dev_info(&h->pdev->dev, "support FD: %s\n",
		 test_bit(HNAE3_DEV_SUPPORT_FD_B, caps) ? "yes" : "no");
	dev_info(&h->pdev->dev, "support GRO: %s\n",
		 test_bit(HNAE3_DEV_SUPPORT_GRO_B, caps) ? "yes" : "no");
	dev_info(&h->pdev->dev, "support FEC: %s\n",
		 test_bit(HNAE3_DEV_SUPPORT_FEC_B, caps) ? "yes" : "no");
	dev_info(&h->pdev->dev, "support UDP GSO: %s\n",
		 test_bit(HNAE3_DEV_SUPPORT_UDP_GSO_B, caps) ? "yes" : "no");
	dev_info(&h->pdev->dev, "support PTP: %s\n",
		 test_bit(HNAE3_DEV_SUPPORT_PTP_B, caps) ? "yes" : "no");
	dev_info(&h->pdev->dev, "support INT QL: %s\n",
		 test_bit(HNAE3_DEV_SUPPORT_INT_QL_B, caps) ? "yes" : "no");
}

311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335
static void hns3_dbg_dev_specs(struct hnae3_handle *h)
{
	struct hnae3_ae_dev *ae_dev = pci_get_drvdata(h->pdev);
	struct hnae3_dev_specs *dev_specs = &ae_dev->dev_specs;
	struct hnae3_knic_private_info *kinfo = &h->kinfo;
	struct hns3_nic_priv *priv  = h->priv;

	dev_info(priv->dev, "MAC entry num: %u\n", dev_specs->mac_entry_num);
	dev_info(priv->dev, "MNG entry num: %u\n", dev_specs->mng_entry_num);
	dev_info(priv->dev, "MAX non tso bd num: %u\n",
		 dev_specs->max_non_tso_bd_num);
	dev_info(priv->dev, "RSS ind tbl size: %u\n",
		 dev_specs->rss_ind_tbl_size);
	dev_info(priv->dev, "RSS key size: %u\n", dev_specs->rss_key_size);
	dev_info(priv->dev, "RSS size: %u\n", kinfo->rss_size);
	dev_info(priv->dev, "Allocated RSS size: %u\n", kinfo->req_rss_size);
	dev_info(priv->dev, "Task queue pairs numbers: %u\n", kinfo->num_tqps);

	dev_info(priv->dev, "RX buffer length: %u\n", kinfo->rx_buf_len);
	dev_info(priv->dev, "Desc num per TX queue: %u\n", kinfo->num_tx_desc);
	dev_info(priv->dev, "Desc num per RX queue: %u\n", kinfo->num_rx_desc);
	dev_info(priv->dev, "Total number of enabled TCs: %u\n", kinfo->num_tc);
	dev_info(priv->dev, "MAX INT QL: %u\n", dev_specs->int_ql_max);
}

336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352
static ssize_t hns3_dbg_cmd_read(struct file *filp, char __user *buffer,
				 size_t count, loff_t *ppos)
{
	int uncopy_bytes;
	char *buf;
	int len;

	if (*ppos != 0)
		return 0;

	if (count < HNS3_DBG_READ_LEN)
		return -ENOSPC;

	buf = kzalloc(HNS3_DBG_READ_LEN, GFP_KERNEL);
	if (!buf)
		return -ENOMEM;

353 354
	len = scnprintf(buf, HNS3_DBG_READ_LEN, "%s\n",
			"Please echo help to cmd to get help information");
355 356 357 358 359 360 361 362 363 364 365 366 367 368
	uncopy_bytes = copy_to_user(buffer, buf, len);

	kfree(buf);

	if (uncopy_bytes)
		return -EFAULT;

	return (*ppos = len);
}

static ssize_t hns3_dbg_cmd_write(struct file *filp, const char __user *buffer,
				  size_t count, loff_t *ppos)
{
	struct hnae3_handle *handle = filp->private_data;
369
	struct hns3_nic_priv *priv  = handle->priv;
370 371 372 373 374 375 376
	char *cmd_buf, *cmd_buf_tmp;
	int uncopied_bytes;
	int ret = 0;

	if (*ppos != 0)
		return 0;

377
	/* Judge if the instance is being reset. */
378
	if (!test_bit(HNS3_NIC_STATE_INITED, &priv->state) ||
379 380 381
	    test_bit(HNS3_NIC_STATE_RESETTING, &priv->state))
		return 0;

382 383 384
	if (count > HNS3_DBG_WRITE_LEN)
		return -ENOSPC;

385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404
	cmd_buf = kzalloc(count + 1, GFP_KERNEL);
	if (!cmd_buf)
		return count;

	uncopied_bytes = copy_from_user(cmd_buf, buffer, count);
	if (uncopied_bytes) {
		kfree(cmd_buf);
		return -EFAULT;
	}

	cmd_buf[count] = '\0';

	cmd_buf_tmp = strchr(cmd_buf, '\n');
	if (cmd_buf_tmp) {
		*cmd_buf_tmp = '\0';
		count = cmd_buf_tmp - cmd_buf + 1;
	}

	if (strncmp(cmd_buf, "help", 4) == 0)
		hns3_dbg_help(handle);
405 406
	else if (strncmp(cmd_buf, "queue info", 10) == 0)
		ret = hns3_dbg_queue_info(handle, cmd_buf);
407 408
	else if (strncmp(cmd_buf, "queue map", 9) == 0)
		ret = hns3_dbg_queue_map(handle);
409 410
	else if (strncmp(cmd_buf, "bd info", 7) == 0)
		ret = hns3_dbg_bd_info(handle, cmd_buf);
411 412
	else if (strncmp(cmd_buf, "dev capability", 14) == 0)
		hns3_dbg_dev_caps(handle);
413 414
	else if (strncmp(cmd_buf, "dev spec", 8) == 0)
		hns3_dbg_dev_specs(handle);
415 416
	else if (handle->ae_algo->ops->dbg_run_cmd)
		ret = handle->ae_algo->ops->dbg_run_cmd(handle, cmd_buf);
417 418
	else
		ret = -EOPNOTSUPP;
419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441

	if (ret)
		hns3_dbg_help(handle);

	kfree(cmd_buf);
	cmd_buf = NULL;

	return count;
}

static const struct file_operations hns3_dbg_cmd_fops = {
	.owner = THIS_MODULE,
	.open  = simple_open,
	.read  = hns3_dbg_cmd_read,
	.write = hns3_dbg_cmd_write,
};

void hns3_dbg_init(struct hnae3_handle *handle)
{
	const char *name = pci_name(handle->pdev);

	handle->hnae3_dbgfs = debugfs_create_dir(name, hns3_dbgfs_root);

442 443
	debugfs_create_file("cmd", 0600, handle->hnae3_dbgfs, handle,
			    &hns3_dbg_cmd_fops);
444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461
}

void hns3_dbg_uninit(struct hnae3_handle *handle)
{
	debugfs_remove_recursive(handle->hnae3_dbgfs);
	handle->hnae3_dbgfs = NULL;
}

void hns3_dbg_register_debugfs(const char *debugfs_dir_name)
{
	hns3_dbgfs_root = debugfs_create_dir(debugfs_dir_name, NULL);
}

void hns3_dbg_unregister_debugfs(void)
{
	debugfs_remove_recursive(hns3_dbgfs_root);
	hns3_dbgfs_root = NULL;
}