-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
usb: renesas_usbhs: Add Renesas USBHS common code
Renesas SuperH has USBHS IP which can switch Host / Function. This driver is designed so that Host / Function may dynamically change. This patch add usb/renesas_usbhs and common code for SuperH USBHS. Signed-off-by: Kuninori Morimoto <kuninori.morimoto.gx@renesas.com> Signed-off-by: Greg Kroah-Hartman <gregkh@suse.de>
- Loading branch information
Kuninori Morimoto
authored and
Greg Kroah-Hartman
committed
Apr 13, 2011
1 parent
a6360dd
commit f1407d5
Showing
11 changed files
with
2,145 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,15 @@ | ||
# | ||
# Renesas USB Controller Drivers | ||
# | ||
|
||
config USB_RENESAS_USBHS | ||
tristate 'Renesas USBHS controller' | ||
default n | ||
help | ||
Renesas USBHS is a discrete USB host and peripheral controller chip | ||
that supports both full and high speed USB 2.0 data transfers. | ||
It has nine or more configurable endpoints, and endpoint zero. | ||
|
||
Say "y" to link the driver statically, or "m" to build a | ||
dynamically linked module called "renesas_usbhs" and force all | ||
gadget drivers to also be dynamically linked. |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,7 @@ | ||
# | ||
# for Renesas USB | ||
# | ||
|
||
obj-$(CONFIG_USB_RENESAS_USBHS) += renesas_usbhs.o | ||
|
||
renesas_usbhs-y := common.o mod.o pipe.o |
Oops, something went wrong.