1 // SPDX-License-Identifier: GPL-2.0
3 * DMA operations that map physical memory directly without using an IOMMU or
6 #include <linux/export.h>
8 #include <linux/dma-direct.h>
9 #include <linux/scatterlist.h>
10 #include <linux/dma-contiguous.h>
11 #include <linux/pfn.h>
12 #include <linux/set_memory.h>
14 #define DIRECT_MAPPING_ERROR 0
17 * Most architectures use ZONE_DMA for the first 16 Megabytes, but
18 * some use it for entirely different regions:
20 #ifndef ARCH_ZONE_DMA_BITS
21 #define ARCH_ZONE_DMA_BITS 24
25 * For AMD SEV all DMA must be to unencrypted addresses.
27 static inline bool force_dma_unencrypted(void)
33 check_addr(struct device *dev, dma_addr_t dma_addr, size_t size,
36 if (unlikely(dev && !dma_capable(dev, dma_addr, size))) {
37 if (*dev->dma_mask >= DMA_BIT_MASK(32)) {
39 "%s: overflow %pad+%zu of device mask %llx\n",
40 caller, &dma_addr, size, *dev->dma_mask);
47 static bool dma_coherent_ok(struct device *dev, phys_addr_t phys, size_t size)
49 dma_addr_t addr = force_dma_unencrypted() ?
50 __phys_to_dma(dev, phys) : phys_to_dma(dev, phys);
51 return addr + size - 1 <= dev->coherent_dma_mask;
54 void *dma_direct_alloc(struct device *dev, size_t size, dma_addr_t *dma_handle,
55 gfp_t gfp, unsigned long attrs)
57 unsigned int count = PAGE_ALIGN(size) >> PAGE_SHIFT;
58 int page_order = get_order(size);
59 struct page *page = NULL;
62 /* we always manually zero the memory once we are done: */
65 /* GFP_DMA32 and GFP_DMA are no ops without the corresponding zones: */
66 if (dev->coherent_dma_mask <= DMA_BIT_MASK(ARCH_ZONE_DMA_BITS))
68 if (dev->coherent_dma_mask <= DMA_BIT_MASK(32) && !(gfp & GFP_DMA))
72 /* CMA can be used only in the context which permits sleeping */
73 if (gfpflags_allow_blocking(gfp)) {
74 page = dma_alloc_from_contiguous(dev, count, page_order, gfp);
75 if (page && !dma_coherent_ok(dev, page_to_phys(page), size)) {
76 dma_release_from_contiguous(dev, page, count);
81 page = alloc_pages_node(dev_to_node(dev), gfp, page_order);
83 if (page && !dma_coherent_ok(dev, page_to_phys(page), size)) {
84 __free_pages(page, page_order);
87 if (IS_ENABLED(CONFIG_ZONE_DMA) &&
88 dev->coherent_dma_mask < DMA_BIT_MASK(32) &&
90 gfp = (gfp & ~GFP_DMA32) | GFP_DMA;
97 ret = page_address(page);
98 if (force_dma_unencrypted()) {
99 set_memory_decrypted((unsigned long)ret, 1 << page_order);
100 *dma_handle = __phys_to_dma(dev, page_to_phys(page));
102 *dma_handle = phys_to_dma(dev, page_to_phys(page));
104 memset(ret, 0, size);
109 * NOTE: this function must never look at the dma_addr argument, because we want
110 * to be able to use it as a helper for iommu implementations as well.
112 void dma_direct_free(struct device *dev, size_t size, void *cpu_addr,
113 dma_addr_t dma_addr, unsigned long attrs)
115 unsigned int count = PAGE_ALIGN(size) >> PAGE_SHIFT;
116 unsigned int page_order = get_order(size);
118 if (force_dma_unencrypted())
119 set_memory_encrypted((unsigned long)cpu_addr, 1 << page_order);
120 if (!dma_release_from_contiguous(dev, virt_to_page(cpu_addr), count))
121 free_pages((unsigned long)cpu_addr, page_order);
124 static dma_addr_t dma_direct_map_page(struct device *dev, struct page *page,
125 unsigned long offset, size_t size, enum dma_data_direction dir,
128 dma_addr_t dma_addr = phys_to_dma(dev, page_to_phys(page)) + offset;
130 if (!check_addr(dev, dma_addr, size, __func__))
131 return DIRECT_MAPPING_ERROR;
135 static int dma_direct_map_sg(struct device *dev, struct scatterlist *sgl,
136 int nents, enum dma_data_direction dir, unsigned long attrs)
139 struct scatterlist *sg;
141 for_each_sg(sgl, sg, nents, i) {
142 BUG_ON(!sg_page(sg));
144 sg_dma_address(sg) = phys_to_dma(dev, sg_phys(sg));
145 if (!check_addr(dev, sg_dma_address(sg), sg->length, __func__))
147 sg_dma_len(sg) = sg->length;
153 int dma_direct_supported(struct device *dev, u64 mask)
155 #ifdef CONFIG_ZONE_DMA
156 if (mask < DMA_BIT_MASK(ARCH_ZONE_DMA_BITS))
160 * Because 32-bit DMA masks are so common we expect every architecture
161 * to be able to satisfy them - either by not supporting more physical
162 * memory, or by providing a ZONE_DMA32. If neither is the case, the
163 * architecture needs to use an IOMMU instead of the direct mapping.
165 if (mask < DMA_BIT_MASK(32))
171 static int dma_direct_mapping_error(struct device *dev, dma_addr_t dma_addr)
173 return dma_addr == DIRECT_MAPPING_ERROR;
176 const struct dma_map_ops dma_direct_ops = {
177 .alloc = dma_direct_alloc,
178 .free = dma_direct_free,
179 .map_page = dma_direct_map_page,
180 .map_sg = dma_direct_map_sg,
181 .dma_supported = dma_direct_supported,
182 .mapping_error = dma_direct_mapping_error,
185 EXPORT_SYMBOL(dma_direct_ops);