3 * Life cycle of devices
5 * Copyright (C) 2005-2006 Intel Corporation
6 * Inaky Perez-Gonzalez <inaky.perez-gonzalez@intel.com>
8 * This program is free software; you can redistribute it and/or
9 * modify it under the terms of the GNU General Public License version
10 * 2 as published by the Free Software Foundation.
12 * This program is distributed in the hope that it will be useful,
13 * but WITHOUT ANY WARRANTY; without even the implied warranty of
14 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
15 * GNU General Public License for more details.
17 * You should have received a copy of the GNU General Public License
18 * along with this program; if not, write to the Free Software
19 * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA
25 #include <linux/kernel.h>
26 #include <linux/slab.h>
27 #include <linux/device.h>
28 #include <linux/export.h>
29 #include <linux/err.h>
30 #include <linux/kdev_t.h>
31 #include <linux/random.h>
32 #include <linux/stat.h>
33 #include "uwb-internal.h"
35 /* We initialize addresses to 0xff (invalid, as it is bcast) */
36 static inline void uwb_dev_addr_init(struct uwb_dev_addr
*addr
)
38 memset(&addr
->data
, 0xff, sizeof(addr
->data
));
41 static inline void uwb_mac_addr_init(struct uwb_mac_addr
*addr
)
43 memset(&addr
->data
, 0xff, sizeof(addr
->data
));
47 * Add callback @new to be called when an event occurs in @rc.
49 int uwb_notifs_register(struct uwb_rc
*rc
, struct uwb_notifs_handler
*new)
51 if (mutex_lock_interruptible(&rc
->notifs_chain
.mutex
))
53 list_add(&new->list_node
, &rc
->notifs_chain
.list
);
54 mutex_unlock(&rc
->notifs_chain
.mutex
);
57 EXPORT_SYMBOL_GPL(uwb_notifs_register
);
60 * Remove event handler (callback)
62 int uwb_notifs_deregister(struct uwb_rc
*rc
, struct uwb_notifs_handler
*entry
)
64 if (mutex_lock_interruptible(&rc
->notifs_chain
.mutex
))
66 list_del(&entry
->list_node
);
67 mutex_unlock(&rc
->notifs_chain
.mutex
);
70 EXPORT_SYMBOL_GPL(uwb_notifs_deregister
);
73 * Notify all event handlers of a given event on @rc
75 * We are called with a valid reference to the device, or NULL if the
76 * event is not for a particular event (e.g., a BG join event).
78 void uwb_notify(struct uwb_rc
*rc
, struct uwb_dev
*uwb_dev
, enum uwb_notifs event
)
80 struct uwb_notifs_handler
*handler
;
81 if (mutex_lock_interruptible(&rc
->notifs_chain
.mutex
))
83 if (!list_empty(&rc
->notifs_chain
.list
)) {
84 list_for_each_entry(handler
, &rc
->notifs_chain
.list
, list_node
) {
85 handler
->cb(handler
->data
, uwb_dev
, event
);
88 mutex_unlock(&rc
->notifs_chain
.mutex
);
92 * Release the backing device of a uwb_dev that has been dynamically allocated.
94 static void uwb_dev_sys_release(struct device
*dev
)
96 struct uwb_dev
*uwb_dev
= to_uwb_dev(dev
);
98 uwb_bce_put(uwb_dev
->bce
);
99 memset(uwb_dev
, 0x69, sizeof(*uwb_dev
));
104 * Initialize a UWB device instance
106 * Alloc, zero and call this function.
108 void uwb_dev_init(struct uwb_dev
*uwb_dev
)
110 mutex_init(&uwb_dev
->mutex
);
111 device_initialize(&uwb_dev
->dev
);
112 uwb_dev
->dev
.release
= uwb_dev_sys_release
;
113 uwb_dev_addr_init(&uwb_dev
->dev_addr
);
114 uwb_mac_addr_init(&uwb_dev
->mac_addr
);
115 bitmap_fill(uwb_dev
->streams
, UWB_NUM_GLOBAL_STREAMS
);
118 static ssize_t
uwb_dev_EUI_48_show(struct device
*dev
,
119 struct device_attribute
*attr
, char *buf
)
121 struct uwb_dev
*uwb_dev
= to_uwb_dev(dev
);
122 char addr
[UWB_ADDR_STRSIZE
];
124 uwb_mac_addr_print(addr
, sizeof(addr
), &uwb_dev
->mac_addr
);
125 return sprintf(buf
, "%s\n", addr
);
127 static DEVICE_ATTR(EUI_48
, S_IRUGO
, uwb_dev_EUI_48_show
, NULL
);
129 static ssize_t
uwb_dev_DevAddr_show(struct device
*dev
,
130 struct device_attribute
*attr
, char *buf
)
132 struct uwb_dev
*uwb_dev
= to_uwb_dev(dev
);
133 char addr
[UWB_ADDR_STRSIZE
];
135 uwb_dev_addr_print(addr
, sizeof(addr
), &uwb_dev
->dev_addr
);
136 return sprintf(buf
, "%s\n", addr
);
138 static DEVICE_ATTR(DevAddr
, S_IRUGO
, uwb_dev_DevAddr_show
, NULL
);
141 * Show the BPST of this device.
143 * Calculated from the receive time of the device's beacon and it's
146 static ssize_t
uwb_dev_BPST_show(struct device
*dev
,
147 struct device_attribute
*attr
, char *buf
)
149 struct uwb_dev
*uwb_dev
= to_uwb_dev(dev
);
150 struct uwb_beca_e
*bce
;
151 struct uwb_beacon_frame
*bf
;
155 mutex_lock(&bce
->mutex
);
156 bf
= (struct uwb_beacon_frame
*)bce
->be
->BeaconInfo
;
157 bpst
= bce
->be
->wBPSTOffset
158 - (u16
)(bf
->Beacon_Slot_Number
* UWB_BEACON_SLOT_LENGTH_US
);
159 mutex_unlock(&bce
->mutex
);
161 return sprintf(buf
, "%d\n", bpst
);
163 static DEVICE_ATTR(BPST
, S_IRUGO
, uwb_dev_BPST_show
, NULL
);
166 * Show the IEs a device is beaconing
168 * We need to access the beacon cache, so we just lock it really
169 * quick, print the IEs and unlock.
171 * We have a reference on the cache entry, so that should be
174 static ssize_t
uwb_dev_IEs_show(struct device
*dev
,
175 struct device_attribute
*attr
, char *buf
)
177 struct uwb_dev
*uwb_dev
= to_uwb_dev(dev
);
179 return uwb_bce_print_IEs(uwb_dev
, uwb_dev
->bce
, buf
, PAGE_SIZE
);
181 static DEVICE_ATTR(IEs
, S_IRUGO
| S_IWUSR
, uwb_dev_IEs_show
, NULL
);
183 static ssize_t
uwb_dev_LQE_show(struct device
*dev
,
184 struct device_attribute
*attr
, char *buf
)
186 struct uwb_dev
*uwb_dev
= to_uwb_dev(dev
);
187 struct uwb_beca_e
*bce
= uwb_dev
->bce
;
190 mutex_lock(&bce
->mutex
);
191 result
= stats_show(&uwb_dev
->bce
->lqe_stats
, buf
);
192 mutex_unlock(&bce
->mutex
);
196 static ssize_t
uwb_dev_LQE_store(struct device
*dev
,
197 struct device_attribute
*attr
,
198 const char *buf
, size_t size
)
200 struct uwb_dev
*uwb_dev
= to_uwb_dev(dev
);
201 struct uwb_beca_e
*bce
= uwb_dev
->bce
;
204 mutex_lock(&bce
->mutex
);
205 result
= stats_store(&uwb_dev
->bce
->lqe_stats
, buf
, size
);
206 mutex_unlock(&bce
->mutex
);
209 static DEVICE_ATTR(LQE
, S_IRUGO
| S_IWUSR
, uwb_dev_LQE_show
, uwb_dev_LQE_store
);
211 static ssize_t
uwb_dev_RSSI_show(struct device
*dev
,
212 struct device_attribute
*attr
, char *buf
)
214 struct uwb_dev
*uwb_dev
= to_uwb_dev(dev
);
215 struct uwb_beca_e
*bce
= uwb_dev
->bce
;
218 mutex_lock(&bce
->mutex
);
219 result
= stats_show(&uwb_dev
->bce
->rssi_stats
, buf
);
220 mutex_unlock(&bce
->mutex
);
224 static ssize_t
uwb_dev_RSSI_store(struct device
*dev
,
225 struct device_attribute
*attr
,
226 const char *buf
, size_t size
)
228 struct uwb_dev
*uwb_dev
= to_uwb_dev(dev
);
229 struct uwb_beca_e
*bce
= uwb_dev
->bce
;
232 mutex_lock(&bce
->mutex
);
233 result
= stats_store(&uwb_dev
->bce
->rssi_stats
, buf
, size
);
234 mutex_unlock(&bce
->mutex
);
237 static DEVICE_ATTR(RSSI
, S_IRUGO
| S_IWUSR
, uwb_dev_RSSI_show
, uwb_dev_RSSI_store
);
240 static struct attribute
*uwb_dev_attrs
[] = {
241 &dev_attr_EUI_48
.attr
,
242 &dev_attr_DevAddr
.attr
,
249 ATTRIBUTE_GROUPS(uwb_dev
);
252 struct bus_type uwb_bus_type
= {
254 .dev_groups
= uwb_dev_groups
,
258 * Device SYSFS registration
260 static int __uwb_dev_sys_add(struct uwb_dev
*uwb_dev
, struct device
*parent_dev
)
265 dev
->parent
= parent_dev
;
266 dev_set_drvdata(dev
, uwb_dev
);
268 return device_add(dev
);
272 static void __uwb_dev_sys_rm(struct uwb_dev
*uwb_dev
)
274 dev_set_drvdata(&uwb_dev
->dev
, NULL
);
275 device_del(&uwb_dev
->dev
);
280 * Register and initialize a new UWB device
282 * Did you call uwb_dev_init() on it?
284 * @parent_rc: is the parent radio controller who has the link to the
285 * device. When registering the UWB device that is a UWB
286 * Radio Controller, we point back to it.
288 * If registering the device that is part of a radio, caller has set
289 * rc->uwb_dev->dev. Otherwise it is to be left NULL--a new one will
292 int uwb_dev_add(struct uwb_dev
*uwb_dev
, struct device
*parent_dev
,
293 struct uwb_rc
*parent_rc
)
298 BUG_ON(uwb_dev
== NULL
);
299 BUG_ON(parent_dev
== NULL
);
300 BUG_ON(parent_rc
== NULL
);
302 mutex_lock(&uwb_dev
->mutex
);
304 uwb_dev
->rc
= parent_rc
;
305 result
= __uwb_dev_sys_add(uwb_dev
, parent_dev
);
307 printk(KERN_ERR
"UWB: unable to register dev %s with sysfs: %d\n",
308 dev_name(dev
), result
);
309 mutex_unlock(&uwb_dev
->mutex
);
314 void uwb_dev_rm(struct uwb_dev
*uwb_dev
)
316 mutex_lock(&uwb_dev
->mutex
);
317 __uwb_dev_sys_rm(uwb_dev
);
318 mutex_unlock(&uwb_dev
->mutex
);
323 int __uwb_dev_try_get(struct device
*dev
, void *__target_uwb_dev
)
325 struct uwb_dev
*target_uwb_dev
= __target_uwb_dev
;
326 struct uwb_dev
*uwb_dev
= to_uwb_dev(dev
);
327 if (uwb_dev
== target_uwb_dev
) {
328 uwb_dev_get(uwb_dev
);
336 * Given a UWB device descriptor, validate and refcount it
338 * @returns NULL if the device does not exist or is quiescing; the ptr to
341 struct uwb_dev
*uwb_dev_try_get(struct uwb_rc
*rc
, struct uwb_dev
*uwb_dev
)
343 if (uwb_dev_for_each(rc
, __uwb_dev_try_get
, uwb_dev
))
348 EXPORT_SYMBOL_GPL(uwb_dev_try_get
);
352 * Remove a device from the system [grunt for other functions]
354 int __uwb_dev_offair(struct uwb_dev
*uwb_dev
, struct uwb_rc
*rc
)
356 struct device
*dev
= &uwb_dev
->dev
;
357 char macbuf
[UWB_ADDR_STRSIZE
], devbuf
[UWB_ADDR_STRSIZE
];
359 uwb_mac_addr_print(macbuf
, sizeof(macbuf
), &uwb_dev
->mac_addr
);
360 uwb_dev_addr_print(devbuf
, sizeof(devbuf
), &uwb_dev
->dev_addr
);
361 dev_info(dev
, "uwb device (mac %s dev %s) disconnected from %s %s\n",
363 uwb_dev
->dev
.bus
->name
,
364 rc
? dev_name(&(rc
->uwb_dev
.dev
)) : "");
366 list_del(&uwb_dev
->bce
->node
);
367 uwb_bce_put(uwb_dev
->bce
);
368 uwb_dev_put(uwb_dev
); /* for the creation in _onair() */
375 * A device went off the air, clean up after it!
377 * This is called by the UWB Daemon (through the beacon purge function
378 * uwb_bcn_cache_purge) when it is detected that a device has been in
379 * radio silence for a while.
381 * If this device is actually a local radio controller we don't need
382 * to go through the offair process, as it is not registered as that.
384 * NOTE: uwb_bcn_cache.mutex is held!
386 void uwbd_dev_offair(struct uwb_beca_e
*bce
)
388 struct uwb_dev
*uwb_dev
;
390 uwb_dev
= bce
->uwb_dev
;
392 uwb_notify(uwb_dev
->rc
, uwb_dev
, UWB_NOTIF_OFFAIR
);
393 __uwb_dev_offair(uwb_dev
, uwb_dev
->rc
);
399 * A device went on the air, start it up!
401 * This is called by the UWB Daemon when it is detected that a device
402 * has popped up in the radio range of the radio controller.
404 * It will just create the freaking device, register the beacon and
405 * stuff and yatla, done.
408 * NOTE: uwb_beca.mutex is held, bce->mutex is held
410 void uwbd_dev_onair(struct uwb_rc
*rc
, struct uwb_beca_e
*bce
)
413 struct device
*dev
= &rc
->uwb_dev
.dev
;
414 struct uwb_dev
*uwb_dev
;
415 char macbuf
[UWB_ADDR_STRSIZE
], devbuf
[UWB_ADDR_STRSIZE
];
417 uwb_mac_addr_print(macbuf
, sizeof(macbuf
), bce
->mac_addr
);
418 uwb_dev_addr_print(devbuf
, sizeof(devbuf
), &bce
->dev_addr
);
419 uwb_dev
= kzalloc(sizeof(struct uwb_dev
), GFP_KERNEL
);
420 if (uwb_dev
== NULL
) {
421 dev_err(dev
, "new device %s: Cannot allocate memory\n",
425 uwb_dev_init(uwb_dev
); /* This sets refcnt to one, we own it */
426 uwb_dev
->dev
.bus
= &uwb_bus_type
;
427 uwb_dev
->mac_addr
= *bce
->mac_addr
;
428 uwb_dev
->dev_addr
= bce
->dev_addr
;
429 dev_set_name(&uwb_dev
->dev
, "%s", macbuf
);
431 /* plug the beacon cache */
432 bce
->uwb_dev
= uwb_dev
;
434 uwb_bce_get(bce
); /* released in uwb_dev_sys_release() */
436 result
= uwb_dev_add(uwb_dev
, &rc
->uwb_dev
.dev
, rc
);
438 dev_err(dev
, "new device %s: cannot instantiate device\n",
443 dev_info(dev
, "uwb device (mac %s dev %s) connected to %s %s\n",
444 macbuf
, devbuf
, uwb_dev
->dev
.bus
->name
,
445 dev_name(&(rc
->uwb_dev
.dev
)));
446 uwb_notify(rc
, uwb_dev
, UWB_NOTIF_ONAIR
);
457 * Iterate over the list of UWB devices, calling a @function on each
459 * See docs for bus_for_each()....
461 * @rc: radio controller for the devices.
462 * @function: function to call.
463 * @priv: data to pass to @function.
464 * @returns: 0 if no invocation of function() returned a value
465 * different to zero. That value otherwise.
467 int uwb_dev_for_each(struct uwb_rc
*rc
, uwb_dev_for_each_f function
, void *priv
)
469 return device_for_each_child(&rc
->uwb_dev
.dev
, priv
, function
);
471 EXPORT_SYMBOL_GPL(uwb_dev_for_each
);