blob: c5aa42f6bfd1faf27e55dd86aaf81826ff8a421e [file] [log] [blame]
Linus Torvalds1da177e2005-04-16 15:20:36 -07001/* Bluetooth HCI driver model support. */
2
Paul Gortmaker3a9a2312011-05-27 09:12:25 -04003#include <linux/module.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -07004
5#include <net/bluetooth/bluetooth.h>
6#include <net/bluetooth/hci_core.h>
7
Marcel Holtmannaef7d972010-03-21 05:27:45 +01008static struct class *bt_class;
Marcel Holtmann90855d72008-08-18 13:23:53 +02009
Marcel Holtmann90855d72008-08-18 13:23:53 +020010static 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 Hurley21061df2011-08-24 10:04:56 -040019 case LE_LINK:
20 return "LE";
Marcel Holtmann90855d72008-08-18 13:23:53 +020021 default:
22 return "UNKNOWN";
23 }
24}
25
Gustavo Padovanb80f0212012-05-17 00:36:23 -030026static ssize_t show_link_type(struct device *dev,
27 struct device_attribute *attr, char *buf)
Marcel Holtmann90855d72008-08-18 13:23:53 +020028{
David Herrmann3dc07322012-02-09 21:58:33 +010029 struct hci_conn *conn = to_hci_conn(dev);
Marcel Holtmann90855d72008-08-18 13:23:53 +020030 return sprintf(buf, "%s\n", link_typetostr(conn->type));
31}
32
Gustavo Padovanb80f0212012-05-17 00:36:23 -030033static ssize_t show_link_address(struct device *dev,
34 struct device_attribute *attr, char *buf)
Marcel Holtmann90855d72008-08-18 13:23:53 +020035{
David Herrmann3dc07322012-02-09 21:58:33 +010036 struct hci_conn *conn = to_hci_conn(dev);
Andrei Emeltchenkofcb73332012-09-25 12:49:44 +030037 return sprintf(buf, "%pMR\n", &conn->dst);
Marcel Holtmann90855d72008-08-18 13:23:53 +020038}
39
Gustavo F. Padovan602f9882011-02-17 19:22:19 -030040#define LINK_ATTR(_name, _mode, _show, _store) \
41struct device_attribute link_attr_##_name = __ATTR(_name, _mode, _show, _store)
Marcel Holtmann90855d72008-08-18 13:23:53 +020042
43static LINK_ATTR(type, S_IRUGO, show_link_type, NULL);
44static LINK_ATTR(address, S_IRUGO, show_link_address, NULL);
Marcel Holtmann90855d72008-08-18 13:23:53 +020045
46static struct attribute *bt_link_attrs[] = {
47 &link_attr_type.attr,
48 &link_attr_address.attr,
Marcel Holtmann90855d72008-08-18 13:23:53 +020049 NULL
50};
51
52static struct attribute_group bt_link_group = {
53 .attrs = bt_link_attrs,
54};
55
David Brownella4dbd672009-06-24 10:06:31 -070056static const struct attribute_group *bt_link_groups[] = {
Marcel Holtmann90855d72008-08-18 13:23:53 +020057 &bt_link_group,
58 NULL
59};
60
61static void bt_link_release(struct device *dev)
62{
David Herrmann2dd10682012-02-09 21:58:34 +010063 struct hci_conn *conn = to_hci_conn(dev);
64 kfree(conn);
Marcel Holtmann90855d72008-08-18 13:23:53 +020065}
66
67static struct device_type bt_link = {
68 .name = "link",
69 .groups = bt_link_groups,
70 .release = bt_link_release,
71};
72
Gustavo F. Padovan6d438e32011-12-17 18:53:02 -020073/*
74 * The rfcomm tty device will possibly retain even when conn
75 * is down, and sysfs doesn't support move zombie device,
76 * so we should move the device before conn device is destroyed.
77 */
78static int __match_tty(struct device *dev, void *data)
Marcel Holtmann90855d72008-08-18 13:23:53 +020079{
Gustavo F. Padovan6d438e32011-12-17 18:53:02 -020080 return !strncmp(dev_name(dev), "rfcomm", 6);
81}
82
83void hci_conn_init_sysfs(struct hci_conn *conn)
84{
Marcel Holtmann457ca7b2009-05-05 13:09:01 -070085 struct hci_dev *hdev = conn->hdev;
Marcel Holtmann90855d72008-08-18 13:23:53 +020086
Gustavo F. Padovan6d438e32011-12-17 18:53:02 -020087 BT_DBG("conn %p", conn);
88
89 conn->dev.type = &bt_link;
90 conn->dev.class = bt_class;
91 conn->dev.parent = &hdev->dev;
92
93 device_initialize(&conn->dev);
94}
95
96void hci_conn_add_sysfs(struct hci_conn *conn)
97{
98 struct hci_dev *hdev = conn->hdev;
99
100 BT_DBG("conn %p", conn);
101
Marcel Holtmann457ca7b2009-05-05 13:09:01 -0700102 dev_set_name(&conn->dev, "%s:%d", hdev->name, conn->handle);
103
Marcel Holtmann90855d72008-08-18 13:23:53 +0200104 if (device_add(&conn->dev) < 0) {
105 BT_ERR("Failed to register connection device");
106 return;
107 }
Marcel Holtmann384943e2009-05-08 18:20:43 -0700108
109 hci_dev_hold(hdev);
Marcel Holtmann90855d72008-08-18 13:23:53 +0200110}
111
Gustavo F. Padovan6d438e32011-12-17 18:53:02 -0200112void hci_conn_del_sysfs(struct hci_conn *conn)
Marcel Holtmann90855d72008-08-18 13:23:53 +0200113{
Marcel Holtmann90855d72008-08-18 13:23:53 +0200114 struct hci_dev *hdev = conn->hdev;
115
Marcel Holtmanna67e8992009-05-02 18:24:06 -0700116 if (!device_is_registered(&conn->dev))
117 return;
Roger Quadrosf3784d82009-04-23 14:50:54 +0300118
Marcel Holtmann90855d72008-08-18 13:23:53 +0200119 while (1) {
120 struct device *dev;
121
122 dev = device_find_child(&conn->dev, NULL, __match_tty);
123 if (!dev)
124 break;
Cornelia Huckffa6a702009-03-04 12:44:00 +0100125 device_move(dev, NULL, DPM_ORDER_DEV_LAST);
Marcel Holtmann90855d72008-08-18 13:23:53 +0200126 put_device(dev);
127 }
128
129 device_del(&conn->dev);
Marcel Holtmann384943e2009-05-08 18:20:43 -0700130
Marcel Holtmann90855d72008-08-18 13:23:53 +0200131 hci_dev_put(hdev);
132}
133
Marcel Holtmannc13854c2010-02-08 15:27:07 +0100134static inline char *host_bustostr(int bus)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700135{
Marcel Holtmannc13854c2010-02-08 15:27:07 +0100136 switch (bus) {
Marcel Holtmann0ac53932006-07-08 13:57:15 +0200137 case HCI_VIRTUAL:
Marcel Holtmann4d0eb002006-07-06 12:34:41 +0200138 return "VIRTUAL";
139 case HCI_USB:
140 return "USB";
141 case HCI_PCCARD:
142 return "PCCARD";
143 case HCI_UART:
144 return "UART";
145 case HCI_RS232:
146 return "RS232";
147 case HCI_PCI:
148 return "PCI";
Marcel Holtmann0ac53932006-07-08 13:57:15 +0200149 case HCI_SDIO:
150 return "SDIO";
Marcel Holtmann4d0eb002006-07-06 12:34:41 +0200151 default:
152 return "UNKNOWN";
153 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700154}
155
Marcel Holtmann943da252010-02-13 02:28:41 +0100156static inline char *host_typetostr(int type)
157{
158 switch (type) {
159 case HCI_BREDR:
160 return "BR/EDR";
David Vrabel8f1e1742010-08-09 17:38:10 -0400161 case HCI_AMP:
162 return "AMP";
Marcel Holtmann943da252010-02-13 02:28:41 +0100163 default:
164 return "UNKNOWN";
165 }
166}
167
Gustavo Padovanb80f0212012-05-17 00:36:23 -0300168static ssize_t show_bus(struct device *dev,
169 struct device_attribute *attr, char *buf)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700170{
David Herrmannaa2b86d2012-02-09 21:58:30 +0100171 struct hci_dev *hdev = to_hci_dev(dev);
Marcel Holtmannc13854c2010-02-08 15:27:07 +0100172 return sprintf(buf, "%s\n", host_bustostr(hdev->bus));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700173}
174
Gustavo Padovanb80f0212012-05-17 00:36:23 -0300175static ssize_t show_type(struct device *dev,
176 struct device_attribute *attr, char *buf)
Marcel Holtmann943da252010-02-13 02:28:41 +0100177{
David Herrmannaa2b86d2012-02-09 21:58:30 +0100178 struct hci_dev *hdev = to_hci_dev(dev);
Marcel Holtmann943da252010-02-13 02:28:41 +0100179 return sprintf(buf, "%s\n", host_typetostr(hdev->dev_type));
180}
181
Gustavo Padovanb80f0212012-05-17 00:36:23 -0300182static ssize_t show_name(struct device *dev,
183 struct device_attribute *attr, char *buf)
Marcel Holtmanna9de9242007-10-20 13:33:56 +0200184{
David Herrmannaa2b86d2012-02-09 21:58:30 +0100185 struct hci_dev *hdev = to_hci_dev(dev);
Johan Hedberg1f6c6372011-03-16 14:29:35 +0200186 char name[HCI_MAX_NAME_LENGTH + 1];
Marcel Holtmanna9de9242007-10-20 13:33:56 +0200187 int i;
188
Johan Hedberg1f6c6372011-03-16 14:29:35 +0200189 for (i = 0; i < HCI_MAX_NAME_LENGTH; i++)
Marcel Holtmanna9de9242007-10-20 13:33:56 +0200190 name[i] = hdev->dev_name[i];
191
Johan Hedberg1f6c6372011-03-16 14:29:35 +0200192 name[HCI_MAX_NAME_LENGTH] = '\0';
Marcel Holtmanna9de9242007-10-20 13:33:56 +0200193 return sprintf(buf, "%s\n", name);
194}
195
Gustavo Padovanb80f0212012-05-17 00:36:23 -0300196static ssize_t show_class(struct device *dev,
197 struct device_attribute *attr, char *buf)
Marcel Holtmanna9de9242007-10-20 13:33:56 +0200198{
David Herrmannaa2b86d2012-02-09 21:58:30 +0100199 struct hci_dev *hdev = to_hci_dev(dev);
Gustavo Padovan8fc9ced2012-05-23 04:04:21 -0300200 return sprintf(buf, "0x%.2x%.2x%.2x\n", hdev->dev_class[2],
201 hdev->dev_class[1], hdev->dev_class[0]);
Marcel Holtmanna9de9242007-10-20 13:33:56 +0200202}
203
Gustavo Padovanb80f0212012-05-17 00:36:23 -0300204static ssize_t show_address(struct device *dev,
205 struct device_attribute *attr, char *buf)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700206{
David Herrmannaa2b86d2012-02-09 21:58:30 +0100207 struct hci_dev *hdev = to_hci_dev(dev);
Andrei Emeltchenkofcb73332012-09-25 12:49:44 +0300208 return sprintf(buf, "%pMR\n", &hdev->bdaddr);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700209}
210
Gustavo Padovanb80f0212012-05-17 00:36:23 -0300211static ssize_t show_manufacturer(struct device *dev,
212 struct device_attribute *attr, char *buf)
Marcel Holtmann1143e5a2006-09-23 09:57:20 +0200213{
David Herrmannaa2b86d2012-02-09 21:58:30 +0100214 struct hci_dev *hdev = to_hci_dev(dev);
Marcel Holtmann1143e5a2006-09-23 09:57:20 +0200215 return sprintf(buf, "%d\n", hdev->manufacturer);
216}
217
Gustavo Padovanb80f0212012-05-17 00:36:23 -0300218static ssize_t show_hci_version(struct device *dev,
219 struct device_attribute *attr, char *buf)
Marcel Holtmann1143e5a2006-09-23 09:57:20 +0200220{
David Herrmannaa2b86d2012-02-09 21:58:30 +0100221 struct hci_dev *hdev = to_hci_dev(dev);
Marcel Holtmann1143e5a2006-09-23 09:57:20 +0200222 return sprintf(buf, "%d\n", hdev->hci_ver);
223}
224
Gustavo Padovanb80f0212012-05-17 00:36:23 -0300225static ssize_t show_hci_revision(struct device *dev,
226 struct device_attribute *attr, char *buf)
Marcel Holtmann1143e5a2006-09-23 09:57:20 +0200227{
David Herrmannaa2b86d2012-02-09 21:58:30 +0100228 struct hci_dev *hdev = to_hci_dev(dev);
Marcel Holtmann1143e5a2006-09-23 09:57:20 +0200229 return sprintf(buf, "%d\n", hdev->hci_rev);
230}
231
Marcel Holtmannc13854c2010-02-08 15:27:07 +0100232static DEVICE_ATTR(bus, S_IRUGO, show_bus, NULL);
Marcel Holtmann943da252010-02-13 02:28:41 +0100233static DEVICE_ATTR(type, S_IRUGO, show_type, NULL);
Marcel Holtmanna9de9242007-10-20 13:33:56 +0200234static DEVICE_ATTR(name, S_IRUGO, show_name, NULL);
235static DEVICE_ATTR(class, S_IRUGO, show_class, NULL);
Marcel Holtmanna91f2e32006-07-03 10:02:41 +0200236static DEVICE_ATTR(address, S_IRUGO, show_address, NULL);
Marcel Holtmann1143e5a2006-09-23 09:57:20 +0200237static DEVICE_ATTR(manufacturer, S_IRUGO, show_manufacturer, NULL);
238static DEVICE_ATTR(hci_version, S_IRUGO, show_hci_version, NULL);
239static DEVICE_ATTR(hci_revision, S_IRUGO, show_hci_revision, NULL);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700240
Marcel Holtmann90855d72008-08-18 13:23:53 +0200241static struct attribute *bt_host_attrs[] = {
Marcel Holtmannc13854c2010-02-08 15:27:07 +0100242 &dev_attr_bus.attr,
Marcel Holtmann943da252010-02-13 02:28:41 +0100243 &dev_attr_type.attr,
Marcel Holtmann90855d72008-08-18 13:23:53 +0200244 &dev_attr_name.attr,
245 &dev_attr_class.attr,
246 &dev_attr_address.attr,
Marcel Holtmann90855d72008-08-18 13:23:53 +0200247 &dev_attr_manufacturer.attr,
248 &dev_attr_hci_version.attr,
249 &dev_attr_hci_revision.attr,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700250 NULL
251};
252
Marcel Holtmann90855d72008-08-18 13:23:53 +0200253static struct attribute_group bt_host_group = {
254 .attrs = bt_host_attrs,
255};
Marcel Holtmannb219e3a2006-07-06 12:38:46 +0200256
David Brownella4dbd672009-06-24 10:06:31 -0700257static const struct attribute_group *bt_host_groups[] = {
Marcel Holtmann90855d72008-08-18 13:23:53 +0200258 &bt_host_group,
Marcel Holtmannb219e3a2006-07-06 12:38:46 +0200259 NULL
260};
261
Marcel Holtmann90855d72008-08-18 13:23:53 +0200262static void bt_host_release(struct device *dev)
Marcel Holtmanna91f2e32006-07-03 10:02:41 +0200263{
David Herrmann2dd10682012-02-09 21:58:34 +0100264 struct hci_dev *hdev = to_hci_dev(dev);
265 kfree(hdev);
David Herrmann46e06532012-01-07 15:47:21 +0100266 module_put(THIS_MODULE);
Marcel Holtmannb219e3a2006-07-06 12:38:46 +0200267}
268
Marcel Holtmann90855d72008-08-18 13:23:53 +0200269static struct device_type bt_host = {
270 .name = "host",
271 .groups = bt_host_groups,
272 .release = bt_host_release,
273};
Marcel Holtmanna91f2e32006-07-03 10:02:41 +0200274
David Herrmann0ac7e702011-10-08 14:58:47 +0200275void hci_init_sysfs(struct hci_dev *hdev)
276{
277 struct device *dev = &hdev->dev;
278
279 dev->type = &bt_host;
280 dev->class = bt_class;
281
David Herrmann46e06532012-01-07 15:47:21 +0100282 __module_get(THIS_MODULE);
David Herrmann0ac7e702011-10-08 14:58:47 +0200283 device_initialize(dev);
284}
285
Linus Torvalds1da177e2005-04-16 15:20:36 -0700286int __init bt_sysfs_init(void)
287{
Marcel Holtmanna91f2e32006-07-03 10:02:41 +0200288 bt_class = class_create(THIS_MODULE, "bluetooth");
Marcel Holtmann27d35282006-07-03 10:02:37 +0200289
Rusty Russell8c6ffba2013-07-15 11:20:32 +0930290 return PTR_ERR_OR_ZERO(bt_class);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700291}
292
Arnaud Patard860e13b2006-09-28 15:29:37 -0700293void bt_sysfs_cleanup(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700294{
Marcel Holtmanna91f2e32006-07-03 10:02:41 +0200295 class_destroy(bt_class);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700296}