net: struct device - replace bus_id with dev_name(), dev_set_name()
[safe/jmp/linux-2.6] / net / bluetooth / hci_sysfs.c
1 /* Bluetooth HCI driver model support. */
2
3 #include <linux/kernel.h>
4 #include <linux/init.h>
5
6 #include <net/bluetooth/bluetooth.h>
7 #include <net/bluetooth/hci_core.h>
8
9 #ifndef CONFIG_BT_HCI_CORE_DEBUG
10 #undef  BT_DBG
11 #define BT_DBG(D...)
12 #endif
13
14 struct class *bt_class = NULL;
15 EXPORT_SYMBOL_GPL(bt_class);
16
17 static struct workqueue_struct *btaddconn;
18 static struct workqueue_struct *btdelconn;
19
20 static inline char *link_typetostr(int type)
21 {
22         switch (type) {
23         case ACL_LINK:
24                 return "ACL";
25         case SCO_LINK:
26                 return "SCO";
27         case ESCO_LINK:
28                 return "eSCO";
29         default:
30                 return "UNKNOWN";
31         }
32 }
33
34 static ssize_t show_link_type(struct device *dev, struct device_attribute *attr, char *buf)
35 {
36         struct hci_conn *conn = dev_get_drvdata(dev);
37         return sprintf(buf, "%s\n", link_typetostr(conn->type));
38 }
39
40 static ssize_t show_link_address(struct device *dev, struct device_attribute *attr, char *buf)
41 {
42         struct hci_conn *conn = dev_get_drvdata(dev);
43         bdaddr_t bdaddr;
44         baswap(&bdaddr, &conn->dst);
45         return sprintf(buf, "%s\n", batostr(&bdaddr));
46 }
47
48 static ssize_t show_link_features(struct device *dev, struct device_attribute *attr, char *buf)
49 {
50         struct hci_conn *conn = dev_get_drvdata(dev);
51
52         return sprintf(buf, "0x%02x%02x%02x%02x%02x%02x%02x%02x\n",
53                                 conn->features[0], conn->features[1],
54                                 conn->features[2], conn->features[3],
55                                 conn->features[4], conn->features[5],
56                                 conn->features[6], conn->features[7]);
57 }
58
59 #define LINK_ATTR(_name,_mode,_show,_store) \
60 struct device_attribute link_attr_##_name = __ATTR(_name,_mode,_show,_store)
61
62 static LINK_ATTR(type, S_IRUGO, show_link_type, NULL);
63 static LINK_ATTR(address, S_IRUGO, show_link_address, NULL);
64 static LINK_ATTR(features, S_IRUGO, show_link_features, NULL);
65
66 static struct attribute *bt_link_attrs[] = {
67         &link_attr_type.attr,
68         &link_attr_address.attr,
69         &link_attr_features.attr,
70         NULL
71 };
72
73 static struct attribute_group bt_link_group = {
74         .attrs = bt_link_attrs,
75 };
76
77 static struct attribute_group *bt_link_groups[] = {
78         &bt_link_group,
79         NULL
80 };
81
82 static void bt_link_release(struct device *dev)
83 {
84         void *data = dev_get_drvdata(dev);
85         kfree(data);
86 }
87
88 static struct device_type bt_link = {
89         .name    = "link",
90         .groups  = bt_link_groups,
91         .release = bt_link_release,
92 };
93
94 static void add_conn(struct work_struct *work)
95 {
96         struct hci_conn *conn = container_of(work, struct hci_conn, work);
97
98         flush_workqueue(btdelconn);
99
100         if (device_add(&conn->dev) < 0) {
101                 BT_ERR("Failed to register connection device");
102                 return;
103         }
104 }
105
106 void hci_conn_add_sysfs(struct hci_conn *conn)
107 {
108         struct hci_dev *hdev = conn->hdev;
109
110         BT_DBG("conn %p", conn);
111
112         conn->dev.type = &bt_link;
113         conn->dev.class = bt_class;
114         conn->dev.parent = &hdev->dev;
115
116         dev_set_name(&conn->dev, "%s:%d", hdev->name, conn->handle);
117
118         dev_set_drvdata(&conn->dev, conn);
119
120         device_initialize(&conn->dev);
121
122         INIT_WORK(&conn->work, add_conn);
123
124         queue_work(btaddconn, &conn->work);
125 }
126
127 /*
128  * The rfcomm tty device will possibly retain even when conn
129  * is down, and sysfs doesn't support move zombie device,
130  * so we should move the device before conn device is destroyed.
131  */
132 static int __match_tty(struct device *dev, void *data)
133 {
134         return !strncmp(dev_name(dev), "rfcomm", 6);
135 }
136
137 static void del_conn(struct work_struct *work)
138 {
139         struct hci_conn *conn = container_of(work, struct hci_conn, work);
140         struct hci_dev *hdev = conn->hdev;
141
142         while (1) {
143                 struct device *dev;
144
145                 dev = device_find_child(&conn->dev, NULL, __match_tty);
146                 if (!dev)
147                         break;
148                 device_move(dev, NULL);
149                 put_device(dev);
150         }
151
152         device_del(&conn->dev);
153         put_device(&conn->dev);
154         hci_dev_put(hdev);
155 }
156
157 void hci_conn_del_sysfs(struct hci_conn *conn)
158 {
159         BT_DBG("conn %p", conn);
160
161         if (!device_is_registered(&conn->dev))
162                 return;
163
164         INIT_WORK(&conn->work, del_conn);
165
166         queue_work(btdelconn, &conn->work);
167 }
168
169 static inline char *host_typetostr(int type)
170 {
171         switch (type) {
172         case HCI_VIRTUAL:
173                 return "VIRTUAL";
174         case HCI_USB:
175                 return "USB";
176         case HCI_PCCARD:
177                 return "PCCARD";
178         case HCI_UART:
179                 return "UART";
180         case HCI_RS232:
181                 return "RS232";
182         case HCI_PCI:
183                 return "PCI";
184         case HCI_SDIO:
185                 return "SDIO";
186         default:
187                 return "UNKNOWN";
188         }
189 }
190
191 static ssize_t show_type(struct device *dev, struct device_attribute *attr, char *buf)
192 {
193         struct hci_dev *hdev = dev_get_drvdata(dev);
194         return sprintf(buf, "%s\n", host_typetostr(hdev->type));
195 }
196
197 static ssize_t show_name(struct device *dev, struct device_attribute *attr, char *buf)
198 {
199         struct hci_dev *hdev = dev_get_drvdata(dev);
200         char name[249];
201         int i;
202
203         for (i = 0; i < 248; i++)
204                 name[i] = hdev->dev_name[i];
205
206         name[248] = '\0';
207         return sprintf(buf, "%s\n", name);
208 }
209
210 static ssize_t show_class(struct device *dev, struct device_attribute *attr, char *buf)
211 {
212         struct hci_dev *hdev = dev_get_drvdata(dev);
213         return sprintf(buf, "0x%.2x%.2x%.2x\n",
214                         hdev->dev_class[2], hdev->dev_class[1], hdev->dev_class[0]);
215 }
216
217 static ssize_t show_address(struct device *dev, struct device_attribute *attr, char *buf)
218 {
219         struct hci_dev *hdev = dev_get_drvdata(dev);
220         bdaddr_t bdaddr;
221         baswap(&bdaddr, &hdev->bdaddr);
222         return sprintf(buf, "%s\n", batostr(&bdaddr));
223 }
224
225 static ssize_t show_features(struct device *dev, struct device_attribute *attr, char *buf)
226 {
227         struct hci_dev *hdev = dev_get_drvdata(dev);
228
229         return sprintf(buf, "0x%02x%02x%02x%02x%02x%02x%02x%02x\n",
230                                 hdev->features[0], hdev->features[1],
231                                 hdev->features[2], hdev->features[3],
232                                 hdev->features[4], hdev->features[5],
233                                 hdev->features[6], hdev->features[7]);
234 }
235
236 static ssize_t show_manufacturer(struct device *dev, struct device_attribute *attr, char *buf)
237 {
238         struct hci_dev *hdev = dev_get_drvdata(dev);
239         return sprintf(buf, "%d\n", hdev->manufacturer);
240 }
241
242 static ssize_t show_hci_version(struct device *dev, struct device_attribute *attr, char *buf)
243 {
244         struct hci_dev *hdev = dev_get_drvdata(dev);
245         return sprintf(buf, "%d\n", hdev->hci_ver);
246 }
247
248 static ssize_t show_hci_revision(struct device *dev, struct device_attribute *attr, char *buf)
249 {
250         struct hci_dev *hdev = dev_get_drvdata(dev);
251         return sprintf(buf, "%d\n", hdev->hci_rev);
252 }
253
254 static ssize_t show_inquiry_cache(struct device *dev, struct device_attribute *attr, char *buf)
255 {
256         struct hci_dev *hdev = dev_get_drvdata(dev);
257         struct inquiry_cache *cache = &hdev->inq_cache;
258         struct inquiry_entry *e;
259         int n = 0;
260
261         hci_dev_lock_bh(hdev);
262
263         for (e = cache->list; e; e = e->next) {
264                 struct inquiry_data *data = &e->data;
265                 bdaddr_t bdaddr;
266                 baswap(&bdaddr, &data->bdaddr);
267                 n += sprintf(buf + n, "%s %d %d %d 0x%.2x%.2x%.2x 0x%.4x %d %d %u\n",
268                                 batostr(&bdaddr),
269                                 data->pscan_rep_mode, data->pscan_period_mode,
270                                 data->pscan_mode, data->dev_class[2],
271                                 data->dev_class[1], data->dev_class[0],
272                                 __le16_to_cpu(data->clock_offset),
273                                 data->rssi, data->ssp_mode, e->timestamp);
274         }
275
276         hci_dev_unlock_bh(hdev);
277         return n;
278 }
279
280 static ssize_t show_idle_timeout(struct device *dev, struct device_attribute *attr, char *buf)
281 {
282         struct hci_dev *hdev = dev_get_drvdata(dev);
283         return sprintf(buf, "%d\n", hdev->idle_timeout);
284 }
285
286 static ssize_t store_idle_timeout(struct device *dev, struct device_attribute *attr, const char *buf, size_t count)
287 {
288         struct hci_dev *hdev = dev_get_drvdata(dev);
289         char *ptr;
290         __u32 val;
291
292         val = simple_strtoul(buf, &ptr, 10);
293         if (ptr == buf)
294                 return -EINVAL;
295
296         if (val != 0 && (val < 500 || val > 3600000))
297                 return -EINVAL;
298
299         hdev->idle_timeout = val;
300
301         return count;
302 }
303
304 static ssize_t show_sniff_max_interval(struct device *dev, struct device_attribute *attr, char *buf)
305 {
306         struct hci_dev *hdev = dev_get_drvdata(dev);
307         return sprintf(buf, "%d\n", hdev->sniff_max_interval);
308 }
309
310 static ssize_t store_sniff_max_interval(struct device *dev, struct device_attribute *attr, const char *buf, size_t count)
311 {
312         struct hci_dev *hdev = dev_get_drvdata(dev);
313         char *ptr;
314         __u16 val;
315
316         val = simple_strtoul(buf, &ptr, 10);
317         if (ptr == buf)
318                 return -EINVAL;
319
320         if (val < 0x0002 || val > 0xFFFE || val % 2)
321                 return -EINVAL;
322
323         if (val < hdev->sniff_min_interval)
324                 return -EINVAL;
325
326         hdev->sniff_max_interval = val;
327
328         return count;
329 }
330
331 static ssize_t show_sniff_min_interval(struct device *dev, struct device_attribute *attr, char *buf)
332 {
333         struct hci_dev *hdev = dev_get_drvdata(dev);
334         return sprintf(buf, "%d\n", hdev->sniff_min_interval);
335 }
336
337 static ssize_t store_sniff_min_interval(struct device *dev, struct device_attribute *attr, const char *buf, size_t count)
338 {
339         struct hci_dev *hdev = dev_get_drvdata(dev);
340         char *ptr;
341         __u16 val;
342
343         val = simple_strtoul(buf, &ptr, 10);
344         if (ptr == buf)
345                 return -EINVAL;
346
347         if (val < 0x0002 || val > 0xFFFE || val % 2)
348                 return -EINVAL;
349
350         if (val > hdev->sniff_max_interval)
351                 return -EINVAL;
352
353         hdev->sniff_min_interval = val;
354
355         return count;
356 }
357
358 static DEVICE_ATTR(type, S_IRUGO, show_type, NULL);
359 static DEVICE_ATTR(name, S_IRUGO, show_name, NULL);
360 static DEVICE_ATTR(class, S_IRUGO, show_class, NULL);
361 static DEVICE_ATTR(address, S_IRUGO, show_address, NULL);
362 static DEVICE_ATTR(features, S_IRUGO, show_features, NULL);
363 static DEVICE_ATTR(manufacturer, S_IRUGO, show_manufacturer, NULL);
364 static DEVICE_ATTR(hci_version, S_IRUGO, show_hci_version, NULL);
365 static DEVICE_ATTR(hci_revision, S_IRUGO, show_hci_revision, NULL);
366 static DEVICE_ATTR(inquiry_cache, S_IRUGO, show_inquiry_cache, NULL);
367
368 static DEVICE_ATTR(idle_timeout, S_IRUGO | S_IWUSR,
369                                 show_idle_timeout, store_idle_timeout);
370 static DEVICE_ATTR(sniff_max_interval, S_IRUGO | S_IWUSR,
371                                 show_sniff_max_interval, store_sniff_max_interval);
372 static DEVICE_ATTR(sniff_min_interval, S_IRUGO | S_IWUSR,
373                                 show_sniff_min_interval, store_sniff_min_interval);
374
375 static struct attribute *bt_host_attrs[] = {
376         &dev_attr_type.attr,
377         &dev_attr_name.attr,
378         &dev_attr_class.attr,
379         &dev_attr_address.attr,
380         &dev_attr_features.attr,
381         &dev_attr_manufacturer.attr,
382         &dev_attr_hci_version.attr,
383         &dev_attr_hci_revision.attr,
384         &dev_attr_inquiry_cache.attr,
385         &dev_attr_idle_timeout.attr,
386         &dev_attr_sniff_max_interval.attr,
387         &dev_attr_sniff_min_interval.attr,
388         NULL
389 };
390
391 static struct attribute_group bt_host_group = {
392         .attrs = bt_host_attrs,
393 };
394
395 static struct attribute_group *bt_host_groups[] = {
396         &bt_host_group,
397         NULL
398 };
399
400 static void bt_host_release(struct device *dev)
401 {
402         void *data = dev_get_drvdata(dev);
403         kfree(data);
404 }
405
406 static struct device_type bt_host = {
407         .name    = "host",
408         .groups  = bt_host_groups,
409         .release = bt_host_release,
410 };
411
412 int hci_register_sysfs(struct hci_dev *hdev)
413 {
414         struct device *dev = &hdev->dev;
415         int err;
416
417         BT_DBG("%p name %s type %d", hdev, hdev->name, hdev->type);
418
419         dev->type = &bt_host;
420         dev->class = bt_class;
421         dev->parent = hdev->parent;
422
423         dev_set_name(dev, hdev->name);
424
425         dev_set_drvdata(dev, hdev);
426
427         err = device_register(dev);
428         if (err < 0)
429                 return err;
430
431         return 0;
432 }
433
434 void hci_unregister_sysfs(struct hci_dev *hdev)
435 {
436         BT_DBG("%p name %s type %d", hdev, hdev->name, hdev->type);
437
438         device_del(&hdev->dev);
439 }
440
441 int __init bt_sysfs_init(void)
442 {
443         btaddconn = create_singlethread_workqueue("btaddconn");
444         if (!btaddconn)
445                 return -ENOMEM;
446
447         btdelconn = create_singlethread_workqueue("btdelconn");
448         if (!btdelconn) {
449                 destroy_workqueue(btaddconn);
450                 return -ENOMEM;
451         }
452
453         bt_class = class_create(THIS_MODULE, "bluetooth");
454         if (IS_ERR(bt_class)) {
455                 destroy_workqueue(btdelconn);
456                 destroy_workqueue(btaddconn);
457                 return PTR_ERR(bt_class);
458         }
459
460         return 0;
461 }
462
463 void bt_sysfs_cleanup(void)
464 {
465         destroy_workqueue(btaddconn);
466         destroy_workqueue(btdelconn);
467
468         class_destroy(bt_class);
469 }