Tool/software:
Hi,TI
I initialized timer19 on mcu1_0, but after linux is started, timer19's TCLR register is overwritten to 0.
Is there a program to initialize the timer? Where is the program?
Thanks.
This thread has been locked.
If you have a related question, please click the "Ask a related question" button in the top right corner. The newly created question will be automatically linked to this question.
Tool/software:
Hi,TI
I initialized timer19 on mcu1_0, but after linux is started, timer19's TCLR register is overwritten to 0.
Is there a program to initialize the timer? Where is the program?
Thanks.
Hi,
Seems like Linux is initializing the timer19.
Below diff in Linux DTS can help avoid that:
diff --git a/arch/arm64/boot/dts/ti/k3-j721e-main.dtsi b/arch/arm64/boot/dts/ti/k3-j721e-main.dtsi
index 5377f462f..62abb68bf 100644
--- a/arch/arm64/boot/dts/ti/k3-j721e-main.dtsi
+++ b/arch/arm64/boot/dts/ti/k3-j721e-main.dtsi
@@ -1369,6 +1369,7 @@
assigned-clock-parents = <&k3_clks 70 2>, <&k3_clks 336 1>;
power-domains = <&k3_pds 70 TI_SCI_PD_EXCLUSIVE>;
ti,timer-pwm;
+ status = "disabled";
};
main_uart0: serial@2800000 {
- Keerthy