Linux kernel mirror (for testing) git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
kernel os linux

soc: renesas: identify R-Car E3

This patch adds support for identifying the R-Car E3 (R8A77990) SoC.

Signed-off-by: Takeshi Kihara <takeshi.kihara.df@renesas.com>
Signed-off-by: Yoshihiro Shimoda <yoshihiro.shimoda.uh@renesas.com>
Reviewed-by: Geert Uytterhoeven <geert+renesas@glider.be>
Signed-off-by: Simon Horman <horms+renesas@verge.net.au>

authored by

Takeshi Kihara and committed by
Simon Horman
44842d45 2f095c26

+8
+8
drivers/soc/renesas/renesas-soc.c
··· 164 164 .id = 0x56, 165 165 }; 166 166 167 + static const struct renesas_soc soc_rcar_e3 __initconst __maybe_unused = { 168 + .family = &fam_rcar_gen3, 169 + .id = 0x57, 170 + }; 171 + 167 172 static const struct renesas_soc soc_rcar_d3 __initconst __maybe_unused = { 168 173 .family = &fam_rcar_gen3, 169 174 .id = 0x58, ··· 240 235 #endif 241 236 #ifdef CONFIG_ARCH_R8A77980 242 237 { .compatible = "renesas,r8a77980", .data = &soc_rcar_v3h }, 238 + #endif 239 + #ifdef CONFIG_ARCH_R8A77990 240 + { .compatible = "renesas,r8a77990", .data = &soc_rcar_e3 }, 243 241 #endif 244 242 #ifdef CONFIG_ARCH_R8A77995 245 243 { .compatible = "renesas,r8a77995", .data = &soc_rcar_d3 },