diff options
author | Fabrizio Castro <fabrizio.castro@bp.renesas.com> | 2018-09-10 11:09:41 -0400 |
---|---|---|
committer | Simon Horman <horms+renesas@verge.net.au> | 2018-09-17 04:29:13 -0400 |
commit | 91e95ecd4b4ff35624ac48bdf6dcf2d855f0b63e (patch) | |
tree | f403d22f9d58bf325cbabbed6da80373e57cdc35 | |
parent | fe46b8229f287e912b8c8d28bf8dde4cd704c17e (diff) |
soc: renesas: rcar-rst: Add support for RZ/G2E
Signed-off-by: Fabrizio Castro <fabrizio.castro@bp.renesas.com>
Reviewed-by: Biju Das <biju.das@bp.renesas.com>
Signed-off-by: Simon Horman <horms+renesas@verge.net.au>
-rw-r--r-- | drivers/soc/renesas/Kconfig | 6 | ||||
-rw-r--r-- | drivers/soc/renesas/rcar-rst.c | 1 |
2 files changed, 4 insertions, 3 deletions
diff --git a/drivers/soc/renesas/Kconfig b/drivers/soc/renesas/Kconfig index e7b7d9fcbc76..05086ac2108b 100644 --- a/drivers/soc/renesas/Kconfig +++ b/drivers/soc/renesas/Kconfig | |||
@@ -4,9 +4,9 @@ config SOC_RENESAS | |||
4 | default y if ARCH_RENESAS | 4 | default y if ARCH_RENESAS |
5 | select SOC_BUS | 5 | select SOC_BUS |
6 | select RST_RCAR if ARCH_RCAR_GEN1 || ARCH_RCAR_GEN2 || \ | 6 | select RST_RCAR if ARCH_RCAR_GEN1 || ARCH_RCAR_GEN2 || \ |
7 | ARCH_R8A774A1 || ARCH_R8A7795 || ARCH_R8A7796 || \ | 7 | ARCH_R8A774A1 || ARCH_R8A774C0 || ARCH_R8A7795 || \ |
8 | ARCH_R8A77965 || ARCH_R8A77970 || ARCH_R8A77980 || \ | 8 | ARCH_R8A7796 || ARCH_R8A77965 || ARCH_R8A77970 || \ |
9 | ARCH_R8A77990 || ARCH_R8A77995 | 9 | ARCH_R8A77980 || ARCH_R8A77990 || ARCH_R8A77995 |
10 | select SYSC_R8A7743 if ARCH_R8A7743 | 10 | select SYSC_R8A7743 if ARCH_R8A7743 |
11 | select SYSC_R8A7745 if ARCH_R8A7745 | 11 | select SYSC_R8A7745 if ARCH_R8A7745 |
12 | select SYSC_R8A77470 if ARCH_R8A77470 | 12 | select SYSC_R8A77470 if ARCH_R8A77470 |
diff --git a/drivers/soc/renesas/rcar-rst.c b/drivers/soc/renesas/rcar-rst.c index 0f9f487ca6e2..69a3125ceaad 100644 --- a/drivers/soc/renesas/rcar-rst.c +++ b/drivers/soc/renesas/rcar-rst.c | |||
@@ -44,6 +44,7 @@ static const struct of_device_id rcar_rst_matches[] __initconst = { | |||
44 | { .compatible = "renesas,r8a77470-rst", .data = &rcar_rst_gen2 }, | 44 | { .compatible = "renesas,r8a77470-rst", .data = &rcar_rst_gen2 }, |
45 | /* RZ/G2 is handled like R-Car Gen3 */ | 45 | /* RZ/G2 is handled like R-Car Gen3 */ |
46 | { .compatible = "renesas,r8a774a1-rst", .data = &rcar_rst_gen3 }, | 46 | { .compatible = "renesas,r8a774a1-rst", .data = &rcar_rst_gen3 }, |
47 | { .compatible = "renesas,r8a774c0-rst", .data = &rcar_rst_gen3 }, | ||
47 | /* R-Car Gen1 */ | 48 | /* R-Car Gen1 */ |
48 | { .compatible = "renesas,r8a7778-reset-wdt", .data = &rcar_rst_gen1 }, | 49 | { .compatible = "renesas,r8a7778-reset-wdt", .data = &rcar_rst_gen1 }, |
49 | { .compatible = "renesas,r8a7779-reset-wdt", .data = &rcar_rst_gen1 }, | 50 | { .compatible = "renesas,r8a7779-reset-wdt", .data = &rcar_rst_gen1 }, |