blob: 3ccb4b0b8fc200cd57738bd8fb349c05b51412f8 [file] [log] [blame]
Linus Torvalds1da177e2005-04-16 15:20:36 -07001/* Bluetooth HCI driver model support. */
2
Linus Torvalds1da177e2005-04-16 15:20:36 -07003#include <linux/kernel.h>
4#include <linux/init.h>
5
Marcel Holtmann27d35282006-07-03 10:02:37 +02006#include <linux/platform_device.h>
7
Linus Torvalds1da177e2005-04-16 15:20:36 -07008#include <net/bluetooth/bluetooth.h>
9#include <net/bluetooth/hci_core.h>
10
11#ifndef CONFIG_BT_HCI_CORE_DEBUG
12#undef BT_DBG
13#define BT_DBG(D...)
14#endif
15
Marcel Holtmann4d0eb002006-07-06 12:34:41 +020016static inline char *typetostr(int type)
Linus Torvalds1da177e2005-04-16 15:20:36 -070017{
Marcel Holtmann4d0eb002006-07-06 12:34:41 +020018 switch (type) {
19 case HCI_VHCI:
20 return "VIRTUAL";
21 case HCI_USB:
22 return "USB";
23 case HCI_PCCARD:
24 return "PCCARD";
25 case HCI_UART:
26 return "UART";
27 case HCI_RS232:
28 return "RS232";
29 case HCI_PCI:
30 return "PCI";
31 default:
32 return "UNKNOWN";
33 }
Linus Torvalds1da177e2005-04-16 15:20:36 -070034}
35
Marcel Holtmanna91f2e32006-07-03 10:02:41 +020036static ssize_t show_type(struct device *dev, struct device_attribute *attr, char *buf)
Linus Torvalds1da177e2005-04-16 15:20:36 -070037{
Marcel Holtmanna91f2e32006-07-03 10:02:41 +020038 struct hci_dev *hdev = dev_get_drvdata(dev);
Marcel Holtmann4d0eb002006-07-06 12:34:41 +020039 return sprintf(buf, "%s\n", typetostr(hdev->type));
Linus Torvalds1da177e2005-04-16 15:20:36 -070040}
41
Marcel Holtmanna91f2e32006-07-03 10:02:41 +020042static ssize_t show_address(struct device *dev, struct device_attribute *attr, char *buf)
Linus Torvalds1da177e2005-04-16 15:20:36 -070043{
Marcel Holtmanna91f2e32006-07-03 10:02:41 +020044 struct hci_dev *hdev = dev_get_drvdata(dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -070045 bdaddr_t bdaddr;
46 baswap(&bdaddr, &hdev->bdaddr);
47 return sprintf(buf, "%s\n", batostr(&bdaddr));
48}
49
Marcel Holtmanna91f2e32006-07-03 10:02:41 +020050static ssize_t show_inquiry_cache(struct device *dev, struct device_attribute *attr, char *buf)
Linus Torvalds1da177e2005-04-16 15:20:36 -070051{
Marcel Holtmanna91f2e32006-07-03 10:02:41 +020052 struct hci_dev *hdev = dev_get_drvdata(dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -070053 struct inquiry_cache *cache = &hdev->inq_cache;
54 struct inquiry_entry *e;
55 int n = 0;
56
57 hci_dev_lock_bh(hdev);
58
59 for (e = cache->list; e; e = e->next) {
60 struct inquiry_data *data = &e->data;
61 bdaddr_t bdaddr;
62 baswap(&bdaddr, &data->bdaddr);
63 n += sprintf(buf + n, "%s %d %d %d 0x%.2x%.2x%.2x 0x%.4x %d %u\n",
64 batostr(&bdaddr),
65 data->pscan_rep_mode, data->pscan_period_mode, data->pscan_mode,
66 data->dev_class[2], data->dev_class[1], data->dev_class[0],
67 __le16_to_cpu(data->clock_offset), data->rssi, e->timestamp);
68 }
69
70 hci_dev_unlock_bh(hdev);
71 return n;
72}
73
Marcel Holtmanna91f2e32006-07-03 10:02:41 +020074static ssize_t show_idle_timeout(struct device *dev, struct device_attribute *attr, char *buf)
Marcel Holtmann04837f62006-07-03 10:02:33 +020075{
Marcel Holtmanna91f2e32006-07-03 10:02:41 +020076 struct hci_dev *hdev = dev_get_drvdata(dev);
Marcel Holtmann04837f62006-07-03 10:02:33 +020077 return sprintf(buf, "%d\n", hdev->idle_timeout);
78}
79
Marcel Holtmanna91f2e32006-07-03 10:02:41 +020080static ssize_t store_idle_timeout(struct device *dev, struct device_attribute *attr, const char *buf, size_t count)
Marcel Holtmann04837f62006-07-03 10:02:33 +020081{
Marcel Holtmanna91f2e32006-07-03 10:02:41 +020082 struct hci_dev *hdev = dev_get_drvdata(dev);
Marcel Holtmann04837f62006-07-03 10:02:33 +020083 char *ptr;
84 __u32 val;
85
86 val = simple_strtoul(buf, &ptr, 10);
87 if (ptr == buf)
88 return -EINVAL;
89
90 if (val != 0 && (val < 500 || val > 3600000))
91 return -EINVAL;
92
93 hdev->idle_timeout = val;
94
95 return count;
96}
97
Marcel Holtmanna91f2e32006-07-03 10:02:41 +020098static ssize_t show_sniff_max_interval(struct device *dev, struct device_attribute *attr, char *buf)
Marcel Holtmann04837f62006-07-03 10:02:33 +020099{
Marcel Holtmanna91f2e32006-07-03 10:02:41 +0200100 struct hci_dev *hdev = dev_get_drvdata(dev);
Marcel Holtmann04837f62006-07-03 10:02:33 +0200101 return sprintf(buf, "%d\n", hdev->sniff_max_interval);
102}
103
Marcel Holtmanna91f2e32006-07-03 10:02:41 +0200104static ssize_t store_sniff_max_interval(struct device *dev, struct device_attribute *attr, const char *buf, size_t count)
Marcel Holtmann04837f62006-07-03 10:02:33 +0200105{
Marcel Holtmanna91f2e32006-07-03 10:02:41 +0200106 struct hci_dev *hdev = dev_get_drvdata(dev);
Marcel Holtmann04837f62006-07-03 10:02:33 +0200107 char *ptr;
108 __u16 val;
109
110 val = simple_strtoul(buf, &ptr, 10);
111 if (ptr == buf)
112 return -EINVAL;
113
114 if (val < 0x0002 || val > 0xFFFE || val % 2)
115 return -EINVAL;
116
117 if (val < hdev->sniff_min_interval)
118 return -EINVAL;
119
120 hdev->sniff_max_interval = val;
121
122 return count;
123}
124
Marcel Holtmanna91f2e32006-07-03 10:02:41 +0200125static ssize_t show_sniff_min_interval(struct device *dev, struct device_attribute *attr, char *buf)
Marcel Holtmann04837f62006-07-03 10:02:33 +0200126{
Marcel Holtmanna91f2e32006-07-03 10:02:41 +0200127 struct hci_dev *hdev = dev_get_drvdata(dev);
Marcel Holtmann04837f62006-07-03 10:02:33 +0200128 return sprintf(buf, "%d\n", hdev->sniff_min_interval);
129}
130
Marcel Holtmanna91f2e32006-07-03 10:02:41 +0200131static ssize_t store_sniff_min_interval(struct device *dev, struct device_attribute *attr, const char *buf, size_t count)
Marcel Holtmann04837f62006-07-03 10:02:33 +0200132{
Marcel Holtmanna91f2e32006-07-03 10:02:41 +0200133 struct hci_dev *hdev = dev_get_drvdata(dev);
Marcel Holtmann04837f62006-07-03 10:02:33 +0200134 char *ptr;
135 __u16 val;
136
137 val = simple_strtoul(buf, &ptr, 10);
138 if (ptr == buf)
139 return -EINVAL;
140
141 if (val < 0x0002 || val > 0xFFFE || val % 2)
142 return -EINVAL;
143
144 if (val > hdev->sniff_max_interval)
145 return -EINVAL;
146
147 hdev->sniff_min_interval = val;
148
149 return count;
150}
151
Marcel Holtmanna91f2e32006-07-03 10:02:41 +0200152static DEVICE_ATTR(type, S_IRUGO, show_type, NULL);
153static DEVICE_ATTR(address, S_IRUGO, show_address, NULL);
Marcel Holtmanna91f2e32006-07-03 10:02:41 +0200154static DEVICE_ATTR(inquiry_cache, S_IRUGO, show_inquiry_cache, NULL);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700155
Marcel Holtmanna91f2e32006-07-03 10:02:41 +0200156static DEVICE_ATTR(idle_timeout, S_IRUGO | S_IWUSR,
Marcel Holtmann04837f62006-07-03 10:02:33 +0200157 show_idle_timeout, store_idle_timeout);
Marcel Holtmanna91f2e32006-07-03 10:02:41 +0200158static DEVICE_ATTR(sniff_max_interval, S_IRUGO | S_IWUSR,
Marcel Holtmann04837f62006-07-03 10:02:33 +0200159 show_sniff_max_interval, store_sniff_max_interval);
Marcel Holtmanna91f2e32006-07-03 10:02:41 +0200160static DEVICE_ATTR(sniff_min_interval, S_IRUGO | S_IWUSR,
Marcel Holtmann04837f62006-07-03 10:02:33 +0200161 show_sniff_min_interval, store_sniff_min_interval);
162
Marcel Holtmanna91f2e32006-07-03 10:02:41 +0200163static struct device_attribute *bt_attrs[] = {
Marcel Holtmanna91f2e32006-07-03 10:02:41 +0200164 &dev_attr_type,
165 &dev_attr_address,
Marcel Holtmanna91f2e32006-07-03 10:02:41 +0200166 &dev_attr_inquiry_cache,
167 &dev_attr_idle_timeout,
168 &dev_attr_sniff_max_interval,
169 &dev_attr_sniff_min_interval,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700170 NULL
171};
172
Marcel Holtmanna91f2e32006-07-03 10:02:41 +0200173struct class *bt_class = NULL;
Marcel Holtmannbe9d1222005-11-08 09:57:38 -0800174EXPORT_SYMBOL_GPL(bt_class);
175
Marcel Holtmann27d35282006-07-03 10:02:37 +0200176static struct bus_type bt_bus = {
177 .name = "bluetooth",
178};
179
180static struct platform_device *bt_platform;
181
Marcel Holtmanna91f2e32006-07-03 10:02:41 +0200182static void bt_release(struct device *dev)
183{
184 struct hci_dev *hdev = dev_get_drvdata(dev);
185 kfree(hdev);
186}
187
Linus Torvalds1da177e2005-04-16 15:20:36 -0700188int hci_register_sysfs(struct hci_dev *hdev)
189{
Marcel Holtmanna91f2e32006-07-03 10:02:41 +0200190 struct device *dev = &hdev->dev;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700191 unsigned int i;
192 int err;
193
194 BT_DBG("%p name %s type %d", hdev, hdev->name, hdev->type);
195
Marcel Holtmanna91f2e32006-07-03 10:02:41 +0200196 dev->class = bt_class;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700197
Marcel Holtmanna91f2e32006-07-03 10:02:41 +0200198 if (hdev->parent)
199 dev->parent = hdev->parent;
200 else
201 dev->parent = &bt_platform->dev;
Marcel Holtmann27d35282006-07-03 10:02:37 +0200202
Marcel Holtmanna91f2e32006-07-03 10:02:41 +0200203 strlcpy(dev->bus_id, hdev->name, BUS_ID_SIZE);
Marcel Holtmann27d35282006-07-03 10:02:37 +0200204
Marcel Holtmanna91f2e32006-07-03 10:02:41 +0200205 dev->release = bt_release;
206
207 dev_set_drvdata(dev, hdev);
208
209 err = device_register(dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700210 if (err < 0)
211 return err;
212
213 for (i = 0; bt_attrs[i]; i++)
Marcel Holtmanna91f2e32006-07-03 10:02:41 +0200214 device_create_file(dev, bt_attrs[i]);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700215
216 return 0;
217}
218
219void hci_unregister_sysfs(struct hci_dev *hdev)
220{
Linus Torvalds1da177e2005-04-16 15:20:36 -0700221 BT_DBG("%p name %s type %d", hdev, hdev->name, hdev->type);
222
Marcel Holtmann4d0eb002006-07-06 12:34:41 +0200223 device_del(&hdev->dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700224}
225
226int __init bt_sysfs_init(void)
227{
Marcel Holtmann27d35282006-07-03 10:02:37 +0200228 int err;
229
230 bt_platform = platform_device_register_simple("bluetooth", -1, NULL, 0);
231 if (IS_ERR(bt_platform))
232 return PTR_ERR(bt_platform);
233
234 err = bus_register(&bt_bus);
235 if (err < 0) {
236 platform_device_unregister(bt_platform);
237 return err;
238 }
239
Marcel Holtmanna91f2e32006-07-03 10:02:41 +0200240 bt_class = class_create(THIS_MODULE, "bluetooth");
241 if (IS_ERR(bt_class)) {
Marcel Holtmann27d35282006-07-03 10:02:37 +0200242 bus_unregister(&bt_bus);
243 platform_device_unregister(bt_platform);
Marcel Holtmanna91f2e32006-07-03 10:02:41 +0200244 return PTR_ERR(bt_class);
Marcel Holtmann27d35282006-07-03 10:02:37 +0200245 }
246
247 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700248}
249
250void __exit bt_sysfs_cleanup(void)
251{
Marcel Holtmanna91f2e32006-07-03 10:02:41 +0200252 class_destroy(bt_class);
Marcel Holtmann27d35282006-07-03 10:02:37 +0200253
254 bus_unregister(&bt_bus);
255
256 platform_device_unregister(bt_platform);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700257}