Skip to content

Commit

Permalink
x86: add free_coherent dma_ops callback to Calgary IOMMU driver
Browse files Browse the repository at this point in the history
Signed-off-by: Joerg Roedel <joerg.roedel@amd.com>
Acked-by: Muli Ben-Yehuda <muli@il.ibm.com>
Signed-off-by: Ingo Molnar <mingo@elte.hu>
  • Loading branch information
Joerg Roedel authored and Ingo Molnar committed Aug 22, 2008
1 parent 43a5a5a commit e4ad68b
Showing 1 changed file with 14 additions and 0 deletions.
14 changes: 14 additions & 0 deletions arch/x86/kernel/pci-calgary_64.c
Original file line number Diff line number Diff line change
Expand Up @@ -511,8 +511,22 @@ static void* calgary_alloc_coherent(struct device *dev, size_t size,
return ret;
}

static void calgary_free_coherent(struct device *dev, size_t size,
void *vaddr, dma_addr_t dma_handle)
{
unsigned int npages;
struct iommu_table *tbl = find_iommu_table(dev);

size = PAGE_ALIGN(size);
npages = size >> PAGE_SHIFT;

iommu_free(tbl, dma_handle, npages);
free_pages((unsigned long)vaddr, get_order(size));
}

static struct dma_mapping_ops calgary_dma_ops = {
.alloc_coherent = calgary_alloc_coherent,
.free_coherent = calgary_free_coherent,
.map_single = calgary_map_single,
.unmap_single = calgary_unmap_single,
.map_sg = calgary_map_sg,
Expand Down

0 comments on commit e4ad68b

Please sign in to comment.