blob: 340b10447ab912acbf9665b133703e370cc23366 [file] [log] [blame]
Arend van Sprield319a7c2012-06-09 22:51:43 +02001/*
2 * Copyright (c) 2012 Broadcom Corporation
3 *
4 * Permission to use, copy, modify, and/or distribute this software for any
5 * purpose with or without fee is hereby granted, provided that the above
6 * copyright notice and this permission notice appear in all copies.
7 *
8 * THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES
9 * WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF
10 * MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY
11 * SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES
12 * WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN ACTION
13 * OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF OR IN
14 * CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
15 */
16#include <linux/debugfs.h>
Arend van Spriel1d4fd8d2012-10-22 10:36:19 -070017#include <linux/netdevice.h>
Arend van Spriel80969832012-06-09 22:51:44 +020018#include <linux/module.h>
Arend van Sprield319a7c2012-06-09 22:51:43 +020019
Arend van Sprield319a7c2012-06-09 22:51:43 +020020#include <brcmu_wifi.h>
21#include <brcmu_utils.h>
22#include "dhd.h"
Hante Meulemand14f78b2014-10-28 14:56:14 +010023#include "bus.h"
Hante Meulemana8e8ed32014-10-28 14:56:13 +010024#include "debug.h"
Arend van Sprield319a7c2012-06-09 22:51:43 +020025
26static struct dentry *root_folder;
27
28void brcmf_debugfs_init(void)
29{
30 root_folder = debugfs_create_dir(KBUILD_MODNAME, NULL);
31 if (IS_ERR(root_folder))
32 root_folder = NULL;
33}
34
35void brcmf_debugfs_exit(void)
36{
37 if (!root_folder)
38 return;
39
40 debugfs_remove_recursive(root_folder);
41 root_folder = NULL;
42}
43
Arend van Spriel1b1e4e92014-07-12 08:49:35 +020044static int brcmf_debugfs_chipinfo_read(struct seq_file *seq, void *data)
Arend van Spriel7d688492013-11-29 12:25:24 +010045{
Arend van Spriel82d957e2014-07-12 08:49:36 +020046 struct brcmf_bus *bus = dev_get_drvdata(seq->private);
Arend van Spriel7d688492013-11-29 12:25:24 +010047
Arend van Spriel1b1e4e92014-07-12 08:49:35 +020048 seq_printf(seq, "chip: %x(%u) rev %u\n",
49 bus->chip, bus->chip, bus->chiprev);
50 return 0;
51}
Arend van Spriel7d688492013-11-29 12:25:24 +010052
Arend van Sprield319a7c2012-06-09 22:51:43 +020053int brcmf_debugfs_attach(struct brcmf_pub *drvr)
54{
Arend van Sprield9cb2592012-12-05 15:25:54 +010055 struct device *dev = drvr->bus_if->dev;
56
Arend van Sprield319a7c2012-06-09 22:51:43 +020057 if (!root_folder)
58 return -ENODEV;
59
Arend van Sprield9cb2592012-12-05 15:25:54 +010060 drvr->dbgfs_dir = debugfs_create_dir(dev_name(dev), root_folder);
Arend van Spriel82d957e2014-07-12 08:49:36 +020061 brcmf_debugfs_add_entry(drvr, "chipinfo", brcmf_debugfs_chipinfo_read);
62
Rusty Russell8c6ffba2013-07-15 11:20:32 +093063 return PTR_ERR_OR_ZERO(drvr->dbgfs_dir);
Arend van Sprield319a7c2012-06-09 22:51:43 +020064}
65
66void brcmf_debugfs_detach(struct brcmf_pub *drvr)
67{
68 if (!IS_ERR_OR_NULL(drvr->dbgfs_dir))
69 debugfs_remove_recursive(drvr->dbgfs_dir);
70}
71
72struct dentry *brcmf_debugfs_get_devdir(struct brcmf_pub *drvr)
73{
74 return drvr->dbgfs_dir;
75}
Arend van Spriel80969832012-06-09 22:51:44 +020076
Arend van Spriel82d957e2014-07-12 08:49:36 +020077struct brcmf_debugfs_entry {
78 int (*read)(struct seq_file *seq, void *data);
79 struct brcmf_pub *drvr;
80};
81
82static int brcmf_debugfs_entry_open(struct inode *inode, struct file *f)
Arend van Spriel80969832012-06-09 22:51:44 +020083{
Arend van Spriel82d957e2014-07-12 08:49:36 +020084 struct brcmf_debugfs_entry *entry = inode->i_private;
Arend van Spriel80969832012-06-09 22:51:44 +020085
Arend van Spriel82d957e2014-07-12 08:49:36 +020086 return single_open(f, entry->read, entry->drvr->bus_if->dev);
Arend van Spriel1b1e4e92014-07-12 08:49:35 +020087}
Arend van Spriel80969832012-06-09 22:51:44 +020088
Arend van Spriel82d957e2014-07-12 08:49:36 +020089static const struct file_operations brcmf_debugfs_def_ops = {
Arend van Spriel80969832012-06-09 22:51:44 +020090 .owner = THIS_MODULE,
Arend van Spriel82d957e2014-07-12 08:49:36 +020091 .open = brcmf_debugfs_entry_open,
Arend van Spriel1b1e4e92014-07-12 08:49:35 +020092 .release = single_release,
93 .read = seq_read,
94 .llseek = seq_lseek
Arend van Spriel80969832012-06-09 22:51:44 +020095};
96
Arend van Spriel82d957e2014-07-12 08:49:36 +020097int brcmf_debugfs_add_entry(struct brcmf_pub *drvr, const char *fn,
98 int (*read_fn)(struct seq_file *seq, void *data))
Arend van Spriel349e7102013-03-03 12:45:28 +010099{
100 struct dentry *dentry = drvr->dbgfs_dir;
Arend van Spriel82d957e2014-07-12 08:49:36 +0200101 struct brcmf_debugfs_entry *entry;
Arend van Spriel349e7102013-03-03 12:45:28 +0100102
Arend van Spriel82d957e2014-07-12 08:49:36 +0200103 if (IS_ERR_OR_NULL(dentry))
104 return -ENOENT;
105
106 entry = devm_kzalloc(drvr->bus_if->dev, sizeof(*entry), GFP_KERNEL);
107 if (!entry)
108 return -ENOMEM;
109
110 entry->read = read_fn;
111 entry->drvr = drvr;
112
113 dentry = debugfs_create_file(fn, S_IRUGO, dentry, entry,
114 &brcmf_debugfs_def_ops);
115
116 return PTR_ERR_OR_ZERO(dentry);
Arend van Spriel349e7102013-03-03 12:45:28 +0100117}