Commit 052aedbf authored by FUJITA Tomonori's avatar FUJITA Tomonori Committed by Ingo Molnar

x86, gart: add map_page and unmap_page

This is a preparation of struct dma_mapping_ops unification. We use
map_page and unmap_page instead of map_single and unmap_single.

We will remove map_single and unmap_single hooks in the last patch in
this patchset.
Signed-off-by: default avatarFUJITA Tomonori <fujita.tomonori@lab.ntt.co.jp>
Signed-off-by: default avatarIngo Molnar <mingo@elte.hu>
parent 4cf37bb7
...@@ -255,10 +255,13 @@ static dma_addr_t dma_map_area(struct device *dev, dma_addr_t phys_mem, ...@@ -255,10 +255,13 @@ static dma_addr_t dma_map_area(struct device *dev, dma_addr_t phys_mem,
} }
/* Map a single area into the IOMMU */ /* Map a single area into the IOMMU */
static dma_addr_t static dma_addr_t gart_map_page(struct device *dev, struct page *page,
gart_map_single(struct device *dev, phys_addr_t paddr, size_t size, int dir) unsigned long offset, size_t size,
enum dma_data_direction dir,
struct dma_attrs *attrs)
{ {
unsigned long bus; unsigned long bus;
phys_addr_t paddr = page_to_phys(page) + offset;
if (!dev) if (!dev)
dev = &x86_dma_fallback_dev; dev = &x86_dma_fallback_dev;
...@@ -272,11 +275,19 @@ gart_map_single(struct device *dev, phys_addr_t paddr, size_t size, int dir) ...@@ -272,11 +275,19 @@ gart_map_single(struct device *dev, phys_addr_t paddr, size_t size, int dir)
return bus; return bus;
} }
static dma_addr_t gart_map_single(struct device *dev, phys_addr_t paddr,
size_t size, int dir)
{
return gart_map_page(dev, pfn_to_page(paddr >> PAGE_SHIFT),
paddr & ~PAGE_MASK, size, dir, NULL);
}
/* /*
* Free a DMA mapping. * Free a DMA mapping.
*/ */
static void gart_unmap_single(struct device *dev, dma_addr_t dma_addr, static void gart_unmap_page(struct device *dev, dma_addr_t dma_addr,
size_t size, int direction) size_t size, enum dma_data_direction dir,
struct dma_attrs *attrs)
{ {
unsigned long iommu_page; unsigned long iommu_page;
int npages; int npages;
...@@ -295,6 +306,12 @@ static void gart_unmap_single(struct device *dev, dma_addr_t dma_addr, ...@@ -295,6 +306,12 @@ static void gart_unmap_single(struct device *dev, dma_addr_t dma_addr,
free_iommu(iommu_page, npages); free_iommu(iommu_page, npages);
} }
static void gart_unmap_single(struct device *dev, dma_addr_t dma_addr,
size_t size, int direction)
{
gart_unmap_page(dev, dma_addr, size, direction, NULL);
}
/* /*
* Wrapper for pci_unmap_single working with scatterlists. * Wrapper for pci_unmap_single working with scatterlists.
*/ */
...@@ -712,6 +729,8 @@ static struct dma_mapping_ops gart_dma_ops = { ...@@ -712,6 +729,8 @@ static struct dma_mapping_ops gart_dma_ops = {
.unmap_single = gart_unmap_single, .unmap_single = gart_unmap_single,
.map_sg = gart_map_sg, .map_sg = gart_map_sg,
.unmap_sg = gart_unmap_sg, .unmap_sg = gart_unmap_sg,
.map_page = gart_map_page,
.unmap_page = gart_unmap_page,
.alloc_coherent = gart_alloc_coherent, .alloc_coherent = gart_alloc_coherent,
.free_coherent = gart_free_coherent, .free_coherent = gart_free_coherent,
}; };
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment