2 * UWB reservation management.
4 * Copyright (C) 2008 Cambridge Silicon Radio Ltd.
6 * This program is free software; you can redistribute it and/or
7 * modify it under the terms of the GNU General Public License version
8 * 2 as published by the Free Software Foundation.
10 * This program is distributed in the hope that it will be useful,
11 * but WITHOUT ANY WARRANTY; without even the implied warranty of
12 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
13 * GNU General Public License for more details.
15 * You should have received a copy of the GNU General Public License
16 * along with this program. If not, see <http://www.gnu.org/licenses/>.
18 #include <linux/kernel.h>
19 #include <linux/uwb.h>
20 #include <linux/slab.h>
21 #include <linux/random.h>
22 #include <linux/export.h>
24 #include "uwb-internal.h"
26 static void uwb_rsv_timer(unsigned long arg
);
28 static const char *rsv_states
[] = {
29 [UWB_RSV_STATE_NONE
] = "none ",
30 [UWB_RSV_STATE_O_INITIATED
] = "o initiated ",
31 [UWB_RSV_STATE_O_PENDING
] = "o pending ",
32 [UWB_RSV_STATE_O_MODIFIED
] = "o modified ",
33 [UWB_RSV_STATE_O_ESTABLISHED
] = "o established ",
34 [UWB_RSV_STATE_O_TO_BE_MOVED
] = "o to be moved ",
35 [UWB_RSV_STATE_O_MOVE_EXPANDING
] = "o move expanding",
36 [UWB_RSV_STATE_O_MOVE_COMBINING
] = "o move combining",
37 [UWB_RSV_STATE_O_MOVE_REDUCING
] = "o move reducing ",
38 [UWB_RSV_STATE_T_ACCEPTED
] = "t accepted ",
39 [UWB_RSV_STATE_T_CONFLICT
] = "t conflict ",
40 [UWB_RSV_STATE_T_PENDING
] = "t pending ",
41 [UWB_RSV_STATE_T_DENIED
] = "t denied ",
42 [UWB_RSV_STATE_T_RESIZED
] = "t resized ",
43 [UWB_RSV_STATE_T_EXPANDING_ACCEPTED
] = "t expanding acc ",
44 [UWB_RSV_STATE_T_EXPANDING_CONFLICT
] = "t expanding conf",
45 [UWB_RSV_STATE_T_EXPANDING_PENDING
] = "t expanding pend",
46 [UWB_RSV_STATE_T_EXPANDING_DENIED
] = "t expanding den ",
49 static const char *rsv_types
[] = {
50 [UWB_DRP_TYPE_ALIEN_BP
] = "alien-bp",
51 [UWB_DRP_TYPE_HARD
] = "hard",
52 [UWB_DRP_TYPE_SOFT
] = "soft",
53 [UWB_DRP_TYPE_PRIVATE
] = "private",
54 [UWB_DRP_TYPE_PCA
] = "pca",
57 bool uwb_rsv_has_two_drp_ies(struct uwb_rsv
*rsv
)
59 static const bool has_two_drp_ies
[] = {
60 [UWB_RSV_STATE_O_INITIATED
] = false,
61 [UWB_RSV_STATE_O_PENDING
] = false,
62 [UWB_RSV_STATE_O_MODIFIED
] = false,
63 [UWB_RSV_STATE_O_ESTABLISHED
] = false,
64 [UWB_RSV_STATE_O_TO_BE_MOVED
] = false,
65 [UWB_RSV_STATE_O_MOVE_COMBINING
] = false,
66 [UWB_RSV_STATE_O_MOVE_REDUCING
] = false,
67 [UWB_RSV_STATE_O_MOVE_EXPANDING
] = true,
68 [UWB_RSV_STATE_T_ACCEPTED
] = false,
69 [UWB_RSV_STATE_T_CONFLICT
] = false,
70 [UWB_RSV_STATE_T_PENDING
] = false,
71 [UWB_RSV_STATE_T_DENIED
] = false,
72 [UWB_RSV_STATE_T_RESIZED
] = false,
73 [UWB_RSV_STATE_T_EXPANDING_ACCEPTED
] = true,
74 [UWB_RSV_STATE_T_EXPANDING_CONFLICT
] = true,
75 [UWB_RSV_STATE_T_EXPANDING_PENDING
] = true,
76 [UWB_RSV_STATE_T_EXPANDING_DENIED
] = true,
79 return has_two_drp_ies
[rsv
->state
];
83 * uwb_rsv_state_str - return a string for a reservation state
84 * @state: the reservation state.
86 const char *uwb_rsv_state_str(enum uwb_rsv_state state
)
88 if (state
< UWB_RSV_STATE_NONE
|| state
>= UWB_RSV_STATE_LAST
)
90 return rsv_states
[state
];
92 EXPORT_SYMBOL_GPL(uwb_rsv_state_str
);
95 * uwb_rsv_type_str - return a string for a reservation type
96 * @type: the reservation type
98 const char *uwb_rsv_type_str(enum uwb_drp_type type
)
100 if (type
< UWB_DRP_TYPE_ALIEN_BP
|| type
> UWB_DRP_TYPE_PCA
)
102 return rsv_types
[type
];
104 EXPORT_SYMBOL_GPL(uwb_rsv_type_str
);
106 void uwb_rsv_dump(char *text
, struct uwb_rsv
*rsv
)
108 struct device
*dev
= &rsv
->rc
->uwb_dev
.dev
;
109 struct uwb_dev_addr devaddr
;
110 char owner
[UWB_ADDR_STRSIZE
], target
[UWB_ADDR_STRSIZE
];
112 uwb_dev_addr_print(owner
, sizeof(owner
), &rsv
->owner
->dev_addr
);
113 if (rsv
->target
.type
== UWB_RSV_TARGET_DEV
)
114 devaddr
= rsv
->target
.dev
->dev_addr
;
116 devaddr
= rsv
->target
.devaddr
;
117 uwb_dev_addr_print(target
, sizeof(target
), &devaddr
);
119 dev_dbg(dev
, "rsv %s %s -> %s: %s\n",
120 text
, owner
, target
, uwb_rsv_state_str(rsv
->state
));
123 static void uwb_rsv_release(struct kref
*kref
)
125 struct uwb_rsv
*rsv
= container_of(kref
, struct uwb_rsv
, kref
);
130 void uwb_rsv_get(struct uwb_rsv
*rsv
)
132 kref_get(&rsv
->kref
);
135 void uwb_rsv_put(struct uwb_rsv
*rsv
)
137 kref_put(&rsv
->kref
, uwb_rsv_release
);
141 * Get a free stream index for a reservation.
143 * If the target is a DevAddr (e.g., a WUSB cluster reservation) then
144 * the stream is allocated from a pool of per-RC stream indexes,
145 * otherwise a unique stream index for the target is selected.
147 static int uwb_rsv_get_stream(struct uwb_rsv
*rsv
)
149 struct uwb_rc
*rc
= rsv
->rc
;
150 struct device
*dev
= &rc
->uwb_dev
.dev
;
151 unsigned long *streams_bm
;
154 switch (rsv
->target
.type
) {
155 case UWB_RSV_TARGET_DEV
:
156 streams_bm
= rsv
->target
.dev
->streams
;
158 case UWB_RSV_TARGET_DEVADDR
:
159 streams_bm
= rc
->uwb_dev
.streams
;
165 stream
= find_first_zero_bit(streams_bm
, UWB_NUM_STREAMS
);
166 if (stream
>= UWB_NUM_STREAMS
)
169 rsv
->stream
= stream
;
170 set_bit(stream
, streams_bm
);
172 dev_dbg(dev
, "get stream %d\n", rsv
->stream
);
177 static void uwb_rsv_put_stream(struct uwb_rsv
*rsv
)
179 struct uwb_rc
*rc
= rsv
->rc
;
180 struct device
*dev
= &rc
->uwb_dev
.dev
;
181 unsigned long *streams_bm
;
183 switch (rsv
->target
.type
) {
184 case UWB_RSV_TARGET_DEV
:
185 streams_bm
= rsv
->target
.dev
->streams
;
187 case UWB_RSV_TARGET_DEVADDR
:
188 streams_bm
= rc
->uwb_dev
.streams
;
194 clear_bit(rsv
->stream
, streams_bm
);
196 dev_dbg(dev
, "put stream %d\n", rsv
->stream
);
199 void uwb_rsv_backoff_win_timer(unsigned long arg
)
201 struct uwb_drp_backoff_win
*bow
= (struct uwb_drp_backoff_win
*)arg
;
202 struct uwb_rc
*rc
= container_of(bow
, struct uwb_rc
, bow
);
203 struct device
*dev
= &rc
->uwb_dev
.dev
;
205 bow
->can_reserve_extra_mases
= true;
206 if (bow
->total_expired
<= 4) {
207 bow
->total_expired
++;
209 /* after 4 backoff window has expired we can exit from
210 * the backoff procedure */
211 bow
->total_expired
= 0;
212 bow
->window
= UWB_DRP_BACKOFF_WIN_MIN
>> 1;
214 dev_dbg(dev
, "backoff_win_timer total_expired=%d, n=%d\n: ", bow
->total_expired
, bow
->n
);
216 /* try to relocate all the "to be moved" relocations */
217 uwb_rsv_handle_drp_avail_change(rc
);
220 void uwb_rsv_backoff_win_increment(struct uwb_rc
*rc
)
222 struct uwb_drp_backoff_win
*bow
= &rc
->bow
;
223 struct device
*dev
= &rc
->uwb_dev
.dev
;
226 dev_dbg(dev
, "backoff_win_increment: window=%d\n", bow
->window
);
228 bow
->can_reserve_extra_mases
= false;
230 if((bow
->window
<< 1) == UWB_DRP_BACKOFF_WIN_MAX
)
234 bow
->n
= random32() & (bow
->window
- 1);
235 dev_dbg(dev
, "new_window=%d, n=%d\n: ", bow
->window
, bow
->n
);
237 /* reset the timer associated variables */
238 timeout_us
= bow
->n
* UWB_SUPERFRAME_LENGTH_US
;
239 bow
->total_expired
= 0;
240 mod_timer(&bow
->timer
, jiffies
+ usecs_to_jiffies(timeout_us
));
243 static void uwb_rsv_stroke_timer(struct uwb_rsv
*rsv
)
245 int sframes
= UWB_MAX_LOST_BEACONS
;
248 * Multicast reservations can become established within 1
249 * super frame and should not be terminated if no response is
252 if (rsv
->is_multicast
) {
253 if (rsv
->state
== UWB_RSV_STATE_O_INITIATED
254 || rsv
->state
== UWB_RSV_STATE_O_MOVE_EXPANDING
255 || rsv
->state
== UWB_RSV_STATE_O_MOVE_COMBINING
256 || rsv
->state
== UWB_RSV_STATE_O_MOVE_REDUCING
)
258 if (rsv
->state
== UWB_RSV_STATE_O_ESTABLISHED
)
265 * Add an additional 2 superframes to account for the
266 * time to send the SET DRP IE command.
268 unsigned timeout_us
= (sframes
+ 2) * UWB_SUPERFRAME_LENGTH_US
;
269 mod_timer(&rsv
->timer
, jiffies
+ usecs_to_jiffies(timeout_us
));
271 del_timer(&rsv
->timer
);
275 * Update a reservations state, and schedule an update of the
276 * transmitted DRP IEs.
278 static void uwb_rsv_state_update(struct uwb_rsv
*rsv
,
279 enum uwb_rsv_state new_state
)
281 rsv
->state
= new_state
;
282 rsv
->ie_valid
= false;
284 uwb_rsv_dump("SU", rsv
);
286 uwb_rsv_stroke_timer(rsv
);
287 uwb_rsv_sched_update(rsv
->rc
);
290 static void uwb_rsv_callback(struct uwb_rsv
*rsv
)
296 void uwb_rsv_set_state(struct uwb_rsv
*rsv
, enum uwb_rsv_state new_state
)
298 struct uwb_rsv_move
*mv
= &rsv
->mv
;
300 if (rsv
->state
== new_state
) {
301 switch (rsv
->state
) {
302 case UWB_RSV_STATE_O_ESTABLISHED
:
303 case UWB_RSV_STATE_O_MOVE_EXPANDING
:
304 case UWB_RSV_STATE_O_MOVE_COMBINING
:
305 case UWB_RSV_STATE_O_MOVE_REDUCING
:
306 case UWB_RSV_STATE_T_ACCEPTED
:
307 case UWB_RSV_STATE_T_EXPANDING_ACCEPTED
:
308 case UWB_RSV_STATE_T_RESIZED
:
309 case UWB_RSV_STATE_NONE
:
310 uwb_rsv_stroke_timer(rsv
);
313 /* Expecting a state transition so leave timer
320 uwb_rsv_dump("SC", rsv
);
323 case UWB_RSV_STATE_NONE
:
324 uwb_rsv_state_update(rsv
, UWB_RSV_STATE_NONE
);
325 uwb_rsv_callback(rsv
);
327 case UWB_RSV_STATE_O_INITIATED
:
328 uwb_rsv_state_update(rsv
, UWB_RSV_STATE_O_INITIATED
);
330 case UWB_RSV_STATE_O_PENDING
:
331 uwb_rsv_state_update(rsv
, UWB_RSV_STATE_O_PENDING
);
333 case UWB_RSV_STATE_O_MODIFIED
:
334 /* in the companion there are the MASes to drop */
335 bitmap_andnot(rsv
->mas
.bm
, rsv
->mas
.bm
, mv
->companion_mas
.bm
, UWB_NUM_MAS
);
336 uwb_rsv_state_update(rsv
, UWB_RSV_STATE_O_MODIFIED
);
338 case UWB_RSV_STATE_O_ESTABLISHED
:
339 if (rsv
->state
== UWB_RSV_STATE_O_MODIFIED
340 || rsv
->state
== UWB_RSV_STATE_O_MOVE_REDUCING
) {
341 uwb_drp_avail_release(rsv
->rc
, &mv
->companion_mas
);
342 rsv
->needs_release_companion_mas
= false;
344 uwb_drp_avail_reserve(rsv
->rc
, &rsv
->mas
);
345 uwb_rsv_state_update(rsv
, UWB_RSV_STATE_O_ESTABLISHED
);
346 uwb_rsv_callback(rsv
);
348 case UWB_RSV_STATE_O_MOVE_EXPANDING
:
349 rsv
->needs_release_companion_mas
= true;
350 uwb_rsv_state_update(rsv
, UWB_RSV_STATE_O_MOVE_EXPANDING
);
352 case UWB_RSV_STATE_O_MOVE_COMBINING
:
353 rsv
->needs_release_companion_mas
= false;
354 uwb_drp_avail_reserve(rsv
->rc
, &mv
->companion_mas
);
355 bitmap_or(rsv
->mas
.bm
, rsv
->mas
.bm
, mv
->companion_mas
.bm
, UWB_NUM_MAS
);
356 rsv
->mas
.safe
+= mv
->companion_mas
.safe
;
357 rsv
->mas
.unsafe
+= mv
->companion_mas
.unsafe
;
358 uwb_rsv_state_update(rsv
, UWB_RSV_STATE_O_MOVE_COMBINING
);
360 case UWB_RSV_STATE_O_MOVE_REDUCING
:
361 bitmap_andnot(mv
->companion_mas
.bm
, rsv
->mas
.bm
, mv
->final_mas
.bm
, UWB_NUM_MAS
);
362 rsv
->needs_release_companion_mas
= true;
363 rsv
->mas
.safe
= mv
->final_mas
.safe
;
364 rsv
->mas
.unsafe
= mv
->final_mas
.unsafe
;
365 bitmap_copy(rsv
->mas
.bm
, mv
->final_mas
.bm
, UWB_NUM_MAS
);
366 bitmap_copy(rsv
->mas
.unsafe_bm
, mv
->final_mas
.unsafe_bm
, UWB_NUM_MAS
);
367 uwb_rsv_state_update(rsv
, UWB_RSV_STATE_O_MOVE_REDUCING
);
369 case UWB_RSV_STATE_T_ACCEPTED
:
370 case UWB_RSV_STATE_T_RESIZED
:
371 rsv
->needs_release_companion_mas
= false;
372 uwb_drp_avail_reserve(rsv
->rc
, &rsv
->mas
);
373 uwb_rsv_state_update(rsv
, UWB_RSV_STATE_T_ACCEPTED
);
374 uwb_rsv_callback(rsv
);
376 case UWB_RSV_STATE_T_DENIED
:
377 uwb_rsv_state_update(rsv
, UWB_RSV_STATE_T_DENIED
);
379 case UWB_RSV_STATE_T_CONFLICT
:
380 uwb_rsv_state_update(rsv
, UWB_RSV_STATE_T_CONFLICT
);
382 case UWB_RSV_STATE_T_PENDING
:
383 uwb_rsv_state_update(rsv
, UWB_RSV_STATE_T_PENDING
);
385 case UWB_RSV_STATE_T_EXPANDING_ACCEPTED
:
386 rsv
->needs_release_companion_mas
= true;
387 uwb_drp_avail_reserve(rsv
->rc
, &mv
->companion_mas
);
388 uwb_rsv_state_update(rsv
, UWB_RSV_STATE_T_EXPANDING_ACCEPTED
);
391 dev_err(&rsv
->rc
->uwb_dev
.dev
, "unhandled state: %s (%d)\n",
392 uwb_rsv_state_str(new_state
), new_state
);
396 static void uwb_rsv_handle_timeout_work(struct work_struct
*work
)
398 struct uwb_rsv
*rsv
= container_of(work
, struct uwb_rsv
,
399 handle_timeout_work
);
400 struct uwb_rc
*rc
= rsv
->rc
;
402 mutex_lock(&rc
->rsvs_mutex
);
404 uwb_rsv_dump("TO", rsv
);
406 switch (rsv
->state
) {
407 case UWB_RSV_STATE_O_INITIATED
:
408 if (rsv
->is_multicast
) {
409 uwb_rsv_set_state(rsv
, UWB_RSV_STATE_O_ESTABLISHED
);
413 case UWB_RSV_STATE_O_MOVE_EXPANDING
:
414 if (rsv
->is_multicast
) {
415 uwb_rsv_set_state(rsv
, UWB_RSV_STATE_O_MOVE_COMBINING
);
419 case UWB_RSV_STATE_O_MOVE_COMBINING
:
420 if (rsv
->is_multicast
) {
421 uwb_rsv_set_state(rsv
, UWB_RSV_STATE_O_MOVE_REDUCING
);
425 case UWB_RSV_STATE_O_MOVE_REDUCING
:
426 if (rsv
->is_multicast
) {
427 uwb_rsv_set_state(rsv
, UWB_RSV_STATE_O_ESTABLISHED
);
431 case UWB_RSV_STATE_O_ESTABLISHED
:
432 if (rsv
->is_multicast
)
435 case UWB_RSV_STATE_T_EXPANDING_ACCEPTED
:
437 * The time out could be for the main or of the
438 * companion DRP, assume it's for the companion and
439 * drop that first. A further time out is required to
442 uwb_rsv_set_state(rsv
, UWB_RSV_STATE_T_ACCEPTED
);
443 uwb_drp_avail_release(rsv
->rc
, &rsv
->mv
.companion_mas
);
452 mutex_unlock(&rc
->rsvs_mutex
);
455 static struct uwb_rsv
*uwb_rsv_alloc(struct uwb_rc
*rc
)
459 rsv
= kzalloc(sizeof(struct uwb_rsv
), GFP_KERNEL
);
463 INIT_LIST_HEAD(&rsv
->rc_node
);
464 INIT_LIST_HEAD(&rsv
->pal_node
);
465 kref_init(&rsv
->kref
);
466 init_timer(&rsv
->timer
);
467 rsv
->timer
.function
= uwb_rsv_timer
;
468 rsv
->timer
.data
= (unsigned long)rsv
;
471 INIT_WORK(&rsv
->handle_timeout_work
, uwb_rsv_handle_timeout_work
);
477 * uwb_rsv_create - allocate and initialize a UWB reservation structure
478 * @rc: the radio controller
479 * @cb: callback to use when the reservation completes or terminates
480 * @pal_priv: data private to the PAL to be passed in the callback
482 * The callback is called when the state of the reservation changes from:
484 * - pending to accepted
485 * - pending to denined
486 * - accepted to terminated
487 * - pending to terminated
489 struct uwb_rsv
*uwb_rsv_create(struct uwb_rc
*rc
, uwb_rsv_cb_f cb
, void *pal_priv
)
493 rsv
= uwb_rsv_alloc(rc
);
498 rsv
->pal_priv
= pal_priv
;
502 EXPORT_SYMBOL_GPL(uwb_rsv_create
);
504 void uwb_rsv_remove(struct uwb_rsv
*rsv
)
506 uwb_rsv_dump("RM", rsv
);
508 if (rsv
->state
!= UWB_RSV_STATE_NONE
)
509 uwb_rsv_set_state(rsv
, UWB_RSV_STATE_NONE
);
511 if (rsv
->needs_release_companion_mas
)
512 uwb_drp_avail_release(rsv
->rc
, &rsv
->mv
.companion_mas
);
513 uwb_drp_avail_release(rsv
->rc
, &rsv
->mas
);
515 if (uwb_rsv_is_owner(rsv
))
516 uwb_rsv_put_stream(rsv
);
518 uwb_dev_put(rsv
->owner
);
519 if (rsv
->target
.type
== UWB_RSV_TARGET_DEV
)
520 uwb_dev_put(rsv
->target
.dev
);
522 list_del_init(&rsv
->rc_node
);
527 * uwb_rsv_destroy - free a UWB reservation structure
528 * @rsv: the reservation to free
530 * The reservation must already be terminated.
532 void uwb_rsv_destroy(struct uwb_rsv
*rsv
)
536 EXPORT_SYMBOL_GPL(uwb_rsv_destroy
);
539 * usb_rsv_establish - start a reservation establishment
540 * @rsv: the reservation
542 * The PAL should fill in @rsv's owner, target, type, max_mas,
543 * min_mas, max_interval and is_multicast fields. If the target is a
544 * uwb_dev it must be referenced.
546 * The reservation's callback will be called when the reservation is
547 * accepted, denied or times out.
549 int uwb_rsv_establish(struct uwb_rsv
*rsv
)
551 struct uwb_rc
*rc
= rsv
->rc
;
552 struct uwb_mas_bm available
;
555 mutex_lock(&rc
->rsvs_mutex
);
556 ret
= uwb_rsv_get_stream(rsv
);
560 rsv
->tiebreaker
= random32() & 1;
561 /* get available mas bitmap */
562 uwb_drp_available(rc
, &available
);
564 ret
= uwb_rsv_find_best_allocation(rsv
, &available
, &rsv
->mas
);
565 if (ret
== UWB_RSV_ALLOC_NOT_FOUND
) {
567 uwb_rsv_put_stream(rsv
);
571 ret
= uwb_drp_avail_reserve_pending(rc
, &rsv
->mas
);
573 uwb_rsv_put_stream(rsv
);
578 list_add_tail(&rsv
->rc_node
, &rc
->reservations
);
579 rsv
->owner
= &rc
->uwb_dev
;
580 uwb_dev_get(rsv
->owner
);
581 uwb_rsv_set_state(rsv
, UWB_RSV_STATE_O_INITIATED
);
583 mutex_unlock(&rc
->rsvs_mutex
);
586 EXPORT_SYMBOL_GPL(uwb_rsv_establish
);
589 * uwb_rsv_modify - modify an already established reservation
590 * @rsv: the reservation to modify
591 * @max_mas: new maximum MAS to reserve
592 * @min_mas: new minimum MAS to reserve
593 * @max_interval: new max_interval to use
595 * FIXME: implement this once there are PALs that use it.
597 int uwb_rsv_modify(struct uwb_rsv
*rsv
, int max_mas
, int min_mas
, int max_interval
)
601 EXPORT_SYMBOL_GPL(uwb_rsv_modify
);
604 * move an already established reservation (rc->rsvs_mutex must to be
605 * taken when tis function is called)
607 int uwb_rsv_try_move(struct uwb_rsv
*rsv
, struct uwb_mas_bm
*available
)
609 struct uwb_rc
*rc
= rsv
->rc
;
610 struct uwb_drp_backoff_win
*bow
= &rc
->bow
;
611 struct device
*dev
= &rc
->uwb_dev
.dev
;
612 struct uwb_rsv_move
*mv
;
615 if (bow
->can_reserve_extra_mases
== false)
620 if (uwb_rsv_find_best_allocation(rsv
, available
, &mv
->final_mas
) == UWB_RSV_ALLOC_FOUND
) {
622 if (!bitmap_equal(rsv
->mas
.bm
, mv
->final_mas
.bm
, UWB_NUM_MAS
)) {
623 /* We want to move the reservation */
624 bitmap_andnot(mv
->companion_mas
.bm
, mv
->final_mas
.bm
, rsv
->mas
.bm
, UWB_NUM_MAS
);
625 uwb_drp_avail_reserve_pending(rc
, &mv
->companion_mas
);
626 uwb_rsv_set_state(rsv
, UWB_RSV_STATE_O_MOVE_EXPANDING
);
629 dev_dbg(dev
, "new allocation not found\n");
635 /* It will try to move every reservation in state O_ESTABLISHED giving
636 * to the MAS allocator algorithm an availability that is the real one
637 * plus the allocation already established from the reservation. */
638 void uwb_rsv_handle_drp_avail_change(struct uwb_rc
*rc
)
640 struct uwb_drp_backoff_win
*bow
= &rc
->bow
;
642 struct uwb_mas_bm mas
;
644 if (bow
->can_reserve_extra_mases
== false)
647 list_for_each_entry(rsv
, &rc
->reservations
, rc_node
) {
648 if (rsv
->state
== UWB_RSV_STATE_O_ESTABLISHED
||
649 rsv
->state
== UWB_RSV_STATE_O_TO_BE_MOVED
) {
650 uwb_drp_available(rc
, &mas
);
651 bitmap_or(mas
.bm
, mas
.bm
, rsv
->mas
.bm
, UWB_NUM_MAS
);
652 uwb_rsv_try_move(rsv
, &mas
);
659 * uwb_rsv_terminate - terminate an established reservation
660 * @rsv: the reservation to terminate
662 * A reservation is terminated by removing the DRP IE from the beacon,
663 * the other end will consider the reservation to be terminated when
664 * it does not see the DRP IE for at least mMaxLostBeacons.
666 * If applicable, the reference to the target uwb_dev will be released.
668 void uwb_rsv_terminate(struct uwb_rsv
*rsv
)
670 struct uwb_rc
*rc
= rsv
->rc
;
672 mutex_lock(&rc
->rsvs_mutex
);
674 if (rsv
->state
!= UWB_RSV_STATE_NONE
)
675 uwb_rsv_set_state(rsv
, UWB_RSV_STATE_NONE
);
677 mutex_unlock(&rc
->rsvs_mutex
);
679 EXPORT_SYMBOL_GPL(uwb_rsv_terminate
);
682 * uwb_rsv_accept - accept a new reservation from a peer
683 * @rsv: the reservation
684 * @cb: call back for reservation changes
685 * @pal_priv: data to be passed in the above call back
687 * Reservation requests from peers are denied unless a PAL accepts it
688 * by calling this function.
690 * The PAL call uwb_rsv_destroy() for all accepted reservations before
691 * calling uwb_pal_unregister().
693 void uwb_rsv_accept(struct uwb_rsv
*rsv
, uwb_rsv_cb_f cb
, void *pal_priv
)
698 rsv
->pal_priv
= pal_priv
;
699 rsv
->state
= UWB_RSV_STATE_T_ACCEPTED
;
701 EXPORT_SYMBOL_GPL(uwb_rsv_accept
);
704 * Is a received DRP IE for this reservation?
706 static bool uwb_rsv_match(struct uwb_rsv
*rsv
, struct uwb_dev
*src
,
707 struct uwb_ie_drp
*drp_ie
)
709 struct uwb_dev_addr
*rsv_src
;
712 stream
= uwb_ie_drp_stream_index(drp_ie
);
714 if (rsv
->stream
!= stream
)
717 switch (rsv
->target
.type
) {
718 case UWB_RSV_TARGET_DEVADDR
:
719 return rsv
->stream
== stream
;
720 case UWB_RSV_TARGET_DEV
:
721 if (uwb_ie_drp_owner(drp_ie
))
722 rsv_src
= &rsv
->owner
->dev_addr
;
724 rsv_src
= &rsv
->target
.dev
->dev_addr
;
725 return uwb_dev_addr_cmp(&src
->dev_addr
, rsv_src
) == 0;
730 static struct uwb_rsv
*uwb_rsv_new_target(struct uwb_rc
*rc
,
732 struct uwb_ie_drp
*drp_ie
)
736 enum uwb_rsv_state state
;
738 rsv
= uwb_rsv_alloc(rc
);
744 uwb_dev_get(rsv
->owner
);
745 rsv
->target
.type
= UWB_RSV_TARGET_DEV
;
746 rsv
->target
.dev
= &rc
->uwb_dev
;
747 uwb_dev_get(&rc
->uwb_dev
);
748 rsv
->type
= uwb_ie_drp_type(drp_ie
);
749 rsv
->stream
= uwb_ie_drp_stream_index(drp_ie
);
750 uwb_drp_ie_to_bm(&rsv
->mas
, drp_ie
);
753 * See if any PALs are interested in this reservation. If not,
756 rsv
->state
= UWB_RSV_STATE_T_DENIED
;
757 mutex_lock(&rc
->uwb_dev
.mutex
);
758 list_for_each_entry(pal
, &rc
->pals
, node
) {
760 pal
->new_rsv(pal
, rsv
);
761 if (rsv
->state
== UWB_RSV_STATE_T_ACCEPTED
)
764 mutex_unlock(&rc
->uwb_dev
.mutex
);
766 list_add_tail(&rsv
->rc_node
, &rc
->reservations
);
768 rsv
->state
= UWB_RSV_STATE_NONE
;
770 /* FIXME: do something sensible here */
771 if (state
== UWB_RSV_STATE_T_ACCEPTED
772 && uwb_drp_avail_reserve_pending(rc
, &rsv
->mas
) == -EBUSY
) {
773 /* FIXME: do something sensible here */
775 uwb_rsv_set_state(rsv
, state
);
782 * uwb_rsv_get_usable_mas - get the bitmap of the usable MAS of a reservations
783 * @rsv: the reservation.
784 * @mas: returns the available MAS.
786 * The usable MAS of a reservation may be less than the negotiated MAS
787 * if alien BPs are present.
789 void uwb_rsv_get_usable_mas(struct uwb_rsv
*rsv
, struct uwb_mas_bm
*mas
)
791 bitmap_zero(mas
->bm
, UWB_NUM_MAS
);
792 bitmap_andnot(mas
->bm
, rsv
->mas
.bm
, rsv
->rc
->cnflt_alien_bitmap
.bm
, UWB_NUM_MAS
);
794 EXPORT_SYMBOL_GPL(uwb_rsv_get_usable_mas
);
797 * uwb_rsv_find - find a reservation for a received DRP IE.
798 * @rc: the radio controller
799 * @src: source of the DRP IE
800 * @drp_ie: the DRP IE
802 * If the reservation cannot be found and the DRP IE is from a peer
803 * attempting to establish a new reservation, create a new reservation
804 * and add it to the list.
806 struct uwb_rsv
*uwb_rsv_find(struct uwb_rc
*rc
, struct uwb_dev
*src
,
807 struct uwb_ie_drp
*drp_ie
)
811 list_for_each_entry(rsv
, &rc
->reservations
, rc_node
) {
812 if (uwb_rsv_match(rsv
, src
, drp_ie
))
816 if (uwb_ie_drp_owner(drp_ie
))
817 return uwb_rsv_new_target(rc
, src
, drp_ie
);
823 * Go through all the reservations and check for timeouts and (if
824 * necessary) update their DRP IEs.
826 * FIXME: look at building the SET_DRP_IE command here rather than
827 * having to rescan the list in uwb_rc_send_all_drp_ie().
829 static bool uwb_rsv_update_all(struct uwb_rc
*rc
)
831 struct uwb_rsv
*rsv
, *t
;
832 bool ie_updated
= false;
834 list_for_each_entry_safe(rsv
, t
, &rc
->reservations
, rc_node
) {
835 if (!rsv
->ie_valid
) {
836 uwb_drp_ie_update(rsv
);
844 void uwb_rsv_queue_update(struct uwb_rc
*rc
)
846 unsigned long delay_us
= UWB_MAS_LENGTH_US
* UWB_MAS_PER_ZONE
;
848 queue_delayed_work(rc
->rsv_workq
, &rc
->rsv_update_work
, usecs_to_jiffies(delay_us
));
852 * uwb_rsv_sched_update - schedule an update of the DRP IEs
853 * @rc: the radio controller.
855 * To improve performance and ensure correctness with [ECMA-368] the
856 * number of SET-DRP-IE commands that are done are limited.
858 * DRP IEs update come from two sources: DRP events from the hardware
859 * which all occur at the beginning of the superframe ('syncronous'
860 * events) and reservation establishment/termination requests from
861 * PALs or timers ('asynchronous' events).
863 * A delayed work ensures that all the synchronous events result in
864 * one SET-DRP-IE command.
866 * Additional logic (the set_drp_ie_pending and rsv_updated_postponed
867 * flags) will prevent an asynchrous event starting a SET-DRP-IE
868 * command if one is currently awaiting a response.
870 * FIXME: this does leave a window where an asynchrous event can delay
871 * the SET-DRP-IE for a synchronous event by one superframe.
873 void uwb_rsv_sched_update(struct uwb_rc
*rc
)
875 spin_lock_bh(&rc
->rsvs_lock
);
876 if (!delayed_work_pending(&rc
->rsv_update_work
)) {
877 if (rc
->set_drp_ie_pending
> 0) {
878 rc
->set_drp_ie_pending
++;
881 uwb_rsv_queue_update(rc
);
884 spin_unlock_bh(&rc
->rsvs_lock
);
888 * Update DRP IEs and, if necessary, the DRP Availability IE and send
889 * the updated IEs to the radio controller.
891 static void uwb_rsv_update_work(struct work_struct
*work
)
893 struct uwb_rc
*rc
= container_of(work
, struct uwb_rc
,
894 rsv_update_work
.work
);
897 mutex_lock(&rc
->rsvs_mutex
);
899 ie_updated
= uwb_rsv_update_all(rc
);
901 if (!rc
->drp_avail
.ie_valid
) {
902 uwb_drp_avail_ie_update(rc
);
906 if (ie_updated
&& (rc
->set_drp_ie_pending
== 0))
907 uwb_rc_send_all_drp_ie(rc
);
909 mutex_unlock(&rc
->rsvs_mutex
);
912 static void uwb_rsv_alien_bp_work(struct work_struct
*work
)
914 struct uwb_rc
*rc
= container_of(work
, struct uwb_rc
,
915 rsv_alien_bp_work
.work
);
918 mutex_lock(&rc
->rsvs_mutex
);
920 list_for_each_entry(rsv
, &rc
->reservations
, rc_node
) {
921 if (rsv
->type
!= UWB_DRP_TYPE_ALIEN_BP
) {
926 mutex_unlock(&rc
->rsvs_mutex
);
929 static void uwb_rsv_timer(unsigned long arg
)
931 struct uwb_rsv
*rsv
= (struct uwb_rsv
*)arg
;
933 queue_work(rsv
->rc
->rsv_workq
, &rsv
->handle_timeout_work
);
937 * uwb_rsv_remove_all - remove all reservations
938 * @rc: the radio controller
940 * A DRP IE update is not done.
942 void uwb_rsv_remove_all(struct uwb_rc
*rc
)
944 struct uwb_rsv
*rsv
, *t
;
946 mutex_lock(&rc
->rsvs_mutex
);
947 list_for_each_entry_safe(rsv
, t
, &rc
->reservations
, rc_node
) {
948 if (rsv
->state
!= UWB_RSV_STATE_NONE
)
949 uwb_rsv_set_state(rsv
, UWB_RSV_STATE_NONE
);
950 del_timer_sync(&rsv
->timer
);
952 /* Cancel any postponed update. */
953 rc
->set_drp_ie_pending
= 0;
954 mutex_unlock(&rc
->rsvs_mutex
);
956 cancel_delayed_work_sync(&rc
->rsv_update_work
);
957 flush_workqueue(rc
->rsv_workq
);
959 mutex_lock(&rc
->rsvs_mutex
);
960 list_for_each_entry_safe(rsv
, t
, &rc
->reservations
, rc_node
) {
963 mutex_unlock(&rc
->rsvs_mutex
);
966 void uwb_rsv_init(struct uwb_rc
*rc
)
968 INIT_LIST_HEAD(&rc
->reservations
);
969 INIT_LIST_HEAD(&rc
->cnflt_alien_list
);
970 mutex_init(&rc
->rsvs_mutex
);
971 spin_lock_init(&rc
->rsvs_lock
);
972 INIT_DELAYED_WORK(&rc
->rsv_update_work
, uwb_rsv_update_work
);
973 INIT_DELAYED_WORK(&rc
->rsv_alien_bp_work
, uwb_rsv_alien_bp_work
);
974 rc
->bow
.can_reserve_extra_mases
= true;
975 rc
->bow
.total_expired
= 0;
976 rc
->bow
.window
= UWB_DRP_BACKOFF_WIN_MIN
>> 1;
977 init_timer(&rc
->bow
.timer
);
978 rc
->bow
.timer
.function
= uwb_rsv_backoff_win_timer
;
979 rc
->bow
.timer
.data
= (unsigned long)&rc
->bow
;
981 bitmap_complement(rc
->uwb_dev
.streams
, rc
->uwb_dev
.streams
, UWB_NUM_STREAMS
);
984 int uwb_rsv_setup(struct uwb_rc
*rc
)
988 snprintf(name
, sizeof(name
), "%s_rsvd", dev_name(&rc
->uwb_dev
.dev
));
989 rc
->rsv_workq
= create_singlethread_workqueue(name
);
990 if (rc
->rsv_workq
== NULL
)
996 void uwb_rsv_cleanup(struct uwb_rc
*rc
)
998 uwb_rsv_remove_all(rc
);
999 destroy_workqueue(rc
->rsv_workq
);