blob: 8968371d84e240c607eaef5ab9ed4000969c14aa [file] [log] [blame]
Thomas Petazzonic0553d02016-03-27 11:26:14 +02001Marvell Armada AP806 System Controller
2======================================
3
4The AP806 is one of the two core HW blocks of the Marvell Armada 7K/8K
5SoCs. It contains a system controller, which provides a number
6registers giving access to numerous features: clocks, pin-muxing and
7many other SoC configuration items. This DT binding allows to describe
8this system controller.
9
10The Device Tree node representing the AP806 system controller provides
11a number of clocks:
12
13 - 0: clock of CPU cluster 0
14 - 1: clock of CPU cluster 1
15 - 2: fixed PLL at 1200 Mhz
16 - 3: MSS clock, derived from the fixed PLL
17
18Required properties:
19
20 - compatible: must be:
21 "marvell,ap806-system-controller", "syscon"
22 - reg: register area of the AP806 system controller
23 - #clock-cells: must be set to 1
24 - clock-output-names: must be defined to:
25 "ap-cpu-cluster-0", "ap-cpu-cluster-1", "ap-fixed", "ap-mss"
26
27Example:
28
29 syscon: system-controller@6f4000 {
30 compatible = "marvell,ap806-system-controller", "syscon";
31 #clock-cells = <1>;
32 clock-output-names = "ap-cpu-cluster-0", "ap-cpu-cluster-1",
33 "ap-fixed", "ap-mss";
34 reg = <0x6f4000 0x1000>;
35 };