diff options
author | Biju Das <biju.das@bp.renesas.com> | 2019-09-27 11:53:21 +0100 |
---|---|---|
committer | Joerg Roedel <jroedel@suse.de> | 2019-10-15 12:58:13 +0200 |
commit | 757f26a3a9ec2c072fdd1b14ec93daf1e4cfed8c (patch) | |
tree | 129f4cf33c77df6c2dd8dd94b2709dd85cd891b3 /drivers/iommu/ipmmu-vmsa.c | |
parent | d0635ebf85aa2cbc17a5b83eaa65f20fa71bf388 (diff) | |
download | linux-stable-757f26a3a9ec2c072fdd1b14ec93daf1e4cfed8c.tar.gz linux-stable-757f26a3a9ec2c072fdd1b14ec93daf1e4cfed8c.tar.bz2 linux-stable-757f26a3a9ec2c072fdd1b14ec93daf1e4cfed8c.zip |
iommu/ipmmu-vmsa: Hook up r8a774b1 DT matching code
Support RZ/G2N (R8A774B1) IPMMU.
Signed-off-by: Biju Das <biju.das@bp.renesas.com>
Reviewed-by: Geert Uytterhoeven <geert+renesas@glider.be>
Signed-off-by: Joerg Roedel <jroedel@suse.de>
Diffstat (limited to 'drivers/iommu/ipmmu-vmsa.c')
-rw-r--r-- | drivers/iommu/ipmmu-vmsa.c | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/drivers/iommu/ipmmu-vmsa.c b/drivers/iommu/ipmmu-vmsa.c index 9da8309f7170..67bdf8e5c8ef 100644 --- a/drivers/iommu/ipmmu-vmsa.c +++ b/drivers/iommu/ipmmu-vmsa.c @@ -783,6 +783,7 @@ static int ipmmu_init_platform_device(struct device *dev, static const struct soc_device_attribute soc_rcar_gen3[] = { { .soc_id = "r8a774a1", }, + { .soc_id = "r8a774b1", }, { .soc_id = "r8a774c0", }, { .soc_id = "r8a7795", }, { .soc_id = "r8a7796", }, @@ -794,6 +795,7 @@ static const struct soc_device_attribute soc_rcar_gen3[] = { }; static const struct soc_device_attribute soc_rcar_gen3_whitelist[] = { + { .soc_id = "r8a774b1", }, { .soc_id = "r8a774c0", }, { .soc_id = "r8a7795", .revision = "ES3.*" }, { .soc_id = "r8a77965", }, @@ -1018,6 +1020,9 @@ static const struct of_device_id ipmmu_of_ids[] = { .compatible = "renesas,ipmmu-r8a774a1", .data = &ipmmu_features_rcar_gen3, }, { + .compatible = "renesas,ipmmu-r8a774b1", + .data = &ipmmu_features_rcar_gen3, + }, { .compatible = "renesas,ipmmu-r8a774c0", .data = &ipmmu_features_rcar_gen3, }, { |