@@ -68,6 +68,11 @@ config ARCH_R8A7743
bool "RZ/G1M (R8A77430)"
select ARCH_RCAR_GEN2
+config ARCH_R8A7744
+ bool "RZ/G1N (R8A77440)"
+ select ARCH_RCAR_GEN2
+ select ARM_ERRATA_798181 if SMP
+
config ARCH_R8A7745
bool "RZ/G1E (R8A77450)"
select ARCH_RCAR_GEN2
@@ -99,6 +99,8 @@ void __init rcar_gen2_pm_init(void)
syscier = 0x00111003;
else if (of_machine_is_compatible("renesas,r8a7743"))
syscier = 0x00101003;
+ else if (of_machine_is_compatible("renesas,r8a7744"))
+ syscier = 0x00101003;
else if (of_machine_is_compatible("renesas,r8a7745"))
syscier = 0x00300060;
else if (of_machine_is_compatible("renesas,r8a77470"))
@@ -208,6 +208,7 @@ MACHINE_END
static const char * const rz_g1_boards_compat_dt[] __initconst = {
"renesas,r8a7743",
+ "renesas,r8a7744",
"renesas,r8a7745",
"renesas,r8a77470",
NULL,