]> www.pilppa.org Git - linux-2.6-omap-h63xx.git/commit
i2400m/USB: TX and RX path backends
authorInaky Perez-Gonzalez <inaky@linux.intel.com>
Sun, 21 Dec 2008 00:57:53 +0000 (16:57 -0800)
committerGreg Kroah-Hartman <gregkh@suse.de>
Wed, 7 Jan 2009 18:00:21 +0000 (10:00 -0800)
commita8ebf98f541463107bb9544a1b611981dc2477e7
treeaae6235a1c14ecc2a212f020c9168507d630a23a
parent795038107b0078ee5ad3ad33327fe1c3520f6bf2
i2400m/USB: TX and RX path backends

Implements the backend so that the generic driver can TX/RX to/from
the USB device.

TX is implemented with a kthread sitting in a never-ending loop that
when kicked by the generic driver's TX code will pull data from the TX
FIFO and send it to the device until it drains it. Then it goes back
sleep, waiting for another kick.

RX is implemented in a similar fashion, but reads are kicked in by the
device notifying in the interrupt endpoint that data is ready. Device
reset notifications are also sent via the notification endpoint.

We need a thread contexts to run USB autopm functions (blocking) and
to process the received data (can get to be heavy in processing
time).

Signed-off-by: Inaky Perez-Gonzalez <inaky@linux.intel.com>
Signed-off-by: Greg Kroah-Hartman <gregkh@suse.de>
drivers/net/wimax/i2400m/usb-notif.c [new file with mode: 0644]
drivers/net/wimax/i2400m/usb-rx.c [new file with mode: 0644]
drivers/net/wimax/i2400m/usb-tx.c [new file with mode: 0644]