Greg Kroah-Hartman | 989d42e | 2017-11-07 17:30:07 +0100 | [diff] [blame] | 1 | // SPDX-License-Identifier: GPL-2.0 |
Tejun Heo | 9ac7849 | 2007-01-20 16:00:26 +0900 | [diff] [blame] | 2 | /* |
| 3 | * drivers/base/dma-mapping.c - arch-independent dma-mapping routines |
| 4 | * |
| 5 | * Copyright (c) 2006 SUSE Linux Products GmbH |
| 6 | * Copyright (c) 2006 Tejun Heo <teheo@suse.de> |
Tejun Heo | 9ac7849 | 2007-01-20 16:00:26 +0900 | [diff] [blame] | 7 | */ |
| 8 | |
Sricharan R | 09515ef | 2017-04-10 16:51:01 +0530 | [diff] [blame] | 9 | #include <linux/acpi.h> |
Tejun Heo | 9ac7849 | 2007-01-20 16:00:26 +0900 | [diff] [blame] | 10 | #include <linux/dma-mapping.h> |
Paul Gortmaker | 1b6bc32 | 2011-05-27 07:12:15 -0400 | [diff] [blame] | 11 | #include <linux/export.h> |
Tejun Heo | 5a0e3ad | 2010-03-24 17:04:11 +0900 | [diff] [blame] | 12 | #include <linux/gfp.h> |
Sricharan R | 09515ef | 2017-04-10 16:51:01 +0530 | [diff] [blame] | 13 | #include <linux/of_device.h> |
Laura Abbott | 513510d | 2014-10-09 15:26:40 -0700 | [diff] [blame] | 14 | #include <linux/slab.h> |
| 15 | #include <linux/vmalloc.h> |
Tejun Heo | 9ac7849 | 2007-01-20 16:00:26 +0900 | [diff] [blame] | 16 | |
| 17 | /* |
| 18 | * Managed DMA API |
| 19 | */ |
| 20 | struct dma_devres { |
| 21 | size_t size; |
| 22 | void *vaddr; |
| 23 | dma_addr_t dma_handle; |
Christoph Hellwig | 63d36c9 | 2017-06-12 19:15:04 +0200 | [diff] [blame] | 24 | unsigned long attrs; |
Tejun Heo | 9ac7849 | 2007-01-20 16:00:26 +0900 | [diff] [blame] | 25 | }; |
| 26 | |
Christoph Hellwig | 63d36c9 | 2017-06-12 19:15:04 +0200 | [diff] [blame] | 27 | static void dmam_release(struct device *dev, void *res) |
Tejun Heo | 9ac7849 | 2007-01-20 16:00:26 +0900 | [diff] [blame] | 28 | { |
| 29 | struct dma_devres *this = res; |
| 30 | |
Christoph Hellwig | 63d36c9 | 2017-06-12 19:15:04 +0200 | [diff] [blame] | 31 | dma_free_attrs(dev, this->size, this->vaddr, this->dma_handle, |
| 32 | this->attrs); |
Tejun Heo | 9ac7849 | 2007-01-20 16:00:26 +0900 | [diff] [blame] | 33 | } |
| 34 | |
| 35 | static int dmam_match(struct device *dev, void *res, void *match_data) |
| 36 | { |
| 37 | struct dma_devres *this = res, *match = match_data; |
| 38 | |
| 39 | if (this->vaddr == match->vaddr) { |
| 40 | WARN_ON(this->size != match->size || |
| 41 | this->dma_handle != match->dma_handle); |
| 42 | return 1; |
| 43 | } |
| 44 | return 0; |
| 45 | } |
| 46 | |
| 47 | /** |
| 48 | * dmam_alloc_coherent - Managed dma_alloc_coherent() |
| 49 | * @dev: Device to allocate coherent memory for |
| 50 | * @size: Size of allocation |
| 51 | * @dma_handle: Out argument for allocated DMA handle |
| 52 | * @gfp: Allocation flags |
| 53 | * |
| 54 | * Managed dma_alloc_coherent(). Memory allocated using this function |
| 55 | * will be automatically released on driver detach. |
| 56 | * |
| 57 | * RETURNS: |
| 58 | * Pointer to allocated memory on success, NULL on failure. |
| 59 | */ |
Marius Cristian Eseanu | 6d42d79 | 2015-03-08 12:34:14 +0200 | [diff] [blame] | 60 | void *dmam_alloc_coherent(struct device *dev, size_t size, |
Tejun Heo | 9ac7849 | 2007-01-20 16:00:26 +0900 | [diff] [blame] | 61 | dma_addr_t *dma_handle, gfp_t gfp) |
| 62 | { |
| 63 | struct dma_devres *dr; |
| 64 | void *vaddr; |
| 65 | |
Christoph Hellwig | 63d36c9 | 2017-06-12 19:15:04 +0200 | [diff] [blame] | 66 | dr = devres_alloc(dmam_release, sizeof(*dr), gfp); |
Tejun Heo | 9ac7849 | 2007-01-20 16:00:26 +0900 | [diff] [blame] | 67 | if (!dr) |
| 68 | return NULL; |
| 69 | |
| 70 | vaddr = dma_alloc_coherent(dev, size, dma_handle, gfp); |
| 71 | if (!vaddr) { |
| 72 | devres_free(dr); |
| 73 | return NULL; |
| 74 | } |
| 75 | |
| 76 | dr->vaddr = vaddr; |
| 77 | dr->dma_handle = *dma_handle; |
| 78 | dr->size = size; |
| 79 | |
| 80 | devres_add(dev, dr); |
| 81 | |
| 82 | return vaddr; |
| 83 | } |
| 84 | EXPORT_SYMBOL(dmam_alloc_coherent); |
| 85 | |
| 86 | /** |
| 87 | * dmam_free_coherent - Managed dma_free_coherent() |
| 88 | * @dev: Device to free coherent memory for |
| 89 | * @size: Size of allocation |
| 90 | * @vaddr: Virtual address of the memory to free |
| 91 | * @dma_handle: DMA handle of the memory to free |
| 92 | * |
| 93 | * Managed dma_free_coherent(). |
| 94 | */ |
| 95 | void dmam_free_coherent(struct device *dev, size_t size, void *vaddr, |
| 96 | dma_addr_t dma_handle) |
| 97 | { |
| 98 | struct dma_devres match_data = { size, vaddr, dma_handle }; |
| 99 | |
| 100 | dma_free_coherent(dev, size, vaddr, dma_handle); |
Christoph Hellwig | 63d36c9 | 2017-06-12 19:15:04 +0200 | [diff] [blame] | 101 | WARN_ON(devres_destroy(dev, dmam_release, dmam_match, &match_data)); |
Tejun Heo | 9ac7849 | 2007-01-20 16:00:26 +0900 | [diff] [blame] | 102 | } |
| 103 | EXPORT_SYMBOL(dmam_free_coherent); |
| 104 | |
| 105 | /** |
Christoph Hellwig | 63d36c9 | 2017-06-12 19:15:04 +0200 | [diff] [blame] | 106 | * dmam_alloc_attrs - Managed dma_alloc_attrs() |
Tejun Heo | 9ac7849 | 2007-01-20 16:00:26 +0900 | [diff] [blame] | 107 | * @dev: Device to allocate non_coherent memory for |
| 108 | * @size: Size of allocation |
| 109 | * @dma_handle: Out argument for allocated DMA handle |
| 110 | * @gfp: Allocation flags |
Christoph Hellwig | 63d36c9 | 2017-06-12 19:15:04 +0200 | [diff] [blame] | 111 | * @attrs: Flags in the DMA_ATTR_* namespace. |
Tejun Heo | 9ac7849 | 2007-01-20 16:00:26 +0900 | [diff] [blame] | 112 | * |
Christoph Hellwig | 63d36c9 | 2017-06-12 19:15:04 +0200 | [diff] [blame] | 113 | * Managed dma_alloc_attrs(). Memory allocated using this function will be |
| 114 | * automatically released on driver detach. |
Tejun Heo | 9ac7849 | 2007-01-20 16:00:26 +0900 | [diff] [blame] | 115 | * |
| 116 | * RETURNS: |
| 117 | * Pointer to allocated memory on success, NULL on failure. |
| 118 | */ |
Christoph Hellwig | 63d36c9 | 2017-06-12 19:15:04 +0200 | [diff] [blame] | 119 | void *dmam_alloc_attrs(struct device *dev, size_t size, dma_addr_t *dma_handle, |
| 120 | gfp_t gfp, unsigned long attrs) |
Tejun Heo | 9ac7849 | 2007-01-20 16:00:26 +0900 | [diff] [blame] | 121 | { |
| 122 | struct dma_devres *dr; |
| 123 | void *vaddr; |
| 124 | |
Christoph Hellwig | 63d36c9 | 2017-06-12 19:15:04 +0200 | [diff] [blame] | 125 | dr = devres_alloc(dmam_release, sizeof(*dr), gfp); |
Tejun Heo | 9ac7849 | 2007-01-20 16:00:26 +0900 | [diff] [blame] | 126 | if (!dr) |
| 127 | return NULL; |
| 128 | |
Christoph Hellwig | 63d36c9 | 2017-06-12 19:15:04 +0200 | [diff] [blame] | 129 | vaddr = dma_alloc_attrs(dev, size, dma_handle, gfp, attrs); |
Tejun Heo | 9ac7849 | 2007-01-20 16:00:26 +0900 | [diff] [blame] | 130 | if (!vaddr) { |
| 131 | devres_free(dr); |
| 132 | return NULL; |
| 133 | } |
| 134 | |
| 135 | dr->vaddr = vaddr; |
| 136 | dr->dma_handle = *dma_handle; |
| 137 | dr->size = size; |
Christoph Hellwig | 63d36c9 | 2017-06-12 19:15:04 +0200 | [diff] [blame] | 138 | dr->attrs = attrs; |
Tejun Heo | 9ac7849 | 2007-01-20 16:00:26 +0900 | [diff] [blame] | 139 | |
| 140 | devres_add(dev, dr); |
| 141 | |
| 142 | return vaddr; |
| 143 | } |
Christoph Hellwig | 63d36c9 | 2017-06-12 19:15:04 +0200 | [diff] [blame] | 144 | EXPORT_SYMBOL(dmam_alloc_attrs); |
Tejun Heo | 9ac7849 | 2007-01-20 16:00:26 +0900 | [diff] [blame] | 145 | |
Christoph Hellwig | 20d666e | 2016-01-20 15:02:09 -0800 | [diff] [blame] | 146 | #ifdef CONFIG_HAVE_GENERIC_DMA_COHERENT |
Tejun Heo | 9ac7849 | 2007-01-20 16:00:26 +0900 | [diff] [blame] | 147 | |
| 148 | static void dmam_coherent_decl_release(struct device *dev, void *res) |
| 149 | { |
| 150 | dma_release_declared_memory(dev); |
| 151 | } |
| 152 | |
| 153 | /** |
| 154 | * dmam_declare_coherent_memory - Managed dma_declare_coherent_memory() |
| 155 | * @dev: Device to declare coherent memory for |
Bjorn Helgaas | 88a984b | 2014-05-20 16:54:22 -0600 | [diff] [blame] | 156 | * @phys_addr: Physical address of coherent memory to be declared |
Tejun Heo | 9ac7849 | 2007-01-20 16:00:26 +0900 | [diff] [blame] | 157 | * @device_addr: Device address of coherent memory to be declared |
| 158 | * @size: Size of coherent memory to be declared |
| 159 | * @flags: Flags |
| 160 | * |
| 161 | * Managed dma_declare_coherent_memory(). |
| 162 | * |
| 163 | * RETURNS: |
| 164 | * 0 on success, -errno on failure. |
| 165 | */ |
Bjorn Helgaas | 88a984b | 2014-05-20 16:54:22 -0600 | [diff] [blame] | 166 | int dmam_declare_coherent_memory(struct device *dev, phys_addr_t phys_addr, |
Tejun Heo | 9ac7849 | 2007-01-20 16:00:26 +0900 | [diff] [blame] | 167 | dma_addr_t device_addr, size_t size, int flags) |
| 168 | { |
| 169 | void *res; |
| 170 | int rc; |
| 171 | |
| 172 | res = devres_alloc(dmam_coherent_decl_release, 0, GFP_KERNEL); |
| 173 | if (!res) |
| 174 | return -ENOMEM; |
| 175 | |
Bjorn Helgaas | 88a984b | 2014-05-20 16:54:22 -0600 | [diff] [blame] | 176 | rc = dma_declare_coherent_memory(dev, phys_addr, device_addr, size, |
Tejun Heo | 9ac7849 | 2007-01-20 16:00:26 +0900 | [diff] [blame] | 177 | flags); |
Christoph Hellwig | 2436bdc | 2017-08-25 17:13:09 +0200 | [diff] [blame] | 178 | if (!rc) |
Tejun Heo | 9ac7849 | 2007-01-20 16:00:26 +0900 | [diff] [blame] | 179 | devres_add(dev, res); |
Christoph Hellwig | 2436bdc | 2017-08-25 17:13:09 +0200 | [diff] [blame] | 180 | else |
Tejun Heo | 9ac7849 | 2007-01-20 16:00:26 +0900 | [diff] [blame] | 181 | devres_free(res); |
| 182 | |
| 183 | return rc; |
| 184 | } |
| 185 | EXPORT_SYMBOL(dmam_declare_coherent_memory); |
| 186 | |
| 187 | /** |
| 188 | * dmam_release_declared_memory - Managed dma_release_declared_memory(). |
| 189 | * @dev: Device to release declared coherent memory for |
| 190 | * |
| 191 | * Managed dmam_release_declared_memory(). |
| 192 | */ |
| 193 | void dmam_release_declared_memory(struct device *dev) |
| 194 | { |
| 195 | WARN_ON(devres_destroy(dev, dmam_coherent_decl_release, NULL, NULL)); |
| 196 | } |
| 197 | EXPORT_SYMBOL(dmam_release_declared_memory); |
| 198 | |
Marek Szyprowski | c6c2295 | 2012-11-26 10:41:48 -0300 | [diff] [blame] | 199 | #endif |
| 200 | |
Marek Szyprowski | d2b7428 | 2012-06-13 10:05:52 +0200 | [diff] [blame] | 201 | /* |
| 202 | * Create scatter-list for the already allocated DMA buffer. |
| 203 | */ |
| 204 | int dma_common_get_sgtable(struct device *dev, struct sg_table *sgt, |
| 205 | void *cpu_addr, dma_addr_t handle, size_t size) |
| 206 | { |
| 207 | struct page *page = virt_to_page(cpu_addr); |
| 208 | int ret; |
| 209 | |
| 210 | ret = sg_alloc_table(sgt, 1, GFP_KERNEL); |
| 211 | if (unlikely(ret)) |
| 212 | return ret; |
| 213 | |
| 214 | sg_set_page(sgt->sgl, page, PAGE_ALIGN(size), 0); |
| 215 | return 0; |
| 216 | } |
| 217 | EXPORT_SYMBOL(dma_common_get_sgtable); |
| 218 | |
Marek Szyprowski | 64ccc9c | 2012-06-14 13:03:04 +0200 | [diff] [blame] | 219 | /* |
| 220 | * Create userspace mapping for the DMA-coherent memory. |
| 221 | */ |
| 222 | int dma_common_mmap(struct device *dev, struct vm_area_struct *vma, |
| 223 | void *cpu_addr, dma_addr_t dma_addr, size_t size) |
| 224 | { |
| 225 | int ret = -ENXIO; |
Vladimir Murzin | 07c75d7 | 2017-06-28 10:16:57 +0100 | [diff] [blame] | 226 | #ifndef CONFIG_ARCH_NO_COHERENT_DMA_MMAP |
Muhammad Falak R Wani | 95da00e | 2016-05-21 18:52:22 +0530 | [diff] [blame] | 227 | unsigned long user_count = vma_pages(vma); |
Marek Szyprowski | 64ccc9c | 2012-06-14 13:03:04 +0200 | [diff] [blame] | 228 | unsigned long count = PAGE_ALIGN(size) >> PAGE_SHIFT; |
| 229 | unsigned long pfn = page_to_pfn(virt_to_page(cpu_addr)); |
| 230 | unsigned long off = vma->vm_pgoff; |
| 231 | |
| 232 | vma->vm_page_prot = pgprot_noncached(vma->vm_page_prot); |
| 233 | |
Vladimir Murzin | 43fc509 | 2017-07-20 11:19:58 +0100 | [diff] [blame] | 234 | if (dma_mmap_from_dev_coherent(dev, vma, cpu_addr, size, &ret)) |
Marek Szyprowski | 64ccc9c | 2012-06-14 13:03:04 +0200 | [diff] [blame] | 235 | return ret; |
| 236 | |
| 237 | if (off < count && user_count <= (count - off)) { |
| 238 | ret = remap_pfn_range(vma, vma->vm_start, |
| 239 | pfn + off, |
| 240 | user_count << PAGE_SHIFT, |
| 241 | vma->vm_page_prot); |
| 242 | } |
Vladimir Murzin | 07c75d7 | 2017-06-28 10:16:57 +0100 | [diff] [blame] | 243 | #endif /* !CONFIG_ARCH_NO_COHERENT_DMA_MMAP */ |
Marek Szyprowski | 64ccc9c | 2012-06-14 13:03:04 +0200 | [diff] [blame] | 244 | |
| 245 | return ret; |
| 246 | } |
| 247 | EXPORT_SYMBOL(dma_common_mmap); |
Laura Abbott | 513510d | 2014-10-09 15:26:40 -0700 | [diff] [blame] | 248 | |
| 249 | #ifdef CONFIG_MMU |
Catalin Marinas | 1a3389f | 2017-05-25 17:26:47 +0100 | [diff] [blame] | 250 | static struct vm_struct *__dma_common_pages_remap(struct page **pages, |
| 251 | size_t size, unsigned long vm_flags, pgprot_t prot, |
| 252 | const void *caller) |
| 253 | { |
| 254 | struct vm_struct *area; |
| 255 | |
| 256 | area = get_vm_area_caller(size, vm_flags, caller); |
| 257 | if (!area) |
| 258 | return NULL; |
| 259 | |
| 260 | if (map_vm_area(area, prot, pages)) { |
| 261 | vunmap(area->addr); |
| 262 | return NULL; |
| 263 | } |
| 264 | |
| 265 | return area; |
| 266 | } |
| 267 | |
Laura Abbott | 513510d | 2014-10-09 15:26:40 -0700 | [diff] [blame] | 268 | /* |
| 269 | * remaps an array of PAGE_SIZE pages into another vm_area |
| 270 | * Cannot be used in non-sleeping contexts |
| 271 | */ |
| 272 | void *dma_common_pages_remap(struct page **pages, size_t size, |
| 273 | unsigned long vm_flags, pgprot_t prot, |
| 274 | const void *caller) |
| 275 | { |
| 276 | struct vm_struct *area; |
| 277 | |
Catalin Marinas | 1a3389f | 2017-05-25 17:26:47 +0100 | [diff] [blame] | 278 | area = __dma_common_pages_remap(pages, size, vm_flags, prot, caller); |
Laura Abbott | 513510d | 2014-10-09 15:26:40 -0700 | [diff] [blame] | 279 | if (!area) |
| 280 | return NULL; |
| 281 | |
| 282 | area->pages = pages; |
| 283 | |
Laura Abbott | 513510d | 2014-10-09 15:26:40 -0700 | [diff] [blame] | 284 | return area->addr; |
| 285 | } |
| 286 | |
| 287 | /* |
| 288 | * remaps an allocated contiguous region into another vm_area. |
| 289 | * Cannot be used in non-sleeping contexts |
| 290 | */ |
| 291 | |
| 292 | void *dma_common_contiguous_remap(struct page *page, size_t size, |
| 293 | unsigned long vm_flags, |
| 294 | pgprot_t prot, const void *caller) |
| 295 | { |
| 296 | int i; |
| 297 | struct page **pages; |
Catalin Marinas | 1a3389f | 2017-05-25 17:26:47 +0100 | [diff] [blame] | 298 | struct vm_struct *area; |
Laura Abbott | 513510d | 2014-10-09 15:26:40 -0700 | [diff] [blame] | 299 | |
| 300 | pages = kmalloc(sizeof(struct page *) << get_order(size), GFP_KERNEL); |
| 301 | if (!pages) |
| 302 | return NULL; |
| 303 | |
Geliang Tang | 0dd8911 | 2017-03-24 22:10:49 +0800 | [diff] [blame] | 304 | for (i = 0; i < (size >> PAGE_SHIFT); i++) |
| 305 | pages[i] = nth_page(page, i); |
Laura Abbott | 513510d | 2014-10-09 15:26:40 -0700 | [diff] [blame] | 306 | |
Catalin Marinas | 1a3389f | 2017-05-25 17:26:47 +0100 | [diff] [blame] | 307 | area = __dma_common_pages_remap(pages, size, vm_flags, prot, caller); |
Laura Abbott | 513510d | 2014-10-09 15:26:40 -0700 | [diff] [blame] | 308 | |
| 309 | kfree(pages); |
| 310 | |
Catalin Marinas | 1a3389f | 2017-05-25 17:26:47 +0100 | [diff] [blame] | 311 | if (!area) |
| 312 | return NULL; |
| 313 | return area->addr; |
Laura Abbott | 513510d | 2014-10-09 15:26:40 -0700 | [diff] [blame] | 314 | } |
| 315 | |
| 316 | /* |
| 317 | * unmaps a range previously mapped by dma_common_*_remap |
| 318 | */ |
| 319 | void dma_common_free_remap(void *cpu_addr, size_t size, unsigned long vm_flags) |
| 320 | { |
| 321 | struct vm_struct *area = find_vm_area(cpu_addr); |
| 322 | |
| 323 | if (!area || (area->flags & vm_flags) != vm_flags) { |
| 324 | WARN(1, "trying to free invalid coherent area: %p\n", cpu_addr); |
| 325 | return; |
| 326 | } |
| 327 | |
Peng Fan | 8571410 | 2016-07-21 16:04:21 +0800 | [diff] [blame] | 328 | unmap_kernel_range((unsigned long)cpu_addr, PAGE_ALIGN(size)); |
Laura Abbott | 513510d | 2014-10-09 15:26:40 -0700 | [diff] [blame] | 329 | vunmap(cpu_addr); |
| 330 | } |
| 331 | #endif |
Sricharan R | 09515ef | 2017-04-10 16:51:01 +0530 | [diff] [blame] | 332 | |
| 333 | /* |
| 334 | * Common configuration to enable DMA API use for a device |
| 335 | */ |
| 336 | #include <linux/pci.h> |
| 337 | |
| 338 | int dma_configure(struct device *dev) |
| 339 | { |
| 340 | struct device *bridge = NULL, *dma_dev = dev; |
| 341 | enum dev_dma_attr attr; |
Laurent Pinchart | 7b07cbe | 2017-04-10 16:51:02 +0530 | [diff] [blame] | 342 | int ret = 0; |
Sricharan R | 09515ef | 2017-04-10 16:51:01 +0530 | [diff] [blame] | 343 | |
| 344 | if (dev_is_pci(dev)) { |
| 345 | bridge = pci_get_host_bridge_device(to_pci_dev(dev)); |
| 346 | dma_dev = bridge; |
| 347 | if (IS_ENABLED(CONFIG_OF) && dma_dev->parent && |
| 348 | dma_dev->parent->of_node) |
| 349 | dma_dev = dma_dev->parent; |
| 350 | } |
| 351 | |
| 352 | if (dma_dev->of_node) { |
Laurent Pinchart | 7b07cbe | 2017-04-10 16:51:02 +0530 | [diff] [blame] | 353 | ret = of_dma_configure(dev, dma_dev->of_node); |
Sricharan R | 09515ef | 2017-04-10 16:51:01 +0530 | [diff] [blame] | 354 | } else if (has_acpi_companion(dma_dev)) { |
| 355 | attr = acpi_get_dma_attr(to_acpi_device_node(dma_dev->fwnode)); |
| 356 | if (attr != DEV_DMA_NOT_SUPPORTED) |
Sricharan R | 5a1bb63 | 2017-04-10 16:51:03 +0530 | [diff] [blame] | 357 | ret = acpi_dma_configure(dev, attr); |
Sricharan R | 09515ef | 2017-04-10 16:51:01 +0530 | [diff] [blame] | 358 | } |
| 359 | |
| 360 | if (bridge) |
| 361 | pci_put_host_bridge_device(bridge); |
| 362 | |
Laurent Pinchart | 7b07cbe | 2017-04-10 16:51:02 +0530 | [diff] [blame] | 363 | return ret; |
Sricharan R | 09515ef | 2017-04-10 16:51:01 +0530 | [diff] [blame] | 364 | } |
| 365 | |
| 366 | void dma_deconfigure(struct device *dev) |
| 367 | { |
| 368 | of_dma_deconfigure(dev); |
| 369 | acpi_dma_deconfigure(dev); |
| 370 | } |