-
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.
yaml --- r: 325998 b: refs/heads/master c: 1cd572f h: refs/heads/master v: v3
- Loading branch information
Greg Kroah-Hartman
committed
Sep 11, 2012
1 parent
7015a7a
commit 89876dc
Showing
1,088 changed files
with
31,787 additions
and
12,180 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,2 +1,2 @@ | ||
--- | ||
refs/heads/master: d8c3ef256f88b7c6ecd673d03073b5645be9c5e4 | ||
refs/heads/master: 1cd572fc0c5f6887ea0542e2d3ec26625e2cdfb7 |
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
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
12 changes: 12 additions & 0 deletions
12
trunk/Documentation/devicetree/bindings/usb/platform-uhci.txt
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,12 @@ | ||
Generic Platform UHCI controllers. | ||
|
||
Required properties: | ||
- compatible: Should be "platform-uhci". | ||
- reg: Address range of the uhci registers | ||
- interrupts: Should contain the uhci interrupt. | ||
|
||
usb: uhci@D8007301 { | ||
compatible = "platform-uhci", "usb-uhci"; | ||
reg = <0xD8007301 0x200>; | ||
interrupts = <0>; | ||
}; |
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,31 @@ | ||
PXA USB controllers | ||
|
||
OHCI | ||
|
||
Required properties: | ||
- compatible: Should be "marvell,pxa-ohci" for USB controllers | ||
used in host mode. | ||
|
||
Optional properties: | ||
- "marvell,enable-port1", "marvell,enable-port2", "marvell,enable-port3" | ||
If present, enables the appropriate USB port of the controller. | ||
- "marvell,port-mode" selects the mode of the ports: | ||
1 = PMM_NPS_MODE | ||
2 = PMM_GLOBAL_MODE | ||
3 = PMM_PERPORT_MODE | ||
- "marvell,power-sense-low" - power sense pin is low-active. | ||
- "marvell,power-control-low" - power control pin is low-active. | ||
- "marvell,no-oc-protection" - disable over-current protection. | ||
- "marvell,oc-mode-perport" - enable per-port over-current protection. | ||
- "marvell,power_on_delay" Power On to Power Good time - in ms. | ||
|
||
Example: | ||
|
||
usb0: ohci@4c000000 { | ||
compatible = "marvell,pxa-ohci", "usb-ohci"; | ||
reg = <0x4c000000 0x100000>; | ||
interrupts = <18>; | ||
marvell,enable-port1; | ||
marvell,port-mode = <2>; /* PMM_GLOBAL_MODE */ | ||
}; | ||
|
40 changes: 40 additions & 0 deletions
40
trunk/Documentation/devicetree/bindings/usb/twlxxxx-usb.txt
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,40 @@ | ||
USB COMPARATOR OF TWL CHIPS | ||
|
||
TWL6030 USB COMPARATOR | ||
- compatible : Should be "ti,twl6030-usb" | ||
- interrupts : Two interrupt numbers to the cpu should be specified. First | ||
interrupt number is the otg interrupt number that raises ID interrupts when | ||
the controller has to act as host and the second interrupt number is the | ||
usb interrupt number that raises VBUS interrupts when the controller has to | ||
act as device | ||
- usb-supply : phandle to the regulator device tree node. It should be vusb | ||
if it is twl6030 or ldousb if it is twl6025 subclass. | ||
|
||
twl6030-usb { | ||
compatible = "ti,twl6030-usb"; | ||
interrupts = < 4 10 >; | ||
}; | ||
|
||
Board specific device node entry | ||
&twl6030-usb { | ||
usb-supply = <&vusb>; | ||
}; | ||
|
||
TWL4030 USB PHY AND COMPARATOR | ||
- compatible : Should be "ti,twl4030-usb" | ||
- interrupts : The interrupt numbers to the cpu should be specified. First | ||
interrupt number is the otg interrupt number that raises ID interrupts | ||
and VBUS interrupts. The second interrupt number is optional. | ||
- <supply-name>-supply : phandle to the regulator device tree node. | ||
<supply-name> should be vusb1v5, vusb1v8 and vusb3v1 | ||
- usb_mode : The mode used by the phy to connect to the controller. "1" | ||
specifies "ULPI" mode and "2" specifies "CEA2011_3PIN" mode. | ||
|
||
twl4030-usb { | ||
compatible = "ti,twl4030-usb"; | ||
interrupts = < 10 4 >; | ||
usb1v5-supply = <&vusb1v5>; | ||
usb1v8-supply = <&vusb1v8>; | ||
usb3v1-supply = <&vusb3v1>; | ||
usb_mode = <1>; | ||
}; |
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,17 @@ | ||
USB PHY | ||
|
||
OMAP USB2 PHY | ||
|
||
Required properties: | ||
- compatible: Should be "ti,omap-usb2" | ||
- reg : Address and length of the register set for the device. Also | ||
add the address of control module dev conf register until a driver for | ||
control module is added | ||
|
||
This is usually a subnode of ocp2scp to which it is connected. | ||
|
||
usb2phy@4a0ad080 { | ||
compatible = "ti,omap-usb2"; | ||
reg = <0x4a0ad080 0x58>, | ||
<0x4a002300 0x4>; | ||
}; |
12 changes: 12 additions & 0 deletions
12
trunk/Documentation/devicetree/bindings/usb/vt8500-ehci.txt
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,12 @@ | ||
VIA VT8500 and Wondermedia WM8xxx SoC USB controllers. | ||
|
||
Required properties: | ||
- compatible: Should be "via,vt8500-ehci" or "wm,prizm-ehci". | ||
- reg: Address range of the ehci registers. size should be 0x200 | ||
- interrupts: Should contain the ehci interrupt. | ||
|
||
usb: ehci@D8007100 { | ||
compatible = "wm,prizm-ehci", "usb-ehci"; | ||
reg = <0xD8007100 0x200>; | ||
interrupts = <1>; | ||
}; |
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
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
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
Oops, something went wrong.