blob: 1828ed8cae7a32119cba96b51c55c921bdea71d1 [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;
Bing Zhaofb784f02009-06-02 14:29:37 -070038 char buf[16];
Marcel Holtmann54239902009-06-09 15:48:35 +020039 long result, ret;
Bing Zhaofb784f02009-06-02 14:29:37 -070040
41 memset(buf, 0, sizeof(buf));
42
Marcel Holtmann54239902009-06-09 15:48:35 +020043 if (copy_from_user(&buf, ubuf, min_t(size_t, sizeof(buf) - 1, count)))
Bing Zhaofb784f02009-06-02 14:29:37 -070044 return -EFAULT;
45
Jingoo Han473c1312013-07-19 16:09:38 +090046 ret = kstrtol(buf, 10, &result);
David Miller26e7acf2011-05-19 17:37:45 -040047 if (ret)
48 return ret;
Bing Zhaofb784f02009-06-02 14:29:37 -070049
50 priv->btmrvl_dev.hscfgcmd = result;
51
52 if (priv->btmrvl_dev.hscfgcmd) {
53 btmrvl_prepare_command(priv);
54 wake_up_interruptible(&priv->main_thread.wait_q);
55 }
56
57 return count;
58}
59
Marcel Holtmann54239902009-06-09 15:48:35 +020060static ssize_t btmrvl_hscfgcmd_read(struct file *file, char __user *userbuf,
61 size_t count, loff_t *ppos)
Bing Zhaofb784f02009-06-02 14:29:37 -070062{
Marcel Holtmann54239902009-06-09 15:48:35 +020063 struct btmrvl_private *priv = file->private_data;
Bing Zhaofb784f02009-06-02 14:29:37 -070064 char buf[16];
Marcel Holtmann54239902009-06-09 15:48:35 +020065 int ret;
Bing Zhaofb784f02009-06-02 14:29:37 -070066
67 ret = snprintf(buf, sizeof(buf) - 1, "%d\n",
Marcel Holtmann54239902009-06-09 15:48:35 +020068 priv->btmrvl_dev.hscfgcmd);
Bing Zhaofb784f02009-06-02 14:29:37 -070069
70 return simple_read_from_buffer(userbuf, count, ppos, buf, ret);
71}
72
73static const struct file_operations btmrvl_hscfgcmd_fops = {
Marcel Holtmann54239902009-06-09 15:48:35 +020074 .read = btmrvl_hscfgcmd_read,
75 .write = btmrvl_hscfgcmd_write,
Stephen Boyd234e3402012-04-05 14:25:11 -070076 .open = simple_open,
Arnd Bergmann6038f372010-08-15 18:52:59 +020077 .llseek = default_llseek,
Bing Zhaofb784f02009-06-02 14:29:37 -070078};
79
Bing Zhaofb784f02009-06-02 14:29:37 -070080static ssize_t btmrvl_pscmd_write(struct file *file, const char __user *ubuf,
Marcel Holtmann54239902009-06-09 15:48:35 +020081 size_t count, loff_t *ppos)
Bing Zhaofb784f02009-06-02 14:29:37 -070082{
Marcel Holtmann54239902009-06-09 15:48:35 +020083 struct btmrvl_private *priv = file->private_data;
Bing Zhaofb784f02009-06-02 14:29:37 -070084 char buf[16];
Marcel Holtmann54239902009-06-09 15:48:35 +020085 long result, ret;
Bing Zhaofb784f02009-06-02 14:29:37 -070086
87 memset(buf, 0, sizeof(buf));
88
Marcel Holtmann54239902009-06-09 15:48:35 +020089 if (copy_from_user(&buf, ubuf, min_t(size_t, sizeof(buf) - 1, count)))
Bing Zhaofb784f02009-06-02 14:29:37 -070090 return -EFAULT;
91
Jingoo Han473c1312013-07-19 16:09:38 +090092 ret = kstrtol(buf, 10, &result);
David Miller26e7acf2011-05-19 17:37:45 -040093 if (ret)
94 return ret;
Bing Zhaofb784f02009-06-02 14:29:37 -070095
96 priv->btmrvl_dev.pscmd = result;
97
98 if (priv->btmrvl_dev.pscmd) {
99 btmrvl_prepare_command(priv);
100 wake_up_interruptible(&priv->main_thread.wait_q);
101 }
102
103 return count;
104
105}
106
Marcel Holtmann54239902009-06-09 15:48:35 +0200107static ssize_t btmrvl_pscmd_read(struct file *file, char __user *userbuf,
108 size_t count, loff_t *ppos)
Bing Zhaofb784f02009-06-02 14:29:37 -0700109{
Marcel Holtmann54239902009-06-09 15:48:35 +0200110 struct btmrvl_private *priv = file->private_data;
Bing Zhaofb784f02009-06-02 14:29:37 -0700111 char buf[16];
Marcel Holtmann54239902009-06-09 15:48:35 +0200112 int ret;
Bing Zhaofb784f02009-06-02 14:29:37 -0700113
114 ret = snprintf(buf, sizeof(buf) - 1, "%d\n", priv->btmrvl_dev.pscmd);
115
116 return simple_read_from_buffer(userbuf, count, ppos, buf, ret);
117}
118
119static const struct file_operations btmrvl_pscmd_fops = {
120 .read = btmrvl_pscmd_read,
121 .write = btmrvl_pscmd_write,
Stephen Boyd234e3402012-04-05 14:25:11 -0700122 .open = simple_open,
Arnd Bergmann6038f372010-08-15 18:52:59 +0200123 .llseek = default_llseek,
Bing Zhaofb784f02009-06-02 14:29:37 -0700124};
125
Bing Zhaofb784f02009-06-02 14:29:37 -0700126static ssize_t btmrvl_hscmd_write(struct file *file, const char __user *ubuf,
Marcel Holtmann54239902009-06-09 15:48:35 +0200127 size_t count, loff_t *ppos)
Bing Zhaofb784f02009-06-02 14:29:37 -0700128{
Joe Perchesbe60b942010-07-12 13:49:57 -0700129 struct btmrvl_private *priv = file->private_data;
Bing Zhaofb784f02009-06-02 14:29:37 -0700130 char buf[16];
Marcel Holtmann54239902009-06-09 15:48:35 +0200131 long result, ret;
Bing Zhaofb784f02009-06-02 14:29:37 -0700132
133 memset(buf, 0, sizeof(buf));
134
Marcel Holtmann54239902009-06-09 15:48:35 +0200135 if (copy_from_user(&buf, ubuf, min_t(size_t, sizeof(buf) - 1, count)))
Bing Zhaofb784f02009-06-02 14:29:37 -0700136 return -EFAULT;
137
Jingoo Han473c1312013-07-19 16:09:38 +0900138 ret = kstrtol(buf, 10, &result);
David Miller26e7acf2011-05-19 17:37:45 -0400139 if (ret)
140 return ret;
Bing Zhaofb784f02009-06-02 14:29:37 -0700141
142 priv->btmrvl_dev.hscmd = result;
143 if (priv->btmrvl_dev.hscmd) {
144 btmrvl_prepare_command(priv);
145 wake_up_interruptible(&priv->main_thread.wait_q);
146 }
147
148 return count;
149}
150
Marcel Holtmann54239902009-06-09 15:48:35 +0200151static ssize_t btmrvl_hscmd_read(struct file *file, char __user *userbuf,
152 size_t count, loff_t *ppos)
Bing Zhaofb784f02009-06-02 14:29:37 -0700153{
Marcel Holtmann54239902009-06-09 15:48:35 +0200154 struct btmrvl_private *priv = file->private_data;
Bing Zhaofb784f02009-06-02 14:29:37 -0700155 char buf[16];
Marcel Holtmann54239902009-06-09 15:48:35 +0200156 int ret;
Bing Zhaofb784f02009-06-02 14:29:37 -0700157
158 ret = snprintf(buf, sizeof(buf) - 1, "%d\n", priv->btmrvl_dev.hscmd);
159
160 return simple_read_from_buffer(userbuf, count, ppos, buf, ret);
161}
162
163static const struct file_operations btmrvl_hscmd_fops = {
Marcel Holtmann54239902009-06-09 15:48:35 +0200164 .read = btmrvl_hscmd_read,
165 .write = btmrvl_hscmd_write,
Stephen Boyd234e3402012-04-05 14:25:11 -0700166 .open = simple_open,
Arnd Bergmann6038f372010-08-15 18:52:59 +0200167 .llseek = default_llseek,
Bing Zhaofb784f02009-06-02 14:29:37 -0700168};
169
Xinming Hudc759612014-11-24 02:40:53 -0800170static ssize_t btmrvl_fwdump_write(struct file *file, const char __user *ubuf,
171 size_t count, loff_t *ppos)
172{
173 struct btmrvl_private *priv = file->private_data;
174 char buf[16];
175 bool result;
176
177 memset(buf, 0, sizeof(buf));
178
179 if (copy_from_user(&buf, ubuf, min_t(size_t, sizeof(buf) - 1, count)))
180 return -EFAULT;
181
182 if (strtobool(buf, &result))
183 return -EINVAL;
184
185 if (!result)
186 return -EINVAL;
187
188 btmrvl_firmware_dump(priv);
189
190 return count;
191}
192
193static const struct file_operations btmrvl_fwdump_fops = {
194 .write = btmrvl_fwdump_write,
195 .open = simple_open,
196 .llseek = default_llseek,
197};
198
Bing Zhaofb784f02009-06-02 14:29:37 -0700199void btmrvl_debugfs_init(struct hci_dev *hdev)
200{
David Herrmann155961e2012-02-09 21:58:32 +0100201 struct btmrvl_private *priv = hci_get_drvdata(hdev);
Bing Zhaofb784f02009-06-02 14:29:37 -0700202 struct btmrvl_debugfs_data *dbg;
203
Marcel Holtmannb914a252010-02-08 16:47:04 +0100204 if (!hdev->debugfs)
205 return;
206
Bing Zhaofb784f02009-06-02 14:29:37 -0700207 dbg = kzalloc(sizeof(*dbg), GFP_KERNEL);
208 priv->debugfs_data = dbg;
209
210 if (!dbg) {
211 BT_ERR("Can not allocate memory for btmrvl_debugfs_data.");
212 return;
213 }
214
Marcel Holtmannb914a252010-02-08 16:47:04 +0100215 dbg->config_dir = debugfs_create_dir("config", hdev->debugfs);
Bing Zhaofb784f02009-06-02 14:29:37 -0700216
Andy Shevchenko9da226c2013-04-23 12:53:46 +0300217 debugfs_create_u8("psmode", 0644, dbg->config_dir,
218 &priv->btmrvl_dev.psmode);
219 debugfs_create_file("pscmd", 0644, dbg->config_dir,
220 priv, &btmrvl_pscmd_fops);
221 debugfs_create_x16("gpiogap", 0644, dbg->config_dir,
222 &priv->btmrvl_dev.gpio_gap);
223 debugfs_create_u8("hsmode", 0644, dbg->config_dir,
224 &priv->btmrvl_dev.hsmode);
225 debugfs_create_file("hscmd", 0644, dbg->config_dir,
226 priv, &btmrvl_hscmd_fops);
227 debugfs_create_file("hscfgcmd", 0644, dbg->config_dir,
228 priv, &btmrvl_hscfgcmd_fops);
Xinming Hudc759612014-11-24 02:40:53 -0800229 debugfs_create_file("fw_dump", 0200, dbg->config_dir,
230 priv, &btmrvl_fwdump_fops);
Bing Zhaofb784f02009-06-02 14:29:37 -0700231
Marcel Holtmannb914a252010-02-08 16:47:04 +0100232 dbg->status_dir = debugfs_create_dir("status", hdev->debugfs);
Andy Shevchenko9da226c2013-04-23 12:53:46 +0300233 debugfs_create_u8("curpsmode", 0444, dbg->status_dir,
234 &priv->adapter->psmode);
235 debugfs_create_u8("psstate", 0444, dbg->status_dir,
236 &priv->adapter->ps_state);
237 debugfs_create_u8("hsstate", 0444, dbg->status_dir,
238 &priv->adapter->hs_state);
239 debugfs_create_u8("txdnldready", 0444, dbg->status_dir,
240 &priv->btmrvl_dev.tx_dnld_rdy);
Bing Zhaofb784f02009-06-02 14:29:37 -0700241}
242
243void btmrvl_debugfs_remove(struct hci_dev *hdev)
244{
David Herrmann155961e2012-02-09 21:58:32 +0100245 struct btmrvl_private *priv = hci_get_drvdata(hdev);
Bing Zhaofb784f02009-06-02 14:29:37 -0700246 struct btmrvl_debugfs_data *dbg = priv->debugfs_data;
247
248 if (!dbg)
249 return;
250
Andy Shevchenko9da226c2013-04-23 12:53:46 +0300251 debugfs_remove_recursive(dbg->config_dir);
252 debugfs_remove_recursive(dbg->status_dir);
Bing Zhaofb784f02009-06-02 14:29:37 -0700253
Bing Zhaofb784f02009-06-02 14:29:37 -0700254 kfree(dbg);
255}