From: Hai Pham Date: Tue, 28 Feb 2023 21:34:45 +0000 (+0100) Subject: ARM: renesas: Add R8A779F0 S4 Kconfig entry and PRR ID X-Git-Url: http://git.dujemihanovic.xyz/img/sics.gif?a=commitdiff_plain;h=8f098fd623c6e0064ca5b5273225f9381630a68d;p=u-boot.git ARM: renesas: Add R8A779F0 S4 Kconfig entry and PRR ID Add Kconfig entry and PRR ID to support R8A779F0 S4 SoC. Reviewed-by: Marek Vasut Signed-off-by: Hai Pham Signed-off-by: Marek Vasut [Marek: Update commit message] --- diff --git a/arch/arm/mach-rmobile/Kconfig.rcar4 b/arch/arm/mach-rmobile/Kconfig.rcar4 index 104672f938..ad9fc3a4bd 100644 --- a/arch/arm/mach-rmobile/Kconfig.rcar4 +++ b/arch/arm/mach-rmobile/Kconfig.rcar4 @@ -8,6 +8,12 @@ config R8A779A0 imply CLK_R8A779A0 imply PINCTRL_PFC_R8A779A0 +config R8A779F0 + bool "Renesas SoC R8A779F0" + select GICV3 + imply CLK_R8A779F0 + imply PINCTRL_PFC_R8A779F0 + endmenu choice diff --git a/arch/arm/mach-rmobile/cpu_info.c b/arch/arm/mach-rmobile/cpu_info.c index 07f7c2286a..02477c2cc7 100644 --- a/arch/arm/mach-rmobile/cpu_info.c +++ b/arch/arm/mach-rmobile/cpu_info.c @@ -76,6 +76,7 @@ static const struct { { RMOBILE_CPU_TYPE_R8A77990, "R8A77990" }, { RMOBILE_CPU_TYPE_R8A77995, "R8A77995" }, { RMOBILE_CPU_TYPE_R8A779A0, "R8A779A0" }, + { RMOBILE_CPU_TYPE_R8A779F0, "R8A779F0" }, { 0x0, "CPU" }, }; diff --git a/arch/arm/mach-rmobile/include/mach/rmobile.h b/arch/arm/mach-rmobile/include/mach/rmobile.h index af5db5c3fd..7583844147 100644 --- a/arch/arm/mach-rmobile/include/mach/rmobile.h +++ b/arch/arm/mach-rmobile/include/mach/rmobile.h @@ -39,6 +39,7 @@ #define RMOBILE_CPU_TYPE_R8A77990 0x57 #define RMOBILE_CPU_TYPE_R8A77995 0x58 #define RMOBILE_CPU_TYPE_R8A779A0 0x59 +#define RMOBILE_CPU_TYPE_R8A779F0 0x5A #ifndef __ASSEMBLY__ const u8 *rzg_get_cpu_name(void);