blob: a18871e01582152724a8a80f29fa400c9df6ef5d [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
Marcel Holtmann27d35282006-07-03 10:02:37 +02006#include <linux/platform_device.h>
7
Linus Torvalds1da177e2005-04-16 15:20:36 -07008#include <net/bluetooth/bluetooth.h>
9#include <net/bluetooth/hci_core.h>
10
11#ifndef CONFIG_BT_HCI_CORE_DEBUG
12#undef BT_DBG
13#define BT_DBG(D...)
14#endif
Dave Youngb6c06322008-01-29 21:14:08 -080015static struct workqueue_struct *btaddconn;
16static struct workqueue_struct *btdelconn;
Linus Torvalds1da177e2005-04-16 15:20:36 -070017
Marcel Holtmann4d0eb002006-07-06 12:34:41 +020018static inline char *typetostr(int type)
Linus Torvalds1da177e2005-04-16 15:20:36 -070019{
Marcel Holtmann4d0eb002006-07-06 12:34:41 +020020 switch (type) {
Marcel Holtmann0ac53932006-07-08 13:57:15 +020021 case HCI_VIRTUAL:
Marcel Holtmann4d0eb002006-07-06 12:34:41 +020022 return "VIRTUAL";
23 case HCI_USB:
24 return "USB";
25 case HCI_PCCARD:
26 return "PCCARD";
27 case HCI_UART:
28 return "UART";
29 case HCI_RS232:
30 return "RS232";
31 case HCI_PCI:
32 return "PCI";
Marcel Holtmann0ac53932006-07-08 13:57:15 +020033 case HCI_SDIO:
34 return "SDIO";
Marcel Holtmann4d0eb002006-07-06 12:34:41 +020035 default:
36 return "UNKNOWN";
37 }
Linus Torvalds1da177e2005-04-16 15:20:36 -070038}
39
Marcel Holtmanna91f2e32006-07-03 10:02:41 +020040static ssize_t show_type(struct device *dev, struct device_attribute *attr, char *buf)
Linus Torvalds1da177e2005-04-16 15:20:36 -070041{
Marcel Holtmanna91f2e32006-07-03 10:02:41 +020042 struct hci_dev *hdev = dev_get_drvdata(dev);
Marcel Holtmann4d0eb002006-07-06 12:34:41 +020043 return sprintf(buf, "%s\n", typetostr(hdev->type));
Linus Torvalds1da177e2005-04-16 15:20:36 -070044}
45
Marcel Holtmanna9de9242007-10-20 13:33:56 +020046static ssize_t show_name(struct device *dev, struct device_attribute *attr, char *buf)
47{
48 struct hci_dev *hdev = dev_get_drvdata(dev);
49 char name[249];
50 int i;
51
52 for (i = 0; i < 248; i++)
53 name[i] = hdev->dev_name[i];
54
55 name[248] = '\0';
56 return sprintf(buf, "%s\n", name);
57}
58
59static ssize_t show_class(struct device *dev, struct device_attribute *attr, char *buf)
60{
61 struct hci_dev *hdev = dev_get_drvdata(dev);
62 return sprintf(buf, "0x%.2x%.2x%.2x\n",
63 hdev->dev_class[2], hdev->dev_class[1], hdev->dev_class[0]);
64}
65
Marcel Holtmanna91f2e32006-07-03 10:02:41 +020066static ssize_t show_address(struct device *dev, struct device_attribute *attr, char *buf)
Linus Torvalds1da177e2005-04-16 15:20:36 -070067{
Marcel Holtmanna91f2e32006-07-03 10:02:41 +020068 struct hci_dev *hdev = dev_get_drvdata(dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -070069 bdaddr_t bdaddr;
70 baswap(&bdaddr, &hdev->bdaddr);
71 return sprintf(buf, "%s\n", batostr(&bdaddr));
72}
73
Marcel Holtmanna9de9242007-10-20 13:33:56 +020074static ssize_t show_features(struct device *dev, struct device_attribute *attr, char *buf)
75{
76 struct hci_dev *hdev = dev_get_drvdata(dev);
77
78 return sprintf(buf, "0x%02x%02x%02x%02x%02x%02x%02x%02x\n",
79 hdev->features[0], hdev->features[1],
80 hdev->features[2], hdev->features[3],
81 hdev->features[4], hdev->features[5],
82 hdev->features[6], hdev->features[7]);
83}
84
Marcel Holtmann1143e5a2006-09-23 09:57:20 +020085static ssize_t show_manufacturer(struct device *dev, struct device_attribute *attr, char *buf)
86{
87 struct hci_dev *hdev = dev_get_drvdata(dev);
88 return sprintf(buf, "%d\n", hdev->manufacturer);
89}
90
91static ssize_t show_hci_version(struct device *dev, struct device_attribute *attr, char *buf)
92{
93 struct hci_dev *hdev = dev_get_drvdata(dev);
94 return sprintf(buf, "%d\n", hdev->hci_ver);
95}
96
97static ssize_t show_hci_revision(struct device *dev, struct device_attribute *attr, char *buf)
98{
99 struct hci_dev *hdev = dev_get_drvdata(dev);
100 return sprintf(buf, "%d\n", hdev->hci_rev);
101}
102
Marcel Holtmanna91f2e32006-07-03 10:02:41 +0200103static ssize_t show_inquiry_cache(struct device *dev, struct device_attribute *attr, char *buf)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700104{
Marcel Holtmanna91f2e32006-07-03 10:02:41 +0200105 struct hci_dev *hdev = dev_get_drvdata(dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700106 struct inquiry_cache *cache = &hdev->inq_cache;
107 struct inquiry_entry *e;
108 int n = 0;
109
110 hci_dev_lock_bh(hdev);
111
112 for (e = cache->list; e; e = e->next) {
113 struct inquiry_data *data = &e->data;
114 bdaddr_t bdaddr;
115 baswap(&bdaddr, &data->bdaddr);
Marcel Holtmanna8bd28ba2008-07-14 20:13:49 +0200116 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 -0700117 batostr(&bdaddr),
Marcel Holtmanna8bd28ba2008-07-14 20:13:49 +0200118 data->pscan_rep_mode, data->pscan_period_mode,
119 data->pscan_mode, data->dev_class[2],
120 data->dev_class[1], data->dev_class[0],
121 __le16_to_cpu(data->clock_offset),
122 data->rssi, data->ssp_mode, e->timestamp);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700123 }
124
125 hci_dev_unlock_bh(hdev);
126 return n;
127}
128
Marcel Holtmanna91f2e32006-07-03 10:02:41 +0200129static ssize_t show_idle_timeout(struct device *dev, struct device_attribute *attr, char *buf)
Marcel Holtmann04837f62006-07-03 10:02:33 +0200130{
Marcel Holtmanna91f2e32006-07-03 10:02:41 +0200131 struct hci_dev *hdev = dev_get_drvdata(dev);
Marcel Holtmann04837f62006-07-03 10:02:33 +0200132 return sprintf(buf, "%d\n", hdev->idle_timeout);
133}
134
Marcel Holtmanna91f2e32006-07-03 10:02:41 +0200135static 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 +0200136{
Marcel Holtmanna91f2e32006-07-03 10:02:41 +0200137 struct hci_dev *hdev = dev_get_drvdata(dev);
Marcel Holtmann04837f62006-07-03 10:02:33 +0200138 char *ptr;
139 __u32 val;
140
141 val = simple_strtoul(buf, &ptr, 10);
142 if (ptr == buf)
143 return -EINVAL;
144
145 if (val != 0 && (val < 500 || val > 3600000))
146 return -EINVAL;
147
148 hdev->idle_timeout = val;
149
150 return count;
151}
152
Marcel Holtmanna91f2e32006-07-03 10:02:41 +0200153static ssize_t show_sniff_max_interval(struct device *dev, struct device_attribute *attr, char *buf)
Marcel Holtmann04837f62006-07-03 10:02:33 +0200154{
Marcel Holtmanna91f2e32006-07-03 10:02:41 +0200155 struct hci_dev *hdev = dev_get_drvdata(dev);
Marcel Holtmann04837f62006-07-03 10:02:33 +0200156 return sprintf(buf, "%d\n", hdev->sniff_max_interval);
157}
158
Marcel Holtmanna91f2e32006-07-03 10:02:41 +0200159static 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 +0200160{
Marcel Holtmanna91f2e32006-07-03 10:02:41 +0200161 struct hci_dev *hdev = dev_get_drvdata(dev);
Marcel Holtmann04837f62006-07-03 10:02:33 +0200162 char *ptr;
163 __u16 val;
164
165 val = simple_strtoul(buf, &ptr, 10);
166 if (ptr == buf)
167 return -EINVAL;
168
169 if (val < 0x0002 || val > 0xFFFE || val % 2)
170 return -EINVAL;
171
172 if (val < hdev->sniff_min_interval)
173 return -EINVAL;
174
175 hdev->sniff_max_interval = val;
176
177 return count;
178}
179
Marcel Holtmanna91f2e32006-07-03 10:02:41 +0200180static ssize_t show_sniff_min_interval(struct device *dev, struct device_attribute *attr, char *buf)
Marcel Holtmann04837f62006-07-03 10:02:33 +0200181{
Marcel Holtmanna91f2e32006-07-03 10:02:41 +0200182 struct hci_dev *hdev = dev_get_drvdata(dev);
Marcel Holtmann04837f62006-07-03 10:02:33 +0200183 return sprintf(buf, "%d\n", hdev->sniff_min_interval);
184}
185
Marcel Holtmanna91f2e32006-07-03 10:02:41 +0200186static 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 +0200187{
Marcel Holtmanna91f2e32006-07-03 10:02:41 +0200188 struct hci_dev *hdev = dev_get_drvdata(dev);
Marcel Holtmann04837f62006-07-03 10:02:33 +0200189 char *ptr;
190 __u16 val;
191
192 val = simple_strtoul(buf, &ptr, 10);
193 if (ptr == buf)
194 return -EINVAL;
195
196 if (val < 0x0002 || val > 0xFFFE || val % 2)
197 return -EINVAL;
198
199 if (val > hdev->sniff_max_interval)
200 return -EINVAL;
201
202 hdev->sniff_min_interval = val;
203
204 return count;
205}
206
Marcel Holtmanna91f2e32006-07-03 10:02:41 +0200207static DEVICE_ATTR(type, S_IRUGO, show_type, NULL);
Marcel Holtmanna9de9242007-10-20 13:33:56 +0200208static DEVICE_ATTR(name, S_IRUGO, show_name, NULL);
209static DEVICE_ATTR(class, S_IRUGO, show_class, NULL);
Marcel Holtmanna91f2e32006-07-03 10:02:41 +0200210static DEVICE_ATTR(address, S_IRUGO, show_address, NULL);
Marcel Holtmanna9de9242007-10-20 13:33:56 +0200211static DEVICE_ATTR(features, S_IRUGO, show_features, NULL);
Marcel Holtmann1143e5a2006-09-23 09:57:20 +0200212static DEVICE_ATTR(manufacturer, S_IRUGO, show_manufacturer, NULL);
213static DEVICE_ATTR(hci_version, S_IRUGO, show_hci_version, NULL);
214static DEVICE_ATTR(hci_revision, S_IRUGO, show_hci_revision, NULL);
Marcel Holtmanna91f2e32006-07-03 10:02:41 +0200215static DEVICE_ATTR(inquiry_cache, S_IRUGO, show_inquiry_cache, NULL);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700216
Marcel Holtmanna91f2e32006-07-03 10:02:41 +0200217static DEVICE_ATTR(idle_timeout, S_IRUGO | S_IWUSR,
Marcel Holtmann04837f62006-07-03 10:02:33 +0200218 show_idle_timeout, store_idle_timeout);
Marcel Holtmanna91f2e32006-07-03 10:02:41 +0200219static DEVICE_ATTR(sniff_max_interval, S_IRUGO | S_IWUSR,
Marcel Holtmann04837f62006-07-03 10:02:33 +0200220 show_sniff_max_interval, store_sniff_max_interval);
Marcel Holtmanna91f2e32006-07-03 10:02:41 +0200221static DEVICE_ATTR(sniff_min_interval, S_IRUGO | S_IWUSR,
Marcel Holtmann04837f62006-07-03 10:02:33 +0200222 show_sniff_min_interval, store_sniff_min_interval);
223
Marcel Holtmanna91f2e32006-07-03 10:02:41 +0200224static struct device_attribute *bt_attrs[] = {
Marcel Holtmanna91f2e32006-07-03 10:02:41 +0200225 &dev_attr_type,
Marcel Holtmanna9de9242007-10-20 13:33:56 +0200226 &dev_attr_name,
227 &dev_attr_class,
Marcel Holtmanna91f2e32006-07-03 10:02:41 +0200228 &dev_attr_address,
Marcel Holtmanna9de9242007-10-20 13:33:56 +0200229 &dev_attr_features,
Marcel Holtmann1143e5a2006-09-23 09:57:20 +0200230 &dev_attr_manufacturer,
231 &dev_attr_hci_version,
232 &dev_attr_hci_revision,
Marcel Holtmanna91f2e32006-07-03 10:02:41 +0200233 &dev_attr_inquiry_cache,
234 &dev_attr_idle_timeout,
235 &dev_attr_sniff_max_interval,
236 &dev_attr_sniff_min_interval,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700237 NULL
238};
239
Marcel Holtmannb219e3a2006-07-06 12:38:46 +0200240static ssize_t show_conn_type(struct device *dev, struct device_attribute *attr, char *buf)
241{
242 struct hci_conn *conn = dev_get_drvdata(dev);
243 return sprintf(buf, "%s\n", conn->type == ACL_LINK ? "ACL" : "SCO");
244}
245
246static ssize_t show_conn_address(struct device *dev, struct device_attribute *attr, char *buf)
247{
248 struct hci_conn *conn = dev_get_drvdata(dev);
249 bdaddr_t bdaddr;
250 baswap(&bdaddr, &conn->dst);
251 return sprintf(buf, "%s\n", batostr(&bdaddr));
252}
253
Marcel Holtmanna8bd28ba2008-07-14 20:13:49 +0200254static ssize_t show_conn_features(struct device *dev, struct device_attribute *attr, char *buf)
255{
256 struct hci_conn *conn = dev_get_drvdata(dev);
257
258 return sprintf(buf, "0x%02x%02x%02x%02x%02x%02x%02x%02x\n",
259 conn->features[0], conn->features[1],
260 conn->features[2], conn->features[3],
261 conn->features[4], conn->features[5],
262 conn->features[6], conn->features[7]);
263}
264
Marcel Holtmannb219e3a2006-07-06 12:38:46 +0200265#define CONN_ATTR(_name,_mode,_show,_store) \
266struct device_attribute conn_attr_##_name = __ATTR(_name,_mode,_show,_store)
267
268static CONN_ATTR(type, S_IRUGO, show_conn_type, NULL);
269static CONN_ATTR(address, S_IRUGO, show_conn_address, NULL);
Marcel Holtmanna8bd28ba2008-07-14 20:13:49 +0200270static CONN_ATTR(features, S_IRUGO, show_conn_features, NULL);
Marcel Holtmannb219e3a2006-07-06 12:38:46 +0200271
272static struct device_attribute *conn_attrs[] = {
273 &conn_attr_type,
274 &conn_attr_address,
Marcel Holtmanna8bd28ba2008-07-14 20:13:49 +0200275 &conn_attr_features,
Marcel Holtmannb219e3a2006-07-06 12:38:46 +0200276 NULL
277};
278
Marcel Holtmanna91f2e32006-07-03 10:02:41 +0200279struct class *bt_class = NULL;
Marcel Holtmannbe9d1222005-11-08 09:57:38 -0800280EXPORT_SYMBOL_GPL(bt_class);
281
Marcel Holtmann27d35282006-07-03 10:02:37 +0200282static struct bus_type bt_bus = {
283 .name = "bluetooth",
284};
285
286static struct platform_device *bt_platform;
287
Marcel Holtmanna91f2e32006-07-03 10:02:41 +0200288static void bt_release(struct device *dev)
289{
Marcel Holtmannb219e3a2006-07-06 12:38:46 +0200290 void *data = dev_get_drvdata(dev);
291 kfree(data);
292}
293
David Howellsc4028952006-11-22 14:57:56 +0000294static void add_conn(struct work_struct *work)
Marcel Holtmannb219e3a2006-07-06 12:38:46 +0200295{
David Howellsc4028952006-11-22 14:57:56 +0000296 struct hci_conn *conn = container_of(work, struct hci_conn, work);
Marcel Holtmannb219e3a2006-07-06 12:38:46 +0200297 int i;
298
Dave Youngb6c06322008-01-29 21:14:08 -0800299 flush_workqueue(btdelconn);
Dave Young5396c932008-01-31 18:33:10 -0800300
Marcel Holtmannc8937792007-01-08 02:16:38 +0100301 if (device_add(&conn->dev) < 0) {
Marcel Holtmanndf5c37e2006-10-15 17:30:45 +0200302 BT_ERR("Failed to register connection device");
303 return;
304 }
Marcel Holtmannb219e3a2006-07-06 12:38:46 +0200305
306 for (i = 0; conn_attrs[i]; i++)
Marcel Holtmanndf5c37e2006-10-15 17:30:45 +0200307 if (device_create_file(&conn->dev, conn_attrs[i]) < 0)
308 BT_ERR("Failed to create connection attribute");
Marcel Holtmannb219e3a2006-07-06 12:38:46 +0200309}
310
311void hci_conn_add_sysfs(struct hci_conn *conn)
312{
313 struct hci_dev *hdev = conn->hdev;
314 bdaddr_t *ba = &conn->dst;
315
316 BT_DBG("conn %p", conn);
317
Marcel Holtmanne52726d2006-11-18 22:14:05 +0100318 conn->dev.bus = &bt_bus;
319 conn->dev.parent = &hdev->dev;
320
Marcel Holtmannb219e3a2006-07-06 12:38:46 +0200321 conn->dev.release = bt_release;
322
323 snprintf(conn->dev.bus_id, BUS_ID_SIZE,
324 "%s%2.2X%2.2X%2.2X%2.2X%2.2X%2.2X",
325 conn->type == ACL_LINK ? "acl" : "sco",
326 ba->b[5], ba->b[4], ba->b[3],
327 ba->b[2], ba->b[1], ba->b[0]);
328
329 dev_set_drvdata(&conn->dev, conn);
330
Marcel Holtmannc8937792007-01-08 02:16:38 +0100331 device_initialize(&conn->dev);
332
David Howellsc4028952006-11-22 14:57:56 +0000333 INIT_WORK(&conn->work, add_conn);
Marcel Holtmannb219e3a2006-07-06 12:38:46 +0200334
Dave Youngb6c06322008-01-29 21:14:08 -0800335 queue_work(btaddconn, &conn->work);
Marcel Holtmannb219e3a2006-07-06 12:38:46 +0200336}
337
Dave Young8ac62dc2008-02-18 20:45:41 -0800338/*
339 * The rfcomm tty device will possibly retain even when conn
340 * is down, and sysfs doesn't support move zombie device,
341 * so we should move the device before conn device is destroyed.
342 */
Dave Youngacea6852008-01-21 22:35:21 -0800343static int __match_tty(struct device *dev, void *data)
344{
Dave Young8ac62dc2008-02-18 20:45:41 -0800345 return !strncmp(dev->bus_id, "rfcomm", 6);
Dave Youngacea6852008-01-21 22:35:21 -0800346}
347
David Howellsc4028952006-11-22 14:57:56 +0000348static void del_conn(struct work_struct *work)
Marcel Holtmannb219e3a2006-07-06 12:38:46 +0200349{
David Howellsc4028952006-11-22 14:57:56 +0000350 struct hci_conn *conn = container_of(work, struct hci_conn, work);
Dave Young0cd63c82008-02-18 20:44:01 -0800351 struct hci_dev *hdev = conn->hdev;
Dave Youngacea6852008-01-21 22:35:21 -0800352
David S. Miller988d0092008-02-18 00:20:50 -0800353 while (1) {
354 struct device *dev;
355
356 dev = device_find_child(&conn->dev, NULL, __match_tty);
357 if (!dev)
358 break;
Dave Youngacea6852008-01-21 22:35:21 -0800359 device_move(dev, NULL);
360 put_device(dev);
361 }
Dave Young0cd63c82008-02-18 20:44:01 -0800362
Marcel Holtmannb219e3a2006-07-06 12:38:46 +0200363 device_del(&conn->dev);
Dave Young38b7da02007-12-29 19:17:47 -0800364 put_device(&conn->dev);
Dave Young0cd63c82008-02-18 20:44:01 -0800365 hci_dev_put(hdev);
Marcel Holtmannb219e3a2006-07-06 12:38:46 +0200366}
367
368void hci_conn_del_sysfs(struct hci_conn *conn)
369{
370 BT_DBG("conn %p", conn);
371
Marcel Holtmannc8937792007-01-08 02:16:38 +0100372 if (!device_is_registered(&conn->dev))
373 return;
374
David Howellsc4028952006-11-22 14:57:56 +0000375 INIT_WORK(&conn->work, del_conn);
Marcel Holtmannb219e3a2006-07-06 12:38:46 +0200376
Dave Youngb6c06322008-01-29 21:14:08 -0800377 queue_work(btdelconn, &conn->work);
Marcel Holtmanna91f2e32006-07-03 10:02:41 +0200378}
379
Linus Torvalds1da177e2005-04-16 15:20:36 -0700380int hci_register_sysfs(struct hci_dev *hdev)
381{
Marcel Holtmanna91f2e32006-07-03 10:02:41 +0200382 struct device *dev = &hdev->dev;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700383 unsigned int i;
384 int err;
385
386 BT_DBG("%p name %s type %d", hdev, hdev->name, hdev->type);
387
Marcel Holtmann53c1d4b2007-05-05 00:36:03 +0200388 dev->bus = &bt_bus;
Marcel Holtmanne9c4bec2006-10-15 17:30:50 +0200389 dev->parent = hdev->parent;
Marcel Holtmann27d35282006-07-03 10:02:37 +0200390
Marcel Holtmanna91f2e32006-07-03 10:02:41 +0200391 strlcpy(dev->bus_id, hdev->name, BUS_ID_SIZE);
Marcel Holtmann27d35282006-07-03 10:02:37 +0200392
Marcel Holtmanna91f2e32006-07-03 10:02:41 +0200393 dev->release = bt_release;
394
395 dev_set_drvdata(dev, hdev);
396
397 err = device_register(dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700398 if (err < 0)
399 return err;
400
401 for (i = 0; bt_attrs[i]; i++)
Marcel Holtmanndf5c37e2006-10-15 17:30:45 +0200402 if (device_create_file(dev, bt_attrs[i]) < 0)
403 BT_ERR("Failed to create device attribute");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700404
Linus Torvaldsd12db0b2007-05-07 17:32:08 -0700405 if (sysfs_create_link(&bt_class->subsys.kobj,
Marcel Holtmann53c1d4b2007-05-05 00:36:03 +0200406 &dev->kobj, kobject_name(&dev->kobj)) < 0)
407 BT_ERR("Failed to create class symlink");
408
Linus Torvalds1da177e2005-04-16 15:20:36 -0700409 return 0;
410}
411
412void hci_unregister_sysfs(struct hci_dev *hdev)
413{
Linus Torvalds1da177e2005-04-16 15:20:36 -0700414 BT_DBG("%p name %s type %d", hdev, hdev->name, hdev->type);
415
Linus Torvaldsd12db0b2007-05-07 17:32:08 -0700416 sysfs_remove_link(&bt_class->subsys.kobj,
Marcel Holtmann53c1d4b2007-05-05 00:36:03 +0200417 kobject_name(&hdev->dev.kobj));
418
Marcel Holtmann4d0eb002006-07-06 12:34:41 +0200419 device_del(&hdev->dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700420}
421
422int __init bt_sysfs_init(void)
423{
Marcel Holtmann27d35282006-07-03 10:02:37 +0200424 int err;
425
Dave Youngb6c06322008-01-29 21:14:08 -0800426 btaddconn = create_singlethread_workqueue("btaddconn");
427 if (!btaddconn) {
428 err = -ENOMEM;
429 goto out;
430 }
Dave Young5396c932008-01-31 18:33:10 -0800431
Dave Youngb6c06322008-01-29 21:14:08 -0800432 btdelconn = create_singlethread_workqueue("btdelconn");
433 if (!btdelconn) {
434 err = -ENOMEM;
435 goto out_del;
436 }
437
Marcel Holtmann27d35282006-07-03 10:02:37 +0200438 bt_platform = platform_device_register_simple("bluetooth", -1, NULL, 0);
Dave Youngb6c06322008-01-29 21:14:08 -0800439 if (IS_ERR(bt_platform)) {
440 err = PTR_ERR(bt_platform);
441 goto out_platform;
442 }
Marcel Holtmann27d35282006-07-03 10:02:37 +0200443
444 err = bus_register(&bt_bus);
Dave Youngb6c06322008-01-29 21:14:08 -0800445 if (err < 0)
446 goto out_bus;
Marcel Holtmann27d35282006-07-03 10:02:37 +0200447
Marcel Holtmanna91f2e32006-07-03 10:02:41 +0200448 bt_class = class_create(THIS_MODULE, "bluetooth");
449 if (IS_ERR(bt_class)) {
Dave Youngb6c06322008-01-29 21:14:08 -0800450 err = PTR_ERR(bt_class);
451 goto out_class;
Marcel Holtmann27d35282006-07-03 10:02:37 +0200452 }
453
454 return 0;
Dave Youngb6c06322008-01-29 21:14:08 -0800455
456out_class:
457 bus_unregister(&bt_bus);
458out_bus:
459 platform_device_unregister(bt_platform);
460out_platform:
461 destroy_workqueue(btdelconn);
462out_del:
463 destroy_workqueue(btaddconn);
464out:
465 return err;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700466}
467
Arnaud Patard860e13b2006-09-28 15:29:37 -0700468void bt_sysfs_cleanup(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700469{
Dave Youngb6c06322008-01-29 21:14:08 -0800470 destroy_workqueue(btaddconn);
Dave Young5396c932008-01-31 18:33:10 -0800471
Dave Youngb6c06322008-01-29 21:14:08 -0800472 destroy_workqueue(btdelconn);
Dave Young5396c932008-01-31 18:33:10 -0800473
Marcel Holtmanna91f2e32006-07-03 10:02:41 +0200474 class_destroy(bt_class);
Dave Young5396c932008-01-31 18:33:10 -0800475
Marcel Holtmann27d35282006-07-03 10:02:37 +0200476 bus_unregister(&bt_bus);
Dave Young5396c932008-01-31 18:33:10 -0800477
Marcel Holtmann27d35282006-07-03 10:02:37 +0200478 platform_device_unregister(bt_platform);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700479}