blob: c4867576be00899c83aae0cb90e852480c9ccb89 [file] [log] [blame]
Bing Zhaofb784f02009-06-02 14:29:37 -07001/**
2 * Marvell Bluetooth driver: debugfs related functions
3 *
4 * Copyright (C) 2009, Marvell International Ltd.
5 *
6 * This software file (the "File") is distributed by Marvell International
7 * Ltd. under the terms of the GNU General Public License Version 2, June 1991
8 * (the "License"). You may use, redistribute and/or modify this File in
9 * accordance with the terms and conditions of the License, a copy of which
10 * is available by writing to the Free Software Foundation, Inc.,
11 * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA or on the
12 * worldwide web at http://www.gnu.org/licenses/old-licenses/gpl-2.0.txt.
13 *
14 *
15 * THE FILE IS DISTRIBUTED AS-IS, WITHOUT WARRANTY OF ANY KIND, AND THE
16 * IMPLIED WARRANTIES OF MERCHANTABILITY OR FITNESS FOR A PARTICULAR PURPOSE
17 * ARE EXPRESSLY DISCLAIMED. The License provides additional details about
18 * this warranty disclaimer.
19 **/
20
21#include <linux/debugfs.h>
Tejun Heo5a0e3ad2010-03-24 17:04:11 +090022#include <linux/slab.h>
Bing Zhaofb784f02009-06-02 14:29:37 -070023
24#include <net/bluetooth/bluetooth.h>
25#include <net/bluetooth/hci_core.h>
26
27#include "btmrvl_drv.h"
28
29struct btmrvl_debugfs_data {
Marcel Holtmannb914a252010-02-08 16:47:04 +010030 struct dentry *config_dir;
31 struct dentry *status_dir;
Bing Zhaofb784f02009-06-02 14:29:37 -070032};
33
Bing Zhaofb784f02009-06-02 14:29:37 -070034static ssize_t btmrvl_hscfgcmd_write(struct file *file,
Marcel Holtmann54239902009-06-09 15:48:35 +020035 const char __user *ubuf, size_t count, loff_t *ppos)
Bing Zhaofb784f02009-06-02 14:29:37 -070036{
Marcel Holtmann54239902009-06-09 15:48:35 +020037 struct btmrvl_private *priv = file->private_data;
Marcel Holtmann54239902009-06-09 15:48:35 +020038 long result, ret;
Bing Zhaofb784f02009-06-02 14:29:37 -070039
Andy Shevchenkoc2e7f5d2018-05-29 16:33:49 +030040 ret = kstrtol_from_user(ubuf, count, 10, &result);
David Miller26e7acf2011-05-19 17:37:45 -040041 if (ret)
42 return ret;
Bing Zhaofb784f02009-06-02 14:29:37 -070043
44 priv->btmrvl_dev.hscfgcmd = result;
45
46 if (priv->btmrvl_dev.hscfgcmd) {
47 btmrvl_prepare_command(priv);
48 wake_up_interruptible(&priv->main_thread.wait_q);
49 }
50
51 return count;
52}
53
Marcel Holtmann54239902009-06-09 15:48:35 +020054static ssize_t btmrvl_hscfgcmd_read(struct file *file, char __user *userbuf,
55 size_t count, loff_t *ppos)
Bing Zhaofb784f02009-06-02 14:29:37 -070056{
Marcel Holtmann54239902009-06-09 15:48:35 +020057 struct btmrvl_private *priv = file->private_data;
Bing Zhaofb784f02009-06-02 14:29:37 -070058 char buf[16];
Marcel Holtmann54239902009-06-09 15:48:35 +020059 int ret;
Bing Zhaofb784f02009-06-02 14:29:37 -070060
61 ret = snprintf(buf, sizeof(buf) - 1, "%d\n",
Marcel Holtmann54239902009-06-09 15:48:35 +020062 priv->btmrvl_dev.hscfgcmd);
Bing Zhaofb784f02009-06-02 14:29:37 -070063
64 return simple_read_from_buffer(userbuf, count, ppos, buf, ret);
65}
66
67static const struct file_operations btmrvl_hscfgcmd_fops = {
Marcel Holtmann54239902009-06-09 15:48:35 +020068 .read = btmrvl_hscfgcmd_read,
69 .write = btmrvl_hscfgcmd_write,
Stephen Boyd234e3402012-04-05 14:25:11 -070070 .open = simple_open,
Arnd Bergmann6038f372010-08-15 18:52:59 +020071 .llseek = default_llseek,
Bing Zhaofb784f02009-06-02 14:29:37 -070072};
73
Bing Zhaofb784f02009-06-02 14:29:37 -070074static ssize_t btmrvl_pscmd_write(struct file *file, const char __user *ubuf,
Marcel Holtmann54239902009-06-09 15:48:35 +020075 size_t count, loff_t *ppos)
Bing Zhaofb784f02009-06-02 14:29:37 -070076{
Marcel Holtmann54239902009-06-09 15:48:35 +020077 struct btmrvl_private *priv = file->private_data;
Marcel Holtmann54239902009-06-09 15:48:35 +020078 long result, ret;
Bing Zhaofb784f02009-06-02 14:29:37 -070079
Andy Shevchenkoc2e7f5d2018-05-29 16:33:49 +030080 ret = kstrtol_from_user(ubuf, count, 10, &result);
David Miller26e7acf2011-05-19 17:37:45 -040081 if (ret)
82 return ret;
Bing Zhaofb784f02009-06-02 14:29:37 -070083
84 priv->btmrvl_dev.pscmd = result;
85
86 if (priv->btmrvl_dev.pscmd) {
87 btmrvl_prepare_command(priv);
88 wake_up_interruptible(&priv->main_thread.wait_q);
89 }
90
91 return count;
92
93}
94
Marcel Holtmann54239902009-06-09 15:48:35 +020095static ssize_t btmrvl_pscmd_read(struct file *file, char __user *userbuf,
96 size_t count, loff_t *ppos)
Bing Zhaofb784f02009-06-02 14:29:37 -070097{
Marcel Holtmann54239902009-06-09 15:48:35 +020098 struct btmrvl_private *priv = file->private_data;
Bing Zhaofb784f02009-06-02 14:29:37 -070099 char buf[16];
Marcel Holtmann54239902009-06-09 15:48:35 +0200100 int ret;
Bing Zhaofb784f02009-06-02 14:29:37 -0700101
102 ret = snprintf(buf, sizeof(buf) - 1, "%d\n", priv->btmrvl_dev.pscmd);
103
104 return simple_read_from_buffer(userbuf, count, ppos, buf, ret);
105}
106
107static const struct file_operations btmrvl_pscmd_fops = {
108 .read = btmrvl_pscmd_read,
109 .write = btmrvl_pscmd_write,
Stephen Boyd234e3402012-04-05 14:25:11 -0700110 .open = simple_open,
Arnd Bergmann6038f372010-08-15 18:52:59 +0200111 .llseek = default_llseek,
Bing Zhaofb784f02009-06-02 14:29:37 -0700112};
113
Bing Zhaofb784f02009-06-02 14:29:37 -0700114static ssize_t btmrvl_hscmd_write(struct file *file, const char __user *ubuf,
Marcel Holtmann54239902009-06-09 15:48:35 +0200115 size_t count, loff_t *ppos)
Bing Zhaofb784f02009-06-02 14:29:37 -0700116{
Joe Perchesbe60b942010-07-12 13:49:57 -0700117 struct btmrvl_private *priv = file->private_data;
Marcel Holtmann54239902009-06-09 15:48:35 +0200118 long result, ret;
Bing Zhaofb784f02009-06-02 14:29:37 -0700119
Andy Shevchenkoc2e7f5d2018-05-29 16:33:49 +0300120 ret = kstrtol_from_user(ubuf, count, 10, &result);
David Miller26e7acf2011-05-19 17:37:45 -0400121 if (ret)
122 return ret;
Bing Zhaofb784f02009-06-02 14:29:37 -0700123
124 priv->btmrvl_dev.hscmd = result;
125 if (priv->btmrvl_dev.hscmd) {
126 btmrvl_prepare_command(priv);
127 wake_up_interruptible(&priv->main_thread.wait_q);
128 }
129
130 return count;
131}
132
Marcel Holtmann54239902009-06-09 15:48:35 +0200133static ssize_t btmrvl_hscmd_read(struct file *file, char __user *userbuf,
134 size_t count, loff_t *ppos)
Bing Zhaofb784f02009-06-02 14:29:37 -0700135{
Marcel Holtmann54239902009-06-09 15:48:35 +0200136 struct btmrvl_private *priv = file->private_data;
Bing Zhaofb784f02009-06-02 14:29:37 -0700137 char buf[16];
Marcel Holtmann54239902009-06-09 15:48:35 +0200138 int ret;
Bing Zhaofb784f02009-06-02 14:29:37 -0700139
140 ret = snprintf(buf, sizeof(buf) - 1, "%d\n", priv->btmrvl_dev.hscmd);
141
142 return simple_read_from_buffer(userbuf, count, ppos, buf, ret);
143}
144
145static const struct file_operations btmrvl_hscmd_fops = {
Marcel Holtmann54239902009-06-09 15:48:35 +0200146 .read = btmrvl_hscmd_read,
147 .write = btmrvl_hscmd_write,
Stephen Boyd234e3402012-04-05 14:25:11 -0700148 .open = simple_open,
Arnd Bergmann6038f372010-08-15 18:52:59 +0200149 .llseek = default_llseek,
Bing Zhaofb784f02009-06-02 14:29:37 -0700150};
151
Bing Zhaofb784f02009-06-02 14:29:37 -0700152void btmrvl_debugfs_init(struct hci_dev *hdev)
153{
David Herrmann155961e2012-02-09 21:58:32 +0100154 struct btmrvl_private *priv = hci_get_drvdata(hdev);
Bing Zhaofb784f02009-06-02 14:29:37 -0700155 struct btmrvl_debugfs_data *dbg;
156
Marcel Holtmannb914a252010-02-08 16:47:04 +0100157 if (!hdev->debugfs)
158 return;
159
Bing Zhaofb784f02009-06-02 14:29:37 -0700160 dbg = kzalloc(sizeof(*dbg), GFP_KERNEL);
161 priv->debugfs_data = dbg;
162
163 if (!dbg) {
164 BT_ERR("Can not allocate memory for btmrvl_debugfs_data.");
165 return;
166 }
167
Marcel Holtmannb914a252010-02-08 16:47:04 +0100168 dbg->config_dir = debugfs_create_dir("config", hdev->debugfs);
Bing Zhaofb784f02009-06-02 14:29:37 -0700169
Andy Shevchenko9da226c2013-04-23 12:53:46 +0300170 debugfs_create_u8("psmode", 0644, dbg->config_dir,
171 &priv->btmrvl_dev.psmode);
172 debugfs_create_file("pscmd", 0644, dbg->config_dir,
173 priv, &btmrvl_pscmd_fops);
174 debugfs_create_x16("gpiogap", 0644, dbg->config_dir,
175 &priv->btmrvl_dev.gpio_gap);
176 debugfs_create_u8("hsmode", 0644, dbg->config_dir,
177 &priv->btmrvl_dev.hsmode);
178 debugfs_create_file("hscmd", 0644, dbg->config_dir,
179 priv, &btmrvl_hscmd_fops);
180 debugfs_create_file("hscfgcmd", 0644, dbg->config_dir,
181 priv, &btmrvl_hscfgcmd_fops);
Bing Zhaofb784f02009-06-02 14:29:37 -0700182
Marcel Holtmannb914a252010-02-08 16:47:04 +0100183 dbg->status_dir = debugfs_create_dir("status", hdev->debugfs);
Andy Shevchenko9da226c2013-04-23 12:53:46 +0300184 debugfs_create_u8("curpsmode", 0444, dbg->status_dir,
185 &priv->adapter->psmode);
186 debugfs_create_u8("psstate", 0444, dbg->status_dir,
187 &priv->adapter->ps_state);
188 debugfs_create_u8("hsstate", 0444, dbg->status_dir,
189 &priv->adapter->hs_state);
190 debugfs_create_u8("txdnldready", 0444, dbg->status_dir,
191 &priv->btmrvl_dev.tx_dnld_rdy);
Bing Zhaofb784f02009-06-02 14:29:37 -0700192}
193
194void btmrvl_debugfs_remove(struct hci_dev *hdev)
195{
David Herrmann155961e2012-02-09 21:58:32 +0100196 struct btmrvl_private *priv = hci_get_drvdata(hdev);
Bing Zhaofb784f02009-06-02 14:29:37 -0700197 struct btmrvl_debugfs_data *dbg = priv->debugfs_data;
198
199 if (!dbg)
200 return;
201
Andy Shevchenko9da226c2013-04-23 12:53:46 +0300202 debugfs_remove_recursive(dbg->config_dir);
203 debugfs_remove_recursive(dbg->status_dir);
Bing Zhaofb784f02009-06-02 14:29:37 -0700204
Bing Zhaofb784f02009-06-02 14:29:37 -0700205 kfree(dbg);
206}