Commit c3299eb2 authored by Biju Das's avatar Biju Das Committed by Simon Horman
Browse files

soc: renesas: rcar-sysc: Add r8a7744 support



Add support for RZ/G1N (R8A7744) SoC power areas to the R-Car SYSC driver.

Signed-off-by: default avatarBiju Das <biju.das@bp.renesas.com>
Reviewed-by: default avatarFabrizio Castro <fabrizio.castro@bp.renesas.com>
Reviewed-by: default avatarGeert Uytterhoeven <geert+renesas@glider.be>
Signed-off-by: default avatarSimon Horman <horms+renesas@verge.net.au>
parent 841e37a5
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -7,7 +7,7 @@ config SOC_RENESAS
			   ARCH_R8A774A1 || ARCH_R8A774C0 || ARCH_R8A7795 || \
			   ARCH_R8A7796 || ARCH_R8A77965 || ARCH_R8A77970 || \
			   ARCH_R8A77980 || ARCH_R8A77990 || ARCH_R8A77995
	select SYSC_R8A7743 if ARCH_R8A7743
	select SYSC_R8A7743 if ARCH_R8A7743 || ARCH_R8A7744
	select SYSC_R8A7745 if ARCH_R8A7745
	select SYSC_R8A77470 if ARCH_R8A77470
	select SYSC_R8A774A1 if ARCH_R8A774A1
+2 −0
Original line number Diff line number Diff line
@@ -265,6 +265,8 @@ finalize:
static const struct of_device_id rcar_sysc_matches[] __initconst = {
#ifdef CONFIG_SYSC_R8A7743
	{ .compatible = "renesas,r8a7743-sysc", .data = &r8a7743_sysc_info },
	/* RZ/G1N is identical to RZ/G2M w.r.t. power domains. */
	{ .compatible = "renesas,r8a7744-sysc", .data = &r8a7743_sysc_info },
#endif
#ifdef CONFIG_SYSC_R8A7745
	{ .compatible = "renesas,r8a7745-sysc", .data = &r8a7745_sysc_info },