blob: 29fa93dad52bac2ba1ea978e6091da1e4fc87494 [file] [log] [blame]
Tom Rini53633a82024-02-29 12:33:36 -05001Power management
2----------------
3
4For power management (particularly DVFS and AVS), the North Bridge
5Power Management component is needed:
6
7Required properties:
8- compatible : should contain "marvell,armada-3700-nb-pm", "syscon";
9- reg : the register start and length for the North Bridge
10 Power Management
11
12Example:
13
14nb_pm: syscon@14000 {
15 compatible = "marvell,armada-3700-nb-pm", "syscon";
16 reg = <0x14000 0x60>;
17}
18
19AVS
20---
21
22For AVS an other component is needed:
23
24Required properties:
25- compatible : should contain "marvell,armada-3700-avs", "syscon";
26- reg : the register start and length for the AVS
27
28Example:
29avs: avs@11500 {
30 compatible = "marvell,armada-3700-avs", "syscon";
31 reg = <0x11500 0x40>;
32}