diff options
author | Chris Metcalf <cmetcalf@tilera.com> | 2012-05-09 12:25:02 -0400 |
---|---|---|
committer | Chris Metcalf <cmetcalf@tilera.com> | 2012-07-18 16:40:24 -0400 |
commit | d1cc1732cc62034542b042a4506d7c5043bc5e5e (patch) | |
tree | 85fe94b0e84275d791bd35ab94a6ca2cd4c7c6df /arch/tile/gxio/Kconfig | |
parent | 41bb38fc5398ae878c799647f3c4b25374029afb (diff) |
arch/tile: provide kernel support for the tilegx USB shim
This change adds support for accessing the USB shim from within the
kernel. Note that this change by itself does not allow the kernel
to act as a host or as a device; it merely exposes the built-in on-chip
hardware to the kernel.
The <arch/usb_host.h> and <arch/usb_host_def.h> headers are empty at
the moment because the kernel does not require any types or definitions
specific to the tilegx USB shim; the generic USB core code is all we need.
The headers are left in as stubs so that we don't need to modify the
hypervisor header (drv_usb_host_intf.h) from upstream.
Signed-off-by: Chris Metcalf <cmetcalf@tilera.com>
Diffstat (limited to 'arch/tile/gxio/Kconfig')
-rw-r--r-- | arch/tile/gxio/Kconfig | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/arch/tile/gxio/Kconfig b/arch/tile/gxio/Kconfig index 68e1cca2cce5..d221f8d6de8b 100644 --- a/arch/tile/gxio/Kconfig +++ b/arch/tile/gxio/Kconfig | |||
@@ -21,3 +21,8 @@ config TILE_GXIO_TRIO | |||
21 | bool | 21 | bool |
22 | select TILE_GXIO | 22 | select TILE_GXIO |
23 | select TILE_GXIO_DMA | 23 | select TILE_GXIO_DMA |
24 | |||
25 | # Support direct access to the TILE-Gx USB hardware from kernel space. | ||
26 | config TILE_GXIO_USB_HOST | ||
27 | bool | ||
28 | select TILE_GXIO | ||