diff options
author | Hai Nguyen Pham <hai.pham.ud@renesas.com> | 2018-10-17 12:13:22 +0300 |
---|---|---|
committer | Joerg Roedel <jroedel@suse.de> | 2018-11-06 18:39:13 +0300 |
commit | b0c32912150565130c61104b7789ba4aa0e5f93d (patch) | |
tree | b484d12abd54307542112aa6babdf0a9a06f25e8 | |
parent | 651022382c7f8da46cb4872a545ee1da6d097d2a (diff) | |
download | linux-b0c32912150565130c61104b7789ba4aa0e5f93d.tar.xz |
iommu/ipmmu-vmsa: Hook up r8a77990 DT matching code
Support the R-Car E3 (r8a77990) IPMMU.
Signed-off-by: Hai Nguyen Pham <hai.pham.ud@renesas.com>
Signed-off-by: Kazuya Mizuguchi <kazuya.mizuguchi.ks@renesas.com>
[simon: rebased; dropped no longer required IOMMU_OF_DECLARE hunk]
Signed-off-by: Simon Horman <horms+renesas@verge.net.au>
Signed-off-by: Joerg Roedel <jroedel@suse.de>
-rw-r--r-- | drivers/iommu/ipmmu-vmsa.c | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/drivers/iommu/ipmmu-vmsa.c b/drivers/iommu/ipmmu-vmsa.c index b98a03189580..e0adf5d6c13c 100644 --- a/drivers/iommu/ipmmu-vmsa.c +++ b/drivers/iommu/ipmmu-vmsa.c @@ -762,6 +762,7 @@ static const struct soc_device_attribute soc_rcar_gen3[] = { { .soc_id = "r8a7796", }, { .soc_id = "r8a77965", }, { .soc_id = "r8a77970", }, + { .soc_id = "r8a77990", }, { .soc_id = "r8a77995", }, { /* sentinel */ } }; @@ -950,6 +951,9 @@ static const struct of_device_id ipmmu_of_ids[] = { .compatible = "renesas,ipmmu-r8a77970", .data = &ipmmu_features_rcar_gen3, }, { + .compatible = "renesas,ipmmu-r8a77990", + .data = &ipmmu_features_rcar_gen3, + }, { .compatible = "renesas,ipmmu-r8a77995", .data = &ipmmu_features_rcar_gen3, }, { |