2 * Copyright (C) 2006 Benjamin Herrenschmidt, IBM Corporation
4 * Provide default implementations of the DMA mapping callbacks for
5 * directly mapped busses.
8 #include <linux/device.h>
9 #include <linux/dma-mapping.h>
10 #include <linux/dma-debug.h>
11 #include <linux/lmb.h>
13 #include <asm/abs_addr.h>
16 * Generic direct DMA implementation
18 * This implementation supports a per-device offset that can be applied if
19 * the address at which memory is visible to devices is not 0. Platform code
20 * can set archdata.dma_data to an unsigned long holding the offset. By
21 * default the offset is PCI_DRAM_OFFSET.
25 void *dma_direct_alloc_coherent(struct device
*dev
, size_t size
,
26 dma_addr_t
*dma_handle
, gfp_t flag
)
29 #ifdef CONFIG_NOT_COHERENT_CACHE
30 ret
= __dma_alloc_coherent(dev
, size
, dma_handle
, flag
);
33 *dma_handle
+= get_dma_offset(dev
);
37 int node
= dev_to_node(dev
);
39 /* ignore region specifiers */
40 flag
&= ~(__GFP_HIGHMEM
);
42 page
= alloc_pages_node(node
, flag
, get_order(size
));
45 ret
= page_address(page
);
47 *dma_handle
= virt_to_abs(ret
) + get_dma_offset(dev
);
53 void dma_direct_free_coherent(struct device
*dev
, size_t size
,
54 void *vaddr
, dma_addr_t dma_handle
)
56 #ifdef CONFIG_NOT_COHERENT_CACHE
57 __dma_free_coherent(size
, vaddr
);
59 free_pages((unsigned long)vaddr
, get_order(size
));
63 static int dma_direct_map_sg(struct device
*dev
, struct scatterlist
*sgl
,
64 int nents
, enum dma_data_direction direction
,
65 struct dma_attrs
*attrs
)
67 struct scatterlist
*sg
;
70 for_each_sg(sgl
, sg
, nents
, i
) {
71 sg
->dma_address
= sg_phys(sg
) + get_dma_offset(dev
);
72 sg
->dma_length
= sg
->length
;
73 __dma_sync_page(sg_page(sg
), sg
->offset
, sg
->length
, direction
);
79 static void dma_direct_unmap_sg(struct device
*dev
, struct scatterlist
*sg
,
80 int nents
, enum dma_data_direction direction
,
81 struct dma_attrs
*attrs
)
85 static int dma_direct_dma_supported(struct device
*dev
, u64 mask
)
88 /* Could be improved so platforms can set the limit in case
89 * they have limited DMA windows
91 return mask
>= (lmb_end_of_DRAM() - 1);
97 static inline dma_addr_t
dma_direct_map_page(struct device
*dev
,
101 enum dma_data_direction dir
,
102 struct dma_attrs
*attrs
)
104 BUG_ON(dir
== DMA_NONE
);
105 __dma_sync_page(page
, offset
, size
, dir
);
106 return page_to_phys(page
) + offset
+ get_dma_offset(dev
);
109 static inline void dma_direct_unmap_page(struct device
*dev
,
110 dma_addr_t dma_address
,
112 enum dma_data_direction direction
,
113 struct dma_attrs
*attrs
)
117 #ifdef CONFIG_NOT_COHERENT_CACHE
118 static inline void dma_direct_sync_sg(struct device
*dev
,
119 struct scatterlist
*sgl
, int nents
,
120 enum dma_data_direction direction
)
122 struct scatterlist
*sg
;
125 for_each_sg(sgl
, sg
, nents
, i
)
126 __dma_sync_page(sg_page(sg
), sg
->offset
, sg
->length
, direction
);
129 static inline void dma_direct_sync_single_range(struct device
*dev
,
130 dma_addr_t dma_handle
, unsigned long offset
, size_t size
,
131 enum dma_data_direction direction
)
133 __dma_sync(bus_to_virt(dma_handle
+offset
), size
, direction
);
137 struct dma_map_ops dma_direct_ops
= {
138 .alloc_coherent
= dma_direct_alloc_coherent
,
139 .free_coherent
= dma_direct_free_coherent
,
140 .map_sg
= dma_direct_map_sg
,
141 .unmap_sg
= dma_direct_unmap_sg
,
142 .dma_supported
= dma_direct_dma_supported
,
143 .map_page
= dma_direct_map_page
,
144 .unmap_page
= dma_direct_unmap_page
,
145 #ifdef CONFIG_NOT_COHERENT_CACHE
146 .sync_single_range_for_cpu
= dma_direct_sync_single_range
,
147 .sync_single_range_for_device
= dma_direct_sync_single_range
,
148 .sync_sg_for_cpu
= dma_direct_sync_sg
,
149 .sync_sg_for_device
= dma_direct_sync_sg
,
152 EXPORT_SYMBOL(dma_direct_ops
);
154 #define PREALLOC_DMA_DEBUG_ENTRIES (1 << 16)
156 static int __init
dma_init(void)
158 dma_debug_init(PREALLOC_DMA_DEBUG_ENTRIES
);
162 fs_initcall(dma_init
);