blob: bc154298979a8278efa4611309e025d663f056bc [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{
David Herrmann3dc07322012-02-09 21:58:33 +010036 struct hci_conn *conn = to_hci_conn(dev);
Marcel Holtmann90855d72008-08-18 13:23:53 +020037 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{
David Herrmann3dc07322012-02-09 21:58:33 +010042 struct hci_conn *conn = to_hci_conn(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{
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",
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{
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
Marcel Holtmannc13854c2010-02-08 15:27:07 +0100188static ssize_t show_bus(struct device *dev, struct device_attribute *attr, char *buf)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700189{
David Herrmannaa2b86d2012-02-09 21:58:30 +0100190 struct hci_dev *hdev = to_hci_dev(dev);
Marcel Holtmannc13854c2010-02-08 15:27:07 +0100191 return sprintf(buf, "%s\n", host_bustostr(hdev->bus));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700192}
193
Marcel Holtmann943da252010-02-13 02:28:41 +0100194static ssize_t show_type(struct device *dev, struct device_attribute *attr, char *buf)
195{
David Herrmannaa2b86d2012-02-09 21:58:30 +0100196 struct hci_dev *hdev = to_hci_dev(dev);
Marcel Holtmann943da252010-02-13 02:28:41 +0100197 return sprintf(buf, "%s\n", host_typetostr(hdev->dev_type));
198}
199
Marcel Holtmanna9de9242007-10-20 13:33:56 +0200200static ssize_t show_name(struct device *dev, struct device_attribute *attr, char *buf)
201{
David Herrmannaa2b86d2012-02-09 21:58:30 +0100202 struct hci_dev *hdev = to_hci_dev(dev);
Johan Hedberg1f6c6372011-03-16 14:29:35 +0200203 char name[HCI_MAX_NAME_LENGTH + 1];
Marcel Holtmanna9de9242007-10-20 13:33:56 +0200204 int i;
205
Johan Hedberg1f6c6372011-03-16 14:29:35 +0200206 for (i = 0; i < HCI_MAX_NAME_LENGTH; i++)
Marcel Holtmanna9de9242007-10-20 13:33:56 +0200207 name[i] = hdev->dev_name[i];
208
Johan Hedberg1f6c6372011-03-16 14:29:35 +0200209 name[HCI_MAX_NAME_LENGTH] = '\0';
Marcel Holtmanna9de9242007-10-20 13:33:56 +0200210 return sprintf(buf, "%s\n", name);
211}
212
213static ssize_t show_class(struct device *dev, struct device_attribute *attr, char *buf)
214{
David Herrmannaa2b86d2012-02-09 21:58:30 +0100215 struct hci_dev *hdev = to_hci_dev(dev);
Marcel Holtmanna9de9242007-10-20 13:33:56 +0200216 return sprintf(buf, "0x%.2x%.2x%.2x\n",
217 hdev->dev_class[2], hdev->dev_class[1], hdev->dev_class[0]);
218}
219
Marcel Holtmanna91f2e32006-07-03 10:02:41 +0200220static ssize_t show_address(struct device *dev, struct device_attribute *attr, char *buf)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700221{
David Herrmannaa2b86d2012-02-09 21:58:30 +0100222 struct hci_dev *hdev = to_hci_dev(dev);
Gustavo F. Padovand6b2eb22010-09-03 18:29:46 -0300223 return sprintf(buf, "%s\n", batostr(&hdev->bdaddr));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700224}
225
Marcel Holtmanna9de9242007-10-20 13:33:56 +0200226static ssize_t show_features(struct device *dev, struct device_attribute *attr, char *buf)
227{
David Herrmannaa2b86d2012-02-09 21:58:30 +0100228 struct hci_dev *hdev = to_hci_dev(dev);
Marcel Holtmanna9de9242007-10-20 13:33:56 +0200229
230 return sprintf(buf, "0x%02x%02x%02x%02x%02x%02x%02x%02x\n",
231 hdev->features[0], hdev->features[1],
232 hdev->features[2], hdev->features[3],
233 hdev->features[4], hdev->features[5],
234 hdev->features[6], hdev->features[7]);
235}
236
Marcel Holtmann1143e5a2006-09-23 09:57:20 +0200237static ssize_t show_manufacturer(struct device *dev, struct device_attribute *attr, char *buf)
238{
David Herrmannaa2b86d2012-02-09 21:58:30 +0100239 struct hci_dev *hdev = to_hci_dev(dev);
Marcel Holtmann1143e5a2006-09-23 09:57:20 +0200240 return sprintf(buf, "%d\n", hdev->manufacturer);
241}
242
243static ssize_t show_hci_version(struct device *dev, struct device_attribute *attr, char *buf)
244{
David Herrmannaa2b86d2012-02-09 21:58:30 +0100245 struct hci_dev *hdev = to_hci_dev(dev);
Marcel Holtmann1143e5a2006-09-23 09:57:20 +0200246 return sprintf(buf, "%d\n", hdev->hci_ver);
247}
248
249static ssize_t show_hci_revision(struct device *dev, struct device_attribute *attr, char *buf)
250{
David Herrmannaa2b86d2012-02-09 21:58:30 +0100251 struct hci_dev *hdev = to_hci_dev(dev);
Marcel Holtmann1143e5a2006-09-23 09:57:20 +0200252 return sprintf(buf, "%d\n", hdev->hci_rev);
253}
254
Marcel Holtmanna91f2e32006-07-03 10:02:41 +0200255static ssize_t show_idle_timeout(struct device *dev, struct device_attribute *attr, char *buf)
Marcel Holtmann04837f62006-07-03 10:02:33 +0200256{
David Herrmannaa2b86d2012-02-09 21:58:30 +0100257 struct hci_dev *hdev = to_hci_dev(dev);
Marcel Holtmann04837f62006-07-03 10:02:33 +0200258 return sprintf(buf, "%d\n", hdev->idle_timeout);
259}
260
Marcel Holtmanna91f2e32006-07-03 10:02:41 +0200261static 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 +0200262{
David Herrmannaa2b86d2012-02-09 21:58:30 +0100263 struct hci_dev *hdev = to_hci_dev(dev);
Alexey Dobriyandb940cb2011-04-02 14:19:41 +0300264 unsigned int val;
265 int rv;
Marcel Holtmann04837f62006-07-03 10:02:33 +0200266
Alexey Dobriyandb940cb2011-04-02 14:19:41 +0300267 rv = kstrtouint(buf, 0, &val);
268 if (rv < 0)
269 return rv;
Marcel Holtmann04837f62006-07-03 10:02:33 +0200270
271 if (val != 0 && (val < 500 || val > 3600000))
272 return -EINVAL;
273
274 hdev->idle_timeout = val;
275
276 return count;
277}
278
Marcel Holtmanna91f2e32006-07-03 10:02:41 +0200279static ssize_t show_sniff_max_interval(struct device *dev, struct device_attribute *attr, char *buf)
Marcel Holtmann04837f62006-07-03 10:02:33 +0200280{
David Herrmannaa2b86d2012-02-09 21:58:30 +0100281 struct hci_dev *hdev = to_hci_dev(dev);
Marcel Holtmann04837f62006-07-03 10:02:33 +0200282 return sprintf(buf, "%d\n", hdev->sniff_max_interval);
283}
284
Marcel Holtmanna91f2e32006-07-03 10:02:41 +0200285static 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 +0200286{
David Herrmannaa2b86d2012-02-09 21:58:30 +0100287 struct hci_dev *hdev = to_hci_dev(dev);
Alexey Dobriyandb940cb2011-04-02 14:19:41 +0300288 u16 val;
289 int rv;
Marcel Holtmann04837f62006-07-03 10:02:33 +0200290
Alexey Dobriyandb940cb2011-04-02 14:19:41 +0300291 rv = kstrtou16(buf, 0, &val);
292 if (rv < 0)
293 return rv;
Marcel Holtmann04837f62006-07-03 10:02:33 +0200294
Alexey Dobriyandb940cb2011-04-02 14:19:41 +0300295 if (val == 0 || val % 2 || val < hdev->sniff_min_interval)
Marcel Holtmann04837f62006-07-03 10:02:33 +0200296 return -EINVAL;
297
298 hdev->sniff_max_interval = val;
299
300 return count;
301}
302
Marcel Holtmanna91f2e32006-07-03 10:02:41 +0200303static ssize_t show_sniff_min_interval(struct device *dev, struct device_attribute *attr, char *buf)
Marcel Holtmann04837f62006-07-03 10:02:33 +0200304{
David Herrmannaa2b86d2012-02-09 21:58:30 +0100305 struct hci_dev *hdev = to_hci_dev(dev);
Marcel Holtmann04837f62006-07-03 10:02:33 +0200306 return sprintf(buf, "%d\n", hdev->sniff_min_interval);
307}
308
Marcel Holtmanna91f2e32006-07-03 10:02:41 +0200309static 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 +0200310{
David Herrmannaa2b86d2012-02-09 21:58:30 +0100311 struct hci_dev *hdev = to_hci_dev(dev);
Alexey Dobriyandb940cb2011-04-02 14:19:41 +0300312 u16 val;
313 int rv;
Marcel Holtmann04837f62006-07-03 10:02:33 +0200314
Alexey Dobriyandb940cb2011-04-02 14:19:41 +0300315 rv = kstrtou16(buf, 0, &val);
316 if (rv < 0)
317 return rv;
Marcel Holtmann04837f62006-07-03 10:02:33 +0200318
Alexey Dobriyandb940cb2011-04-02 14:19:41 +0300319 if (val == 0 || val % 2 || val > hdev->sniff_max_interval)
Marcel Holtmann04837f62006-07-03 10:02:33 +0200320 return -EINVAL;
321
322 hdev->sniff_min_interval = val;
323
324 return count;
325}
326
Marcel Holtmannc13854c2010-02-08 15:27:07 +0100327static DEVICE_ATTR(bus, S_IRUGO, show_bus, NULL);
Marcel Holtmann943da252010-02-13 02:28:41 +0100328static DEVICE_ATTR(type, S_IRUGO, show_type, NULL);
Marcel Holtmanna9de9242007-10-20 13:33:56 +0200329static DEVICE_ATTR(name, S_IRUGO, show_name, NULL);
330static DEVICE_ATTR(class, S_IRUGO, show_class, NULL);
Marcel Holtmanna91f2e32006-07-03 10:02:41 +0200331static DEVICE_ATTR(address, S_IRUGO, show_address, NULL);
Marcel Holtmanna9de9242007-10-20 13:33:56 +0200332static DEVICE_ATTR(features, S_IRUGO, show_features, NULL);
Marcel Holtmann1143e5a2006-09-23 09:57:20 +0200333static DEVICE_ATTR(manufacturer, S_IRUGO, show_manufacturer, NULL);
334static DEVICE_ATTR(hci_version, S_IRUGO, show_hci_version, NULL);
335static DEVICE_ATTR(hci_revision, S_IRUGO, show_hci_revision, NULL);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700336
Marcel Holtmanna91f2e32006-07-03 10:02:41 +0200337static DEVICE_ATTR(idle_timeout, S_IRUGO | S_IWUSR,
Marcel Holtmann04837f62006-07-03 10:02:33 +0200338 show_idle_timeout, store_idle_timeout);
Marcel Holtmanna91f2e32006-07-03 10:02:41 +0200339static DEVICE_ATTR(sniff_max_interval, S_IRUGO | S_IWUSR,
Marcel Holtmann04837f62006-07-03 10:02:33 +0200340 show_sniff_max_interval, store_sniff_max_interval);
Marcel Holtmanna91f2e32006-07-03 10:02:41 +0200341static DEVICE_ATTR(sniff_min_interval, S_IRUGO | S_IWUSR,
Marcel Holtmann04837f62006-07-03 10:02:33 +0200342 show_sniff_min_interval, store_sniff_min_interval);
343
Marcel Holtmann90855d72008-08-18 13:23:53 +0200344static struct attribute *bt_host_attrs[] = {
Marcel Holtmannc13854c2010-02-08 15:27:07 +0100345 &dev_attr_bus.attr,
Marcel Holtmann943da252010-02-13 02:28:41 +0100346 &dev_attr_type.attr,
Marcel Holtmann90855d72008-08-18 13:23:53 +0200347 &dev_attr_name.attr,
348 &dev_attr_class.attr,
349 &dev_attr_address.attr,
350 &dev_attr_features.attr,
351 &dev_attr_manufacturer.attr,
352 &dev_attr_hci_version.attr,
353 &dev_attr_hci_revision.attr,
Marcel Holtmann90855d72008-08-18 13:23:53 +0200354 &dev_attr_idle_timeout.attr,
355 &dev_attr_sniff_max_interval.attr,
356 &dev_attr_sniff_min_interval.attr,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700357 NULL
358};
359
Marcel Holtmann90855d72008-08-18 13:23:53 +0200360static struct attribute_group bt_host_group = {
361 .attrs = bt_host_attrs,
362};
Marcel Holtmannb219e3a2006-07-06 12:38:46 +0200363
David Brownella4dbd672009-06-24 10:06:31 -0700364static const struct attribute_group *bt_host_groups[] = {
Marcel Holtmann90855d72008-08-18 13:23:53 +0200365 &bt_host_group,
Marcel Holtmannb219e3a2006-07-06 12:38:46 +0200366 NULL
367};
368
Marcel Holtmann90855d72008-08-18 13:23:53 +0200369static void bt_host_release(struct device *dev)
Marcel Holtmanna91f2e32006-07-03 10:02:41 +0200370{
David Herrmann2dd10682012-02-09 21:58:34 +0100371 struct hci_dev *hdev = to_hci_dev(dev);
372 kfree(hdev);
David Herrmann46e06532012-01-07 15:47:21 +0100373 module_put(THIS_MODULE);
Marcel Holtmannb219e3a2006-07-06 12:38:46 +0200374}
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;
Johan Hedberg30883512012-01-04 14:16:21 +0200385 struct discovery_state *cache = &hdev->discovery;
Marcel Holtmannca325f62010-02-08 16:22:31 +0100386 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
Johan Hedberg561aafb2012-01-04 13:31:59 +0200390 list_for_each_entry(e, &cache->all, all) {
Marcel Holtmannca325f62010-02-08 16:22:31 +0100391 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
David Herrmann46e06532012-01-07 15:47:21 +0100525 __module_get(THIS_MODULE);
David Herrmann0ac7e702011-10-08 14:58:47 +0200526 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}