Skip to content

Commit

Permalink
wusb: WHCI host controller driver
Browse files Browse the repository at this point in the history
A driver for Wireless USB host controllers that comply with the
Wireless Host Controller Interface (HCI) specification as published by
Intel.

The latest publically available version of the specification (0.95) is
supported (except for isochronous transfers).

Build fixes by Randy Dunlap <rdunlap@xenotime.net>

Signed-off-by: David Vrabel <david.vrabel@csr.com>
  • Loading branch information
David Vrabel authored and David Vrabel committed Sep 17, 2008
1 parent 870d539 commit 7e6133a
Show file tree
Hide file tree
Showing 13 changed files with 2,920 additions and 0 deletions.
12 changes: 12 additions & 0 deletions drivers/usb/host/Kconfig
Original file line number Diff line number Diff line change
Expand Up @@ -305,3 +305,15 @@ config SUPERH_ON_CHIP_R8A66597
help
This driver enables support for the on-chip R8A66597 in the
SH7366 and SH7723 processors.

config USB_WHCI_HCD
tristate "Wireless USB Host Controller Interface (WHCI) driver"
depends on PCI && USB
select USB_WUSB
select UWB_WHCI
help
A driver for PCI-based Wireless USB Host Controllers that are
compliant with the WHCI specification.

To compile this driver a module, choose M here: the module
will be called "whci-hcd".
2 changes: 2 additions & 0 deletions drivers/usb/host/Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,8 @@ endif

isp1760-objs := isp1760-hcd.o isp1760-if.o

obj-$(CONFIG_USB_WHCI_HCD) += whci/

obj-$(CONFIG_PCI) += pci-quirks.o

obj-$(CONFIG_USB_EHCI_HCD) += ehci-hcd.o
Expand Down
11 changes: 11 additions & 0 deletions drivers/usb/host/whci/Kbuild
Original file line number Diff line number Diff line change
@@ -0,0 +1,11 @@
obj-$(CONFIG_USB_WHCI_HCD) += whci-hcd.o

whci-hcd-y := \
asl.o \
hcd.o \
hw.o \
init.o \
int.o \
pzl.o \
qset.o \
wusb.o
Loading

0 comments on commit 7e6133a

Please sign in to comment.