aboutsummaryrefslogtreecommitdiffstats
path: root/net/bluetooth/hci_sysfs.c
diff options
context:
space:
mode:
authorMarcel Holtmann <marcel@holtmann.org>2006-07-06 06:38:46 -0400
committerDavid S. Miller <davem@sunset.davemloft.net>2006-09-28 21:01:25 -0400
commitb219e3ac66183fc9771b94af931fb5fd41d586ec (patch)
tree671a6a553c6744fce2eb35c6508249cbc616c326 /net/bluetooth/hci_sysfs.c
parent4d0eb0049ce94101f7f169f89216ba58475219e2 (diff)
[Bluetooth] Integrate low-level connections into the driver model
This patch integrates the low-level connections (ACL and SCO) into the driver model. Every connection is presented as device with the parent set to its host controller device. Signed-off-by: Marcel Holtmann <marcel@holtmann.org>
Diffstat (limited to 'net/bluetooth/hci_sysfs.c')
-rw-r--r--net/bluetooth/hci_sysfs.c79
1 files changed, 77 insertions, 2 deletions
diff --git a/net/bluetooth/hci_sysfs.c b/net/bluetooth/hci_sysfs.c
index 3ccb4b0b8fc2..58df4360d242 100644
--- a/net/bluetooth/hci_sysfs.c
+++ b/net/bluetooth/hci_sysfs.c
@@ -170,6 +170,32 @@ static struct device_attribute *bt_attrs[] = {
170 NULL 170 NULL
171}; 171};
172 172
173static ssize_t show_conn_type(struct device *dev, struct device_attribute *attr, char *buf)
174{
175 struct hci_conn *conn = dev_get_drvdata(dev);
176 return sprintf(buf, "%s\n", conn->type == ACL_LINK ? "ACL" : "SCO");
177}
178
179static ssize_t show_conn_address(struct device *dev, struct device_attribute *attr, char *buf)
180{
181 struct hci_conn *conn = dev_get_drvdata(dev);
182 bdaddr_t bdaddr;
183 baswap(&bdaddr, &conn->dst);
184 return sprintf(buf, "%s\n", batostr(&bdaddr));
185}
186
187#define CONN_ATTR(_name,_mode,_show,_store) \
188struct device_attribute conn_attr_##_name = __ATTR(_name,_mode,_show,_store)
189
190static CONN_ATTR(type, S_IRUGO, show_conn_type, NULL);
191static CONN_ATTR(address, S_IRUGO, show_conn_address, NULL);
192
193static struct device_attribute *conn_attrs[] = {
194 &conn_attr_type,
195 &conn_attr_address,
196 NULL
197};
198
173struct class *bt_class = NULL; 199struct class *bt_class = NULL;
174EXPORT_SYMBOL_GPL(bt_class); 200EXPORT_SYMBOL_GPL(bt_class);
175 201
@@ -181,8 +207,57 @@ static struct platform_device *bt_platform;
181 207
182static void bt_release(struct device *dev) 208static void bt_release(struct device *dev)
183{ 209{
184 struct hci_dev *hdev = dev_get_drvdata(dev); 210 void *data = dev_get_drvdata(dev);
185 kfree(hdev); 211 kfree(data);
212}
213
214static void add_conn(void *data)
215{
216 struct hci_conn *conn = data;
217 int i;
218
219 device_register(&conn->dev);
220
221 for (i = 0; conn_attrs[i]; i++)
222 device_create_file(&conn->dev, conn_attrs[i]);
223}
224
225void hci_conn_add_sysfs(struct hci_conn *conn)
226{
227 struct hci_dev *hdev = conn->hdev;
228 bdaddr_t *ba = &conn->dst;
229
230 BT_DBG("conn %p", conn);
231
232 conn->dev.parent = &hdev->dev;
233 conn->dev.release = bt_release;
234
235 snprintf(conn->dev.bus_id, BUS_ID_SIZE,
236 "%s%2.2X%2.2X%2.2X%2.2X%2.2X%2.2X",
237 conn->type == ACL_LINK ? "acl" : "sco",
238 ba->b[5], ba->b[4], ba->b[3],
239 ba->b[2], ba->b[1], ba->b[0]);
240
241 dev_set_drvdata(&conn->dev, conn);
242
243 INIT_WORK(&conn->work, add_conn, (void *) conn);
244
245 schedule_work(&conn->work);
246}
247
248static void del_conn(void *data)
249{
250 struct hci_conn *conn = data;
251 device_del(&conn->dev);
252}
253
254void hci_conn_del_sysfs(struct hci_conn *conn)
255{
256 BT_DBG("conn %p", conn);
257
258 INIT_WORK(&conn->work, del_conn, (void *) conn);
259
260 schedule_work(&conn->work);
186} 261}
187 262
188int hci_register_sysfs(struct hci_dev *hdev) 263int hci_register_sysfs(struct hci_dev *hdev)