1 /* Bluetooth HCI driver model support. */
3 #include <linux/kernel.h>
4 #include <linux/init.h>
6 #include <net/bluetooth/bluetooth.h>
7 #include <net/bluetooth/hci_core.h>
9 struct class *bt_class = NULL;
10 EXPORT_SYMBOL_GPL(bt_class);
12 static struct workqueue_struct *bt_workq;
14 static inline char *link_typetostr(int type)
28 static ssize_t show_link_type(struct device *dev, struct device_attribute *attr, char *buf)
30 struct hci_conn *conn = dev_get_drvdata(dev);
31 return sprintf(buf, "%s\n", link_typetostr(conn->type));
34 static ssize_t show_link_address(struct device *dev, struct device_attribute *attr, char *buf)
36 struct hci_conn *conn = dev_get_drvdata(dev);
38 baswap(&bdaddr, &conn->dst);
39 return sprintf(buf, "%s\n", batostr(&bdaddr));
42 static ssize_t show_link_features(struct device *dev, struct device_attribute *attr, char *buf)
44 struct hci_conn *conn = dev_get_drvdata(dev);
46 return sprintf(buf, "0x%02x%02x%02x%02x%02x%02x%02x%02x\n",
47 conn->features[0], conn->features[1],
48 conn->features[2], conn->features[3],
49 conn->features[4], conn->features[5],
50 conn->features[6], conn->features[7]);
53 #define LINK_ATTR(_name,_mode,_show,_store) \
54 struct device_attribute link_attr_##_name = __ATTR(_name,_mode,_show,_store)
56 static LINK_ATTR(type, S_IRUGO, show_link_type, NULL);
57 static LINK_ATTR(address, S_IRUGO, show_link_address, NULL);
58 static LINK_ATTR(features, S_IRUGO, show_link_features, NULL);
60 static struct attribute *bt_link_attrs[] = {
62 &link_attr_address.attr,
63 &link_attr_features.attr,
67 static struct attribute_group bt_link_group = {
68 .attrs = bt_link_attrs,
71 static struct attribute_group *bt_link_groups[] = {
76 static void bt_link_release(struct device *dev)
78 void *data = dev_get_drvdata(dev);
82 static struct device_type bt_link = {
84 .groups = bt_link_groups,
85 .release = bt_link_release,
88 static void add_conn(struct work_struct *work)
90 struct hci_conn *conn = container_of(work, struct hci_conn, work_add);
91 struct hci_dev *hdev = conn->hdev;
93 /* ensure previous del is complete */
94 flush_work(&conn->work_del);
96 dev_set_name(&conn->dev, "%s:%d", hdev->name, conn->handle);
98 if (device_add(&conn->dev) < 0) {
99 BT_ERR("Failed to register connection device");
107 * The rfcomm tty device will possibly retain even when conn
108 * is down, and sysfs doesn't support move zombie device,
109 * so we should move the device before conn device is destroyed.
111 static int __match_tty(struct device *dev, void *data)
113 return !strncmp(dev_name(dev), "rfcomm", 6);
116 static void del_conn(struct work_struct *work)
118 struct hci_conn *conn = container_of(work, struct hci_conn, work_del);
119 struct hci_dev *hdev = conn->hdev;
121 /* ensure previous add is complete */
122 flush_work(&conn->work_add);
124 if (!device_is_registered(&conn->dev))
130 dev = device_find_child(&conn->dev, NULL, __match_tty);
133 device_move(dev, NULL, DPM_ORDER_DEV_LAST);
137 device_del(&conn->dev);
138 put_device(&conn->dev);
143 void hci_conn_init_sysfs(struct hci_conn *conn)
145 struct hci_dev *hdev = conn->hdev;
147 BT_DBG("conn %p", conn);
149 conn->dev.type = &bt_link;
150 conn->dev.class = bt_class;
151 conn->dev.parent = &hdev->dev;
153 dev_set_drvdata(&conn->dev, conn);
155 device_initialize(&conn->dev);
157 INIT_WORK(&conn->work_add, add_conn);
158 INIT_WORK(&conn->work_del, del_conn);
161 void hci_conn_add_sysfs(struct hci_conn *conn)
163 BT_DBG("conn %p", conn);
165 queue_work(bt_workq, &conn->work_add);
168 void hci_conn_del_sysfs(struct hci_conn *conn)
170 BT_DBG("conn %p", conn);
172 queue_work(bt_workq, &conn->work_del);
175 static inline char *host_typetostr(int type)
197 static ssize_t show_type(struct device *dev, struct device_attribute *attr, char *buf)
199 struct hci_dev *hdev = dev_get_drvdata(dev);
200 return sprintf(buf, "%s\n", host_typetostr(hdev->type));
203 static ssize_t show_name(struct device *dev, struct device_attribute *attr, char *buf)
205 struct hci_dev *hdev = dev_get_drvdata(dev);
209 for (i = 0; i < 248; i++)
210 name[i] = hdev->dev_name[i];
213 return sprintf(buf, "%s\n", name);
216 static ssize_t show_class(struct device *dev, struct device_attribute *attr, char *buf)
218 struct hci_dev *hdev = dev_get_drvdata(dev);
219 return sprintf(buf, "0x%.2x%.2x%.2x\n",
220 hdev->dev_class[2], hdev->dev_class[1], hdev->dev_class[0]);
223 static ssize_t show_address(struct device *dev, struct device_attribute *attr, char *buf)
225 struct hci_dev *hdev = dev_get_drvdata(dev);
227 baswap(&bdaddr, &hdev->bdaddr);
228 return sprintf(buf, "%s\n", batostr(&bdaddr));
231 static ssize_t show_features(struct device *dev, struct device_attribute *attr, char *buf)
233 struct hci_dev *hdev = dev_get_drvdata(dev);
235 return sprintf(buf, "0x%02x%02x%02x%02x%02x%02x%02x%02x\n",
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]);
242 static ssize_t show_manufacturer(struct device *dev, struct device_attribute *attr, char *buf)
244 struct hci_dev *hdev = dev_get_drvdata(dev);
245 return sprintf(buf, "%d\n", hdev->manufacturer);
248 static ssize_t show_hci_version(struct device *dev, struct device_attribute *attr, char *buf)
250 struct hci_dev *hdev = dev_get_drvdata(dev);
251 return sprintf(buf, "%d\n", hdev->hci_ver);
254 static ssize_t show_hci_revision(struct device *dev, struct device_attribute *attr, char *buf)
256 struct hci_dev *hdev = dev_get_drvdata(dev);
257 return sprintf(buf, "%d\n", hdev->hci_rev);
260 static ssize_t show_inquiry_cache(struct device *dev, struct device_attribute *attr, char *buf)
262 struct hci_dev *hdev = dev_get_drvdata(dev);
263 struct inquiry_cache *cache = &hdev->inq_cache;
264 struct inquiry_entry *e;
267 hci_dev_lock_bh(hdev);
269 for (e = cache->list; e; e = e->next) {
270 struct inquiry_data *data = &e->data;
272 baswap(&bdaddr, &data->bdaddr);
273 n += sprintf(buf + n, "%s %d %d %d 0x%.2x%.2x%.2x 0x%.4x %d %d %u\n",
275 data->pscan_rep_mode, data->pscan_period_mode,
276 data->pscan_mode, data->dev_class[2],
277 data->dev_class[1], data->dev_class[0],
278 __le16_to_cpu(data->clock_offset),
279 data->rssi, data->ssp_mode, e->timestamp);
282 hci_dev_unlock_bh(hdev);
286 static ssize_t show_idle_timeout(struct device *dev, struct device_attribute *attr, char *buf)
288 struct hci_dev *hdev = dev_get_drvdata(dev);
289 return sprintf(buf, "%d\n", hdev->idle_timeout);
292 static ssize_t store_idle_timeout(struct device *dev, struct device_attribute *attr, const char *buf, size_t count)
294 struct hci_dev *hdev = dev_get_drvdata(dev);
298 val = simple_strtoul(buf, &ptr, 10);
302 if (val != 0 && (val < 500 || val > 3600000))
305 hdev->idle_timeout = val;
310 static ssize_t show_sniff_max_interval(struct device *dev, struct device_attribute *attr, char *buf)
312 struct hci_dev *hdev = dev_get_drvdata(dev);
313 return sprintf(buf, "%d\n", hdev->sniff_max_interval);
316 static ssize_t store_sniff_max_interval(struct device *dev, struct device_attribute *attr, const char *buf, size_t count)
318 struct hci_dev *hdev = dev_get_drvdata(dev);
322 val = simple_strtoul(buf, &ptr, 10);
326 if (val < 0x0002 || val > 0xFFFE || val % 2)
329 if (val < hdev->sniff_min_interval)
332 hdev->sniff_max_interval = val;
337 static ssize_t show_sniff_min_interval(struct device *dev, struct device_attribute *attr, char *buf)
339 struct hci_dev *hdev = dev_get_drvdata(dev);
340 return sprintf(buf, "%d\n", hdev->sniff_min_interval);
343 static ssize_t store_sniff_min_interval(struct device *dev, struct device_attribute *attr, const char *buf, size_t count)
345 struct hci_dev *hdev = dev_get_drvdata(dev);
349 val = simple_strtoul(buf, &ptr, 10);
353 if (val < 0x0002 || val > 0xFFFE || val % 2)
356 if (val > hdev->sniff_max_interval)
359 hdev->sniff_min_interval = val;
364 static DEVICE_ATTR(type, S_IRUGO, show_type, NULL);
365 static DEVICE_ATTR(name, S_IRUGO, show_name, NULL);
366 static DEVICE_ATTR(class, S_IRUGO, show_class, NULL);
367 static DEVICE_ATTR(address, S_IRUGO, show_address, NULL);
368 static DEVICE_ATTR(features, S_IRUGO, show_features, NULL);
369 static DEVICE_ATTR(manufacturer, S_IRUGO, show_manufacturer, NULL);
370 static DEVICE_ATTR(hci_version, S_IRUGO, show_hci_version, NULL);
371 static DEVICE_ATTR(hci_revision, S_IRUGO, show_hci_revision, NULL);
372 static DEVICE_ATTR(inquiry_cache, S_IRUGO, show_inquiry_cache, NULL);
374 static DEVICE_ATTR(idle_timeout, S_IRUGO | S_IWUSR,
375 show_idle_timeout, store_idle_timeout);
376 static DEVICE_ATTR(sniff_max_interval, S_IRUGO | S_IWUSR,
377 show_sniff_max_interval, store_sniff_max_interval);
378 static DEVICE_ATTR(sniff_min_interval, S_IRUGO | S_IWUSR,
379 show_sniff_min_interval, store_sniff_min_interval);
381 static struct attribute *bt_host_attrs[] = {
384 &dev_attr_class.attr,
385 &dev_attr_address.attr,
386 &dev_attr_features.attr,
387 &dev_attr_manufacturer.attr,
388 &dev_attr_hci_version.attr,
389 &dev_attr_hci_revision.attr,
390 &dev_attr_inquiry_cache.attr,
391 &dev_attr_idle_timeout.attr,
392 &dev_attr_sniff_max_interval.attr,
393 &dev_attr_sniff_min_interval.attr,
397 static struct attribute_group bt_host_group = {
398 .attrs = bt_host_attrs,
401 static struct attribute_group *bt_host_groups[] = {
406 static void bt_host_release(struct device *dev)
408 void *data = dev_get_drvdata(dev);
412 static struct device_type bt_host = {
414 .groups = bt_host_groups,
415 .release = bt_host_release,
418 int hci_register_sysfs(struct hci_dev *hdev)
420 struct device *dev = &hdev->dev;
423 BT_DBG("%p name %s type %d", hdev, hdev->name, hdev->type);
425 dev->type = &bt_host;
426 dev->class = bt_class;
427 dev->parent = hdev->parent;
429 dev_set_name(dev, "%s", hdev->name);
431 dev_set_drvdata(dev, hdev);
433 err = device_register(dev);
440 void hci_unregister_sysfs(struct hci_dev *hdev)
442 BT_DBG("%p name %s type %d", hdev, hdev->name, hdev->type);
444 device_del(&hdev->dev);
447 int __init bt_sysfs_init(void)
449 bt_workq = create_singlethread_workqueue("bluetooth");
453 bt_class = class_create(THIS_MODULE, "bluetooth");
454 if (IS_ERR(bt_class)) {
455 destroy_workqueue(bt_workq);
456 return PTR_ERR(bt_class);
462 void bt_sysfs_cleanup(void)
464 destroy_workqueue(bt_workq);
466 class_destroy(bt_class);