From: Magnus Damm Date: Mon, 16 Oct 2017 12:30:07 +0000 (+0900) Subject: iommu/ipmmu-vmsa: IPMMU device is 40-bit bus master X-Git-Tag: v4.19~2208^2^4~4 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=1c894225bf5b1cdffac0c6ef935b61273203d7d5;p=platform%2Fkernel%2Flinux-rpi.git iommu/ipmmu-vmsa: IPMMU device is 40-bit bus master The r8a7795 IPMMU supports 40-bit bus mastering. Both the coherent DMA mask and the streaming DMA mask are set to unlock the 40-bit address space for coherent allocations and streaming operations. Signed-off-by: Magnus Damm Signed-off-by: Alex Williamson --- diff --git a/drivers/iommu/ipmmu-vmsa.c b/drivers/iommu/ipmmu-vmsa.c index 9cde619..6b74ec6 100644 --- a/drivers/iommu/ipmmu-vmsa.c +++ b/drivers/iommu/ipmmu-vmsa.c @@ -903,6 +903,7 @@ static int ipmmu_probe(struct platform_device *pdev) spin_lock_init(&mmu->lock); bitmap_zero(mmu->ctx, IPMMU_CTX_MAX); mmu->features = of_device_get_match_data(&pdev->dev); + dma_set_mask_and_coherent(&pdev->dev, DMA_BIT_MASK(40)); /* Map I/O memory and request IRQ. */ res = platform_get_resource(pdev, IORESOURCE_MEM, 0);