diff options
author | Martin Blumenstingl <martin.blumenstingl@googlemail.com> | 2018-11-16 21:42:35 +0100 |
---|---|---|
committer | Kevin Hilman <khilman@baylibre.com> | 2018-11-28 16:49:03 -0800 |
commit | 7b141abe4aa137f362d7324de5a49fd3105f570f (patch) | |
tree | 610922f7c1a6a962a131399445df5ab854a9a40f /arch/arm/boot/dts/meson6.dtsi | |
parent | 523b8b31d3e1292b69f233e1a1814151878d6ac8 (diff) | |
download | linux-7b141abe4aa137f362d7324de5a49fd3105f570f.tar.bz2 |
ARM: dts: meson: add the clock inputs for the Meson timer
The Meson Timer IP block has two clock inputs:
- clk81 for using the system clock as timebase
- xtal for a timebase with 1us, 10us, 100us and 1ms resolution
The clocksource driver does not use these yet, but it's still a good
idea to add them as this describes how the hardware actually works
internally.
Signed-off-by: Martin Blumenstingl <martin.blumenstingl@googlemail.com>
Signed-off-by: Kevin Hilman <khilman@baylibre.com>
Diffstat (limited to 'arch/arm/boot/dts/meson6.dtsi')
-rw-r--r-- | arch/arm/boot/dts/meson6.dtsi | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/arch/arm/boot/dts/meson6.dtsi b/arch/arm/boot/dts/meson6.dtsi index 9b463211339f..ca978ab952cd 100644 --- a/arch/arm/boot/dts/meson6.dtsi +++ b/arch/arm/boot/dts/meson6.dtsi @@ -88,6 +88,11 @@ status = "disabled"; }; +&timer_abcde { + clocks = <&xtal>, <&clk81>; + clock-names = "xtal", "pclk"; +}; + &uart_AO { clocks = <&xtal>, <&clk81>, <&clk81>; clock-names = "xtal", "pclk", "baud"; |