Skip to content

Commit

Permalink
sparc/iommu: fix __sbus_iommu_map_page for highmem pages
Browse files Browse the repository at this point in the history
__sbus_iommu_map_page currently assumes all pages are mapped into the
kernel direct mapping.  Switch to using physical address instead of
virtual ones for all the normal mapping operations, and only use
the virtual addresses for cache flushing when not operating on
a highmem page.

Signed-off-by: Christoph Hellwig <hch@lst.de>
Reported-by: Guenter Roeck <linux@roeck-us.net>
Signed-off-by: David S. Miller <davem@davemloft.net>
  • Loading branch information
Christoph Hellwig authored and David S. Miller committed May 9, 2019
1 parent 8668b38 commit 7e99689
Showing 1 changed file with 7 additions and 8 deletions.
15 changes: 7 additions & 8 deletions arch/sparc/mm/iommu.c
Original file line number Diff line number Diff line change
Expand Up @@ -209,24 +209,23 @@ static u32 iommu_get_one(struct device *dev, phys_addr_t paddr, int npages)
static dma_addr_t __sbus_iommu_map_page(struct device *dev, struct page *page,
unsigned long offset, size_t len, bool per_page_flush)
{
void *vaddr = page_address(page) + offset;
unsigned long off = (unsigned long)vaddr & ~PAGE_MASK;
phys_addr_t paddr = page_to_phys(page) + offset;
unsigned long off = paddr & ~PAGE_MASK;
unsigned long npages = (off + len + PAGE_SIZE - 1) >> PAGE_SHIFT;

/* XXX So what is maxphys for us and how do drivers know it? */
if (!len || len > 256 * 1024)
return DMA_MAPPING_ERROR;

if (per_page_flush) {
unsigned long p = (unsigned long)vaddr & PAGE_MASK;
if (per_page_flush && !PageHighMem(page)) {
unsigned long vaddr, p;

while (p < (unsigned long)vaddr + len) {
vaddr = (unsigned long)page_address(page) + offset;
for (p = vaddr & PAGE_MASK; p < vaddr + len; p += PAGE_SIZE)
flush_page_for_dma(p);
p += PAGE_SIZE;
}
}

return iommu_get_one(dev, virt_to_phys(vaddr), npages) + off;
return iommu_get_one(dev, paddr, npages) + off;
}

static dma_addr_t sbus_iommu_map_page_gflush(struct device *dev,
Expand Down

0 comments on commit 7e99689

Please sign in to comment.