[PATCH RFC v2 16/23] rockchip: RK3368: Read the reset cause from clock reset unit for RK3368 SoC
Dragan Simic
dsimic at manjaro.org
Fri May 31 23:51:04 CEST 2024
Hello Anand,
On 2024-05-31 16:18, Anand Moon wrote:
> From: Anand Moon <anand at edgeble.ai>
>
> Read the reset cause from clock reset unit for RK3368 SoC.
>
> Cc: Jagan Teki <jagan at edgeble.ai>
> Signed-off-by: Anand Moon <anand at edgeble.ai>
> Signed-off-by: Anand Moon <linux.amoon at gmail.com>
> ---
> arch/arm/include/asm/arch-rockchip/cru.h | 2 ++
> arch/arm/mach-rockchip/cpu-info.c | 2 ++
> 2 files changed, 4 insertions(+)
>
> diff --git a/arch/arm/include/asm/arch-rockchip/cru.h
> b/arch/arm/include/asm/arch-rockchip/cru.h
> index 6fe73ad0cc..9cdd960fb1 100644
> --- a/arch/arm/include/asm/arch-rockchip/cru.h
> +++ b/arch/arm/include/asm/arch-rockchip/cru.h
> @@ -25,6 +25,8 @@
> #include <asm/arch-rockchip/cru_px30.h>
Although not related to this patch directly, a single space character
should be added between "#" and "include", for consistency.
> #elif defined(CONFIG_ROCKCHIP_RK3308)
> #include <asm/arch-rockchip/cru_rk3308.h>
The same comment as above.
> +#elif defined(CONFIG_ROCKCHIP_RK3368)
> +#include <asm/arch-rockchip/cru_rk3368.h>
The same comment as above, bit this time related to this patch.
> #endif
>
> /* CRU_GLB_RST_ST */
> diff --git a/arch/arm/mach-rockchip/cpu-info.c
> b/arch/arm/mach-rockchip/cpu-info.c
> index dbc126c862..b9d2756a70 100644
> --- a/arch/arm/mach-rockchip/cpu-info.c
> +++ b/arch/arm/mach-rockchip/cpu-info.c
> @@ -28,6 +28,8 @@ char *get_reset_cause(void)
> struct rockchip_cru *cru = rockchip_get_cru();
> #elif IS_ENABLED(CONFIG_ROCKCHIP_RK3308)
> struct rk3308_cru *cru = rockchip_get_cru();
> +#elif IS_ENABLED(CONFIG_ROCKCHIP_RK3368)
> + struct rk3368_cru *cru = rockchip_get_cru();
> #endif
> char *cause = NULL;
More information about the U-Boot
mailing list