1
0
Fork 0

iommu/ipmmu-vmsa: Fix the supported page sizes

The hardware supports 2MB page sizes, not 1MB.

Signed-off-by: Laurent Pinchart <laurent.pinchart+renesas@ideasonboard.com>
Signed-off-by: Joerg Roedel <jroedel@suse.de>
hifive-unleashed-5.1
Laurent Pinchart 2014-05-15 12:40:44 +02:00 committed by Joerg Roedel
parent 192d204570
commit 251dac410d
1 changed files with 1 additions and 1 deletions

View File

@ -957,7 +957,7 @@ static struct iommu_ops ipmmu_ops = {
.iova_to_phys = ipmmu_iova_to_phys,
.add_device = ipmmu_add_device,
.remove_device = ipmmu_remove_device,
.pgsize_bitmap = SZ_1M | SZ_64K | SZ_4K,
.pgsize_bitmap = SZ_2M | SZ_64K | SZ_4K,
};
/* -----------------------------------------------------------------------------