-
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.
Merge tag 'renesas-dt-pm-domain-for-v4.7' of git://git.kernel.org/pub…
…/scm/linux/kernel/git/horms/renesas into next/late Merge "Renesas ARM Based SoC DT PM Domain Updates for v4.7" into next/late * Add SYSC PM Domains to DT for R-Car Gen 1 and 2 SoCs This pull requests is based on a merge of: * "[GIT PULL] Second Round of Renesas ARM Based SoC R-Car SYSC Updates for v4.7", tagged as renesas-rcar-sysc2-for-v4.7, which you have already pulled. * "[GIT PULL v2] Renesas ARM Based SoC DT Updates for v4.7", tagged as renesas-dt-for-v4.7, which you have also already pulled. The reason for the somewhat tedious base on renesas-rcar-sysc2-for-v4.7, which provides driver changes, is a hard run-time dependency. I also have a similar set of changes for arm64 which I will send separately. * tag 'renesas-dt-pm-domain-for-v4.7' of git://git.kernel.org/pub/scm/linux/kernel/git/horms/renesas: (88 commits) ARM: dts: r8a7794: Use SYSC "always-on" PM Domain ARM: dts: r8a7793: Use SYSC "always-on" PM Domain ARM: dts: r8a7791: Use SYSC "always-on" PM Domain ARM: dts: r8a7790: Use SYSC "always-on" PM Domain ARM: dts: r8a7779: Use SYSC "always-on" PM Domain ARM: dts: r8a7794: Add SYSC PM Domains ARM: dts: r8a7793: Add SYSC PM Domains ARM: dts: r8a7791: Add SYSC PM Domains ARM: dts: r8a7790: Add SYSC PM Domains ARM: dts: r8a7779: Add SYSC PM Domains soc: renesas: rcar-sysc: Add support for R-Car H3 power areas soc: renesas: rcar-sysc: Add support for R-Car E2 power areas soc: renesas: rcar-sysc: Add support for R-Car M2-N power areas soc: renesas: rcar-sysc: Add support for R-Car M2-W power areas soc: renesas: rcar-sysc: Add support for R-Car H2 power areas soc: renesas: rcar-sysc: Add support for R-Car H1 power areas soc: renesas: rcar-sysc: Enable Clock Domain for I/O devices ARM: dts: gose: Enable SDHI controllers ARM: dts: r8a7793: Add SDHI controllers ARM: dts: r8a7790: fix max-frequency for SDHI ...
- Loading branch information
Showing
57 changed files
with
2,112 additions
and
1,147 deletions.
There are no files selected for viewing
48 changes: 48 additions & 0 deletions
48
Documentation/devicetree/bindings/power/renesas,rcar-sysc.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,48 @@ | ||
DT bindings for the Renesas R-Car System Controller | ||
|
||
== System Controller Node == | ||
|
||
The R-Car System Controller provides power management for the CPU cores and | ||
various coprocessors. | ||
|
||
Required properties: | ||
- compatible: Must contain exactly one of the following: | ||
- "renesas,r8a7779-sysc" (R-Car H1) | ||
- "renesas,r8a7790-sysc" (R-Car H2) | ||
- "renesas,r8a7791-sysc" (R-Car M2-W) | ||
- "renesas,r8a7792-sysc" (R-Car V2H) | ||
- "renesas,r8a7793-sysc" (R-Car M2-N) | ||
- "renesas,r8a7794-sysc" (R-Car E2) | ||
- "renesas,r8a7795-sysc" (R-Car H3) | ||
- reg: Address start and address range for the device. | ||
- #power-domain-cells: Must be 1. | ||
|
||
|
||
Example: | ||
|
||
sysc: system-controller@e6180000 { | ||
compatible = "renesas,r8a7791-sysc"; | ||
reg = <0 0xe6180000 0 0x0200>; | ||
#power-domain-cells = <1>; | ||
}; | ||
|
||
|
||
== PM Domain Consumers == | ||
|
||
Devices residing in a power area must refer to that power area, as documented | ||
by the generic PM domain bindings in | ||
Documentation/devicetree/bindings/power/power_domain.txt. | ||
|
||
Required properties: | ||
- power-domains: A phandle and symbolic PM domain specifier, as defined in | ||
<dt-bindings/power/r8a77*-sysc.h>. | ||
|
||
|
||
Example: | ||
|
||
L2_CA15: cache-controller@0 { | ||
compatible = "cache"; | ||
power-domains = <&sysc R8A7791_PD_CA15_SCU>; | ||
cache-unified; | ||
cache-level = <2>; | ||
}; |
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.