blob: 99f3af1a9d4de557066954fc42c1cde36f1dbf49 [file] [log] [blame]
Murali Karicherifc4ecae2019-04-05 13:31:35 -04001/*
Murali Karicheri8f4c0e02020-07-22 10:40:16 -04002 * debugfs code for HSR & PRP
Murali Karicheri32712732019-04-15 11:36:02 -04003 * Copyright (C) 2019 Texas Instruments Incorporated
Murali Karicherifc4ecae2019-04-05 13:31:35 -04004 *
5 * Author(s):
Murali Karicheri32712732019-04-15 11:36:02 -04006 * Murali Karicheri <m-karicheri2@ti.com>
Murali Karicherifc4ecae2019-04-05 13:31:35 -04007 *
8 * This program is free software; you can redistribute it and/or
9 * modify it under the terms of the GNU General Public License as
10 * published by the Free Software Foundation version 2.
11 *
12 * This program is distributed "as is" WITHOUT ANY WARRANTY of any
13 * kind, whether express or implied; without even the implied warranty
14 * of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
15 * GNU General Public License for more details.
16 */
17#include <linux/module.h>
18#include <linux/errno.h>
19#include <linux/debugfs.h>
20#include "hsr_main.h"
21#include "hsr_framereg.h"
22
Taehee Yooc6c4ccd2019-12-22 11:26:27 +000023static struct dentry *hsr_debugfs_root_dir;
24
Murali Karicheri9c5f8a192019-04-15 11:36:01 -040025/* hsr_node_table_show - Formats and prints node_table entries */
Murali Karicherifc4ecae2019-04-05 13:31:35 -040026static int
Murali Karicheri9c5f8a192019-04-15 11:36:01 -040027hsr_node_table_show(struct seq_file *sfp, void *data)
Murali Karicherifc4ecae2019-04-05 13:31:35 -040028{
29 struct hsr_priv *priv = (struct hsr_priv *)sfp->private;
30 struct hsr_node *node;
31
Murali Karicheri795ec4f2020-07-22 10:40:22 -040032 seq_printf(sfp, "Node Table entries for (%s) device\n",
33 (priv->prot_version == PRP_V1 ? "PRP" : "HSR"));
34 seq_puts(sfp, "MAC-Address-A, MAC-Address-B, time_in[A], ");
35 seq_puts(sfp, "time_in[B], Address-B port, ");
36 if (priv->prot_version == PRP_V1)
37 seq_puts(sfp, "SAN-A, SAN-B, DAN-P\n");
38 else
39 seq_puts(sfp, "DAN-H\n");
40
Murali Karicherifc4ecae2019-04-05 13:31:35 -040041 rcu_read_lock();
42 list_for_each_entry_rcu(node, &priv->node_db, mac_list) {
43 /* skip self node */
44 if (hsr_addr_is_self(priv, node->macaddress_A))
45 continue;
Andy Shevchenkocc0b0652020-07-30 18:09:04 +030046 seq_printf(sfp, "%pM ", &node->macaddress_A[0]);
47 seq_printf(sfp, "%pM ", &node->macaddress_B[0]);
Murali Karicheri795ec4f2020-07-22 10:40:22 -040048 seq_printf(sfp, "%10lx, ", node->time_in[HSR_PT_SLAVE_A]);
49 seq_printf(sfp, "%10lx, ", node->time_in[HSR_PT_SLAVE_B]);
50 seq_printf(sfp, "%14x, ", node->addr_B_port);
51
52 if (priv->prot_version == PRP_V1)
53 seq_printf(sfp, "%5x, %5x, %5x\n",
54 node->san_a, node->san_b,
55 (node->san_a == 0 && node->san_b == 0));
56 else
57 seq_printf(sfp, "%5x\n", 1);
Murali Karicherifc4ecae2019-04-05 13:31:35 -040058 }
59 rcu_read_unlock();
60 return 0;
61}
62
Qinglang Miao2170ff02020-09-17 20:45:07 +080063DEFINE_SHOW_ATTRIBUTE(hsr_node_table);
Murali Karicherifc4ecae2019-04-05 13:31:35 -040064
Taehee Yoo4c2d5e32019-12-22 11:26:39 +000065void hsr_debugfs_rename(struct net_device *dev)
66{
67 struct hsr_priv *priv = netdev_priv(dev);
68 struct dentry *d;
69
70 d = debugfs_rename(hsr_debugfs_root_dir, priv->node_tbl_root,
71 hsr_debugfs_root_dir, dev->name);
72 if (IS_ERR(d))
73 netdev_warn(dev, "failed to rename\n");
74 else
75 priv->node_tbl_root = d;
76}
77
Murali Karicheri9c5f8a192019-04-15 11:36:01 -040078/* hsr_debugfs_init - create hsr node_table file for dumping
Murali Karicherifc4ecae2019-04-05 13:31:35 -040079 * the node table
80 *
81 * Description:
82 * When debugfs is configured this routine sets up the node_table file per
Murali Karicheri9c5f8a192019-04-15 11:36:01 -040083 * hsr device for dumping the node_table entries
Murali Karicherifc4ecae2019-04-05 13:31:35 -040084 */
Taehee Yoo1d19e2d2019-12-22 11:26:15 +000085void hsr_debugfs_init(struct hsr_priv *priv, struct net_device *hsr_dev)
Murali Karicherifc4ecae2019-04-05 13:31:35 -040086{
Murali Karicherifc4ecae2019-04-05 13:31:35 -040087 struct dentry *de = NULL;
88
Taehee Yooc6c4ccd2019-12-22 11:26:27 +000089 de = debugfs_create_dir(hsr_dev->name, hsr_debugfs_root_dir);
Taehee Yoo1d19e2d2019-12-22 11:26:15 +000090 if (IS_ERR(de)) {
Taehee Yooc6c4ccd2019-12-22 11:26:27 +000091 pr_err("Cannot create hsr debugfs directory\n");
Taehee Yoo1d19e2d2019-12-22 11:26:15 +000092 return;
Murali Karicherifc4ecae2019-04-05 13:31:35 -040093 }
94
95 priv->node_tbl_root = de;
96
97 de = debugfs_create_file("node_table", S_IFREG | 0444,
98 priv->node_tbl_root, priv,
Qinglang Miao2170ff02020-09-17 20:45:07 +080099 &hsr_node_table_fops);
Taehee Yoo1d19e2d2019-12-22 11:26:15 +0000100 if (IS_ERR(de)) {
Taehee Yooc6c4ccd2019-12-22 11:26:27 +0000101 pr_err("Cannot create hsr node_table file\n");
Taehee Yoo1d19e2d2019-12-22 11:26:15 +0000102 debugfs_remove(priv->node_tbl_root);
103 priv->node_tbl_root = NULL;
104 return;
Murali Karicherifc4ecae2019-04-05 13:31:35 -0400105 }
Murali Karicherifc4ecae2019-04-05 13:31:35 -0400106}
107
Murali Karicheri9c5f8a192019-04-15 11:36:01 -0400108/* hsr_debugfs_term - Tear down debugfs intrastructure
Murali Karicherifc4ecae2019-04-05 13:31:35 -0400109 *
110 * Description:
Xiong Zhenwu7f1330c2021-03-18 04:39:41 -0700111 * When Debugfs is configured this routine removes debugfs file system
Murali Karicheri9c5f8a192019-04-15 11:36:01 -0400112 * elements that are specific to hsr
Murali Karicherifc4ecae2019-04-05 13:31:35 -0400113 */
114void
Murali Karicheri9c5f8a192019-04-15 11:36:01 -0400115hsr_debugfs_term(struct hsr_priv *priv)
Murali Karicherifc4ecae2019-04-05 13:31:35 -0400116{
Taehee Yoof3f2f982020-02-28 18:01:20 +0000117 debugfs_remove_recursive(priv->node_tbl_root);
Murali Karicherifc4ecae2019-04-05 13:31:35 -0400118 priv->node_tbl_root = NULL;
119}
Taehee Yooc6c4ccd2019-12-22 11:26:27 +0000120
121void hsr_debugfs_create_root(void)
122{
123 hsr_debugfs_root_dir = debugfs_create_dir("hsr", NULL);
124 if (IS_ERR(hsr_debugfs_root_dir)) {
125 pr_err("Cannot create hsr debugfs root directory\n");
126 hsr_debugfs_root_dir = NULL;
127 }
128}
129
130void hsr_debugfs_remove_root(void)
131{
132 /* debugfs_remove() internally checks NULL and ERROR */
133 debugfs_remove(hsr_debugfs_root_dir);
134}