Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1 | /* Bluetooth HCI driver model support. */ |
| 2 | |
Paul Gortmaker | 3a9a231 | 2011-05-27 09:12:25 -0400 | [diff] [blame] | 3 | #include <linux/module.h> |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4 | |
| 5 | #include <net/bluetooth/bluetooth.h> |
| 6 | #include <net/bluetooth/hci_core.h> |
| 7 | |
Marcel Holtmann | aef7d97 | 2010-03-21 05:27:45 +0100 | [diff] [blame] | 8 | static struct class *bt_class; |
Marcel Holtmann | 90855d7 | 2008-08-18 13:23:53 +0200 | [diff] [blame] | 9 | |
Marcel Holtmann | 90855d7 | 2008-08-18 13:23:53 +0200 | [diff] [blame] | 10 | static inline char *link_typetostr(int type) |
| 11 | { |
| 12 | switch (type) { |
| 13 | case ACL_LINK: |
| 14 | return "ACL"; |
| 15 | case SCO_LINK: |
| 16 | return "SCO"; |
| 17 | case ESCO_LINK: |
| 18 | return "eSCO"; |
Peter Hurley | 21061df | 2011-08-24 10:04:56 -0400 | [diff] [blame] | 19 | case LE_LINK: |
| 20 | return "LE"; |
Marcel Holtmann | 90855d7 | 2008-08-18 13:23:53 +0200 | [diff] [blame] | 21 | default: |
| 22 | return "UNKNOWN"; |
| 23 | } |
| 24 | } |
| 25 | |
Gustavo Padovan | b80f021 | 2012-05-17 00:36:23 -0300 | [diff] [blame] | 26 | static ssize_t show_link_type(struct device *dev, |
| 27 | struct device_attribute *attr, char *buf) |
Marcel Holtmann | 90855d7 | 2008-08-18 13:23:53 +0200 | [diff] [blame] | 28 | { |
David Herrmann | 3dc0732 | 2012-02-09 21:58:33 +0100 | [diff] [blame] | 29 | struct hci_conn *conn = to_hci_conn(dev); |
Marcel Holtmann | 90855d7 | 2008-08-18 13:23:53 +0200 | [diff] [blame] | 30 | return sprintf(buf, "%s\n", link_typetostr(conn->type)); |
| 31 | } |
| 32 | |
Gustavo Padovan | b80f021 | 2012-05-17 00:36:23 -0300 | [diff] [blame] | 33 | static ssize_t show_link_address(struct device *dev, |
| 34 | struct device_attribute *attr, char *buf) |
Marcel Holtmann | 90855d7 | 2008-08-18 13:23:53 +0200 | [diff] [blame] | 35 | { |
David Herrmann | 3dc0732 | 2012-02-09 21:58:33 +0100 | [diff] [blame] | 36 | struct hci_conn *conn = to_hci_conn(dev); |
Andrei Emeltchenko | fcb7333 | 2012-09-25 12:49:44 +0300 | [diff] [blame] | 37 | return sprintf(buf, "%pMR\n", &conn->dst); |
Marcel Holtmann | 90855d7 | 2008-08-18 13:23:53 +0200 | [diff] [blame] | 38 | } |
| 39 | |
Gustavo Padovan | b80f021 | 2012-05-17 00:36:23 -0300 | [diff] [blame] | 40 | static ssize_t show_link_features(struct device *dev, |
| 41 | struct device_attribute *attr, char *buf) |
Marcel Holtmann | 90855d7 | 2008-08-18 13:23:53 +0200 | [diff] [blame] | 42 | { |
David Herrmann | 3dc0732 | 2012-02-09 21:58:33 +0100 | [diff] [blame] | 43 | struct hci_conn *conn = to_hci_conn(dev); |
Marcel Holtmann | 90855d7 | 2008-08-18 13:23:53 +0200 | [diff] [blame] | 44 | |
| 45 | return sprintf(buf, "0x%02x%02x%02x%02x%02x%02x%02x%02x\n", |
Johan Hedberg | cad718e | 2013-04-17 15:00:51 +0300 | [diff] [blame] | 46 | conn->features[0][0], conn->features[0][1], |
| 47 | conn->features[0][2], conn->features[0][3], |
| 48 | conn->features[0][4], conn->features[0][5], |
| 49 | conn->features[0][6], conn->features[0][7]); |
Marcel Holtmann | 90855d7 | 2008-08-18 13:23:53 +0200 | [diff] [blame] | 50 | } |
| 51 | |
Gustavo F. Padovan | 602f988 | 2011-02-17 19:22:19 -0300 | [diff] [blame] | 52 | #define LINK_ATTR(_name, _mode, _show, _store) \ |
| 53 | struct device_attribute link_attr_##_name = __ATTR(_name, _mode, _show, _store) |
Marcel Holtmann | 90855d7 | 2008-08-18 13:23:53 +0200 | [diff] [blame] | 54 | |
| 55 | static LINK_ATTR(type, S_IRUGO, show_link_type, NULL); |
| 56 | static LINK_ATTR(address, S_IRUGO, show_link_address, NULL); |
| 57 | static LINK_ATTR(features, S_IRUGO, show_link_features, NULL); |
| 58 | |
| 59 | static struct attribute *bt_link_attrs[] = { |
| 60 | &link_attr_type.attr, |
| 61 | &link_attr_address.attr, |
| 62 | &link_attr_features.attr, |
| 63 | NULL |
| 64 | }; |
| 65 | |
| 66 | static struct attribute_group bt_link_group = { |
| 67 | .attrs = bt_link_attrs, |
| 68 | }; |
| 69 | |
David Brownell | a4dbd67 | 2009-06-24 10:06:31 -0700 | [diff] [blame] | 70 | static const struct attribute_group *bt_link_groups[] = { |
Marcel Holtmann | 90855d7 | 2008-08-18 13:23:53 +0200 | [diff] [blame] | 71 | &bt_link_group, |
| 72 | NULL |
| 73 | }; |
| 74 | |
| 75 | static void bt_link_release(struct device *dev) |
| 76 | { |
David Herrmann | 2dd1068 | 2012-02-09 21:58:34 +0100 | [diff] [blame] | 77 | struct hci_conn *conn = to_hci_conn(dev); |
| 78 | kfree(conn); |
Marcel Holtmann | 90855d7 | 2008-08-18 13:23:53 +0200 | [diff] [blame] | 79 | } |
| 80 | |
| 81 | static struct device_type bt_link = { |
| 82 | .name = "link", |
| 83 | .groups = bt_link_groups, |
| 84 | .release = bt_link_release, |
| 85 | }; |
| 86 | |
Gustavo F. Padovan | 6d438e3 | 2011-12-17 18:53:02 -0200 | [diff] [blame] | 87 | /* |
| 88 | * The rfcomm tty device will possibly retain even when conn |
| 89 | * is down, and sysfs doesn't support move zombie device, |
| 90 | * so we should move the device before conn device is destroyed. |
| 91 | */ |
| 92 | static int __match_tty(struct device *dev, void *data) |
Marcel Holtmann | 90855d7 | 2008-08-18 13:23:53 +0200 | [diff] [blame] | 93 | { |
Gustavo F. Padovan | 6d438e3 | 2011-12-17 18:53:02 -0200 | [diff] [blame] | 94 | return !strncmp(dev_name(dev), "rfcomm", 6); |
| 95 | } |
| 96 | |
| 97 | void hci_conn_init_sysfs(struct hci_conn *conn) |
| 98 | { |
Marcel Holtmann | 457ca7b | 2009-05-05 13:09:01 -0700 | [diff] [blame] | 99 | struct hci_dev *hdev = conn->hdev; |
Marcel Holtmann | 90855d7 | 2008-08-18 13:23:53 +0200 | [diff] [blame] | 100 | |
Gustavo F. Padovan | 6d438e3 | 2011-12-17 18:53:02 -0200 | [diff] [blame] | 101 | BT_DBG("conn %p", conn); |
| 102 | |
| 103 | conn->dev.type = &bt_link; |
| 104 | conn->dev.class = bt_class; |
| 105 | conn->dev.parent = &hdev->dev; |
| 106 | |
| 107 | device_initialize(&conn->dev); |
| 108 | } |
| 109 | |
| 110 | void hci_conn_add_sysfs(struct hci_conn *conn) |
| 111 | { |
| 112 | struct hci_dev *hdev = conn->hdev; |
| 113 | |
| 114 | BT_DBG("conn %p", conn); |
| 115 | |
Marcel Holtmann | 457ca7b | 2009-05-05 13:09:01 -0700 | [diff] [blame] | 116 | dev_set_name(&conn->dev, "%s:%d", hdev->name, conn->handle); |
| 117 | |
Marcel Holtmann | 90855d7 | 2008-08-18 13:23:53 +0200 | [diff] [blame] | 118 | if (device_add(&conn->dev) < 0) { |
| 119 | BT_ERR("Failed to register connection device"); |
| 120 | return; |
| 121 | } |
Marcel Holtmann | 384943e | 2009-05-08 18:20:43 -0700 | [diff] [blame] | 122 | |
| 123 | hci_dev_hold(hdev); |
Marcel Holtmann | 90855d7 | 2008-08-18 13:23:53 +0200 | [diff] [blame] | 124 | } |
| 125 | |
Gustavo F. Padovan | 6d438e3 | 2011-12-17 18:53:02 -0200 | [diff] [blame] | 126 | void hci_conn_del_sysfs(struct hci_conn *conn) |
Marcel Holtmann | 90855d7 | 2008-08-18 13:23:53 +0200 | [diff] [blame] | 127 | { |
Marcel Holtmann | 90855d7 | 2008-08-18 13:23:53 +0200 | [diff] [blame] | 128 | struct hci_dev *hdev = conn->hdev; |
| 129 | |
Marcel Holtmann | a67e899 | 2009-05-02 18:24:06 -0700 | [diff] [blame] | 130 | if (!device_is_registered(&conn->dev)) |
| 131 | return; |
Roger Quadros | f3784d8 | 2009-04-23 14:50:54 +0300 | [diff] [blame] | 132 | |
Marcel Holtmann | 90855d7 | 2008-08-18 13:23:53 +0200 | [diff] [blame] | 133 | while (1) { |
| 134 | struct device *dev; |
| 135 | |
| 136 | dev = device_find_child(&conn->dev, NULL, __match_tty); |
| 137 | if (!dev) |
| 138 | break; |
Cornelia Huck | ffa6a70 | 2009-03-04 12:44:00 +0100 | [diff] [blame] | 139 | device_move(dev, NULL, DPM_ORDER_DEV_LAST); |
Marcel Holtmann | 90855d7 | 2008-08-18 13:23:53 +0200 | [diff] [blame] | 140 | put_device(dev); |
| 141 | } |
| 142 | |
| 143 | device_del(&conn->dev); |
Marcel Holtmann | 384943e | 2009-05-08 18:20:43 -0700 | [diff] [blame] | 144 | |
Marcel Holtmann | 90855d7 | 2008-08-18 13:23:53 +0200 | [diff] [blame] | 145 | hci_dev_put(hdev); |
| 146 | } |
| 147 | |
Marcel Holtmann | c13854c | 2010-02-08 15:27:07 +0100 | [diff] [blame] | 148 | static inline char *host_bustostr(int bus) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 149 | { |
Marcel Holtmann | c13854c | 2010-02-08 15:27:07 +0100 | [diff] [blame] | 150 | switch (bus) { |
Marcel Holtmann | 0ac5393 | 2006-07-08 13:57:15 +0200 | [diff] [blame] | 151 | case HCI_VIRTUAL: |
Marcel Holtmann | 4d0eb00 | 2006-07-06 12:34:41 +0200 | [diff] [blame] | 152 | return "VIRTUAL"; |
| 153 | case HCI_USB: |
| 154 | return "USB"; |
| 155 | case HCI_PCCARD: |
| 156 | return "PCCARD"; |
| 157 | case HCI_UART: |
| 158 | return "UART"; |
| 159 | case HCI_RS232: |
| 160 | return "RS232"; |
| 161 | case HCI_PCI: |
| 162 | return "PCI"; |
Marcel Holtmann | 0ac5393 | 2006-07-08 13:57:15 +0200 | [diff] [blame] | 163 | case HCI_SDIO: |
| 164 | return "SDIO"; |
Marcel Holtmann | 4d0eb00 | 2006-07-06 12:34:41 +0200 | [diff] [blame] | 165 | default: |
| 166 | return "UNKNOWN"; |
| 167 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 168 | } |
| 169 | |
Marcel Holtmann | 943da25 | 2010-02-13 02:28:41 +0100 | [diff] [blame] | 170 | static inline char *host_typetostr(int type) |
| 171 | { |
| 172 | switch (type) { |
| 173 | case HCI_BREDR: |
| 174 | return "BR/EDR"; |
David Vrabel | 8f1e174 | 2010-08-09 17:38:10 -0400 | [diff] [blame] | 175 | case HCI_AMP: |
| 176 | return "AMP"; |
Marcel Holtmann | 943da25 | 2010-02-13 02:28:41 +0100 | [diff] [blame] | 177 | default: |
| 178 | return "UNKNOWN"; |
| 179 | } |
| 180 | } |
| 181 | |
Gustavo Padovan | b80f021 | 2012-05-17 00:36:23 -0300 | [diff] [blame] | 182 | static ssize_t show_bus(struct device *dev, |
| 183 | struct device_attribute *attr, char *buf) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 184 | { |
David Herrmann | aa2b86d | 2012-02-09 21:58:30 +0100 | [diff] [blame] | 185 | struct hci_dev *hdev = to_hci_dev(dev); |
Marcel Holtmann | c13854c | 2010-02-08 15:27:07 +0100 | [diff] [blame] | 186 | return sprintf(buf, "%s\n", host_bustostr(hdev->bus)); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 187 | } |
| 188 | |
Gustavo Padovan | b80f021 | 2012-05-17 00:36:23 -0300 | [diff] [blame] | 189 | static ssize_t show_type(struct device *dev, |
| 190 | struct device_attribute *attr, char *buf) |
Marcel Holtmann | 943da25 | 2010-02-13 02:28:41 +0100 | [diff] [blame] | 191 | { |
David Herrmann | aa2b86d | 2012-02-09 21:58:30 +0100 | [diff] [blame] | 192 | struct hci_dev *hdev = to_hci_dev(dev); |
Marcel Holtmann | 943da25 | 2010-02-13 02:28:41 +0100 | [diff] [blame] | 193 | return sprintf(buf, "%s\n", host_typetostr(hdev->dev_type)); |
| 194 | } |
| 195 | |
Gustavo Padovan | b80f021 | 2012-05-17 00:36:23 -0300 | [diff] [blame] | 196 | static ssize_t show_name(struct device *dev, |
| 197 | struct device_attribute *attr, char *buf) |
Marcel Holtmann | a9de924 | 2007-10-20 13:33:56 +0200 | [diff] [blame] | 198 | { |
David Herrmann | aa2b86d | 2012-02-09 21:58:30 +0100 | [diff] [blame] | 199 | struct hci_dev *hdev = to_hci_dev(dev); |
Johan Hedberg | 1f6c637 | 2011-03-16 14:29:35 +0200 | [diff] [blame] | 200 | char name[HCI_MAX_NAME_LENGTH + 1]; |
Marcel Holtmann | a9de924 | 2007-10-20 13:33:56 +0200 | [diff] [blame] | 201 | int i; |
| 202 | |
Johan Hedberg | 1f6c637 | 2011-03-16 14:29:35 +0200 | [diff] [blame] | 203 | for (i = 0; i < HCI_MAX_NAME_LENGTH; i++) |
Marcel Holtmann | a9de924 | 2007-10-20 13:33:56 +0200 | [diff] [blame] | 204 | name[i] = hdev->dev_name[i]; |
| 205 | |
Johan Hedberg | 1f6c637 | 2011-03-16 14:29:35 +0200 | [diff] [blame] | 206 | name[HCI_MAX_NAME_LENGTH] = '\0'; |
Marcel Holtmann | a9de924 | 2007-10-20 13:33:56 +0200 | [diff] [blame] | 207 | return sprintf(buf, "%s\n", name); |
| 208 | } |
| 209 | |
Gustavo Padovan | b80f021 | 2012-05-17 00:36:23 -0300 | [diff] [blame] | 210 | static ssize_t show_class(struct device *dev, |
| 211 | struct device_attribute *attr, char *buf) |
Marcel Holtmann | a9de924 | 2007-10-20 13:33:56 +0200 | [diff] [blame] | 212 | { |
David Herrmann | aa2b86d | 2012-02-09 21:58:30 +0100 | [diff] [blame] | 213 | struct hci_dev *hdev = to_hci_dev(dev); |
Gustavo Padovan | 8fc9ced | 2012-05-23 04:04:21 -0300 | [diff] [blame] | 214 | return sprintf(buf, "0x%.2x%.2x%.2x\n", hdev->dev_class[2], |
| 215 | hdev->dev_class[1], hdev->dev_class[0]); |
Marcel Holtmann | a9de924 | 2007-10-20 13:33:56 +0200 | [diff] [blame] | 216 | } |
| 217 | |
Gustavo Padovan | b80f021 | 2012-05-17 00:36:23 -0300 | [diff] [blame] | 218 | static ssize_t show_address(struct device *dev, |
| 219 | struct device_attribute *attr, char *buf) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 220 | { |
David Herrmann | aa2b86d | 2012-02-09 21:58:30 +0100 | [diff] [blame] | 221 | struct hci_dev *hdev = to_hci_dev(dev); |
Andrei Emeltchenko | fcb7333 | 2012-09-25 12:49:44 +0300 | [diff] [blame] | 222 | return sprintf(buf, "%pMR\n", &hdev->bdaddr); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 223 | } |
| 224 | |
Gustavo Padovan | b80f021 | 2012-05-17 00:36:23 -0300 | [diff] [blame] | 225 | static ssize_t show_features(struct device *dev, |
| 226 | struct device_attribute *attr, char *buf) |
Marcel Holtmann | a9de924 | 2007-10-20 13:33:56 +0200 | [diff] [blame] | 227 | { |
David Herrmann | aa2b86d | 2012-02-09 21:58:30 +0100 | [diff] [blame] | 228 | struct hci_dev *hdev = to_hci_dev(dev); |
Marcel Holtmann | a9de924 | 2007-10-20 13:33:56 +0200 | [diff] [blame] | 229 | |
| 230 | return sprintf(buf, "0x%02x%02x%02x%02x%02x%02x%02x%02x\n", |
Johan Hedberg | cad718e | 2013-04-17 15:00:51 +0300 | [diff] [blame] | 231 | hdev->features[0][0], hdev->features[0][1], |
| 232 | hdev->features[0][2], hdev->features[0][3], |
| 233 | hdev->features[0][4], hdev->features[0][5], |
| 234 | hdev->features[0][6], hdev->features[0][7]); |
Marcel Holtmann | a9de924 | 2007-10-20 13:33:56 +0200 | [diff] [blame] | 235 | } |
| 236 | |
Gustavo Padovan | b80f021 | 2012-05-17 00:36:23 -0300 | [diff] [blame] | 237 | static ssize_t show_manufacturer(struct device *dev, |
| 238 | struct device_attribute *attr, char *buf) |
Marcel Holtmann | 1143e5a | 2006-09-23 09:57:20 +0200 | [diff] [blame] | 239 | { |
David Herrmann | aa2b86d | 2012-02-09 21:58:30 +0100 | [diff] [blame] | 240 | struct hci_dev *hdev = to_hci_dev(dev); |
Marcel Holtmann | 1143e5a | 2006-09-23 09:57:20 +0200 | [diff] [blame] | 241 | return sprintf(buf, "%d\n", hdev->manufacturer); |
| 242 | } |
| 243 | |
Gustavo Padovan | b80f021 | 2012-05-17 00:36:23 -0300 | [diff] [blame] | 244 | static ssize_t show_hci_version(struct device *dev, |
| 245 | struct device_attribute *attr, char *buf) |
Marcel Holtmann | 1143e5a | 2006-09-23 09:57:20 +0200 | [diff] [blame] | 246 | { |
David Herrmann | aa2b86d | 2012-02-09 21:58:30 +0100 | [diff] [blame] | 247 | struct hci_dev *hdev = to_hci_dev(dev); |
Marcel Holtmann | 1143e5a | 2006-09-23 09:57:20 +0200 | [diff] [blame] | 248 | return sprintf(buf, "%d\n", hdev->hci_ver); |
| 249 | } |
| 250 | |
Gustavo Padovan | b80f021 | 2012-05-17 00:36:23 -0300 | [diff] [blame] | 251 | static ssize_t show_hci_revision(struct device *dev, |
| 252 | struct device_attribute *attr, char *buf) |
Marcel Holtmann | 1143e5a | 2006-09-23 09:57:20 +0200 | [diff] [blame] | 253 | { |
David Herrmann | aa2b86d | 2012-02-09 21:58:30 +0100 | [diff] [blame] | 254 | struct hci_dev *hdev = to_hci_dev(dev); |
Marcel Holtmann | 1143e5a | 2006-09-23 09:57:20 +0200 | [diff] [blame] | 255 | return sprintf(buf, "%d\n", hdev->hci_rev); |
| 256 | } |
| 257 | |
Marcel Holtmann | c13854c | 2010-02-08 15:27:07 +0100 | [diff] [blame] | 258 | static DEVICE_ATTR(bus, S_IRUGO, show_bus, NULL); |
Marcel Holtmann | 943da25 | 2010-02-13 02:28:41 +0100 | [diff] [blame] | 259 | static DEVICE_ATTR(type, S_IRUGO, show_type, NULL); |
Marcel Holtmann | a9de924 | 2007-10-20 13:33:56 +0200 | [diff] [blame] | 260 | static DEVICE_ATTR(name, S_IRUGO, show_name, NULL); |
| 261 | static DEVICE_ATTR(class, S_IRUGO, show_class, NULL); |
Marcel Holtmann | a91f2e3 | 2006-07-03 10:02:41 +0200 | [diff] [blame] | 262 | static DEVICE_ATTR(address, S_IRUGO, show_address, NULL); |
Marcel Holtmann | a9de924 | 2007-10-20 13:33:56 +0200 | [diff] [blame] | 263 | static DEVICE_ATTR(features, S_IRUGO, show_features, NULL); |
Marcel Holtmann | 1143e5a | 2006-09-23 09:57:20 +0200 | [diff] [blame] | 264 | static DEVICE_ATTR(manufacturer, S_IRUGO, show_manufacturer, NULL); |
| 265 | static DEVICE_ATTR(hci_version, S_IRUGO, show_hci_version, NULL); |
| 266 | static DEVICE_ATTR(hci_revision, S_IRUGO, show_hci_revision, NULL); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 267 | |
Marcel Holtmann | 90855d7 | 2008-08-18 13:23:53 +0200 | [diff] [blame] | 268 | static struct attribute *bt_host_attrs[] = { |
Marcel Holtmann | c13854c | 2010-02-08 15:27:07 +0100 | [diff] [blame] | 269 | &dev_attr_bus.attr, |
Marcel Holtmann | 943da25 | 2010-02-13 02:28:41 +0100 | [diff] [blame] | 270 | &dev_attr_type.attr, |
Marcel Holtmann | 90855d7 | 2008-08-18 13:23:53 +0200 | [diff] [blame] | 271 | &dev_attr_name.attr, |
| 272 | &dev_attr_class.attr, |
| 273 | &dev_attr_address.attr, |
| 274 | &dev_attr_features.attr, |
| 275 | &dev_attr_manufacturer.attr, |
| 276 | &dev_attr_hci_version.attr, |
| 277 | &dev_attr_hci_revision.attr, |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 278 | NULL |
| 279 | }; |
| 280 | |
Marcel Holtmann | 90855d7 | 2008-08-18 13:23:53 +0200 | [diff] [blame] | 281 | static struct attribute_group bt_host_group = { |
| 282 | .attrs = bt_host_attrs, |
| 283 | }; |
Marcel Holtmann | b219e3a | 2006-07-06 12:38:46 +0200 | [diff] [blame] | 284 | |
David Brownell | a4dbd67 | 2009-06-24 10:06:31 -0700 | [diff] [blame] | 285 | static const struct attribute_group *bt_host_groups[] = { |
Marcel Holtmann | 90855d7 | 2008-08-18 13:23:53 +0200 | [diff] [blame] | 286 | &bt_host_group, |
Marcel Holtmann | b219e3a | 2006-07-06 12:38:46 +0200 | [diff] [blame] | 287 | NULL |
| 288 | }; |
| 289 | |
Marcel Holtmann | 90855d7 | 2008-08-18 13:23:53 +0200 | [diff] [blame] | 290 | static void bt_host_release(struct device *dev) |
Marcel Holtmann | a91f2e3 | 2006-07-03 10:02:41 +0200 | [diff] [blame] | 291 | { |
David Herrmann | 2dd1068 | 2012-02-09 21:58:34 +0100 | [diff] [blame] | 292 | struct hci_dev *hdev = to_hci_dev(dev); |
| 293 | kfree(hdev); |
David Herrmann | 46e0653 | 2012-01-07 15:47:21 +0100 | [diff] [blame] | 294 | module_put(THIS_MODULE); |
Marcel Holtmann | b219e3a | 2006-07-06 12:38:46 +0200 | [diff] [blame] | 295 | } |
| 296 | |
Marcel Holtmann | 90855d7 | 2008-08-18 13:23:53 +0200 | [diff] [blame] | 297 | static struct device_type bt_host = { |
| 298 | .name = "host", |
| 299 | .groups = bt_host_groups, |
| 300 | .release = bt_host_release, |
| 301 | }; |
Marcel Holtmann | a91f2e3 | 2006-07-03 10:02:41 +0200 | [diff] [blame] | 302 | |
David Herrmann | 0ac7e70 | 2011-10-08 14:58:47 +0200 | [diff] [blame] | 303 | void hci_init_sysfs(struct hci_dev *hdev) |
| 304 | { |
| 305 | struct device *dev = &hdev->dev; |
| 306 | |
| 307 | dev->type = &bt_host; |
| 308 | dev->class = bt_class; |
| 309 | |
David Herrmann | 46e0653 | 2012-01-07 15:47:21 +0100 | [diff] [blame] | 310 | __module_get(THIS_MODULE); |
David Herrmann | 0ac7e70 | 2011-10-08 14:58:47 +0200 | [diff] [blame] | 311 | device_initialize(dev); |
| 312 | } |
| 313 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 314 | int __init bt_sysfs_init(void) |
| 315 | { |
Marcel Holtmann | a91f2e3 | 2006-07-03 10:02:41 +0200 | [diff] [blame] | 316 | bt_class = class_create(THIS_MODULE, "bluetooth"); |
Marcel Holtmann | 27d3528 | 2006-07-03 10:02:37 +0200 | [diff] [blame] | 317 | |
Rusty Russell | 8c6ffba | 2013-07-15 11:20:32 +0930 | [diff] [blame] | 318 | return PTR_ERR_OR_ZERO(bt_class); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 319 | } |
| 320 | |
Arnaud Patard | 860e13b | 2006-09-28 15:29:37 -0700 | [diff] [blame] | 321 | void bt_sysfs_cleanup(void) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 322 | { |
Marcel Holtmann | a91f2e3 | 2006-07-03 10:02:41 +0200 | [diff] [blame] | 323 | class_destroy(bt_class); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 324 | } |