blob: 23b4e242a31a9703cf27c206a1bc66cf8feb0c6b [file] [log] [blame]
Linus Torvalds1da177e2005-04-16 15:20:36 -07001/* Bluetooth HCI driver model support. */
2
Marcel Holtmannca325f62010-02-08 16:22:31 +01003#include <linux/debugfs.h>
Paul Gortmaker3a9a2312011-05-27 09:12:25 -04004#include <linux/module.h>
Gustavo Padovan52e0b012013-01-10 06:06:29 -02005#include <asm/unaligned.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -07006
7#include <net/bluetooth/bluetooth.h>
8#include <net/bluetooth/hci_core.h>
9
Marcel Holtmannaef7d972010-03-21 05:27:45 +010010static struct class *bt_class;
Marcel Holtmann90855d72008-08-18 13:23:53 +020011
Gustavo F. Padovan602f9882011-02-17 19:22:19 -030012struct dentry *bt_debugfs;
Marcel Holtmannca325f62010-02-08 16:22:31 +010013EXPORT_SYMBOL_GPL(bt_debugfs);
14
Marcel Holtmann90855d72008-08-18 13:23:53 +020015static inline char *link_typetostr(int type)
16{
17 switch (type) {
18 case ACL_LINK:
19 return "ACL";
20 case SCO_LINK:
21 return "SCO";
22 case ESCO_LINK:
23 return "eSCO";
Peter Hurley21061df2011-08-24 10:04:56 -040024 case LE_LINK:
25 return "LE";
Marcel Holtmann90855d72008-08-18 13:23:53 +020026 default:
27 return "UNKNOWN";
28 }
29}
30
Gustavo Padovanb80f0212012-05-17 00:36:23 -030031static ssize_t show_link_type(struct device *dev,
32 struct device_attribute *attr, char *buf)
Marcel Holtmann90855d72008-08-18 13:23:53 +020033{
David Herrmann3dc07322012-02-09 21:58:33 +010034 struct hci_conn *conn = to_hci_conn(dev);
Marcel Holtmann90855d72008-08-18 13:23:53 +020035 return sprintf(buf, "%s\n", link_typetostr(conn->type));
36}
37
Gustavo Padovanb80f0212012-05-17 00:36:23 -030038static ssize_t show_link_address(struct device *dev,
39 struct device_attribute *attr, char *buf)
Marcel Holtmann90855d72008-08-18 13:23:53 +020040{
David Herrmann3dc07322012-02-09 21:58:33 +010041 struct hci_conn *conn = to_hci_conn(dev);
Andrei Emeltchenkofcb73332012-09-25 12:49:44 +030042 return sprintf(buf, "%pMR\n", &conn->dst);
Marcel Holtmann90855d72008-08-18 13:23:53 +020043}
44
Gustavo Padovanb80f0212012-05-17 00:36:23 -030045static ssize_t show_link_features(struct device *dev,
46 struct device_attribute *attr, char *buf)
Marcel Holtmann90855d72008-08-18 13:23:53 +020047{
David Herrmann3dc07322012-02-09 21:58:33 +010048 struct hci_conn *conn = to_hci_conn(dev);
Marcel Holtmann90855d72008-08-18 13:23:53 +020049
50 return sprintf(buf, "0x%02x%02x%02x%02x%02x%02x%02x%02x\n",
Gustavo Padovanb80f0212012-05-17 00:36:23 -030051 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]);
Marcel Holtmann90855d72008-08-18 13:23:53 +020055}
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{
David Herrmann2dd10682012-02-09 21:58:34 +010082 struct hci_conn *conn = to_hci_conn(dev);
83 kfree(conn);
Marcel Holtmann90855d72008-08-18 13:23:53 +020084}
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
Marcel Holtmann90855d72008-08-18 13:23:53 +0200123 if (device_add(&conn->dev) < 0) {
124 BT_ERR("Failed to register connection device");
125 return;
126 }
Marcel Holtmann384943e2009-05-08 18:20:43 -0700127
128 hci_dev_hold(hdev);
Marcel Holtmann90855d72008-08-18 13:23:53 +0200129}
130
Gustavo F. Padovan6d438e32011-12-17 18:53:02 -0200131void hci_conn_del_sysfs(struct hci_conn *conn)
Marcel Holtmann90855d72008-08-18 13:23:53 +0200132{
Marcel Holtmann90855d72008-08-18 13:23:53 +0200133 struct hci_dev *hdev = conn->hdev;
134
Marcel Holtmanna67e8992009-05-02 18:24:06 -0700135 if (!device_is_registered(&conn->dev))
136 return;
Roger Quadrosf3784d82009-04-23 14:50:54 +0300137
Marcel Holtmann90855d72008-08-18 13:23:53 +0200138 while (1) {
139 struct device *dev;
140
141 dev = device_find_child(&conn->dev, NULL, __match_tty);
142 if (!dev)
143 break;
Cornelia Huckffa6a702009-03-04 12:44:00 +0100144 device_move(dev, NULL, DPM_ORDER_DEV_LAST);
Marcel Holtmann90855d72008-08-18 13:23:53 +0200145 put_device(dev);
146 }
147
148 device_del(&conn->dev);
149 put_device(&conn->dev);
Marcel Holtmann384943e2009-05-08 18:20:43 -0700150
Marcel Holtmann90855d72008-08-18 13:23:53 +0200151 hci_dev_put(hdev);
152}
153
Marcel Holtmannc13854c2010-02-08 15:27:07 +0100154static inline char *host_bustostr(int bus)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700155{
Marcel Holtmannc13854c2010-02-08 15:27:07 +0100156 switch (bus) {
Marcel Holtmann0ac53932006-07-08 13:57:15 +0200157 case HCI_VIRTUAL:
Marcel Holtmann4d0eb002006-07-06 12:34:41 +0200158 return "VIRTUAL";
159 case HCI_USB:
160 return "USB";
161 case HCI_PCCARD:
162 return "PCCARD";
163 case HCI_UART:
164 return "UART";
165 case HCI_RS232:
166 return "RS232";
167 case HCI_PCI:
168 return "PCI";
Marcel Holtmann0ac53932006-07-08 13:57:15 +0200169 case HCI_SDIO:
170 return "SDIO";
Marcel Holtmann4d0eb002006-07-06 12:34:41 +0200171 default:
172 return "UNKNOWN";
173 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700174}
175
Marcel Holtmann943da252010-02-13 02:28:41 +0100176static inline char *host_typetostr(int type)
177{
178 switch (type) {
179 case HCI_BREDR:
180 return "BR/EDR";
David Vrabel8f1e1742010-08-09 17:38:10 -0400181 case HCI_AMP:
182 return "AMP";
Marcel Holtmann943da252010-02-13 02:28:41 +0100183 default:
184 return "UNKNOWN";
185 }
186}
187
Gustavo Padovanb80f0212012-05-17 00:36:23 -0300188static ssize_t show_bus(struct device *dev,
189 struct device_attribute *attr, char *buf)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700190{
David Herrmannaa2b86d2012-02-09 21:58:30 +0100191 struct hci_dev *hdev = to_hci_dev(dev);
Marcel Holtmannc13854c2010-02-08 15:27:07 +0100192 return sprintf(buf, "%s\n", host_bustostr(hdev->bus));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700193}
194
Gustavo Padovanb80f0212012-05-17 00:36:23 -0300195static ssize_t show_type(struct device *dev,
196 struct device_attribute *attr, char *buf)
Marcel Holtmann943da252010-02-13 02:28:41 +0100197{
David Herrmannaa2b86d2012-02-09 21:58:30 +0100198 struct hci_dev *hdev = to_hci_dev(dev);
Marcel Holtmann943da252010-02-13 02:28:41 +0100199 return sprintf(buf, "%s\n", host_typetostr(hdev->dev_type));
200}
201
Gustavo Padovanb80f0212012-05-17 00:36:23 -0300202static ssize_t show_name(struct device *dev,
203 struct device_attribute *attr, char *buf)
Marcel Holtmanna9de9242007-10-20 13:33:56 +0200204{
David Herrmannaa2b86d2012-02-09 21:58:30 +0100205 struct hci_dev *hdev = to_hci_dev(dev);
Johan Hedberg1f6c6372011-03-16 14:29:35 +0200206 char name[HCI_MAX_NAME_LENGTH + 1];
Marcel Holtmanna9de9242007-10-20 13:33:56 +0200207 int i;
208
Johan Hedberg1f6c6372011-03-16 14:29:35 +0200209 for (i = 0; i < HCI_MAX_NAME_LENGTH; i++)
Marcel Holtmanna9de9242007-10-20 13:33:56 +0200210 name[i] = hdev->dev_name[i];
211
Johan Hedberg1f6c6372011-03-16 14:29:35 +0200212 name[HCI_MAX_NAME_LENGTH] = '\0';
Marcel Holtmanna9de9242007-10-20 13:33:56 +0200213 return sprintf(buf, "%s\n", name);
214}
215
Gustavo Padovanb80f0212012-05-17 00:36:23 -0300216static ssize_t show_class(struct device *dev,
217 struct device_attribute *attr, char *buf)
Marcel Holtmanna9de9242007-10-20 13:33:56 +0200218{
David Herrmannaa2b86d2012-02-09 21:58:30 +0100219 struct hci_dev *hdev = to_hci_dev(dev);
Gustavo Padovan8fc9ced2012-05-23 04:04:21 -0300220 return sprintf(buf, "0x%.2x%.2x%.2x\n", hdev->dev_class[2],
221 hdev->dev_class[1], hdev->dev_class[0]);
Marcel Holtmanna9de9242007-10-20 13:33:56 +0200222}
223
Gustavo Padovanb80f0212012-05-17 00:36:23 -0300224static ssize_t show_address(struct device *dev,
225 struct device_attribute *attr, char *buf)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700226{
David Herrmannaa2b86d2012-02-09 21:58:30 +0100227 struct hci_dev *hdev = to_hci_dev(dev);
Andrei Emeltchenkofcb73332012-09-25 12:49:44 +0300228 return sprintf(buf, "%pMR\n", &hdev->bdaddr);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700229}
230
Gustavo Padovanb80f0212012-05-17 00:36:23 -0300231static ssize_t show_features(struct device *dev,
232 struct device_attribute *attr, char *buf)
Marcel Holtmanna9de9242007-10-20 13:33:56 +0200233{
David Herrmannaa2b86d2012-02-09 21:58:30 +0100234 struct hci_dev *hdev = to_hci_dev(dev);
Marcel Holtmanna9de9242007-10-20 13:33:56 +0200235
236 return sprintf(buf, "0x%02x%02x%02x%02x%02x%02x%02x%02x\n",
Gustavo Padovanb80f0212012-05-17 00:36:23 -0300237 hdev->features[0], hdev->features[1],
238 hdev->features[2], hdev->features[3],
239 hdev->features[4], hdev->features[5],
240 hdev->features[6], hdev->features[7]);
Marcel Holtmanna9de9242007-10-20 13:33:56 +0200241}
242
Gustavo Padovanb80f0212012-05-17 00:36:23 -0300243static ssize_t show_manufacturer(struct device *dev,
244 struct device_attribute *attr, char *buf)
Marcel Holtmann1143e5a2006-09-23 09:57:20 +0200245{
David Herrmannaa2b86d2012-02-09 21:58:30 +0100246 struct hci_dev *hdev = to_hci_dev(dev);
Marcel Holtmann1143e5a2006-09-23 09:57:20 +0200247 return sprintf(buf, "%d\n", hdev->manufacturer);
248}
249
Gustavo Padovanb80f0212012-05-17 00:36:23 -0300250static ssize_t show_hci_version(struct device *dev,
251 struct device_attribute *attr, char *buf)
Marcel Holtmann1143e5a2006-09-23 09:57:20 +0200252{
David Herrmannaa2b86d2012-02-09 21:58:30 +0100253 struct hci_dev *hdev = to_hci_dev(dev);
Marcel Holtmann1143e5a2006-09-23 09:57:20 +0200254 return sprintf(buf, "%d\n", hdev->hci_ver);
255}
256
Gustavo Padovanb80f0212012-05-17 00:36:23 -0300257static ssize_t show_hci_revision(struct device *dev,
258 struct device_attribute *attr, char *buf)
Marcel Holtmann1143e5a2006-09-23 09:57:20 +0200259{
David Herrmannaa2b86d2012-02-09 21:58:30 +0100260 struct hci_dev *hdev = to_hci_dev(dev);
Marcel Holtmann1143e5a2006-09-23 09:57:20 +0200261 return sprintf(buf, "%d\n", hdev->hci_rev);
262}
263
Gustavo Padovanb80f0212012-05-17 00:36:23 -0300264static ssize_t show_idle_timeout(struct device *dev,
265 struct device_attribute *attr, char *buf)
Marcel Holtmann04837f62006-07-03 10:02:33 +0200266{
David Herrmannaa2b86d2012-02-09 21:58:30 +0100267 struct hci_dev *hdev = to_hci_dev(dev);
Marcel Holtmann04837f62006-07-03 10:02:33 +0200268 return sprintf(buf, "%d\n", hdev->idle_timeout);
269}
270
Gustavo Padovanb80f0212012-05-17 00:36:23 -0300271static ssize_t store_idle_timeout(struct device *dev,
272 struct device_attribute *attr,
273 const char *buf, size_t count)
Marcel Holtmann04837f62006-07-03 10:02:33 +0200274{
David Herrmannaa2b86d2012-02-09 21:58:30 +0100275 struct hci_dev *hdev = to_hci_dev(dev);
Alexey Dobriyandb940cb2011-04-02 14:19:41 +0300276 unsigned int val;
277 int rv;
Marcel Holtmann04837f62006-07-03 10:02:33 +0200278
Alexey Dobriyandb940cb2011-04-02 14:19:41 +0300279 rv = kstrtouint(buf, 0, &val);
280 if (rv < 0)
281 return rv;
Marcel Holtmann04837f62006-07-03 10:02:33 +0200282
283 if (val != 0 && (val < 500 || val > 3600000))
284 return -EINVAL;
285
286 hdev->idle_timeout = val;
287
288 return count;
289}
290
Gustavo Padovanb80f0212012-05-17 00:36:23 -0300291static ssize_t show_sniff_max_interval(struct device *dev,
292 struct device_attribute *attr, char *buf)
Marcel Holtmann04837f62006-07-03 10:02:33 +0200293{
David Herrmannaa2b86d2012-02-09 21:58:30 +0100294 struct hci_dev *hdev = to_hci_dev(dev);
Marcel Holtmann04837f62006-07-03 10:02:33 +0200295 return sprintf(buf, "%d\n", hdev->sniff_max_interval);
296}
297
Gustavo Padovanb80f0212012-05-17 00:36:23 -0300298static ssize_t store_sniff_max_interval(struct device *dev,
299 struct device_attribute *attr,
300 const char *buf, size_t count)
Marcel Holtmann04837f62006-07-03 10:02:33 +0200301{
David Herrmannaa2b86d2012-02-09 21:58:30 +0100302 struct hci_dev *hdev = to_hci_dev(dev);
Alexey Dobriyandb940cb2011-04-02 14:19:41 +0300303 u16 val;
304 int rv;
Marcel Holtmann04837f62006-07-03 10:02:33 +0200305
Alexey Dobriyandb940cb2011-04-02 14:19:41 +0300306 rv = kstrtou16(buf, 0, &val);
307 if (rv < 0)
308 return rv;
Marcel Holtmann04837f62006-07-03 10:02:33 +0200309
Alexey Dobriyandb940cb2011-04-02 14:19:41 +0300310 if (val == 0 || val % 2 || val < hdev->sniff_min_interval)
Marcel Holtmann04837f62006-07-03 10:02:33 +0200311 return -EINVAL;
312
313 hdev->sniff_max_interval = val;
314
315 return count;
316}
317
Gustavo Padovanb80f0212012-05-17 00:36:23 -0300318static ssize_t show_sniff_min_interval(struct device *dev,
319 struct device_attribute *attr, char *buf)
Marcel Holtmann04837f62006-07-03 10:02:33 +0200320{
David Herrmannaa2b86d2012-02-09 21:58:30 +0100321 struct hci_dev *hdev = to_hci_dev(dev);
Marcel Holtmann04837f62006-07-03 10:02:33 +0200322 return sprintf(buf, "%d\n", hdev->sniff_min_interval);
323}
324
Gustavo Padovanb80f0212012-05-17 00:36:23 -0300325static ssize_t store_sniff_min_interval(struct device *dev,
326 struct device_attribute *attr,
327 const char *buf, size_t count)
Marcel Holtmann04837f62006-07-03 10:02:33 +0200328{
David Herrmannaa2b86d2012-02-09 21:58:30 +0100329 struct hci_dev *hdev = to_hci_dev(dev);
Alexey Dobriyandb940cb2011-04-02 14:19:41 +0300330 u16 val;
331 int rv;
Marcel Holtmann04837f62006-07-03 10:02:33 +0200332
Alexey Dobriyandb940cb2011-04-02 14:19:41 +0300333 rv = kstrtou16(buf, 0, &val);
334 if (rv < 0)
335 return rv;
Marcel Holtmann04837f62006-07-03 10:02:33 +0200336
Alexey Dobriyandb940cb2011-04-02 14:19:41 +0300337 if (val == 0 || val % 2 || val > hdev->sniff_max_interval)
Marcel Holtmann04837f62006-07-03 10:02:33 +0200338 return -EINVAL;
339
340 hdev->sniff_min_interval = val;
341
342 return count;
343}
344
Marcel Holtmannc13854c2010-02-08 15:27:07 +0100345static DEVICE_ATTR(bus, S_IRUGO, show_bus, NULL);
Marcel Holtmann943da252010-02-13 02:28:41 +0100346static DEVICE_ATTR(type, S_IRUGO, show_type, NULL);
Marcel Holtmanna9de9242007-10-20 13:33:56 +0200347static DEVICE_ATTR(name, S_IRUGO, show_name, NULL);
348static DEVICE_ATTR(class, S_IRUGO, show_class, NULL);
Marcel Holtmanna91f2e32006-07-03 10:02:41 +0200349static DEVICE_ATTR(address, S_IRUGO, show_address, NULL);
Marcel Holtmanna9de9242007-10-20 13:33:56 +0200350static DEVICE_ATTR(features, S_IRUGO, show_features, NULL);
Marcel Holtmann1143e5a2006-09-23 09:57:20 +0200351static DEVICE_ATTR(manufacturer, S_IRUGO, show_manufacturer, NULL);
352static DEVICE_ATTR(hci_version, S_IRUGO, show_hci_version, NULL);
353static DEVICE_ATTR(hci_revision, S_IRUGO, show_hci_revision, NULL);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700354
Marcel Holtmanna91f2e32006-07-03 10:02:41 +0200355static DEVICE_ATTR(idle_timeout, S_IRUGO | S_IWUSR,
Gustavo Padovanb80f0212012-05-17 00:36:23 -0300356 show_idle_timeout, store_idle_timeout);
Marcel Holtmanna91f2e32006-07-03 10:02:41 +0200357static DEVICE_ATTR(sniff_max_interval, S_IRUGO | S_IWUSR,
Gustavo Padovanb80f0212012-05-17 00:36:23 -0300358 show_sniff_max_interval, store_sniff_max_interval);
Marcel Holtmanna91f2e32006-07-03 10:02:41 +0200359static DEVICE_ATTR(sniff_min_interval, S_IRUGO | S_IWUSR,
Gustavo Padovanb80f0212012-05-17 00:36:23 -0300360 show_sniff_min_interval, store_sniff_min_interval);
Marcel Holtmann04837f62006-07-03 10:02:33 +0200361
Marcel Holtmann90855d72008-08-18 13:23:53 +0200362static struct attribute *bt_host_attrs[] = {
Marcel Holtmannc13854c2010-02-08 15:27:07 +0100363 &dev_attr_bus.attr,
Marcel Holtmann943da252010-02-13 02:28:41 +0100364 &dev_attr_type.attr,
Marcel Holtmann90855d72008-08-18 13:23:53 +0200365 &dev_attr_name.attr,
366 &dev_attr_class.attr,
367 &dev_attr_address.attr,
368 &dev_attr_features.attr,
369 &dev_attr_manufacturer.attr,
370 &dev_attr_hci_version.attr,
371 &dev_attr_hci_revision.attr,
Marcel Holtmann90855d72008-08-18 13:23:53 +0200372 &dev_attr_idle_timeout.attr,
373 &dev_attr_sniff_max_interval.attr,
374 &dev_attr_sniff_min_interval.attr,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700375 NULL
376};
377
Marcel Holtmann90855d72008-08-18 13:23:53 +0200378static struct attribute_group bt_host_group = {
379 .attrs = bt_host_attrs,
380};
Marcel Holtmannb219e3a2006-07-06 12:38:46 +0200381
David Brownella4dbd672009-06-24 10:06:31 -0700382static const struct attribute_group *bt_host_groups[] = {
Marcel Holtmann90855d72008-08-18 13:23:53 +0200383 &bt_host_group,
Marcel Holtmannb219e3a2006-07-06 12:38:46 +0200384 NULL
385};
386
Marcel Holtmann90855d72008-08-18 13:23:53 +0200387static void bt_host_release(struct device *dev)
Marcel Holtmanna91f2e32006-07-03 10:02:41 +0200388{
David Herrmann2dd10682012-02-09 21:58:34 +0100389 struct hci_dev *hdev = to_hci_dev(dev);
390 kfree(hdev);
David Herrmann46e06532012-01-07 15:47:21 +0100391 module_put(THIS_MODULE);
Marcel Holtmannb219e3a2006-07-06 12:38:46 +0200392}
393
Marcel Holtmann90855d72008-08-18 13:23:53 +0200394static struct device_type bt_host = {
395 .name = "host",
396 .groups = bt_host_groups,
397 .release = bt_host_release,
398};
Marcel Holtmanna91f2e32006-07-03 10:02:41 +0200399
Marcel Holtmannd4612cb2010-03-02 15:48:23 +0000400static int inquiry_cache_show(struct seq_file *f, void *p)
Marcel Holtmannca325f62010-02-08 16:22:31 +0100401{
Marcel Holtmannd4612cb2010-03-02 15:48:23 +0000402 struct hci_dev *hdev = f->private;
Johan Hedberg30883512012-01-04 14:16:21 +0200403 struct discovery_state *cache = &hdev->discovery;
Marcel Holtmannca325f62010-02-08 16:22:31 +0100404 struct inquiry_entry *e;
Marcel Holtmannca325f62010-02-08 16:22:31 +0100405
Gustavo F. Padovan09fd0de2011-06-17 13:03:21 -0300406 hci_dev_lock(hdev);
Marcel Holtmannca325f62010-02-08 16:22:31 +0100407
Johan Hedberg561aafb2012-01-04 13:31:59 +0200408 list_for_each_entry(e, &cache->all, all) {
Marcel Holtmannca325f62010-02-08 16:22:31 +0100409 struct inquiry_data *data = &e->data;
Andrei Emeltchenkofcb73332012-09-25 12:49:44 +0300410 seq_printf(f, "%pMR %d %d %d 0x%.2x%.2x%.2x 0x%.4x %d %d %u\n",
411 &data->bdaddr,
Marcel Holtmannd4612cb2010-03-02 15:48:23 +0000412 data->pscan_rep_mode, data->pscan_period_mode,
413 data->pscan_mode, data->dev_class[2],
414 data->dev_class[1], data->dev_class[0],
415 __le16_to_cpu(data->clock_offset),
416 data->rssi, data->ssp_mode, e->timestamp);
Marcel Holtmannca325f62010-02-08 16:22:31 +0100417 }
418
Gustavo F. Padovan09fd0de2011-06-17 13:03:21 -0300419 hci_dev_unlock(hdev);
Marcel Holtmannca325f62010-02-08 16:22:31 +0100420
Marcel Holtmannd4612cb2010-03-02 15:48:23 +0000421 return 0;
422}
423
424static int inquiry_cache_open(struct inode *inode, struct file *file)
425{
426 return single_open(file, inquiry_cache_show, inode->i_private);
Marcel Holtmannca325f62010-02-08 16:22:31 +0100427}
428
429static const struct file_operations inquiry_cache_fops = {
Marcel Holtmannd4612cb2010-03-02 15:48:23 +0000430 .open = inquiry_cache_open,
431 .read = seq_read,
432 .llseek = seq_lseek,
433 .release = single_release,
Marcel Holtmannca325f62010-02-08 16:22:31 +0100434};
435
Johan Hedberg32c2ece2010-05-18 13:54:49 +0200436static int blacklist_show(struct seq_file *f, void *p)
437{
438 struct hci_dev *hdev = f->private;
Luiz Augusto von Dentz8035ded2011-11-01 10:58:56 +0200439 struct bdaddr_list *b;
Johan Hedberg32c2ece2010-05-18 13:54:49 +0200440
Gustavo F. Padovan09fd0de2011-06-17 13:03:21 -0300441 hci_dev_lock(hdev);
Johan Hedberg32c2ece2010-05-18 13:54:49 +0200442
Luiz Augusto von Dentz8035ded2011-11-01 10:58:56 +0200443 list_for_each_entry(b, &hdev->blacklist, list)
Andrei Emeltchenkofcb73332012-09-25 12:49:44 +0300444 seq_printf(f, "%pMR\n", &b->bdaddr);
Johan Hedberg32c2ece2010-05-18 13:54:49 +0200445
Gustavo F. Padovan09fd0de2011-06-17 13:03:21 -0300446 hci_dev_unlock(hdev);
Johan Hedberg32c2ece2010-05-18 13:54:49 +0200447
448 return 0;
449}
450
451static int blacklist_open(struct inode *inode, struct file *file)
452{
453 return single_open(file, blacklist_show, inode->i_private);
454}
455
456static const struct file_operations blacklist_fops = {
457 .open = blacklist_open,
458 .read = seq_read,
459 .llseek = seq_lseek,
460 .release = single_release,
461};
Johan Hedberg930e1332011-01-04 11:39:44 +0200462
463static void print_bt_uuid(struct seq_file *f, u8 *uuid)
464{
Gustavo Padovan52e0b012013-01-10 06:06:29 -0200465 u32 data0, data5;
466 u16 data1, data2, data3, data4;
Johan Hedberg930e1332011-01-04 11:39:44 +0200467
Gustavo Padovan52e0b012013-01-10 06:06:29 -0200468 data5 = get_unaligned_le32(uuid);
469 data4 = get_unaligned_le16(uuid + 4);
470 data3 = get_unaligned_le16(uuid + 6);
471 data2 = get_unaligned_le16(uuid + 8);
472 data1 = get_unaligned_le16(uuid + 10);
473 data0 = get_unaligned_le32(uuid + 12);
Johan Hedberg930e1332011-01-04 11:39:44 +0200474
Gustavo Padovan52e0b012013-01-10 06:06:29 -0200475 seq_printf(f, "%.8x-%.4x-%.4x-%.4x-%.4x%.8x\n",
476 data0, data1, data2, data3, data4, data5);
Johan Hedberg930e1332011-01-04 11:39:44 +0200477}
478
479static int uuids_show(struct seq_file *f, void *p)
480{
481 struct hci_dev *hdev = f->private;
Luiz Augusto von Dentz8035ded2011-11-01 10:58:56 +0200482 struct bt_uuid *uuid;
Johan Hedberg930e1332011-01-04 11:39:44 +0200483
Gustavo F. Padovan09fd0de2011-06-17 13:03:21 -0300484 hci_dev_lock(hdev);
Johan Hedberg930e1332011-01-04 11:39:44 +0200485
Luiz Augusto von Dentz8035ded2011-11-01 10:58:56 +0200486 list_for_each_entry(uuid, &hdev->uuids, list)
Johan Hedberg930e1332011-01-04 11:39:44 +0200487 print_bt_uuid(f, uuid->uuid);
Johan Hedberg930e1332011-01-04 11:39:44 +0200488
Gustavo F. Padovan09fd0de2011-06-17 13:03:21 -0300489 hci_dev_unlock(hdev);
Johan Hedberg930e1332011-01-04 11:39:44 +0200490
491 return 0;
492}
493
494static int uuids_open(struct inode *inode, struct file *file)
495{
496 return single_open(file, uuids_show, inode->i_private);
497}
498
499static const struct file_operations uuids_fops = {
500 .open = uuids_open,
501 .read = seq_read,
502 .llseek = seq_lseek,
503 .release = single_release,
504};
505
Johan Hedberg9f616562011-04-28 11:28:54 -0700506static int auto_accept_delay_set(void *data, u64 val)
507{
508 struct hci_dev *hdev = data;
509
Gustavo F. Padovan09fd0de2011-06-17 13:03:21 -0300510 hci_dev_lock(hdev);
Johan Hedberg9f616562011-04-28 11:28:54 -0700511
512 hdev->auto_accept_delay = val;
513
Gustavo F. Padovan09fd0de2011-06-17 13:03:21 -0300514 hci_dev_unlock(hdev);
Johan Hedberg9f616562011-04-28 11:28:54 -0700515
516 return 0;
517}
518
519static int auto_accept_delay_get(void *data, u64 *val)
520{
521 struct hci_dev *hdev = data;
522
Gustavo F. Padovan09fd0de2011-06-17 13:03:21 -0300523 hci_dev_lock(hdev);
Johan Hedberg9f616562011-04-28 11:28:54 -0700524
525 *val = hdev->auto_accept_delay;
526
Gustavo F. Padovan09fd0de2011-06-17 13:03:21 -0300527 hci_dev_unlock(hdev);
Johan Hedberg9f616562011-04-28 11:28:54 -0700528
529 return 0;
530}
531
532DEFINE_SIMPLE_ATTRIBUTE(auto_accept_delay_fops, auto_accept_delay_get,
Gustavo Padovanb80f0212012-05-17 00:36:23 -0300533 auto_accept_delay_set, "%llu\n");
Johan Hedberg9f616562011-04-28 11:28:54 -0700534
David Herrmann0ac7e702011-10-08 14:58:47 +0200535void hci_init_sysfs(struct hci_dev *hdev)
536{
537 struct device *dev = &hdev->dev;
538
539 dev->type = &bt_host;
540 dev->class = bt_class;
541
David Herrmann46e06532012-01-07 15:47:21 +0100542 __module_get(THIS_MODULE);
David Herrmann0ac7e702011-10-08 14:58:47 +0200543 device_initialize(dev);
544}
545
David Herrmannce242972011-10-08 14:58:48 +0200546int hci_add_sysfs(struct hci_dev *hdev)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700547{
Marcel Holtmanna91f2e32006-07-03 10:02:41 +0200548 struct device *dev = &hdev->dev;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700549 int err;
550
Marcel Holtmannc13854c2010-02-08 15:27:07 +0100551 BT_DBG("%p name %s bus %d", hdev, hdev->name, hdev->bus);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700552
Marcel Holtmann2e792992008-11-30 12:17:29 +0100553 dev_set_name(dev, "%s", hdev->name);
Marcel Holtmann27d35282006-07-03 10:02:37 +0200554
David Herrmann0ac7e702011-10-08 14:58:47 +0200555 err = device_add(dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700556 if (err < 0)
557 return err;
558
Marcel Holtmannca325f62010-02-08 16:22:31 +0100559 if (!bt_debugfs)
560 return 0;
561
562 hdev->debugfs = debugfs_create_dir(hdev->name, bt_debugfs);
563 if (!hdev->debugfs)
564 return 0;
565
566 debugfs_create_file("inquiry_cache", 0444, hdev->debugfs,
Gustavo Padovanb80f0212012-05-17 00:36:23 -0300567 hdev, &inquiry_cache_fops);
Marcel Holtmannca325f62010-02-08 16:22:31 +0100568
Johan Hedberg32c2ece2010-05-18 13:54:49 +0200569 debugfs_create_file("blacklist", 0444, hdev->debugfs,
Gustavo Padovanb80f0212012-05-17 00:36:23 -0300570 hdev, &blacklist_fops);
Johan Hedberg32c2ece2010-05-18 13:54:49 +0200571
Johan Hedberg930e1332011-01-04 11:39:44 +0200572 debugfs_create_file("uuids", 0444, hdev->debugfs, hdev, &uuids_fops);
573
Johan Hedberg9f616562011-04-28 11:28:54 -0700574 debugfs_create_file("auto_accept_delay", 0444, hdev->debugfs, hdev,
Gustavo Padovanb80f0212012-05-17 00:36:23 -0300575 &auto_accept_delay_fops);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700576 return 0;
577}
578
David Herrmannce242972011-10-08 14:58:48 +0200579void hci_del_sysfs(struct hci_dev *hdev)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700580{
Marcel Holtmannc13854c2010-02-08 15:27:07 +0100581 BT_DBG("%p name %s bus %d", hdev, hdev->name, hdev->bus);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700582
Marcel Holtmannca325f62010-02-08 16:22:31 +0100583 debugfs_remove_recursive(hdev->debugfs);
584
Marcel Holtmann4d0eb002006-07-06 12:34:41 +0200585 device_del(&hdev->dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700586}
587
588int __init bt_sysfs_init(void)
589{
Marcel Holtmannca325f62010-02-08 16:22:31 +0100590 bt_debugfs = debugfs_create_dir("bluetooth", NULL);
591
Marcel Holtmanna91f2e32006-07-03 10:02:41 +0200592 bt_class = class_create(THIS_MODULE, "bluetooth");
Marcel Holtmannf48fd9c2010-03-20 15:20:04 +0100593 if (IS_ERR(bt_class))
Marcel Holtmann90855d72008-08-18 13:23:53 +0200594 return PTR_ERR(bt_class);
Marcel Holtmann27d35282006-07-03 10:02:37 +0200595
596 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700597}
598
Arnaud Patard860e13b2006-09-28 15:29:37 -0700599void bt_sysfs_cleanup(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700600{
Marcel Holtmanna91f2e32006-07-03 10:02:41 +0200601 class_destroy(bt_class);
Marcel Holtmannca325f62010-02-08 16:22:31 +0100602
603 debugfs_remove_recursive(bt_debugfs);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700604}