blob: ec03ee2b301e2c674df8b3b342c7e448fb0b7acf [file] [log] [blame]
Linus Torvalds1da177e2005-04-16 15:20:36 -07001/* Bluetooth HCI driver model support. */
2
Linus Torvalds1da177e2005-04-16 15:20:36 -07003#include <linux/kernel.h>
Tejun Heo5a0e3ad2010-03-24 17:04:11 +09004#include <linux/slab.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -07005#include <linux/init.h>
Marcel Holtmannca325f62010-02-08 16:22:31 +01006#include <linux/debugfs.h>
Marcel Holtmannd4612cb2010-03-02 15:48:23 +00007#include <linux/seq_file.h>
Paul Gortmaker3a9a2312011-05-27 09:12:25 -04008#include <linux/module.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -07009
10#include <net/bluetooth/bluetooth.h>
11#include <net/bluetooth/hci_core.h>
12
Marcel Holtmannaef7d972010-03-21 05:27:45 +010013static struct class *bt_class;
Marcel Holtmann90855d72008-08-18 13:23:53 +020014
Gustavo F. Padovan602f9882011-02-17 19:22:19 -030015struct dentry *bt_debugfs;
Marcel Holtmannca325f62010-02-08 16:22:31 +010016EXPORT_SYMBOL_GPL(bt_debugfs);
17
Marcel Holtmann90855d72008-08-18 13:23:53 +020018static inline char *link_typetostr(int type)
19{
20 switch (type) {
21 case ACL_LINK:
22 return "ACL";
23 case SCO_LINK:
24 return "SCO";
25 case ESCO_LINK:
26 return "eSCO";
Peter Hurley21061df2011-08-24 10:04:56 -040027 case LE_LINK:
28 return "LE";
Marcel Holtmann90855d72008-08-18 13:23:53 +020029 default:
30 return "UNKNOWN";
31 }
32}
33
34static ssize_t show_link_type(struct device *dev, struct device_attribute *attr, char *buf)
35{
36 struct hci_conn *conn = dev_get_drvdata(dev);
37 return sprintf(buf, "%s\n", link_typetostr(conn->type));
38}
39
40static ssize_t show_link_address(struct device *dev, struct device_attribute *attr, char *buf)
41{
42 struct hci_conn *conn = dev_get_drvdata(dev);
Gustavo F. Padovand6b2eb22010-09-03 18:29:46 -030043 return sprintf(buf, "%s\n", batostr(&conn->dst));
Marcel Holtmann90855d72008-08-18 13:23:53 +020044}
45
46static ssize_t show_link_features(struct device *dev, struct device_attribute *attr, char *buf)
47{
48 struct hci_conn *conn = dev_get_drvdata(dev);
49
50 return sprintf(buf, "0x%02x%02x%02x%02x%02x%02x%02x%02x\n",
51 conn->features[0], conn->features[1],
52 conn->features[2], conn->features[3],
53 conn->features[4], conn->features[5],
54 conn->features[6], conn->features[7]);
55}
56
Gustavo F. Padovan602f9882011-02-17 19:22:19 -030057#define LINK_ATTR(_name, _mode, _show, _store) \
58struct device_attribute link_attr_##_name = __ATTR(_name, _mode, _show, _store)
Marcel Holtmann90855d72008-08-18 13:23:53 +020059
60static LINK_ATTR(type, S_IRUGO, show_link_type, NULL);
61static LINK_ATTR(address, S_IRUGO, show_link_address, NULL);
62static LINK_ATTR(features, S_IRUGO, show_link_features, NULL);
63
64static struct attribute *bt_link_attrs[] = {
65 &link_attr_type.attr,
66 &link_attr_address.attr,
67 &link_attr_features.attr,
68 NULL
69};
70
71static struct attribute_group bt_link_group = {
72 .attrs = bt_link_attrs,
73};
74
David Brownella4dbd672009-06-24 10:06:31 -070075static const struct attribute_group *bt_link_groups[] = {
Marcel Holtmann90855d72008-08-18 13:23:53 +020076 &bt_link_group,
77 NULL
78};
79
80static void bt_link_release(struct device *dev)
81{
82 void *data = dev_get_drvdata(dev);
83 kfree(data);
84}
85
86static struct device_type bt_link = {
87 .name = "link",
88 .groups = bt_link_groups,
89 .release = bt_link_release,
90};
91
Gustavo F. Padovan6d438e32011-12-17 18:53:02 -020092/*
93 * The rfcomm tty device will possibly retain even when conn
94 * is down, and sysfs doesn't support move zombie device,
95 * so we should move the device before conn device is destroyed.
96 */
97static int __match_tty(struct device *dev, void *data)
Marcel Holtmann90855d72008-08-18 13:23:53 +020098{
Gustavo F. Padovan6d438e32011-12-17 18:53:02 -020099 return !strncmp(dev_name(dev), "rfcomm", 6);
100}
101
102void hci_conn_init_sysfs(struct hci_conn *conn)
103{
Marcel Holtmann457ca7b2009-05-05 13:09:01 -0700104 struct hci_dev *hdev = conn->hdev;
Marcel Holtmann90855d72008-08-18 13:23:53 +0200105
Gustavo F. Padovan6d438e32011-12-17 18:53:02 -0200106 BT_DBG("conn %p", conn);
107
108 conn->dev.type = &bt_link;
109 conn->dev.class = bt_class;
110 conn->dev.parent = &hdev->dev;
111
112 device_initialize(&conn->dev);
113}
114
115void hci_conn_add_sysfs(struct hci_conn *conn)
116{
117 struct hci_dev *hdev = conn->hdev;
118
119 BT_DBG("conn %p", conn);
120
Marcel Holtmann457ca7b2009-05-05 13:09:01 -0700121 dev_set_name(&conn->dev, "%s:%d", hdev->name, conn->handle);
122
Dave Youngf74c77c2009-10-18 20:24:41 +0000123 dev_set_drvdata(&conn->dev, conn);
124
Marcel Holtmann90855d72008-08-18 13:23:53 +0200125 if (device_add(&conn->dev) < 0) {
126 BT_ERR("Failed to register connection device");
127 return;
128 }
Marcel Holtmann384943e2009-05-08 18:20:43 -0700129
130 hci_dev_hold(hdev);
Marcel Holtmann90855d72008-08-18 13:23:53 +0200131}
132
Gustavo F. Padovan6d438e32011-12-17 18:53:02 -0200133void hci_conn_del_sysfs(struct hci_conn *conn)
Marcel Holtmann90855d72008-08-18 13:23:53 +0200134{
Marcel Holtmann90855d72008-08-18 13:23:53 +0200135 struct hci_dev *hdev = conn->hdev;
136
Marcel Holtmanna67e8992009-05-02 18:24:06 -0700137 if (!device_is_registered(&conn->dev))
138 return;
Roger Quadrosf3784d82009-04-23 14:50:54 +0300139
Marcel Holtmann90855d72008-08-18 13:23:53 +0200140 while (1) {
141 struct device *dev;
142
143 dev = device_find_child(&conn->dev, NULL, __match_tty);
144 if (!dev)
145 break;
Cornelia Huckffa6a702009-03-04 12:44:00 +0100146 device_move(dev, NULL, DPM_ORDER_DEV_LAST);
Marcel Holtmann90855d72008-08-18 13:23:53 +0200147 put_device(dev);
148 }
149
150 device_del(&conn->dev);
151 put_device(&conn->dev);
Marcel Holtmann384943e2009-05-08 18:20:43 -0700152
Marcel Holtmann90855d72008-08-18 13:23:53 +0200153 hci_dev_put(hdev);
154}
155
Marcel Holtmannc13854c2010-02-08 15:27:07 +0100156static inline char *host_bustostr(int bus)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700157{
Marcel Holtmannc13854c2010-02-08 15:27:07 +0100158 switch (bus) {
Marcel Holtmann0ac53932006-07-08 13:57:15 +0200159 case HCI_VIRTUAL:
Marcel Holtmann4d0eb002006-07-06 12:34:41 +0200160 return "VIRTUAL";
161 case HCI_USB:
162 return "USB";
163 case HCI_PCCARD:
164 return "PCCARD";
165 case HCI_UART:
166 return "UART";
167 case HCI_RS232:
168 return "RS232";
169 case HCI_PCI:
170 return "PCI";
Marcel Holtmann0ac53932006-07-08 13:57:15 +0200171 case HCI_SDIO:
172 return "SDIO";
Marcel Holtmann4d0eb002006-07-06 12:34:41 +0200173 default:
174 return "UNKNOWN";
175 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700176}
177
Marcel Holtmann943da252010-02-13 02:28:41 +0100178static inline char *host_typetostr(int type)
179{
180 switch (type) {
181 case HCI_BREDR:
182 return "BR/EDR";
David Vrabel8f1e1742010-08-09 17:38:10 -0400183 case HCI_AMP:
184 return "AMP";
Marcel Holtmann943da252010-02-13 02:28:41 +0100185 default:
186 return "UNKNOWN";
187 }
188}
189
Marcel Holtmannc13854c2010-02-08 15:27:07 +0100190static ssize_t show_bus(struct device *dev, struct device_attribute *attr, char *buf)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700191{
Marcel Holtmanna91f2e32006-07-03 10:02:41 +0200192 struct hci_dev *hdev = dev_get_drvdata(dev);
Marcel Holtmannc13854c2010-02-08 15:27:07 +0100193 return sprintf(buf, "%s\n", host_bustostr(hdev->bus));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700194}
195
Marcel Holtmann943da252010-02-13 02:28:41 +0100196static ssize_t show_type(struct device *dev, struct device_attribute *attr, char *buf)
197{
198 struct hci_dev *hdev = dev_get_drvdata(dev);
199 return sprintf(buf, "%s\n", host_typetostr(hdev->dev_type));
200}
201
Marcel Holtmanna9de9242007-10-20 13:33:56 +0200202static ssize_t show_name(struct device *dev, struct device_attribute *attr, char *buf)
203{
204 struct hci_dev *hdev = dev_get_drvdata(dev);
Johan Hedberg1f6c6372011-03-16 14:29:35 +0200205 char name[HCI_MAX_NAME_LENGTH + 1];
Marcel Holtmanna9de9242007-10-20 13:33:56 +0200206 int i;
207
Johan Hedberg1f6c6372011-03-16 14:29:35 +0200208 for (i = 0; i < HCI_MAX_NAME_LENGTH; i++)
Marcel Holtmanna9de9242007-10-20 13:33:56 +0200209 name[i] = hdev->dev_name[i];
210
Johan Hedberg1f6c6372011-03-16 14:29:35 +0200211 name[HCI_MAX_NAME_LENGTH] = '\0';
Marcel Holtmanna9de9242007-10-20 13:33:56 +0200212 return sprintf(buf, "%s\n", name);
213}
214
215static ssize_t show_class(struct device *dev, struct device_attribute *attr, char *buf)
216{
217 struct hci_dev *hdev = dev_get_drvdata(dev);
218 return sprintf(buf, "0x%.2x%.2x%.2x\n",
219 hdev->dev_class[2], hdev->dev_class[1], hdev->dev_class[0]);
220}
221
Marcel Holtmanna91f2e32006-07-03 10:02:41 +0200222static ssize_t show_address(struct device *dev, struct device_attribute *attr, char *buf)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700223{
Marcel Holtmanna91f2e32006-07-03 10:02:41 +0200224 struct hci_dev *hdev = dev_get_drvdata(dev);
Gustavo F. Padovand6b2eb22010-09-03 18:29:46 -0300225 return sprintf(buf, "%s\n", batostr(&hdev->bdaddr));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700226}
227
Marcel Holtmanna9de9242007-10-20 13:33:56 +0200228static ssize_t show_features(struct device *dev, struct device_attribute *attr, char *buf)
229{
230 struct hci_dev *hdev = dev_get_drvdata(dev);
231
232 return sprintf(buf, "0x%02x%02x%02x%02x%02x%02x%02x%02x\n",
233 hdev->features[0], hdev->features[1],
234 hdev->features[2], hdev->features[3],
235 hdev->features[4], hdev->features[5],
236 hdev->features[6], hdev->features[7]);
237}
238
Marcel Holtmann1143e5a2006-09-23 09:57:20 +0200239static ssize_t show_manufacturer(struct device *dev, struct device_attribute *attr, char *buf)
240{
241 struct hci_dev *hdev = dev_get_drvdata(dev);
242 return sprintf(buf, "%d\n", hdev->manufacturer);
243}
244
245static ssize_t show_hci_version(struct device *dev, struct device_attribute *attr, char *buf)
246{
247 struct hci_dev *hdev = dev_get_drvdata(dev);
248 return sprintf(buf, "%d\n", hdev->hci_ver);
249}
250
251static ssize_t show_hci_revision(struct device *dev, struct device_attribute *attr, char *buf)
252{
253 struct hci_dev *hdev = dev_get_drvdata(dev);
254 return sprintf(buf, "%d\n", hdev->hci_rev);
255}
256
Marcel Holtmanna91f2e32006-07-03 10:02:41 +0200257static ssize_t show_idle_timeout(struct device *dev, struct device_attribute *attr, char *buf)
Marcel Holtmann04837f62006-07-03 10:02:33 +0200258{
Marcel Holtmanna91f2e32006-07-03 10:02:41 +0200259 struct hci_dev *hdev = dev_get_drvdata(dev);
Marcel Holtmann04837f62006-07-03 10:02:33 +0200260 return sprintf(buf, "%d\n", hdev->idle_timeout);
261}
262
Marcel Holtmanna91f2e32006-07-03 10:02:41 +0200263static ssize_t store_idle_timeout(struct device *dev, struct device_attribute *attr, const char *buf, size_t count)
Marcel Holtmann04837f62006-07-03 10:02:33 +0200264{
Marcel Holtmanna91f2e32006-07-03 10:02:41 +0200265 struct hci_dev *hdev = dev_get_drvdata(dev);
Alexey Dobriyandb940cb2011-04-02 14:19:41 +0300266 unsigned int val;
267 int rv;
Marcel Holtmann04837f62006-07-03 10:02:33 +0200268
Alexey Dobriyandb940cb2011-04-02 14:19:41 +0300269 rv = kstrtouint(buf, 0, &val);
270 if (rv < 0)
271 return rv;
Marcel Holtmann04837f62006-07-03 10:02:33 +0200272
273 if (val != 0 && (val < 500 || val > 3600000))
274 return -EINVAL;
275
276 hdev->idle_timeout = val;
277
278 return count;
279}
280
Marcel Holtmanna91f2e32006-07-03 10:02:41 +0200281static ssize_t show_sniff_max_interval(struct device *dev, struct device_attribute *attr, char *buf)
Marcel Holtmann04837f62006-07-03 10:02:33 +0200282{
Marcel Holtmanna91f2e32006-07-03 10:02:41 +0200283 struct hci_dev *hdev = dev_get_drvdata(dev);
Marcel Holtmann04837f62006-07-03 10:02:33 +0200284 return sprintf(buf, "%d\n", hdev->sniff_max_interval);
285}
286
Marcel Holtmanna91f2e32006-07-03 10:02:41 +0200287static ssize_t store_sniff_max_interval(struct device *dev, struct device_attribute *attr, const char *buf, size_t count)
Marcel Holtmann04837f62006-07-03 10:02:33 +0200288{
Marcel Holtmanna91f2e32006-07-03 10:02:41 +0200289 struct hci_dev *hdev = dev_get_drvdata(dev);
Alexey Dobriyandb940cb2011-04-02 14:19:41 +0300290 u16 val;
291 int rv;
Marcel Holtmann04837f62006-07-03 10:02:33 +0200292
Alexey Dobriyandb940cb2011-04-02 14:19:41 +0300293 rv = kstrtou16(buf, 0, &val);
294 if (rv < 0)
295 return rv;
Marcel Holtmann04837f62006-07-03 10:02:33 +0200296
Alexey Dobriyandb940cb2011-04-02 14:19:41 +0300297 if (val == 0 || val % 2 || val < hdev->sniff_min_interval)
Marcel Holtmann04837f62006-07-03 10:02:33 +0200298 return -EINVAL;
299
300 hdev->sniff_max_interval = val;
301
302 return count;
303}
304
Marcel Holtmanna91f2e32006-07-03 10:02:41 +0200305static ssize_t show_sniff_min_interval(struct device *dev, struct device_attribute *attr, char *buf)
Marcel Holtmann04837f62006-07-03 10:02:33 +0200306{
Marcel Holtmanna91f2e32006-07-03 10:02:41 +0200307 struct hci_dev *hdev = dev_get_drvdata(dev);
Marcel Holtmann04837f62006-07-03 10:02:33 +0200308 return sprintf(buf, "%d\n", hdev->sniff_min_interval);
309}
310
Marcel Holtmanna91f2e32006-07-03 10:02:41 +0200311static ssize_t store_sniff_min_interval(struct device *dev, struct device_attribute *attr, const char *buf, size_t count)
Marcel Holtmann04837f62006-07-03 10:02:33 +0200312{
Marcel Holtmanna91f2e32006-07-03 10:02:41 +0200313 struct hci_dev *hdev = dev_get_drvdata(dev);
Alexey Dobriyandb940cb2011-04-02 14:19:41 +0300314 u16 val;
315 int rv;
Marcel Holtmann04837f62006-07-03 10:02:33 +0200316
Alexey Dobriyandb940cb2011-04-02 14:19:41 +0300317 rv = kstrtou16(buf, 0, &val);
318 if (rv < 0)
319 return rv;
Marcel Holtmann04837f62006-07-03 10:02:33 +0200320
Alexey Dobriyandb940cb2011-04-02 14:19:41 +0300321 if (val == 0 || val % 2 || val > hdev->sniff_max_interval)
Marcel Holtmann04837f62006-07-03 10:02:33 +0200322 return -EINVAL;
323
324 hdev->sniff_min_interval = val;
325
326 return count;
327}
328
Marcel Holtmannc13854c2010-02-08 15:27:07 +0100329static DEVICE_ATTR(bus, S_IRUGO, show_bus, NULL);
Marcel Holtmann943da252010-02-13 02:28:41 +0100330static DEVICE_ATTR(type, S_IRUGO, show_type, NULL);
Marcel Holtmanna9de9242007-10-20 13:33:56 +0200331static DEVICE_ATTR(name, S_IRUGO, show_name, NULL);
332static DEVICE_ATTR(class, S_IRUGO, show_class, NULL);
Marcel Holtmanna91f2e32006-07-03 10:02:41 +0200333static DEVICE_ATTR(address, S_IRUGO, show_address, NULL);
Marcel Holtmanna9de9242007-10-20 13:33:56 +0200334static DEVICE_ATTR(features, S_IRUGO, show_features, NULL);
Marcel Holtmann1143e5a2006-09-23 09:57:20 +0200335static DEVICE_ATTR(manufacturer, S_IRUGO, show_manufacturer, NULL);
336static DEVICE_ATTR(hci_version, S_IRUGO, show_hci_version, NULL);
337static DEVICE_ATTR(hci_revision, S_IRUGO, show_hci_revision, NULL);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700338
Marcel Holtmanna91f2e32006-07-03 10:02:41 +0200339static DEVICE_ATTR(idle_timeout, S_IRUGO | S_IWUSR,
Marcel Holtmann04837f62006-07-03 10:02:33 +0200340 show_idle_timeout, store_idle_timeout);
Marcel Holtmanna91f2e32006-07-03 10:02:41 +0200341static DEVICE_ATTR(sniff_max_interval, S_IRUGO | S_IWUSR,
Marcel Holtmann04837f62006-07-03 10:02:33 +0200342 show_sniff_max_interval, store_sniff_max_interval);
Marcel Holtmanna91f2e32006-07-03 10:02:41 +0200343static DEVICE_ATTR(sniff_min_interval, S_IRUGO | S_IWUSR,
Marcel Holtmann04837f62006-07-03 10:02:33 +0200344 show_sniff_min_interval, store_sniff_min_interval);
345
Marcel Holtmann90855d72008-08-18 13:23:53 +0200346static struct attribute *bt_host_attrs[] = {
Marcel Holtmannc13854c2010-02-08 15:27:07 +0100347 &dev_attr_bus.attr,
Marcel Holtmann943da252010-02-13 02:28:41 +0100348 &dev_attr_type.attr,
Marcel Holtmann90855d72008-08-18 13:23:53 +0200349 &dev_attr_name.attr,
350 &dev_attr_class.attr,
351 &dev_attr_address.attr,
352 &dev_attr_features.attr,
353 &dev_attr_manufacturer.attr,
354 &dev_attr_hci_version.attr,
355 &dev_attr_hci_revision.attr,
Marcel Holtmann90855d72008-08-18 13:23:53 +0200356 &dev_attr_idle_timeout.attr,
357 &dev_attr_sniff_max_interval.attr,
358 &dev_attr_sniff_min_interval.attr,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700359 NULL
360};
361
Marcel Holtmann90855d72008-08-18 13:23:53 +0200362static struct attribute_group bt_host_group = {
363 .attrs = bt_host_attrs,
364};
Marcel Holtmannb219e3a2006-07-06 12:38:46 +0200365
David Brownella4dbd672009-06-24 10:06:31 -0700366static const struct attribute_group *bt_host_groups[] = {
Marcel Holtmann90855d72008-08-18 13:23:53 +0200367 &bt_host_group,
Marcel Holtmannb219e3a2006-07-06 12:38:46 +0200368 NULL
369};
370
Marcel Holtmann90855d72008-08-18 13:23:53 +0200371static void bt_host_release(struct device *dev)
Marcel Holtmanna91f2e32006-07-03 10:02:41 +0200372{
Marcel Holtmannb219e3a2006-07-06 12:38:46 +0200373 void *data = dev_get_drvdata(dev);
374 kfree(data);
David Herrmann46e06532012-01-07 15:47:21 +0100375 module_put(THIS_MODULE);
Marcel Holtmannb219e3a2006-07-06 12:38:46 +0200376}
377
Marcel Holtmann90855d72008-08-18 13:23:53 +0200378static struct device_type bt_host = {
379 .name = "host",
380 .groups = bt_host_groups,
381 .release = bt_host_release,
382};
Marcel Holtmanna91f2e32006-07-03 10:02:41 +0200383
Marcel Holtmannd4612cb2010-03-02 15:48:23 +0000384static int inquiry_cache_show(struct seq_file *f, void *p)
Marcel Holtmannca325f62010-02-08 16:22:31 +0100385{
Marcel Holtmannd4612cb2010-03-02 15:48:23 +0000386 struct hci_dev *hdev = f->private;
Johan Hedberg30883512012-01-04 14:16:21 +0200387 struct discovery_state *cache = &hdev->discovery;
Marcel Holtmannca325f62010-02-08 16:22:31 +0100388 struct inquiry_entry *e;
Marcel Holtmannca325f62010-02-08 16:22:31 +0100389
Gustavo F. Padovan09fd0de2011-06-17 13:03:21 -0300390 hci_dev_lock(hdev);
Marcel Holtmannca325f62010-02-08 16:22:31 +0100391
Johan Hedberg561aafb2012-01-04 13:31:59 +0200392 list_for_each_entry(e, &cache->all, all) {
Marcel Holtmannca325f62010-02-08 16:22:31 +0100393 struct inquiry_data *data = &e->data;
Marcel Holtmannd4612cb2010-03-02 15:48:23 +0000394 seq_printf(f, "%s %d %d %d 0x%.2x%.2x%.2x 0x%.4x %d %d %u\n",
Gustavo F. Padovand6b2eb22010-09-03 18:29:46 -0300395 batostr(&data->bdaddr),
Marcel Holtmannd4612cb2010-03-02 15:48:23 +0000396 data->pscan_rep_mode, data->pscan_period_mode,
397 data->pscan_mode, data->dev_class[2],
398 data->dev_class[1], data->dev_class[0],
399 __le16_to_cpu(data->clock_offset),
400 data->rssi, data->ssp_mode, e->timestamp);
Marcel Holtmannca325f62010-02-08 16:22:31 +0100401 }
402
Gustavo F. Padovan09fd0de2011-06-17 13:03:21 -0300403 hci_dev_unlock(hdev);
Marcel Holtmannca325f62010-02-08 16:22:31 +0100404
Marcel Holtmannd4612cb2010-03-02 15:48:23 +0000405 return 0;
406}
407
408static int inquiry_cache_open(struct inode *inode, struct file *file)
409{
410 return single_open(file, inquiry_cache_show, inode->i_private);
Marcel Holtmannca325f62010-02-08 16:22:31 +0100411}
412
413static const struct file_operations inquiry_cache_fops = {
Marcel Holtmannd4612cb2010-03-02 15:48:23 +0000414 .open = inquiry_cache_open,
415 .read = seq_read,
416 .llseek = seq_lseek,
417 .release = single_release,
Marcel Holtmannca325f62010-02-08 16:22:31 +0100418};
419
Johan Hedberg32c2ece2010-05-18 13:54:49 +0200420static int blacklist_show(struct seq_file *f, void *p)
421{
422 struct hci_dev *hdev = f->private;
Luiz Augusto von Dentz8035ded2011-11-01 10:58:56 +0200423 struct bdaddr_list *b;
Johan Hedberg32c2ece2010-05-18 13:54:49 +0200424
Gustavo F. Padovan09fd0de2011-06-17 13:03:21 -0300425 hci_dev_lock(hdev);
Johan Hedberg32c2ece2010-05-18 13:54:49 +0200426
Luiz Augusto von Dentz8035ded2011-11-01 10:58:56 +0200427 list_for_each_entry(b, &hdev->blacklist, list)
Gustavo F. Padovand6b2eb22010-09-03 18:29:46 -0300428 seq_printf(f, "%s\n", batostr(&b->bdaddr));
Johan Hedberg32c2ece2010-05-18 13:54:49 +0200429
Gustavo F. Padovan09fd0de2011-06-17 13:03:21 -0300430 hci_dev_unlock(hdev);
Johan Hedberg32c2ece2010-05-18 13:54:49 +0200431
432 return 0;
433}
434
435static int blacklist_open(struct inode *inode, struct file *file)
436{
437 return single_open(file, blacklist_show, inode->i_private);
438}
439
440static const struct file_operations blacklist_fops = {
441 .open = blacklist_open,
442 .read = seq_read,
443 .llseek = seq_lseek,
444 .release = single_release,
445};
Johan Hedberg930e1332011-01-04 11:39:44 +0200446
447static void print_bt_uuid(struct seq_file *f, u8 *uuid)
448{
449 u32 data0, data4;
450 u16 data1, data2, data3, data5;
451
452 memcpy(&data0, &uuid[0], 4);
453 memcpy(&data1, &uuid[4], 2);
454 memcpy(&data2, &uuid[6], 2);
455 memcpy(&data3, &uuid[8], 2);
456 memcpy(&data4, &uuid[10], 4);
457 memcpy(&data5, &uuid[14], 2);
458
459 seq_printf(f, "%.8x-%.4x-%.4x-%.4x-%.8x%.4x\n",
460 ntohl(data0), ntohs(data1), ntohs(data2),
461 ntohs(data3), ntohl(data4), ntohs(data5));
462}
463
464static int uuids_show(struct seq_file *f, void *p)
465{
466 struct hci_dev *hdev = f->private;
Luiz Augusto von Dentz8035ded2011-11-01 10:58:56 +0200467 struct bt_uuid *uuid;
Johan Hedberg930e1332011-01-04 11:39:44 +0200468
Gustavo F. Padovan09fd0de2011-06-17 13:03:21 -0300469 hci_dev_lock(hdev);
Johan Hedberg930e1332011-01-04 11:39:44 +0200470
Luiz Augusto von Dentz8035ded2011-11-01 10:58:56 +0200471 list_for_each_entry(uuid, &hdev->uuids, list)
Johan Hedberg930e1332011-01-04 11:39:44 +0200472 print_bt_uuid(f, uuid->uuid);
Johan Hedberg930e1332011-01-04 11:39:44 +0200473
Gustavo F. Padovan09fd0de2011-06-17 13:03:21 -0300474 hci_dev_unlock(hdev);
Johan Hedberg930e1332011-01-04 11:39:44 +0200475
476 return 0;
477}
478
479static int uuids_open(struct inode *inode, struct file *file)
480{
481 return single_open(file, uuids_show, inode->i_private);
482}
483
484static const struct file_operations uuids_fops = {
485 .open = uuids_open,
486 .read = seq_read,
487 .llseek = seq_lseek,
488 .release = single_release,
489};
490
Johan Hedberg9f616562011-04-28 11:28:54 -0700491static int auto_accept_delay_set(void *data, u64 val)
492{
493 struct hci_dev *hdev = data;
494
Gustavo F. Padovan09fd0de2011-06-17 13:03:21 -0300495 hci_dev_lock(hdev);
Johan Hedberg9f616562011-04-28 11:28:54 -0700496
497 hdev->auto_accept_delay = val;
498
Gustavo F. Padovan09fd0de2011-06-17 13:03:21 -0300499 hci_dev_unlock(hdev);
Johan Hedberg9f616562011-04-28 11:28:54 -0700500
501 return 0;
502}
503
504static int auto_accept_delay_get(void *data, u64 *val)
505{
506 struct hci_dev *hdev = data;
507
Gustavo F. Padovan09fd0de2011-06-17 13:03:21 -0300508 hci_dev_lock(hdev);
Johan Hedberg9f616562011-04-28 11:28:54 -0700509
510 *val = hdev->auto_accept_delay;
511
Gustavo F. Padovan09fd0de2011-06-17 13:03:21 -0300512 hci_dev_unlock(hdev);
Johan Hedberg9f616562011-04-28 11:28:54 -0700513
514 return 0;
515}
516
517DEFINE_SIMPLE_ATTRIBUTE(auto_accept_delay_fops, auto_accept_delay_get,
518 auto_accept_delay_set, "%llu\n");
519
David Herrmann0ac7e702011-10-08 14:58:47 +0200520void hci_init_sysfs(struct hci_dev *hdev)
521{
522 struct device *dev = &hdev->dev;
523
524 dev->type = &bt_host;
525 dev->class = bt_class;
526
David Herrmann46e06532012-01-07 15:47:21 +0100527 __module_get(THIS_MODULE);
David Herrmann0ac7e702011-10-08 14:58:47 +0200528 dev_set_drvdata(dev, hdev);
529 device_initialize(dev);
530}
531
David Herrmannce242972011-10-08 14:58:48 +0200532int hci_add_sysfs(struct hci_dev *hdev)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700533{
Marcel Holtmanna91f2e32006-07-03 10:02:41 +0200534 struct device *dev = &hdev->dev;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700535 int err;
536
Marcel Holtmannc13854c2010-02-08 15:27:07 +0100537 BT_DBG("%p name %s bus %d", hdev, hdev->name, hdev->bus);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700538
Marcel Holtmanne9c4bec2006-10-15 17:30:50 +0200539 dev->parent = hdev->parent;
Marcel Holtmann2e792992008-11-30 12:17:29 +0100540 dev_set_name(dev, "%s", hdev->name);
Marcel Holtmann27d35282006-07-03 10:02:37 +0200541
David Herrmann0ac7e702011-10-08 14:58:47 +0200542 err = device_add(dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700543 if (err < 0)
544 return err;
545
Marcel Holtmannca325f62010-02-08 16:22:31 +0100546 if (!bt_debugfs)
547 return 0;
548
549 hdev->debugfs = debugfs_create_dir(hdev->name, bt_debugfs);
550 if (!hdev->debugfs)
551 return 0;
552
553 debugfs_create_file("inquiry_cache", 0444, hdev->debugfs,
554 hdev, &inquiry_cache_fops);
555
Johan Hedberg32c2ece2010-05-18 13:54:49 +0200556 debugfs_create_file("blacklist", 0444, hdev->debugfs,
557 hdev, &blacklist_fops);
558
Johan Hedberg930e1332011-01-04 11:39:44 +0200559 debugfs_create_file("uuids", 0444, hdev->debugfs, hdev, &uuids_fops);
560
Johan Hedberg9f616562011-04-28 11:28:54 -0700561 debugfs_create_file("auto_accept_delay", 0444, hdev->debugfs, hdev,
562 &auto_accept_delay_fops);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700563 return 0;
564}
565
David Herrmannce242972011-10-08 14:58:48 +0200566void hci_del_sysfs(struct hci_dev *hdev)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700567{
Marcel Holtmannc13854c2010-02-08 15:27:07 +0100568 BT_DBG("%p name %s bus %d", hdev, hdev->name, hdev->bus);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700569
Marcel Holtmannca325f62010-02-08 16:22:31 +0100570 debugfs_remove_recursive(hdev->debugfs);
571
Marcel Holtmann4d0eb002006-07-06 12:34:41 +0200572 device_del(&hdev->dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700573}
574
575int __init bt_sysfs_init(void)
576{
Marcel Holtmannca325f62010-02-08 16:22:31 +0100577 bt_debugfs = debugfs_create_dir("bluetooth", NULL);
578
Marcel Holtmanna91f2e32006-07-03 10:02:41 +0200579 bt_class = class_create(THIS_MODULE, "bluetooth");
Marcel Holtmannf48fd9c2010-03-20 15:20:04 +0100580 if (IS_ERR(bt_class))
Marcel Holtmann90855d72008-08-18 13:23:53 +0200581 return PTR_ERR(bt_class);
Marcel Holtmann27d35282006-07-03 10:02:37 +0200582
583 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700584}
585
Arnaud Patard860e13b2006-09-28 15:29:37 -0700586void bt_sysfs_cleanup(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700587{
Marcel Holtmanna91f2e32006-07-03 10:02:41 +0200588 class_destroy(bt_class);
Marcel Holtmannca325f62010-02-08 16:22:31 +0100589
590 debugfs_remove_recursive(bt_debugfs);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700591}