1 // SPDX-License-Identifier: GPL-2.0-only
3 * WUSB Wire Adapter: Radio Control Interface (WUSB[8])
4 * Notification and Event Handling
6 * Copyright (C) 2005-2006 Intel Corporation
7 * Inaky Perez-Gonzalez <inaky.perez-gonzalez@intel.com>
9 * The RC interface of the Host Wire Adapter (USB dongle) or WHCI PCI
10 * card delivers a stream of notifications and events to the
11 * notification end event endpoint or area. This code takes care of
12 * getting a buffer with that data, breaking it up in separate
13 * notifications and events and then deliver those.
15 * Events are answers to commands and they carry a context ID that
16 * associates them to the command. Notifications are that,
17 * notifications, they come out of the blue and have a context ID of
18 * zero. Think of the context ID kind of like a handler. The
19 * uwb_rc_neh_* code deals with managing context IDs.
21 * This is why you require a handle to operate on a UWB host. When you
22 * open a handle a context ID is assigned to you.
24 * So, as it is done is:
26 * 1. Add an event handler [uwb_rc_neh_add()] (assigns a ctx id)
27 * 2. Issue command [rc->cmd(rc, ...)]
28 * 3. Arm the timeout timer [uwb_rc_neh_arm()]
29 * 4, Release the reference to the neh [uwb_rc_neh_put()]
30 * 5. Wait for the callback
31 * 6. Command result (RCEB) is passed to the callback
33 * If (2) fails, you should remove the handle [uwb_rc_neh_rm()]
34 * instead of arming the timer.
36 * Handles are for using in *serialized* code, single thread.
38 * When the notification/event comes, the IRQ handler/endpoint
39 * callback passes the data read to uwb_rc_neh_grok() which will break
40 * it up in a discrete series of events, look up who is listening for
41 * them and execute the pertinent callbacks.
43 * If the reader detects an error while reading the data stream, call
46 * CONSTRAINTS/ASSUMPTIONS:
48 * - Most notifications/events are small (less thank .5k), copying
51 * - Notifications/events are ALWAYS smaller than PAGE_SIZE
53 * - Notifications/events always come in a single piece (ie: a buffer
54 * will always contain entire notifications/events).
56 * - we cannot know in advance how long each event is (because they
57 * lack a length field in their header--smart move by the standards
58 * body, btw). So we need a facility to get the event size given the
59 * header. This is what the EST code does (notif/Event Size
60 * Tables), check nest.c--as well, you can associate the size to
61 * the handle [w/ neh->extra_size()].
63 * - Most notifications/events are fixed size; only a few are variable
64 * size (NEST takes care of that).
66 * - Listeners of events expect them, so they usually provide a
67 * buffer, as they know the size. Listeners to notifications don't,
68 * so we allocate their buffers dynamically.
70 #include <linux/kernel.h>
71 #include <linux/timer.h>
72 #include <linux/slab.h>
73 #include <linux/err.h>
74 #include <linux/export.h>
76 #include "uwb-internal.h"
79 * UWB Radio Controller Notification/Event Handle
81 * Represents an entity waiting for an event coming from the UWB Radio
82 * Controller with a given context id (context) and type (evt_type and
83 * evt). On reception of the notification/event, the callback (cb) is
84 * called with the event.
86 * If the timer expires before the event is received, the callback is
87 * called with -ETIMEDOUT as the event size.
100 struct timer_list timer
;
101 struct list_head list_node
;
104 static void uwb_rc_neh_timer(struct timer_list
*t
);
106 static void uwb_rc_neh_release(struct kref
*kref
)
108 struct uwb_rc_neh
*neh
= container_of(kref
, struct uwb_rc_neh
, kref
);
113 static void uwb_rc_neh_get(struct uwb_rc_neh
*neh
)
115 kref_get(&neh
->kref
);
119 * uwb_rc_neh_put - release reference to a neh
122 void uwb_rc_neh_put(struct uwb_rc_neh
*neh
)
124 kref_put(&neh
->kref
, uwb_rc_neh_release
);
129 * Assigns @neh a context id from @rc's pool
131 * @rc: UWB Radio Controller descriptor; @rc->neh_lock taken
132 * @neh: Notification/Event Handle
133 * @returns 0 if context id was assigned ok; < 0 errno on error (if
134 * all the context IDs are taken).
136 * (assumes @wa is locked).
138 * NOTE: WUSB spec reserves context ids 0x00 for notifications and
139 * 0xff is invalid, so they must not be used. Initialization
140 * fills up those two in the bitmap so they are not allocated.
142 * We spread the allocation around to reduce the possibility of two
143 * consecutive opened @neh's getting the same context ID assigned (to
144 * avoid surprises with late events that timed out long time ago). So
145 * first we search from where @rc->ctx_roll is, if not found, we
149 int __uwb_rc_ctx_get(struct uwb_rc
*rc
, struct uwb_rc_neh
*neh
)
152 result
= find_next_zero_bit(rc
->ctx_bm
, UWB_RC_CTX_MAX
,
154 if (result
< UWB_RC_CTX_MAX
)
156 result
= find_first_zero_bit(rc
->ctx_bm
, UWB_RC_CTX_MAX
);
157 if (result
< UWB_RC_CTX_MAX
)
161 set_bit(result
, rc
->ctx_bm
);
162 neh
->context
= result
;
167 /** Releases @neh's context ID back to @rc (@rc->neh_lock is locked). */
169 void __uwb_rc_ctx_put(struct uwb_rc
*rc
, struct uwb_rc_neh
*neh
)
171 struct device
*dev
= &rc
->uwb_dev
.dev
;
172 if (neh
->context
== 0)
174 if (test_bit(neh
->context
, rc
->ctx_bm
) == 0) {
175 dev_err(dev
, "context %u not set in bitmap\n",
179 clear_bit(neh
->context
, rc
->ctx_bm
);
184 * uwb_rc_neh_add - add a neh for a radio controller command
185 * @rc: the radio controller
186 * @cmd: the radio controller command
187 * @expected_type: the type of the expected response event
188 * @expected_event: the expected event ID
189 * @cb: callback for when the event is received
190 * @arg: argument for the callback
192 * Creates a neh and adds it to the list of those waiting for an
193 * event. A context ID will be assigned to the command.
195 struct uwb_rc_neh
*uwb_rc_neh_add(struct uwb_rc
*rc
, struct uwb_rccb
*cmd
,
196 u8 expected_type
, u16 expected_event
,
197 uwb_rc_cmd_cb_f cb
, void *arg
)
201 struct device
*dev
= &rc
->uwb_dev
.dev
;
202 struct uwb_rc_neh
*neh
;
204 neh
= kzalloc(sizeof(*neh
), GFP_KERNEL
);
210 kref_init(&neh
->kref
);
211 INIT_LIST_HEAD(&neh
->list_node
);
212 timer_setup(&neh
->timer
, uwb_rc_neh_timer
, 0);
215 neh
->evt_type
= expected_type
;
216 neh
->evt
= cpu_to_le16(expected_event
);
220 spin_lock_irqsave(&rc
->neh_lock
, flags
);
221 result
= __uwb_rc_ctx_get(rc
, neh
);
223 cmd
->bCommandContext
= neh
->context
;
224 list_add_tail(&neh
->list_node
, &rc
->neh_list
);
227 spin_unlock_irqrestore(&rc
->neh_lock
, flags
);
236 dev_err(dev
, "cannot open handle to radio controller: %d\n", result
);
237 return ERR_PTR(result
);
240 static void __uwb_rc_neh_rm(struct uwb_rc
*rc
, struct uwb_rc_neh
*neh
)
242 __uwb_rc_ctx_put(rc
, neh
);
243 list_del(&neh
->list_node
);
247 * uwb_rc_neh_rm - remove a neh.
248 * @rc: the radio controller
249 * @neh: the neh to remove
251 * Remove an active neh immediately instead of waiting for the event
254 void uwb_rc_neh_rm(struct uwb_rc
*rc
, struct uwb_rc_neh
*neh
)
258 spin_lock_irqsave(&rc
->neh_lock
, flags
);
259 __uwb_rc_neh_rm(rc
, neh
);
260 spin_unlock_irqrestore(&rc
->neh_lock
, flags
);
262 del_timer_sync(&neh
->timer
);
267 * uwb_rc_neh_arm - arm an event handler timeout timer
269 * @rc: UWB Radio Controller
270 * @neh: Notification/event handler for @rc
272 * The timer is only armed if the neh is active.
274 void uwb_rc_neh_arm(struct uwb_rc
*rc
, struct uwb_rc_neh
*neh
)
278 spin_lock_irqsave(&rc
->neh_lock
, flags
);
280 mod_timer(&neh
->timer
,
281 jiffies
+ msecs_to_jiffies(UWB_RC_CMD_TIMEOUT_MS
));
282 spin_unlock_irqrestore(&rc
->neh_lock
, flags
);
285 static void uwb_rc_neh_cb(struct uwb_rc_neh
*neh
, struct uwb_rceb
*rceb
, size_t size
)
287 (*neh
->cb
)(neh
->rc
, neh
->arg
, rceb
, size
);
291 static bool uwb_rc_neh_match(struct uwb_rc_neh
*neh
, const struct uwb_rceb
*rceb
)
293 return neh
->evt_type
== rceb
->bEventType
294 && neh
->evt
== rceb
->wEvent
295 && neh
->context
== rceb
->bEventContext
;
299 * Find the handle waiting for a RC Radio Control Event
301 * @rc: UWB Radio Controller
302 * @rceb: Pointer to the RCEB buffer
303 * @event_size: Pointer to the size of the RCEB buffer. Might be
304 * adjusted to take into account the @neh->extra_size
307 * If the listener has no buffer (NULL buffer), one is allocated for
308 * the right size (the amount of data received). @neh->ptr will point
309 * to the event payload, which always starts with a 'struct
310 * uwb_rceb'. kfree() it when done.
313 struct uwb_rc_neh
*uwb_rc_neh_lookup(struct uwb_rc
*rc
,
314 const struct uwb_rceb
*rceb
)
316 struct uwb_rc_neh
*neh
= NULL
, *h
;
319 spin_lock_irqsave(&rc
->neh_lock
, flags
);
321 list_for_each_entry(h
, &rc
->neh_list
, list_node
) {
322 if (uwb_rc_neh_match(h
, rceb
)) {
329 __uwb_rc_neh_rm(rc
, neh
);
331 spin_unlock_irqrestore(&rc
->neh_lock
, flags
);
338 * Process notifications coming from the radio control interface
340 * @rc: UWB Radio Control Interface descriptor
341 * @neh: Notification/Event Handler @neh->ptr points to
344 * This function is called by the event/notif handling subsystem when
345 * notifications arrive (hwarc_probe() arms a notification/event handle
346 * that calls back this function for every received notification; this
347 * function then will rearm itself).
349 * Notification data buffers are dynamically allocated by the NEH
350 * handling code in neh.c [uwb_rc_neh_lookup()]. What is actually
351 * allocated is space to contain the notification data.
353 * Buffers are prefixed with a Radio Control Event Block (RCEB) as
354 * defined by the WUSB Wired-Adapter Radio Control interface. We
355 * just use it for the notification code.
357 * On each case statement we just transcode endianess of the different
358 * fields. We declare a pointer to a RCI definition of an event, and
359 * then to a UWB definition of the same event (which are the same,
360 * remember). Event if we use different pointers
363 void uwb_rc_notif(struct uwb_rc
*rc
, struct uwb_rceb
*rceb
, ssize_t size
)
365 struct device
*dev
= &rc
->uwb_dev
.dev
;
366 struct uwb_event
*uwb_evt
;
368 if (size
== -ESHUTDOWN
)
371 dev_err(dev
, "ignoring event with error code %zu\n",
376 uwb_evt
= kzalloc(sizeof(*uwb_evt
), GFP_ATOMIC
);
377 if (unlikely(uwb_evt
== NULL
)) {
378 dev_err(dev
, "no memory to queue event 0x%02x/%04x/%02x\n",
379 rceb
->bEventType
, le16_to_cpu(rceb
->wEvent
),
380 rceb
->bEventContext
);
383 uwb_evt
->rc
= __uwb_rc_get(rc
); /* will be put by uwbd's uwbd_event_handle() */
384 uwb_evt
->ts_jiffies
= jiffies
;
385 uwb_evt
->type
= UWB_EVT_TYPE_NOTIF
;
386 uwb_evt
->notif
.size
= size
;
387 uwb_evt
->notif
.rceb
= rceb
;
389 uwbd_event_queue(uwb_evt
);
392 static void uwb_rc_neh_grok_event(struct uwb_rc
*rc
, struct uwb_rceb
*rceb
, size_t size
)
394 struct device
*dev
= &rc
->uwb_dev
.dev
;
395 struct uwb_rc_neh
*neh
;
396 struct uwb_rceb
*notif
;
399 if (rceb
->bEventContext
== 0) {
400 notif
= kmalloc(size
, GFP_ATOMIC
);
402 memcpy(notif
, rceb
, size
);
403 uwb_rc_notif(rc
, notif
, size
);
405 dev_err(dev
, "event 0x%02x/%04x/%02x (%zu bytes): no memory\n",
406 rceb
->bEventType
, le16_to_cpu(rceb
->wEvent
),
407 rceb
->bEventContext
, size
);
409 neh
= uwb_rc_neh_lookup(rc
, rceb
);
411 spin_lock_irqsave(&rc
->neh_lock
, flags
);
412 /* to guard against a timeout */
414 del_timer(&neh
->timer
);
415 spin_unlock_irqrestore(&rc
->neh_lock
, flags
);
416 uwb_rc_neh_cb(neh
, rceb
, size
);
418 dev_warn(dev
, "event 0x%02x/%04x/%02x (%zu bytes): nobody cared\n",
419 rceb
->bEventType
, le16_to_cpu(rceb
->wEvent
),
420 rceb
->bEventContext
, size
);
425 * Given a buffer with one or more UWB RC events/notifications, break
426 * them up and dispatch them.
428 * @rc: UWB Radio Controller
429 * @buf: Buffer with the stream of notifications/events
430 * @buf_size: Amount of data in the buffer
432 * Note each notification/event starts always with a 'struct
433 * uwb_rceb', so the minimum size if 4 bytes.
435 * The device may pass us events formatted differently than expected.
436 * These are first filtered, potentially creating a new event in a new
437 * memory location. If a new event is created by the filter it is also
440 * For each notif/event, tries to guess the size looking at the EST
441 * tables, then looks for a neh that is waiting for that event and if
442 * found, copies the payload to the neh's buffer and calls it back. If
443 * not, the data is ignored.
445 * Note that if we can't find a size description in the EST tables, we
446 * still might find a size in the 'neh' handle in uwb_rc_neh_lookup().
450 * @rc->neh_lock is NOT taken
452 * We keep track of various sizes here:
453 * size: contains the size of the buffer that is processed for the
454 * incoming event. this buffer may contain events that are not
456 * real_size: the actual space taken by this event in the buffer.
457 * We need to keep track of the real size of an event to be able to
458 * advance the buffer correctly.
459 * event_size: the size of the event as expected by the core layer
460 * [OR] the size of the event after filtering. if the filtering
461 * created a new event in a new memory location then this is
462 * effectively the size of a new event buffer
464 void uwb_rc_neh_grok(struct uwb_rc
*rc
, void *buf
, size_t buf_size
)
466 struct device
*dev
= &rc
->uwb_dev
.dev
;
468 struct uwb_rceb
*rceb
;
469 size_t size
, real_size
, event_size
;
475 if (size
< sizeof(*rceb
)) {
476 dev_err(dev
, "not enough data in event buffer to "
477 "process incoming events (%zu left, minimum is "
478 "%zu)\n", size
, sizeof(*rceb
));
483 if (rc
->filter_event
) {
484 needtofree
= rc
->filter_event(rc
, &rceb
, size
,
485 &real_size
, &event_size
);
486 if (needtofree
< 0 && needtofree
!= -ENOANO
) {
487 dev_err(dev
, "BUG: Unable to filter event "
488 "(0x%02x/%04x/%02x) from "
489 "device. \n", rceb
->bEventType
,
490 le16_to_cpu(rceb
->wEvent
),
491 rceb
->bEventContext
);
495 needtofree
= -ENOANO
;
496 /* do real processing if there was no filtering or the
497 * filtering didn't act */
498 if (needtofree
== -ENOANO
) {
499 ssize_t ret
= uwb_est_find_size(rc
, rceb
, size
);
503 dev_err(dev
, "BUG: hw sent incomplete event "
504 "0x%02x/%04x/%02x (%zd bytes), only got "
505 "%zu bytes. We don't handle that.\n",
506 rceb
->bEventType
, le16_to_cpu(rceb
->wEvent
),
507 rceb
->bEventContext
, ret
, size
);
510 real_size
= event_size
= ret
;
512 uwb_rc_neh_grok_event(rc
, rceb
, event_size
);
521 EXPORT_SYMBOL_GPL(uwb_rc_neh_grok
);
525 * The entity that reads from the device notification/event channel has
528 * @rc: UWB Radio Controller
529 * @error: Errno error code
532 void uwb_rc_neh_error(struct uwb_rc
*rc
, int error
)
534 struct uwb_rc_neh
*neh
;
538 spin_lock_irqsave(&rc
->neh_lock
, flags
);
539 if (list_empty(&rc
->neh_list
)) {
540 spin_unlock_irqrestore(&rc
->neh_lock
, flags
);
543 neh
= list_first_entry(&rc
->neh_list
, struct uwb_rc_neh
, list_node
);
544 __uwb_rc_neh_rm(rc
, neh
);
545 spin_unlock_irqrestore(&rc
->neh_lock
, flags
);
547 del_timer_sync(&neh
->timer
);
548 uwb_rc_neh_cb(neh
, NULL
, error
);
551 EXPORT_SYMBOL_GPL(uwb_rc_neh_error
);
554 static void uwb_rc_neh_timer(struct timer_list
*t
)
556 struct uwb_rc_neh
*neh
= from_timer(neh
, t
, timer
);
557 struct uwb_rc
*rc
= neh
->rc
;
560 spin_lock_irqsave(&rc
->neh_lock
, flags
);
561 if (neh
->completed
) {
562 spin_unlock_irqrestore(&rc
->neh_lock
, flags
);
566 __uwb_rc_neh_rm(rc
, neh
);
569 spin_unlock_irqrestore(&rc
->neh_lock
, flags
);
572 uwb_rc_neh_cb(neh
, NULL
, -ETIMEDOUT
);
575 /** Initializes the @rc's neh subsystem
577 void uwb_rc_neh_create(struct uwb_rc
*rc
)
579 spin_lock_init(&rc
->neh_lock
);
580 INIT_LIST_HEAD(&rc
->neh_list
);
581 set_bit(0, rc
->ctx_bm
); /* 0 is reserved (see [WUSB] table 8-65) */
582 set_bit(0xff, rc
->ctx_bm
); /* and 0xff is invalid */
587 /** Release's the @rc's neh subsystem */
588 void uwb_rc_neh_destroy(struct uwb_rc
*rc
)
591 struct uwb_rc_neh
*neh
;
594 spin_lock_irqsave(&rc
->neh_lock
, flags
);
595 if (list_empty(&rc
->neh_list
)) {
596 spin_unlock_irqrestore(&rc
->neh_lock
, flags
);
599 neh
= list_first_entry(&rc
->neh_list
, struct uwb_rc_neh
, list_node
);
600 __uwb_rc_neh_rm(rc
, neh
);
601 spin_unlock_irqrestore(&rc
->neh_lock
, flags
);
603 del_timer_sync(&neh
->timer
);