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> |
Tejun Heo | 5a0e3ad | 2010-03-24 17:04:11 +0900 | [diff] [blame] | 4 | #include <linux/slab.h> |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 5 | #include <linux/init.h> |
Marcel Holtmann | ca325f6 | 2010-02-08 16:22:31 +0100 | [diff] [blame] | 6 | #include <linux/debugfs.h> |
Marcel Holtmann | d4612cb | 2010-03-02 15:48:23 +0000 | [diff] [blame] | 7 | #include <linux/seq_file.h> |
Paul Gortmaker | 3a9a231 | 2011-05-27 09:12:25 -0400 | [diff] [blame] | 8 | #include <linux/module.h> |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 9 | |
| 10 | #include <net/bluetooth/bluetooth.h> |
| 11 | #include <net/bluetooth/hci_core.h> |
| 12 | |
Marcel Holtmann | aef7d97 | 2010-03-21 05:27:45 +0100 | [diff] [blame] | 13 | static struct class *bt_class; |
Marcel Holtmann | 90855d7 | 2008-08-18 13:23:53 +0200 | [diff] [blame] | 14 | |
Gustavo F. Padovan | 602f988 | 2011-02-17 19:22:19 -0300 | [diff] [blame] | 15 | struct dentry *bt_debugfs; |
Marcel Holtmann | ca325f6 | 2010-02-08 16:22:31 +0100 | [diff] [blame] | 16 | EXPORT_SYMBOL_GPL(bt_debugfs); |
| 17 | |
Marcel Holtmann | 90855d7 | 2008-08-18 13:23:53 +0200 | [diff] [blame] | 18 | static inline char *link_typetostr(int type) |
| 19 | { |
| 20 | switch (type) { |
| 21 | case ACL_LINK: |
| 22 | return "ACL"; |
| 23 | case SCO_LINK: |
| 24 | return "SCO"; |
| 25 | case ESCO_LINK: |
| 26 | return "eSCO"; |
Peter Hurley | 21061df | 2011-08-24 10:04:56 -0400 | [diff] [blame] | 27 | case LE_LINK: |
| 28 | return "LE"; |
Marcel Holtmann | 90855d7 | 2008-08-18 13:23:53 +0200 | [diff] [blame] | 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 | { |
David Herrmann | 3dc0732 | 2012-02-09 21:58:33 +0100 | [diff] [blame] | 36 | struct hci_conn *conn = to_hci_conn(dev); |
Marcel Holtmann | 90855d7 | 2008-08-18 13:23:53 +0200 | [diff] [blame] | 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 | { |
David Herrmann | 3dc0732 | 2012-02-09 21:58:33 +0100 | [diff] [blame] | 42 | struct hci_conn *conn = to_hci_conn(dev); |
Gustavo F. Padovan | d6b2eb2 | 2010-09-03 18:29:46 -0300 | [diff] [blame] | 43 | return sprintf(buf, "%s\n", batostr(&conn->dst)); |
Marcel Holtmann | 90855d7 | 2008-08-18 13:23:53 +0200 | [diff] [blame] | 44 | } |
| 45 | |
| 46 | static ssize_t show_link_features(struct device *dev, struct device_attribute *attr, char *buf) |
| 47 | { |
David Herrmann | 3dc0732 | 2012-02-09 21:58:33 +0100 | [diff] [blame] | 48 | struct hci_conn *conn = to_hci_conn(dev); |
Marcel Holtmann | 90855d7 | 2008-08-18 13:23:53 +0200 | [diff] [blame] | 49 | |
| 50 | return sprintf(buf, "0x%02x%02x%02x%02x%02x%02x%02x%02x\n", |
| 51 | conn->features[0], conn->features[1], |
| 52 | conn->features[2], conn->features[3], |
| 53 | conn->features[4], conn->features[5], |
| 54 | conn->features[6], conn->features[7]); |
| 55 | } |
| 56 | |
Gustavo F. Padovan | 602f988 | 2011-02-17 19:22:19 -0300 | [diff] [blame] | 57 | #define LINK_ATTR(_name, _mode, _show, _store) \ |
| 58 | struct device_attribute link_attr_##_name = __ATTR(_name, _mode, _show, _store) |
Marcel Holtmann | 90855d7 | 2008-08-18 13:23:53 +0200 | [diff] [blame] | 59 | |
| 60 | static LINK_ATTR(type, S_IRUGO, show_link_type, NULL); |
| 61 | static LINK_ATTR(address, S_IRUGO, show_link_address, NULL); |
| 62 | static LINK_ATTR(features, S_IRUGO, show_link_features, NULL); |
| 63 | |
| 64 | static struct attribute *bt_link_attrs[] = { |
| 65 | &link_attr_type.attr, |
| 66 | &link_attr_address.attr, |
| 67 | &link_attr_features.attr, |
| 68 | NULL |
| 69 | }; |
| 70 | |
| 71 | static struct attribute_group bt_link_group = { |
| 72 | .attrs = bt_link_attrs, |
| 73 | }; |
| 74 | |
David Brownell | a4dbd67 | 2009-06-24 10:06:31 -0700 | [diff] [blame] | 75 | static const struct attribute_group *bt_link_groups[] = { |
Marcel Holtmann | 90855d7 | 2008-08-18 13:23:53 +0200 | [diff] [blame] | 76 | &bt_link_group, |
| 77 | NULL |
| 78 | }; |
| 79 | |
| 80 | static void bt_link_release(struct device *dev) |
| 81 | { |
David Herrmann | 2dd1068 | 2012-02-09 21:58:34 +0100 | [diff] [blame] | 82 | struct hci_conn *conn = to_hci_conn(dev); |
| 83 | kfree(conn); |
Marcel Holtmann | 90855d7 | 2008-08-18 13:23:53 +0200 | [diff] [blame] | 84 | } |
| 85 | |
| 86 | static struct device_type bt_link = { |
| 87 | .name = "link", |
| 88 | .groups = bt_link_groups, |
| 89 | .release = bt_link_release, |
| 90 | }; |
| 91 | |
Gustavo F. Padovan | 6d438e3 | 2011-12-17 18:53:02 -0200 | [diff] [blame] | 92 | /* |
| 93 | * The rfcomm tty device will possibly retain even when conn |
| 94 | * is down, and sysfs doesn't support move zombie device, |
| 95 | * so we should move the device before conn device is destroyed. |
| 96 | */ |
| 97 | static int __match_tty(struct device *dev, void *data) |
Marcel Holtmann | 90855d7 | 2008-08-18 13:23:53 +0200 | [diff] [blame] | 98 | { |
Gustavo F. Padovan | 6d438e3 | 2011-12-17 18:53:02 -0200 | [diff] [blame] | 99 | return !strncmp(dev_name(dev), "rfcomm", 6); |
| 100 | } |
| 101 | |
| 102 | void hci_conn_init_sysfs(struct hci_conn *conn) |
| 103 | { |
Marcel Holtmann | 457ca7b | 2009-05-05 13:09:01 -0700 | [diff] [blame] | 104 | struct hci_dev *hdev = conn->hdev; |
Marcel Holtmann | 90855d7 | 2008-08-18 13:23:53 +0200 | [diff] [blame] | 105 | |
Gustavo F. Padovan | 6d438e3 | 2011-12-17 18:53:02 -0200 | [diff] [blame] | 106 | BT_DBG("conn %p", conn); |
| 107 | |
| 108 | conn->dev.type = &bt_link; |
| 109 | conn->dev.class = bt_class; |
| 110 | conn->dev.parent = &hdev->dev; |
| 111 | |
| 112 | device_initialize(&conn->dev); |
| 113 | } |
| 114 | |
| 115 | void hci_conn_add_sysfs(struct hci_conn *conn) |
| 116 | { |
| 117 | struct hci_dev *hdev = conn->hdev; |
| 118 | |
| 119 | BT_DBG("conn %p", conn); |
| 120 | |
Marcel Holtmann | 457ca7b | 2009-05-05 13:09:01 -0700 | [diff] [blame] | 121 | dev_set_name(&conn->dev, "%s:%d", hdev->name, conn->handle); |
| 122 | |
Marcel Holtmann | 90855d7 | 2008-08-18 13:23:53 +0200 | [diff] [blame] | 123 | if (device_add(&conn->dev) < 0) { |
| 124 | BT_ERR("Failed to register connection device"); |
| 125 | return; |
| 126 | } |
Marcel Holtmann | 384943e | 2009-05-08 18:20:43 -0700 | [diff] [blame] | 127 | |
| 128 | hci_dev_hold(hdev); |
Marcel Holtmann | 90855d7 | 2008-08-18 13:23:53 +0200 | [diff] [blame] | 129 | } |
| 130 | |
Gustavo F. Padovan | 6d438e3 | 2011-12-17 18:53:02 -0200 | [diff] [blame] | 131 | void hci_conn_del_sysfs(struct hci_conn *conn) |
Marcel Holtmann | 90855d7 | 2008-08-18 13:23:53 +0200 | [diff] [blame] | 132 | { |
Marcel Holtmann | 90855d7 | 2008-08-18 13:23:53 +0200 | [diff] [blame] | 133 | struct hci_dev *hdev = conn->hdev; |
| 134 | |
Marcel Holtmann | a67e899 | 2009-05-02 18:24:06 -0700 | [diff] [blame] | 135 | if (!device_is_registered(&conn->dev)) |
| 136 | return; |
Roger Quadros | f3784d8 | 2009-04-23 14:50:54 +0300 | [diff] [blame] | 137 | |
Marcel Holtmann | 90855d7 | 2008-08-18 13:23:53 +0200 | [diff] [blame] | 138 | while (1) { |
| 139 | struct device *dev; |
| 140 | |
| 141 | dev = device_find_child(&conn->dev, NULL, __match_tty); |
| 142 | if (!dev) |
| 143 | break; |
Cornelia Huck | ffa6a70 | 2009-03-04 12:44:00 +0100 | [diff] [blame] | 144 | device_move(dev, NULL, DPM_ORDER_DEV_LAST); |
Marcel Holtmann | 90855d7 | 2008-08-18 13:23:53 +0200 | [diff] [blame] | 145 | put_device(dev); |
| 146 | } |
| 147 | |
| 148 | device_del(&conn->dev); |
| 149 | put_device(&conn->dev); |
Marcel Holtmann | 384943e | 2009-05-08 18:20:43 -0700 | [diff] [blame] | 150 | |
Marcel Holtmann | 90855d7 | 2008-08-18 13:23:53 +0200 | [diff] [blame] | 151 | hci_dev_put(hdev); |
| 152 | } |
| 153 | |
Marcel Holtmann | c13854c | 2010-02-08 15:27:07 +0100 | [diff] [blame] | 154 | static inline char *host_bustostr(int bus) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 155 | { |
Marcel Holtmann | c13854c | 2010-02-08 15:27:07 +0100 | [diff] [blame] | 156 | switch (bus) { |
Marcel Holtmann | 0ac5393 | 2006-07-08 13:57:15 +0200 | [diff] [blame] | 157 | case HCI_VIRTUAL: |
Marcel Holtmann | 4d0eb00 | 2006-07-06 12:34:41 +0200 | [diff] [blame] | 158 | return "VIRTUAL"; |
| 159 | case HCI_USB: |
| 160 | return "USB"; |
| 161 | case HCI_PCCARD: |
| 162 | return "PCCARD"; |
| 163 | case HCI_UART: |
| 164 | return "UART"; |
| 165 | case HCI_RS232: |
| 166 | return "RS232"; |
| 167 | case HCI_PCI: |
| 168 | return "PCI"; |
Marcel Holtmann | 0ac5393 | 2006-07-08 13:57:15 +0200 | [diff] [blame] | 169 | case HCI_SDIO: |
| 170 | return "SDIO"; |
Marcel Holtmann | 4d0eb00 | 2006-07-06 12:34:41 +0200 | [diff] [blame] | 171 | default: |
| 172 | return "UNKNOWN"; |
| 173 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 174 | } |
| 175 | |
Marcel Holtmann | 943da25 | 2010-02-13 02:28:41 +0100 | [diff] [blame] | 176 | static inline char *host_typetostr(int type) |
| 177 | { |
| 178 | switch (type) { |
| 179 | case HCI_BREDR: |
| 180 | return "BR/EDR"; |
David Vrabel | 8f1e174 | 2010-08-09 17:38:10 -0400 | [diff] [blame] | 181 | case HCI_AMP: |
| 182 | return "AMP"; |
Marcel Holtmann | 943da25 | 2010-02-13 02:28:41 +0100 | [diff] [blame] | 183 | default: |
| 184 | return "UNKNOWN"; |
| 185 | } |
| 186 | } |
| 187 | |
Marcel Holtmann | c13854c | 2010-02-08 15:27:07 +0100 | [diff] [blame] | 188 | static ssize_t show_bus(struct device *dev, struct device_attribute *attr, char *buf) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 189 | { |
David Herrmann | aa2b86d | 2012-02-09 21:58:30 +0100 | [diff] [blame] | 190 | struct hci_dev *hdev = to_hci_dev(dev); |
Marcel Holtmann | c13854c | 2010-02-08 15:27:07 +0100 | [diff] [blame] | 191 | return sprintf(buf, "%s\n", host_bustostr(hdev->bus)); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 192 | } |
| 193 | |
Marcel Holtmann | 943da25 | 2010-02-13 02:28:41 +0100 | [diff] [blame] | 194 | static ssize_t show_type(struct device *dev, struct device_attribute *attr, char *buf) |
| 195 | { |
David Herrmann | aa2b86d | 2012-02-09 21:58:30 +0100 | [diff] [blame] | 196 | struct hci_dev *hdev = to_hci_dev(dev); |
Marcel Holtmann | 943da25 | 2010-02-13 02:28:41 +0100 | [diff] [blame] | 197 | return sprintf(buf, "%s\n", host_typetostr(hdev->dev_type)); |
| 198 | } |
| 199 | |
Marcel Holtmann | a9de924 | 2007-10-20 13:33:56 +0200 | [diff] [blame] | 200 | static ssize_t show_name(struct device *dev, struct device_attribute *attr, char *buf) |
| 201 | { |
David Herrmann | aa2b86d | 2012-02-09 21:58:30 +0100 | [diff] [blame] | 202 | struct hci_dev *hdev = to_hci_dev(dev); |
Johan Hedberg | 1f6c637 | 2011-03-16 14:29:35 +0200 | [diff] [blame] | 203 | char name[HCI_MAX_NAME_LENGTH + 1]; |
Marcel Holtmann | a9de924 | 2007-10-20 13:33:56 +0200 | [diff] [blame] | 204 | int i; |
| 205 | |
Johan Hedberg | 1f6c637 | 2011-03-16 14:29:35 +0200 | [diff] [blame] | 206 | for (i = 0; i < HCI_MAX_NAME_LENGTH; i++) |
Marcel Holtmann | a9de924 | 2007-10-20 13:33:56 +0200 | [diff] [blame] | 207 | name[i] = hdev->dev_name[i]; |
| 208 | |
Johan Hedberg | 1f6c637 | 2011-03-16 14:29:35 +0200 | [diff] [blame] | 209 | name[HCI_MAX_NAME_LENGTH] = '\0'; |
Marcel Holtmann | a9de924 | 2007-10-20 13:33:56 +0200 | [diff] [blame] | 210 | return sprintf(buf, "%s\n", name); |
| 211 | } |
| 212 | |
| 213 | static ssize_t show_class(struct device *dev, struct device_attribute *attr, char *buf) |
| 214 | { |
David Herrmann | aa2b86d | 2012-02-09 21:58:30 +0100 | [diff] [blame] | 215 | struct hci_dev *hdev = to_hci_dev(dev); |
Marcel Holtmann | a9de924 | 2007-10-20 13:33:56 +0200 | [diff] [blame] | 216 | return sprintf(buf, "0x%.2x%.2x%.2x\n", |
| 217 | hdev->dev_class[2], hdev->dev_class[1], hdev->dev_class[0]); |
| 218 | } |
| 219 | |
Marcel Holtmann | a91f2e3 | 2006-07-03 10:02:41 +0200 | [diff] [blame] | 220 | 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] | 221 | { |
David Herrmann | aa2b86d | 2012-02-09 21:58:30 +0100 | [diff] [blame] | 222 | struct hci_dev *hdev = to_hci_dev(dev); |
Gustavo F. Padovan | d6b2eb2 | 2010-09-03 18:29:46 -0300 | [diff] [blame] | 223 | return sprintf(buf, "%s\n", batostr(&hdev->bdaddr)); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 224 | } |
| 225 | |
Marcel Holtmann | a9de924 | 2007-10-20 13:33:56 +0200 | [diff] [blame] | 226 | static ssize_t show_features(struct device *dev, struct device_attribute *attr, char *buf) |
| 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", |
| 231 | hdev->features[0], hdev->features[1], |
| 232 | hdev->features[2], hdev->features[3], |
| 233 | hdev->features[4], hdev->features[5], |
| 234 | hdev->features[6], hdev->features[7]); |
| 235 | } |
| 236 | |
Marcel Holtmann | 1143e5a | 2006-09-23 09:57:20 +0200 | [diff] [blame] | 237 | static ssize_t show_manufacturer(struct device *dev, struct device_attribute *attr, char *buf) |
| 238 | { |
David Herrmann | aa2b86d | 2012-02-09 21:58:30 +0100 | [diff] [blame] | 239 | struct hci_dev *hdev = to_hci_dev(dev); |
Marcel Holtmann | 1143e5a | 2006-09-23 09:57:20 +0200 | [diff] [blame] | 240 | return sprintf(buf, "%d\n", hdev->manufacturer); |
| 241 | } |
| 242 | |
| 243 | static ssize_t show_hci_version(struct device *dev, struct device_attribute *attr, char *buf) |
| 244 | { |
David Herrmann | aa2b86d | 2012-02-09 21:58:30 +0100 | [diff] [blame] | 245 | struct hci_dev *hdev = to_hci_dev(dev); |
Marcel Holtmann | 1143e5a | 2006-09-23 09:57:20 +0200 | [diff] [blame] | 246 | return sprintf(buf, "%d\n", hdev->hci_ver); |
| 247 | } |
| 248 | |
| 249 | static ssize_t show_hci_revision(struct device *dev, struct device_attribute *attr, char *buf) |
| 250 | { |
David Herrmann | aa2b86d | 2012-02-09 21:58:30 +0100 | [diff] [blame] | 251 | struct hci_dev *hdev = to_hci_dev(dev); |
Marcel Holtmann | 1143e5a | 2006-09-23 09:57:20 +0200 | [diff] [blame] | 252 | return sprintf(buf, "%d\n", hdev->hci_rev); |
| 253 | } |
| 254 | |
Marcel Holtmann | a91f2e3 | 2006-07-03 10:02:41 +0200 | [diff] [blame] | 255 | 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] | 256 | { |
David Herrmann | aa2b86d | 2012-02-09 21:58:30 +0100 | [diff] [blame] | 257 | struct hci_dev *hdev = to_hci_dev(dev); |
Marcel Holtmann | 04837f6 | 2006-07-03 10:02:33 +0200 | [diff] [blame] | 258 | return sprintf(buf, "%d\n", hdev->idle_timeout); |
| 259 | } |
| 260 | |
Marcel Holtmann | a91f2e3 | 2006-07-03 10:02:41 +0200 | [diff] [blame] | 261 | 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] | 262 | { |
David Herrmann | aa2b86d | 2012-02-09 21:58:30 +0100 | [diff] [blame] | 263 | struct hci_dev *hdev = to_hci_dev(dev); |
Alexey Dobriyan | db940cb | 2011-04-02 14:19:41 +0300 | [diff] [blame] | 264 | unsigned int val; |
| 265 | int rv; |
Marcel Holtmann | 04837f6 | 2006-07-03 10:02:33 +0200 | [diff] [blame] | 266 | |
Alexey Dobriyan | db940cb | 2011-04-02 14:19:41 +0300 | [diff] [blame] | 267 | rv = kstrtouint(buf, 0, &val); |
| 268 | if (rv < 0) |
| 269 | return rv; |
Marcel Holtmann | 04837f6 | 2006-07-03 10:02:33 +0200 | [diff] [blame] | 270 | |
| 271 | if (val != 0 && (val < 500 || val > 3600000)) |
| 272 | return -EINVAL; |
| 273 | |
| 274 | hdev->idle_timeout = val; |
| 275 | |
| 276 | return count; |
| 277 | } |
| 278 | |
Marcel Holtmann | a91f2e3 | 2006-07-03 10:02:41 +0200 | [diff] [blame] | 279 | 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] | 280 | { |
David Herrmann | aa2b86d | 2012-02-09 21:58:30 +0100 | [diff] [blame] | 281 | struct hci_dev *hdev = to_hci_dev(dev); |
Marcel Holtmann | 04837f6 | 2006-07-03 10:02:33 +0200 | [diff] [blame] | 282 | return sprintf(buf, "%d\n", hdev->sniff_max_interval); |
| 283 | } |
| 284 | |
Marcel Holtmann | a91f2e3 | 2006-07-03 10:02:41 +0200 | [diff] [blame] | 285 | 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] | 286 | { |
David Herrmann | aa2b86d | 2012-02-09 21:58:30 +0100 | [diff] [blame] | 287 | struct hci_dev *hdev = to_hci_dev(dev); |
Alexey Dobriyan | db940cb | 2011-04-02 14:19:41 +0300 | [diff] [blame] | 288 | u16 val; |
| 289 | int rv; |
Marcel Holtmann | 04837f6 | 2006-07-03 10:02:33 +0200 | [diff] [blame] | 290 | |
Alexey Dobriyan | db940cb | 2011-04-02 14:19:41 +0300 | [diff] [blame] | 291 | rv = kstrtou16(buf, 0, &val); |
| 292 | if (rv < 0) |
| 293 | return rv; |
Marcel Holtmann | 04837f6 | 2006-07-03 10:02:33 +0200 | [diff] [blame] | 294 | |
Alexey Dobriyan | db940cb | 2011-04-02 14:19:41 +0300 | [diff] [blame] | 295 | if (val == 0 || val % 2 || val < hdev->sniff_min_interval) |
Marcel Holtmann | 04837f6 | 2006-07-03 10:02:33 +0200 | [diff] [blame] | 296 | return -EINVAL; |
| 297 | |
| 298 | hdev->sniff_max_interval = val; |
| 299 | |
| 300 | return count; |
| 301 | } |
| 302 | |
Marcel Holtmann | a91f2e3 | 2006-07-03 10:02:41 +0200 | [diff] [blame] | 303 | 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] | 304 | { |
David Herrmann | aa2b86d | 2012-02-09 21:58:30 +0100 | [diff] [blame] | 305 | struct hci_dev *hdev = to_hci_dev(dev); |
Marcel Holtmann | 04837f6 | 2006-07-03 10:02:33 +0200 | [diff] [blame] | 306 | return sprintf(buf, "%d\n", hdev->sniff_min_interval); |
| 307 | } |
| 308 | |
Marcel Holtmann | a91f2e3 | 2006-07-03 10:02:41 +0200 | [diff] [blame] | 309 | 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] | 310 | { |
David Herrmann | aa2b86d | 2012-02-09 21:58:30 +0100 | [diff] [blame] | 311 | struct hci_dev *hdev = to_hci_dev(dev); |
Alexey Dobriyan | db940cb | 2011-04-02 14:19:41 +0300 | [diff] [blame] | 312 | u16 val; |
| 313 | int rv; |
Marcel Holtmann | 04837f6 | 2006-07-03 10:02:33 +0200 | [diff] [blame] | 314 | |
Alexey Dobriyan | db940cb | 2011-04-02 14:19:41 +0300 | [diff] [blame] | 315 | rv = kstrtou16(buf, 0, &val); |
| 316 | if (rv < 0) |
| 317 | return rv; |
Marcel Holtmann | 04837f6 | 2006-07-03 10:02:33 +0200 | [diff] [blame] | 318 | |
Alexey Dobriyan | db940cb | 2011-04-02 14:19:41 +0300 | [diff] [blame] | 319 | if (val == 0 || val % 2 || val > hdev->sniff_max_interval) |
Marcel Holtmann | 04837f6 | 2006-07-03 10:02:33 +0200 | [diff] [blame] | 320 | return -EINVAL; |
| 321 | |
| 322 | hdev->sniff_min_interval = val; |
| 323 | |
| 324 | return count; |
| 325 | } |
| 326 | |
Marcel Holtmann | c13854c | 2010-02-08 15:27:07 +0100 | [diff] [blame] | 327 | static DEVICE_ATTR(bus, S_IRUGO, show_bus, NULL); |
Marcel Holtmann | 943da25 | 2010-02-13 02:28:41 +0100 | [diff] [blame] | 328 | static DEVICE_ATTR(type, S_IRUGO, show_type, NULL); |
Marcel Holtmann | a9de924 | 2007-10-20 13:33:56 +0200 | [diff] [blame] | 329 | static DEVICE_ATTR(name, S_IRUGO, show_name, NULL); |
| 330 | static DEVICE_ATTR(class, S_IRUGO, show_class, NULL); |
Marcel Holtmann | a91f2e3 | 2006-07-03 10:02:41 +0200 | [diff] [blame] | 331 | static DEVICE_ATTR(address, S_IRUGO, show_address, NULL); |
Marcel Holtmann | a9de924 | 2007-10-20 13:33:56 +0200 | [diff] [blame] | 332 | static DEVICE_ATTR(features, S_IRUGO, show_features, NULL); |
Marcel Holtmann | 1143e5a | 2006-09-23 09:57:20 +0200 | [diff] [blame] | 333 | static DEVICE_ATTR(manufacturer, S_IRUGO, show_manufacturer, NULL); |
| 334 | static DEVICE_ATTR(hci_version, S_IRUGO, show_hci_version, NULL); |
| 335 | static DEVICE_ATTR(hci_revision, S_IRUGO, show_hci_revision, NULL); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 336 | |
Marcel Holtmann | a91f2e3 | 2006-07-03 10:02:41 +0200 | [diff] [blame] | 337 | static DEVICE_ATTR(idle_timeout, S_IRUGO | S_IWUSR, |
Marcel Holtmann | 04837f6 | 2006-07-03 10:02:33 +0200 | [diff] [blame] | 338 | show_idle_timeout, store_idle_timeout); |
Marcel Holtmann | a91f2e3 | 2006-07-03 10:02:41 +0200 | [diff] [blame] | 339 | static DEVICE_ATTR(sniff_max_interval, S_IRUGO | S_IWUSR, |
Marcel Holtmann | 04837f6 | 2006-07-03 10:02:33 +0200 | [diff] [blame] | 340 | show_sniff_max_interval, store_sniff_max_interval); |
Marcel Holtmann | a91f2e3 | 2006-07-03 10:02:41 +0200 | [diff] [blame] | 341 | static DEVICE_ATTR(sniff_min_interval, S_IRUGO | S_IWUSR, |
Marcel Holtmann | 04837f6 | 2006-07-03 10:02:33 +0200 | [diff] [blame] | 342 | show_sniff_min_interval, store_sniff_min_interval); |
| 343 | |
Marcel Holtmann | 90855d7 | 2008-08-18 13:23:53 +0200 | [diff] [blame] | 344 | static struct attribute *bt_host_attrs[] = { |
Marcel Holtmann | c13854c | 2010-02-08 15:27:07 +0100 | [diff] [blame] | 345 | &dev_attr_bus.attr, |
Marcel Holtmann | 943da25 | 2010-02-13 02:28:41 +0100 | [diff] [blame] | 346 | &dev_attr_type.attr, |
Marcel Holtmann | 90855d7 | 2008-08-18 13:23:53 +0200 | [diff] [blame] | 347 | &dev_attr_name.attr, |
| 348 | &dev_attr_class.attr, |
| 349 | &dev_attr_address.attr, |
| 350 | &dev_attr_features.attr, |
| 351 | &dev_attr_manufacturer.attr, |
| 352 | &dev_attr_hci_version.attr, |
| 353 | &dev_attr_hci_revision.attr, |
Marcel Holtmann | 90855d7 | 2008-08-18 13:23:53 +0200 | [diff] [blame] | 354 | &dev_attr_idle_timeout.attr, |
| 355 | &dev_attr_sniff_max_interval.attr, |
| 356 | &dev_attr_sniff_min_interval.attr, |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 357 | NULL |
| 358 | }; |
| 359 | |
Marcel Holtmann | 90855d7 | 2008-08-18 13:23:53 +0200 | [diff] [blame] | 360 | static struct attribute_group bt_host_group = { |
| 361 | .attrs = bt_host_attrs, |
| 362 | }; |
Marcel Holtmann | b219e3a | 2006-07-06 12:38:46 +0200 | [diff] [blame] | 363 | |
David Brownell | a4dbd67 | 2009-06-24 10:06:31 -0700 | [diff] [blame] | 364 | static const struct attribute_group *bt_host_groups[] = { |
Marcel Holtmann | 90855d7 | 2008-08-18 13:23:53 +0200 | [diff] [blame] | 365 | &bt_host_group, |
Marcel Holtmann | b219e3a | 2006-07-06 12:38:46 +0200 | [diff] [blame] | 366 | NULL |
| 367 | }; |
| 368 | |
Marcel Holtmann | 90855d7 | 2008-08-18 13:23:53 +0200 | [diff] [blame] | 369 | static void bt_host_release(struct device *dev) |
Marcel Holtmann | a91f2e3 | 2006-07-03 10:02:41 +0200 | [diff] [blame] | 370 | { |
David Herrmann | 2dd1068 | 2012-02-09 21:58:34 +0100 | [diff] [blame] | 371 | struct hci_dev *hdev = to_hci_dev(dev); |
| 372 | kfree(hdev); |
David Herrmann | 46e0653 | 2012-01-07 15:47:21 +0100 | [diff] [blame] | 373 | module_put(THIS_MODULE); |
Marcel Holtmann | b219e3a | 2006-07-06 12:38:46 +0200 | [diff] [blame] | 374 | } |
| 375 | |
Marcel Holtmann | 90855d7 | 2008-08-18 13:23:53 +0200 | [diff] [blame] | 376 | static struct device_type bt_host = { |
| 377 | .name = "host", |
| 378 | .groups = bt_host_groups, |
| 379 | .release = bt_host_release, |
| 380 | }; |
Marcel Holtmann | a91f2e3 | 2006-07-03 10:02:41 +0200 | [diff] [blame] | 381 | |
Marcel Holtmann | d4612cb | 2010-03-02 15:48:23 +0000 | [diff] [blame] | 382 | static int inquiry_cache_show(struct seq_file *f, void *p) |
Marcel Holtmann | ca325f6 | 2010-02-08 16:22:31 +0100 | [diff] [blame] | 383 | { |
Marcel Holtmann | d4612cb | 2010-03-02 15:48:23 +0000 | [diff] [blame] | 384 | struct hci_dev *hdev = f->private; |
Johan Hedberg | 3088351 | 2012-01-04 14:16:21 +0200 | [diff] [blame] | 385 | struct discovery_state *cache = &hdev->discovery; |
Marcel Holtmann | ca325f6 | 2010-02-08 16:22:31 +0100 | [diff] [blame] | 386 | struct inquiry_entry *e; |
Marcel Holtmann | ca325f6 | 2010-02-08 16:22:31 +0100 | [diff] [blame] | 387 | |
Gustavo F. Padovan | 09fd0de | 2011-06-17 13:03:21 -0300 | [diff] [blame] | 388 | hci_dev_lock(hdev); |
Marcel Holtmann | ca325f6 | 2010-02-08 16:22:31 +0100 | [diff] [blame] | 389 | |
Johan Hedberg | 561aafb | 2012-01-04 13:31:59 +0200 | [diff] [blame] | 390 | list_for_each_entry(e, &cache->all, all) { |
Marcel Holtmann | ca325f6 | 2010-02-08 16:22:31 +0100 | [diff] [blame] | 391 | struct inquiry_data *data = &e->data; |
Marcel Holtmann | d4612cb | 2010-03-02 15:48:23 +0000 | [diff] [blame] | 392 | seq_printf(f, "%s %d %d %d 0x%.2x%.2x%.2x 0x%.4x %d %d %u\n", |
Gustavo F. Padovan | d6b2eb2 | 2010-09-03 18:29:46 -0300 | [diff] [blame] | 393 | batostr(&data->bdaddr), |
Marcel Holtmann | d4612cb | 2010-03-02 15:48:23 +0000 | [diff] [blame] | 394 | data->pscan_rep_mode, data->pscan_period_mode, |
| 395 | data->pscan_mode, data->dev_class[2], |
| 396 | data->dev_class[1], data->dev_class[0], |
| 397 | __le16_to_cpu(data->clock_offset), |
| 398 | data->rssi, data->ssp_mode, e->timestamp); |
Marcel Holtmann | ca325f6 | 2010-02-08 16:22:31 +0100 | [diff] [blame] | 399 | } |
| 400 | |
Gustavo F. Padovan | 09fd0de | 2011-06-17 13:03:21 -0300 | [diff] [blame] | 401 | hci_dev_unlock(hdev); |
Marcel Holtmann | ca325f6 | 2010-02-08 16:22:31 +0100 | [diff] [blame] | 402 | |
Marcel Holtmann | d4612cb | 2010-03-02 15:48:23 +0000 | [diff] [blame] | 403 | return 0; |
| 404 | } |
| 405 | |
| 406 | static int inquiry_cache_open(struct inode *inode, struct file *file) |
| 407 | { |
| 408 | return single_open(file, inquiry_cache_show, inode->i_private); |
Marcel Holtmann | ca325f6 | 2010-02-08 16:22:31 +0100 | [diff] [blame] | 409 | } |
| 410 | |
| 411 | static const struct file_operations inquiry_cache_fops = { |
Marcel Holtmann | d4612cb | 2010-03-02 15:48:23 +0000 | [diff] [blame] | 412 | .open = inquiry_cache_open, |
| 413 | .read = seq_read, |
| 414 | .llseek = seq_lseek, |
| 415 | .release = single_release, |
Marcel Holtmann | ca325f6 | 2010-02-08 16:22:31 +0100 | [diff] [blame] | 416 | }; |
| 417 | |
Johan Hedberg | 32c2ece | 2010-05-18 13:54:49 +0200 | [diff] [blame] | 418 | static int blacklist_show(struct seq_file *f, void *p) |
| 419 | { |
| 420 | struct hci_dev *hdev = f->private; |
Luiz Augusto von Dentz | 8035ded | 2011-11-01 10:58:56 +0200 | [diff] [blame] | 421 | struct bdaddr_list *b; |
Johan Hedberg | 32c2ece | 2010-05-18 13:54:49 +0200 | [diff] [blame] | 422 | |
Gustavo F. Padovan | 09fd0de | 2011-06-17 13:03:21 -0300 | [diff] [blame] | 423 | hci_dev_lock(hdev); |
Johan Hedberg | 32c2ece | 2010-05-18 13:54:49 +0200 | [diff] [blame] | 424 | |
Luiz Augusto von Dentz | 8035ded | 2011-11-01 10:58:56 +0200 | [diff] [blame] | 425 | list_for_each_entry(b, &hdev->blacklist, list) |
Gustavo F. Padovan | d6b2eb2 | 2010-09-03 18:29:46 -0300 | [diff] [blame] | 426 | seq_printf(f, "%s\n", batostr(&b->bdaddr)); |
Johan Hedberg | 32c2ece | 2010-05-18 13:54:49 +0200 | [diff] [blame] | 427 | |
Gustavo F. Padovan | 09fd0de | 2011-06-17 13:03:21 -0300 | [diff] [blame] | 428 | hci_dev_unlock(hdev); |
Johan Hedberg | 32c2ece | 2010-05-18 13:54:49 +0200 | [diff] [blame] | 429 | |
| 430 | return 0; |
| 431 | } |
| 432 | |
| 433 | static int blacklist_open(struct inode *inode, struct file *file) |
| 434 | { |
| 435 | return single_open(file, blacklist_show, inode->i_private); |
| 436 | } |
| 437 | |
| 438 | static const struct file_operations blacklist_fops = { |
| 439 | .open = blacklist_open, |
| 440 | .read = seq_read, |
| 441 | .llseek = seq_lseek, |
| 442 | .release = single_release, |
| 443 | }; |
Johan Hedberg | 930e133 | 2011-01-04 11:39:44 +0200 | [diff] [blame] | 444 | |
| 445 | static void print_bt_uuid(struct seq_file *f, u8 *uuid) |
| 446 | { |
Andrei Emeltchenko | 739f43e | 2012-03-12 15:59:31 +0200 | [diff] [blame^] | 447 | __be32 data0, data4; |
| 448 | __be16 data1, data2, data3, data5; |
Johan Hedberg | 930e133 | 2011-01-04 11:39:44 +0200 | [diff] [blame] | 449 | |
| 450 | memcpy(&data0, &uuid[0], 4); |
| 451 | memcpy(&data1, &uuid[4], 2); |
| 452 | memcpy(&data2, &uuid[6], 2); |
| 453 | memcpy(&data3, &uuid[8], 2); |
| 454 | memcpy(&data4, &uuid[10], 4); |
| 455 | memcpy(&data5, &uuid[14], 2); |
| 456 | |
| 457 | seq_printf(f, "%.8x-%.4x-%.4x-%.4x-%.8x%.4x\n", |
| 458 | ntohl(data0), ntohs(data1), ntohs(data2), |
| 459 | ntohs(data3), ntohl(data4), ntohs(data5)); |
| 460 | } |
| 461 | |
| 462 | static int uuids_show(struct seq_file *f, void *p) |
| 463 | { |
| 464 | struct hci_dev *hdev = f->private; |
Luiz Augusto von Dentz | 8035ded | 2011-11-01 10:58:56 +0200 | [diff] [blame] | 465 | struct bt_uuid *uuid; |
Johan Hedberg | 930e133 | 2011-01-04 11:39:44 +0200 | [diff] [blame] | 466 | |
Gustavo F. Padovan | 09fd0de | 2011-06-17 13:03:21 -0300 | [diff] [blame] | 467 | hci_dev_lock(hdev); |
Johan Hedberg | 930e133 | 2011-01-04 11:39:44 +0200 | [diff] [blame] | 468 | |
Luiz Augusto von Dentz | 8035ded | 2011-11-01 10:58:56 +0200 | [diff] [blame] | 469 | list_for_each_entry(uuid, &hdev->uuids, list) |
Johan Hedberg | 930e133 | 2011-01-04 11:39:44 +0200 | [diff] [blame] | 470 | print_bt_uuid(f, uuid->uuid); |
Johan Hedberg | 930e133 | 2011-01-04 11:39:44 +0200 | [diff] [blame] | 471 | |
Gustavo F. Padovan | 09fd0de | 2011-06-17 13:03:21 -0300 | [diff] [blame] | 472 | hci_dev_unlock(hdev); |
Johan Hedberg | 930e133 | 2011-01-04 11:39:44 +0200 | [diff] [blame] | 473 | |
| 474 | return 0; |
| 475 | } |
| 476 | |
| 477 | static int uuids_open(struct inode *inode, struct file *file) |
| 478 | { |
| 479 | return single_open(file, uuids_show, inode->i_private); |
| 480 | } |
| 481 | |
| 482 | static const struct file_operations uuids_fops = { |
| 483 | .open = uuids_open, |
| 484 | .read = seq_read, |
| 485 | .llseek = seq_lseek, |
| 486 | .release = single_release, |
| 487 | }; |
| 488 | |
Johan Hedberg | 9f61656 | 2011-04-28 11:28:54 -0700 | [diff] [blame] | 489 | static int auto_accept_delay_set(void *data, u64 val) |
| 490 | { |
| 491 | struct hci_dev *hdev = data; |
| 492 | |
Gustavo F. Padovan | 09fd0de | 2011-06-17 13:03:21 -0300 | [diff] [blame] | 493 | hci_dev_lock(hdev); |
Johan Hedberg | 9f61656 | 2011-04-28 11:28:54 -0700 | [diff] [blame] | 494 | |
| 495 | hdev->auto_accept_delay = val; |
| 496 | |
Gustavo F. Padovan | 09fd0de | 2011-06-17 13:03:21 -0300 | [diff] [blame] | 497 | hci_dev_unlock(hdev); |
Johan Hedberg | 9f61656 | 2011-04-28 11:28:54 -0700 | [diff] [blame] | 498 | |
| 499 | return 0; |
| 500 | } |
| 501 | |
| 502 | static int auto_accept_delay_get(void *data, u64 *val) |
| 503 | { |
| 504 | struct hci_dev *hdev = data; |
| 505 | |
Gustavo F. Padovan | 09fd0de | 2011-06-17 13:03:21 -0300 | [diff] [blame] | 506 | hci_dev_lock(hdev); |
Johan Hedberg | 9f61656 | 2011-04-28 11:28:54 -0700 | [diff] [blame] | 507 | |
| 508 | *val = hdev->auto_accept_delay; |
| 509 | |
Gustavo F. Padovan | 09fd0de | 2011-06-17 13:03:21 -0300 | [diff] [blame] | 510 | hci_dev_unlock(hdev); |
Johan Hedberg | 9f61656 | 2011-04-28 11:28:54 -0700 | [diff] [blame] | 511 | |
| 512 | return 0; |
| 513 | } |
| 514 | |
| 515 | DEFINE_SIMPLE_ATTRIBUTE(auto_accept_delay_fops, auto_accept_delay_get, |
| 516 | auto_accept_delay_set, "%llu\n"); |
| 517 | |
David Herrmann | 0ac7e70 | 2011-10-08 14:58:47 +0200 | [diff] [blame] | 518 | void hci_init_sysfs(struct hci_dev *hdev) |
| 519 | { |
| 520 | struct device *dev = &hdev->dev; |
| 521 | |
| 522 | dev->type = &bt_host; |
| 523 | dev->class = bt_class; |
| 524 | |
David Herrmann | 46e0653 | 2012-01-07 15:47:21 +0100 | [diff] [blame] | 525 | __module_get(THIS_MODULE); |
David Herrmann | 0ac7e70 | 2011-10-08 14:58:47 +0200 | [diff] [blame] | 526 | device_initialize(dev); |
| 527 | } |
| 528 | |
David Herrmann | ce24297 | 2011-10-08 14:58:48 +0200 | [diff] [blame] | 529 | int hci_add_sysfs(struct hci_dev *hdev) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 530 | { |
Marcel Holtmann | a91f2e3 | 2006-07-03 10:02:41 +0200 | [diff] [blame] | 531 | struct device *dev = &hdev->dev; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 532 | int err; |
| 533 | |
Marcel Holtmann | c13854c | 2010-02-08 15:27:07 +0100 | [diff] [blame] | 534 | BT_DBG("%p name %s bus %d", hdev, hdev->name, hdev->bus); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 535 | |
Marcel Holtmann | 2e79299 | 2008-11-30 12:17:29 +0100 | [diff] [blame] | 536 | dev_set_name(dev, "%s", hdev->name); |
Marcel Holtmann | 27d3528 | 2006-07-03 10:02:37 +0200 | [diff] [blame] | 537 | |
David Herrmann | 0ac7e70 | 2011-10-08 14:58:47 +0200 | [diff] [blame] | 538 | err = device_add(dev); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 539 | if (err < 0) |
| 540 | return err; |
| 541 | |
Marcel Holtmann | ca325f6 | 2010-02-08 16:22:31 +0100 | [diff] [blame] | 542 | if (!bt_debugfs) |
| 543 | return 0; |
| 544 | |
| 545 | hdev->debugfs = debugfs_create_dir(hdev->name, bt_debugfs); |
| 546 | if (!hdev->debugfs) |
| 547 | return 0; |
| 548 | |
| 549 | debugfs_create_file("inquiry_cache", 0444, hdev->debugfs, |
| 550 | hdev, &inquiry_cache_fops); |
| 551 | |
Johan Hedberg | 32c2ece | 2010-05-18 13:54:49 +0200 | [diff] [blame] | 552 | debugfs_create_file("blacklist", 0444, hdev->debugfs, |
| 553 | hdev, &blacklist_fops); |
| 554 | |
Johan Hedberg | 930e133 | 2011-01-04 11:39:44 +0200 | [diff] [blame] | 555 | debugfs_create_file("uuids", 0444, hdev->debugfs, hdev, &uuids_fops); |
| 556 | |
Johan Hedberg | 9f61656 | 2011-04-28 11:28:54 -0700 | [diff] [blame] | 557 | debugfs_create_file("auto_accept_delay", 0444, hdev->debugfs, hdev, |
| 558 | &auto_accept_delay_fops); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 559 | return 0; |
| 560 | } |
| 561 | |
David Herrmann | ce24297 | 2011-10-08 14:58:48 +0200 | [diff] [blame] | 562 | void hci_del_sysfs(struct hci_dev *hdev) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 563 | { |
Marcel Holtmann | c13854c | 2010-02-08 15:27:07 +0100 | [diff] [blame] | 564 | BT_DBG("%p name %s bus %d", hdev, hdev->name, hdev->bus); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 565 | |
Marcel Holtmann | ca325f6 | 2010-02-08 16:22:31 +0100 | [diff] [blame] | 566 | debugfs_remove_recursive(hdev->debugfs); |
| 567 | |
Marcel Holtmann | 4d0eb00 | 2006-07-06 12:34:41 +0200 | [diff] [blame] | 568 | device_del(&hdev->dev); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 569 | } |
| 570 | |
| 571 | int __init bt_sysfs_init(void) |
| 572 | { |
Marcel Holtmann | ca325f6 | 2010-02-08 16:22:31 +0100 | [diff] [blame] | 573 | bt_debugfs = debugfs_create_dir("bluetooth", NULL); |
| 574 | |
Marcel Holtmann | a91f2e3 | 2006-07-03 10:02:41 +0200 | [diff] [blame] | 575 | bt_class = class_create(THIS_MODULE, "bluetooth"); |
Marcel Holtmann | f48fd9c | 2010-03-20 15:20:04 +0100 | [diff] [blame] | 576 | if (IS_ERR(bt_class)) |
Marcel Holtmann | 90855d7 | 2008-08-18 13:23:53 +0200 | [diff] [blame] | 577 | return PTR_ERR(bt_class); |
Marcel Holtmann | 27d3528 | 2006-07-03 10:02:37 +0200 | [diff] [blame] | 578 | |
| 579 | return 0; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 580 | } |
| 581 | |
Arnaud Patard | 860e13b | 2006-09-28 15:29:37 -0700 | [diff] [blame] | 582 | void bt_sysfs_cleanup(void) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 583 | { |
Marcel Holtmann | a91f2e3 | 2006-07-03 10:02:41 +0200 | [diff] [blame] | 584 | class_destroy(bt_class); |
Marcel Holtmann | ca325f6 | 2010-02-08 16:22:31 +0100 | [diff] [blame] | 585 | |
| 586 | debugfs_remove_recursive(bt_debugfs); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 587 | } |