dma-mapping: replace zone_dma_bits by zone_dma_limit
The hardware DMA limit might not be power of 2. When RAM range starts above 0, say 4GB, DMA limit of 30 bits should end at 5GB. A single high bit can not encode this limit. Use a plain address for the DMA zone limit instead. Since the DMA zone can now potentially span beyond 4GB physical limit of DMA32, make sure to use DMA zone for GFP_DMA32 allocations in that case. Signed-off-by: Catalin Marinas <catalin.marinas@arm.com> Co-developed-by: Baruch Siach <baruch@tkos.co.il> Signed-off-by: Baruch Siach <baruch@tkos.co.il> Reviewed-by: Catalin Marinas <catalin.marinas@arm.com> Reviewed-by: Petr Tesarik <ptesarik@suse.com> Signed-off-by: Christoph Hellwig <hch@lst.de>
This commit is contained in:
committed by
Christoph Hellwig
parent
fa3c109a6d
commit
ba0fb44aed
+3
-3
@@ -20,7 +20,7 @@
|
||||
* it for entirely different regions. In that case the arch code needs to
|
||||
* override the variable below for dma-direct to work properly.
|
||||
*/
|
||||
unsigned int zone_dma_bits __ro_after_init = 24;
|
||||
u64 zone_dma_limit __ro_after_init = DMA_BIT_MASK(24);
|
||||
|
||||
static inline dma_addr_t phys_to_dma_direct(struct device *dev,
|
||||
phys_addr_t phys)
|
||||
@@ -59,7 +59,7 @@ static gfp_t dma_direct_optimal_gfp_mask(struct device *dev, u64 *phys_limit)
|
||||
* zones.
|
||||
*/
|
||||
*phys_limit = dma_to_phys(dev, dma_limit);
|
||||
if (*phys_limit <= DMA_BIT_MASK(zone_dma_bits))
|
||||
if (*phys_limit <= zone_dma_limit)
|
||||
return GFP_DMA;
|
||||
if (*phys_limit <= DMA_BIT_MASK(32))
|
||||
return GFP_DMA32;
|
||||
@@ -580,7 +580,7 @@ int dma_direct_supported(struct device *dev, u64 mask)
|
||||
* part of the check.
|
||||
*/
|
||||
if (IS_ENABLED(CONFIG_ZONE_DMA))
|
||||
min_mask = min_t(u64, min_mask, DMA_BIT_MASK(zone_dma_bits));
|
||||
min_mask = min_t(u64, min_mask, zone_dma_limit);
|
||||
return mask >= phys_to_dma_unencrypted(dev, min_mask);
|
||||
}
|
||||
|
||||
|
||||
+2
-2
@@ -70,9 +70,9 @@ static bool cma_in_zone(gfp_t gfp)
|
||||
/* CMA can't cross zone boundaries, see cma_activate_area() */
|
||||
end = cma_get_base(cma) + size - 1;
|
||||
if (IS_ENABLED(CONFIG_ZONE_DMA) && (gfp & GFP_DMA))
|
||||
return end <= DMA_BIT_MASK(zone_dma_bits);
|
||||
return end <= zone_dma_limit;
|
||||
if (IS_ENABLED(CONFIG_ZONE_DMA32) && (gfp & GFP_DMA32))
|
||||
return end <= DMA_BIT_MASK(32);
|
||||
return end <= max(DMA_BIT_MASK(32), zone_dma_limit);
|
||||
return true;
|
||||
}
|
||||
|
||||
|
||||
@@ -450,9 +450,9 @@ int swiotlb_init_late(size_t size, gfp_t gfp_mask,
|
||||
if (!remap)
|
||||
io_tlb_default_mem.can_grow = true;
|
||||
if (IS_ENABLED(CONFIG_ZONE_DMA) && (gfp_mask & __GFP_DMA))
|
||||
io_tlb_default_mem.phys_limit = DMA_BIT_MASK(zone_dma_bits);
|
||||
io_tlb_default_mem.phys_limit = zone_dma_limit;
|
||||
else if (IS_ENABLED(CONFIG_ZONE_DMA32) && (gfp_mask & __GFP_DMA32))
|
||||
io_tlb_default_mem.phys_limit = DMA_BIT_MASK(32);
|
||||
io_tlb_default_mem.phys_limit = max(DMA_BIT_MASK(32), zone_dma_limit);
|
||||
else
|
||||
io_tlb_default_mem.phys_limit = virt_to_phys(high_memory - 1);
|
||||
#endif
|
||||
@@ -629,7 +629,7 @@ static struct page *swiotlb_alloc_tlb(struct device *dev, size_t bytes,
|
||||
}
|
||||
|
||||
gfp &= ~GFP_ZONEMASK;
|
||||
if (phys_limit <= DMA_BIT_MASK(zone_dma_bits))
|
||||
if (phys_limit <= zone_dma_limit)
|
||||
gfp |= __GFP_DMA;
|
||||
else if (phys_limit <= DMA_BIT_MASK(32))
|
||||
gfp |= __GFP_DMA32;
|
||||
|
||||
Reference in New Issue
Block a user