diff options
author | Olof Johansson <olof@lixom.net> | 2018-11-30 15:47:23 -0800 |
---|---|---|
committer | Olof Johansson <olof@lixom.net> | 2018-11-30 15:47:23 -0800 |
commit | 0be66f394efdfb832f01248a0e043ae56c886cc1 (patch) | |
tree | b615366807d134c6372220991e1e399f48795a43 /Documentation/devicetree/bindings/soc | |
parent | 1e8518aa65934f6c4cfa7e8e39af71f915c22d6c (diff) | |
parent | 2b45ebef39a2caad409f70b22b4a2a41df9815b6 (diff) |
Merge tag 'amlogic-drivers' of https://git.kernel.org/pub/scm/linux/kernel/git/khilman/linux-amlogic into next/drivers
Amlogic SoC drivers for v4.21
- new clock measurement driver and bindings
- COMPILE_TEST fix
* tag 'amlogic-drivers' of https://git.kernel.org/pub/scm/linux/kernel/git/khilman/linux-amlogic:
soc: amlogic: Add Meson Clock Measure driver
dt-bindings: amlogic: Add Internal Clock Measurer bindings
drivers: soc: Allow building the amlogic drivers without ARCH_MESON
Signed-off-by: Olof Johansson <olof@lixom.net>
Diffstat (limited to 'Documentation/devicetree/bindings/soc')
-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>; + }; |