diff options
author | Krzysztof Kozlowski <krzk@kernel.org> | 2020-09-07 19:11:31 +0300 |
---|---|---|
committer | Krzysztof Kozlowski <krzk@kernel.org> | 2020-09-09 22:42:13 +0300 |
commit | fd595722c1048c021a4c0427afbb807d4a5dbe0b (patch) | |
tree | 60e3daa391f7d6caeb8b8a2c52260f11efd3e12f /arch/arm/boot/dts/s5pv210-torbreck.dts | |
parent | 7260b363457a22b8723d5cbc43fee67397896d07 (diff) | |
download | linux-fd595722c1048c021a4c0427afbb807d4a5dbe0b.tar.xz |
ARM: dts: s5pv210: add RTC 32 KHz clock in Torbreck
The S3C RTC requires 32768 Hz clock as input which is provided by PMIC.
However the PMIC is not described in DTS at all so at least add
a workaround to model its clock with a fixed-clock.
This fixes dtbs_check warnings:
rtc@e2800000: clocks: [[2, 145]] is too short
rtc@e2800000: clock-names: ['rtc'] is too short
Signed-off-by: Krzysztof Kozlowski <krzk@kernel.org>
Link: https://lore.kernel.org/r/20200907161141.31034-16-krzk@kernel.org
Diffstat (limited to 'arch/arm/boot/dts/s5pv210-torbreck.dts')
-rw-r--r-- | arch/arm/boot/dts/s5pv210-torbreck.dts | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/arch/arm/boot/dts/s5pv210-torbreck.dts b/arch/arm/boot/dts/s5pv210-torbreck.dts index cd25e72ccd84..e18259737684 100644 --- a/arch/arm/boot/dts/s5pv210-torbreck.dts +++ b/arch/arm/boot/dts/s5pv210-torbreck.dts @@ -30,6 +30,13 @@ device_type = "memory"; reg = <0x20000000 0x20000000>; }; + + pmic_ap_clk: clock-0 { + /* Workaround for missing PMIC and its clock */ + compatible = "fixed-clock"; + #clock-cells = <0>; + clock-frequency = <32768>; + }; }; &xusbxti { @@ -54,6 +61,8 @@ &rtc { status = "okay"; + clocks = <&clocks CLK_RTC>, <&pmic_ap_clk>; + clock-names = "rtc", "rtc_src"; }; &sdhci0 { |