diff options
author | Neil Armstrong <narmstrong@baylibre.com> | 2018-11-18 14:53:10 +0100 |
---|---|---|
committer | Kevin Hilman <khilman@baylibre.com> | 2018-11-28 16:55:35 -0800 |
commit | b4c29e89026892494952b648f03958906d357129 (patch) | |
tree | 0ebe8ad28a7f22734cbda209073ad4a009344370 | |
parent | 41bb5769b7f4b7a85e4b92c37429228279b4f569 (diff) | |
download | lwn-b4c29e89026892494952b648f03958906d357129.tar.gz lwn-b4c29e89026892494952b648f03958906d357129.zip |
dt-bindings: amlogic: Add Internal Clock Measurer bindings
The Amlogic Meson SoCs embeds a clock measurer IP to measure the internal
clock paths frequencies.
Acked-by: Martin Blumenstingl <martin.blumenstingl@googlemail.com>
Signed-off-by: Neil Armstrong <narmstrong@baylibre.com>
Reviewed-by: Rob Herring <robh@kernel.org>
Signed-off-by: Kevin Hilman <khilman@baylibre.com>
-rw-r--r-- | Documentation/devicetree/bindings/soc/amlogic/clk-measure.txt | 18 |
1 files changed, 18 insertions, 0 deletions
diff --git a/Documentation/devicetree/bindings/soc/amlogic/clk-measure.txt b/Documentation/devicetree/bindings/soc/amlogic/clk-measure.txt new file mode 100644 index 000000000000..205a54bcd7c7 --- /dev/null +++ b/Documentation/devicetree/bindings/soc/amlogic/clk-measure.txt @@ -0,0 +1,18 @@ +Amlogic Internal Clock Measurer +=============================== + +The Amlogic SoCs contains an IP to measure the internal clocks. +The precision is multiple of MHz, useful to debug the clock states. + +Required properties: +- compatible: Shall contain one of the following : + "amlogic,meson-gx-clk-measure" for GX SoCs + "amlogic,meson8-clk-measure" for Meson8 SoCs + "amlogic,meson8b-clk-measure" for Meson8b SoCs +- reg: base address and size of the Clock Measurer register space. + +Example: + clock-measure@8758 { + compatible = "amlogic,meson-gx-clk-measure"; + reg = <0x0 0x8758 0x0 0x10>; + }; |