[PATCH v1 3/9] rockchip: RK3399: Read the reset cause from clock reset unit for RK3399 SoC
Anand Moon
anand at edgeble.ai
Thu May 16 10:59:03 CEST 2024
Read the reset cause from clock reset unit for RK3399 SoC.
Cc: Jagan Teki <jagan at edgeble.ai>
Signed-off-by: Anand Moon <anand at edgeble.ai>
---
arch/arm/mach-rockchip/cpu-info.c | 4 ++++
1 file changed, 4 insertions(+)
diff --git a/arch/arm/mach-rockchip/cpu-info.c b/arch/arm/mach-rockchip/cpu-info.c
index fce4bd7541..77833c8fce 100644
--- a/arch/arm/mach-rockchip/cpu-info.c
+++ b/arch/arm/mach-rockchip/cpu-info.c
@@ -10,6 +10,8 @@
#include <asm/arch-rockchip/cru.h>
#if IS_ENABLED(CONFIG_ROCKCHIP_RK3328)
#include <asm/arch-rockchip/cru_rk3328.h>
+#elif IS_ENABLED(CONFIG_ROCKCHIP_RK3399)
+#include <asm/arch-rockchip/cru_rk3399.h>
#endif
#include <asm/arch-rockchip/hardware.h>
#include <linux/err.h>
@@ -18,6 +20,8 @@ char *get_reset_cause(void)
{
#if IS_ENABLED(CONFIG_ROCKCHIP_RK3328)
struct rk3328_cru *cru = rockchip_get_cru();
+#elif IS_ENABLED(CONFIG_ROCKCHIP_RK3399)
+ struct rockchip_cru *cru = rockchip_get_cru();
#endif
char *cause = NULL;
--
2.45.0
More information about the U-Boot
mailing list