blob: db6af705f8f1469bb591d9692b77c5333bd01155 [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
Gustavo F. Padovan602f9882011-02-17 19:22:19 -030014struct dentry *bt_debugfs;
Marcel Holtmannca325f62010-02-08 16:22:31 +010015EXPORT_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";
Peter Hurley21061df2011-08-24 10:04:56 -040026 case LE_LINK:
27 return "LE";
Marcel Holtmann90855d72008-08-18 13:23:53 +020028 default:
29 return "UNKNOWN";
30 }
31}
32
33static ssize_t show_link_type(struct device *dev, struct device_attribute *attr, char *buf)
34{
35 struct hci_conn *conn = dev_get_drvdata(dev);
36 return sprintf(buf, "%s\n", link_typetostr(conn->type));
37}
38
39static ssize_t show_link_address(struct device *dev, struct device_attribute *attr, char *buf)
40{
41 struct hci_conn *conn = dev_get_drvdata(dev);
Gustavo F. Padovand6b2eb22010-09-03 18:29:46 -030042 return sprintf(buf, "%s\n", batostr(&conn->dst));
Marcel Holtmann90855d72008-08-18 13:23:53 +020043}
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
Gustavo F. Padovan602f9882011-02-17 19:22:19 -030056#define LINK_ATTR(_name, _mode, _show, _store) \
57struct device_attribute link_attr_##_name = __ATTR(_name, _mode, _show, _store)
Marcel Holtmann90855d72008-08-18 13:23:53 +020058
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
Gustavo F. Padovan6d438e32011-12-17 18:53:02 -020091/*
92 * The rfcomm tty device will possibly retain even when conn
93 * is down, and sysfs doesn't support move zombie device,
94 * so we should move the device before conn device is destroyed.
95 */
96static int __match_tty(struct device *dev, void *data)
Marcel Holtmann90855d72008-08-18 13:23:53 +020097{
Gustavo F. Padovan6d438e32011-12-17 18:53:02 -020098 return !strncmp(dev_name(dev), "rfcomm", 6);
99}
100
101void hci_conn_init_sysfs(struct hci_conn *conn)
102{
Marcel Holtmann457ca7b2009-05-05 13:09:01 -0700103 struct hci_dev *hdev = conn->hdev;
Marcel Holtmann90855d72008-08-18 13:23:53 +0200104
Gustavo F. Padovan6d438e32011-12-17 18:53:02 -0200105 BT_DBG("conn %p", conn);
106
107 conn->dev.type = &bt_link;
108 conn->dev.class = bt_class;
109 conn->dev.parent = &hdev->dev;
110
111 device_initialize(&conn->dev);
112}
113
114void hci_conn_add_sysfs(struct hci_conn *conn)
115{
116 struct hci_dev *hdev = conn->hdev;
117
118 BT_DBG("conn %p", conn);
119
Marcel Holtmann457ca7b2009-05-05 13:09:01 -0700120 dev_set_name(&conn->dev, "%s:%d", hdev->name, conn->handle);
121
Dave Youngf74c77c2009-10-18 20:24:41 +0000122 dev_set_drvdata(&conn->dev, conn);
123
Marcel Holtmann90855d72008-08-18 13:23:53 +0200124 if (device_add(&conn->dev) < 0) {
125 BT_ERR("Failed to register connection device");
126 return;
127 }
Marcel Holtmann384943e2009-05-08 18:20:43 -0700128
129 hci_dev_hold(hdev);
Marcel Holtmann90855d72008-08-18 13:23:53 +0200130}
131
Gustavo F. Padovan6d438e32011-12-17 18:53:02 -0200132void hci_conn_del_sysfs(struct hci_conn *conn)
Marcel Holtmann90855d72008-08-18 13:23:53 +0200133{
Marcel Holtmann90855d72008-08-18 13:23:53 +0200134 struct hci_dev *hdev = conn->hdev;
135
Marcel Holtmanna67e8992009-05-02 18:24:06 -0700136 if (!device_is_registered(&conn->dev))
137 return;
Roger Quadrosf3784d82009-04-23 14:50:54 +0300138
Marcel Holtmann90855d72008-08-18 13:23:53 +0200139 while (1) {
140 struct device *dev;
141
142 dev = device_find_child(&conn->dev, NULL, __match_tty);
143 if (!dev)
144 break;
Cornelia Huckffa6a702009-03-04 12:44:00 +0100145 device_move(dev, NULL, DPM_ORDER_DEV_LAST);
Marcel Holtmann90855d72008-08-18 13:23:53 +0200146 put_device(dev);
147 }
148
149 device_del(&conn->dev);
150 put_device(&conn->dev);
Marcel Holtmann384943e2009-05-08 18:20:43 -0700151
Marcel Holtmann90855d72008-08-18 13:23:53 +0200152 hci_dev_put(hdev);
153}
154
Marcel Holtmannc13854c2010-02-08 15:27:07 +0100155static inline char *host_bustostr(int bus)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700156{
Marcel Holtmannc13854c2010-02-08 15:27:07 +0100157 switch (bus) {
Marcel Holtmann0ac53932006-07-08 13:57:15 +0200158 case HCI_VIRTUAL:
Marcel Holtmann4d0eb002006-07-06 12:34:41 +0200159 return "VIRTUAL";
160 case HCI_USB:
161 return "USB";
162 case HCI_PCCARD:
163 return "PCCARD";
164 case HCI_UART:
165 return "UART";
166 case HCI_RS232:
167 return "RS232";
168 case HCI_PCI:
169 return "PCI";
Marcel Holtmann0ac53932006-07-08 13:57:15 +0200170 case HCI_SDIO:
171 return "SDIO";
Marcel Holtmann4d0eb002006-07-06 12:34:41 +0200172 default:
173 return "UNKNOWN";
174 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700175}
176
Marcel Holtmann943da252010-02-13 02:28:41 +0100177static inline char *host_typetostr(int type)
178{
179 switch (type) {
180 case HCI_BREDR:
181 return "BR/EDR";
David Vrabel8f1e1742010-08-09 17:38:10 -0400182 case HCI_AMP:
183 return "AMP";
Marcel Holtmann943da252010-02-13 02:28:41 +0100184 default:
185 return "UNKNOWN";
186 }
187}
188
Marcel Holtmannc13854c2010-02-08 15:27:07 +0100189static ssize_t show_bus(struct device *dev, struct device_attribute *attr, char *buf)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700190{
Marcel Holtmanna91f2e32006-07-03 10:02:41 +0200191 struct hci_dev *hdev = dev_get_drvdata(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
Marcel Holtmann943da252010-02-13 02:28:41 +0100195static ssize_t show_type(struct device *dev, struct device_attribute *attr, char *buf)
196{
197 struct hci_dev *hdev = dev_get_drvdata(dev);
198 return sprintf(buf, "%s\n", host_typetostr(hdev->dev_type));
199}
200
Marcel Holtmanna9de9242007-10-20 13:33:56 +0200201static ssize_t show_name(struct device *dev, struct device_attribute *attr, char *buf)
202{
203 struct hci_dev *hdev = dev_get_drvdata(dev);
Johan Hedberg1f6c6372011-03-16 14:29:35 +0200204 char name[HCI_MAX_NAME_LENGTH + 1];
Marcel Holtmanna9de9242007-10-20 13:33:56 +0200205 int i;
206
Johan Hedberg1f6c6372011-03-16 14:29:35 +0200207 for (i = 0; i < HCI_MAX_NAME_LENGTH; i++)
Marcel Holtmanna9de9242007-10-20 13:33:56 +0200208 name[i] = hdev->dev_name[i];
209
Johan Hedberg1f6c6372011-03-16 14:29:35 +0200210 name[HCI_MAX_NAME_LENGTH] = '\0';
Marcel Holtmanna9de9242007-10-20 13:33:56 +0200211 return sprintf(buf, "%s\n", name);
212}
213
214static ssize_t show_class(struct device *dev, struct device_attribute *attr, char *buf)
215{
216 struct hci_dev *hdev = dev_get_drvdata(dev);
217 return sprintf(buf, "0x%.2x%.2x%.2x\n",
218 hdev->dev_class[2], hdev->dev_class[1], hdev->dev_class[0]);
219}
220
Marcel Holtmanna91f2e32006-07-03 10:02:41 +0200221static ssize_t show_address(struct device *dev, struct device_attribute *attr, char *buf)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700222{
Marcel Holtmanna91f2e32006-07-03 10:02:41 +0200223 struct hci_dev *hdev = dev_get_drvdata(dev);
Gustavo F. Padovand6b2eb22010-09-03 18:29:46 -0300224 return sprintf(buf, "%s\n", batostr(&hdev->bdaddr));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700225}
226
Marcel Holtmanna9de9242007-10-20 13:33:56 +0200227static ssize_t show_features(struct device *dev, struct device_attribute *attr, char *buf)
228{
229 struct hci_dev *hdev = dev_get_drvdata(dev);
230
231 return sprintf(buf, "0x%02x%02x%02x%02x%02x%02x%02x%02x\n",
232 hdev->features[0], hdev->features[1],
233 hdev->features[2], hdev->features[3],
234 hdev->features[4], hdev->features[5],
235 hdev->features[6], hdev->features[7]);
236}
237
Marcel Holtmann1143e5a2006-09-23 09:57:20 +0200238static ssize_t show_manufacturer(struct device *dev, struct device_attribute *attr, char *buf)
239{
240 struct hci_dev *hdev = dev_get_drvdata(dev);
241 return sprintf(buf, "%d\n", hdev->manufacturer);
242}
243
244static ssize_t show_hci_version(struct device *dev, struct device_attribute *attr, char *buf)
245{
246 struct hci_dev *hdev = dev_get_drvdata(dev);
247 return sprintf(buf, "%d\n", hdev->hci_ver);
248}
249
250static ssize_t show_hci_revision(struct device *dev, struct device_attribute *attr, char *buf)
251{
252 struct hci_dev *hdev = dev_get_drvdata(dev);
253 return sprintf(buf, "%d\n", hdev->hci_rev);
254}
255
Marcel Holtmanna91f2e32006-07-03 10:02:41 +0200256static ssize_t show_idle_timeout(struct device *dev, struct device_attribute *attr, char *buf)
Marcel Holtmann04837f62006-07-03 10:02:33 +0200257{
Marcel Holtmanna91f2e32006-07-03 10:02:41 +0200258 struct hci_dev *hdev = dev_get_drvdata(dev);
Marcel Holtmann04837f62006-07-03 10:02:33 +0200259 return sprintf(buf, "%d\n", hdev->idle_timeout);
260}
261
Marcel Holtmanna91f2e32006-07-03 10:02:41 +0200262static 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 +0200263{
Marcel Holtmanna91f2e32006-07-03 10:02:41 +0200264 struct hci_dev *hdev = dev_get_drvdata(dev);
Alexey Dobriyandb940cb2011-04-02 14:19:41 +0300265 unsigned int val;
266 int rv;
Marcel Holtmann04837f62006-07-03 10:02:33 +0200267
Alexey Dobriyandb940cb2011-04-02 14:19:41 +0300268 rv = kstrtouint(buf, 0, &val);
269 if (rv < 0)
270 return rv;
Marcel Holtmann04837f62006-07-03 10:02:33 +0200271
272 if (val != 0 && (val < 500 || val > 3600000))
273 return -EINVAL;
274
275 hdev->idle_timeout = val;
276
277 return count;
278}
279
Marcel Holtmanna91f2e32006-07-03 10:02:41 +0200280static ssize_t show_sniff_max_interval(struct device *dev, struct device_attribute *attr, char *buf)
Marcel Holtmann04837f62006-07-03 10:02:33 +0200281{
Marcel Holtmanna91f2e32006-07-03 10:02:41 +0200282 struct hci_dev *hdev = dev_get_drvdata(dev);
Marcel Holtmann04837f62006-07-03 10:02:33 +0200283 return sprintf(buf, "%d\n", hdev->sniff_max_interval);
284}
285
Marcel Holtmanna91f2e32006-07-03 10:02:41 +0200286static 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 +0200287{
Marcel Holtmanna91f2e32006-07-03 10:02:41 +0200288 struct hci_dev *hdev = dev_get_drvdata(dev);
Alexey Dobriyandb940cb2011-04-02 14:19:41 +0300289 u16 val;
290 int rv;
Marcel Holtmann04837f62006-07-03 10:02:33 +0200291
Alexey Dobriyandb940cb2011-04-02 14:19:41 +0300292 rv = kstrtou16(buf, 0, &val);
293 if (rv < 0)
294 return rv;
Marcel Holtmann04837f62006-07-03 10:02:33 +0200295
Alexey Dobriyandb940cb2011-04-02 14:19:41 +0300296 if (val == 0 || val % 2 || val < hdev->sniff_min_interval)
Marcel Holtmann04837f62006-07-03 10:02:33 +0200297 return -EINVAL;
298
299 hdev->sniff_max_interval = val;
300
301 return count;
302}
303
Marcel Holtmanna91f2e32006-07-03 10:02:41 +0200304static ssize_t show_sniff_min_interval(struct device *dev, struct device_attribute *attr, char *buf)
Marcel Holtmann04837f62006-07-03 10:02:33 +0200305{
Marcel Holtmanna91f2e32006-07-03 10:02:41 +0200306 struct hci_dev *hdev = dev_get_drvdata(dev);
Marcel Holtmann04837f62006-07-03 10:02:33 +0200307 return sprintf(buf, "%d\n", hdev->sniff_min_interval);
308}
309
Marcel Holtmanna91f2e32006-07-03 10:02:41 +0200310static 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 +0200311{
Marcel Holtmanna91f2e32006-07-03 10:02:41 +0200312 struct hci_dev *hdev = dev_get_drvdata(dev);
Alexey Dobriyandb940cb2011-04-02 14:19:41 +0300313 u16 val;
314 int rv;
Marcel Holtmann04837f62006-07-03 10:02:33 +0200315
Alexey Dobriyandb940cb2011-04-02 14:19:41 +0300316 rv = kstrtou16(buf, 0, &val);
317 if (rv < 0)
318 return rv;
Marcel Holtmann04837f62006-07-03 10:02:33 +0200319
Alexey Dobriyandb940cb2011-04-02 14:19:41 +0300320 if (val == 0 || val % 2 || val > hdev->sniff_max_interval)
Marcel Holtmann04837f62006-07-03 10:02:33 +0200321 return -EINVAL;
322
323 hdev->sniff_min_interval = val;
324
325 return count;
326}
327
Marcel Holtmannc13854c2010-02-08 15:27:07 +0100328static DEVICE_ATTR(bus, S_IRUGO, show_bus, NULL);
Marcel Holtmann943da252010-02-13 02:28:41 +0100329static DEVICE_ATTR(type, S_IRUGO, show_type, NULL);
Marcel Holtmanna9de9242007-10-20 13:33:56 +0200330static DEVICE_ATTR(name, S_IRUGO, show_name, NULL);
331static DEVICE_ATTR(class, S_IRUGO, show_class, NULL);
Marcel Holtmanna91f2e32006-07-03 10:02:41 +0200332static DEVICE_ATTR(address, S_IRUGO, show_address, NULL);
Marcel Holtmanna9de9242007-10-20 13:33:56 +0200333static DEVICE_ATTR(features, S_IRUGO, show_features, NULL);
Marcel Holtmann1143e5a2006-09-23 09:57:20 +0200334static DEVICE_ATTR(manufacturer, S_IRUGO, show_manufacturer, NULL);
335static DEVICE_ATTR(hci_version, S_IRUGO, show_hci_version, NULL);
336static DEVICE_ATTR(hci_revision, S_IRUGO, show_hci_revision, NULL);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700337
Marcel Holtmanna91f2e32006-07-03 10:02:41 +0200338static DEVICE_ATTR(idle_timeout, S_IRUGO | S_IWUSR,
Marcel Holtmann04837f62006-07-03 10:02:33 +0200339 show_idle_timeout, store_idle_timeout);
Marcel Holtmanna91f2e32006-07-03 10:02:41 +0200340static DEVICE_ATTR(sniff_max_interval, S_IRUGO | S_IWUSR,
Marcel Holtmann04837f62006-07-03 10:02:33 +0200341 show_sniff_max_interval, store_sniff_max_interval);
Marcel Holtmanna91f2e32006-07-03 10:02:41 +0200342static DEVICE_ATTR(sniff_min_interval, S_IRUGO | S_IWUSR,
Marcel Holtmann04837f62006-07-03 10:02:33 +0200343 show_sniff_min_interval, store_sniff_min_interval);
344
Marcel Holtmann90855d72008-08-18 13:23:53 +0200345static struct attribute *bt_host_attrs[] = {
Marcel Holtmannc13854c2010-02-08 15:27:07 +0100346 &dev_attr_bus.attr,
Marcel Holtmann943da252010-02-13 02:28:41 +0100347 &dev_attr_type.attr,
Marcel Holtmann90855d72008-08-18 13:23:53 +0200348 &dev_attr_name.attr,
349 &dev_attr_class.attr,
350 &dev_attr_address.attr,
351 &dev_attr_features.attr,
352 &dev_attr_manufacturer.attr,
353 &dev_attr_hci_version.attr,
354 &dev_attr_hci_revision.attr,
Marcel Holtmann90855d72008-08-18 13:23:53 +0200355 &dev_attr_idle_timeout.attr,
356 &dev_attr_sniff_max_interval.attr,
357 &dev_attr_sniff_min_interval.attr,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700358 NULL
359};
360
Marcel Holtmann90855d72008-08-18 13:23:53 +0200361static struct attribute_group bt_host_group = {
362 .attrs = bt_host_attrs,
363};
Marcel Holtmannb219e3a2006-07-06 12:38:46 +0200364
David Brownella4dbd672009-06-24 10:06:31 -0700365static const struct attribute_group *bt_host_groups[] = {
Marcel Holtmann90855d72008-08-18 13:23:53 +0200366 &bt_host_group,
Marcel Holtmannb219e3a2006-07-06 12:38:46 +0200367 NULL
368};
369
Marcel Holtmann90855d72008-08-18 13:23:53 +0200370static void bt_host_release(struct device *dev)
Marcel Holtmanna91f2e32006-07-03 10:02:41 +0200371{
Marcel Holtmannb219e3a2006-07-06 12:38:46 +0200372 void *data = dev_get_drvdata(dev);
373 kfree(data);
374}
375
Marcel Holtmann90855d72008-08-18 13:23:53 +0200376static struct device_type bt_host = {
377 .name = "host",
378 .groups = bt_host_groups,
379 .release = bt_host_release,
380};
Marcel Holtmanna91f2e32006-07-03 10:02:41 +0200381
Marcel Holtmannd4612cb2010-03-02 15:48:23 +0000382static int inquiry_cache_show(struct seq_file *f, void *p)
Marcel Holtmannca325f62010-02-08 16:22:31 +0100383{
Marcel Holtmannd4612cb2010-03-02 15:48:23 +0000384 struct hci_dev *hdev = f->private;
Marcel Holtmannca325f62010-02-08 16:22:31 +0100385 struct inquiry_cache *cache = &hdev->inq_cache;
386 struct inquiry_entry *e;
Marcel Holtmannca325f62010-02-08 16:22:31 +0100387
Gustavo F. Padovan09fd0de2011-06-17 13:03:21 -0300388 hci_dev_lock(hdev);
Marcel Holtmannca325f62010-02-08 16:22:31 +0100389
390 for (e = cache->list; e; e = e->next) {
391 struct inquiry_data *data = &e->data;
Marcel Holtmannd4612cb2010-03-02 15:48:23 +0000392 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 -0300393 batostr(&data->bdaddr),
Marcel Holtmannd4612cb2010-03-02 15:48:23 +0000394 data->pscan_rep_mode, data->pscan_period_mode,
395 data->pscan_mode, data->dev_class[2],
396 data->dev_class[1], data->dev_class[0],
397 __le16_to_cpu(data->clock_offset),
398 data->rssi, data->ssp_mode, e->timestamp);
Marcel Holtmannca325f62010-02-08 16:22:31 +0100399 }
400
Gustavo F. Padovan09fd0de2011-06-17 13:03:21 -0300401 hci_dev_unlock(hdev);
Marcel Holtmannca325f62010-02-08 16:22:31 +0100402
Marcel Holtmannd4612cb2010-03-02 15:48:23 +0000403 return 0;
404}
405
406static int inquiry_cache_open(struct inode *inode, struct file *file)
407{
408 return single_open(file, inquiry_cache_show, inode->i_private);
Marcel Holtmannca325f62010-02-08 16:22:31 +0100409}
410
411static const struct file_operations inquiry_cache_fops = {
Marcel Holtmannd4612cb2010-03-02 15:48:23 +0000412 .open = inquiry_cache_open,
413 .read = seq_read,
414 .llseek = seq_lseek,
415 .release = single_release,
Marcel Holtmannca325f62010-02-08 16:22:31 +0100416};
417
Johan Hedberg32c2ece2010-05-18 13:54:49 +0200418static int blacklist_show(struct seq_file *f, void *p)
419{
420 struct hci_dev *hdev = f->private;
Luiz Augusto von Dentz8035ded2011-11-01 10:58:56 +0200421 struct bdaddr_list *b;
Johan Hedberg32c2ece2010-05-18 13:54:49 +0200422
Gustavo F. Padovan09fd0de2011-06-17 13:03:21 -0300423 hci_dev_lock(hdev);
Johan Hedberg32c2ece2010-05-18 13:54:49 +0200424
Luiz Augusto von Dentz8035ded2011-11-01 10:58:56 +0200425 list_for_each_entry(b, &hdev->blacklist, list)
Gustavo F. Padovand6b2eb22010-09-03 18:29:46 -0300426 seq_printf(f, "%s\n", batostr(&b->bdaddr));
Johan Hedberg32c2ece2010-05-18 13:54:49 +0200427
Gustavo F. Padovan09fd0de2011-06-17 13:03:21 -0300428 hci_dev_unlock(hdev);
Johan Hedberg32c2ece2010-05-18 13:54:49 +0200429
430 return 0;
431}
432
433static int blacklist_open(struct inode *inode, struct file *file)
434{
435 return single_open(file, blacklist_show, inode->i_private);
436}
437
438static const struct file_operations blacklist_fops = {
439 .open = blacklist_open,
440 .read = seq_read,
441 .llseek = seq_lseek,
442 .release = single_release,
443};
Johan Hedberg930e1332011-01-04 11:39:44 +0200444
445static void print_bt_uuid(struct seq_file *f, u8 *uuid)
446{
447 u32 data0, data4;
448 u16 data1, data2, data3, data5;
449
450 memcpy(&data0, &uuid[0], 4);
451 memcpy(&data1, &uuid[4], 2);
452 memcpy(&data2, &uuid[6], 2);
453 memcpy(&data3, &uuid[8], 2);
454 memcpy(&data4, &uuid[10], 4);
455 memcpy(&data5, &uuid[14], 2);
456
457 seq_printf(f, "%.8x-%.4x-%.4x-%.4x-%.8x%.4x\n",
458 ntohl(data0), ntohs(data1), ntohs(data2),
459 ntohs(data3), ntohl(data4), ntohs(data5));
460}
461
462static int uuids_show(struct seq_file *f, void *p)
463{
464 struct hci_dev *hdev = f->private;
Luiz Augusto von Dentz8035ded2011-11-01 10:58:56 +0200465 struct bt_uuid *uuid;
Johan Hedberg930e1332011-01-04 11:39:44 +0200466
Gustavo F. Padovan09fd0de2011-06-17 13:03:21 -0300467 hci_dev_lock(hdev);
Johan Hedberg930e1332011-01-04 11:39:44 +0200468
Luiz Augusto von Dentz8035ded2011-11-01 10:58:56 +0200469 list_for_each_entry(uuid, &hdev->uuids, list)
Johan Hedberg930e1332011-01-04 11:39:44 +0200470 print_bt_uuid(f, uuid->uuid);
Johan Hedberg930e1332011-01-04 11:39:44 +0200471
Gustavo F. Padovan09fd0de2011-06-17 13:03:21 -0300472 hci_dev_unlock(hdev);
Johan Hedberg930e1332011-01-04 11:39:44 +0200473
474 return 0;
475}
476
477static int uuids_open(struct inode *inode, struct file *file)
478{
479 return single_open(file, uuids_show, inode->i_private);
480}
481
482static const struct file_operations uuids_fops = {
483 .open = uuids_open,
484 .read = seq_read,
485 .llseek = seq_lseek,
486 .release = single_release,
487};
488
Johan Hedberg9f616562011-04-28 11:28:54 -0700489static int auto_accept_delay_set(void *data, u64 val)
490{
491 struct hci_dev *hdev = data;
492
Gustavo F. Padovan09fd0de2011-06-17 13:03:21 -0300493 hci_dev_lock(hdev);
Johan Hedberg9f616562011-04-28 11:28:54 -0700494
495 hdev->auto_accept_delay = val;
496
Gustavo F. Padovan09fd0de2011-06-17 13:03:21 -0300497 hci_dev_unlock(hdev);
Johan Hedberg9f616562011-04-28 11:28:54 -0700498
499 return 0;
500}
501
502static int auto_accept_delay_get(void *data, u64 *val)
503{
504 struct hci_dev *hdev = data;
505
Gustavo F. Padovan09fd0de2011-06-17 13:03:21 -0300506 hci_dev_lock(hdev);
Johan Hedberg9f616562011-04-28 11:28:54 -0700507
508 *val = hdev->auto_accept_delay;
509
Gustavo F. Padovan09fd0de2011-06-17 13:03:21 -0300510 hci_dev_unlock(hdev);
Johan Hedberg9f616562011-04-28 11:28:54 -0700511
512 return 0;
513}
514
515DEFINE_SIMPLE_ATTRIBUTE(auto_accept_delay_fops, auto_accept_delay_get,
516 auto_accept_delay_set, "%llu\n");
517
David Herrmann0ac7e702011-10-08 14:58:47 +0200518void hci_init_sysfs(struct hci_dev *hdev)
519{
520 struct device *dev = &hdev->dev;
521
522 dev->type = &bt_host;
523 dev->class = bt_class;
524
525 dev_set_drvdata(dev, hdev);
526 device_initialize(dev);
527}
528
David Herrmannce242972011-10-08 14:58:48 +0200529int hci_add_sysfs(struct hci_dev *hdev)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700530{
Marcel Holtmanna91f2e32006-07-03 10:02:41 +0200531 struct device *dev = &hdev->dev;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700532 int err;
533
Marcel Holtmannc13854c2010-02-08 15:27:07 +0100534 BT_DBG("%p name %s bus %d", hdev, hdev->name, hdev->bus);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700535
Marcel Holtmanne9c4bec2006-10-15 17:30:50 +0200536 dev->parent = hdev->parent;
Marcel Holtmann2e792992008-11-30 12:17:29 +0100537 dev_set_name(dev, "%s", hdev->name);
Marcel Holtmann27d35282006-07-03 10:02:37 +0200538
David Herrmann0ac7e702011-10-08 14:58:47 +0200539 err = device_add(dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700540 if (err < 0)
541 return err;
542
Marcel Holtmannca325f62010-02-08 16:22:31 +0100543 if (!bt_debugfs)
544 return 0;
545
546 hdev->debugfs = debugfs_create_dir(hdev->name, bt_debugfs);
547 if (!hdev->debugfs)
548 return 0;
549
550 debugfs_create_file("inquiry_cache", 0444, hdev->debugfs,
551 hdev, &inquiry_cache_fops);
552
Johan Hedberg32c2ece2010-05-18 13:54:49 +0200553 debugfs_create_file("blacklist", 0444, hdev->debugfs,
554 hdev, &blacklist_fops);
555
Johan Hedberg930e1332011-01-04 11:39:44 +0200556 debugfs_create_file("uuids", 0444, hdev->debugfs, hdev, &uuids_fops);
557
Johan Hedberg9f616562011-04-28 11:28:54 -0700558 debugfs_create_file("auto_accept_delay", 0444, hdev->debugfs, hdev,
559 &auto_accept_delay_fops);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700560 return 0;
561}
562
David Herrmannce242972011-10-08 14:58:48 +0200563void hci_del_sysfs(struct hci_dev *hdev)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700564{
Marcel Holtmannc13854c2010-02-08 15:27:07 +0100565 BT_DBG("%p name %s bus %d", hdev, hdev->name, hdev->bus);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700566
Marcel Holtmannca325f62010-02-08 16:22:31 +0100567 debugfs_remove_recursive(hdev->debugfs);
568
Marcel Holtmann4d0eb002006-07-06 12:34:41 +0200569 device_del(&hdev->dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700570}
571
572int __init bt_sysfs_init(void)
573{
Marcel Holtmannca325f62010-02-08 16:22:31 +0100574 bt_debugfs = debugfs_create_dir("bluetooth", NULL);
575
Marcel Holtmanna91f2e32006-07-03 10:02:41 +0200576 bt_class = class_create(THIS_MODULE, "bluetooth");
Marcel Holtmannf48fd9c2010-03-20 15:20:04 +0100577 if (IS_ERR(bt_class))
Marcel Holtmann90855d72008-08-18 13:23:53 +0200578 return PTR_ERR(bt_class);
Marcel Holtmann27d35282006-07-03 10:02:37 +0200579
580 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700581}
582
Arnaud Patard860e13b2006-09-28 15:29:37 -0700583void bt_sysfs_cleanup(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700584{
Marcel Holtmanna91f2e32006-07-03 10:02:41 +0200585 class_destroy(bt_class);
Marcel Holtmannca325f62010-02-08 16:22:31 +0100586
587 debugfs_remove_recursive(bt_debugfs);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700588}