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
23 * FIXME: doc: overview of the API, different parts and pointers
26 #ifndef __LINUX__UWB_H__
27 #define __LINUX__UWB_H__
29 #include <linux/limits.h>
30 #include <linux/device.h>
31 #include <linux/mutex.h>
32 #include <linux/timer.h>
33 #include <linux/workqueue.h>
34 #include <linux/uwb/spec.h>
43 * struct uwb_dev - a UWB Device
44 * @rc: UWB Radio Controller that discovered the device (kind of its
46 * @bce: a beacon cache entry for this device; or NULL if the device
47 * is a local radio controller.
48 * @mac_addr: the EUI-48 address of this device.
49 * @dev_addr: the current DevAddr used by this device.
50 * @beacon_slot: the slot number the beacon is using.
51 * @streams: bitmap of streams allocated to reservations targeted at
52 * this device. For an RC, this is the streams allocated for
53 * reservations targeted at DevAddrs.
55 * A UWB device may either by a neighbor or part of a local radio
60 struct list_head list_node
;
62 struct uwb_rc
*rc
; /* radio controller */
63 struct uwb_beca_e
*bce
; /* Beacon Cache Entry */
65 struct uwb_mac_addr mac_addr
;
66 struct uwb_dev_addr dev_addr
;
68 DECLARE_BITMAP(streams
, UWB_NUM_STREAMS
);
70 #define to_uwb_dev(d) container_of(d, struct uwb_dev, dev)
73 * UWB HWA/WHCI Radio Control {Command|Event} Block context IDs
75 * RC[CE]Bs have a 'context ID' field that matches the command with
76 * the event received to confirm it.
78 * Maximum number of context IDs
80 enum { UWB_RC_CTX_MAX
= 256 };
83 /** Notification chain head for UWB generated events to listeners */
84 struct uwb_notifs_chain
{
85 struct list_head list
;
90 * struct uwb_mas_bm - a bitmap of all MAS in a superframe
91 * @bm: a bitmap of length #UWB_NUM_MAS
94 DECLARE_BITMAP(bm
, UWB_NUM_MAS
);
98 * uwb_rsv_state - UWB Reservation state.
100 * NONE - reservation is not active (no DRP IE being transmitted).
102 * Owner reservation states:
104 * INITIATED - owner has sent an initial DRP request.
105 * PENDING - target responded with pending Reason Code.
106 * MODIFIED - reservation manager is modifying an established
107 * reservation with a different MAS allocation.
108 * ESTABLISHED - the reservation has been successfully negotiated.
110 * Target reservation states:
112 * DENIED - request is denied.
113 * ACCEPTED - request is accepted.
114 * PENDING - PAL has yet to make a decision to whether to accept or
117 * FIXME: further target states TBD.
121 UWB_RSV_STATE_O_INITIATED
,
122 UWB_RSV_STATE_O_PENDING
,
123 UWB_RSV_STATE_O_MODIFIED
,
124 UWB_RSV_STATE_O_ESTABLISHED
,
125 UWB_RSV_STATE_T_ACCEPTED
,
126 UWB_RSV_STATE_T_DENIED
,
127 UWB_RSV_STATE_T_PENDING
,
132 enum uwb_rsv_target_type
{
134 UWB_RSV_TARGET_DEVADDR
,
138 * struct uwb_rsv_target - the target of a reservation.
140 * Reservations unicast and targeted at a single device
141 * (UWB_RSV_TARGET_DEV); or (e.g., in the case of WUSB) targeted at a
142 * specific (private) DevAddr (UWB_RSV_TARGET_DEVADDR).
144 struct uwb_rsv_target
{
145 enum uwb_rsv_target_type type
;
148 struct uwb_dev_addr devaddr
;
153 * Number of streams reserved for reservations targeted at DevAddrs.
155 #define UWB_NUM_GLOBAL_STREAMS 1
157 typedef void (*uwb_rsv_cb_f
)(struct uwb_rsv
*rsv
);
160 * struct uwb_rsv - a DRP reservation
162 * Data structure management:
164 * @rc: the radio controller this reservation is for
165 * (as target or owner)
166 * @rc_node: a list node for the RC
167 * @pal_node: a list node for the PAL
169 * Owner and target parameters:
171 * @owner: the UWB device owning this reservation
172 * @target: the target UWB device
173 * @type: reservation type
177 * @max_mas: maxiumum number of MAS
178 * @min_mas: minimum number of MAS
179 * @sparsity: owner selected sparsity
180 * @is_multicast: true iff multicast
182 * @callback: callback function when the reservation completes
183 * @pal_priv: private data for the PAL making the reservation
185 * Reservation status:
187 * @status: negotiation status
188 * @stream: stream index allocated for this reservation
190 * @drp_ie: the DRP IE
191 * @ie_valid: true iff the DRP IE matches the reservation parameters
193 * DRP reservations are uniquely identified by the owner, target and
194 * stream index. However, when using a DevAddr as a target (e.g., for
195 * a WUSB cluster reservation) the responses may be received from
196 * devices with different DevAddrs. In this case, reservations are
197 * uniquely identified by just the stream index. A number of stream
198 * indexes (UWB_NUM_GLOBAL_STREAMS) are reserved for this.
202 struct list_head rc_node
;
203 struct list_head pal_node
;
205 struct uwb_dev
*owner
;
206 struct uwb_rsv_target target
;
207 enum uwb_drp_type type
;
213 uwb_rsv_cb_f callback
;
216 enum uwb_rsv_state state
;
218 struct uwb_mas_bm mas
;
219 struct uwb_ie_drp
*drp_ie
;
221 struct timer_list timer
;
226 struct uwb_mas_bm uwb_mas_bm_zero
= { .bm
= { 0 } };
228 static inline void uwb_mas_bm_copy_le(void *dst
, const struct uwb_mas_bm
*mas
)
230 bitmap_copy_le(dst
, mas
->bm
, UWB_NUM_MAS
);
234 * struct uwb_drp_avail - a radio controller's view of MAS usage
235 * @global: MAS unused by neighbors (excluding reservations targetted
236 * or owned by the local radio controller) or the beaon period
237 * @local: MAS unused by local established reservations
238 * @pending: MAS unused by local pending reservations
239 * @ie: DRP Availability IE to be included in the beacon
240 * @ie_valid: true iff @ie is valid and does not need to regenerated from
243 * Each radio controller maintains a view of MAS usage or
244 * availability. MAS available for a new reservation are determined
245 * from the intersection of @global, @local, and @pending.
247 * The radio controller must transmit a DRP Availability IE that's the
248 * intersection of @global and @local.
250 * A set bit indicates the MAS is unused and available.
252 * rc->rsvs_mutex should be held before accessing this data structure.
254 * [ECMA-368] section 17.4.3.
256 struct uwb_drp_avail
{
257 DECLARE_BITMAP(global
, UWB_NUM_MAS
);
258 DECLARE_BITMAP(local
, UWB_NUM_MAS
);
259 DECLARE_BITMAP(pending
, UWB_NUM_MAS
);
260 struct uwb_ie_drp_avail ie
;
265 const char *uwb_rsv_state_str(enum uwb_rsv_state state
);
266 const char *uwb_rsv_type_str(enum uwb_drp_type type
);
268 struct uwb_rsv
*uwb_rsv_create(struct uwb_rc
*rc
, uwb_rsv_cb_f cb
,
270 void uwb_rsv_destroy(struct uwb_rsv
*rsv
);
272 int uwb_rsv_establish(struct uwb_rsv
*rsv
);
273 int uwb_rsv_modify(struct uwb_rsv
*rsv
,
274 int max_mas
, int min_mas
, int sparsity
);
275 void uwb_rsv_terminate(struct uwb_rsv
*rsv
);
277 void uwb_rsv_accept(struct uwb_rsv
*rsv
, uwb_rsv_cb_f cb
, void *pal_priv
);
280 * Radio Control Interface instance
283 * Life cycle rules: those of the UWB Device.
285 * @index: an index number for this radio controller, as used in the
287 * @version: version of protocol supported by this device
288 * @priv: Backend implementation; rw with uwb_dev.dev.sem taken.
289 * @cmd: Backend implementation to execute commands; rw and call
290 * only with uwb_dev.dev.sem taken.
291 * @reset: Hardware reset of radio controller and any PAL controllers.
292 * @filter: Backend implementation to manipulate data to and from device
293 * to be compliant to specification assumed by driver (WHCI
296 * uwb_dev.dev.mutex is used to execute commands and update
297 * the corresponding structures; can't use a spinlock
298 * because rc->cmd() can sleep.
299 * @ies: This is a dynamically allocated array cacheing the
300 * IEs (settable by the host) that the beacon of this
301 * radio controller is currently sending.
303 * In reality, we store here the full command we set to
304 * the radio controller (which is basically a command
305 * prefix followed by all the IEs the beacon currently
306 * contains). This way we don't have to realloc and
307 * memcpy when setting it.
309 * We set this up in uwb_rc_ie_setup(), where we alloc
310 * this struct, call get_ie() [so we know which IEs are
311 * currently being sent, if any].
313 * @ies_capacity:Amount of space (in bytes) allocated in @ies. The
314 * amount used is given by sizeof(*ies) plus ies->wIELength
315 * (which is a little endian quantity all the time).
316 * @ies_mutex: protect the IE cache
317 * @dbg: information for the debug interface
320 struct uwb_dev uwb_dev
;
324 struct module
*owner
;
326 int (*start
)(struct uwb_rc
*rc
);
327 void (*stop
)(struct uwb_rc
*rc
);
328 int (*cmd
)(struct uwb_rc
*, const struct uwb_rccb
*, size_t);
329 int (*reset
)(struct uwb_rc
*rc
);
330 int (*filter_cmd
)(struct uwb_rc
*, struct uwb_rccb
**, size_t *);
331 int (*filter_event
)(struct uwb_rc
*, struct uwb_rceb
**, const size_t,
334 spinlock_t neh_lock
; /* protects neh_* and ctx_* */
335 struct list_head neh_list
; /* Open NE handles */
336 unsigned long ctx_bm
[UWB_RC_CTX_MAX
/ 8 / sizeof(unsigned long)];
339 int beaconing
; /* Beaconing state [channel number] */
341 enum uwb_scan_type scan_type
:3;
343 struct uwb_notifs_chain notifs_chain
;
345 struct uwb_drp_avail drp_avail
;
346 struct list_head reservations
;
347 struct mutex rsvs_mutex
;
348 struct workqueue_struct
*rsv_workq
;
349 struct work_struct rsv_update_work
;
351 struct mutex ies_mutex
;
352 struct uwb_rc_cmd_set_ie
*ies
;
356 struct list_head pals
;
363 * struct uwb_pal - a UWB PAL
364 * @name: descriptive name for this PAL (wushc, wlp, etc.).
365 * @device: a device for the PAL. Used to link the PAL and the radio
366 * controller in sysfs.
367 * @new_rsv: called when a peer requests a reservation (may be NULL if
368 * the PAL cannot accept reservation requests).
370 * A Protocol Adaptation Layer (PAL) is a user of the WiMedia UWB
371 * radio platform (e.g., WUSB, WLP or Bluetooth UWB AMP).
373 * The PALs using a radio controller must register themselves to
374 * permit the UWB stack to coordinate usage of the radio between the
375 * various PALs or to allow PALs to response to certain requests from
378 * A struct uwb_pal should be embedded in a containing structure
379 * belonging to the PAL and initialized with uwb_pal_init()). Fields
380 * should be set appropriately by the PAL before registering the PAL
381 * with uwb_pal_register().
384 struct list_head node
;
386 struct device
*device
;
387 void (*new_rsv
)(struct uwb_rsv
*rsv
);
390 void uwb_pal_init(struct uwb_pal
*pal
);
391 int uwb_pal_register(struct uwb_rc
*rc
, struct uwb_pal
*pal
);
392 void uwb_pal_unregister(struct uwb_rc
*rc
, struct uwb_pal
*pal
);
397 * This API can be used by UWB device drivers or by those implementing
398 * UWB Radio Controllers
400 struct uwb_dev
*uwb_dev_get_by_devaddr(struct uwb_rc
*rc
,
401 const struct uwb_dev_addr
*devaddr
);
402 struct uwb_dev
*uwb_dev_get_by_rc(struct uwb_dev
*, struct uwb_rc
*);
403 static inline void uwb_dev_get(struct uwb_dev
*uwb_dev
)
405 get_device(&uwb_dev
->dev
);
407 static inline void uwb_dev_put(struct uwb_dev
*uwb_dev
)
409 put_device(&uwb_dev
->dev
);
411 struct uwb_dev
*uwb_dev_try_get(struct uwb_rc
*rc
, struct uwb_dev
*uwb_dev
);
414 * Callback function for 'uwb_{dev,rc}_foreach()'.
416 * @dev: Linux device instance
417 * 'uwb_dev = container_of(dev, struct uwb_dev, dev)'
418 * @priv: Data passed by the caller to 'uwb_{dev,rc}_foreach()'.
420 * @returns: 0 to continue the iterations, any other val to stop
421 * iterating and return the value to the caller of
424 typedef int (*uwb_dev_for_each_f
)(struct device
*dev
, void *priv
);
425 int uwb_dev_for_each(struct uwb_rc
*rc
, uwb_dev_for_each_f func
, void *priv
);
427 struct uwb_rc
*uwb_rc_alloc(void);
428 struct uwb_rc
*uwb_rc_get_by_dev(const struct uwb_dev_addr
*);
429 struct uwb_rc
*uwb_rc_get_by_grandpa(const struct device
*);
430 void uwb_rc_put(struct uwb_rc
*rc
);
432 typedef void (*uwb_rc_cmd_cb_f
)(struct uwb_rc
*rc
, void *arg
,
433 struct uwb_rceb
*reply
, ssize_t reply_size
);
435 int uwb_rc_cmd_async(struct uwb_rc
*rc
, const char *cmd_name
,
436 struct uwb_rccb
*cmd
, size_t cmd_size
,
437 u8 expected_type
, u16 expected_event
,
438 uwb_rc_cmd_cb_f cb
, void *arg
);
439 ssize_t
uwb_rc_cmd(struct uwb_rc
*rc
, const char *cmd_name
,
440 struct uwb_rccb
*cmd
, size_t cmd_size
,
441 struct uwb_rceb
*reply
, size_t reply_size
);
442 ssize_t
uwb_rc_vcmd(struct uwb_rc
*rc
, const char *cmd_name
,
443 struct uwb_rccb
*cmd
, size_t cmd_size
,
444 u8 expected_type
, u16 expected_event
,
445 struct uwb_rceb
**preply
);
446 ssize_t
uwb_rc_get_ie(struct uwb_rc
*, struct uwb_rc_evt_get_ie
**);
447 int uwb_bg_joined(struct uwb_rc
*rc
);
449 size_t __uwb_addr_print(char *, size_t, const unsigned char *, int);
451 int uwb_rc_dev_addr_set(struct uwb_rc
*, const struct uwb_dev_addr
*);
452 int uwb_rc_dev_addr_get(struct uwb_rc
*, struct uwb_dev_addr
*);
453 int uwb_rc_mac_addr_set(struct uwb_rc
*, const struct uwb_mac_addr
*);
454 int uwb_rc_mac_addr_get(struct uwb_rc
*, struct uwb_mac_addr
*);
455 int __uwb_mac_addr_assigned_check(struct device
*, void *);
456 int __uwb_dev_addr_assigned_check(struct device
*, void *);
458 /* Print in @buf a pretty repr of @addr */
459 static inline size_t uwb_dev_addr_print(char *buf
, size_t buf_size
,
460 const struct uwb_dev_addr
*addr
)
462 return __uwb_addr_print(buf
, buf_size
, addr
->data
, 0);
465 /* Print in @buf a pretty repr of @addr */
466 static inline size_t uwb_mac_addr_print(char *buf
, size_t buf_size
,
467 const struct uwb_mac_addr
*addr
)
469 return __uwb_addr_print(buf
, buf_size
, addr
->data
, 1);
472 /* @returns 0 if device addresses @addr2 and @addr1 are equal */
473 static inline int uwb_dev_addr_cmp(const struct uwb_dev_addr
*addr1
,
474 const struct uwb_dev_addr
*addr2
)
476 return memcmp(addr1
, addr2
, sizeof(*addr1
));
479 /* @returns 0 if MAC addresses @addr2 and @addr1 are equal */
480 static inline int uwb_mac_addr_cmp(const struct uwb_mac_addr
*addr1
,
481 const struct uwb_mac_addr
*addr2
)
483 return memcmp(addr1
, addr2
, sizeof(*addr1
));
486 /* @returns !0 if a MAC @addr is a broadcast address */
487 static inline int uwb_mac_addr_bcast(const struct uwb_mac_addr
*addr
)
489 struct uwb_mac_addr bcast
= {
490 .data
= { 0xff, 0xff, 0xff, 0xff, 0xff, 0xff }
492 return !uwb_mac_addr_cmp(addr
, &bcast
);
495 /* @returns !0 if a MAC @addr is all zeroes*/
496 static inline int uwb_mac_addr_unset(const struct uwb_mac_addr
*addr
)
498 struct uwb_mac_addr unset
= {
499 .data
= { 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 }
501 return !uwb_mac_addr_cmp(addr
, &unset
);
504 /* @returns !0 if the address is in use. */
505 static inline unsigned __uwb_dev_addr_assigned(struct uwb_rc
*rc
,
506 struct uwb_dev_addr
*addr
)
508 return uwb_dev_for_each(rc
, __uwb_dev_addr_assigned_check
, addr
);
512 * UWB Radio Controller API
514 * This API is used (in addition to the general API) to implement UWB
517 void uwb_rc_init(struct uwb_rc
*);
518 int uwb_rc_add(struct uwb_rc
*, struct device
*dev
, void *rc_priv
);
519 void uwb_rc_rm(struct uwb_rc
*);
520 void uwb_rc_neh_grok(struct uwb_rc
*, void *, size_t);
521 void uwb_rc_neh_error(struct uwb_rc
*, int);
522 void uwb_rc_reset_all(struct uwb_rc
*rc
);
525 * uwb_rsv_is_owner - is the owner of this reservation the RC?
526 * @rsv: the reservation
528 static inline bool uwb_rsv_is_owner(struct uwb_rsv
*rsv
)
530 return rsv
->owner
== &rsv
->rc
->uwb_dev
;
534 * Events generated by UWB that can be passed to any listeners
536 * Higher layers can register callback functions with the radio
537 * controller using uwb_notifs_register(). The radio controller
538 * maintains a list of all registered handlers and will notify all
539 * nodes when an event occurs.
542 UWB_NOTIF_BG_JOIN
= 0, /* radio controller joined a beacon group */
543 UWB_NOTIF_BG_LEAVE
= 1, /* radio controller left a beacon group */
548 /* Callback function registered with UWB */
549 struct uwb_notifs_handler
{
550 struct list_head list_node
;
551 void (*cb
)(void *, struct uwb_dev
*, enum uwb_notifs
);
555 int uwb_notifs_register(struct uwb_rc
*, struct uwb_notifs_handler
*);
556 int uwb_notifs_deregister(struct uwb_rc
*, struct uwb_notifs_handler
*);
560 * UWB radio controller Event Size Entry (for creating entry tables)
562 * WUSB and WHCI define events and notifications, and they might have
563 * fixed or variable size.
565 * Each event/notification has a size which is not necessarily known
566 * in advance based on the event code. As well, vendor specific
567 * events/notifications will have a size impossible to determine
568 * unless we know about the device's specific details.
570 * It was way too smart of the spec writers not to think that it would
571 * be impossible for a generic driver to skip over vendor specific
572 * events/notifications if there are no LENGTH fields in the HEADER of
573 * each message...the transaction size cannot be counted on as the
574 * spec does not forbid to pack more than one event in a single
577 * Thus, we guess sizes with tables (or for events, when you know the
578 * size ahead of time you can use uwb_rc_neh_extra_size*()). We
579 * register tables with the known events and their sizes, and then we
580 * traverse those tables. For those with variable length, we provide a
581 * way to lookup the size inside the event/notification's
582 * payload. This allows device-specific event size tables to be
585 * @size: Size of the payload
587 * @offset: if != 0, at offset @offset-1 starts a field with a length
588 * that has to be added to @size. The format of the field is
591 * @type: Type and length of the offset field. Most common is LE 16
592 * bits (that's why that is zero); others are there mostly to
593 * cover for bugs and weirdos.
595 struct uwb_est_entry
{
598 enum { UWB_EST_16
= 0, UWB_EST_8
= 1 } type
;
601 int uwb_est_register(u8 type
, u8 code_high
, u16 vendor
, u16 product
,
602 const struct uwb_est_entry
*, size_t entries
);
603 int uwb_est_unregister(u8 type
, u8 code_high
, u16 vendor
, u16 product
,
604 const struct uwb_est_entry
*, size_t entries
);
605 ssize_t
uwb_est_find_size(struct uwb_rc
*rc
, const struct uwb_rceb
*rceb
,
612 EDC_ERROR_TIMEFRAME
= HZ
,
615 /* error density counter */
617 unsigned long timestart
;
622 void edc_init(struct edc
*edc
)
624 edc
->timestart
= jiffies
;
627 /* Called when an error occured.
628 * This is way to determine if the number of acceptable errors per time
629 * period has been exceeded. It is not accurate as there are cases in which
630 * this scheme will not work, for example if there are periodic occurences
631 * of errors that straddle updates to the start time. This scheme is
632 * sufficient for our usage.
634 * @returns 1 if maximum acceptable errors per timeframe has been exceeded.
636 static inline int edc_inc(struct edc
*err_hist
, u16 max_err
, u16 timeframe
)
641 if (now
- err_hist
->timestart
> timeframe
) {
642 err_hist
->errorcount
= 1;
643 err_hist
->timestart
= now
;
644 } else if (++err_hist
->errorcount
> max_err
) {
645 err_hist
->errorcount
= 0;
646 err_hist
->timestart
= now
;
653 /* Information Element handling */
655 /* For representing the state of writing to a buffer when iterating */
661 typedef int (*uwb_ie_f
)(struct uwb_dev
*, const struct uwb_ie_hdr
*,
663 struct uwb_ie_hdr
*uwb_ie_next(void **ptr
, size_t *len
);
664 ssize_t
uwb_ie_for_each(struct uwb_dev
*uwb_dev
, uwb_ie_f fn
, void *data
,
665 const void *buf
, size_t size
);
666 int uwb_ie_dump_hex(struct uwb_dev
*, const struct uwb_ie_hdr
*,
668 int uwb_rc_set_ie(struct uwb_rc
*, struct uwb_rc_cmd_set_ie
*);
669 struct uwb_ie_hdr
*uwb_ie_next(void **ptr
, size_t *len
);
673 * Transmission statistics
675 * UWB uses LQI and RSSI (one byte values) for reporting radio signal
676 * strength and line quality indication. We do quick and dirty
677 * averages of those. They are signed values, btw.
679 * For 8 bit quantities, we keep the min, the max, an accumulator
680 * (@sigma) and a # of samples. When @samples gets to 255, we compute
681 * the average (@sigma / @samples), place it in @sigma and reset
682 * @samples to 1 (so we use it as the first sample).
684 * Now, statistically speaking, probably I am kicking the kidneys of
685 * some books I have in my shelves collecting dust, but I just want to
686 * get an approx, not the Nobel.
688 * LOCKING: there is no locking per se, but we try to keep a lockless
689 * schema. Only _add_samples() modifies the values--as long as you
690 * have other locking on top that makes sure that no two calls of
691 * _add_sample() happen at the same time, then we are fine. Now, for
692 * resetting the values we just set @samples to 0 and that makes the
693 * next _add_sample() to start with defaults. Reading the values in
694 * _show() currently can race, so you need to make sure the calls are
695 * under the same lock that protects calls to _add_sample(). FIXME:
696 * currently unlocked (It is not ultraprecise but does the trick. Bite
706 void stats_init(struct stats
*stats
)
708 atomic_set(&stats
->samples
, 0);
713 void stats_add_sample(struct stats
*stats
, s8 sample
)
717 unsigned samples
= atomic_read(&stats
->samples
);
718 if (samples
== 0) { /* it was zero before, so we initialize */
725 sigma
= stats
->sigma
;
728 if (sample
< min
) /* compute new values */
730 else if (sample
> max
)
734 stats
->min
= min
; /* commit */
736 stats
->sigma
= sigma
;
737 if (atomic_add_return(1, &stats
->samples
) > 255) {
738 /* wrapped around! reset */
739 stats
->sigma
= sigma
/ 256;
740 atomic_set(&stats
->samples
, 1);
744 static inline ssize_t
stats_show(struct stats
*stats
, char *buf
)
747 int samples
= atomic_read(&stats
->samples
);
753 avg
= stats
->sigma
/ samples
;
755 return scnprintf(buf
, PAGE_SIZE
, "%d %d %d\n", min
, max
, avg
);
758 static inline ssize_t
stats_store(struct stats
*stats
, const char *buf
,
765 #endif /* #ifndef __LINUX__UWB_H__ */