blob: 2d6d0055385877087a467dfa1ab265538fdb7102 [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>
Hante Meuleman122d3d02014-10-28 14:56:18 +010022#include "core.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
44int brcmf_debugfs_attach(struct brcmf_pub *drvr)
45{
Arend van Sprield9cb2592012-12-05 15:25:54 +010046 struct device *dev = drvr->bus_if->dev;
47
Arend van Sprield319a7c2012-06-09 22:51:43 +020048 if (!root_folder)
49 return -ENODEV;
50
Arend van Sprield9cb2592012-12-05 15:25:54 +010051 drvr->dbgfs_dir = debugfs_create_dir(dev_name(dev), root_folder);
Arend van Spriel82d957e2014-07-12 08:49:36 +020052
Rusty Russell8c6ffba2013-07-15 11:20:32 +093053 return PTR_ERR_OR_ZERO(drvr->dbgfs_dir);
Arend van Sprield319a7c2012-06-09 22:51:43 +020054}
55
56void brcmf_debugfs_detach(struct brcmf_pub *drvr)
57{
58 if (!IS_ERR_OR_NULL(drvr->dbgfs_dir))
59 debugfs_remove_recursive(drvr->dbgfs_dir);
60}
61
62struct dentry *brcmf_debugfs_get_devdir(struct brcmf_pub *drvr)
63{
64 return drvr->dbgfs_dir;
65}
Arend van Spriel80969832012-06-09 22:51:44 +020066
Arend van Spriel82d957e2014-07-12 08:49:36 +020067int brcmf_debugfs_add_entry(struct brcmf_pub *drvr, const char *fn,
68 int (*read_fn)(struct seq_file *seq, void *data))
Arend van Spriel349e7102013-03-03 12:45:28 +010069{
Arend van Spriel5b18ffb2015-06-08 14:38:35 +020070 struct dentry *e;
Arend van Spriel349e7102013-03-03 12:45:28 +010071
Arend van Spriel5b18ffb2015-06-08 14:38:35 +020072 e = debugfs_create_devm_seqfile(drvr->bus_if->dev, fn,
73 drvr->dbgfs_dir, read_fn);
74 return PTR_ERR_OR_ZERO(e);
Arend van Spriel349e7102013-03-03 12:45:28 +010075}