diff options
author | Geert Uytterhoeven <geert+renesas@glider.be> | 2017-03-10 14:48:29 +0100 |
---|---|---|
committer | Simon Horman <horms+renesas@verge.net.au> | 2017-03-13 10:25:49 +0100 |
commit | 8848e1b14231a40ed66229fb3ee98519b32f2ae7 (patch) | |
tree | c86c9c4b957716bc2d3a99df975b874a17405ebb | |
parent | Linux 4.11-rc1 (diff) | |
download | linux-8848e1b14231a40ed66229fb3ee98519b32f2ae7.tar.xz linux-8848e1b14231a40ed66229fb3ee98519b32f2ae7.zip |
soc: renesas: Identify RZ/G1H
Add support for identifying the RZ/G1H (r8a7742) SoC.
Signed-off-by: Geert Uytterhoeven <geert+renesas@glider.be>
Signed-off-by: Simon Horman <horms+renesas@verge.net.au>
-rw-r--r-- | drivers/soc/renesas/renesas-soc.c | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/drivers/soc/renesas/renesas-soc.c b/drivers/soc/renesas/renesas-soc.c index 330960312296..f0172e59c040 100644 --- a/drivers/soc/renesas/renesas-soc.c +++ b/drivers/soc/renesas/renesas-soc.c @@ -80,6 +80,11 @@ static const struct renesas_soc soc_rmobile_a1 __initconst __maybe_unused = { .id = 0x40, }; +static const struct renesas_soc soc_rz_g1h __initconst __maybe_unused = { + .family = &fam_rzg, + .id = 0x45, +}; + static const struct renesas_soc soc_rz_g1m __initconst __maybe_unused = { .family = &fam_rzg, .id = 0x47, @@ -150,6 +155,9 @@ static const struct of_device_id renesas_socs[] __initconst = { #ifdef CONFIG_ARCH_R8A7740 { .compatible = "renesas,r8a7740", .data = &soc_rmobile_a1 }, #endif +#ifdef CONFIG_ARCH_R8A7742 + { .compatible = "renesas,r8a7742", .data = &soc_rz_g1h }, +#endif #ifdef CONFIG_ARCH_R8A7743 { .compatible = "renesas,r8a7743", .data = &soc_rz_g1m }, #endif |