Commit 7e5b11af authored by Gregory CLEMENT's avatar Gregory CLEMENT Committed by Michael Turquette

dt-bindings: ap806: introduce a new binding

This patch updates the documentation according to the changes made in the
patch "clk: mvebu: ap806: introduce a new binding"
Acked-by: default avatarRob Herring <robh@kernel.org>
Signed-off-by: default avatarGregory CLEMENT <gregory.clement@free-electrons.com>
Signed-off-by: default avatarMichael Turquette <mturquette@baylibre.com>
Link: lkml.kernel.org/r/32e35c1d5919bdf9dc7d58678f0c0b462886d03e.1496239589.git-series.gregory.clement@free-electrons.com
parent d1a26232
...@@ -7,6 +7,14 @@ registers giving access to numerous features: clocks, pin-muxing and ...@@ -7,6 +7,14 @@ registers giving access to numerous features: clocks, pin-muxing and
many other SoC configuration items. This DT binding allows to describe many other SoC configuration items. This DT binding allows to describe
this system controller. this system controller.
For the top level node:
- compatible: must be: "syscon", "simple-mfd";
- reg: register area of the AP806 system controller
Clocks:
-------
The Device Tree node representing the AP806 system controller provides The Device Tree node representing the AP806 system controller provides
a number of clocks: a number of clocks:
...@@ -17,15 +25,17 @@ a number of clocks: ...@@ -17,15 +25,17 @@ a number of clocks:
Required properties: Required properties:
- compatible: must be: - compatible: must be: "marvell,ap806-clock"
"marvell,ap806-system-controller", "syscon"
- reg: register area of the AP806 system controller
- #clock-cells: must be set to 1 - #clock-cells: must be set to 1
Example: Example:
syscon: system-controller@6f4000 { syscon: system-controller@6f4000 {
compatible = "marvell,ap806-system-controller", "syscon"; compatible = "syscon", "simple-mfd";
#clock-cells = <1>;
reg = <0x6f4000 0x1000>; reg = <0x6f4000 0x1000>;
ap_clk: clock {
compatible = "marvell,ap806-clock";
#clock-cells = <1>;
};
}; };
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment