On Mon, Apr 30, 2018 at 04:48:15AM +0900, Yoshihiro Kaneko wrote: > From: Masaharu Hayakawa <masaharu.hayakawa.ry@xxxxxxxxxxx> > > This patch adds r8a77965 support in SDHI. > > Signed-off-by: Masaharu Hayakawa <masaharu.hayakawa.ry@xxxxxxxxxxx> > Signed-off-by: Yoshihiro Kaneko <ykaneko0929@xxxxxxxxx> > --- > Documentation/devicetree/bindings/mmc/tmio_mmc.txt | 1 + > drivers/mmc/host/renesas_sdhi_internal_dmac.c | 2 ++ > 2 files changed, 3 insertions(+) > > diff --git a/Documentation/devicetree/bindings/mmc/tmio_mmc.txt b/Documentation/devicetree/bindings/mmc/tmio_mmc.txt > index ba38252..ee978c9 100644 > --- a/Documentation/devicetree/bindings/mmc/tmio_mmc.txt > +++ b/Documentation/devicetree/bindings/mmc/tmio_mmc.txt > @@ -26,6 +26,7 @@ Required properties: > "renesas,sdhi-r8a7794" - SDHI IP on R8A7794 SoC > "renesas,sdhi-r8a7795" - SDHI IP on R8A7795 SoC > "renesas,sdhi-r8a7796" - SDHI IP on R8A7796 SoC > + "renesas,sdhi-r8a77965" - SDHI IP on R8A77965 SoC > "renesas,sdhi-r8a77980" - SDHI IP on R8A77980 SoC > "renesas,sdhi-r8a77995" - SDHI IP on R8A77995 SoC > "renesas,sdhi-shmobile" - a generic sh-mobile SDHI controller > diff --git a/drivers/mmc/host/renesas_sdhi_internal_dmac.c b/drivers/mmc/host/renesas_sdhi_internal_dmac.c > index a6bf123..733ea8e 100644 > --- a/drivers/mmc/host/renesas_sdhi_internal_dmac.c > +++ b/drivers/mmc/host/renesas_sdhi_internal_dmac.c > @@ -99,6 +99,7 @@ > static const struct of_device_id renesas_sdhi_internal_dmac_of_match[] = { > { .compatible = "renesas,sdhi-r8a7795", .data = &of_rcar_gen3_compatible, }, > { .compatible = "renesas,sdhi-r8a7796", .data = &of_rcar_gen3_compatible, }, > + { .compatible = "renesas,sdhi-r8a77965", .data = &of_rcar_gen3_compatible, }, > { .compatible = "renesas,rcar-gen3-sdhi", .data = &of_rcar_gen3_compatible, }, > {}, > }; > @@ -276,6 +277,7 @@ static void renesas_sdhi_internal_dmac_complete_tasklet_fn(unsigned long arg) > /* generic ones */ > { .soc_id = "r8a7795" }, > { .soc_id = "r8a7796" }, > + { .soc_id = "r8a77965", .revision = "ES1.0" }, I think we can drop .revision = "ES1.0" to be in keeping with 349936fcdaf8 ("mmc: renesas_sdhi_internal_dmac: use more generic whitelisting"). With that fixed: Reviewed-by: Simon Horman <horms+renesas@xxxxxxxxxxxx> > { .soc_id = "r8a77980" }, > { .soc_id = "r8a77995" }, > { /* sentinel */ } > -- > 1.9.1 >