1 /* Bluetooth HCI driver model support. */
3 #include <linux/kernel.h>
4 #include <linux/slab.h>
5 #include <linux/init.h>
6 #include <linux/debugfs.h>
7 #include <linux/seq_file.h>
9 #include <net/bluetooth/bluetooth.h>
10 #include <net/bluetooth/hci_core.h>
12 static struct class *bt_class;
14 struct dentry *bt_debugfs = NULL;
15 EXPORT_SYMBOL_GPL(bt_debugfs);
17 static struct workqueue_struct *bt_workq;
19 static inline char *link_typetostr(int type)
33 static ssize_t show_link_type(struct device *dev, struct device_attribute *attr, char *buf)
35 struct hci_conn *conn = dev_get_drvdata(dev);
36 return sprintf(buf, "%s\n", link_typetostr(conn->type));
39 static ssize_t show_link_address(struct device *dev, struct device_attribute *attr, char *buf)
41 struct hci_conn *conn = dev_get_drvdata(dev);
43 baswap(&bdaddr, &conn->dst);
44 return sprintf(buf, "%s\n", batostr(&bdaddr));
47 static ssize_t show_link_features(struct device *dev, struct device_attribute *attr, char *buf)
49 struct hci_conn *conn = dev_get_drvdata(dev);
51 return sprintf(buf, "0x%02x%02x%02x%02x%02x%02x%02x%02x\n",
52 conn->features[0], conn->features[1],
53 conn->features[2], conn->features[3],
54 conn->features[4], conn->features[5],
55 conn->features[6], conn->features[7]);
58 #define LINK_ATTR(_name,_mode,_show,_store) \
59 struct device_attribute link_attr_##_name = __ATTR(_name,_mode,_show,_store)
61 static LINK_ATTR(type, S_IRUGO, show_link_type, NULL);
62 static LINK_ATTR(address, S_IRUGO, show_link_address, NULL);
63 static LINK_ATTR(features, S_IRUGO, show_link_features, NULL);
65 static struct attribute *bt_link_attrs[] = {
67 &link_attr_address.attr,
68 &link_attr_features.attr,
72 static struct attribute_group bt_link_group = {
73 .attrs = bt_link_attrs,
76 static const struct attribute_group *bt_link_groups[] = {
81 static void bt_link_release(struct device *dev)
83 void *data = dev_get_drvdata(dev);
87 static struct device_type bt_link = {
89 .groups = bt_link_groups,
90 .release = bt_link_release,
93 static void add_conn(struct work_struct *work)
95 struct hci_conn *conn = container_of(work, struct hci_conn, work_add);
96 struct hci_dev *hdev = conn->hdev;
98 dev_set_name(&conn->dev, "%s:%d", hdev->name, conn->handle);
100 dev_set_drvdata(&conn->dev, conn);
102 if (device_add(&conn->dev) < 0) {
103 BT_ERR("Failed to register connection device");
111 * The rfcomm tty device will possibly retain even when conn
112 * is down, and sysfs doesn't support move zombie device,
113 * so we should move the device before conn device is destroyed.
115 static int __match_tty(struct device *dev, void *data)
117 return !strncmp(dev_name(dev), "rfcomm", 6);
120 static void del_conn(struct work_struct *work)
122 struct hci_conn *conn = container_of(work, struct hci_conn, work_del);
123 struct hci_dev *hdev = conn->hdev;
125 if (!device_is_registered(&conn->dev))
131 dev = device_find_child(&conn->dev, NULL, __match_tty);
134 device_move(dev, NULL, DPM_ORDER_DEV_LAST);
138 device_del(&conn->dev);
139 put_device(&conn->dev);
144 void hci_conn_init_sysfs(struct hci_conn *conn)
146 struct hci_dev *hdev = conn->hdev;
148 BT_DBG("conn %p", conn);
150 conn->dev.type = &bt_link;
151 conn->dev.class = bt_class;
152 conn->dev.parent = &hdev->dev;
154 device_initialize(&conn->dev);
156 INIT_WORK(&conn->work_add, add_conn);
157 INIT_WORK(&conn->work_del, del_conn);
160 void hci_conn_add_sysfs(struct hci_conn *conn)
162 BT_DBG("conn %p", conn);
164 queue_work(bt_workq, &conn->work_add);
167 void hci_conn_del_sysfs(struct hci_conn *conn)
169 BT_DBG("conn %p", conn);
171 queue_work(bt_workq, &conn->work_del);
174 static inline char *host_bustostr(int bus)
196 static inline char *host_typetostr(int type)
208 static ssize_t show_bus(struct device *dev, struct device_attribute *attr, char *buf)
210 struct hci_dev *hdev = dev_get_drvdata(dev);
211 return sprintf(buf, "%s\n", host_bustostr(hdev->bus));
214 static ssize_t show_type(struct device *dev, struct device_attribute *attr, char *buf)
216 struct hci_dev *hdev = dev_get_drvdata(dev);
217 return sprintf(buf, "%s\n", host_typetostr(hdev->dev_type));
220 static ssize_t show_name(struct device *dev, struct device_attribute *attr, char *buf)
222 struct hci_dev *hdev = dev_get_drvdata(dev);
226 for (i = 0; i < 248; i++)
227 name[i] = hdev->dev_name[i];
230 return sprintf(buf, "%s\n", name);
233 static ssize_t show_class(struct device *dev, struct device_attribute *attr, char *buf)
235 struct hci_dev *hdev = dev_get_drvdata(dev);
236 return sprintf(buf, "0x%.2x%.2x%.2x\n",
237 hdev->dev_class[2], hdev->dev_class[1], hdev->dev_class[0]);
240 static ssize_t show_address(struct device *dev, struct device_attribute *attr, char *buf)
242 struct hci_dev *hdev = dev_get_drvdata(dev);
244 baswap(&bdaddr, &hdev->bdaddr);
245 return sprintf(buf, "%s\n", batostr(&bdaddr));
248 static ssize_t show_features(struct device *dev, struct device_attribute *attr, char *buf)
250 struct hci_dev *hdev = dev_get_drvdata(dev);
252 return sprintf(buf, "0x%02x%02x%02x%02x%02x%02x%02x%02x\n",
253 hdev->features[0], hdev->features[1],
254 hdev->features[2], hdev->features[3],
255 hdev->features[4], hdev->features[5],
256 hdev->features[6], hdev->features[7]);
259 static ssize_t show_manufacturer(struct device *dev, struct device_attribute *attr, char *buf)
261 struct hci_dev *hdev = dev_get_drvdata(dev);
262 return sprintf(buf, "%d\n", hdev->manufacturer);
265 static ssize_t show_hci_version(struct device *dev, struct device_attribute *attr, char *buf)
267 struct hci_dev *hdev = dev_get_drvdata(dev);
268 return sprintf(buf, "%d\n", hdev->hci_ver);
271 static ssize_t show_hci_revision(struct device *dev, struct device_attribute *attr, char *buf)
273 struct hci_dev *hdev = dev_get_drvdata(dev);
274 return sprintf(buf, "%d\n", hdev->hci_rev);
277 static ssize_t show_idle_timeout(struct device *dev, struct device_attribute *attr, char *buf)
279 struct hci_dev *hdev = dev_get_drvdata(dev);
280 return sprintf(buf, "%d\n", hdev->idle_timeout);
283 static ssize_t store_idle_timeout(struct device *dev, struct device_attribute *attr, const char *buf, size_t count)
285 struct hci_dev *hdev = dev_get_drvdata(dev);
289 val = simple_strtoul(buf, &ptr, 10);
293 if (val != 0 && (val < 500 || val > 3600000))
296 hdev->idle_timeout = val;
301 static ssize_t show_sniff_max_interval(struct device *dev, struct device_attribute *attr, char *buf)
303 struct hci_dev *hdev = dev_get_drvdata(dev);
304 return sprintf(buf, "%d\n", hdev->sniff_max_interval);
307 static ssize_t store_sniff_max_interval(struct device *dev, struct device_attribute *attr, const char *buf, size_t count)
309 struct hci_dev *hdev = dev_get_drvdata(dev);
313 val = simple_strtoul(buf, &ptr, 10);
317 if (val < 0x0002 || val > 0xFFFE || val % 2)
320 if (val < hdev->sniff_min_interval)
323 hdev->sniff_max_interval = val;
328 static ssize_t show_sniff_min_interval(struct device *dev, struct device_attribute *attr, char *buf)
330 struct hci_dev *hdev = dev_get_drvdata(dev);
331 return sprintf(buf, "%d\n", hdev->sniff_min_interval);
334 static ssize_t store_sniff_min_interval(struct device *dev, struct device_attribute *attr, const char *buf, size_t count)
336 struct hci_dev *hdev = dev_get_drvdata(dev);
340 val = simple_strtoul(buf, &ptr, 10);
344 if (val < 0x0002 || val > 0xFFFE || val % 2)
347 if (val > hdev->sniff_max_interval)
350 hdev->sniff_min_interval = val;
355 static DEVICE_ATTR(bus, S_IRUGO, show_bus, NULL);
356 static DEVICE_ATTR(type, S_IRUGO, show_type, NULL);
357 static DEVICE_ATTR(name, S_IRUGO, show_name, NULL);
358 static DEVICE_ATTR(class, S_IRUGO, show_class, NULL);
359 static DEVICE_ATTR(address, S_IRUGO, show_address, NULL);
360 static DEVICE_ATTR(features, S_IRUGO, show_features, NULL);
361 static DEVICE_ATTR(manufacturer, S_IRUGO, show_manufacturer, NULL);
362 static DEVICE_ATTR(hci_version, S_IRUGO, show_hci_version, NULL);
363 static DEVICE_ATTR(hci_revision, S_IRUGO, show_hci_revision, NULL);
365 static DEVICE_ATTR(idle_timeout, S_IRUGO | S_IWUSR,
366 show_idle_timeout, store_idle_timeout);
367 static DEVICE_ATTR(sniff_max_interval, S_IRUGO | S_IWUSR,
368 show_sniff_max_interval, store_sniff_max_interval);
369 static DEVICE_ATTR(sniff_min_interval, S_IRUGO | S_IWUSR,
370 show_sniff_min_interval, store_sniff_min_interval);
372 static struct attribute *bt_host_attrs[] = {
376 &dev_attr_class.attr,
377 &dev_attr_address.attr,
378 &dev_attr_features.attr,
379 &dev_attr_manufacturer.attr,
380 &dev_attr_hci_version.attr,
381 &dev_attr_hci_revision.attr,
382 &dev_attr_idle_timeout.attr,
383 &dev_attr_sniff_max_interval.attr,
384 &dev_attr_sniff_min_interval.attr,
388 static struct attribute_group bt_host_group = {
389 .attrs = bt_host_attrs,
392 static const struct attribute_group *bt_host_groups[] = {
397 static void bt_host_release(struct device *dev)
399 void *data = dev_get_drvdata(dev);
403 static struct device_type bt_host = {
405 .groups = bt_host_groups,
406 .release = bt_host_release,
409 static int inquiry_cache_show(struct seq_file *f, void *p)
411 struct hci_dev *hdev = f->private;
412 struct inquiry_cache *cache = &hdev->inq_cache;
413 struct inquiry_entry *e;
415 hci_dev_lock_bh(hdev);
417 for (e = cache->list; e; e = e->next) {
418 struct inquiry_data *data = &e->data;
420 baswap(&bdaddr, &data->bdaddr);
421 seq_printf(f, "%s %d %d %d 0x%.2x%.2x%.2x 0x%.4x %d %d %u\n",
423 data->pscan_rep_mode, data->pscan_period_mode,
424 data->pscan_mode, data->dev_class[2],
425 data->dev_class[1], data->dev_class[0],
426 __le16_to_cpu(data->clock_offset),
427 data->rssi, data->ssp_mode, e->timestamp);
430 hci_dev_unlock_bh(hdev);
435 static int inquiry_cache_open(struct inode *inode, struct file *file)
437 return single_open(file, inquiry_cache_show, inode->i_private);
440 static const struct file_operations inquiry_cache_fops = {
441 .open = inquiry_cache_open,
444 .release = single_release,
447 int hci_register_sysfs(struct hci_dev *hdev)
449 struct device *dev = &hdev->dev;
452 BT_DBG("%p name %s bus %d", hdev, hdev->name, hdev->bus);
454 dev->type = &bt_host;
455 dev->class = bt_class;
456 dev->parent = hdev->parent;
458 dev_set_name(dev, "%s", hdev->name);
460 dev_set_drvdata(dev, hdev);
462 err = device_register(dev);
469 hdev->debugfs = debugfs_create_dir(hdev->name, bt_debugfs);
473 debugfs_create_file("inquiry_cache", 0444, hdev->debugfs,
474 hdev, &inquiry_cache_fops);
479 void hci_unregister_sysfs(struct hci_dev *hdev)
481 BT_DBG("%p name %s bus %d", hdev, hdev->name, hdev->bus);
483 debugfs_remove_recursive(hdev->debugfs);
485 device_del(&hdev->dev);
488 int __init bt_sysfs_init(void)
490 bt_workq = create_singlethread_workqueue("bluetooth");
494 bt_debugfs = debugfs_create_dir("bluetooth", NULL);
496 bt_class = class_create(THIS_MODULE, "bluetooth");
497 if (IS_ERR(bt_class)) {
498 destroy_workqueue(bt_workq);
499 return PTR_ERR(bt_class);
505 void bt_sysfs_cleanup(void)
507 class_destroy(bt_class);
509 debugfs_remove_recursive(bt_debugfs);
511 destroy_workqueue(bt_workq);