-
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.
The Tegra PMC (Power Management Controller) interfaces with an external PMU (Power Management Unit), and controls wake-up from sleep modes. This initial binding is the bare minimum required to control the PMC's inversion of the PMU's interrupt signal. Signed-off-by: Stephen Warren <swarren@nvidia.com> Signed-off-by: Olof Johansson <olof@lixom.net>
- Loading branch information
Stephen Warren
authored and
Olof Johansson
committed
Feb 7, 2012
1 parent
797acf7
commit d17adfd
Showing
4 changed files
with
33 additions
and
0 deletions.
There are no files selected for viewing
19 changes: 19 additions & 0 deletions
19
Documentation/devicetree/bindings/arm/tegra/nvidia,tegra20-pmc.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,19 @@ | ||
NVIDIA Tegra Power Management Controller (PMC) | ||
|
||
Properties: | ||
- name : Should be pmc | ||
- compatible : Should contain "nvidia,tegra<chip>-pmc". | ||
- reg : Offset and length of the register set for the device | ||
- nvidia,invert-interrupt : If present, inverts the PMU interrupt signal. | ||
The PMU is an external Power Management Unit, whose interrupt output | ||
signal is fed into the PMC. This signal is optionally inverted, and then | ||
fed into the ARM GIC. The PMC is not involved in the detection or | ||
handling of this interrupt signal, merely its inversion. | ||
|
||
Example: | ||
|
||
pmc@7000f400 { | ||
compatible = "nvidia,tegra20-pmc"; | ||
reg = <0x7000e400 0x400>; | ||
nvidia,invert-interrupt; | ||
}; |
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