blob: 1a9f0db027da006135458f5b1f4f8419e79ee976 [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>
Linus Torvalds1da177e2005-04-16 15:20:36 -07008
9#include <net/bluetooth/bluetooth.h>
10#include <net/bluetooth/hci_core.h>
11
Marcel Holtmannaef7d972010-03-21 05:27:45 +010012static struct class *bt_class;
Marcel Holtmann90855d72008-08-18 13:23:53 +020013
Marcel Holtmannca325f62010-02-08 16:22:31 +010014struct dentry *bt_debugfs = NULL;
15EXPORT_SYMBOL_GPL(bt_debugfs);
16
Marcel Holtmann90855d72008-08-18 13:23:53 +020017static inline char *link_typetostr(int type)
18{
19 switch (type) {
20 case ACL_LINK:
21 return "ACL";
22 case SCO_LINK:
23 return "SCO";
24 case ESCO_LINK:
25 return "eSCO";
26 default:
27 return "UNKNOWN";
28 }
29}
30
31static ssize_t show_link_type(struct device *dev, struct device_attribute *attr, char *buf)
32{
33 struct hci_conn *conn = dev_get_drvdata(dev);
34 return sprintf(buf, "%s\n", link_typetostr(conn->type));
35}
36
37static ssize_t show_link_address(struct device *dev, struct device_attribute *attr, char *buf)
38{
39 struct hci_conn *conn = dev_get_drvdata(dev);
40 bdaddr_t bdaddr;
41 baswap(&bdaddr, &conn->dst);
42 return sprintf(buf, "%s\n", batostr(&bdaddr));
43}
44
45static ssize_t show_link_features(struct device *dev, struct device_attribute *attr, char *buf)
46{
47 struct hci_conn *conn = dev_get_drvdata(dev);
48
49 return sprintf(buf, "0x%02x%02x%02x%02x%02x%02x%02x%02x\n",
50 conn->features[0], conn->features[1],
51 conn->features[2], conn->features[3],
52 conn->features[4], conn->features[5],
53 conn->features[6], conn->features[7]);
54}
55
56#define LINK_ATTR(_name,_mode,_show,_store) \
57struct device_attribute link_attr_##_name = __ATTR(_name,_mode,_show,_store)
58
59static LINK_ATTR(type, S_IRUGO, show_link_type, NULL);
60static LINK_ATTR(address, S_IRUGO, show_link_address, NULL);
61static LINK_ATTR(features, S_IRUGO, show_link_features, NULL);
62
63static struct attribute *bt_link_attrs[] = {
64 &link_attr_type.attr,
65 &link_attr_address.attr,
66 &link_attr_features.attr,
67 NULL
68};
69
70static struct attribute_group bt_link_group = {
71 .attrs = bt_link_attrs,
72};
73
David Brownella4dbd672009-06-24 10:06:31 -070074static const struct attribute_group *bt_link_groups[] = {
Marcel Holtmann90855d72008-08-18 13:23:53 +020075 &bt_link_group,
76 NULL
77};
78
79static void bt_link_release(struct device *dev)
80{
81 void *data = dev_get_drvdata(dev);
82 kfree(data);
83}
84
85static struct device_type bt_link = {
86 .name = "link",
87 .groups = bt_link_groups,
88 .release = bt_link_release,
89};
90
91static void add_conn(struct work_struct *work)
92{
Roger Quadrosf3784d82009-04-23 14:50:54 +030093 struct hci_conn *conn = container_of(work, struct hci_conn, work_add);
Marcel Holtmann457ca7b2009-05-05 13:09:01 -070094 struct hci_dev *hdev = conn->hdev;
Marcel Holtmann90855d72008-08-18 13:23:53 +020095
Marcel Holtmann457ca7b2009-05-05 13:09:01 -070096 dev_set_name(&conn->dev, "%s:%d", hdev->name, conn->handle);
97
Dave Youngf74c77c2009-10-18 20:24:41 +000098 dev_set_drvdata(&conn->dev, conn);
99
Marcel Holtmann90855d72008-08-18 13:23:53 +0200100 if (device_add(&conn->dev) < 0) {
101 BT_ERR("Failed to register connection device");
102 return;
103 }
Marcel Holtmann384943e2009-05-08 18:20:43 -0700104
105 hci_dev_hold(hdev);
Marcel Holtmann90855d72008-08-18 13:23:53 +0200106}
107
Marcel Holtmann90855d72008-08-18 13:23:53 +0200108/*
109 * The rfcomm tty device will possibly retain even when conn
110 * is down, and sysfs doesn't support move zombie device,
111 * so we should move the device before conn device is destroyed.
112 */
113static int __match_tty(struct device *dev, void *data)
114{
Kay Sieversfb28ad32008-11-10 13:55:14 -0800115 return !strncmp(dev_name(dev), "rfcomm", 6);
Marcel Holtmann90855d72008-08-18 13:23:53 +0200116}
117
118static void del_conn(struct work_struct *work)
119{
Roger Quadrosf3784d82009-04-23 14:50:54 +0300120 struct hci_conn *conn = container_of(work, struct hci_conn, work_del);
Marcel Holtmann90855d72008-08-18 13:23:53 +0200121 struct hci_dev *hdev = conn->hdev;
122
Marcel Holtmanna67e8992009-05-02 18:24:06 -0700123 if (!device_is_registered(&conn->dev))
124 return;
Roger Quadrosf3784d82009-04-23 14:50:54 +0300125
Marcel Holtmann90855d72008-08-18 13:23:53 +0200126 while (1) {
127 struct device *dev;
128
129 dev = device_find_child(&conn->dev, NULL, __match_tty);
130 if (!dev)
131 break;
Cornelia Huckffa6a702009-03-04 12:44:00 +0100132 device_move(dev, NULL, DPM_ORDER_DEV_LAST);
Marcel Holtmann90855d72008-08-18 13:23:53 +0200133 put_device(dev);
134 }
135
136 device_del(&conn->dev);
137 put_device(&conn->dev);
Marcel Holtmann384943e2009-05-08 18:20:43 -0700138
Marcel Holtmann90855d72008-08-18 13:23:53 +0200139 hci_dev_put(hdev);
140}
141
Marcel Holtmanna67e8992009-05-02 18:24:06 -0700142void hci_conn_init_sysfs(struct hci_conn *conn)
143{
144 struct hci_dev *hdev = conn->hdev;
145
146 BT_DBG("conn %p", conn);
147
148 conn->dev.type = &bt_link;
149 conn->dev.class = bt_class;
150 conn->dev.parent = &hdev->dev;
151
Marcel Holtmanna67e8992009-05-02 18:24:06 -0700152 device_initialize(&conn->dev);
153
154 INIT_WORK(&conn->work_add, add_conn);
155 INIT_WORK(&conn->work_del, del_conn);
156}
157
158void hci_conn_add_sysfs(struct hci_conn *conn)
159{
Marcel Holtmanna67e8992009-05-02 18:24:06 -0700160 BT_DBG("conn %p", conn);
161
Marcel Holtmannf48fd9c2010-03-20 15:20:04 +0100162 queue_work(conn->hdev->workqueue, &conn->work_add);
Marcel Holtmanna67e8992009-05-02 18:24:06 -0700163}
164
Marcel Holtmann90855d72008-08-18 13:23:53 +0200165void hci_conn_del_sysfs(struct hci_conn *conn)
166{
167 BT_DBG("conn %p", conn);
168
Marcel Holtmannf48fd9c2010-03-20 15:20:04 +0100169 queue_work(conn->hdev->workqueue, &conn->work_del);
Marcel Holtmann90855d72008-08-18 13:23:53 +0200170}
171
Marcel Holtmannc13854c2010-02-08 15:27:07 +0100172static inline char *host_bustostr(int bus)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700173{
Marcel Holtmannc13854c2010-02-08 15:27:07 +0100174 switch (bus) {
Marcel Holtmann0ac53932006-07-08 13:57:15 +0200175 case HCI_VIRTUAL:
Marcel Holtmann4d0eb002006-07-06 12:34:41 +0200176 return "VIRTUAL";
177 case HCI_USB:
178 return "USB";
179 case HCI_PCCARD:
180 return "PCCARD";
181 case HCI_UART:
182 return "UART";
183 case HCI_RS232:
184 return "RS232";
185 case HCI_PCI:
186 return "PCI";
Marcel Holtmann0ac53932006-07-08 13:57:15 +0200187 case HCI_SDIO:
188 return "SDIO";
Marcel Holtmann4d0eb002006-07-06 12:34:41 +0200189 default:
190 return "UNKNOWN";
191 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700192}
193
Marcel Holtmann943da252010-02-13 02:28:41 +0100194static inline char *host_typetostr(int type)
195{
196 switch (type) {
197 case HCI_BREDR:
198 return "BR/EDR";
David Vrabel8f1e1742010-08-09 17:38:10 -0400199 case HCI_AMP:
200 return "AMP";
Marcel Holtmann943da252010-02-13 02:28:41 +0100201 default:
202 return "UNKNOWN";
203 }
204}
205
Marcel Holtmannc13854c2010-02-08 15:27:07 +0100206static ssize_t show_bus(struct device *dev, struct device_attribute *attr, char *buf)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700207{
Marcel Holtmanna91f2e32006-07-03 10:02:41 +0200208 struct hci_dev *hdev = dev_get_drvdata(dev);
Marcel Holtmannc13854c2010-02-08 15:27:07 +0100209 return sprintf(buf, "%s\n", host_bustostr(hdev->bus));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700210}
211
Marcel Holtmann943da252010-02-13 02:28:41 +0100212static ssize_t show_type(struct device *dev, struct device_attribute *attr, char *buf)
213{
214 struct hci_dev *hdev = dev_get_drvdata(dev);
215 return sprintf(buf, "%s\n", host_typetostr(hdev->dev_type));
216}
217
Marcel Holtmanna9de9242007-10-20 13:33:56 +0200218static ssize_t show_name(struct device *dev, struct device_attribute *attr, char *buf)
219{
220 struct hci_dev *hdev = dev_get_drvdata(dev);
221 char name[249];
222 int i;
223
224 for (i = 0; i < 248; i++)
225 name[i] = hdev->dev_name[i];
226
227 name[248] = '\0';
228 return sprintf(buf, "%s\n", name);
229}
230
231static ssize_t show_class(struct device *dev, struct device_attribute *attr, char *buf)
232{
233 struct hci_dev *hdev = dev_get_drvdata(dev);
234 return sprintf(buf, "0x%.2x%.2x%.2x\n",
235 hdev->dev_class[2], hdev->dev_class[1], hdev->dev_class[0]);
236}
237
Marcel Holtmanna91f2e32006-07-03 10:02:41 +0200238static ssize_t show_address(struct device *dev, struct device_attribute *attr, char *buf)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700239{
Marcel Holtmanna91f2e32006-07-03 10:02:41 +0200240 struct hci_dev *hdev = dev_get_drvdata(dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700241 bdaddr_t bdaddr;
242 baswap(&bdaddr, &hdev->bdaddr);
243 return sprintf(buf, "%s\n", batostr(&bdaddr));
244}
245
Marcel Holtmanna9de9242007-10-20 13:33:56 +0200246static ssize_t show_features(struct device *dev, struct device_attribute *attr, char *buf)
247{
248 struct hci_dev *hdev = dev_get_drvdata(dev);
249
250 return sprintf(buf, "0x%02x%02x%02x%02x%02x%02x%02x%02x\n",
251 hdev->features[0], hdev->features[1],
252 hdev->features[2], hdev->features[3],
253 hdev->features[4], hdev->features[5],
254 hdev->features[6], hdev->features[7]);
255}
256
Marcel Holtmann1143e5a2006-09-23 09:57:20 +0200257static ssize_t show_manufacturer(struct device *dev, struct device_attribute *attr, char *buf)
258{
259 struct hci_dev *hdev = dev_get_drvdata(dev);
260 return sprintf(buf, "%d\n", hdev->manufacturer);
261}
262
263static ssize_t show_hci_version(struct device *dev, struct device_attribute *attr, char *buf)
264{
265 struct hci_dev *hdev = dev_get_drvdata(dev);
266 return sprintf(buf, "%d\n", hdev->hci_ver);
267}
268
269static ssize_t show_hci_revision(struct device *dev, struct device_attribute *attr, char *buf)
270{
271 struct hci_dev *hdev = dev_get_drvdata(dev);
272 return sprintf(buf, "%d\n", hdev->hci_rev);
273}
274
Marcel Holtmanna91f2e32006-07-03 10:02:41 +0200275static ssize_t show_idle_timeout(struct device *dev, struct device_attribute *attr, char *buf)
Marcel Holtmann04837f62006-07-03 10:02:33 +0200276{
Marcel Holtmanna91f2e32006-07-03 10:02:41 +0200277 struct hci_dev *hdev = dev_get_drvdata(dev);
Marcel Holtmann04837f62006-07-03 10:02:33 +0200278 return sprintf(buf, "%d\n", hdev->idle_timeout);
279}
280
Marcel Holtmanna91f2e32006-07-03 10:02:41 +0200281static 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 +0200282{
Marcel Holtmanna91f2e32006-07-03 10:02:41 +0200283 struct hci_dev *hdev = dev_get_drvdata(dev);
Tomas Winkler7b767ca2010-03-09 21:38:03 +0200284 unsigned long val;
Marcel Holtmann04837f62006-07-03 10:02:33 +0200285
Tomas Winkler7b767ca2010-03-09 21:38:03 +0200286 if (strict_strtoul(buf, 0, &val) < 0)
Marcel Holtmann04837f62006-07-03 10:02:33 +0200287 return -EINVAL;
288
289 if (val != 0 && (val < 500 || val > 3600000))
290 return -EINVAL;
291
292 hdev->idle_timeout = val;
293
294 return count;
295}
296
Marcel Holtmanna91f2e32006-07-03 10:02:41 +0200297static ssize_t show_sniff_max_interval(struct device *dev, struct device_attribute *attr, char *buf)
Marcel Holtmann04837f62006-07-03 10:02:33 +0200298{
Marcel Holtmanna91f2e32006-07-03 10:02:41 +0200299 struct hci_dev *hdev = dev_get_drvdata(dev);
Marcel Holtmann04837f62006-07-03 10:02:33 +0200300 return sprintf(buf, "%d\n", hdev->sniff_max_interval);
301}
302
Marcel Holtmanna91f2e32006-07-03 10:02:41 +0200303static 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 +0200304{
Marcel Holtmanna91f2e32006-07-03 10:02:41 +0200305 struct hci_dev *hdev = dev_get_drvdata(dev);
Tomas Winkler7b767ca2010-03-09 21:38:03 +0200306 unsigned long val;
Marcel Holtmann04837f62006-07-03 10:02:33 +0200307
Tomas Winkler7b767ca2010-03-09 21:38:03 +0200308 if (strict_strtoul(buf, 0, &val) < 0)
Marcel Holtmann04837f62006-07-03 10:02:33 +0200309 return -EINVAL;
310
311 if (val < 0x0002 || val > 0xFFFE || val % 2)
312 return -EINVAL;
313
314 if (val < hdev->sniff_min_interval)
315 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);
Tomas Winkler7b767ca2010-03-09 21:38:03 +0200331 unsigned long val;
Marcel Holtmann04837f62006-07-03 10:02:33 +0200332
Tomas Winkler7b767ca2010-03-09 21:38:03 +0200333 if (strict_strtoul(buf, 0, &val) < 0)
Marcel Holtmann04837f62006-07-03 10:02:33 +0200334 return -EINVAL;
335
336 if (val < 0x0002 || val > 0xFFFE || val % 2)
337 return -EINVAL;
338
339 if (val > hdev->sniff_max_interval)
340 return -EINVAL;
341
342 hdev->sniff_min_interval = val;
343
344 return count;
345}
346
Marcel Holtmannc13854c2010-02-08 15:27:07 +0100347static DEVICE_ATTR(bus, S_IRUGO, show_bus, NULL);
Marcel Holtmann943da252010-02-13 02:28:41 +0100348static DEVICE_ATTR(type, S_IRUGO, show_type, NULL);
Marcel Holtmanna9de9242007-10-20 13:33:56 +0200349static DEVICE_ATTR(name, S_IRUGO, show_name, NULL);
350static DEVICE_ATTR(class, S_IRUGO, show_class, NULL);
Marcel Holtmanna91f2e32006-07-03 10:02:41 +0200351static DEVICE_ATTR(address, S_IRUGO, show_address, NULL);
Marcel Holtmanna9de9242007-10-20 13:33:56 +0200352static DEVICE_ATTR(features, S_IRUGO, show_features, NULL);
Marcel Holtmann1143e5a2006-09-23 09:57:20 +0200353static DEVICE_ATTR(manufacturer, S_IRUGO, show_manufacturer, NULL);
354static DEVICE_ATTR(hci_version, S_IRUGO, show_hci_version, NULL);
355static DEVICE_ATTR(hci_revision, S_IRUGO, show_hci_revision, NULL);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700356
Marcel Holtmanna91f2e32006-07-03 10:02:41 +0200357static DEVICE_ATTR(idle_timeout, S_IRUGO | S_IWUSR,
Marcel Holtmann04837f62006-07-03 10:02:33 +0200358 show_idle_timeout, store_idle_timeout);
Marcel Holtmanna91f2e32006-07-03 10:02:41 +0200359static DEVICE_ATTR(sniff_max_interval, S_IRUGO | S_IWUSR,
Marcel Holtmann04837f62006-07-03 10:02:33 +0200360 show_sniff_max_interval, store_sniff_max_interval);
Marcel Holtmanna91f2e32006-07-03 10:02:41 +0200361static DEVICE_ATTR(sniff_min_interval, S_IRUGO | S_IWUSR,
Marcel Holtmann04837f62006-07-03 10:02:33 +0200362 show_sniff_min_interval, store_sniff_min_interval);
363
Marcel Holtmann90855d72008-08-18 13:23:53 +0200364static struct attribute *bt_host_attrs[] = {
Marcel Holtmannc13854c2010-02-08 15:27:07 +0100365 &dev_attr_bus.attr,
Marcel Holtmann943da252010-02-13 02:28:41 +0100366 &dev_attr_type.attr,
Marcel Holtmann90855d72008-08-18 13:23:53 +0200367 &dev_attr_name.attr,
368 &dev_attr_class.attr,
369 &dev_attr_address.attr,
370 &dev_attr_features.attr,
371 &dev_attr_manufacturer.attr,
372 &dev_attr_hci_version.attr,
373 &dev_attr_hci_revision.attr,
Marcel Holtmann90855d72008-08-18 13:23:53 +0200374 &dev_attr_idle_timeout.attr,
375 &dev_attr_sniff_max_interval.attr,
376 &dev_attr_sniff_min_interval.attr,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700377 NULL
378};
379
Marcel Holtmann90855d72008-08-18 13:23:53 +0200380static struct attribute_group bt_host_group = {
381 .attrs = bt_host_attrs,
382};
Marcel Holtmannb219e3a2006-07-06 12:38:46 +0200383
David Brownella4dbd672009-06-24 10:06:31 -0700384static const struct attribute_group *bt_host_groups[] = {
Marcel Holtmann90855d72008-08-18 13:23:53 +0200385 &bt_host_group,
Marcel Holtmannb219e3a2006-07-06 12:38:46 +0200386 NULL
387};
388
Marcel Holtmann90855d72008-08-18 13:23:53 +0200389static void bt_host_release(struct device *dev)
Marcel Holtmanna91f2e32006-07-03 10:02:41 +0200390{
Marcel Holtmannb219e3a2006-07-06 12:38:46 +0200391 void *data = dev_get_drvdata(dev);
392 kfree(data);
393}
394
Marcel Holtmann90855d72008-08-18 13:23:53 +0200395static struct device_type bt_host = {
396 .name = "host",
397 .groups = bt_host_groups,
398 .release = bt_host_release,
399};
Marcel Holtmanna91f2e32006-07-03 10:02:41 +0200400
Marcel Holtmannd4612cb2010-03-02 15:48:23 +0000401static int inquiry_cache_show(struct seq_file *f, void *p)
Marcel Holtmannca325f62010-02-08 16:22:31 +0100402{
Marcel Holtmannd4612cb2010-03-02 15:48:23 +0000403 struct hci_dev *hdev = f->private;
Marcel Holtmannca325f62010-02-08 16:22:31 +0100404 struct inquiry_cache *cache = &hdev->inq_cache;
405 struct inquiry_entry *e;
Marcel Holtmannca325f62010-02-08 16:22:31 +0100406
407 hci_dev_lock_bh(hdev);
408
409 for (e = cache->list; e; e = e->next) {
410 struct inquiry_data *data = &e->data;
411 bdaddr_t bdaddr;
412 baswap(&bdaddr, &data->bdaddr);
Marcel Holtmannd4612cb2010-03-02 15:48:23 +0000413 seq_printf(f, "%s %d %d %d 0x%.2x%.2x%.2x 0x%.4x %d %d %u\n",
414 batostr(&bdaddr),
415 data->pscan_rep_mode, data->pscan_period_mode,
416 data->pscan_mode, data->dev_class[2],
417 data->dev_class[1], data->dev_class[0],
418 __le16_to_cpu(data->clock_offset),
419 data->rssi, data->ssp_mode, e->timestamp);
Marcel Holtmannca325f62010-02-08 16:22:31 +0100420 }
421
422 hci_dev_unlock_bh(hdev);
423
Marcel Holtmannd4612cb2010-03-02 15:48:23 +0000424 return 0;
425}
426
427static int inquiry_cache_open(struct inode *inode, struct file *file)
428{
429 return single_open(file, inquiry_cache_show, inode->i_private);
Marcel Holtmannca325f62010-02-08 16:22:31 +0100430}
431
432static const struct file_operations inquiry_cache_fops = {
Marcel Holtmannd4612cb2010-03-02 15:48:23 +0000433 .open = inquiry_cache_open,
434 .read = seq_read,
435 .llseek = seq_lseek,
436 .release = single_release,
Marcel Holtmannca325f62010-02-08 16:22:31 +0100437};
438
Johan Hedberg32c2ece2010-05-18 13:54:49 +0200439static int blacklist_show(struct seq_file *f, void *p)
440{
441 struct hci_dev *hdev = f->private;
Johan Hedberg32c2ece2010-05-18 13:54:49 +0200442 struct list_head *l;
443
444 hci_dev_lock_bh(hdev);
445
David Millerea4bd8b2010-07-30 21:54:49 -0700446 list_for_each(l, &hdev->blacklist) {
Johan Hedberg32c2ece2010-05-18 13:54:49 +0200447 struct bdaddr_list *b;
448 bdaddr_t bdaddr;
449
450 b = list_entry(l, struct bdaddr_list, list);
451
452 baswap(&bdaddr, &b->bdaddr);
453
454 seq_printf(f, "%s\n", batostr(&bdaddr));
455 }
456
457 hci_dev_unlock_bh(hdev);
458
459 return 0;
460}
461
462static int blacklist_open(struct inode *inode, struct file *file)
463{
464 return single_open(file, blacklist_show, inode->i_private);
465}
466
467static const struct file_operations blacklist_fops = {
468 .open = blacklist_open,
469 .read = seq_read,
470 .llseek = seq_lseek,
471 .release = single_release,
472};
Linus Torvalds1da177e2005-04-16 15:20:36 -0700473int hci_register_sysfs(struct hci_dev *hdev)
474{
Marcel Holtmanna91f2e32006-07-03 10:02:41 +0200475 struct device *dev = &hdev->dev;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700476 int err;
477
Marcel Holtmannc13854c2010-02-08 15:27:07 +0100478 BT_DBG("%p name %s bus %d", hdev, hdev->name, hdev->bus);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700479
Marcel Holtmann90855d72008-08-18 13:23:53 +0200480 dev->type = &bt_host;
481 dev->class = bt_class;
Marcel Holtmanne9c4bec2006-10-15 17:30:50 +0200482 dev->parent = hdev->parent;
Marcel Holtmann27d35282006-07-03 10:02:37 +0200483
Marcel Holtmann2e792992008-11-30 12:17:29 +0100484 dev_set_name(dev, "%s", hdev->name);
Marcel Holtmann27d35282006-07-03 10:02:37 +0200485
Marcel Holtmanna91f2e32006-07-03 10:02:41 +0200486 dev_set_drvdata(dev, hdev);
487
488 err = device_register(dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700489 if (err < 0)
490 return err;
491
Marcel Holtmannca325f62010-02-08 16:22:31 +0100492 if (!bt_debugfs)
493 return 0;
494
495 hdev->debugfs = debugfs_create_dir(hdev->name, bt_debugfs);
496 if (!hdev->debugfs)
497 return 0;
498
499 debugfs_create_file("inquiry_cache", 0444, hdev->debugfs,
500 hdev, &inquiry_cache_fops);
501
Johan Hedberg32c2ece2010-05-18 13:54:49 +0200502 debugfs_create_file("blacklist", 0444, hdev->debugfs,
503 hdev, &blacklist_fops);
504
Linus Torvalds1da177e2005-04-16 15:20:36 -0700505 return 0;
506}
507
508void hci_unregister_sysfs(struct hci_dev *hdev)
509{
Marcel Holtmannc13854c2010-02-08 15:27:07 +0100510 BT_DBG("%p name %s bus %d", hdev, hdev->name, hdev->bus);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700511
Marcel Holtmannca325f62010-02-08 16:22:31 +0100512 debugfs_remove_recursive(hdev->debugfs);
513
Marcel Holtmann4d0eb002006-07-06 12:34:41 +0200514 device_del(&hdev->dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700515}
516
517int __init bt_sysfs_init(void)
518{
Marcel Holtmannca325f62010-02-08 16:22:31 +0100519 bt_debugfs = debugfs_create_dir("bluetooth", NULL);
520
Marcel Holtmanna91f2e32006-07-03 10:02:41 +0200521 bt_class = class_create(THIS_MODULE, "bluetooth");
Marcel Holtmannf48fd9c2010-03-20 15:20:04 +0100522 if (IS_ERR(bt_class))
Marcel Holtmann90855d72008-08-18 13:23:53 +0200523 return PTR_ERR(bt_class);
Marcel Holtmann27d35282006-07-03 10:02:37 +0200524
525 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700526}
527
Arnaud Patard860e13b2006-09-28 15:29:37 -0700528void bt_sysfs_cleanup(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700529{
Marcel Holtmanna91f2e32006-07-03 10:02:41 +0200530 class_destroy(bt_class);
Marcel Holtmannca325f62010-02-08 16:22:31 +0100531
532 debugfs_remove_recursive(bt_debugfs);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700533}