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