aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorFUJITA Tomonori <fujita.tomonori@lab.ntt.co.jp>2009-01-05 09:47:22 -0500
committerIngo Molnar <mingo@elte.hu>2009-01-06 08:06:53 -0500
commit4cf37bb7d9dc6dfb5d5fca7f735ba65ba173dabc (patch)
tree4dae64c91d46b0ab10aced696fb20b2031aba5de
parentabe6602bf197167efb3b37161b9c11748fa076e1 (diff)
x86, swiotlb: 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. This is sorta temporary workaround. We will move them to lib/swiotlb.c to enable x86's swiotlb code to directly use them. We will remove map_single and unmap_single hooks in the last patch in this patchset. Signed-off-by: FUJITA Tomonori <fujita.tomonori@lab.ntt.co.jp> Signed-off-by: Ingo Molnar <mingo@elte.hu>
-rw-r--r--arch/x86/kernel/pci-swiotlb_64.c19
1 files changed, 19 insertions, 0 deletions
diff --git a/arch/x86/kernel/pci-swiotlb_64.c b/arch/x86/kernel/pci-swiotlb_64.c
index d59c91747665..d1c0366886dd 100644
--- a/arch/x86/kernel/pci-swiotlb_64.c
+++ b/arch/x86/kernel/pci-swiotlb_64.c
@@ -45,6 +45,23 @@ swiotlb_map_single_phys(struct device *hwdev, phys_addr_t paddr, size_t size,
45 return swiotlb_map_single(hwdev, phys_to_virt(paddr), size, direction); 45 return swiotlb_map_single(hwdev, phys_to_virt(paddr), size, direction);
46} 46}
47 47
48/* these will be moved to lib/swiotlb.c later on */
49
50static dma_addr_t swiotlb_map_page(struct device *dev, struct page *page,
51 unsigned long offset, size_t size,
52 enum dma_data_direction dir,
53 struct dma_attrs *attrs)
54{
55 return swiotlb_map_single(dev, page_address(page) + offset, size, dir);
56}
57
58static void swiotlb_unmap_page(struct device *dev, dma_addr_t dma_handle,
59 size_t size, enum dma_data_direction dir,
60 struct dma_attrs *attrs)
61{
62 swiotlb_unmap_single(dev, dma_handle, size, dir);
63}
64
48static void *x86_swiotlb_alloc_coherent(struct device *hwdev, size_t size, 65static void *x86_swiotlb_alloc_coherent(struct device *hwdev, size_t size,
49 dma_addr_t *dma_handle, gfp_t flags) 66 dma_addr_t *dma_handle, gfp_t flags)
50{ 67{
@@ -71,6 +88,8 @@ struct dma_mapping_ops swiotlb_dma_ops = {
71 .sync_sg_for_device = swiotlb_sync_sg_for_device, 88 .sync_sg_for_device = swiotlb_sync_sg_for_device,
72 .map_sg = swiotlb_map_sg, 89 .map_sg = swiotlb_map_sg,
73 .unmap_sg = swiotlb_unmap_sg, 90 .unmap_sg = swiotlb_unmap_sg,
91 .map_page = swiotlb_map_page,
92 .unmap_page = swiotlb_unmap_page,
74 .dma_supported = NULL, 93 .dma_supported = NULL,
75}; 94};
76 95