[PATCH] x86: implement always-locked bit ops, for memory shared with an SMP hypervisor
[linux-2.6/mini2440.git] / net / bluetooth / hci_sysfs.c
blob3987d167f04e73225ea98556bd1f583c899e9223
1 /* Bluetooth HCI driver model support. */
3 #include <linux/kernel.h>
4 #include <linux/init.h>
6 #include <linux/platform_device.h>
8 #include <net/bluetooth/bluetooth.h>
9 #include <net/bluetooth/hci_core.h>
11 #ifndef CONFIG_BT_HCI_CORE_DEBUG
12 #undef BT_DBG
13 #define BT_DBG(D...)
14 #endif
16 static ssize_t show_name(struct device *dev, struct device_attribute *attr, char *buf)
18 struct hci_dev *hdev = dev_get_drvdata(dev);
19 return sprintf(buf, "%s\n", hdev->name);
22 static ssize_t show_type(struct device *dev, struct device_attribute *attr, char *buf)
24 struct hci_dev *hdev = dev_get_drvdata(dev);
25 return sprintf(buf, "%d\n", hdev->type);
28 static ssize_t show_address(struct device *dev, struct device_attribute *attr, char *buf)
30 struct hci_dev *hdev = dev_get_drvdata(dev);
31 bdaddr_t bdaddr;
32 baswap(&bdaddr, &hdev->bdaddr);
33 return sprintf(buf, "%s\n", batostr(&bdaddr));
36 static ssize_t show_flags(struct device *dev, struct device_attribute *attr, char *buf)
38 struct hci_dev *hdev = dev_get_drvdata(dev);
39 return sprintf(buf, "0x%lx\n", hdev->flags);
42 static ssize_t show_inquiry_cache(struct device *dev, struct device_attribute *attr, char *buf)
44 struct hci_dev *hdev = dev_get_drvdata(dev);
45 struct inquiry_cache *cache = &hdev->inq_cache;
46 struct inquiry_entry *e;
47 int n = 0;
49 hci_dev_lock_bh(hdev);
51 for (e = cache->list; e; e = e->next) {
52 struct inquiry_data *data = &e->data;
53 bdaddr_t bdaddr;
54 baswap(&bdaddr, &data->bdaddr);
55 n += sprintf(buf + n, "%s %d %d %d 0x%.2x%.2x%.2x 0x%.4x %d %u\n",
56 batostr(&bdaddr),
57 data->pscan_rep_mode, data->pscan_period_mode, data->pscan_mode,
58 data->dev_class[2], data->dev_class[1], data->dev_class[0],
59 __le16_to_cpu(data->clock_offset), data->rssi, e->timestamp);
62 hci_dev_unlock_bh(hdev);
63 return n;
66 static ssize_t show_idle_timeout(struct device *dev, struct device_attribute *attr, char *buf)
68 struct hci_dev *hdev = dev_get_drvdata(dev);
69 return sprintf(buf, "%d\n", hdev->idle_timeout);
72 static ssize_t store_idle_timeout(struct device *dev, struct device_attribute *attr, const char *buf, size_t count)
74 struct hci_dev *hdev = dev_get_drvdata(dev);
75 char *ptr;
76 __u32 val;
78 val = simple_strtoul(buf, &ptr, 10);
79 if (ptr == buf)
80 return -EINVAL;
82 if (val != 0 && (val < 500 || val > 3600000))
83 return -EINVAL;
85 hdev->idle_timeout = val;
87 return count;
90 static ssize_t show_sniff_max_interval(struct device *dev, struct device_attribute *attr, char *buf)
92 struct hci_dev *hdev = dev_get_drvdata(dev);
93 return sprintf(buf, "%d\n", hdev->sniff_max_interval);
96 static ssize_t store_sniff_max_interval(struct device *dev, struct device_attribute *attr, const char *buf, size_t count)
98 struct hci_dev *hdev = dev_get_drvdata(dev);
99 char *ptr;
100 __u16 val;
102 val = simple_strtoul(buf, &ptr, 10);
103 if (ptr == buf)
104 return -EINVAL;
106 if (val < 0x0002 || val > 0xFFFE || val % 2)
107 return -EINVAL;
109 if (val < hdev->sniff_min_interval)
110 return -EINVAL;
112 hdev->sniff_max_interval = val;
114 return count;
117 static ssize_t show_sniff_min_interval(struct device *dev, struct device_attribute *attr, char *buf)
119 struct hci_dev *hdev = dev_get_drvdata(dev);
120 return sprintf(buf, "%d\n", hdev->sniff_min_interval);
123 static ssize_t store_sniff_min_interval(struct device *dev, struct device_attribute *attr, const char *buf, size_t count)
125 struct hci_dev *hdev = dev_get_drvdata(dev);
126 char *ptr;
127 __u16 val;
129 val = simple_strtoul(buf, &ptr, 10);
130 if (ptr == buf)
131 return -EINVAL;
133 if (val < 0x0002 || val > 0xFFFE || val % 2)
134 return -EINVAL;
136 if (val > hdev->sniff_max_interval)
137 return -EINVAL;
139 hdev->sniff_min_interval = val;
141 return count;
144 static DEVICE_ATTR(name, S_IRUGO, show_name, NULL);
145 static DEVICE_ATTR(type, S_IRUGO, show_type, NULL);
146 static DEVICE_ATTR(address, S_IRUGO, show_address, NULL);
147 static DEVICE_ATTR(flags, S_IRUGO, show_flags, NULL);
148 static DEVICE_ATTR(inquiry_cache, S_IRUGO, show_inquiry_cache, NULL);
150 static DEVICE_ATTR(idle_timeout, S_IRUGO | S_IWUSR,
151 show_idle_timeout, store_idle_timeout);
152 static DEVICE_ATTR(sniff_max_interval, S_IRUGO | S_IWUSR,
153 show_sniff_max_interval, store_sniff_max_interval);
154 static DEVICE_ATTR(sniff_min_interval, S_IRUGO | S_IWUSR,
155 show_sniff_min_interval, store_sniff_min_interval);
157 static struct device_attribute *bt_attrs[] = {
158 &dev_attr_name,
159 &dev_attr_type,
160 &dev_attr_address,
161 &dev_attr_flags,
162 &dev_attr_inquiry_cache,
163 &dev_attr_idle_timeout,
164 &dev_attr_sniff_max_interval,
165 &dev_attr_sniff_min_interval,
166 NULL
169 struct class *bt_class = NULL;
170 EXPORT_SYMBOL_GPL(bt_class);
172 static struct bus_type bt_bus = {
173 .name = "bluetooth",
176 static struct platform_device *bt_platform;
178 static void bt_release(struct device *dev)
180 struct hci_dev *hdev = dev_get_drvdata(dev);
181 kfree(hdev);
184 int hci_register_sysfs(struct hci_dev *hdev)
186 struct device *dev = &hdev->dev;
187 unsigned int i;
188 int err;
190 BT_DBG("%p name %s type %d", hdev, hdev->name, hdev->type);
192 dev->class = bt_class;
194 if (hdev->parent)
195 dev->parent = hdev->parent;
196 else
197 dev->parent = &bt_platform->dev;
199 strlcpy(dev->bus_id, hdev->name, BUS_ID_SIZE);
201 dev->release = bt_release;
203 dev_set_drvdata(dev, hdev);
205 err = device_register(dev);
206 if (err < 0)
207 return err;
209 for (i = 0; bt_attrs[i]; i++)
210 device_create_file(dev, bt_attrs[i]);
212 return 0;
215 void hci_unregister_sysfs(struct hci_dev *hdev)
217 struct device *dev = &hdev->dev;
219 BT_DBG("%p name %s type %d", hdev, hdev->name, hdev->type);
221 device_del(dev);
224 int __init bt_sysfs_init(void)
226 int err;
228 bt_platform = platform_device_register_simple("bluetooth", -1, NULL, 0);
229 if (IS_ERR(bt_platform))
230 return PTR_ERR(bt_platform);
232 err = bus_register(&bt_bus);
233 if (err < 0) {
234 platform_device_unregister(bt_platform);
235 return err;
238 bt_class = class_create(THIS_MODULE, "bluetooth");
239 if (IS_ERR(bt_class)) {
240 bus_unregister(&bt_bus);
241 platform_device_unregister(bt_platform);
242 return PTR_ERR(bt_class);
245 return 0;
248 void __exit bt_sysfs_cleanup(void)
250 class_destroy(bt_class);
252 bus_unregister(&bt_bus);
254 platform_device_unregister(bt_platform);