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 *btaddconn;
13 static struct workqueue_struct *btdelconn;
15 static inline char *link_typetostr(int type)
29 static ssize_t show_link_type(struct device *dev, struct device_attribute *attr, char *buf)
31 struct hci_conn *conn = dev_get_drvdata(dev);
32 return sprintf(buf, "%s\n", link_typetostr(conn->type));
35 static ssize_t show_link_address(struct device *dev, struct device_attribute *attr, char *buf)
37 struct hci_conn *conn = dev_get_drvdata(dev);
39 baswap(&bdaddr, &conn->dst);
40 return sprintf(buf, "%s\n", batostr(&bdaddr));
43 static ssize_t show_link_features(struct device *dev, struct device_attribute *attr, char *buf)
45 struct hci_conn *conn = dev_get_drvdata(dev);
47 return sprintf(buf, "0x%02x%02x%02x%02x%02x%02x%02x%02x\n",
48 conn->features[0], conn->features[1],
49 conn->features[2], conn->features[3],
50 conn->features[4], conn->features[5],
51 conn->features[6], conn->features[7]);
54 #define LINK_ATTR(_name,_mode,_show,_store) \
55 struct device_attribute link_attr_##_name = __ATTR(_name,_mode,_show,_store)
57 static LINK_ATTR(type, S_IRUGO, show_link_type, NULL);
58 static LINK_ATTR(address, S_IRUGO, show_link_address, NULL);
59 static LINK_ATTR(features, S_IRUGO, show_link_features, NULL);
61 static struct attribute *bt_link_attrs[] = {
63 &link_attr_address.attr,
64 &link_attr_features.attr,
68 static struct attribute_group bt_link_group = {
69 .attrs = bt_link_attrs,
72 static struct attribute_group *bt_link_groups[] = {
77 static void bt_link_release(struct device *dev)
79 void *data = dev_get_drvdata(dev);
83 static struct device_type bt_link = {
85 .groups = bt_link_groups,
86 .release = bt_link_release,
89 static void add_conn(struct work_struct *work)
91 struct hci_conn *conn = container_of(work, struct hci_conn, work);
93 flush_workqueue(btdelconn);
95 if (device_add(&conn->dev) < 0) {
96 BT_ERR("Failed to register connection device");
101 void hci_conn_add_sysfs(struct hci_conn *conn)
103 struct hci_dev *hdev = conn->hdev;
105 BT_DBG("conn %p", conn);
107 conn->dev.type = &bt_link;
108 conn->dev.class = bt_class;
109 conn->dev.parent = &hdev->dev;
111 dev_set_name(&conn->dev, "%s:%d", hdev->name, conn->handle);
113 dev_set_drvdata(&conn->dev, conn);
115 device_initialize(&conn->dev);
117 INIT_WORK(&conn->work, add_conn);
119 queue_work(btaddconn, &conn->work);
123 * The rfcomm tty device will possibly retain even when conn
124 * is down, and sysfs doesn't support move zombie device,
125 * so we should move the device before conn device is destroyed.
127 static int __match_tty(struct device *dev, void *data)
129 return !strncmp(dev_name(dev), "rfcomm", 6);
132 static void del_conn(struct work_struct *work)
134 struct hci_conn *conn = container_of(work, struct hci_conn, work);
135 struct hci_dev *hdev = conn->hdev;
140 dev = device_find_child(&conn->dev, NULL, __match_tty);
143 device_move(dev, NULL);
147 device_del(&conn->dev);
148 put_device(&conn->dev);
152 void hci_conn_del_sysfs(struct hci_conn *conn)
154 BT_DBG("conn %p", conn);
156 if (!device_is_registered(&conn->dev))
159 INIT_WORK(&conn->work, del_conn);
161 queue_work(btdelconn, &conn->work);
164 static inline char *host_typetostr(int type)
186 static ssize_t show_type(struct device *dev, struct device_attribute *attr, char *buf)
188 struct hci_dev *hdev = dev_get_drvdata(dev);
189 return sprintf(buf, "%s\n", host_typetostr(hdev->type));
192 static ssize_t show_name(struct device *dev, struct device_attribute *attr, char *buf)
194 struct hci_dev *hdev = dev_get_drvdata(dev);
198 for (i = 0; i < 248; i++)
199 name[i] = hdev->dev_name[i];
202 return sprintf(buf, "%s\n", name);
205 static ssize_t show_class(struct device *dev, struct device_attribute *attr, char *buf)
207 struct hci_dev *hdev = dev_get_drvdata(dev);
208 return sprintf(buf, "0x%.2x%.2x%.2x\n",
209 hdev->dev_class[2], hdev->dev_class[1], hdev->dev_class[0]);
212 static ssize_t show_address(struct device *dev, struct device_attribute *attr, char *buf)
214 struct hci_dev *hdev = dev_get_drvdata(dev);
216 baswap(&bdaddr, &hdev->bdaddr);
217 return sprintf(buf, "%s\n", batostr(&bdaddr));
220 static ssize_t show_features(struct device *dev, struct device_attribute *attr, char *buf)
222 struct hci_dev *hdev = dev_get_drvdata(dev);
224 return sprintf(buf, "0x%02x%02x%02x%02x%02x%02x%02x%02x\n",
225 hdev->features[0], hdev->features[1],
226 hdev->features[2], hdev->features[3],
227 hdev->features[4], hdev->features[5],
228 hdev->features[6], hdev->features[7]);
231 static ssize_t show_manufacturer(struct device *dev, struct device_attribute *attr, char *buf)
233 struct hci_dev *hdev = dev_get_drvdata(dev);
234 return sprintf(buf, "%d\n", hdev->manufacturer);
237 static ssize_t show_hci_version(struct device *dev, struct device_attribute *attr, char *buf)
239 struct hci_dev *hdev = dev_get_drvdata(dev);
240 return sprintf(buf, "%d\n", hdev->hci_ver);
243 static ssize_t show_hci_revision(struct device *dev, struct device_attribute *attr, char *buf)
245 struct hci_dev *hdev = dev_get_drvdata(dev);
246 return sprintf(buf, "%d\n", hdev->hci_rev);
249 static ssize_t show_inquiry_cache(struct device *dev, struct device_attribute *attr, char *buf)
251 struct hci_dev *hdev = dev_get_drvdata(dev);
252 struct inquiry_cache *cache = &hdev->inq_cache;
253 struct inquiry_entry *e;
256 hci_dev_lock_bh(hdev);
258 for (e = cache->list; e; e = e->next) {
259 struct inquiry_data *data = &e->data;
261 baswap(&bdaddr, &data->bdaddr);
262 n += sprintf(buf + n, "%s %d %d %d 0x%.2x%.2x%.2x 0x%.4x %d %d %u\n",
264 data->pscan_rep_mode, data->pscan_period_mode,
265 data->pscan_mode, data->dev_class[2],
266 data->dev_class[1], data->dev_class[0],
267 __le16_to_cpu(data->clock_offset),
268 data->rssi, data->ssp_mode, e->timestamp);
271 hci_dev_unlock_bh(hdev);
275 static ssize_t show_idle_timeout(struct device *dev, struct device_attribute *attr, char *buf)
277 struct hci_dev *hdev = dev_get_drvdata(dev);
278 return sprintf(buf, "%d\n", hdev->idle_timeout);
281 static ssize_t store_idle_timeout(struct device *dev, struct device_attribute *attr, const char *buf, size_t count)
283 struct hci_dev *hdev = dev_get_drvdata(dev);
287 val = simple_strtoul(buf, &ptr, 10);
291 if (val != 0 && (val < 500 || val > 3600000))
294 hdev->idle_timeout = val;
299 static ssize_t show_sniff_max_interval(struct device *dev, struct device_attribute *attr, char *buf)
301 struct hci_dev *hdev = dev_get_drvdata(dev);
302 return sprintf(buf, "%d\n", hdev->sniff_max_interval);
305 static ssize_t store_sniff_max_interval(struct device *dev, struct device_attribute *attr, const char *buf, size_t count)
307 struct hci_dev *hdev = dev_get_drvdata(dev);
311 val = simple_strtoul(buf, &ptr, 10);
315 if (val < 0x0002 || val > 0xFFFE || val % 2)
318 if (val < hdev->sniff_min_interval)
321 hdev->sniff_max_interval = val;
326 static ssize_t show_sniff_min_interval(struct device *dev, struct device_attribute *attr, char *buf)
328 struct hci_dev *hdev = dev_get_drvdata(dev);
329 return sprintf(buf, "%d\n", hdev->sniff_min_interval);
332 static ssize_t store_sniff_min_interval(struct device *dev, struct device_attribute *attr, const char *buf, size_t count)
334 struct hci_dev *hdev = dev_get_drvdata(dev);
338 val = simple_strtoul(buf, &ptr, 10);
342 if (val < 0x0002 || val > 0xFFFE || val % 2)
345 if (val > hdev->sniff_max_interval)
348 hdev->sniff_min_interval = val;
353 static DEVICE_ATTR(type, S_IRUGO, show_type, NULL);
354 static DEVICE_ATTR(name, S_IRUGO, show_name, NULL);
355 static DEVICE_ATTR(class, S_IRUGO, show_class, NULL);
356 static DEVICE_ATTR(address, S_IRUGO, show_address, NULL);
357 static DEVICE_ATTR(features, S_IRUGO, show_features, NULL);
358 static DEVICE_ATTR(manufacturer, S_IRUGO, show_manufacturer, NULL);
359 static DEVICE_ATTR(hci_version, S_IRUGO, show_hci_version, NULL);
360 static DEVICE_ATTR(hci_revision, S_IRUGO, show_hci_revision, NULL);
361 static DEVICE_ATTR(inquiry_cache, S_IRUGO, show_inquiry_cache, NULL);
363 static DEVICE_ATTR(idle_timeout, S_IRUGO | S_IWUSR,
364 show_idle_timeout, store_idle_timeout);
365 static DEVICE_ATTR(sniff_max_interval, S_IRUGO | S_IWUSR,
366 show_sniff_max_interval, store_sniff_max_interval);
367 static DEVICE_ATTR(sniff_min_interval, S_IRUGO | S_IWUSR,
368 show_sniff_min_interval, store_sniff_min_interval);
370 static struct attribute *bt_host_attrs[] = {
373 &dev_attr_class.attr,
374 &dev_attr_address.attr,
375 &dev_attr_features.attr,
376 &dev_attr_manufacturer.attr,
377 &dev_attr_hci_version.attr,
378 &dev_attr_hci_revision.attr,
379 &dev_attr_inquiry_cache.attr,
380 &dev_attr_idle_timeout.attr,
381 &dev_attr_sniff_max_interval.attr,
382 &dev_attr_sniff_min_interval.attr,
386 static struct attribute_group bt_host_group = {
387 .attrs = bt_host_attrs,
390 static struct attribute_group *bt_host_groups[] = {
395 static void bt_host_release(struct device *dev)
397 void *data = dev_get_drvdata(dev);
401 static struct device_type bt_host = {
403 .groups = bt_host_groups,
404 .release = bt_host_release,
407 int hci_register_sysfs(struct hci_dev *hdev)
409 struct device *dev = &hdev->dev;
412 BT_DBG("%p name %s type %d", hdev, hdev->name, hdev->type);
414 dev->type = &bt_host;
415 dev->class = bt_class;
416 dev->parent = hdev->parent;
418 dev_set_name(dev, "%s", hdev->name);
420 dev_set_drvdata(dev, hdev);
422 err = device_register(dev);
429 void hci_unregister_sysfs(struct hci_dev *hdev)
431 BT_DBG("%p name %s type %d", hdev, hdev->name, hdev->type);
433 device_del(&hdev->dev);
436 int __init bt_sysfs_init(void)
438 btaddconn = create_singlethread_workqueue("btaddconn");
442 btdelconn = create_singlethread_workqueue("btdelconn");
444 destroy_workqueue(btaddconn);
448 bt_class = class_create(THIS_MODULE, "bluetooth");
449 if (IS_ERR(bt_class)) {
450 destroy_workqueue(btdelconn);
451 destroy_workqueue(btaddconn);
452 return PTR_ERR(bt_class);
458 void bt_sysfs_cleanup(void)
460 destroy_workqueue(btaddconn);
461 destroy_workqueue(btdelconn);
463 class_destroy(bt_class);