diff mbox series

[RFC,v2,06/23] rockchip: RK3568: Read the reset cause from clock reset unit for RK356x SoC

Message ID 20240531141837.13189-7-linux.amoon@gmail.com
State RFC
Delegated to: Kever Yang
Headers show
Series Enable display cpuinfo to get the reset cause | expand

Commit Message

Anand Moon May 31, 2024, 2:18 p.m. UTC
From: Anand Moon <anand@edgeble.ai>

Read the reset cause from clock reset unit for RK356x SoC.

Cc: Jagan Teki <jagan@edgeble.ai>
Signed-off-by: Anand Moon <anand@edgeble.ai>
Signed-off-by: Anand Moon <linux.amoon@gmail.com>
---
 arch/arm/mach-rockchip/cpu-info.c | 2 ++
 1 file changed, 2 insertions(+)
diff mbox series

Patch

diff --git a/arch/arm/mach-rockchip/cpu-info.c b/arch/arm/mach-rockchip/cpu-info.c
index e7cbcf5090..e12f84a1d2 100644
--- a/arch/arm/mach-rockchip/cpu-info.c
+++ b/arch/arm/mach-rockchip/cpu-info.c
@@ -18,6 +18,8 @@  char *get_reset_cause(void)
 	struct rk3328_cru *cru = rockchip_get_cru();
 #elif IS_ENABLED(CONFIG_ROCKCHIP_RK3399)
 	struct rockchip_cru *cru = rockchip_get_cru();
+#elif IS_ENABLED(CONFIG_ROCKCHIP_RK3568)
+	struct rk3568_cru *cru = rockchip_get_cru();
 #endif
 	char *cause = NULL;