Before this series of patches, X1830 used TCU to provide clocksource and clockevent, but because the timer of TCU is only 16 bits, so the timing length is only 16 bits. In actual use, it is easy to cause some problems such as data loss during data transmission. The SYSOST driver is provided in this series of patches, which can provide 32bit timing length, so use SYSOST instead of TCU to provide clocksource and clockevent to solve the aforementioned problems. Tested-by: 周正 (Zhou Zheng) <sernia.zhou@xxxxxxxxxxx> Signed-off-by: 周琰杰 (Zhou Yanjie) <zhouyanjie@xxxxxxxxxxxxxx> --- Notes: v7: New patch. arch/mips/boot/dts/ingenic/cu1830-neo.dts | 9 +++------ arch/mips/boot/dts/ingenic/x1830.dtsi | 16 ++++++++++++++++ 2 files changed, 19 insertions(+), 6 deletions(-) diff --git a/arch/mips/boot/dts/ingenic/cu1830-neo.dts b/arch/mips/boot/dts/ingenic/cu1830-neo.dts index 640f96c00d63..ac4c9fbf8bca 100644 --- a/arch/mips/boot/dts/ingenic/cu1830-neo.dts +++ b/arch/mips/boot/dts/ingenic/cu1830-neo.dts @@ -3,7 +3,7 @@ #include "x1830.dtsi" #include <dt-bindings/gpio/gpio.h> -#include <dt-bindings/clock/ingenic,tcu.h> +#include <dt-bindings/clock/ingenic,sysost.h> #include <dt-bindings/interrupt-controller/irq.h> / { @@ -43,13 +43,10 @@ clock-frequency = <24000000>; }; -&tcu { +&ost { /* 1500 kHz for the system timer and clocksource */ - assigned-clocks = <&tcu TCU_CLK_TIMER0>, <&tcu TCU_CLK_TIMER2>; + assigned-clocks = <&ost OST_CLK_PERCPU_TIMER>, <&ost OST_CLK_GLOBAL_TIMER>; assigned-clock-rates = <1500000>, <1500000>; - - /* Use channel #0 for the system timer channel #2 for the clocksource */ - ingenic,pwm-channels-mask = <0xfa>; }; &uart1 { diff --git a/arch/mips/boot/dts/ingenic/x1830.dtsi b/arch/mips/boot/dts/ingenic/x1830.dtsi index eb1214481a33..99eac297ee34 100644 --- a/arch/mips/boot/dts/ingenic/x1830.dtsi +++ b/arch/mips/boot/dts/ingenic/x1830.dtsi @@ -47,6 +47,22 @@ clock-names = "ext", "rtc"; }; + ost: timer@12000000 { + compatible = "ingenic,x1830-ost", "ingenic,x1000-ost"; + reg = <0x12000000 0x1000>; + + #clock-cells = <1>; + + clocks = <&cgu X1830_CLK_OST>; + clock-names = "ost"; + + interrupt-controller; + #interrupt-cells = <1>; + + interrupt-parent = <&cpuintc>; + interrupts = <4>; + }; + tcu: timer@10002000 { compatible = "ingenic,x1830-tcu", "ingenic,x1000-tcu", "simple-mfd"; reg = <0x10002000 0x1000>; -- 2.11.0