blob: 661b461cf0b0873983b8fae4dbb83ad80d4de505 [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
92static void add_conn(struct work_struct *work)
93{
Roger Quadrosf3784d82009-04-23 14:50:54 +030094 struct hci_conn *conn = container_of(work, struct hci_conn, work_add);
Marcel Holtmann457ca7b2009-05-05 13:09:01 -070095 struct hci_dev *hdev = conn->hdev;
Marcel Holtmann90855d72008-08-18 13:23:53 +020096
Marcel Holtmann457ca7b2009-05-05 13:09:01 -070097 dev_set_name(&conn->dev, "%s:%d", hdev->name, conn->handle);
98
Dave Youngf74c77c2009-10-18 20:24:41 +000099 dev_set_drvdata(&conn->dev, conn);
100
Marcel Holtmann90855d72008-08-18 13:23:53 +0200101 if (device_add(&conn->dev) < 0) {
102 BT_ERR("Failed to register connection device");
103 return;
104 }
Marcel Holtmann384943e2009-05-08 18:20:43 -0700105
106 hci_dev_hold(hdev);
Marcel Holtmann90855d72008-08-18 13:23:53 +0200107}
108
Marcel Holtmann90855d72008-08-18 13:23:53 +0200109/*
110 * The rfcomm tty device will possibly retain even when conn
111 * is down, and sysfs doesn't support move zombie device,
112 * so we should move the device before conn device is destroyed.
113 */
114static int __match_tty(struct device *dev, void *data)
115{
Kay Sieversfb28ad32008-11-10 13:55:14 -0800116 return !strncmp(dev_name(dev), "rfcomm", 6);
Marcel Holtmann90855d72008-08-18 13:23:53 +0200117}
118
119static void del_conn(struct work_struct *work)
120{
Roger Quadrosf3784d82009-04-23 14:50:54 +0300121 struct hci_conn *conn = container_of(work, struct hci_conn, work_del);
Marcel Holtmann90855d72008-08-18 13:23:53 +0200122 struct hci_dev *hdev = conn->hdev;
123
Marcel Holtmanna67e8992009-05-02 18:24:06 -0700124 if (!device_is_registered(&conn->dev))
125 return;
Roger Quadrosf3784d82009-04-23 14:50:54 +0300126
Marcel Holtmann90855d72008-08-18 13:23:53 +0200127 while (1) {
128 struct device *dev;
129
130 dev = device_find_child(&conn->dev, NULL, __match_tty);
131 if (!dev)
132 break;
Cornelia Huckffa6a702009-03-04 12:44:00 +0100133 device_move(dev, NULL, DPM_ORDER_DEV_LAST);
Marcel Holtmann90855d72008-08-18 13:23:53 +0200134 put_device(dev);
135 }
136
137 device_del(&conn->dev);
138 put_device(&conn->dev);
Marcel Holtmann384943e2009-05-08 18:20:43 -0700139
Marcel Holtmann90855d72008-08-18 13:23:53 +0200140 hci_dev_put(hdev);
141}
142
Marcel Holtmanna67e8992009-05-02 18:24:06 -0700143void hci_conn_init_sysfs(struct hci_conn *conn)
144{
145 struct hci_dev *hdev = conn->hdev;
146
147 BT_DBG("conn %p", conn);
148
149 conn->dev.type = &bt_link;
150 conn->dev.class = bt_class;
151 conn->dev.parent = &hdev->dev;
152
Marcel Holtmanna67e8992009-05-02 18:24:06 -0700153 device_initialize(&conn->dev);
154
155 INIT_WORK(&conn->work_add, add_conn);
156 INIT_WORK(&conn->work_del, del_conn);
157}
158
159void hci_conn_add_sysfs(struct hci_conn *conn)
160{
Marcel Holtmanna67e8992009-05-02 18:24:06 -0700161 BT_DBG("conn %p", conn);
162
Marcel Holtmannf48fd9c2010-03-20 15:20:04 +0100163 queue_work(conn->hdev->workqueue, &conn->work_add);
Marcel Holtmanna67e8992009-05-02 18:24:06 -0700164}
165
Marcel Holtmann90855d72008-08-18 13:23:53 +0200166void hci_conn_del_sysfs(struct hci_conn *conn)
167{
168 BT_DBG("conn %p", conn);
169
Marcel Holtmannf48fd9c2010-03-20 15:20:04 +0100170 queue_work(conn->hdev->workqueue, &conn->work_del);
Marcel Holtmann90855d72008-08-18 13:23:53 +0200171}
172
Marcel Holtmannc13854ce2010-02-08 15:27:07 +0100173static inline char *host_bustostr(int bus)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700174{
Marcel Holtmannc13854ce2010-02-08 15:27:07 +0100175 switch (bus) {
Marcel Holtmann0ac53932006-07-08 13:57:15 +0200176 case HCI_VIRTUAL:
Marcel Holtmann4d0eb002006-07-06 12:34:41 +0200177 return "VIRTUAL";
178 case HCI_USB:
179 return "USB";
180 case HCI_PCCARD:
181 return "PCCARD";
182 case HCI_UART:
183 return "UART";
184 case HCI_RS232:
185 return "RS232";
186 case HCI_PCI:
187 return "PCI";
Marcel Holtmann0ac53932006-07-08 13:57:15 +0200188 case HCI_SDIO:
189 return "SDIO";
Marcel Holtmann4d0eb002006-07-06 12:34:41 +0200190 default:
191 return "UNKNOWN";
192 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700193}
194
Marcel Holtmann943da252010-02-13 02:28:41 +0100195static inline char *host_typetostr(int type)
196{
197 switch (type) {
198 case HCI_BREDR:
199 return "BR/EDR";
David Vrabel8f1e1742010-08-09 17:38:10 -0400200 case HCI_AMP:
201 return "AMP";
Marcel Holtmann943da252010-02-13 02:28:41 +0100202 default:
203 return "UNKNOWN";
204 }
205}
206
Marcel Holtmannc13854ce2010-02-08 15:27:07 +0100207static ssize_t show_bus(struct device *dev, struct device_attribute *attr, char *buf)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700208{
Marcel Holtmanna91f2e32006-07-03 10:02:41 +0200209 struct hci_dev *hdev = dev_get_drvdata(dev);
Marcel Holtmannc13854ce2010-02-08 15:27:07 +0100210 return sprintf(buf, "%s\n", host_bustostr(hdev->bus));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700211}
212
Marcel Holtmann943da252010-02-13 02:28:41 +0100213static ssize_t show_type(struct device *dev, struct device_attribute *attr, char *buf)
214{
215 struct hci_dev *hdev = dev_get_drvdata(dev);
216 return sprintf(buf, "%s\n", host_typetostr(hdev->dev_type));
217}
218
Marcel Holtmanna9de9242007-10-20 13:33:56 +0200219static ssize_t show_name(struct device *dev, struct device_attribute *attr, char *buf)
220{
221 struct hci_dev *hdev = dev_get_drvdata(dev);
Johan Hedberg1f6c6372011-03-16 14:29:35 +0200222 char name[HCI_MAX_NAME_LENGTH + 1];
Marcel Holtmanna9de9242007-10-20 13:33:56 +0200223 int i;
224
Johan Hedberg1f6c6372011-03-16 14:29:35 +0200225 for (i = 0; i < HCI_MAX_NAME_LENGTH; i++)
Marcel Holtmanna9de9242007-10-20 13:33:56 +0200226 name[i] = hdev->dev_name[i];
227
Johan Hedberg1f6c6372011-03-16 14:29:35 +0200228 name[HCI_MAX_NAME_LENGTH] = '\0';
Marcel Holtmanna9de9242007-10-20 13:33:56 +0200229 return sprintf(buf, "%s\n", name);
230}
231
232static ssize_t show_class(struct device *dev, struct device_attribute *attr, char *buf)
233{
234 struct hci_dev *hdev = dev_get_drvdata(dev);
235 return sprintf(buf, "0x%.2x%.2x%.2x\n",
236 hdev->dev_class[2], hdev->dev_class[1], hdev->dev_class[0]);
237}
238
Marcel Holtmanna91f2e32006-07-03 10:02:41 +0200239static ssize_t show_address(struct device *dev, struct device_attribute *attr, char *buf)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700240{
Marcel Holtmanna91f2e32006-07-03 10:02:41 +0200241 struct hci_dev *hdev = dev_get_drvdata(dev);
Gustavo F. Padovand6b2eb22010-09-03 18:29:46 -0300242 return sprintf(buf, "%s\n", batostr(&hdev->bdaddr));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700243}
244
Marcel Holtmanna9de9242007-10-20 13:33:56 +0200245static ssize_t show_features(struct device *dev, struct device_attribute *attr, char *buf)
246{
247 struct hci_dev *hdev = dev_get_drvdata(dev);
248
249 return sprintf(buf, "0x%02x%02x%02x%02x%02x%02x%02x%02x\n",
250 hdev->features[0], hdev->features[1],
251 hdev->features[2], hdev->features[3],
252 hdev->features[4], hdev->features[5],
253 hdev->features[6], hdev->features[7]);
254}
255
Marcel Holtmann1143e5a2006-09-23 09:57:20 +0200256static ssize_t show_manufacturer(struct device *dev, struct device_attribute *attr, char *buf)
257{
258 struct hci_dev *hdev = dev_get_drvdata(dev);
259 return sprintf(buf, "%d\n", hdev->manufacturer);
260}
261
262static ssize_t show_hci_version(struct device *dev, struct device_attribute *attr, char *buf)
263{
264 struct hci_dev *hdev = dev_get_drvdata(dev);
265 return sprintf(buf, "%d\n", hdev->hci_ver);
266}
267
268static ssize_t show_hci_revision(struct device *dev, struct device_attribute *attr, char *buf)
269{
270 struct hci_dev *hdev = dev_get_drvdata(dev);
271 return sprintf(buf, "%d\n", hdev->hci_rev);
272}
273
Marcel Holtmanna91f2e32006-07-03 10:02:41 +0200274static ssize_t show_idle_timeout(struct device *dev, struct device_attribute *attr, char *buf)
Marcel Holtmann04837f62006-07-03 10:02:33 +0200275{
Marcel Holtmanna91f2e32006-07-03 10:02:41 +0200276 struct hci_dev *hdev = dev_get_drvdata(dev);
Marcel Holtmann04837f62006-07-03 10:02:33 +0200277 return sprintf(buf, "%d\n", hdev->idle_timeout);
278}
279
Marcel Holtmanna91f2e32006-07-03 10:02:41 +0200280static 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 +0200281{
Marcel Holtmanna91f2e32006-07-03 10:02:41 +0200282 struct hci_dev *hdev = dev_get_drvdata(dev);
Alexey Dobriyandb940cb2011-04-02 14:19:41 +0300283 unsigned int val;
284 int rv;
Marcel Holtmann04837f62006-07-03 10:02:33 +0200285
Alexey Dobriyandb940cb2011-04-02 14:19:41 +0300286 rv = kstrtouint(buf, 0, &val);
287 if (rv < 0)
288 return rv;
Marcel Holtmann04837f62006-07-03 10:02:33 +0200289
290 if (val != 0 && (val < 500 || val > 3600000))
291 return -EINVAL;
292
293 hdev->idle_timeout = val;
294
295 return count;
296}
297
Marcel Holtmanna91f2e32006-07-03 10:02:41 +0200298static ssize_t show_sniff_max_interval(struct device *dev, struct device_attribute *attr, char *buf)
Marcel Holtmann04837f62006-07-03 10:02:33 +0200299{
Marcel Holtmanna91f2e32006-07-03 10:02:41 +0200300 struct hci_dev *hdev = dev_get_drvdata(dev);
Marcel Holtmann04837f62006-07-03 10:02:33 +0200301 return sprintf(buf, "%d\n", hdev->sniff_max_interval);
302}
303
Marcel Holtmanna91f2e32006-07-03 10:02:41 +0200304static 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 +0200305{
Marcel Holtmanna91f2e32006-07-03 10:02:41 +0200306 struct hci_dev *hdev = dev_get_drvdata(dev);
Alexey Dobriyandb940cb2011-04-02 14:19:41 +0300307 u16 val;
308 int rv;
Marcel Holtmann04837f62006-07-03 10:02:33 +0200309
Alexey Dobriyandb940cb2011-04-02 14:19:41 +0300310 rv = kstrtou16(buf, 0, &val);
311 if (rv < 0)
312 return rv;
Marcel Holtmann04837f62006-07-03 10:02:33 +0200313
Alexey Dobriyandb940cb2011-04-02 14:19:41 +0300314 if (val == 0 || val % 2 || val < hdev->sniff_min_interval)
Marcel Holtmann04837f62006-07-03 10:02:33 +0200315 return -EINVAL;
316
317 hdev->sniff_max_interval = val;
318
319 return count;
320}
321
Marcel Holtmanna91f2e32006-07-03 10:02:41 +0200322static ssize_t show_sniff_min_interval(struct device *dev, struct device_attribute *attr, char *buf)
Marcel Holtmann04837f62006-07-03 10:02:33 +0200323{
Marcel Holtmanna91f2e32006-07-03 10:02:41 +0200324 struct hci_dev *hdev = dev_get_drvdata(dev);
Marcel Holtmann04837f62006-07-03 10:02:33 +0200325 return sprintf(buf, "%d\n", hdev->sniff_min_interval);
326}
327
Marcel Holtmanna91f2e32006-07-03 10:02:41 +0200328static 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 +0200329{
Marcel Holtmanna91f2e32006-07-03 10:02:41 +0200330 struct hci_dev *hdev = dev_get_drvdata(dev);
Alexey Dobriyandb940cb2011-04-02 14:19:41 +0300331 u16 val;
332 int rv;
Marcel Holtmann04837f62006-07-03 10:02:33 +0200333
Alexey Dobriyandb940cb2011-04-02 14:19:41 +0300334 rv = kstrtou16(buf, 0, &val);
335 if (rv < 0)
336 return rv;
Marcel Holtmann04837f62006-07-03 10:02:33 +0200337
Alexey Dobriyandb940cb2011-04-02 14:19:41 +0300338 if (val == 0 || val % 2 || val > hdev->sniff_max_interval)
Marcel Holtmann04837f62006-07-03 10:02:33 +0200339 return -EINVAL;
340
341 hdev->sniff_min_interval = val;
342
343 return count;
344}
345
Marcel Holtmannc13854ce2010-02-08 15:27:07 +0100346static DEVICE_ATTR(bus, S_IRUGO, show_bus, NULL);
Marcel Holtmann943da252010-02-13 02:28:41 +0100347static DEVICE_ATTR(type, S_IRUGO, show_type, NULL);
Marcel Holtmanna9de9242007-10-20 13:33:56 +0200348static DEVICE_ATTR(name, S_IRUGO, show_name, NULL);
349static DEVICE_ATTR(class, S_IRUGO, show_class, NULL);
Marcel Holtmanna91f2e32006-07-03 10:02:41 +0200350static DEVICE_ATTR(address, S_IRUGO, show_address, NULL);
Marcel Holtmanna9de9242007-10-20 13:33:56 +0200351static DEVICE_ATTR(features, S_IRUGO, show_features, NULL);
Marcel Holtmann1143e5a2006-09-23 09:57:20 +0200352static DEVICE_ATTR(manufacturer, S_IRUGO, show_manufacturer, NULL);
353static DEVICE_ATTR(hci_version, S_IRUGO, show_hci_version, NULL);
354static DEVICE_ATTR(hci_revision, S_IRUGO, show_hci_revision, NULL);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700355
Marcel Holtmanna91f2e32006-07-03 10:02:41 +0200356static DEVICE_ATTR(idle_timeout, S_IRUGO | S_IWUSR,
Marcel Holtmann04837f62006-07-03 10:02:33 +0200357 show_idle_timeout, store_idle_timeout);
Marcel Holtmanna91f2e32006-07-03 10:02:41 +0200358static DEVICE_ATTR(sniff_max_interval, S_IRUGO | S_IWUSR,
Marcel Holtmann04837f62006-07-03 10:02:33 +0200359 show_sniff_max_interval, store_sniff_max_interval);
Marcel Holtmanna91f2e32006-07-03 10:02:41 +0200360static DEVICE_ATTR(sniff_min_interval, S_IRUGO | S_IWUSR,
Marcel Holtmann04837f62006-07-03 10:02:33 +0200361 show_sniff_min_interval, store_sniff_min_interval);
362
Marcel Holtmann90855d72008-08-18 13:23:53 +0200363static struct attribute *bt_host_attrs[] = {
Marcel Holtmannc13854ce2010-02-08 15:27:07 +0100364 &dev_attr_bus.attr,
Marcel Holtmann943da252010-02-13 02:28:41 +0100365 &dev_attr_type.attr,
Marcel Holtmann90855d72008-08-18 13:23:53 +0200366 &dev_attr_name.attr,
367 &dev_attr_class.attr,
368 &dev_attr_address.attr,
369 &dev_attr_features.attr,
370 &dev_attr_manufacturer.attr,
371 &dev_attr_hci_version.attr,
372 &dev_attr_hci_revision.attr,
Marcel Holtmann90855d72008-08-18 13:23:53 +0200373 &dev_attr_idle_timeout.attr,
374 &dev_attr_sniff_max_interval.attr,
375 &dev_attr_sniff_min_interval.attr,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700376 NULL
377};
378
Marcel Holtmann90855d72008-08-18 13:23:53 +0200379static struct attribute_group bt_host_group = {
380 .attrs = bt_host_attrs,
381};
Marcel Holtmannb219e3a2006-07-06 12:38:46 +0200382
David Brownella4dbd672009-06-24 10:06:31 -0700383static const struct attribute_group *bt_host_groups[] = {
Marcel Holtmann90855d72008-08-18 13:23:53 +0200384 &bt_host_group,
Marcel Holtmannb219e3a2006-07-06 12:38:46 +0200385 NULL
386};
387
Marcel Holtmann90855d72008-08-18 13:23:53 +0200388static void bt_host_release(struct device *dev)
Marcel Holtmanna91f2e32006-07-03 10:02:41 +0200389{
Marcel Holtmannb219e3a2006-07-06 12:38:46 +0200390 void *data = dev_get_drvdata(dev);
391 kfree(data);
392}
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;
Marcel Holtmannca325f62010-02-08 16:22:31 +0100403 struct inquiry_cache *cache = &hdev->inq_cache;
404 struct inquiry_entry *e;
Marcel Holtmannca325f62010-02-08 16:22:31 +0100405
406 hci_dev_lock_bh(hdev);
407
408 for (e = cache->list; e; e = e->next) {
409 struct inquiry_data *data = &e->data;
Marcel Holtmannd4612cb2010-03-02 15:48:23 +0000410 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 -0300411 batostr(&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
419 hci_dev_unlock_bh(hdev);
420
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;
Johan Hedberg32c2ece2010-05-18 13:54:49 +0200439 struct list_head *l;
440
441 hci_dev_lock_bh(hdev);
442
David Millerea4bd8b2010-07-30 21:54:49 -0700443 list_for_each(l, &hdev->blacklist) {
Johan Hedberg32c2ece2010-05-18 13:54:49 +0200444 struct bdaddr_list *b;
Johan Hedberg32c2ece2010-05-18 13:54:49 +0200445
446 b = list_entry(l, struct bdaddr_list, list);
447
Gustavo F. Padovand6b2eb22010-09-03 18:29:46 -0300448 seq_printf(f, "%s\n", batostr(&b->bdaddr));
Johan Hedberg32c2ece2010-05-18 13:54:49 +0200449 }
450
451 hci_dev_unlock_bh(hdev);
452
453 return 0;
454}
455
456static int blacklist_open(struct inode *inode, struct file *file)
457{
458 return single_open(file, blacklist_show, inode->i_private);
459}
460
461static const struct file_operations blacklist_fops = {
462 .open = blacklist_open,
463 .read = seq_read,
464 .llseek = seq_lseek,
465 .release = single_release,
466};
Johan Hedberg930e1332011-01-04 11:39:44 +0200467
468static void print_bt_uuid(struct seq_file *f, u8 *uuid)
469{
470 u32 data0, data4;
471 u16 data1, data2, data3, data5;
472
473 memcpy(&data0, &uuid[0], 4);
474 memcpy(&data1, &uuid[4], 2);
475 memcpy(&data2, &uuid[6], 2);
476 memcpy(&data3, &uuid[8], 2);
477 memcpy(&data4, &uuid[10], 4);
478 memcpy(&data5, &uuid[14], 2);
479
480 seq_printf(f, "%.8x-%.4x-%.4x-%.4x-%.8x%.4x\n",
481 ntohl(data0), ntohs(data1), ntohs(data2),
482 ntohs(data3), ntohl(data4), ntohs(data5));
483}
484
485static int uuids_show(struct seq_file *f, void *p)
486{
487 struct hci_dev *hdev = f->private;
488 struct list_head *l;
489
490 hci_dev_lock_bh(hdev);
491
492 list_for_each(l, &hdev->uuids) {
493 struct bt_uuid *uuid;
494
495 uuid = list_entry(l, struct bt_uuid, list);
496
497 print_bt_uuid(f, uuid->uuid);
498 }
499
500 hci_dev_unlock_bh(hdev);
501
502 return 0;
503}
504
505static int uuids_open(struct inode *inode, struct file *file)
506{
507 return single_open(file, uuids_show, inode->i_private);
508}
509
510static const struct file_operations uuids_fops = {
511 .open = uuids_open,
512 .read = seq_read,
513 .llseek = seq_lseek,
514 .release = single_release,
515};
516
Johan Hedberg9f616562011-04-28 11:28:54 -0700517static int auto_accept_delay_set(void *data, u64 val)
518{
519 struct hci_dev *hdev = data;
520
521 hci_dev_lock_bh(hdev);
522
523 hdev->auto_accept_delay = val;
524
525 hci_dev_unlock_bh(hdev);
526
527 return 0;
528}
529
530static int auto_accept_delay_get(void *data, u64 *val)
531{
532 struct hci_dev *hdev = data;
533
534 hci_dev_lock_bh(hdev);
535
536 *val = hdev->auto_accept_delay;
537
538 hci_dev_unlock_bh(hdev);
539
540 return 0;
541}
542
543DEFINE_SIMPLE_ATTRIBUTE(auto_accept_delay_fops, auto_accept_delay_get,
544 auto_accept_delay_set, "%llu\n");
545
Linus Torvalds1da177e2005-04-16 15:20:36 -0700546int hci_register_sysfs(struct hci_dev *hdev)
547{
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 Holtmannc13854ce2010-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 Holtmann90855d72008-08-18 13:23:53 +0200553 dev->type = &bt_host;
554 dev->class = bt_class;
Marcel Holtmanne9c4bec2006-10-15 17:30:50 +0200555 dev->parent = hdev->parent;
Marcel Holtmann27d35282006-07-03 10:02:37 +0200556
Marcel Holtmann2e792992008-11-30 12:17:29 +0100557 dev_set_name(dev, "%s", hdev->name);
Marcel Holtmann27d35282006-07-03 10:02:37 +0200558
Marcel Holtmanna91f2e32006-07-03 10:02:41 +0200559 dev_set_drvdata(dev, hdev);
560
561 err = device_register(dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700562 if (err < 0)
563 return err;
564
Marcel Holtmannca325f62010-02-08 16:22:31 +0100565 if (!bt_debugfs)
566 return 0;
567
568 hdev->debugfs = debugfs_create_dir(hdev->name, bt_debugfs);
569 if (!hdev->debugfs)
570 return 0;
571
572 debugfs_create_file("inquiry_cache", 0444, hdev->debugfs,
573 hdev, &inquiry_cache_fops);
574
Johan Hedberg32c2ece2010-05-18 13:54:49 +0200575 debugfs_create_file("blacklist", 0444, hdev->debugfs,
576 hdev, &blacklist_fops);
577
Johan Hedberg930e1332011-01-04 11:39:44 +0200578 debugfs_create_file("uuids", 0444, hdev->debugfs, hdev, &uuids_fops);
579
Johan Hedberg9f616562011-04-28 11:28:54 -0700580 debugfs_create_file("auto_accept_delay", 0444, hdev->debugfs, hdev,
581 &auto_accept_delay_fops);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700582 return 0;
583}
584
585void hci_unregister_sysfs(struct hci_dev *hdev)
586{
Marcel Holtmannc13854ce2010-02-08 15:27:07 +0100587 BT_DBG("%p name %s bus %d", hdev, hdev->name, hdev->bus);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700588
Marcel Holtmannca325f62010-02-08 16:22:31 +0100589 debugfs_remove_recursive(hdev->debugfs);
590
Marcel Holtmann4d0eb002006-07-06 12:34:41 +0200591 device_del(&hdev->dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700592}
593
594int __init bt_sysfs_init(void)
595{
Marcel Holtmannca325f62010-02-08 16:22:31 +0100596 bt_debugfs = debugfs_create_dir("bluetooth", NULL);
597
Marcel Holtmanna91f2e32006-07-03 10:02:41 +0200598 bt_class = class_create(THIS_MODULE, "bluetooth");
Marcel Holtmannf48fd9c2010-03-20 15:20:04 +0100599 if (IS_ERR(bt_class))
Marcel Holtmann90855d72008-08-18 13:23:53 +0200600 return PTR_ERR(bt_class);
Marcel Holtmann27d35282006-07-03 10:02:37 +0200601
602 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700603}
604
Arnaud Patard860e13b2006-09-28 15:29:37 -0700605void bt_sysfs_cleanup(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700606{
Marcel Holtmanna91f2e32006-07-03 10:02:41 +0200607 class_destroy(bt_class);
Marcel Holtmannca325f62010-02-08 16:22:31 +0100608
609 debugfs_remove_recursive(bt_debugfs);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700610}