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