-
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.
arm/dt: add basic usb nodes to tegra device trees
For now they are a minimal binding. It needs to be amended with vendor-specific settings for phy setup and link tuning, etc. v2: Added bindings specification and phy_type properties Signed-off-by: Olof Johansson <olof@lixom.net> Acked-by: Grant Likely <grant.likely@secretlab.ca> Acked-by: Stephen Warren <swarren@nvidia.com>
- Loading branch information
Olof Johansson
committed
Dec 8, 2011
1 parent
317d533
commit c27317c
Showing
3 changed files
with
38 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,13 @@ | ||
Tegra SOC USB controllers | ||
|
||
The device node for a USB controller that is part of a Tegra | ||
SOC is as described in the document "Open Firmware Recommended | ||
Practice : Universal Serial Bus" with the following modifications | ||
and additions : | ||
|
||
Required properties : | ||
- compatible : Should be "nvidia,tegra20-ehci" for USB controllers | ||
used in host mode. | ||
- phy_type : Should be one of "ulpi" or "utmi". | ||
- nvidia,vbus-gpio : If present, specifies a gpio that needs to be | ||
activated for the bus to be powered. |
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 |
---|---|---|
|
@@ -29,4 +29,8 @@ | |
sdhci@c8000600 { | ||
support-8bit; | ||
}; | ||
|
||
usb@c5000000 { | ||
nvidia,vbus-gpio = <&gpio 24 0>; /* PD0 */ | ||
}; | ||
}; |
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