diff options
author | Martin Blumenstingl <martin.blumenstingl@googlemail.com> | 2019-12-08 19:05:23 +0100 |
---|---|---|
committer | Kevin Hilman <khilman@baylibre.com> | 2019-12-11 11:26:26 -0800 |
commit | 630ea3108adf0446b6b4194f3f42bc0bfe245d1d (patch) | |
tree | a6c849e8308ecf31c28332e36d11fce1e12ea644 /arch/arm/boot/dts/meson.dtsi | |
parent | 9cf7956865b844bcb13602410cc0119f4eb46860 (diff) |
ARM: dts: meson: provide the XTAL clock using a fixed-clock
The clock controller driver has provided the XTAL clock so far. This
does not match how the hardware actually works because the XTAL clock is
an actual crystal which is mounted on the PCB.
Add the "xtal" clock to meson.dtsi and replace all references to the
clock controller's CLKID_XTAL with the new xtal clock node.
Signed-off-by: Martin Blumenstingl <martin.blumenstingl@googlemail.com>
Signed-off-by: Kevin Hilman <khilman@baylibre.com>
Diffstat (limited to 'arch/arm/boot/dts/meson.dtsi')
-rw-r--r-- | arch/arm/boot/dts/meson.dtsi | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/arch/arm/boot/dts/meson.dtsi b/arch/arm/boot/dts/meson.dtsi index c4447f6c8b2c..5d198309058a 100644 --- a/arch/arm/boot/dts/meson.dtsi +++ b/arch/arm/boot/dts/meson.dtsi @@ -282,4 +282,11 @@ }; }; }; + + xtal: xtal-clk { + compatible = "fixed-clock"; + clock-frequency = <24000000>; + clock-output-names = "xtal"; + #clock-cells = <0>; + }; }; /* end of / */ |