diff options
author | Jacopo Mondi <jacopo+renesas@jmondi.org> | 2018-02-20 10:12:04 -0500 |
---|---|---|
committer | Simon Horman <horms+renesas@verge.net.au> | 2018-02-23 09:55:01 -0500 |
commit | bf79cd635db50fab2319add2462cf803ff76d346 (patch) | |
tree | fe1b5317c410a15559c182ad5b9f6a4cd926cb20 | |
parent | ff938cd14d67a7040258759b46e3d5b4548f4c2c (diff) |
soc: renesas: rcar-rst: Add support for R-Car M3-N
Signed-off-by: Jacopo Mondi <jacopo+renesas@jmondi.org>
Reviewed-by: Geert Uytterhoeven <geert+renesas@glider.be>
Signed-off-by: Simon Horman <horms+renesas@verge.net.au>
-rw-r--r-- | Documentation/devicetree/bindings/reset/renesas,rst.txt | 1 | ||||
-rw-r--r-- | drivers/soc/renesas/Kconfig | 4 | ||||
-rw-r--r-- | drivers/soc/renesas/rcar-rst.c | 1 |
3 files changed, 4 insertions, 2 deletions
diff --git a/Documentation/devicetree/bindings/reset/renesas,rst.txt b/Documentation/devicetree/bindings/reset/renesas,rst.txt index a55b88658446..294a0dae106a 100644 --- a/Documentation/devicetree/bindings/reset/renesas,rst.txt +++ b/Documentation/devicetree/bindings/reset/renesas,rst.txt | |||
@@ -26,6 +26,7 @@ Required properties: | |||
26 | - "renesas,r8a7794-rst" (R-Car E2) | 26 | - "renesas,r8a7794-rst" (R-Car E2) |
27 | - "renesas,r8a7795-rst" (R-Car H3) | 27 | - "renesas,r8a7795-rst" (R-Car H3) |
28 | - "renesas,r8a7796-rst" (R-Car M3-W) | 28 | - "renesas,r8a7796-rst" (R-Car M3-W) |
29 | - "renesas,r8a77965-rst" (R-Car M3-N) | ||
29 | - "renesas,r8a77970-rst" (R-Car V3M) | 30 | - "renesas,r8a77970-rst" (R-Car V3M) |
30 | - "renesas,r8a77980-rst" (R-Car V3H) | 31 | - "renesas,r8a77980-rst" (R-Car V3H) |
31 | - "renesas,r8a77995-rst" (R-Car D3) | 32 | - "renesas,r8a77995-rst" (R-Car D3) |
diff --git a/drivers/soc/renesas/Kconfig b/drivers/soc/renesas/Kconfig index 7106a6330210..3bbe6114a420 100644 --- a/drivers/soc/renesas/Kconfig +++ b/drivers/soc/renesas/Kconfig | |||
@@ -3,8 +3,8 @@ config SOC_RENESAS | |||
3 | default y if ARCH_RENESAS | 3 | default y if ARCH_RENESAS |
4 | select SOC_BUS | 4 | select SOC_BUS |
5 | select RST_RCAR if ARCH_RCAR_GEN1 || ARCH_RCAR_GEN2 || \ | 5 | select RST_RCAR if ARCH_RCAR_GEN1 || ARCH_RCAR_GEN2 || \ |
6 | ARCH_R8A7795 || ARCH_R8A7796 || ARCH_R8A77970 || \ | 6 | ARCH_R8A7795 || ARCH_R8A7796 || ARCH_R8A77965 || \ |
7 | ARCH_R8A77980 || ARCH_R8A77995 | 7 | ARCH_R8A77970 || ARCH_R8A77980 || ARCH_R8A77995 |
8 | select SYSC_R8A7743 if ARCH_R8A7743 | 8 | select SYSC_R8A7743 if ARCH_R8A7743 |
9 | select SYSC_R8A7745 if ARCH_R8A7745 | 9 | select SYSC_R8A7745 if ARCH_R8A7745 |
10 | select SYSC_R8A7779 if ARCH_R8A7779 | 10 | select SYSC_R8A7779 if ARCH_R8A7779 |
diff --git a/drivers/soc/renesas/rcar-rst.c b/drivers/soc/renesas/rcar-rst.c index 34136664ece4..8e9cb7996ab0 100644 --- a/drivers/soc/renesas/rcar-rst.c +++ b/drivers/soc/renesas/rcar-rst.c | |||
@@ -56,6 +56,7 @@ static const struct of_device_id rcar_rst_matches[] __initconst = { | |||
56 | /* R-Car Gen3 */ | 56 | /* R-Car Gen3 */ |
57 | { .compatible = "renesas,r8a7795-rst", .data = &rcar_rst_gen3 }, | 57 | { .compatible = "renesas,r8a7795-rst", .data = &rcar_rst_gen3 }, |
58 | { .compatible = "renesas,r8a7796-rst", .data = &rcar_rst_gen3 }, | 58 | { .compatible = "renesas,r8a7796-rst", .data = &rcar_rst_gen3 }, |
59 | { .compatible = "renesas,r8a77965-rst", .data = &rcar_rst_gen3 }, | ||
59 | { .compatible = "renesas,r8a77970-rst", .data = &rcar_rst_gen3 }, | 60 | { .compatible = "renesas,r8a77970-rst", .data = &rcar_rst_gen3 }, |
60 | { .compatible = "renesas,r8a77980-rst", .data = &rcar_rst_gen3 }, | 61 | { .compatible = "renesas,r8a77980-rst", .data = &rcar_rst_gen3 }, |
61 | { .compatible = "renesas,r8a77995-rst", .data = &rcar_rst_gen3 }, | 62 | { .compatible = "renesas,r8a77995-rst", .data = &rcar_rst_gen3 }, |