Bluetooth: Remove hci_dev->driver_data
[GitHub/mt8127/android_kernel_alcatel_ttab.git] / net / bluetooth / hci_sysfs.c
CommitLineData
1da177e4
LT
1/* Bluetooth HCI driver model support. */
2
1da177e4 3#include <linux/kernel.h>
5a0e3ad6 4#include <linux/slab.h>
1da177e4 5#include <linux/init.h>
ca325f69 6#include <linux/debugfs.h>
d4612cb8 7#include <linux/seq_file.h>
3a9a231d 8#include <linux/module.h>
1da177e4
LT
9
10#include <net/bluetooth/bluetooth.h>
11#include <net/bluetooth/hci_core.h>
12
aef7d97c 13static struct class *bt_class;
90855d7b 14
602f9887 15struct dentry *bt_debugfs;
ca325f69
MH
16EXPORT_SYMBOL_GPL(bt_debugfs);
17
90855d7b
MH
18static 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";
21061df3
PH
27 case LE_LINK:
28 return "LE";
90855d7b
MH
29 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);
d6b2eb2f 43 return sprintf(buf, "%s\n", batostr(&conn->dst));
90855d7b
MH
44}
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
602f9887
GP
57#define LINK_ATTR(_name, _mode, _show, _store) \
58struct device_attribute link_attr_##_name = __ATTR(_name, _mode, _show, _store)
90855d7b
MH
59
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
a4dbd674 75static const struct attribute_group *bt_link_groups[] = {
90855d7b
MH
76 &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
6d438e33
GP
92/*
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)
98{
99 return !strncmp(dev_name(dev), "rfcomm", 6);
100}
101
102void hci_conn_init_sysfs(struct hci_conn *conn)
103{
104 struct hci_dev *hdev = conn->hdev;
105
106 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)
90855d7b 116{
457ca7bb 117 struct hci_dev *hdev = conn->hdev;
90855d7b 118
6d438e33
GP
119 BT_DBG("conn %p", conn);
120
457ca7bb
MH
121 dev_set_name(&conn->dev, "%s:%d", hdev->name, conn->handle);
122
f74c77cb
DY
123 dev_set_drvdata(&conn->dev, conn);
124
90855d7b
MH
125 if (device_add(&conn->dev) < 0) {
126 BT_ERR("Failed to register connection device");
127 return;
128 }
384943ec
MH
129
130 hci_dev_hold(hdev);
90855d7b
MH
131}
132
6d438e33 133void hci_conn_del_sysfs(struct hci_conn *conn)
90855d7b 134{
90855d7b
MH
135 struct hci_dev *hdev = conn->hdev;
136
a67e899c
MH
137 if (!device_is_registered(&conn->dev))
138 return;
f3784d83 139
90855d7b
MH
140 while (1) {
141 struct device *dev;
142
143 dev = device_find_child(&conn->dev, NULL, __match_tty);
144 if (!dev)
145 break;
ffa6a705 146 device_move(dev, NULL, DPM_ORDER_DEV_LAST);
90855d7b
MH
147 put_device(dev);
148 }
149
150 device_del(&conn->dev);
151 put_device(&conn->dev);
384943ec 152
90855d7b
MH
153 hci_dev_put(hdev);
154}
155
c13854ce 156static inline char *host_bustostr(int bus)
1da177e4 157{
c13854ce 158 switch (bus) {
0ac53939 159 case HCI_VIRTUAL:
4d0eb004
MH
160 return "VIRTUAL";
161 case HCI_USB:
162 return "USB";
163 case HCI_PCCARD:
164 return "PCCARD";
165 case HCI_UART:
166 return "UART";
167 case HCI_RS232:
168 return "RS232";
169 case HCI_PCI:
170 return "PCI";
0ac53939
MH
171 case HCI_SDIO:
172 return "SDIO";
4d0eb004
MH
173 default:
174 return "UNKNOWN";
175 }
1da177e4
LT
176}
177
943da25d
MH
178static inline char *host_typetostr(int type)
179{
180 switch (type) {
181 case HCI_BREDR:
182 return "BR/EDR";
8f1e1742
DV
183 case HCI_AMP:
184 return "AMP";
943da25d
MH
185 default:
186 return "UNKNOWN";
187 }
188}
189
c13854ce 190static ssize_t show_bus(struct device *dev, struct device_attribute *attr, char *buf)
1da177e4 191{
aa2b86d7 192 struct hci_dev *hdev = to_hci_dev(dev);
c13854ce 193 return sprintf(buf, "%s\n", host_bustostr(hdev->bus));
1da177e4
LT
194}
195
943da25d
MH
196static ssize_t show_type(struct device *dev, struct device_attribute *attr, char *buf)
197{
aa2b86d7 198 struct hci_dev *hdev = to_hci_dev(dev);
943da25d
MH
199 return sprintf(buf, "%s\n", host_typetostr(hdev->dev_type));
200}
201
a9de9248
MH
202static ssize_t show_name(struct device *dev, struct device_attribute *attr, char *buf)
203{
aa2b86d7 204 struct hci_dev *hdev = to_hci_dev(dev);
1f6c6378 205 char name[HCI_MAX_NAME_LENGTH + 1];
a9de9248
MH
206 int i;
207
1f6c6378 208 for (i = 0; i < HCI_MAX_NAME_LENGTH; i++)
a9de9248
MH
209 name[i] = hdev->dev_name[i];
210
1f6c6378 211 name[HCI_MAX_NAME_LENGTH] = '\0';
a9de9248
MH
212 return sprintf(buf, "%s\n", name);
213}
214
215static ssize_t show_class(struct device *dev, struct device_attribute *attr, char *buf)
216{
aa2b86d7 217 struct hci_dev *hdev = to_hci_dev(dev);
a9de9248
MH
218 return sprintf(buf, "0x%.2x%.2x%.2x\n",
219 hdev->dev_class[2], hdev->dev_class[1], hdev->dev_class[0]);
220}
221
a91f2e39 222static ssize_t show_address(struct device *dev, struct device_attribute *attr, char *buf)
1da177e4 223{
aa2b86d7 224 struct hci_dev *hdev = to_hci_dev(dev);
d6b2eb2f 225 return sprintf(buf, "%s\n", batostr(&hdev->bdaddr));
1da177e4
LT
226}
227
a9de9248
MH
228static ssize_t show_features(struct device *dev, struct device_attribute *attr, char *buf)
229{
aa2b86d7 230 struct hci_dev *hdev = to_hci_dev(dev);
a9de9248
MH
231
232 return sprintf(buf, "0x%02x%02x%02x%02x%02x%02x%02x%02x\n",
233 hdev->features[0], hdev->features[1],
234 hdev->features[2], hdev->features[3],
235 hdev->features[4], hdev->features[5],
236 hdev->features[6], hdev->features[7]);
237}
238
1143e5a6
MH
239static ssize_t show_manufacturer(struct device *dev, struct device_attribute *attr, char *buf)
240{
aa2b86d7 241 struct hci_dev *hdev = to_hci_dev(dev);
1143e5a6
MH
242 return sprintf(buf, "%d\n", hdev->manufacturer);
243}
244
245static ssize_t show_hci_version(struct device *dev, struct device_attribute *attr, char *buf)
246{
aa2b86d7 247 struct hci_dev *hdev = to_hci_dev(dev);
1143e5a6
MH
248 return sprintf(buf, "%d\n", hdev->hci_ver);
249}
250
251static ssize_t show_hci_revision(struct device *dev, struct device_attribute *attr, char *buf)
252{
aa2b86d7 253 struct hci_dev *hdev = to_hci_dev(dev);
1143e5a6
MH
254 return sprintf(buf, "%d\n", hdev->hci_rev);
255}
256
a91f2e39 257static ssize_t show_idle_timeout(struct device *dev, struct device_attribute *attr, char *buf)
04837f64 258{
aa2b86d7 259 struct hci_dev *hdev = to_hci_dev(dev);
04837f64
MH
260 return sprintf(buf, "%d\n", hdev->idle_timeout);
261}
262
a91f2e39 263static ssize_t store_idle_timeout(struct device *dev, struct device_attribute *attr, const char *buf, size_t count)
04837f64 264{
aa2b86d7 265 struct hci_dev *hdev = to_hci_dev(dev);
db940cb0
AD
266 unsigned int val;
267 int rv;
04837f64 268
db940cb0
AD
269 rv = kstrtouint(buf, 0, &val);
270 if (rv < 0)
271 return rv;
04837f64
MH
272
273 if (val != 0 && (val < 500 || val > 3600000))
274 return -EINVAL;
275
276 hdev->idle_timeout = val;
277
278 return count;
279}
280
a91f2e39 281static ssize_t show_sniff_max_interval(struct device *dev, struct device_attribute *attr, char *buf)
04837f64 282{
aa2b86d7 283 struct hci_dev *hdev = to_hci_dev(dev);
04837f64
MH
284 return sprintf(buf, "%d\n", hdev->sniff_max_interval);
285}
286
a91f2e39 287static ssize_t store_sniff_max_interval(struct device *dev, struct device_attribute *attr, const char *buf, size_t count)
04837f64 288{
aa2b86d7 289 struct hci_dev *hdev = to_hci_dev(dev);
db940cb0
AD
290 u16 val;
291 int rv;
04837f64 292
db940cb0
AD
293 rv = kstrtou16(buf, 0, &val);
294 if (rv < 0)
295 return rv;
04837f64 296
db940cb0 297 if (val == 0 || val % 2 || val < hdev->sniff_min_interval)
04837f64
MH
298 return -EINVAL;
299
300 hdev->sniff_max_interval = val;
301
302 return count;
303}
304
a91f2e39 305static ssize_t show_sniff_min_interval(struct device *dev, struct device_attribute *attr, char *buf)
04837f64 306{
aa2b86d7 307 struct hci_dev *hdev = to_hci_dev(dev);
04837f64
MH
308 return sprintf(buf, "%d\n", hdev->sniff_min_interval);
309}
310
a91f2e39 311static ssize_t store_sniff_min_interval(struct device *dev, struct device_attribute *attr, const char *buf, size_t count)
04837f64 312{
aa2b86d7 313 struct hci_dev *hdev = to_hci_dev(dev);
db940cb0
AD
314 u16 val;
315 int rv;
04837f64 316
db940cb0
AD
317 rv = kstrtou16(buf, 0, &val);
318 if (rv < 0)
319 return rv;
04837f64 320
db940cb0 321 if (val == 0 || val % 2 || val > hdev->sniff_max_interval)
04837f64
MH
322 return -EINVAL;
323
324 hdev->sniff_min_interval = val;
325
326 return count;
327}
328
c13854ce 329static DEVICE_ATTR(bus, S_IRUGO, show_bus, NULL);
943da25d 330static DEVICE_ATTR(type, S_IRUGO, show_type, NULL);
a9de9248
MH
331static DEVICE_ATTR(name, S_IRUGO, show_name, NULL);
332static DEVICE_ATTR(class, S_IRUGO, show_class, NULL);
a91f2e39 333static DEVICE_ATTR(address, S_IRUGO, show_address, NULL);
a9de9248 334static DEVICE_ATTR(features, S_IRUGO, show_features, NULL);
1143e5a6
MH
335static DEVICE_ATTR(manufacturer, S_IRUGO, show_manufacturer, NULL);
336static DEVICE_ATTR(hci_version, S_IRUGO, show_hci_version, NULL);
337static DEVICE_ATTR(hci_revision, S_IRUGO, show_hci_revision, NULL);
1da177e4 338
a91f2e39 339static DEVICE_ATTR(idle_timeout, S_IRUGO | S_IWUSR,
04837f64 340 show_idle_timeout, store_idle_timeout);
a91f2e39 341static DEVICE_ATTR(sniff_max_interval, S_IRUGO | S_IWUSR,
04837f64 342 show_sniff_max_interval, store_sniff_max_interval);
a91f2e39 343static DEVICE_ATTR(sniff_min_interval, S_IRUGO | S_IWUSR,
04837f64
MH
344 show_sniff_min_interval, store_sniff_min_interval);
345
90855d7b 346static struct attribute *bt_host_attrs[] = {
c13854ce 347 &dev_attr_bus.attr,
943da25d 348 &dev_attr_type.attr,
90855d7b
MH
349 &dev_attr_name.attr,
350 &dev_attr_class.attr,
351 &dev_attr_address.attr,
352 &dev_attr_features.attr,
353 &dev_attr_manufacturer.attr,
354 &dev_attr_hci_version.attr,
355 &dev_attr_hci_revision.attr,
90855d7b
MH
356 &dev_attr_idle_timeout.attr,
357 &dev_attr_sniff_max_interval.attr,
358 &dev_attr_sniff_min_interval.attr,
1da177e4
LT
359 NULL
360};
361
90855d7b
MH
362static struct attribute_group bt_host_group = {
363 .attrs = bt_host_attrs,
b219e3ac
MH
364};
365
a4dbd674 366static const struct attribute_group *bt_host_groups[] = {
90855d7b
MH
367 &bt_host_group,
368 NULL
27d35284
MH
369};
370
90855d7b 371static void bt_host_release(struct device *dev)
a91f2e39 372{
aa2b86d7 373 void *data = to_hci_dev(dev);
b219e3ac 374 kfree(data);
46e06531 375 module_put(THIS_MODULE);
b219e3ac
MH
376}
377
90855d7b
MH
378static struct device_type bt_host = {
379 .name = "host",
380 .groups = bt_host_groups,
381 .release = bt_host_release,
382};
a91f2e39 383
d4612cb8 384static int inquiry_cache_show(struct seq_file *f, void *p)
ca325f69 385{
d4612cb8 386 struct hci_dev *hdev = f->private;
30883512 387 struct discovery_state *cache = &hdev->discovery;
ca325f69 388 struct inquiry_entry *e;
ca325f69 389
09fd0de5 390 hci_dev_lock(hdev);
ca325f69 391
561aafbc 392 list_for_each_entry(e, &cache->all, all) {
ca325f69 393 struct inquiry_data *data = &e->data;
d4612cb8 394 seq_printf(f, "%s %d %d %d 0x%.2x%.2x%.2x 0x%.4x %d %d %u\n",
d6b2eb2f 395 batostr(&data->bdaddr),
d4612cb8
MH
396 data->pscan_rep_mode, data->pscan_period_mode,
397 data->pscan_mode, data->dev_class[2],
398 data->dev_class[1], data->dev_class[0],
399 __le16_to_cpu(data->clock_offset),
400 data->rssi, data->ssp_mode, e->timestamp);
ca325f69
MH
401 }
402
09fd0de5 403 hci_dev_unlock(hdev);
ca325f69 404
d4612cb8
MH
405 return 0;
406}
407
408static int inquiry_cache_open(struct inode *inode, struct file *file)
409{
410 return single_open(file, inquiry_cache_show, inode->i_private);
ca325f69
MH
411}
412
413static const struct file_operations inquiry_cache_fops = {
d4612cb8
MH
414 .open = inquiry_cache_open,
415 .read = seq_read,
416 .llseek = seq_lseek,
417 .release = single_release,
ca325f69
MH
418};
419
32c2ece5
JH
420static int blacklist_show(struct seq_file *f, void *p)
421{
422 struct hci_dev *hdev = f->private;
8035ded4 423 struct bdaddr_list *b;
32c2ece5 424
09fd0de5 425 hci_dev_lock(hdev);
32c2ece5 426
8035ded4 427 list_for_each_entry(b, &hdev->blacklist, list)
d6b2eb2f 428 seq_printf(f, "%s\n", batostr(&b->bdaddr));
32c2ece5 429
09fd0de5 430 hci_dev_unlock(hdev);
32c2ece5
JH
431
432 return 0;
433}
434
435static int blacklist_open(struct inode *inode, struct file *file)
436{
437 return single_open(file, blacklist_show, inode->i_private);
438}
439
440static const struct file_operations blacklist_fops = {
441 .open = blacklist_open,
442 .read = seq_read,
443 .llseek = seq_lseek,
444 .release = single_release,
445};
930e1336
JH
446
447static void print_bt_uuid(struct seq_file *f, u8 *uuid)
448{
449 u32 data0, data4;
450 u16 data1, data2, data3, data5;
451
452 memcpy(&data0, &uuid[0], 4);
453 memcpy(&data1, &uuid[4], 2);
454 memcpy(&data2, &uuid[6], 2);
455 memcpy(&data3, &uuid[8], 2);
456 memcpy(&data4, &uuid[10], 4);
457 memcpy(&data5, &uuid[14], 2);
458
459 seq_printf(f, "%.8x-%.4x-%.4x-%.4x-%.8x%.4x\n",
460 ntohl(data0), ntohs(data1), ntohs(data2),
461 ntohs(data3), ntohl(data4), ntohs(data5));
462}
463
464static int uuids_show(struct seq_file *f, void *p)
465{
466 struct hci_dev *hdev = f->private;
8035ded4 467 struct bt_uuid *uuid;
930e1336 468
09fd0de5 469 hci_dev_lock(hdev);
930e1336 470
8035ded4 471 list_for_each_entry(uuid, &hdev->uuids, list)
930e1336 472 print_bt_uuid(f, uuid->uuid);
930e1336 473
09fd0de5 474 hci_dev_unlock(hdev);
930e1336
JH
475
476 return 0;
477}
478
479static int uuids_open(struct inode *inode, struct file *file)
480{
481 return single_open(file, uuids_show, inode->i_private);
482}
483
484static const struct file_operations uuids_fops = {
485 .open = uuids_open,
486 .read = seq_read,
487 .llseek = seq_lseek,
488 .release = single_release,
489};
490
9f61656a
JH
491static int auto_accept_delay_set(void *data, u64 val)
492{
493 struct hci_dev *hdev = data;
494
09fd0de5 495 hci_dev_lock(hdev);
9f61656a
JH
496
497 hdev->auto_accept_delay = val;
498
09fd0de5 499 hci_dev_unlock(hdev);
9f61656a
JH
500
501 return 0;
502}
503
504static int auto_accept_delay_get(void *data, u64 *val)
505{
506 struct hci_dev *hdev = data;
507
09fd0de5 508 hci_dev_lock(hdev);
9f61656a
JH
509
510 *val = hdev->auto_accept_delay;
511
09fd0de5 512 hci_dev_unlock(hdev);
9f61656a
JH
513
514 return 0;
515}
516
517DEFINE_SIMPLE_ATTRIBUTE(auto_accept_delay_fops, auto_accept_delay_get,
518 auto_accept_delay_set, "%llu\n");
519
0ac7e700
DH
520void hci_init_sysfs(struct hci_dev *hdev)
521{
522 struct device *dev = &hdev->dev;
523
524 dev->type = &bt_host;
525 dev->class = bt_class;
526
46e06531 527 __module_get(THIS_MODULE);
0ac7e700
DH
528 device_initialize(dev);
529}
530
ce242970 531int hci_add_sysfs(struct hci_dev *hdev)
1da177e4 532{
a91f2e39 533 struct device *dev = &hdev->dev;
1da177e4
LT
534 int err;
535
c13854ce 536 BT_DBG("%p name %s bus %d", hdev, hdev->name, hdev->bus);
1da177e4 537
e9c4bec6 538 dev->parent = hdev->parent;
2e792995 539 dev_set_name(dev, "%s", hdev->name);
1da177e4 540
0ac7e700 541 err = device_add(dev);
1da177e4
LT
542 if (err < 0)
543 return err;
544
ca325f69
MH
545 if (!bt_debugfs)
546 return 0;
547
548 hdev->debugfs = debugfs_create_dir(hdev->name, bt_debugfs);
549 if (!hdev->debugfs)
550 return 0;
551
552 debugfs_create_file("inquiry_cache", 0444, hdev->debugfs,
553 hdev, &inquiry_cache_fops);
554
32c2ece5
JH
555 debugfs_create_file("blacklist", 0444, hdev->debugfs,
556 hdev, &blacklist_fops);
557
930e1336
JH
558 debugfs_create_file("uuids", 0444, hdev->debugfs, hdev, &uuids_fops);
559
9f61656a
JH
560 debugfs_create_file("auto_accept_delay", 0444, hdev->debugfs, hdev,
561 &auto_accept_delay_fops);
1da177e4
LT
562 return 0;
563}
564
ce242970 565void hci_del_sysfs(struct hci_dev *hdev)
1da177e4 566{
c13854ce 567 BT_DBG("%p name %s bus %d", hdev, hdev->name, hdev->bus);
1da177e4 568
ca325f69
MH
569 debugfs_remove_recursive(hdev->debugfs);
570
4d0eb004 571 device_del(&hdev->dev);
1da177e4
LT
572}
573
574int __init bt_sysfs_init(void)
575{
ca325f69
MH
576 bt_debugfs = debugfs_create_dir("bluetooth", NULL);
577
a91f2e39 578 bt_class = class_create(THIS_MODULE, "bluetooth");
f48fd9c8 579 if (IS_ERR(bt_class))
90855d7b 580 return PTR_ERR(bt_class);
27d35284
MH
581
582 return 0;
1da177e4
LT
583}
584
860e13b5 585void bt_sysfs_cleanup(void)
1da177e4 586{
a91f2e39 587 class_destroy(bt_class);
ca325f69
MH
588
589 debugfs_remove_recursive(bt_debugfs);
1da177e4 590}