Linux Audio

Check our new training course

Linux BSP development engineering services

Need help to port Linux and bootloaders to your hardware?
Loading...
 1Marvell Armada 37xx Platforms Device Tree Bindings
 2--------------------------------------------------
 3
 4Boards using a SoC of the Marvell Armada 37xx family must carry the
 5following root node property:
 6
 7 - compatible: must contain "marvell,armada3710"
 8
 9In addition, boards using the Marvell Armada 3720 SoC shall have the
10following property before the previous one:
11
12 - compatible: must contain "marvell,armada3720"
13
14Example:
15
16compatible = "marvell,armada-3720-db", "marvell,armada3720", "marvell,armada3710";
17
18
19Power management
20----------------
21
22For power management (particularly DVFS and AVS), the North Bridge
23Power Management component is needed:
24
25Required properties:
26- compatible     : should contain "marvell,armada-3700-nb-pm", "syscon";
27- reg            : the register start and length for the North Bridge
28		    Power Management
29
30Example:
31
32nb_pm: syscon@14000 {
33	compatible = "marvell,armada-3700-nb-pm", "syscon";
34	reg = <0x14000 0x60>;
35}