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> |
Marcel Holtmann | ca325f6 | 2010-02-08 16:22:31 +0100 | [diff] [blame] | 5 | #include <linux/debugfs.h> |
Marcel Holtmann | d4612cb | 2010-03-02 15:48:23 +0000 | [diff] [blame] | 6 | #include <linux/seq_file.h> |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 7 | |
| 8 | #include <net/bluetooth/bluetooth.h> |
| 9 | #include <net/bluetooth/hci_core.h> |
| 10 | |
Marcel Holtmann | aef7d97 | 2010-03-21 05:27:45 +0100 | [diff] [blame^] | 11 | static struct class *bt_class; |
Marcel Holtmann | 90855d7 | 2008-08-18 13:23:53 +0200 | [diff] [blame] | 12 | |
Marcel Holtmann | ca325f6 | 2010-02-08 16:22:31 +0100 | [diff] [blame] | 13 | struct dentry *bt_debugfs = NULL; |
| 14 | EXPORT_SYMBOL_GPL(bt_debugfs); |
| 15 | |
Marcel Holtmann | a67e899 | 2009-05-02 18:24:06 -0700 | [diff] [blame] | 16 | static struct workqueue_struct *bt_workq; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 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"; |
| 27 | default: |
| 28 | return "UNKNOWN"; |
| 29 | } |
| 30 | } |
| 31 | |
| 32 | static ssize_t show_link_type(struct device *dev, struct device_attribute *attr, char *buf) |
| 33 | { |
| 34 | struct hci_conn *conn = dev_get_drvdata(dev); |
| 35 | return sprintf(buf, "%s\n", link_typetostr(conn->type)); |
| 36 | } |
| 37 | |
| 38 | static ssize_t show_link_address(struct device *dev, struct device_attribute *attr, char *buf) |
| 39 | { |
| 40 | struct hci_conn *conn = dev_get_drvdata(dev); |
| 41 | bdaddr_t bdaddr; |
| 42 | baswap(&bdaddr, &conn->dst); |
| 43 | return sprintf(buf, "%s\n", batostr(&bdaddr)); |
| 44 | } |
| 45 | |
| 46 | static ssize_t show_link_features(struct device *dev, struct device_attribute *attr, char *buf) |
| 47 | { |
| 48 | struct hci_conn *conn = dev_get_drvdata(dev); |
| 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 | |
| 57 | #define LINK_ATTR(_name,_mode,_show,_store) \ |
| 58 | struct device_attribute link_attr_##_name = __ATTR(_name,_mode,_show,_store) |
| 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 | { |
| 82 | void *data = dev_get_drvdata(dev); |
| 83 | kfree(data); |
| 84 | } |
| 85 | |
| 86 | static struct device_type bt_link = { |
| 87 | .name = "link", |
| 88 | .groups = bt_link_groups, |
| 89 | .release = bt_link_release, |
| 90 | }; |
| 91 | |
| 92 | static void add_conn(struct work_struct *work) |
| 93 | { |
Roger Quadros | f3784d8 | 2009-04-23 14:50:54 +0300 | [diff] [blame] | 94 | struct hci_conn *conn = container_of(work, struct hci_conn, work_add); |
Marcel Holtmann | 457ca7b | 2009-05-05 13:09:01 -0700 | [diff] [blame] | 95 | struct hci_dev *hdev = conn->hdev; |
Marcel Holtmann | 90855d7 | 2008-08-18 13:23:53 +0200 | [diff] [blame] | 96 | |
Marcel Holtmann | 457ca7b | 2009-05-05 13:09:01 -0700 | [diff] [blame] | 97 | dev_set_name(&conn->dev, "%s:%d", hdev->name, conn->handle); |
| 98 | |
Dave Young | f74c77c | 2009-10-18 20:24:41 +0000 | [diff] [blame] | 99 | dev_set_drvdata(&conn->dev, conn); |
| 100 | |
Marcel Holtmann | 90855d7 | 2008-08-18 13:23:53 +0200 | [diff] [blame] | 101 | if (device_add(&conn->dev) < 0) { |
| 102 | BT_ERR("Failed to register connection device"); |
| 103 | return; |
| 104 | } |
Marcel Holtmann | 384943e | 2009-05-08 18:20:43 -0700 | [diff] [blame] | 105 | |
| 106 | hci_dev_hold(hdev); |
Marcel Holtmann | 90855d7 | 2008-08-18 13:23:53 +0200 | [diff] [blame] | 107 | } |
| 108 | |
Marcel Holtmann | 90855d7 | 2008-08-18 13:23:53 +0200 | [diff] [blame] | 109 | /* |
| 110 | * The rfcomm tty device will possibly retain even when conn |
| 111 | * is down, and sysfs doesn't support move zombie device, |
| 112 | * so we should move the device before conn device is destroyed. |
| 113 | */ |
| 114 | static int __match_tty(struct device *dev, void *data) |
| 115 | { |
Kay Sievers | fb28ad3 | 2008-11-10 13:55:14 -0800 | [diff] [blame] | 116 | return !strncmp(dev_name(dev), "rfcomm", 6); |
Marcel Holtmann | 90855d7 | 2008-08-18 13:23:53 +0200 | [diff] [blame] | 117 | } |
| 118 | |
| 119 | static void del_conn(struct work_struct *work) |
| 120 | { |
Roger Quadros | f3784d8 | 2009-04-23 14:50:54 +0300 | [diff] [blame] | 121 | struct hci_conn *conn = container_of(work, struct hci_conn, work_del); |
Marcel Holtmann | 90855d7 | 2008-08-18 13:23:53 +0200 | [diff] [blame] | 122 | struct hci_dev *hdev = conn->hdev; |
| 123 | |
Marcel Holtmann | a67e899 | 2009-05-02 18:24:06 -0700 | [diff] [blame] | 124 | if (!device_is_registered(&conn->dev)) |
| 125 | return; |
Roger Quadros | f3784d8 | 2009-04-23 14:50:54 +0300 | [diff] [blame] | 126 | |
Marcel Holtmann | 90855d7 | 2008-08-18 13:23:53 +0200 | [diff] [blame] | 127 | while (1) { |
| 128 | struct device *dev; |
| 129 | |
| 130 | dev = device_find_child(&conn->dev, NULL, __match_tty); |
| 131 | if (!dev) |
| 132 | break; |
Cornelia Huck | ffa6a70 | 2009-03-04 12:44:00 +0100 | [diff] [blame] | 133 | device_move(dev, NULL, DPM_ORDER_DEV_LAST); |
Marcel Holtmann | 90855d7 | 2008-08-18 13:23:53 +0200 | [diff] [blame] | 134 | put_device(dev); |
| 135 | } |
| 136 | |
| 137 | device_del(&conn->dev); |
| 138 | put_device(&conn->dev); |
Marcel Holtmann | 384943e | 2009-05-08 18:20:43 -0700 | [diff] [blame] | 139 | |
Marcel Holtmann | 90855d7 | 2008-08-18 13:23:53 +0200 | [diff] [blame] | 140 | hci_dev_put(hdev); |
| 141 | } |
| 142 | |
Marcel Holtmann | a67e899 | 2009-05-02 18:24:06 -0700 | [diff] [blame] | 143 | void hci_conn_init_sysfs(struct hci_conn *conn) |
| 144 | { |
| 145 | struct hci_dev *hdev = conn->hdev; |
| 146 | |
| 147 | BT_DBG("conn %p", conn); |
| 148 | |
| 149 | conn->dev.type = &bt_link; |
| 150 | conn->dev.class = bt_class; |
| 151 | conn->dev.parent = &hdev->dev; |
| 152 | |
Marcel Holtmann | a67e899 | 2009-05-02 18:24:06 -0700 | [diff] [blame] | 153 | device_initialize(&conn->dev); |
| 154 | |
| 155 | INIT_WORK(&conn->work_add, add_conn); |
| 156 | INIT_WORK(&conn->work_del, del_conn); |
| 157 | } |
| 158 | |
| 159 | void hci_conn_add_sysfs(struct hci_conn *conn) |
| 160 | { |
Marcel Holtmann | a67e899 | 2009-05-02 18:24:06 -0700 | [diff] [blame] | 161 | BT_DBG("conn %p", conn); |
| 162 | |
Marcel Holtmann | a67e899 | 2009-05-02 18:24:06 -0700 | [diff] [blame] | 163 | queue_work(bt_workq, &conn->work_add); |
| 164 | } |
| 165 | |
Marcel Holtmann | 90855d7 | 2008-08-18 13:23:53 +0200 | [diff] [blame] | 166 | void hci_conn_del_sysfs(struct hci_conn *conn) |
| 167 | { |
| 168 | BT_DBG("conn %p", conn); |
| 169 | |
Marcel Holtmann | a67e899 | 2009-05-02 18:24:06 -0700 | [diff] [blame] | 170 | queue_work(bt_workq, &conn->work_del); |
Marcel Holtmann | 90855d7 | 2008-08-18 13:23:53 +0200 | [diff] [blame] | 171 | } |
| 172 | |
Marcel Holtmann | c13854c | 2010-02-08 15:27:07 +0100 | [diff] [blame] | 173 | static inline char *host_bustostr(int bus) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 174 | { |
Marcel Holtmann | c13854c | 2010-02-08 15:27:07 +0100 | [diff] [blame] | 175 | switch (bus) { |
Marcel Holtmann | 0ac5393 | 2006-07-08 13:57:15 +0200 | [diff] [blame] | 176 | case HCI_VIRTUAL: |
Marcel Holtmann | 4d0eb00 | 2006-07-06 12:34:41 +0200 | [diff] [blame] | 177 | return "VIRTUAL"; |
| 178 | case HCI_USB: |
| 179 | return "USB"; |
| 180 | case HCI_PCCARD: |
| 181 | return "PCCARD"; |
| 182 | case HCI_UART: |
| 183 | return "UART"; |
| 184 | case HCI_RS232: |
| 185 | return "RS232"; |
| 186 | case HCI_PCI: |
| 187 | return "PCI"; |
Marcel Holtmann | 0ac5393 | 2006-07-08 13:57:15 +0200 | [diff] [blame] | 188 | case HCI_SDIO: |
| 189 | return "SDIO"; |
Marcel Holtmann | 4d0eb00 | 2006-07-06 12:34:41 +0200 | [diff] [blame] | 190 | default: |
| 191 | return "UNKNOWN"; |
| 192 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 193 | } |
| 194 | |
Marcel Holtmann | 943da25 | 2010-02-13 02:28:41 +0100 | [diff] [blame] | 195 | static inline char *host_typetostr(int type) |
| 196 | { |
| 197 | switch (type) { |
| 198 | case HCI_BREDR: |
| 199 | return "BR/EDR"; |
| 200 | case HCI_80211: |
| 201 | return "802.11"; |
| 202 | default: |
| 203 | return "UNKNOWN"; |
| 204 | } |
| 205 | } |
| 206 | |
Marcel Holtmann | c13854c | 2010-02-08 15:27:07 +0100 | [diff] [blame] | 207 | 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] | 208 | { |
Marcel Holtmann | a91f2e3 | 2006-07-03 10:02:41 +0200 | [diff] [blame] | 209 | struct hci_dev *hdev = dev_get_drvdata(dev); |
Marcel Holtmann | c13854c | 2010-02-08 15:27:07 +0100 | [diff] [blame] | 210 | return sprintf(buf, "%s\n", host_bustostr(hdev->bus)); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 211 | } |
| 212 | |
Marcel Holtmann | 943da25 | 2010-02-13 02:28:41 +0100 | [diff] [blame] | 213 | static ssize_t show_type(struct device *dev, struct device_attribute *attr, char *buf) |
| 214 | { |
| 215 | struct hci_dev *hdev = dev_get_drvdata(dev); |
| 216 | return sprintf(buf, "%s\n", host_typetostr(hdev->dev_type)); |
| 217 | } |
| 218 | |
Marcel Holtmann | a9de924 | 2007-10-20 13:33:56 +0200 | [diff] [blame] | 219 | static ssize_t show_name(struct device *dev, struct device_attribute *attr, char *buf) |
| 220 | { |
| 221 | struct hci_dev *hdev = dev_get_drvdata(dev); |
| 222 | char name[249]; |
| 223 | int i; |
| 224 | |
| 225 | for (i = 0; i < 248; i++) |
| 226 | name[i] = hdev->dev_name[i]; |
| 227 | |
| 228 | name[248] = '\0'; |
| 229 | return sprintf(buf, "%s\n", name); |
| 230 | } |
| 231 | |
| 232 | static ssize_t show_class(struct device *dev, struct device_attribute *attr, char *buf) |
| 233 | { |
| 234 | struct hci_dev *hdev = dev_get_drvdata(dev); |
| 235 | return sprintf(buf, "0x%.2x%.2x%.2x\n", |
| 236 | hdev->dev_class[2], hdev->dev_class[1], hdev->dev_class[0]); |
| 237 | } |
| 238 | |
Marcel Holtmann | a91f2e3 | 2006-07-03 10:02:41 +0200 | [diff] [blame] | 239 | 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] | 240 | { |
Marcel Holtmann | a91f2e3 | 2006-07-03 10:02:41 +0200 | [diff] [blame] | 241 | struct hci_dev *hdev = dev_get_drvdata(dev); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 242 | bdaddr_t bdaddr; |
| 243 | baswap(&bdaddr, &hdev->bdaddr); |
| 244 | return sprintf(buf, "%s\n", batostr(&bdaddr)); |
| 245 | } |
| 246 | |
Marcel Holtmann | a9de924 | 2007-10-20 13:33:56 +0200 | [diff] [blame] | 247 | static ssize_t show_features(struct device *dev, struct device_attribute *attr, char *buf) |
| 248 | { |
| 249 | struct hci_dev *hdev = dev_get_drvdata(dev); |
| 250 | |
| 251 | return sprintf(buf, "0x%02x%02x%02x%02x%02x%02x%02x%02x\n", |
| 252 | hdev->features[0], hdev->features[1], |
| 253 | hdev->features[2], hdev->features[3], |
| 254 | hdev->features[4], hdev->features[5], |
| 255 | hdev->features[6], hdev->features[7]); |
| 256 | } |
| 257 | |
Marcel Holtmann | 1143e5a | 2006-09-23 09:57:20 +0200 | [diff] [blame] | 258 | static ssize_t show_manufacturer(struct device *dev, struct device_attribute *attr, char *buf) |
| 259 | { |
| 260 | struct hci_dev *hdev = dev_get_drvdata(dev); |
| 261 | return sprintf(buf, "%d\n", hdev->manufacturer); |
| 262 | } |
| 263 | |
| 264 | static ssize_t show_hci_version(struct device *dev, struct device_attribute *attr, char *buf) |
| 265 | { |
| 266 | struct hci_dev *hdev = dev_get_drvdata(dev); |
| 267 | return sprintf(buf, "%d\n", hdev->hci_ver); |
| 268 | } |
| 269 | |
| 270 | static ssize_t show_hci_revision(struct device *dev, struct device_attribute *attr, char *buf) |
| 271 | { |
| 272 | struct hci_dev *hdev = dev_get_drvdata(dev); |
| 273 | return sprintf(buf, "%d\n", hdev->hci_rev); |
| 274 | } |
| 275 | |
Marcel Holtmann | a91f2e3 | 2006-07-03 10:02:41 +0200 | [diff] [blame] | 276 | 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] | 277 | { |
Marcel Holtmann | a91f2e3 | 2006-07-03 10:02:41 +0200 | [diff] [blame] | 278 | struct hci_dev *hdev = dev_get_drvdata(dev); |
Marcel Holtmann | 04837f6 | 2006-07-03 10:02:33 +0200 | [diff] [blame] | 279 | return sprintf(buf, "%d\n", hdev->idle_timeout); |
| 280 | } |
| 281 | |
Marcel Holtmann | a91f2e3 | 2006-07-03 10:02:41 +0200 | [diff] [blame] | 282 | 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] | 283 | { |
Marcel Holtmann | a91f2e3 | 2006-07-03 10:02:41 +0200 | [diff] [blame] | 284 | struct hci_dev *hdev = dev_get_drvdata(dev); |
Marcel Holtmann | 04837f6 | 2006-07-03 10:02:33 +0200 | [diff] [blame] | 285 | char *ptr; |
| 286 | __u32 val; |
| 287 | |
| 288 | val = simple_strtoul(buf, &ptr, 10); |
| 289 | if (ptr == buf) |
| 290 | return -EINVAL; |
| 291 | |
| 292 | if (val != 0 && (val < 500 || val > 3600000)) |
| 293 | return -EINVAL; |
| 294 | |
| 295 | hdev->idle_timeout = val; |
| 296 | |
| 297 | return count; |
| 298 | } |
| 299 | |
Marcel Holtmann | a91f2e3 | 2006-07-03 10:02:41 +0200 | [diff] [blame] | 300 | 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] | 301 | { |
Marcel Holtmann | a91f2e3 | 2006-07-03 10:02:41 +0200 | [diff] [blame] | 302 | struct hci_dev *hdev = dev_get_drvdata(dev); |
Marcel Holtmann | 04837f6 | 2006-07-03 10:02:33 +0200 | [diff] [blame] | 303 | return sprintf(buf, "%d\n", hdev->sniff_max_interval); |
| 304 | } |
| 305 | |
Marcel Holtmann | a91f2e3 | 2006-07-03 10:02:41 +0200 | [diff] [blame] | 306 | 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] | 307 | { |
Marcel Holtmann | a91f2e3 | 2006-07-03 10:02:41 +0200 | [diff] [blame] | 308 | struct hci_dev *hdev = dev_get_drvdata(dev); |
Marcel Holtmann | 04837f6 | 2006-07-03 10:02:33 +0200 | [diff] [blame] | 309 | char *ptr; |
| 310 | __u16 val; |
| 311 | |
| 312 | val = simple_strtoul(buf, &ptr, 10); |
| 313 | if (ptr == buf) |
| 314 | return -EINVAL; |
| 315 | |
| 316 | if (val < 0x0002 || val > 0xFFFE || val % 2) |
| 317 | return -EINVAL; |
| 318 | |
| 319 | if (val < hdev->sniff_min_interval) |
| 320 | return -EINVAL; |
| 321 | |
| 322 | hdev->sniff_max_interval = val; |
| 323 | |
| 324 | return count; |
| 325 | } |
| 326 | |
Marcel Holtmann | a91f2e3 | 2006-07-03 10:02:41 +0200 | [diff] [blame] | 327 | 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] | 328 | { |
Marcel Holtmann | a91f2e3 | 2006-07-03 10:02:41 +0200 | [diff] [blame] | 329 | struct hci_dev *hdev = dev_get_drvdata(dev); |
Marcel Holtmann | 04837f6 | 2006-07-03 10:02:33 +0200 | [diff] [blame] | 330 | return sprintf(buf, "%d\n", hdev->sniff_min_interval); |
| 331 | } |
| 332 | |
Marcel Holtmann | a91f2e3 | 2006-07-03 10:02:41 +0200 | [diff] [blame] | 333 | 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] | 334 | { |
Marcel Holtmann | a91f2e3 | 2006-07-03 10:02:41 +0200 | [diff] [blame] | 335 | struct hci_dev *hdev = dev_get_drvdata(dev); |
Marcel Holtmann | 04837f6 | 2006-07-03 10:02:33 +0200 | [diff] [blame] | 336 | char *ptr; |
| 337 | __u16 val; |
| 338 | |
| 339 | val = simple_strtoul(buf, &ptr, 10); |
| 340 | if (ptr == buf) |
| 341 | return -EINVAL; |
| 342 | |
| 343 | if (val < 0x0002 || val > 0xFFFE || val % 2) |
| 344 | return -EINVAL; |
| 345 | |
| 346 | if (val > hdev->sniff_max_interval) |
| 347 | return -EINVAL; |
| 348 | |
| 349 | hdev->sniff_min_interval = val; |
| 350 | |
| 351 | return count; |
| 352 | } |
| 353 | |
Marcel Holtmann | c13854c | 2010-02-08 15:27:07 +0100 | [diff] [blame] | 354 | static DEVICE_ATTR(bus, S_IRUGO, show_bus, NULL); |
Marcel Holtmann | 943da25 | 2010-02-13 02:28:41 +0100 | [diff] [blame] | 355 | static DEVICE_ATTR(type, S_IRUGO, show_type, NULL); |
Marcel Holtmann | a9de924 | 2007-10-20 13:33:56 +0200 | [diff] [blame] | 356 | static DEVICE_ATTR(name, S_IRUGO, show_name, NULL); |
| 357 | static DEVICE_ATTR(class, S_IRUGO, show_class, NULL); |
Marcel Holtmann | a91f2e3 | 2006-07-03 10:02:41 +0200 | [diff] [blame] | 358 | static DEVICE_ATTR(address, S_IRUGO, show_address, NULL); |
Marcel Holtmann | a9de924 | 2007-10-20 13:33:56 +0200 | [diff] [blame] | 359 | static DEVICE_ATTR(features, S_IRUGO, show_features, NULL); |
Marcel Holtmann | 1143e5a | 2006-09-23 09:57:20 +0200 | [diff] [blame] | 360 | static DEVICE_ATTR(manufacturer, S_IRUGO, show_manufacturer, NULL); |
| 361 | static DEVICE_ATTR(hci_version, S_IRUGO, show_hci_version, NULL); |
| 362 | static DEVICE_ATTR(hci_revision, S_IRUGO, show_hci_revision, NULL); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 363 | |
Marcel Holtmann | a91f2e3 | 2006-07-03 10:02:41 +0200 | [diff] [blame] | 364 | static DEVICE_ATTR(idle_timeout, S_IRUGO | S_IWUSR, |
Marcel Holtmann | 04837f6 | 2006-07-03 10:02:33 +0200 | [diff] [blame] | 365 | show_idle_timeout, store_idle_timeout); |
Marcel Holtmann | a91f2e3 | 2006-07-03 10:02:41 +0200 | [diff] [blame] | 366 | static DEVICE_ATTR(sniff_max_interval, S_IRUGO | S_IWUSR, |
Marcel Holtmann | 04837f6 | 2006-07-03 10:02:33 +0200 | [diff] [blame] | 367 | show_sniff_max_interval, store_sniff_max_interval); |
Marcel Holtmann | a91f2e3 | 2006-07-03 10:02:41 +0200 | [diff] [blame] | 368 | static DEVICE_ATTR(sniff_min_interval, S_IRUGO | S_IWUSR, |
Marcel Holtmann | 04837f6 | 2006-07-03 10:02:33 +0200 | [diff] [blame] | 369 | show_sniff_min_interval, store_sniff_min_interval); |
| 370 | |
Marcel Holtmann | 90855d7 | 2008-08-18 13:23:53 +0200 | [diff] [blame] | 371 | static struct attribute *bt_host_attrs[] = { |
Marcel Holtmann | c13854c | 2010-02-08 15:27:07 +0100 | [diff] [blame] | 372 | &dev_attr_bus.attr, |
Marcel Holtmann | 943da25 | 2010-02-13 02:28:41 +0100 | [diff] [blame] | 373 | &dev_attr_type.attr, |
Marcel Holtmann | 90855d7 | 2008-08-18 13:23:53 +0200 | [diff] [blame] | 374 | &dev_attr_name.attr, |
| 375 | &dev_attr_class.attr, |
| 376 | &dev_attr_address.attr, |
| 377 | &dev_attr_features.attr, |
| 378 | &dev_attr_manufacturer.attr, |
| 379 | &dev_attr_hci_version.attr, |
| 380 | &dev_attr_hci_revision.attr, |
Marcel Holtmann | 90855d7 | 2008-08-18 13:23:53 +0200 | [diff] [blame] | 381 | &dev_attr_idle_timeout.attr, |
| 382 | &dev_attr_sniff_max_interval.attr, |
| 383 | &dev_attr_sniff_min_interval.attr, |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 384 | NULL |
| 385 | }; |
| 386 | |
Marcel Holtmann | 90855d7 | 2008-08-18 13:23:53 +0200 | [diff] [blame] | 387 | static struct attribute_group bt_host_group = { |
| 388 | .attrs = bt_host_attrs, |
| 389 | }; |
Marcel Holtmann | b219e3a | 2006-07-06 12:38:46 +0200 | [diff] [blame] | 390 | |
David Brownell | a4dbd67 | 2009-06-24 10:06:31 -0700 | [diff] [blame] | 391 | static const struct attribute_group *bt_host_groups[] = { |
Marcel Holtmann | 90855d7 | 2008-08-18 13:23:53 +0200 | [diff] [blame] | 392 | &bt_host_group, |
Marcel Holtmann | b219e3a | 2006-07-06 12:38:46 +0200 | [diff] [blame] | 393 | NULL |
| 394 | }; |
| 395 | |
Marcel Holtmann | 90855d7 | 2008-08-18 13:23:53 +0200 | [diff] [blame] | 396 | static void bt_host_release(struct device *dev) |
Marcel Holtmann | a91f2e3 | 2006-07-03 10:02:41 +0200 | [diff] [blame] | 397 | { |
Marcel Holtmann | b219e3a | 2006-07-06 12:38:46 +0200 | [diff] [blame] | 398 | void *data = dev_get_drvdata(dev); |
| 399 | kfree(data); |
| 400 | } |
| 401 | |
Marcel Holtmann | 90855d7 | 2008-08-18 13:23:53 +0200 | [diff] [blame] | 402 | static struct device_type bt_host = { |
| 403 | .name = "host", |
| 404 | .groups = bt_host_groups, |
| 405 | .release = bt_host_release, |
| 406 | }; |
Marcel Holtmann | a91f2e3 | 2006-07-03 10:02:41 +0200 | [diff] [blame] | 407 | |
Marcel Holtmann | d4612cb | 2010-03-02 15:48:23 +0000 | [diff] [blame] | 408 | static int inquiry_cache_show(struct seq_file *f, void *p) |
Marcel Holtmann | ca325f6 | 2010-02-08 16:22:31 +0100 | [diff] [blame] | 409 | { |
Marcel Holtmann | d4612cb | 2010-03-02 15:48:23 +0000 | [diff] [blame] | 410 | struct hci_dev *hdev = f->private; |
Marcel Holtmann | ca325f6 | 2010-02-08 16:22:31 +0100 | [diff] [blame] | 411 | struct inquiry_cache *cache = &hdev->inq_cache; |
| 412 | struct inquiry_entry *e; |
Marcel Holtmann | ca325f6 | 2010-02-08 16:22:31 +0100 | [diff] [blame] | 413 | |
| 414 | hci_dev_lock_bh(hdev); |
| 415 | |
| 416 | for (e = cache->list; e; e = e->next) { |
| 417 | struct inquiry_data *data = &e->data; |
| 418 | bdaddr_t bdaddr; |
| 419 | baswap(&bdaddr, &data->bdaddr); |
Marcel Holtmann | d4612cb | 2010-03-02 15:48:23 +0000 | [diff] [blame] | 420 | seq_printf(f, "%s %d %d %d 0x%.2x%.2x%.2x 0x%.4x %d %d %u\n", |
| 421 | batostr(&bdaddr), |
| 422 | data->pscan_rep_mode, data->pscan_period_mode, |
| 423 | data->pscan_mode, data->dev_class[2], |
| 424 | data->dev_class[1], data->dev_class[0], |
| 425 | __le16_to_cpu(data->clock_offset), |
| 426 | data->rssi, data->ssp_mode, e->timestamp); |
Marcel Holtmann | ca325f6 | 2010-02-08 16:22:31 +0100 | [diff] [blame] | 427 | } |
| 428 | |
| 429 | hci_dev_unlock_bh(hdev); |
| 430 | |
Marcel Holtmann | d4612cb | 2010-03-02 15:48:23 +0000 | [diff] [blame] | 431 | return 0; |
| 432 | } |
| 433 | |
| 434 | static int inquiry_cache_open(struct inode *inode, struct file *file) |
| 435 | { |
| 436 | return single_open(file, inquiry_cache_show, inode->i_private); |
Marcel Holtmann | ca325f6 | 2010-02-08 16:22:31 +0100 | [diff] [blame] | 437 | } |
| 438 | |
| 439 | static const struct file_operations inquiry_cache_fops = { |
Marcel Holtmann | d4612cb | 2010-03-02 15:48:23 +0000 | [diff] [blame] | 440 | .open = inquiry_cache_open, |
| 441 | .read = seq_read, |
| 442 | .llseek = seq_lseek, |
| 443 | .release = single_release, |
Marcel Holtmann | ca325f6 | 2010-02-08 16:22:31 +0100 | [diff] [blame] | 444 | }; |
| 445 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 446 | int hci_register_sysfs(struct hci_dev *hdev) |
| 447 | { |
Marcel Holtmann | a91f2e3 | 2006-07-03 10:02:41 +0200 | [diff] [blame] | 448 | struct device *dev = &hdev->dev; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 449 | int err; |
| 450 | |
Marcel Holtmann | c13854c | 2010-02-08 15:27:07 +0100 | [diff] [blame] | 451 | BT_DBG("%p name %s bus %d", hdev, hdev->name, hdev->bus); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 452 | |
Marcel Holtmann | 90855d7 | 2008-08-18 13:23:53 +0200 | [diff] [blame] | 453 | dev->type = &bt_host; |
| 454 | dev->class = bt_class; |
Marcel Holtmann | e9c4bec | 2006-10-15 17:30:50 +0200 | [diff] [blame] | 455 | dev->parent = hdev->parent; |
Marcel Holtmann | 27d3528 | 2006-07-03 10:02:37 +0200 | [diff] [blame] | 456 | |
Marcel Holtmann | 2e79299 | 2008-11-30 12:17:29 +0100 | [diff] [blame] | 457 | dev_set_name(dev, "%s", hdev->name); |
Marcel Holtmann | 27d3528 | 2006-07-03 10:02:37 +0200 | [diff] [blame] | 458 | |
Marcel Holtmann | a91f2e3 | 2006-07-03 10:02:41 +0200 | [diff] [blame] | 459 | dev_set_drvdata(dev, hdev); |
| 460 | |
| 461 | err = device_register(dev); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 462 | if (err < 0) |
| 463 | return err; |
| 464 | |
Marcel Holtmann | ca325f6 | 2010-02-08 16:22:31 +0100 | [diff] [blame] | 465 | if (!bt_debugfs) |
| 466 | return 0; |
| 467 | |
| 468 | hdev->debugfs = debugfs_create_dir(hdev->name, bt_debugfs); |
| 469 | if (!hdev->debugfs) |
| 470 | return 0; |
| 471 | |
| 472 | debugfs_create_file("inquiry_cache", 0444, hdev->debugfs, |
| 473 | hdev, &inquiry_cache_fops); |
| 474 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 475 | return 0; |
| 476 | } |
| 477 | |
| 478 | void hci_unregister_sysfs(struct hci_dev *hdev) |
| 479 | { |
Marcel Holtmann | c13854c | 2010-02-08 15:27:07 +0100 | [diff] [blame] | 480 | BT_DBG("%p name %s bus %d", hdev, hdev->name, hdev->bus); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 481 | |
Marcel Holtmann | ca325f6 | 2010-02-08 16:22:31 +0100 | [diff] [blame] | 482 | debugfs_remove_recursive(hdev->debugfs); |
| 483 | |
Marcel Holtmann | 4d0eb00 | 2006-07-06 12:34:41 +0200 | [diff] [blame] | 484 | device_del(&hdev->dev); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 485 | } |
| 486 | |
| 487 | int __init bt_sysfs_init(void) |
| 488 | { |
Marcel Holtmann | a67e899 | 2009-05-02 18:24:06 -0700 | [diff] [blame] | 489 | bt_workq = create_singlethread_workqueue("bluetooth"); |
| 490 | if (!bt_workq) |
Marcel Holtmann | 90855d7 | 2008-08-18 13:23:53 +0200 | [diff] [blame] | 491 | return -ENOMEM; |
Dave Young | 5396c93 | 2008-01-31 18:33:10 -0800 | [diff] [blame] | 492 | |
Marcel Holtmann | ca325f6 | 2010-02-08 16:22:31 +0100 | [diff] [blame] | 493 | bt_debugfs = debugfs_create_dir("bluetooth", NULL); |
| 494 | |
Marcel Holtmann | a91f2e3 | 2006-07-03 10:02:41 +0200 | [diff] [blame] | 495 | bt_class = class_create(THIS_MODULE, "bluetooth"); |
| 496 | if (IS_ERR(bt_class)) { |
Marcel Holtmann | a67e899 | 2009-05-02 18:24:06 -0700 | [diff] [blame] | 497 | destroy_workqueue(bt_workq); |
Marcel Holtmann | 90855d7 | 2008-08-18 13:23:53 +0200 | [diff] [blame] | 498 | return PTR_ERR(bt_class); |
Marcel Holtmann | 27d3528 | 2006-07-03 10:02:37 +0200 | [diff] [blame] | 499 | } |
| 500 | |
| 501 | return 0; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 502 | } |
| 503 | |
Arnaud Patard | 860e13b | 2006-09-28 15:29:37 -0700 | [diff] [blame] | 504 | void bt_sysfs_cleanup(void) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 505 | { |
Marcel Holtmann | a91f2e3 | 2006-07-03 10:02:41 +0200 | [diff] [blame] | 506 | class_destroy(bt_class); |
Marcel Holtmann | ca325f6 | 2010-02-08 16:22:31 +0100 | [diff] [blame] | 507 | |
| 508 | debugfs_remove_recursive(bt_debugfs); |
| 509 | |
| 510 | destroy_workqueue(bt_workq); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 511 | } |