This patch adds support for identifying the RZ/G2N (r8a774b1) SoC.

Signed-off-by: Biju Das <[email protected]>
---
 drivers/soc/renesas/renesas-soc.c | 8 ++++++++
 1 file changed, 8 insertions(+)

diff --git a/drivers/soc/renesas/renesas-soc.c 
b/drivers/soc/renesas/renesas-soc.c
index 3299cf53..45135bc 100644
--- a/drivers/soc/renesas/renesas-soc.c
+++ b/drivers/soc/renesas/renesas-soc.c
@@ -116,6 +116,11 @@ static const struct renesas_soc soc_rz_g2m __initconst 
__maybe_unused = {
        .id     = 0x52,
 };
 
+static const struct renesas_soc soc_rz_g2n __initconst __maybe_unused = {
+       .family = &fam_rzg2,
+       .id     = 0x55,
+};
+
 static const struct renesas_soc soc_rz_g2e __initconst __maybe_unused = {
        .family = &fam_rzg2,
        .id     = 0x57,
@@ -227,6 +232,9 @@ static const struct of_device_id renesas_socs[] __initconst 
= {
 #ifdef CONFIG_ARCH_R8A774A1
        { .compatible = "renesas,r8a774a1",     .data = &soc_rz_g2m },
 #endif
+#ifdef CONFIG_ARCH_R8A774B1
+       { .compatible = "renesas,r8a774b1",     .data = &soc_rz_g2n },
+#endif
 #ifdef CONFIG_ARCH_R8A774C0
        { .compatible = "renesas,r8a774c0",     .data = &soc_rz_g2e },
 #endif
-- 
2.7.4

Reply via email to