blob: 85652110c8ff1d5fda50cba31006c131deebeaeb [file] [log] [blame]
Robin Murphy0db2e5d2015-10-01 20:13:58 +01001/*
2 * A fairly generic DMA-API to IOMMU-API glue layer.
3 *
4 * Copyright (C) 2014-2015 ARM Ltd.
5 *
6 * based in part on arch/arm/mm/dma-mapping.c:
7 * Copyright (C) 2000-2004 Russell King
8 *
9 * This program is free software; you can redistribute it and/or modify
10 * it under the terms of the GNU General Public License version 2 as
11 * published by the Free Software Foundation.
12 *
13 * This program is distributed in the hope that it will be useful,
14 * but WITHOUT ANY WARRANTY; without even the implied warranty of
15 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
16 * GNU General Public License for more details.
17 *
18 * You should have received a copy of the GNU General Public License
19 * along with this program. If not, see <http://www.gnu.org/licenses/>.
20 */
21
22#include <linux/device.h>
23#include <linux/dma-iommu.h>
Robin Murphy5b11e9c2015-12-18 17:01:46 +000024#include <linux/gfp.h>
Robin Murphy0db2e5d2015-10-01 20:13:58 +010025#include <linux/huge_mm.h>
26#include <linux/iommu.h>
27#include <linux/iova.h>
Robin Murphy44bb7e22016-09-12 17:13:59 +010028#include <linux/irq.h>
Robin Murphy0db2e5d2015-10-01 20:13:58 +010029#include <linux/mm.h>
Robin Murphyfade1ec2016-09-12 17:14:00 +010030#include <linux/pci.h>
Robin Murphy5b11e9c2015-12-18 17:01:46 +000031#include <linux/scatterlist.h>
32#include <linux/vmalloc.h>
Robin Murphy0db2e5d2015-10-01 20:13:58 +010033
Robin Murphy44bb7e22016-09-12 17:13:59 +010034struct iommu_dma_msi_page {
35 struct list_head list;
36 dma_addr_t iova;
37 phys_addr_t phys;
38};
39
Robin Murphyfdbe5742017-01-19 20:57:46 +000040enum iommu_dma_cookie_type {
41 IOMMU_DMA_IOVA_COOKIE,
42 IOMMU_DMA_MSI_COOKIE,
Robin Murphy44bb7e22016-09-12 17:13:59 +010043};
44
Robin Murphyfdbe5742017-01-19 20:57:46 +000045struct iommu_dma_cookie {
46 enum iommu_dma_cookie_type type;
47 union {
48 /* Full allocator for IOMMU_DMA_IOVA_COOKIE */
49 struct iova_domain iovad;
50 /* Trivial linear page allocator for IOMMU_DMA_MSI_COOKIE */
51 dma_addr_t msi_iova;
52 };
53 struct list_head msi_page_list;
54 spinlock_t msi_lock;
55};
56
57static inline size_t cookie_msi_granule(struct iommu_dma_cookie *cookie)
58{
59 if (cookie->type == IOMMU_DMA_IOVA_COOKIE)
60 return cookie->iovad.granule;
61 return PAGE_SIZE;
62}
63
Robin Murphy44bb7e22016-09-12 17:13:59 +010064static inline struct iova_domain *cookie_iovad(struct iommu_domain *domain)
65{
Robin Murphyfdbe5742017-01-19 20:57:46 +000066 struct iommu_dma_cookie *cookie = domain->iova_cookie;
67
68 if (cookie->type == IOMMU_DMA_IOVA_COOKIE)
69 return &cookie->iovad;
70 return NULL;
71}
72
73static struct iommu_dma_cookie *cookie_alloc(enum iommu_dma_cookie_type type)
74{
75 struct iommu_dma_cookie *cookie;
76
77 cookie = kzalloc(sizeof(*cookie), GFP_KERNEL);
78 if (cookie) {
79 spin_lock_init(&cookie->msi_lock);
80 INIT_LIST_HEAD(&cookie->msi_page_list);
81 cookie->type = type;
82 }
83 return cookie;
Robin Murphy44bb7e22016-09-12 17:13:59 +010084}
85
Robin Murphy0db2e5d2015-10-01 20:13:58 +010086int iommu_dma_init(void)
87{
88 return iova_cache_get();
89}
90
91/**
92 * iommu_get_dma_cookie - Acquire DMA-API resources for a domain
93 * @domain: IOMMU domain to prepare for DMA-API usage
94 *
95 * IOMMU drivers should normally call this from their domain_alloc
96 * callback when domain->type == IOMMU_DOMAIN_DMA.
97 */
98int iommu_get_dma_cookie(struct iommu_domain *domain)
99{
Robin Murphy0db2e5d2015-10-01 20:13:58 +0100100 if (domain->iova_cookie)
101 return -EEXIST;
102
Robin Murphyfdbe5742017-01-19 20:57:46 +0000103 domain->iova_cookie = cookie_alloc(IOMMU_DMA_IOVA_COOKIE);
104 if (!domain->iova_cookie)
Robin Murphy44bb7e22016-09-12 17:13:59 +0100105 return -ENOMEM;
Robin Murphy0db2e5d2015-10-01 20:13:58 +0100106
Robin Murphy44bb7e22016-09-12 17:13:59 +0100107 return 0;
Robin Murphy0db2e5d2015-10-01 20:13:58 +0100108}
109EXPORT_SYMBOL(iommu_get_dma_cookie);
110
111/**
Robin Murphyfdbe5742017-01-19 20:57:46 +0000112 * iommu_get_msi_cookie - Acquire just MSI remapping resources
113 * @domain: IOMMU domain to prepare
114 * @base: Start address of IOVA region for MSI mappings
115 *
116 * Users who manage their own IOVA allocation and do not want DMA API support,
117 * but would still like to take advantage of automatic MSI remapping, can use
118 * this to initialise their own domain appropriately. Users should reserve a
119 * contiguous IOVA region, starting at @base, large enough to accommodate the
120 * number of PAGE_SIZE mappings necessary to cover every MSI doorbell address
121 * used by the devices attached to @domain.
122 */
123int iommu_get_msi_cookie(struct iommu_domain *domain, dma_addr_t base)
124{
125 struct iommu_dma_cookie *cookie;
126
127 if (domain->type != IOMMU_DOMAIN_UNMANAGED)
128 return -EINVAL;
129
130 if (domain->iova_cookie)
131 return -EEXIST;
132
133 cookie = cookie_alloc(IOMMU_DMA_MSI_COOKIE);
134 if (!cookie)
135 return -ENOMEM;
136
137 cookie->msi_iova = base;
138 domain->iova_cookie = cookie;
139 return 0;
140}
141EXPORT_SYMBOL(iommu_get_msi_cookie);
142
143/**
Robin Murphy0db2e5d2015-10-01 20:13:58 +0100144 * iommu_put_dma_cookie - Release a domain's DMA mapping resources
Robin Murphyfdbe5742017-01-19 20:57:46 +0000145 * @domain: IOMMU domain previously prepared by iommu_get_dma_cookie() or
146 * iommu_get_msi_cookie()
Robin Murphy0db2e5d2015-10-01 20:13:58 +0100147 *
148 * IOMMU drivers should normally call this from their domain_free callback.
149 */
150void iommu_put_dma_cookie(struct iommu_domain *domain)
151{
Robin Murphy44bb7e22016-09-12 17:13:59 +0100152 struct iommu_dma_cookie *cookie = domain->iova_cookie;
153 struct iommu_dma_msi_page *msi, *tmp;
Robin Murphy0db2e5d2015-10-01 20:13:58 +0100154
Robin Murphy44bb7e22016-09-12 17:13:59 +0100155 if (!cookie)
Robin Murphy0db2e5d2015-10-01 20:13:58 +0100156 return;
157
Robin Murphyfdbe5742017-01-19 20:57:46 +0000158 if (cookie->type == IOMMU_DMA_IOVA_COOKIE && cookie->iovad.granule)
Robin Murphy44bb7e22016-09-12 17:13:59 +0100159 put_iova_domain(&cookie->iovad);
160
161 list_for_each_entry_safe(msi, tmp, &cookie->msi_page_list, list) {
162 list_del(&msi->list);
163 kfree(msi);
164 }
165 kfree(cookie);
Robin Murphy0db2e5d2015-10-01 20:13:58 +0100166 domain->iova_cookie = NULL;
167}
168EXPORT_SYMBOL(iommu_put_dma_cookie);
169
Robin Murphy273df962017-03-16 17:00:19 +0000170/**
171 * iommu_dma_get_resv_regions - Reserved region driver helper
172 * @dev: Device from iommu_get_resv_regions()
173 * @list: Reserved region list from iommu_get_resv_regions()
174 *
175 * IOMMU drivers can use this to implement their .get_resv_regions callback
176 * for general non-IOMMU-specific reservations. Currently, this covers host
177 * bridge windows for PCI devices.
178 */
179void iommu_dma_get_resv_regions(struct device *dev, struct list_head *list)
Robin Murphyfade1ec2016-09-12 17:14:00 +0100180{
Robin Murphy273df962017-03-16 17:00:19 +0000181 struct pci_host_bridge *bridge;
Robin Murphyfade1ec2016-09-12 17:14:00 +0100182 struct resource_entry *window;
Robin Murphyfade1ec2016-09-12 17:14:00 +0100183
Robin Murphy273df962017-03-16 17:00:19 +0000184 if (!dev_is_pci(dev))
185 return;
186
187 bridge = pci_find_host_bridge(to_pci_dev(dev)->bus);
Robin Murphyfade1ec2016-09-12 17:14:00 +0100188 resource_list_for_each_entry(window, &bridge->windows) {
Robin Murphy273df962017-03-16 17:00:19 +0000189 struct iommu_resv_region *region;
190 phys_addr_t start;
191 size_t length;
192
Robin Murphy938f1bb2017-03-16 17:00:17 +0000193 if (resource_type(window->res) != IORESOURCE_MEM)
Robin Murphyfade1ec2016-09-12 17:14:00 +0100194 continue;
195
Robin Murphy273df962017-03-16 17:00:19 +0000196 start = window->res->start - window->offset;
197 length = window->res->end - window->res->start + 1;
198 region = iommu_alloc_resv_region(start, length, 0,
199 IOMMU_RESV_RESERVED);
200 if (!region)
201 return;
202
203 list_add_tail(&region->list, list);
Robin Murphyfade1ec2016-09-12 17:14:00 +0100204 }
205}
Robin Murphy273df962017-03-16 17:00:19 +0000206EXPORT_SYMBOL(iommu_dma_get_resv_regions);
Robin Murphyfade1ec2016-09-12 17:14:00 +0100207
Robin Murphy7c1b0582017-03-16 17:00:18 +0000208static int cookie_init_hw_msi_region(struct iommu_dma_cookie *cookie,
209 phys_addr_t start, phys_addr_t end)
210{
211 struct iova_domain *iovad = &cookie->iovad;
212 struct iommu_dma_msi_page *msi_page;
213 int i, num_pages;
214
215 start -= iova_offset(iovad, start);
216 num_pages = iova_align(iovad, end - start) >> iova_shift(iovad);
217
218 msi_page = kcalloc(num_pages, sizeof(*msi_page), GFP_KERNEL);
219 if (!msi_page)
220 return -ENOMEM;
221
222 for (i = 0; i < num_pages; i++) {
223 msi_page[i].phys = start;
224 msi_page[i].iova = start;
225 INIT_LIST_HEAD(&msi_page[i].list);
226 list_add(&msi_page[i].list, &cookie->msi_page_list);
227 start += iovad->granule;
228 }
229
230 return 0;
231}
232
233static int iova_reserve_iommu_regions(struct device *dev,
234 struct iommu_domain *domain)
235{
236 struct iommu_dma_cookie *cookie = domain->iova_cookie;
237 struct iova_domain *iovad = &cookie->iovad;
238 struct iommu_resv_region *region;
239 LIST_HEAD(resv_regions);
240 int ret = 0;
241
Robin Murphy7c1b0582017-03-16 17:00:18 +0000242 iommu_get_resv_regions(dev, &resv_regions);
243 list_for_each_entry(region, &resv_regions, list) {
244 unsigned long lo, hi;
245
246 /* We ARE the software that manages these! */
247 if (region->type == IOMMU_RESV_SW_MSI)
248 continue;
249
250 lo = iova_pfn(iovad, region->start);
251 hi = iova_pfn(iovad, region->start + region->length - 1);
252 reserve_iova(iovad, lo, hi);
253
254 if (region->type == IOMMU_RESV_MSI)
255 ret = cookie_init_hw_msi_region(cookie, region->start,
256 region->start + region->length);
257 if (ret)
258 break;
259 }
260 iommu_put_resv_regions(dev, &resv_regions);
261
262 return ret;
263}
264
Robin Murphy0db2e5d2015-10-01 20:13:58 +0100265/**
266 * iommu_dma_init_domain - Initialise a DMA mapping domain
267 * @domain: IOMMU domain previously prepared by iommu_get_dma_cookie()
268 * @base: IOVA at which the mappable address space starts
269 * @size: Size of IOVA space
Robin Murphyfade1ec2016-09-12 17:14:00 +0100270 * @dev: Device the domain is being initialised for
Robin Murphy0db2e5d2015-10-01 20:13:58 +0100271 *
272 * @base and @size should be exact multiples of IOMMU page granularity to
273 * avoid rounding surprises. If necessary, we reserve the page at address 0
274 * to ensure it is an invalid IOVA. It is safe to reinitialise a domain, but
275 * any change which could make prior IOVAs invalid will fail.
276 */
Robin Murphyfade1ec2016-09-12 17:14:00 +0100277int iommu_dma_init_domain(struct iommu_domain *domain, dma_addr_t base,
278 u64 size, struct device *dev)
Robin Murphy0db2e5d2015-10-01 20:13:58 +0100279{
Robin Murphyfdbe5742017-01-19 20:57:46 +0000280 struct iommu_dma_cookie *cookie = domain->iova_cookie;
281 struct iova_domain *iovad = &cookie->iovad;
Robin Murphy0db2e5d2015-10-01 20:13:58 +0100282 unsigned long order, base_pfn, end_pfn;
283
Robin Murphyfdbe5742017-01-19 20:57:46 +0000284 if (!cookie || cookie->type != IOMMU_DMA_IOVA_COOKIE)
285 return -EINVAL;
Robin Murphy0db2e5d2015-10-01 20:13:58 +0100286
287 /* Use the smallest supported page size for IOVA granularity */
Robin Murphyd16e0fa2016-04-07 18:42:06 +0100288 order = __ffs(domain->pgsize_bitmap);
Robin Murphy0db2e5d2015-10-01 20:13:58 +0100289 base_pfn = max_t(unsigned long, 1, base >> order);
290 end_pfn = (base + size - 1) >> order;
291
292 /* Check the domain allows at least some access to the device... */
293 if (domain->geometry.force_aperture) {
294 if (base > domain->geometry.aperture_end ||
295 base + size <= domain->geometry.aperture_start) {
296 pr_warn("specified DMA range outside IOMMU capability\n");
297 return -EFAULT;
298 }
299 /* ...then finally give it a kicking to make sure it fits */
300 base_pfn = max_t(unsigned long, base_pfn,
301 domain->geometry.aperture_start >> order);
302 end_pfn = min_t(unsigned long, end_pfn,
303 domain->geometry.aperture_end >> order);
304 }
Robin Murphyf51d7bb2017-01-16 13:24:54 +0000305 /*
306 * PCI devices may have larger DMA masks, but still prefer allocating
307 * within a 32-bit mask to avoid DAC addressing. Such limitations don't
308 * apply to the typical platform device, so for those we may as well
309 * leave the cache limit at the top of their range to save an rb_last()
310 * traversal on every allocation.
311 */
Robin Murphy7c1b0582017-03-16 17:00:18 +0000312 if (dev && dev_is_pci(dev))
Robin Murphyf51d7bb2017-01-16 13:24:54 +0000313 end_pfn &= DMA_BIT_MASK(32) >> order;
Robin Murphy0db2e5d2015-10-01 20:13:58 +0100314
Robin Murphyf51d7bb2017-01-16 13:24:54 +0000315 /* start_pfn is always nonzero for an already-initialised domain */
Robin Murphy0db2e5d2015-10-01 20:13:58 +0100316 if (iovad->start_pfn) {
317 if (1UL << order != iovad->granule ||
Robin Murphyf51d7bb2017-01-16 13:24:54 +0000318 base_pfn != iovad->start_pfn) {
Robin Murphy0db2e5d2015-10-01 20:13:58 +0100319 pr_warn("Incompatible range for DMA domain\n");
320 return -EFAULT;
321 }
Robin Murphyf51d7bb2017-01-16 13:24:54 +0000322 /*
323 * If we have devices with different DMA masks, move the free
324 * area cache limit down for the benefit of the smaller one.
325 */
326 iovad->dma_32bit_pfn = min(end_pfn, iovad->dma_32bit_pfn);
Robin Murphy7c1b0582017-03-16 17:00:18 +0000327
328 return 0;
Robin Murphy0db2e5d2015-10-01 20:13:58 +0100329 }
Robin Murphy7c1b0582017-03-16 17:00:18 +0000330
331 init_iova_domain(iovad, 1UL << order, base_pfn, end_pfn);
332 if (!dev)
333 return 0;
334
335 return iova_reserve_iommu_regions(dev, domain);
Robin Murphy0db2e5d2015-10-01 20:13:58 +0100336}
337EXPORT_SYMBOL(iommu_dma_init_domain);
338
339/**
Mitchel Humpherys737c85c2017-01-06 18:58:12 +0530340 * dma_info_to_prot - Translate DMA API directions and attributes to IOMMU API
341 * page flags.
Robin Murphy0db2e5d2015-10-01 20:13:58 +0100342 * @dir: Direction of DMA transfer
343 * @coherent: Is the DMA master cache-coherent?
Mitchel Humpherys737c85c2017-01-06 18:58:12 +0530344 * @attrs: DMA attributes for the mapping
Robin Murphy0db2e5d2015-10-01 20:13:58 +0100345 *
346 * Return: corresponding IOMMU API page protection flags
347 */
Mitchel Humpherys737c85c2017-01-06 18:58:12 +0530348int dma_info_to_prot(enum dma_data_direction dir, bool coherent,
349 unsigned long attrs)
Robin Murphy0db2e5d2015-10-01 20:13:58 +0100350{
351 int prot = coherent ? IOMMU_CACHE : 0;
352
Mitchel Humpherys737c85c2017-01-06 18:58:12 +0530353 if (attrs & DMA_ATTR_PRIVILEGED)
354 prot |= IOMMU_PRIV;
355
Robin Murphy0db2e5d2015-10-01 20:13:58 +0100356 switch (dir) {
357 case DMA_BIDIRECTIONAL:
358 return prot | IOMMU_READ | IOMMU_WRITE;
359 case DMA_TO_DEVICE:
360 return prot | IOMMU_READ;
361 case DMA_FROM_DEVICE:
362 return prot | IOMMU_WRITE;
363 default:
364 return 0;
365 }
366}
367
Robin Murphyc987ff02016-08-09 17:31:35 +0100368static struct iova *__alloc_iova(struct iommu_domain *domain, size_t size,
Robin Murphy122fac02017-01-16 13:24:55 +0000369 dma_addr_t dma_limit, struct device *dev)
Robin Murphy0db2e5d2015-10-01 20:13:58 +0100370{
Robin Murphy44bb7e22016-09-12 17:13:59 +0100371 struct iova_domain *iovad = cookie_iovad(domain);
Robin Murphy0db2e5d2015-10-01 20:13:58 +0100372 unsigned long shift = iova_shift(iovad);
373 unsigned long length = iova_align(iovad, size) >> shift;
Robin Murphy122fac02017-01-16 13:24:55 +0000374 struct iova *iova = NULL;
Robin Murphy0db2e5d2015-10-01 20:13:58 +0100375
Robin Murphyc987ff02016-08-09 17:31:35 +0100376 if (domain->geometry.force_aperture)
377 dma_limit = min(dma_limit, domain->geometry.aperture_end);
Robin Murphy122fac02017-01-16 13:24:55 +0000378
379 /* Try to get PCI devices a SAC address */
380 if (dma_limit > DMA_BIT_MASK(32) && dev_is_pci(dev))
381 iova = alloc_iova(iovad, length, DMA_BIT_MASK(32) >> shift,
382 true);
Robin Murphy0db2e5d2015-10-01 20:13:58 +0100383 /*
384 * Enforce size-alignment to be safe - there could perhaps be an
385 * attribute to control this per-device, or at least per-domain...
386 */
Robin Murphy122fac02017-01-16 13:24:55 +0000387 if (!iova)
388 iova = alloc_iova(iovad, length, dma_limit >> shift, true);
389
390 return iova;
Robin Murphy0db2e5d2015-10-01 20:13:58 +0100391}
392
393/* The IOVA allocator knows what we mapped, so just unmap whatever that was */
394static void __iommu_dma_unmap(struct iommu_domain *domain, dma_addr_t dma_addr)
395{
Robin Murphy44bb7e22016-09-12 17:13:59 +0100396 struct iova_domain *iovad = cookie_iovad(domain);
Robin Murphy0db2e5d2015-10-01 20:13:58 +0100397 unsigned long shift = iova_shift(iovad);
398 unsigned long pfn = dma_addr >> shift;
399 struct iova *iova = find_iova(iovad, pfn);
400 size_t size;
401
402 if (WARN_ON(!iova))
403 return;
404
405 size = iova_size(iova) << shift;
406 size -= iommu_unmap(domain, pfn << shift, size);
407 /* ...and if we can't, then something is horribly, horribly wrong */
408 WARN_ON(size > 0);
409 __free_iova(iovad, iova);
410}
411
412static void __iommu_dma_free_pages(struct page **pages, int count)
413{
414 while (count--)
415 __free_page(pages[count]);
416 kvfree(pages);
417}
418
Robin Murphy3b6b7e12016-04-13 17:29:10 +0100419static struct page **__iommu_dma_alloc_pages(unsigned int count,
420 unsigned long order_mask, gfp_t gfp)
Robin Murphy0db2e5d2015-10-01 20:13:58 +0100421{
422 struct page **pages;
423 unsigned int i = 0, array_size = count * sizeof(*pages);
Robin Murphy3b6b7e12016-04-13 17:29:10 +0100424
425 order_mask &= (2U << MAX_ORDER) - 1;
426 if (!order_mask)
427 return NULL;
Robin Murphy0db2e5d2015-10-01 20:13:58 +0100428
429 if (array_size <= PAGE_SIZE)
430 pages = kzalloc(array_size, GFP_KERNEL);
431 else
432 pages = vzalloc(array_size);
433 if (!pages)
434 return NULL;
435
436 /* IOMMU can map any pages, so himem can also be used here */
437 gfp |= __GFP_NOWARN | __GFP_HIGHMEM;
438
439 while (count) {
440 struct page *page = NULL;
Robin Murphy3b6b7e12016-04-13 17:29:10 +0100441 unsigned int order_size;
Robin Murphy0db2e5d2015-10-01 20:13:58 +0100442
443 /*
444 * Higher-order allocations are a convenience rather
445 * than a necessity, hence using __GFP_NORETRY until
Robin Murphy3b6b7e12016-04-13 17:29:10 +0100446 * falling back to minimum-order allocations.
Robin Murphy0db2e5d2015-10-01 20:13:58 +0100447 */
Robin Murphy3b6b7e12016-04-13 17:29:10 +0100448 for (order_mask &= (2U << __fls(count)) - 1;
449 order_mask; order_mask &= ~order_size) {
450 unsigned int order = __fls(order_mask);
451
452 order_size = 1U << order;
453 page = alloc_pages((order_mask - order_size) ?
454 gfp | __GFP_NORETRY : gfp, order);
Robin Murphy0db2e5d2015-10-01 20:13:58 +0100455 if (!page)
456 continue;
Robin Murphy3b6b7e12016-04-13 17:29:10 +0100457 if (!order)
458 break;
459 if (!PageCompound(page)) {
Robin Murphy0db2e5d2015-10-01 20:13:58 +0100460 split_page(page, order);
461 break;
Robin Murphy3b6b7e12016-04-13 17:29:10 +0100462 } else if (!split_huge_page(page)) {
463 break;
Robin Murphy0db2e5d2015-10-01 20:13:58 +0100464 }
Robin Murphy3b6b7e12016-04-13 17:29:10 +0100465 __free_pages(page, order);
Robin Murphy0db2e5d2015-10-01 20:13:58 +0100466 }
Robin Murphy0db2e5d2015-10-01 20:13:58 +0100467 if (!page) {
468 __iommu_dma_free_pages(pages, i);
469 return NULL;
470 }
Robin Murphy3b6b7e12016-04-13 17:29:10 +0100471 count -= order_size;
472 while (order_size--)
Robin Murphy0db2e5d2015-10-01 20:13:58 +0100473 pages[i++] = page++;
474 }
475 return pages;
476}
477
478/**
479 * iommu_dma_free - Free a buffer allocated by iommu_dma_alloc()
480 * @dev: Device which owns this buffer
481 * @pages: Array of buffer pages as returned by iommu_dma_alloc()
482 * @size: Size of buffer in bytes
483 * @handle: DMA address of buffer
484 *
485 * Frees both the pages associated with the buffer, and the array
486 * describing them
487 */
488void iommu_dma_free(struct device *dev, struct page **pages, size_t size,
489 dma_addr_t *handle)
490{
491 __iommu_dma_unmap(iommu_get_domain_for_dev(dev), *handle);
492 __iommu_dma_free_pages(pages, PAGE_ALIGN(size) >> PAGE_SHIFT);
493 *handle = DMA_ERROR_CODE;
494}
495
496/**
497 * iommu_dma_alloc - Allocate and map a buffer contiguous in IOVA space
498 * @dev: Device to allocate memory for. Must be a real device
499 * attached to an iommu_dma_domain
500 * @size: Size of buffer in bytes
501 * @gfp: Allocation flags
Robin Murphy3b6b7e12016-04-13 17:29:10 +0100502 * @attrs: DMA attributes for this allocation
Robin Murphy0db2e5d2015-10-01 20:13:58 +0100503 * @prot: IOMMU mapping flags
504 * @handle: Out argument for allocated DMA handle
505 * @flush_page: Arch callback which must ensure PAGE_SIZE bytes from the
506 * given VA/PA are visible to the given non-coherent device.
507 *
508 * If @size is less than PAGE_SIZE, then a full CPU page will be allocated,
509 * but an IOMMU which supports smaller pages might not map the whole thing.
510 *
511 * Return: Array of struct page pointers describing the buffer,
512 * or NULL on failure.
513 */
Robin Murphy3b6b7e12016-04-13 17:29:10 +0100514struct page **iommu_dma_alloc(struct device *dev, size_t size, gfp_t gfp,
Krzysztof Kozlowski00085f12016-08-03 13:46:00 -0700515 unsigned long attrs, int prot, dma_addr_t *handle,
Robin Murphy0db2e5d2015-10-01 20:13:58 +0100516 void (*flush_page)(struct device *, const void *, phys_addr_t))
517{
518 struct iommu_domain *domain = iommu_get_domain_for_dev(dev);
Robin Murphy44bb7e22016-09-12 17:13:59 +0100519 struct iova_domain *iovad = cookie_iovad(domain);
Robin Murphy0db2e5d2015-10-01 20:13:58 +0100520 struct iova *iova;
521 struct page **pages;
522 struct sg_table sgt;
523 dma_addr_t dma_addr;
Robin Murphy3b6b7e12016-04-13 17:29:10 +0100524 unsigned int count, min_size, alloc_sizes = domain->pgsize_bitmap;
Robin Murphy0db2e5d2015-10-01 20:13:58 +0100525
526 *handle = DMA_ERROR_CODE;
527
Robin Murphy3b6b7e12016-04-13 17:29:10 +0100528 min_size = alloc_sizes & -alloc_sizes;
529 if (min_size < PAGE_SIZE) {
530 min_size = PAGE_SIZE;
531 alloc_sizes |= PAGE_SIZE;
532 } else {
533 size = ALIGN(size, min_size);
534 }
Krzysztof Kozlowski00085f12016-08-03 13:46:00 -0700535 if (attrs & DMA_ATTR_ALLOC_SINGLE_PAGES)
Robin Murphy3b6b7e12016-04-13 17:29:10 +0100536 alloc_sizes = min_size;
537
538 count = PAGE_ALIGN(size) >> PAGE_SHIFT;
539 pages = __iommu_dma_alloc_pages(count, alloc_sizes >> PAGE_SHIFT, gfp);
Robin Murphy0db2e5d2015-10-01 20:13:58 +0100540 if (!pages)
541 return NULL;
542
Robin Murphy122fac02017-01-16 13:24:55 +0000543 iova = __alloc_iova(domain, size, dev->coherent_dma_mask, dev);
Robin Murphy0db2e5d2015-10-01 20:13:58 +0100544 if (!iova)
545 goto out_free_pages;
546
547 size = iova_align(iovad, size);
548 if (sg_alloc_table_from_pages(&sgt, pages, count, 0, size, GFP_KERNEL))
549 goto out_free_iova;
550
551 if (!(prot & IOMMU_CACHE)) {
552 struct sg_mapping_iter miter;
553 /*
554 * The CPU-centric flushing implied by SG_MITER_TO_SG isn't
555 * sufficient here, so skip it by using the "wrong" direction.
556 */
557 sg_miter_start(&miter, sgt.sgl, sgt.orig_nents, SG_MITER_FROM_SG);
558 while (sg_miter_next(&miter))
559 flush_page(dev, miter.addr, page_to_phys(miter.page));
560 sg_miter_stop(&miter);
561 }
562
563 dma_addr = iova_dma_addr(iovad, iova);
564 if (iommu_map_sg(domain, dma_addr, sgt.sgl, sgt.orig_nents, prot)
565 < size)
566 goto out_free_sg;
567
568 *handle = dma_addr;
569 sg_free_table(&sgt);
570 return pages;
571
572out_free_sg:
573 sg_free_table(&sgt);
574out_free_iova:
575 __free_iova(iovad, iova);
576out_free_pages:
577 __iommu_dma_free_pages(pages, count);
578 return NULL;
579}
580
581/**
582 * iommu_dma_mmap - Map a buffer into provided user VMA
583 * @pages: Array representing buffer from iommu_dma_alloc()
584 * @size: Size of buffer in bytes
585 * @vma: VMA describing requested userspace mapping
586 *
587 * Maps the pages of the buffer in @pages into @vma. The caller is responsible
588 * for verifying the correct size and protection of @vma beforehand.
589 */
590
591int iommu_dma_mmap(struct page **pages, size_t size, struct vm_area_struct *vma)
592{
593 unsigned long uaddr = vma->vm_start;
594 unsigned int i, count = PAGE_ALIGN(size) >> PAGE_SHIFT;
595 int ret = -ENXIO;
596
597 for (i = vma->vm_pgoff; i < count && uaddr < vma->vm_end; i++) {
598 ret = vm_insert_page(vma, uaddr, pages[i]);
599 if (ret)
600 break;
601 uaddr += PAGE_SIZE;
602 }
603 return ret;
604}
605
Robin Murphy51f8cc92016-11-14 12:16:26 +0000606static dma_addr_t __iommu_dma_map(struct device *dev, phys_addr_t phys,
607 size_t size, int prot)
Robin Murphy0db2e5d2015-10-01 20:13:58 +0100608{
609 dma_addr_t dma_addr;
610 struct iommu_domain *domain = iommu_get_domain_for_dev(dev);
Robin Murphy44bb7e22016-09-12 17:13:59 +0100611 struct iova_domain *iovad = cookie_iovad(domain);
Robin Murphy0db2e5d2015-10-01 20:13:58 +0100612 size_t iova_off = iova_offset(iovad, phys);
613 size_t len = iova_align(iovad, size + iova_off);
Robin Murphy122fac02017-01-16 13:24:55 +0000614 struct iova *iova = __alloc_iova(domain, len, dma_get_mask(dev), dev);
Robin Murphy0db2e5d2015-10-01 20:13:58 +0100615
616 if (!iova)
617 return DMA_ERROR_CODE;
618
619 dma_addr = iova_dma_addr(iovad, iova);
620 if (iommu_map(domain, dma_addr, phys - iova_off, len, prot)) {
621 __free_iova(iovad, iova);
622 return DMA_ERROR_CODE;
623 }
624 return dma_addr + iova_off;
625}
626
Robin Murphy51f8cc92016-11-14 12:16:26 +0000627dma_addr_t iommu_dma_map_page(struct device *dev, struct page *page,
628 unsigned long offset, size_t size, int prot)
629{
630 return __iommu_dma_map(dev, page_to_phys(page) + offset, size, prot);
631}
632
Robin Murphy0db2e5d2015-10-01 20:13:58 +0100633void iommu_dma_unmap_page(struct device *dev, dma_addr_t handle, size_t size,
Krzysztof Kozlowski00085f12016-08-03 13:46:00 -0700634 enum dma_data_direction dir, unsigned long attrs)
Robin Murphy0db2e5d2015-10-01 20:13:58 +0100635{
636 __iommu_dma_unmap(iommu_get_domain_for_dev(dev), handle);
637}
638
639/*
640 * Prepare a successfully-mapped scatterlist to give back to the caller.
Robin Murphy809eac52016-04-11 12:32:31 +0100641 *
642 * At this point the segments are already laid out by iommu_dma_map_sg() to
643 * avoid individually crossing any boundaries, so we merely need to check a
644 * segment's start address to avoid concatenating across one.
Robin Murphy0db2e5d2015-10-01 20:13:58 +0100645 */
646static int __finalise_sg(struct device *dev, struct scatterlist *sg, int nents,
647 dma_addr_t dma_addr)
648{
Robin Murphy809eac52016-04-11 12:32:31 +0100649 struct scatterlist *s, *cur = sg;
650 unsigned long seg_mask = dma_get_seg_boundary(dev);
651 unsigned int cur_len = 0, max_len = dma_get_max_seg_size(dev);
652 int i, count = 0;
Robin Murphy0db2e5d2015-10-01 20:13:58 +0100653
654 for_each_sg(sg, s, nents, i) {
Robin Murphy809eac52016-04-11 12:32:31 +0100655 /* Restore this segment's original unaligned fields first */
656 unsigned int s_iova_off = sg_dma_address(s);
Robin Murphy0db2e5d2015-10-01 20:13:58 +0100657 unsigned int s_length = sg_dma_len(s);
Robin Murphy809eac52016-04-11 12:32:31 +0100658 unsigned int s_iova_len = s->length;
Robin Murphy0db2e5d2015-10-01 20:13:58 +0100659
Robin Murphy809eac52016-04-11 12:32:31 +0100660 s->offset += s_iova_off;
Robin Murphy0db2e5d2015-10-01 20:13:58 +0100661 s->length = s_length;
Robin Murphy809eac52016-04-11 12:32:31 +0100662 sg_dma_address(s) = DMA_ERROR_CODE;
663 sg_dma_len(s) = 0;
664
665 /*
666 * Now fill in the real DMA data. If...
667 * - there is a valid output segment to append to
668 * - and this segment starts on an IOVA page boundary
669 * - but doesn't fall at a segment boundary
670 * - and wouldn't make the resulting output segment too long
671 */
672 if (cur_len && !s_iova_off && (dma_addr & seg_mask) &&
673 (cur_len + s_length <= max_len)) {
674 /* ...then concatenate it with the previous one */
675 cur_len += s_length;
676 } else {
677 /* Otherwise start the next output segment */
678 if (i > 0)
679 cur = sg_next(cur);
680 cur_len = s_length;
681 count++;
682
683 sg_dma_address(cur) = dma_addr + s_iova_off;
684 }
685
686 sg_dma_len(cur) = cur_len;
687 dma_addr += s_iova_len;
688
689 if (s_length + s_iova_off < s_iova_len)
690 cur_len = 0;
Robin Murphy0db2e5d2015-10-01 20:13:58 +0100691 }
Robin Murphy809eac52016-04-11 12:32:31 +0100692 return count;
Robin Murphy0db2e5d2015-10-01 20:13:58 +0100693}
694
695/*
696 * If mapping failed, then just restore the original list,
697 * but making sure the DMA fields are invalidated.
698 */
699static void __invalidate_sg(struct scatterlist *sg, int nents)
700{
701 struct scatterlist *s;
702 int i;
703
704 for_each_sg(sg, s, nents, i) {
705 if (sg_dma_address(s) != DMA_ERROR_CODE)
Robin Murphy07b48ac2016-03-10 19:28:12 +0000706 s->offset += sg_dma_address(s);
Robin Murphy0db2e5d2015-10-01 20:13:58 +0100707 if (sg_dma_len(s))
708 s->length = sg_dma_len(s);
709 sg_dma_address(s) = DMA_ERROR_CODE;
710 sg_dma_len(s) = 0;
711 }
712}
713
714/*
715 * The DMA API client is passing in a scatterlist which could describe
716 * any old buffer layout, but the IOMMU API requires everything to be
717 * aligned to IOMMU pages. Hence the need for this complicated bit of
718 * impedance-matching, to be able to hand off a suitably-aligned list,
719 * but still preserve the original offsets and sizes for the caller.
720 */
721int iommu_dma_map_sg(struct device *dev, struct scatterlist *sg,
722 int nents, int prot)
723{
724 struct iommu_domain *domain = iommu_get_domain_for_dev(dev);
Robin Murphy44bb7e22016-09-12 17:13:59 +0100725 struct iova_domain *iovad = cookie_iovad(domain);
Robin Murphy0db2e5d2015-10-01 20:13:58 +0100726 struct iova *iova;
727 struct scatterlist *s, *prev = NULL;
728 dma_addr_t dma_addr;
729 size_t iova_len = 0;
Robin Murphy809eac52016-04-11 12:32:31 +0100730 unsigned long mask = dma_get_seg_boundary(dev);
Robin Murphy0db2e5d2015-10-01 20:13:58 +0100731 int i;
732
733 /*
734 * Work out how much IOVA space we need, and align the segments to
735 * IOVA granules for the IOMMU driver to handle. With some clever
736 * trickery we can modify the list in-place, but reversibly, by
Robin Murphy809eac52016-04-11 12:32:31 +0100737 * stashing the unaligned parts in the as-yet-unused DMA fields.
Robin Murphy0db2e5d2015-10-01 20:13:58 +0100738 */
739 for_each_sg(sg, s, nents, i) {
Robin Murphy809eac52016-04-11 12:32:31 +0100740 size_t s_iova_off = iova_offset(iovad, s->offset);
Robin Murphy0db2e5d2015-10-01 20:13:58 +0100741 size_t s_length = s->length;
Robin Murphy809eac52016-04-11 12:32:31 +0100742 size_t pad_len = (mask - iova_len + 1) & mask;
Robin Murphy0db2e5d2015-10-01 20:13:58 +0100743
Robin Murphy809eac52016-04-11 12:32:31 +0100744 sg_dma_address(s) = s_iova_off;
Robin Murphy0db2e5d2015-10-01 20:13:58 +0100745 sg_dma_len(s) = s_length;
Robin Murphy809eac52016-04-11 12:32:31 +0100746 s->offset -= s_iova_off;
747 s_length = iova_align(iovad, s_length + s_iova_off);
Robin Murphy0db2e5d2015-10-01 20:13:58 +0100748 s->length = s_length;
749
750 /*
Robin Murphy809eac52016-04-11 12:32:31 +0100751 * Due to the alignment of our single IOVA allocation, we can
752 * depend on these assumptions about the segment boundary mask:
753 * - If mask size >= IOVA size, then the IOVA range cannot
754 * possibly fall across a boundary, so we don't care.
755 * - If mask size < IOVA size, then the IOVA range must start
756 * exactly on a boundary, therefore we can lay things out
757 * based purely on segment lengths without needing to know
758 * the actual addresses beforehand.
759 * - The mask must be a power of 2, so pad_len == 0 if
760 * iova_len == 0, thus we cannot dereference prev the first
761 * time through here (i.e. before it has a meaningful value).
Robin Murphy0db2e5d2015-10-01 20:13:58 +0100762 */
Robin Murphy809eac52016-04-11 12:32:31 +0100763 if (pad_len && pad_len < s_length - 1) {
Robin Murphy0db2e5d2015-10-01 20:13:58 +0100764 prev->length += pad_len;
765 iova_len += pad_len;
766 }
767
768 iova_len += s_length;
769 prev = s;
770 }
771
Robin Murphy122fac02017-01-16 13:24:55 +0000772 iova = __alloc_iova(domain, iova_len, dma_get_mask(dev), dev);
Robin Murphy0db2e5d2015-10-01 20:13:58 +0100773 if (!iova)
774 goto out_restore_sg;
775
776 /*
777 * We'll leave any physical concatenation to the IOMMU driver's
778 * implementation - it knows better than we do.
779 */
780 dma_addr = iova_dma_addr(iovad, iova);
781 if (iommu_map_sg(domain, dma_addr, sg, nents, prot) < iova_len)
782 goto out_free_iova;
783
784 return __finalise_sg(dev, sg, nents, dma_addr);
785
786out_free_iova:
787 __free_iova(iovad, iova);
788out_restore_sg:
789 __invalidate_sg(sg, nents);
790 return 0;
791}
792
793void iommu_dma_unmap_sg(struct device *dev, struct scatterlist *sg, int nents,
Krzysztof Kozlowski00085f12016-08-03 13:46:00 -0700794 enum dma_data_direction dir, unsigned long attrs)
Robin Murphy0db2e5d2015-10-01 20:13:58 +0100795{
796 /*
797 * The scatterlist segments are mapped into a single
798 * contiguous IOVA allocation, so this is incredibly easy.
799 */
800 __iommu_dma_unmap(iommu_get_domain_for_dev(dev), sg_dma_address(sg));
801}
802
Robin Murphy51f8cc92016-11-14 12:16:26 +0000803dma_addr_t iommu_dma_map_resource(struct device *dev, phys_addr_t phys,
804 size_t size, enum dma_data_direction dir, unsigned long attrs)
805{
806 return __iommu_dma_map(dev, phys, size,
Mitchel Humpherys737c85c2017-01-06 18:58:12 +0530807 dma_info_to_prot(dir, false, attrs) | IOMMU_MMIO);
Robin Murphy51f8cc92016-11-14 12:16:26 +0000808}
809
810void iommu_dma_unmap_resource(struct device *dev, dma_addr_t handle,
811 size_t size, enum dma_data_direction dir, unsigned long attrs)
812{
813 __iommu_dma_unmap(iommu_get_domain_for_dev(dev), handle);
814}
815
Robin Murphy0db2e5d2015-10-01 20:13:58 +0100816int iommu_dma_mapping_error(struct device *dev, dma_addr_t dma_addr)
817{
818 return dma_addr == DMA_ERROR_CODE;
819}
Robin Murphy44bb7e22016-09-12 17:13:59 +0100820
821static struct iommu_dma_msi_page *iommu_dma_get_msi_page(struct device *dev,
822 phys_addr_t msi_addr, struct iommu_domain *domain)
823{
824 struct iommu_dma_cookie *cookie = domain->iova_cookie;
825 struct iommu_dma_msi_page *msi_page;
Robin Murphyfdbe5742017-01-19 20:57:46 +0000826 struct iova_domain *iovad = cookie_iovad(domain);
Robin Murphy44bb7e22016-09-12 17:13:59 +0100827 struct iova *iova;
828 int prot = IOMMU_WRITE | IOMMU_NOEXEC | IOMMU_MMIO;
Robin Murphyfdbe5742017-01-19 20:57:46 +0000829 size_t size = cookie_msi_granule(cookie);
Robin Murphy44bb7e22016-09-12 17:13:59 +0100830
Robin Murphyfdbe5742017-01-19 20:57:46 +0000831 msi_addr &= ~(phys_addr_t)(size - 1);
Robin Murphy44bb7e22016-09-12 17:13:59 +0100832 list_for_each_entry(msi_page, &cookie->msi_page_list, list)
833 if (msi_page->phys == msi_addr)
834 return msi_page;
835
836 msi_page = kzalloc(sizeof(*msi_page), GFP_ATOMIC);
837 if (!msi_page)
838 return NULL;
839
Robin Murphy44bb7e22016-09-12 17:13:59 +0100840 msi_page->phys = msi_addr;
Robin Murphyfdbe5742017-01-19 20:57:46 +0000841 if (iovad) {
Robin Murphy122fac02017-01-16 13:24:55 +0000842 iova = __alloc_iova(domain, size, dma_get_mask(dev), dev);
Robin Murphyfdbe5742017-01-19 20:57:46 +0000843 if (!iova)
844 goto out_free_page;
845 msi_page->iova = iova_dma_addr(iovad, iova);
846 } else {
847 msi_page->iova = cookie->msi_iova;
848 cookie->msi_iova += size;
849 }
850
851 if (iommu_map(domain, msi_page->iova, msi_addr, size, prot))
Robin Murphy44bb7e22016-09-12 17:13:59 +0100852 goto out_free_iova;
853
854 INIT_LIST_HEAD(&msi_page->list);
855 list_add(&msi_page->list, &cookie->msi_page_list);
856 return msi_page;
857
858out_free_iova:
Robin Murphyfdbe5742017-01-19 20:57:46 +0000859 if (iovad)
860 __free_iova(iovad, iova);
861 else
862 cookie->msi_iova -= size;
Robin Murphy44bb7e22016-09-12 17:13:59 +0100863out_free_page:
864 kfree(msi_page);
865 return NULL;
866}
867
868void iommu_dma_map_msi_msg(int irq, struct msi_msg *msg)
869{
870 struct device *dev = msi_desc_to_dev(irq_get_msi_desc(irq));
871 struct iommu_domain *domain = iommu_get_domain_for_dev(dev);
872 struct iommu_dma_cookie *cookie;
873 struct iommu_dma_msi_page *msi_page;
874 phys_addr_t msi_addr = (u64)msg->address_hi << 32 | msg->address_lo;
875 unsigned long flags;
876
877 if (!domain || !domain->iova_cookie)
878 return;
879
880 cookie = domain->iova_cookie;
881
882 /*
883 * We disable IRQs to rule out a possible inversion against
884 * irq_desc_lock if, say, someone tries to retarget the affinity
885 * of an MSI from within an IPI handler.
886 */
887 spin_lock_irqsave(&cookie->msi_lock, flags);
888 msi_page = iommu_dma_get_msi_page(dev, msi_addr, domain);
889 spin_unlock_irqrestore(&cookie->msi_lock, flags);
890
891 if (WARN_ON(!msi_page)) {
892 /*
893 * We're called from a void callback, so the best we can do is
894 * 'fail' by filling the message with obviously bogus values.
895 * Since we got this far due to an IOMMU being present, it's
896 * not like the existing address would have worked anyway...
897 */
898 msg->address_hi = ~0U;
899 msg->address_lo = ~0U;
900 msg->data = ~0U;
901 } else {
902 msg->address_hi = upper_32_bits(msi_page->iova);
Robin Murphyfdbe5742017-01-19 20:57:46 +0000903 msg->address_lo &= cookie_msi_granule(cookie) - 1;
Robin Murphy44bb7e22016-09-12 17:13:59 +0100904 msg->address_lo += lower_32_bits(msi_page->iova);
905 }
906}