]> git.dujemihanovic.xyz Git - u-boot.git/commitdiff
ARM: renesas: Add R8A779G0 V4H Kconfig entry and PRR ID
authorHai Pham <hai.pham.ud@renesas.com>
Tue, 28 Feb 2023 21:37:07 +0000 (22:37 +0100)
committerMarek Vasut <marek.vasut+renesas@mailbox.org>
Fri, 7 Apr 2023 15:13:28 +0000 (17:13 +0200)
Add Kconfig entry and PRR ID to support R8A779G0 V4H SoC.

Reviewed-by: Marek Vasut <marek.vasut+renesas@mailbox.org>
Signed-off-by: Hai Pham <hai.pham.ud@renesas.com>
Signed-off-by: Marek Vasut <marek.vasut+renesas@mailbox.org>
[Marek: Update commit message]

arch/arm/mach-rmobile/Kconfig.rcar4
arch/arm/mach-rmobile/cpu_info.c
arch/arm/mach-rmobile/include/mach/rmobile.h

index 262791635e5cc0234bd90d55056d2d909c759a15..2dc9f00b5d6af93de117c883e59f23d1d4efcaf4 100644 (file)
@@ -14,6 +14,12 @@ config R8A779F0
        imply CLK_R8A779F0
        imply PINCTRL_PFC_R8A779F0
 
+config R8A779G0
+       bool "Renesas SoC R8A779G0"
+       select GICV3
+       imply CLK_R8A779G0
+       imply PINCTRL_PFC_R8A779G0
+
 endmenu
 
 choice
index 02477c2cc7cda84ffa743a4a48f41a0197a3dd35..7e7465a2c8b1973ec8a8a1cf7b06050596479527 100644 (file)
@@ -77,6 +77,7 @@ static const struct {
        { RMOBILE_CPU_TYPE_R8A77995, "R8A77995" },
        { RMOBILE_CPU_TYPE_R8A779A0, "R8A779A0" },
        { RMOBILE_CPU_TYPE_R8A779F0, "R8A779F0" },
+       { RMOBILE_CPU_TYPE_R8A779G0, "R8A779G0" },
        { 0x0, "CPU" },
 };
 
index 758384414714c0bd6fe0ae8262b5120d100fb0a5..a14c2aad0a68a23c499a9908490e8e34c8d50235 100644 (file)
@@ -40,6 +40,7 @@
 #define RMOBILE_CPU_TYPE_R8A77995      0x58
 #define RMOBILE_CPU_TYPE_R8A779A0      0x59
 #define RMOBILE_CPU_TYPE_R8A779F0      0x5A
+#define RMOBILE_CPU_TYPE_R8A779G0      0x5C
 
 #ifndef __ASSEMBLY__
 const u8 *rzg_get_cpu_name(void);