blob: 582d8877078c9894876bf448561fe17804874711 [file] [log] [blame]
Linus Torvalds1da177e2005-04-16 15:20:36 -07001/* Bluetooth HCI driver model support. */
2
Linus Torvalds1da177e2005-04-16 15:20:36 -07003#include <linux/kernel.h>
4#include <linux/init.h>
5
6#include <net/bluetooth/bluetooth.h>
7#include <net/bluetooth/hci_core.h>
8
Marcel Holtmann90855d72008-08-18 13:23:53 +02009struct class *bt_class = NULL;
10EXPORT_SYMBOL_GPL(bt_class);
11
Marcel Holtmanna67e8992009-05-02 18:24:06 -070012static struct workqueue_struct *bt_workq;
Linus Torvalds1da177e2005-04-16 15:20:36 -070013
Marcel Holtmann90855d72008-08-18 13:23:53 +020014static 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";
23 default:
24 return "UNKNOWN";
25 }
26}
27
28static ssize_t show_link_type(struct device *dev, struct device_attribute *attr, char *buf)
29{
30 struct hci_conn *conn = dev_get_drvdata(dev);
31 return sprintf(buf, "%s\n", link_typetostr(conn->type));
32}
33
34static ssize_t show_link_address(struct device *dev, struct device_attribute *attr, char *buf)
35{
36 struct hci_conn *conn = dev_get_drvdata(dev);
37 bdaddr_t bdaddr;
38 baswap(&bdaddr, &conn->dst);
39 return sprintf(buf, "%s\n", batostr(&bdaddr));
40}
41
42static ssize_t show_link_features(struct device *dev, struct device_attribute *attr, char *buf)
43{
44 struct hci_conn *conn = dev_get_drvdata(dev);
45
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]);
51}
52
53#define LINK_ATTR(_name,_mode,_show,_store) \
54struct device_attribute link_attr_##_name = __ATTR(_name,_mode,_show,_store)
55
56static LINK_ATTR(type, S_IRUGO, show_link_type, NULL);
57static LINK_ATTR(address, S_IRUGO, show_link_address, NULL);
58static LINK_ATTR(features, S_IRUGO, show_link_features, NULL);
59
60static struct attribute *bt_link_attrs[] = {
61 &link_attr_type.attr,
62 &link_attr_address.attr,
63 &link_attr_features.attr,
64 NULL
65};
66
67static struct attribute_group bt_link_group = {
68 .attrs = bt_link_attrs,
69};
70
71static struct attribute_group *bt_link_groups[] = {
72 &bt_link_group,
73 NULL
74};
75
76static void bt_link_release(struct device *dev)
77{
78 void *data = dev_get_drvdata(dev);
79 kfree(data);
80}
81
82static struct device_type bt_link = {
83 .name = "link",
84 .groups = bt_link_groups,
85 .release = bt_link_release,
86};
87
88static void add_conn(struct work_struct *work)
89{
Roger Quadrosf3784d82009-04-23 14:50:54 +030090 struct hci_conn *conn = container_of(work, struct hci_conn, work_add);
Marcel Holtmann90855d72008-08-18 13:23:53 +020091
Marcel Holtmanna67e8992009-05-02 18:24:06 -070092 /* ensure previous del is complete */
93 flush_work(&conn->work_del);
Marcel Holtmann90855d72008-08-18 13:23:53 +020094
95 if (device_add(&conn->dev) < 0) {
96 BT_ERR("Failed to register connection device");
97 return;
98 }
99}
100
Marcel Holtmann90855d72008-08-18 13:23:53 +0200101/*
102 * The rfcomm tty device will possibly retain even when conn
103 * is down, and sysfs doesn't support move zombie device,
104 * so we should move the device before conn device is destroyed.
105 */
106static int __match_tty(struct device *dev, void *data)
107{
Kay Sieversfb28ad32008-11-10 13:55:14 -0800108 return !strncmp(dev_name(dev), "rfcomm", 6);
Marcel Holtmann90855d72008-08-18 13:23:53 +0200109}
110
111static void del_conn(struct work_struct *work)
112{
Roger Quadrosf3784d82009-04-23 14:50:54 +0300113 struct hci_conn *conn = container_of(work, struct hci_conn, work_del);
Marcel Holtmann90855d72008-08-18 13:23:53 +0200114 struct hci_dev *hdev = conn->hdev;
115
Marcel Holtmanna67e8992009-05-02 18:24:06 -0700116 /* ensure previous add is complete */
117 flush_work(&conn->work_add);
118
119 if (!device_is_registered(&conn->dev))
120 return;
Roger Quadrosf3784d82009-04-23 14:50:54 +0300121
Marcel Holtmann90855d72008-08-18 13:23:53 +0200122 while (1) {
123 struct device *dev;
124
125 dev = device_find_child(&conn->dev, NULL, __match_tty);
126 if (!dev)
127 break;
Cornelia Huckffa6a702009-03-04 12:44:00 +0100128 device_move(dev, NULL, DPM_ORDER_DEV_LAST);
Marcel Holtmann90855d72008-08-18 13:23:53 +0200129 put_device(dev);
130 }
131
132 device_del(&conn->dev);
133 put_device(&conn->dev);
134 hci_dev_put(hdev);
135}
136
Marcel Holtmanna67e8992009-05-02 18:24:06 -0700137void hci_conn_init_sysfs(struct hci_conn *conn)
138{
139 struct hci_dev *hdev = conn->hdev;
140
141 BT_DBG("conn %p", conn);
142
143 conn->dev.type = &bt_link;
144 conn->dev.class = bt_class;
145 conn->dev.parent = &hdev->dev;
146
147 dev_set_drvdata(&conn->dev, conn);
148
149 device_initialize(&conn->dev);
150
151 INIT_WORK(&conn->work_add, add_conn);
152 INIT_WORK(&conn->work_del, del_conn);
153}
154
155void hci_conn_add_sysfs(struct hci_conn *conn)
156{
157 struct hci_dev *hdev = conn->hdev;
158
159 BT_DBG("conn %p", conn);
160
161 dev_set_name(&conn->dev, "%s:%d", hdev->name, conn->handle);
162
163 queue_work(bt_workq, &conn->work_add);
164}
165
Marcel Holtmann90855d72008-08-18 13:23:53 +0200166void hci_conn_del_sysfs(struct hci_conn *conn)
167{
168 BT_DBG("conn %p", conn);
169
Marcel Holtmanna67e8992009-05-02 18:24:06 -0700170 queue_work(bt_workq, &conn->work_del);
Marcel Holtmann90855d72008-08-18 13:23:53 +0200171}
172
173static inline char *host_typetostr(int type)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700174{
Marcel Holtmann4d0eb002006-07-06 12:34:41 +0200175 switch (type) {
Marcel Holtmann0ac53932006-07-08 13:57:15 +0200176 case HCI_VIRTUAL:
Marcel Holtmann4d0eb002006-07-06 12:34:41 +0200177 return "VIRTUAL";
178 case HCI_USB:
179 return "USB";
180 case HCI_PCCARD:
181 return "PCCARD";
182 case HCI_UART:
183 return "UART";
184 case HCI_RS232:
185 return "RS232";
186 case HCI_PCI:
187 return "PCI";
Marcel Holtmann0ac53932006-07-08 13:57:15 +0200188 case HCI_SDIO:
189 return "SDIO";
Marcel Holtmann4d0eb002006-07-06 12:34:41 +0200190 default:
191 return "UNKNOWN";
192 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700193}
194
Marcel Holtmanna91f2e32006-07-03 10:02:41 +0200195static ssize_t show_type(struct device *dev, struct device_attribute *attr, char *buf)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700196{
Marcel Holtmanna91f2e32006-07-03 10:02:41 +0200197 struct hci_dev *hdev = dev_get_drvdata(dev);
Marcel Holtmann90855d72008-08-18 13:23:53 +0200198 return sprintf(buf, "%s\n", host_typetostr(hdev->type));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700199}
200
Marcel Holtmanna9de9242007-10-20 13:33:56 +0200201static ssize_t show_name(struct device *dev, struct device_attribute *attr, char *buf)
202{
203 struct hci_dev *hdev = dev_get_drvdata(dev);
204 char name[249];
205 int i;
206
207 for (i = 0; i < 248; i++)
208 name[i] = hdev->dev_name[i];
209
210 name[248] = '\0';
211 return sprintf(buf, "%s\n", name);
212}
213
214static ssize_t show_class(struct device *dev, struct device_attribute *attr, char *buf)
215{
216 struct hci_dev *hdev = dev_get_drvdata(dev);
217 return sprintf(buf, "0x%.2x%.2x%.2x\n",
218 hdev->dev_class[2], hdev->dev_class[1], hdev->dev_class[0]);
219}
220
Marcel Holtmanna91f2e32006-07-03 10:02:41 +0200221static ssize_t show_address(struct device *dev, struct device_attribute *attr, char *buf)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700222{
Marcel Holtmanna91f2e32006-07-03 10:02:41 +0200223 struct hci_dev *hdev = dev_get_drvdata(dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700224 bdaddr_t bdaddr;
225 baswap(&bdaddr, &hdev->bdaddr);
226 return sprintf(buf, "%s\n", batostr(&bdaddr));
227}
228
Marcel Holtmanna9de9242007-10-20 13:33:56 +0200229static ssize_t show_features(struct device *dev, struct device_attribute *attr, char *buf)
230{
231 struct hci_dev *hdev = dev_get_drvdata(dev);
232
233 return sprintf(buf, "0x%02x%02x%02x%02x%02x%02x%02x%02x\n",
234 hdev->features[0], hdev->features[1],
235 hdev->features[2], hdev->features[3],
236 hdev->features[4], hdev->features[5],
237 hdev->features[6], hdev->features[7]);
238}
239
Marcel Holtmann1143e5a2006-09-23 09:57:20 +0200240static ssize_t show_manufacturer(struct device *dev, struct device_attribute *attr, char *buf)
241{
242 struct hci_dev *hdev = dev_get_drvdata(dev);
243 return sprintf(buf, "%d\n", hdev->manufacturer);
244}
245
246static ssize_t show_hci_version(struct device *dev, struct device_attribute *attr, char *buf)
247{
248 struct hci_dev *hdev = dev_get_drvdata(dev);
249 return sprintf(buf, "%d\n", hdev->hci_ver);
250}
251
252static ssize_t show_hci_revision(struct device *dev, struct device_attribute *attr, char *buf)
253{
254 struct hci_dev *hdev = dev_get_drvdata(dev);
255 return sprintf(buf, "%d\n", hdev->hci_rev);
256}
257
Marcel Holtmanna91f2e32006-07-03 10:02:41 +0200258static ssize_t show_inquiry_cache(struct device *dev, struct device_attribute *attr, char *buf)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700259{
Marcel Holtmanna91f2e32006-07-03 10:02:41 +0200260 struct hci_dev *hdev = dev_get_drvdata(dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700261 struct inquiry_cache *cache = &hdev->inq_cache;
262 struct inquiry_entry *e;
263 int n = 0;
264
265 hci_dev_lock_bh(hdev);
266
267 for (e = cache->list; e; e = e->next) {
268 struct inquiry_data *data = &e->data;
269 bdaddr_t bdaddr;
270 baswap(&bdaddr, &data->bdaddr);
Marcel Holtmanna8bd28ba2008-07-14 20:13:49 +0200271 n += sprintf(buf + n, "%s %d %d %d 0x%.2x%.2x%.2x 0x%.4x %d %d %u\n",
Linus Torvalds1da177e2005-04-16 15:20:36 -0700272 batostr(&bdaddr),
Marcel Holtmanna8bd28ba2008-07-14 20:13:49 +0200273 data->pscan_rep_mode, data->pscan_period_mode,
274 data->pscan_mode, data->dev_class[2],
275 data->dev_class[1], data->dev_class[0],
276 __le16_to_cpu(data->clock_offset),
277 data->rssi, data->ssp_mode, e->timestamp);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700278 }
279
280 hci_dev_unlock_bh(hdev);
281 return n;
282}
283
Marcel Holtmanna91f2e32006-07-03 10:02:41 +0200284static ssize_t show_idle_timeout(struct device *dev, struct device_attribute *attr, char *buf)
Marcel Holtmann04837f62006-07-03 10:02:33 +0200285{
Marcel Holtmanna91f2e32006-07-03 10:02:41 +0200286 struct hci_dev *hdev = dev_get_drvdata(dev);
Marcel Holtmann04837f62006-07-03 10:02:33 +0200287 return sprintf(buf, "%d\n", hdev->idle_timeout);
288}
289
Marcel Holtmanna91f2e32006-07-03 10:02:41 +0200290static ssize_t store_idle_timeout(struct device *dev, struct device_attribute *attr, const char *buf, size_t count)
Marcel Holtmann04837f62006-07-03 10:02:33 +0200291{
Marcel Holtmanna91f2e32006-07-03 10:02:41 +0200292 struct hci_dev *hdev = dev_get_drvdata(dev);
Marcel Holtmann04837f62006-07-03 10:02:33 +0200293 char *ptr;
294 __u32 val;
295
296 val = simple_strtoul(buf, &ptr, 10);
297 if (ptr == buf)
298 return -EINVAL;
299
300 if (val != 0 && (val < 500 || val > 3600000))
301 return -EINVAL;
302
303 hdev->idle_timeout = val;
304
305 return count;
306}
307
Marcel Holtmanna91f2e32006-07-03 10:02:41 +0200308static ssize_t show_sniff_max_interval(struct device *dev, struct device_attribute *attr, char *buf)
Marcel Holtmann04837f62006-07-03 10:02:33 +0200309{
Marcel Holtmanna91f2e32006-07-03 10:02:41 +0200310 struct hci_dev *hdev = dev_get_drvdata(dev);
Marcel Holtmann04837f62006-07-03 10:02:33 +0200311 return sprintf(buf, "%d\n", hdev->sniff_max_interval);
312}
313
Marcel Holtmanna91f2e32006-07-03 10:02:41 +0200314static ssize_t store_sniff_max_interval(struct device *dev, struct device_attribute *attr, const char *buf, size_t count)
Marcel Holtmann04837f62006-07-03 10:02:33 +0200315{
Marcel Holtmanna91f2e32006-07-03 10:02:41 +0200316 struct hci_dev *hdev = dev_get_drvdata(dev);
Marcel Holtmann04837f62006-07-03 10:02:33 +0200317 char *ptr;
318 __u16 val;
319
320 val = simple_strtoul(buf, &ptr, 10);
321 if (ptr == buf)
322 return -EINVAL;
323
324 if (val < 0x0002 || val > 0xFFFE || val % 2)
325 return -EINVAL;
326
327 if (val < hdev->sniff_min_interval)
328 return -EINVAL;
329
330 hdev->sniff_max_interval = val;
331
332 return count;
333}
334
Marcel Holtmanna91f2e32006-07-03 10:02:41 +0200335static ssize_t show_sniff_min_interval(struct device *dev, struct device_attribute *attr, char *buf)
Marcel Holtmann04837f62006-07-03 10:02:33 +0200336{
Marcel Holtmanna91f2e32006-07-03 10:02:41 +0200337 struct hci_dev *hdev = dev_get_drvdata(dev);
Marcel Holtmann04837f62006-07-03 10:02:33 +0200338 return sprintf(buf, "%d\n", hdev->sniff_min_interval);
339}
340
Marcel Holtmanna91f2e32006-07-03 10:02:41 +0200341static ssize_t store_sniff_min_interval(struct device *dev, struct device_attribute *attr, const char *buf, size_t count)
Marcel Holtmann04837f62006-07-03 10:02:33 +0200342{
Marcel Holtmanna91f2e32006-07-03 10:02:41 +0200343 struct hci_dev *hdev = dev_get_drvdata(dev);
Marcel Holtmann04837f62006-07-03 10:02:33 +0200344 char *ptr;
345 __u16 val;
346
347 val = simple_strtoul(buf, &ptr, 10);
348 if (ptr == buf)
349 return -EINVAL;
350
351 if (val < 0x0002 || val > 0xFFFE || val % 2)
352 return -EINVAL;
353
354 if (val > hdev->sniff_max_interval)
355 return -EINVAL;
356
357 hdev->sniff_min_interval = val;
358
359 return count;
360}
361
Marcel Holtmanna91f2e32006-07-03 10:02:41 +0200362static DEVICE_ATTR(type, S_IRUGO, show_type, NULL);
Marcel Holtmanna9de9242007-10-20 13:33:56 +0200363static DEVICE_ATTR(name, S_IRUGO, show_name, NULL);
364static DEVICE_ATTR(class, S_IRUGO, show_class, NULL);
Marcel Holtmanna91f2e32006-07-03 10:02:41 +0200365static DEVICE_ATTR(address, S_IRUGO, show_address, NULL);
Marcel Holtmanna9de9242007-10-20 13:33:56 +0200366static DEVICE_ATTR(features, S_IRUGO, show_features, NULL);
Marcel Holtmann1143e5a2006-09-23 09:57:20 +0200367static DEVICE_ATTR(manufacturer, S_IRUGO, show_manufacturer, NULL);
368static DEVICE_ATTR(hci_version, S_IRUGO, show_hci_version, NULL);
369static DEVICE_ATTR(hci_revision, S_IRUGO, show_hci_revision, NULL);
Marcel Holtmanna91f2e32006-07-03 10:02:41 +0200370static DEVICE_ATTR(inquiry_cache, S_IRUGO, show_inquiry_cache, NULL);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700371
Marcel Holtmanna91f2e32006-07-03 10:02:41 +0200372static DEVICE_ATTR(idle_timeout, S_IRUGO | S_IWUSR,
Marcel Holtmann04837f62006-07-03 10:02:33 +0200373 show_idle_timeout, store_idle_timeout);
Marcel Holtmanna91f2e32006-07-03 10:02:41 +0200374static DEVICE_ATTR(sniff_max_interval, S_IRUGO | S_IWUSR,
Marcel Holtmann04837f62006-07-03 10:02:33 +0200375 show_sniff_max_interval, store_sniff_max_interval);
Marcel Holtmanna91f2e32006-07-03 10:02:41 +0200376static DEVICE_ATTR(sniff_min_interval, S_IRUGO | S_IWUSR,
Marcel Holtmann04837f62006-07-03 10:02:33 +0200377 show_sniff_min_interval, store_sniff_min_interval);
378
Marcel Holtmann90855d72008-08-18 13:23:53 +0200379static struct attribute *bt_host_attrs[] = {
380 &dev_attr_type.attr,
381 &dev_attr_name.attr,
382 &dev_attr_class.attr,
383 &dev_attr_address.attr,
384 &dev_attr_features.attr,
385 &dev_attr_manufacturer.attr,
386 &dev_attr_hci_version.attr,
387 &dev_attr_hci_revision.attr,
388 &dev_attr_inquiry_cache.attr,
389 &dev_attr_idle_timeout.attr,
390 &dev_attr_sniff_max_interval.attr,
391 &dev_attr_sniff_min_interval.attr,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700392 NULL
393};
394
Marcel Holtmann90855d72008-08-18 13:23:53 +0200395static struct attribute_group bt_host_group = {
396 .attrs = bt_host_attrs,
397};
Marcel Holtmannb219e3a2006-07-06 12:38:46 +0200398
Marcel Holtmann90855d72008-08-18 13:23:53 +0200399static struct attribute_group *bt_host_groups[] = {
400 &bt_host_group,
Marcel Holtmannb219e3a2006-07-06 12:38:46 +0200401 NULL
402};
403
Marcel Holtmann90855d72008-08-18 13:23:53 +0200404static void bt_host_release(struct device *dev)
Marcel Holtmanna91f2e32006-07-03 10:02:41 +0200405{
Marcel Holtmannb219e3a2006-07-06 12:38:46 +0200406 void *data = dev_get_drvdata(dev);
407 kfree(data);
408}
409
Marcel Holtmann90855d72008-08-18 13:23:53 +0200410static struct device_type bt_host = {
411 .name = "host",
412 .groups = bt_host_groups,
413 .release = bt_host_release,
414};
Marcel Holtmanna91f2e32006-07-03 10:02:41 +0200415
Linus Torvalds1da177e2005-04-16 15:20:36 -0700416int hci_register_sysfs(struct hci_dev *hdev)
417{
Marcel Holtmanna91f2e32006-07-03 10:02:41 +0200418 struct device *dev = &hdev->dev;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700419 int err;
420
421 BT_DBG("%p name %s type %d", hdev, hdev->name, hdev->type);
422
Marcel Holtmann90855d72008-08-18 13:23:53 +0200423 dev->type = &bt_host;
424 dev->class = bt_class;
Marcel Holtmanne9c4bec2006-10-15 17:30:50 +0200425 dev->parent = hdev->parent;
Marcel Holtmann27d35282006-07-03 10:02:37 +0200426
Marcel Holtmann2e792992008-11-30 12:17:29 +0100427 dev_set_name(dev, "%s", hdev->name);
Marcel Holtmann27d35282006-07-03 10:02:37 +0200428
Marcel Holtmanna91f2e32006-07-03 10:02:41 +0200429 dev_set_drvdata(dev, hdev);
430
431 err = device_register(dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700432 if (err < 0)
433 return err;
434
Linus Torvalds1da177e2005-04-16 15:20:36 -0700435 return 0;
436}
437
438void hci_unregister_sysfs(struct hci_dev *hdev)
439{
Linus Torvalds1da177e2005-04-16 15:20:36 -0700440 BT_DBG("%p name %s type %d", hdev, hdev->name, hdev->type);
441
Marcel Holtmann4d0eb002006-07-06 12:34:41 +0200442 device_del(&hdev->dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700443}
444
445int __init bt_sysfs_init(void)
446{
Marcel Holtmanna67e8992009-05-02 18:24:06 -0700447 bt_workq = create_singlethread_workqueue("bluetooth");
448 if (!bt_workq)
Marcel Holtmann90855d72008-08-18 13:23:53 +0200449 return -ENOMEM;
Dave Young5396c932008-01-31 18:33:10 -0800450
Marcel Holtmanna91f2e32006-07-03 10:02:41 +0200451 bt_class = class_create(THIS_MODULE, "bluetooth");
452 if (IS_ERR(bt_class)) {
Marcel Holtmanna67e8992009-05-02 18:24:06 -0700453 destroy_workqueue(bt_workq);
Marcel Holtmann90855d72008-08-18 13:23:53 +0200454 return PTR_ERR(bt_class);
Marcel Holtmann27d35282006-07-03 10:02:37 +0200455 }
456
457 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700458}
459
Arnaud Patard860e13b2006-09-28 15:29:37 -0700460void bt_sysfs_cleanup(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700461{
Marcel Holtmanna67e8992009-05-02 18:24:06 -0700462 destroy_workqueue(bt_workq);
Dave Young5396c932008-01-31 18:33:10 -0800463
Marcel Holtmanna91f2e32006-07-03 10:02:41 +0200464 class_destroy(bt_class);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700465}