From: Hai Pham Date: Sun, 28 Jan 2024 15:52:04 +0000 (+0100) Subject: ARM: renesas: Add R8A779H0 V4M Kconfig entry and PRR ID X-Git-Url: http://git.dujemihanovic.xyz/img/static/gitweb.css?a=commitdiff_plain;h=e02ec8cf49d0d4f651f74a0f577d05593e22094c;p=u-boot.git ARM: renesas: Add R8A779H0 V4M Kconfig entry and PRR ID Add Kconfig entry and PRR ID to support R8A779H0 V4M SoC. Reviewed-by: Paul Barker Signed-off-by: Hai Pham --- diff --git a/arch/arm/mach-rmobile/Kconfig.rcar4 b/arch/arm/mach-rmobile/Kconfig.rcar4 index d4f93c89ca..3c8d683974 100644 --- a/arch/arm/mach-rmobile/Kconfig.rcar4 +++ b/arch/arm/mach-rmobile/Kconfig.rcar4 @@ -20,6 +20,12 @@ config R8A779G0 imply CLK_R8A779G0 imply PINCTRL_PFC_R8A779G0 +config R8A779H0 + bool "Renesas SoC R8A779H0" + select GICV3 + imply CLK_R8A779H0 + imply PINCTRL_PFC_R8A779H0 + endmenu choice diff --git a/arch/arm/mach-rmobile/cpu_info.c b/arch/arm/mach-rmobile/cpu_info.c index 895c0f5336..3d5d5ba79a 100644 --- a/arch/arm/mach-rmobile/cpu_info.c +++ b/arch/arm/mach-rmobile/cpu_info.c @@ -78,6 +78,7 @@ static const struct { { RMOBILE_CPU_TYPE_R8A779A0, "R8A779A0" }, { RMOBILE_CPU_TYPE_R8A779F0, "R8A779F0" }, { RMOBILE_CPU_TYPE_R8A779G0, "R8A779G0" }, + { RMOBILE_CPU_TYPE_R8A779H0, "R8A779H0" }, { 0x0, "CPU" }, }; diff --git a/arch/arm/mach-rmobile/include/mach/rmobile.h b/arch/arm/mach-rmobile/include/mach/rmobile.h index 88b8b78671..f0216210ba 100644 --- a/arch/arm/mach-rmobile/include/mach/rmobile.h +++ b/arch/arm/mach-rmobile/include/mach/rmobile.h @@ -43,6 +43,7 @@ #define RMOBILE_CPU_TYPE_R8A779A0 0x59 #define RMOBILE_CPU_TYPE_R8A779F0 0x5A #define RMOBILE_CPU_TYPE_R8A779G0 0x5C +#define RMOBILE_CPU_TYPE_R8A779H0 0x5D #define RMOBILE_CPU_TYPE_R9A07G044L 0x9A070440 #ifndef __ASSEMBLY__