AMD IOMMU: use dev_name instead of self-build print_devid
[deliverable/linux.git] / arch / x86 / kernel / amd_iommu.c
CommitLineData
b6c02715
JR
1/*
2 * Copyright (C) 2007-2008 Advanced Micro Devices, Inc.
3 * Author: Joerg Roedel <joerg.roedel@amd.com>
4 * Leo Duran <leo.duran@amd.com>
5 *
6 * This program is free software; you can redistribute it and/or modify it
7 * under the terms of the GNU General Public License version 2 as published
8 * by the Free Software Foundation.
9 *
10 * This program is distributed in the hope that it will be useful,
11 * but WITHOUT ANY WARRANTY; without even the implied warranty of
12 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
13 * GNU General Public License for more details.
14 *
15 * You should have received a copy of the GNU General Public License
16 * along with this program; if not, write to the Free Software
17 * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
18 */
19
20#include <linux/pci.h>
21#include <linux/gfp.h>
22#include <linux/bitops.h>
23#include <linux/scatterlist.h>
24#include <linux/iommu-helper.h>
c156e347
JR
25#ifdef CONFIG_IOMMU_API
26#include <linux/iommu.h>
27#endif
b6c02715 28#include <asm/proto.h>
46a7fa27 29#include <asm/iommu.h>
1d9b16d1 30#include <asm/gart.h>
b6c02715 31#include <asm/amd_iommu_types.h>
c6da992e 32#include <asm/amd_iommu.h>
b6c02715
JR
33
34#define CMD_SET_TYPE(cmd, t) ((cmd)->data[1] |= ((t) << 28))
35
136f78a1
JR
36#define EXIT_LOOP_COUNT 10000000
37
b6c02715
JR
38static DEFINE_RWLOCK(amd_iommu_devtable_lock);
39
bd60b735
JR
40/* A list of preallocated protection domains */
41static LIST_HEAD(iommu_pd_list);
42static DEFINE_SPINLOCK(iommu_pd_list_lock);
43
26961efe
JR
44#ifdef CONFIG_IOMMU_API
45static struct iommu_ops amd_iommu_ops;
46#endif
47
431b2a20
JR
48/*
49 * general struct to manage commands send to an IOMMU
50 */
d6449536 51struct iommu_cmd {
b6c02715
JR
52 u32 data[4];
53};
54
bd0e5211
JR
55static int dma_ops_unity_map(struct dma_ops_domain *dma_dom,
56 struct unity_map_entry *e);
e275a2a0
JR
57static struct dma_ops_domain *find_protection_domain(u16 devid);
58
bd0e5211 59
431b2a20 60/* returns !0 if the IOMMU is caching non-present entries in its TLB */
4da70b9e
JR
61static int iommu_has_npcache(struct amd_iommu *iommu)
62{
ae9b9403 63 return iommu->cap & (1UL << IOMMU_CAP_NPCACHE);
4da70b9e
JR
64}
65
a80dc3e0
JR
66/****************************************************************************
67 *
68 * Interrupt handling functions
69 *
70 ****************************************************************************/
71
90008ee4
JR
72static void iommu_print_event(void *__evt)
73{
74 u32 *event = __evt;
75 int type = (event[1] >> EVENT_TYPE_SHIFT) & EVENT_TYPE_MASK;
76 int devid = (event[0] >> EVENT_DEVID_SHIFT) & EVENT_DEVID_MASK;
77 int domid = (event[1] >> EVENT_DOMID_SHIFT) & EVENT_DOMID_MASK;
78 int flags = (event[1] >> EVENT_FLAGS_SHIFT) & EVENT_FLAGS_MASK;
79 u64 address = (u64)(((u64)event[3]) << 32) | event[2];
80
81 printk(KERN_ERR "AMD IOMMU: Event logged [");
82
83 switch (type) {
84 case EVENT_TYPE_ILL_DEV:
85 printk("ILLEGAL_DEV_TABLE_ENTRY device=%02x:%02x.%x "
86 "address=0x%016llx flags=0x%04x]\n",
87 PCI_BUS(devid), PCI_SLOT(devid), PCI_FUNC(devid),
88 address, flags);
89 break;
90 case EVENT_TYPE_IO_FAULT:
91 printk("IO_PAGE_FAULT device=%02x:%02x.%x "
92 "domain=0x%04x address=0x%016llx flags=0x%04x]\n",
93 PCI_BUS(devid), PCI_SLOT(devid), PCI_FUNC(devid),
94 domid, address, flags);
95 break;
96 case EVENT_TYPE_DEV_TAB_ERR:
97 printk("DEV_TAB_HARDWARE_ERROR device=%02x:%02x.%x "
98 "address=0x%016llx flags=0x%04x]\n",
99 PCI_BUS(devid), PCI_SLOT(devid), PCI_FUNC(devid),
100 address, flags);
101 break;
102 case EVENT_TYPE_PAGE_TAB_ERR:
103 printk("PAGE_TAB_HARDWARE_ERROR device=%02x:%02x.%x "
104 "domain=0x%04x address=0x%016llx flags=0x%04x]\n",
105 PCI_BUS(devid), PCI_SLOT(devid), PCI_FUNC(devid),
106 domid, address, flags);
107 break;
108 case EVENT_TYPE_ILL_CMD:
109 printk("ILLEGAL_COMMAND_ERROR address=0x%016llx]\n", address);
110 break;
111 case EVENT_TYPE_CMD_HARD_ERR:
112 printk("COMMAND_HARDWARE_ERROR address=0x%016llx "
113 "flags=0x%04x]\n", address, flags);
114 break;
115 case EVENT_TYPE_IOTLB_INV_TO:
116 printk("IOTLB_INV_TIMEOUT device=%02x:%02x.%x "
117 "address=0x%016llx]\n",
118 PCI_BUS(devid), PCI_SLOT(devid), PCI_FUNC(devid),
119 address);
120 break;
121 case EVENT_TYPE_INV_DEV_REQ:
122 printk("INVALID_DEVICE_REQUEST device=%02x:%02x.%x "
123 "address=0x%016llx flags=0x%04x]\n",
124 PCI_BUS(devid), PCI_SLOT(devid), PCI_FUNC(devid),
125 address, flags);
126 break;
127 default:
128 printk(KERN_ERR "UNKNOWN type=0x%02x]\n", type);
129 }
130}
131
132static void iommu_poll_events(struct amd_iommu *iommu)
133{
134 u32 head, tail;
135 unsigned long flags;
136
137 spin_lock_irqsave(&iommu->lock, flags);
138
139 head = readl(iommu->mmio_base + MMIO_EVT_HEAD_OFFSET);
140 tail = readl(iommu->mmio_base + MMIO_EVT_TAIL_OFFSET);
141
142 while (head != tail) {
143 iommu_print_event(iommu->evt_buf + head);
144 head = (head + EVENT_ENTRY_SIZE) % iommu->evt_buf_size;
145 }
146
147 writel(head, iommu->mmio_base + MMIO_EVT_HEAD_OFFSET);
148
149 spin_unlock_irqrestore(&iommu->lock, flags);
150}
151
a80dc3e0
JR
152irqreturn_t amd_iommu_int_handler(int irq, void *data)
153{
90008ee4
JR
154 struct amd_iommu *iommu;
155
156 list_for_each_entry(iommu, &amd_iommu_list, list)
157 iommu_poll_events(iommu);
158
159 return IRQ_HANDLED;
a80dc3e0
JR
160}
161
431b2a20
JR
162/****************************************************************************
163 *
164 * IOMMU command queuing functions
165 *
166 ****************************************************************************/
167
168/*
169 * Writes the command to the IOMMUs command buffer and informs the
170 * hardware about the new command. Must be called with iommu->lock held.
171 */
d6449536 172static int __iommu_queue_command(struct amd_iommu *iommu, struct iommu_cmd *cmd)
a19ae1ec
JR
173{
174 u32 tail, head;
175 u8 *target;
176
177 tail = readl(iommu->mmio_base + MMIO_CMD_TAIL_OFFSET);
8a7c5ef3 178 target = iommu->cmd_buf + tail;
a19ae1ec
JR
179 memcpy_toio(target, cmd, sizeof(*cmd));
180 tail = (tail + sizeof(*cmd)) % iommu->cmd_buf_size;
181 head = readl(iommu->mmio_base + MMIO_CMD_HEAD_OFFSET);
182 if (tail == head)
183 return -ENOMEM;
184 writel(tail, iommu->mmio_base + MMIO_CMD_TAIL_OFFSET);
185
186 return 0;
187}
188
431b2a20
JR
189/*
190 * General queuing function for commands. Takes iommu->lock and calls
191 * __iommu_queue_command().
192 */
d6449536 193static int iommu_queue_command(struct amd_iommu *iommu, struct iommu_cmd *cmd)
a19ae1ec
JR
194{
195 unsigned long flags;
196 int ret;
197
198 spin_lock_irqsave(&iommu->lock, flags);
199 ret = __iommu_queue_command(iommu, cmd);
09ee17eb
JR
200 if (!ret)
201 iommu->need_sync = 1;
a19ae1ec
JR
202 spin_unlock_irqrestore(&iommu->lock, flags);
203
204 return ret;
205}
206
8d201968
JR
207/*
208 * This function waits until an IOMMU has completed a completion
209 * wait command
210 */
211static void __iommu_wait_for_completion(struct amd_iommu *iommu)
212{
213 int ready = 0;
214 unsigned status = 0;
215 unsigned long i = 0;
216
217 while (!ready && (i < EXIT_LOOP_COUNT)) {
218 ++i;
219 /* wait for the bit to become one */
220 status = readl(iommu->mmio_base + MMIO_STATUS_OFFSET);
221 ready = status & MMIO_STATUS_COM_WAIT_INT_MASK;
222 }
223
224 /* set bit back to zero */
225 status &= ~MMIO_STATUS_COM_WAIT_INT_MASK;
226 writel(status, iommu->mmio_base + MMIO_STATUS_OFFSET);
227
228 if (unlikely(i == EXIT_LOOP_COUNT))
229 panic("AMD IOMMU: Completion wait loop failed\n");
230}
231
232/*
233 * This function queues a completion wait command into the command
234 * buffer of an IOMMU
235 */
236static int __iommu_completion_wait(struct amd_iommu *iommu)
237{
238 struct iommu_cmd cmd;
239
240 memset(&cmd, 0, sizeof(cmd));
241 cmd.data[0] = CMD_COMPL_WAIT_INT_MASK;
242 CMD_SET_TYPE(&cmd, CMD_COMPL_WAIT);
243
244 return __iommu_queue_command(iommu, &cmd);
245}
246
431b2a20
JR
247/*
248 * This function is called whenever we need to ensure that the IOMMU has
249 * completed execution of all commands we sent. It sends a
250 * COMPLETION_WAIT command and waits for it to finish. The IOMMU informs
251 * us about that by writing a value to a physical address we pass with
252 * the command.
253 */
a19ae1ec
JR
254static int iommu_completion_wait(struct amd_iommu *iommu)
255{
8d201968
JR
256 int ret = 0;
257 unsigned long flags;
a19ae1ec 258
7e4f88da
JR
259 spin_lock_irqsave(&iommu->lock, flags);
260
09ee17eb
JR
261 if (!iommu->need_sync)
262 goto out;
263
8d201968 264 ret = __iommu_completion_wait(iommu);
09ee17eb 265
8d201968 266 iommu->need_sync = 0;
a19ae1ec
JR
267
268 if (ret)
7e4f88da 269 goto out;
a19ae1ec 270
8d201968 271 __iommu_wait_for_completion(iommu);
84df8175 272
7e4f88da
JR
273out:
274 spin_unlock_irqrestore(&iommu->lock, flags);
a19ae1ec
JR
275
276 return 0;
277}
278
431b2a20
JR
279/*
280 * Command send function for invalidating a device table entry
281 */
a19ae1ec
JR
282static int iommu_queue_inv_dev_entry(struct amd_iommu *iommu, u16 devid)
283{
d6449536 284 struct iommu_cmd cmd;
ee2fa743 285 int ret;
a19ae1ec
JR
286
287 BUG_ON(iommu == NULL);
288
289 memset(&cmd, 0, sizeof(cmd));
290 CMD_SET_TYPE(&cmd, CMD_INV_DEV_ENTRY);
291 cmd.data[0] = devid;
292
ee2fa743
JR
293 ret = iommu_queue_command(iommu, &cmd);
294
ee2fa743 295 return ret;
a19ae1ec
JR
296}
297
237b6f33
JR
298static void __iommu_build_inv_iommu_pages(struct iommu_cmd *cmd, u64 address,
299 u16 domid, int pde, int s)
300{
301 memset(cmd, 0, sizeof(*cmd));
302 address &= PAGE_MASK;
303 CMD_SET_TYPE(cmd, CMD_INV_IOMMU_PAGES);
304 cmd->data[1] |= domid;
305 cmd->data[2] = lower_32_bits(address);
306 cmd->data[3] = upper_32_bits(address);
307 if (s) /* size bit - we flush more than one 4kb page */
308 cmd->data[2] |= CMD_INV_IOMMU_PAGES_SIZE_MASK;
309 if (pde) /* PDE bit - we wan't flush everything not only the PTEs */
310 cmd->data[2] |= CMD_INV_IOMMU_PAGES_PDE_MASK;
311}
312
431b2a20
JR
313/*
314 * Generic command send function for invalidaing TLB entries
315 */
a19ae1ec
JR
316static int iommu_queue_inv_iommu_pages(struct amd_iommu *iommu,
317 u64 address, u16 domid, int pde, int s)
318{
d6449536 319 struct iommu_cmd cmd;
ee2fa743 320 int ret;
a19ae1ec 321
237b6f33 322 __iommu_build_inv_iommu_pages(&cmd, address, domid, pde, s);
a19ae1ec 323
ee2fa743
JR
324 ret = iommu_queue_command(iommu, &cmd);
325
ee2fa743 326 return ret;
a19ae1ec
JR
327}
328
431b2a20
JR
329/*
330 * TLB invalidation function which is called from the mapping functions.
331 * It invalidates a single PTE if the range to flush is within a single
332 * page. Otherwise it flushes the whole TLB of the IOMMU.
333 */
a19ae1ec
JR
334static int iommu_flush_pages(struct amd_iommu *iommu, u16 domid,
335 u64 address, size_t size)
336{
999ba417 337 int s = 0;
e3c449f5 338 unsigned pages = iommu_num_pages(address, size, PAGE_SIZE);
a19ae1ec
JR
339
340 address &= PAGE_MASK;
341
999ba417
JR
342 if (pages > 1) {
343 /*
344 * If we have to flush more than one page, flush all
345 * TLB entries for this domain
346 */
347 address = CMD_INV_IOMMU_ALL_PAGES_ADDRESS;
348 s = 1;
a19ae1ec
JR
349 }
350
999ba417
JR
351 iommu_queue_inv_iommu_pages(iommu, address, domid, 0, s);
352
a19ae1ec
JR
353 return 0;
354}
b6c02715 355
1c655773
JR
356/* Flush the whole IO/TLB for a given protection domain */
357static void iommu_flush_tlb(struct amd_iommu *iommu, u16 domid)
358{
359 u64 address = CMD_INV_IOMMU_ALL_PAGES_ADDRESS;
360
361 iommu_queue_inv_iommu_pages(iommu, address, domid, 0, 1);
362}
363
43f49609
JR
364#ifdef CONFIG_IOMMU_API
365/*
366 * This function is used to flush the IO/TLB for a given protection domain
367 * on every IOMMU in the system
368 */
369static void iommu_flush_domain(u16 domid)
370{
371 unsigned long flags;
372 struct amd_iommu *iommu;
373 struct iommu_cmd cmd;
374
375 __iommu_build_inv_iommu_pages(&cmd, CMD_INV_IOMMU_ALL_PAGES_ADDRESS,
376 domid, 1, 1);
377
378 list_for_each_entry(iommu, &amd_iommu_list, list) {
379 spin_lock_irqsave(&iommu->lock, flags);
380 __iommu_queue_command(iommu, &cmd);
381 __iommu_completion_wait(iommu);
382 __iommu_wait_for_completion(iommu);
383 spin_unlock_irqrestore(&iommu->lock, flags);
384 }
385}
386#endif
387
431b2a20
JR
388/****************************************************************************
389 *
390 * The functions below are used the create the page table mappings for
391 * unity mapped regions.
392 *
393 ****************************************************************************/
394
395/*
396 * Generic mapping functions. It maps a physical address into a DMA
397 * address space. It allocates the page table pages if necessary.
398 * In the future it can be extended to a generic mapping function
399 * supporting all features of AMD IOMMU page tables like level skipping
400 * and full 64 bit address spaces.
401 */
38e817fe
JR
402static int iommu_map_page(struct protection_domain *dom,
403 unsigned long bus_addr,
404 unsigned long phys_addr,
405 int prot)
bd0e5211
JR
406{
407 u64 __pte, *pte, *page;
408
409 bus_addr = PAGE_ALIGN(bus_addr);
bb9d4ff8 410 phys_addr = PAGE_ALIGN(phys_addr);
bd0e5211
JR
411
412 /* only support 512GB address spaces for now */
413 if (bus_addr > IOMMU_MAP_SIZE_L3 || !(prot & IOMMU_PROT_MASK))
414 return -EINVAL;
415
416 pte = &dom->pt_root[IOMMU_PTE_L2_INDEX(bus_addr)];
417
418 if (!IOMMU_PTE_PRESENT(*pte)) {
419 page = (u64 *)get_zeroed_page(GFP_KERNEL);
420 if (!page)
421 return -ENOMEM;
422 *pte = IOMMU_L2_PDE(virt_to_phys(page));
423 }
424
425 pte = IOMMU_PTE_PAGE(*pte);
426 pte = &pte[IOMMU_PTE_L1_INDEX(bus_addr)];
427
428 if (!IOMMU_PTE_PRESENT(*pte)) {
429 page = (u64 *)get_zeroed_page(GFP_KERNEL);
430 if (!page)
431 return -ENOMEM;
432 *pte = IOMMU_L1_PDE(virt_to_phys(page));
433 }
434
435 pte = IOMMU_PTE_PAGE(*pte);
436 pte = &pte[IOMMU_PTE_L0_INDEX(bus_addr)];
437
438 if (IOMMU_PTE_PRESENT(*pte))
439 return -EBUSY;
440
441 __pte = phys_addr | IOMMU_PTE_P;
442 if (prot & IOMMU_PROT_IR)
443 __pte |= IOMMU_PTE_IR;
444 if (prot & IOMMU_PROT_IW)
445 __pte |= IOMMU_PTE_IW;
446
447 *pte = __pte;
448
449 return 0;
450}
451
eb74ff6c
JR
452#ifdef CONFIG_IOMMU_API
453static void iommu_unmap_page(struct protection_domain *dom,
454 unsigned long bus_addr)
455{
456 u64 *pte;
457
458 pte = &dom->pt_root[IOMMU_PTE_L2_INDEX(bus_addr)];
459
460 if (!IOMMU_PTE_PRESENT(*pte))
461 return;
462
463 pte = IOMMU_PTE_PAGE(*pte);
464 pte = &pte[IOMMU_PTE_L1_INDEX(bus_addr)];
465
466 if (!IOMMU_PTE_PRESENT(*pte))
467 return;
468
469 pte = IOMMU_PTE_PAGE(*pte);
470 pte = &pte[IOMMU_PTE_L1_INDEX(bus_addr)];
471
472 *pte = 0;
473}
474#endif
475
431b2a20
JR
476/*
477 * This function checks if a specific unity mapping entry is needed for
478 * this specific IOMMU.
479 */
bd0e5211
JR
480static int iommu_for_unity_map(struct amd_iommu *iommu,
481 struct unity_map_entry *entry)
482{
483 u16 bdf, i;
484
485 for (i = entry->devid_start; i <= entry->devid_end; ++i) {
486 bdf = amd_iommu_alias_table[i];
487 if (amd_iommu_rlookup_table[bdf] == iommu)
488 return 1;
489 }
490
491 return 0;
492}
493
431b2a20
JR
494/*
495 * Init the unity mappings for a specific IOMMU in the system
496 *
497 * Basically iterates over all unity mapping entries and applies them to
498 * the default domain DMA of that IOMMU if necessary.
499 */
bd0e5211
JR
500static int iommu_init_unity_mappings(struct amd_iommu *iommu)
501{
502 struct unity_map_entry *entry;
503 int ret;
504
505 list_for_each_entry(entry, &amd_iommu_unity_map, list) {
506 if (!iommu_for_unity_map(iommu, entry))
507 continue;
508 ret = dma_ops_unity_map(iommu->default_dom, entry);
509 if (ret)
510 return ret;
511 }
512
513 return 0;
514}
515
431b2a20
JR
516/*
517 * This function actually applies the mapping to the page table of the
518 * dma_ops domain.
519 */
bd0e5211
JR
520static int dma_ops_unity_map(struct dma_ops_domain *dma_dom,
521 struct unity_map_entry *e)
522{
523 u64 addr;
524 int ret;
525
526 for (addr = e->address_start; addr < e->address_end;
527 addr += PAGE_SIZE) {
38e817fe 528 ret = iommu_map_page(&dma_dom->domain, addr, addr, e->prot);
bd0e5211
JR
529 if (ret)
530 return ret;
531 /*
532 * if unity mapping is in aperture range mark the page
533 * as allocated in the aperture
534 */
535 if (addr < dma_dom->aperture_size)
536 __set_bit(addr >> PAGE_SHIFT, dma_dom->bitmap);
537 }
538
539 return 0;
540}
541
431b2a20
JR
542/*
543 * Inits the unity mappings required for a specific device
544 */
bd0e5211
JR
545static int init_unity_mappings_for_device(struct dma_ops_domain *dma_dom,
546 u16 devid)
547{
548 struct unity_map_entry *e;
549 int ret;
550
551 list_for_each_entry(e, &amd_iommu_unity_map, list) {
552 if (!(devid >= e->devid_start && devid <= e->devid_end))
553 continue;
554 ret = dma_ops_unity_map(dma_dom, e);
555 if (ret)
556 return ret;
557 }
558
559 return 0;
560}
561
431b2a20
JR
562/****************************************************************************
563 *
564 * The next functions belong to the address allocator for the dma_ops
565 * interface functions. They work like the allocators in the other IOMMU
566 * drivers. Its basically a bitmap which marks the allocated pages in
567 * the aperture. Maybe it could be enhanced in the future to a more
568 * efficient allocator.
569 *
570 ****************************************************************************/
d3086444 571
431b2a20
JR
572/*
573 * The address allocator core function.
574 *
575 * called with domain->lock held
576 */
d3086444
JR
577static unsigned long dma_ops_alloc_addresses(struct device *dev,
578 struct dma_ops_domain *dom,
6d4f343f 579 unsigned int pages,
832a90c3
JR
580 unsigned long align_mask,
581 u64 dma_mask)
d3086444 582{
40becd8d 583 unsigned long limit;
d3086444 584 unsigned long address;
d3086444
JR
585 unsigned long boundary_size;
586
587 boundary_size = ALIGN(dma_get_seg_boundary(dev) + 1,
588 PAGE_SIZE) >> PAGE_SHIFT;
40becd8d
FT
589 limit = iommu_device_max_index(dom->aperture_size >> PAGE_SHIFT, 0,
590 dma_mask >> PAGE_SHIFT);
d3086444 591
1c655773 592 if (dom->next_bit >= limit) {
d3086444 593 dom->next_bit = 0;
1c655773
JR
594 dom->need_flush = true;
595 }
d3086444
JR
596
597 address = iommu_area_alloc(dom->bitmap, limit, dom->next_bit, pages,
6d4f343f 598 0 , boundary_size, align_mask);
1c655773 599 if (address == -1) {
d3086444 600 address = iommu_area_alloc(dom->bitmap, limit, 0, pages,
6d4f343f 601 0, boundary_size, align_mask);
1c655773
JR
602 dom->need_flush = true;
603 }
d3086444
JR
604
605 if (likely(address != -1)) {
d3086444
JR
606 dom->next_bit = address + pages;
607 address <<= PAGE_SHIFT;
608 } else
609 address = bad_dma_address;
610
611 WARN_ON((address + (PAGE_SIZE*pages)) > dom->aperture_size);
612
613 return address;
614}
615
431b2a20
JR
616/*
617 * The address free function.
618 *
619 * called with domain->lock held
620 */
d3086444
JR
621static void dma_ops_free_addresses(struct dma_ops_domain *dom,
622 unsigned long address,
623 unsigned int pages)
624{
625 address >>= PAGE_SHIFT;
626 iommu_area_free(dom->bitmap, address, pages);
80be308d 627
8501c45c 628 if (address >= dom->next_bit)
80be308d 629 dom->need_flush = true;
d3086444
JR
630}
631
431b2a20
JR
632/****************************************************************************
633 *
634 * The next functions belong to the domain allocation. A domain is
635 * allocated for every IOMMU as the default domain. If device isolation
636 * is enabled, every device get its own domain. The most important thing
637 * about domains is the page table mapping the DMA address space they
638 * contain.
639 *
640 ****************************************************************************/
641
ec487d1a
JR
642static u16 domain_id_alloc(void)
643{
644 unsigned long flags;
645 int id;
646
647 write_lock_irqsave(&amd_iommu_devtable_lock, flags);
648 id = find_first_zero_bit(amd_iommu_pd_alloc_bitmap, MAX_DOMAIN_ID);
649 BUG_ON(id == 0);
650 if (id > 0 && id < MAX_DOMAIN_ID)
651 __set_bit(id, amd_iommu_pd_alloc_bitmap);
652 else
653 id = 0;
654 write_unlock_irqrestore(&amd_iommu_devtable_lock, flags);
655
656 return id;
657}
658
a2acfb75
JR
659#ifdef CONFIG_IOMMU_API
660static void domain_id_free(int id)
661{
662 unsigned long flags;
663
664 write_lock_irqsave(&amd_iommu_devtable_lock, flags);
665 if (id > 0 && id < MAX_DOMAIN_ID)
666 __clear_bit(id, amd_iommu_pd_alloc_bitmap);
667 write_unlock_irqrestore(&amd_iommu_devtable_lock, flags);
668}
669#endif
670
431b2a20
JR
671/*
672 * Used to reserve address ranges in the aperture (e.g. for exclusion
673 * ranges.
674 */
ec487d1a
JR
675static void dma_ops_reserve_addresses(struct dma_ops_domain *dom,
676 unsigned long start_page,
677 unsigned int pages)
678{
679 unsigned int last_page = dom->aperture_size >> PAGE_SHIFT;
680
681 if (start_page + pages > last_page)
682 pages = last_page - start_page;
683
d26dbc5c 684 iommu_area_reserve(dom->bitmap, start_page, pages);
ec487d1a
JR
685}
686
86db2e5d 687static void free_pagetable(struct protection_domain *domain)
ec487d1a
JR
688{
689 int i, j;
690 u64 *p1, *p2, *p3;
691
86db2e5d 692 p1 = domain->pt_root;
ec487d1a
JR
693
694 if (!p1)
695 return;
696
697 for (i = 0; i < 512; ++i) {
698 if (!IOMMU_PTE_PRESENT(p1[i]))
699 continue;
700
701 p2 = IOMMU_PTE_PAGE(p1[i]);
3cc3d84b 702 for (j = 0; j < 512; ++j) {
ec487d1a
JR
703 if (!IOMMU_PTE_PRESENT(p2[j]))
704 continue;
705 p3 = IOMMU_PTE_PAGE(p2[j]);
706 free_page((unsigned long)p3);
707 }
708
709 free_page((unsigned long)p2);
710 }
711
712 free_page((unsigned long)p1);
86db2e5d
JR
713
714 domain->pt_root = NULL;
ec487d1a
JR
715}
716
431b2a20
JR
717/*
718 * Free a domain, only used if something went wrong in the
719 * allocation path and we need to free an already allocated page table
720 */
ec487d1a
JR
721static void dma_ops_domain_free(struct dma_ops_domain *dom)
722{
723 if (!dom)
724 return;
725
86db2e5d 726 free_pagetable(&dom->domain);
ec487d1a
JR
727
728 kfree(dom->pte_pages);
729
730 kfree(dom->bitmap);
731
732 kfree(dom);
733}
734
431b2a20
JR
735/*
736 * Allocates a new protection domain usable for the dma_ops functions.
737 * It also intializes the page table and the address allocator data
738 * structures required for the dma_ops interface
739 */
ec487d1a
JR
740static struct dma_ops_domain *dma_ops_domain_alloc(struct amd_iommu *iommu,
741 unsigned order)
742{
743 struct dma_ops_domain *dma_dom;
744 unsigned i, num_pte_pages;
745 u64 *l2_pde;
746 u64 address;
747
748 /*
749 * Currently the DMA aperture must be between 32 MB and 1GB in size
750 */
751 if ((order < 25) || (order > 30))
752 return NULL;
753
754 dma_dom = kzalloc(sizeof(struct dma_ops_domain), GFP_KERNEL);
755 if (!dma_dom)
756 return NULL;
757
758 spin_lock_init(&dma_dom->domain.lock);
759
760 dma_dom->domain.id = domain_id_alloc();
761 if (dma_dom->domain.id == 0)
762 goto free_dma_dom;
763 dma_dom->domain.mode = PAGE_MODE_3_LEVEL;
764 dma_dom->domain.pt_root = (void *)get_zeroed_page(GFP_KERNEL);
9fdb19d6 765 dma_dom->domain.flags = PD_DMA_OPS_MASK;
ec487d1a
JR
766 dma_dom->domain.priv = dma_dom;
767 if (!dma_dom->domain.pt_root)
768 goto free_dma_dom;
769 dma_dom->aperture_size = (1ULL << order);
770 dma_dom->bitmap = kzalloc(dma_dom->aperture_size / (PAGE_SIZE * 8),
771 GFP_KERNEL);
772 if (!dma_dom->bitmap)
773 goto free_dma_dom;
774 /*
775 * mark the first page as allocated so we never return 0 as
776 * a valid dma-address. So we can use 0 as error value
777 */
778 dma_dom->bitmap[0] = 1;
779 dma_dom->next_bit = 0;
780
1c655773 781 dma_dom->need_flush = false;
bd60b735 782 dma_dom->target_dev = 0xffff;
1c655773 783
431b2a20 784 /* Intialize the exclusion range if necessary */
ec487d1a
JR
785 if (iommu->exclusion_start &&
786 iommu->exclusion_start < dma_dom->aperture_size) {
787 unsigned long startpage = iommu->exclusion_start >> PAGE_SHIFT;
e3c449f5
JR
788 int pages = iommu_num_pages(iommu->exclusion_start,
789 iommu->exclusion_length,
790 PAGE_SIZE);
ec487d1a
JR
791 dma_ops_reserve_addresses(dma_dom, startpage, pages);
792 }
793
431b2a20
JR
794 /*
795 * At the last step, build the page tables so we don't need to
796 * allocate page table pages in the dma_ops mapping/unmapping
797 * path.
798 */
ec487d1a
JR
799 num_pte_pages = dma_dom->aperture_size / (PAGE_SIZE * 512);
800 dma_dom->pte_pages = kzalloc(num_pte_pages * sizeof(void *),
801 GFP_KERNEL);
802 if (!dma_dom->pte_pages)
803 goto free_dma_dom;
804
805 l2_pde = (u64 *)get_zeroed_page(GFP_KERNEL);
806 if (l2_pde == NULL)
807 goto free_dma_dom;
808
809 dma_dom->domain.pt_root[0] = IOMMU_L2_PDE(virt_to_phys(l2_pde));
810
811 for (i = 0; i < num_pte_pages; ++i) {
812 dma_dom->pte_pages[i] = (u64 *)get_zeroed_page(GFP_KERNEL);
813 if (!dma_dom->pte_pages[i])
814 goto free_dma_dom;
815 address = virt_to_phys(dma_dom->pte_pages[i]);
816 l2_pde[i] = IOMMU_L1_PDE(address);
817 }
818
819 return dma_dom;
820
821free_dma_dom:
822 dma_ops_domain_free(dma_dom);
823
824 return NULL;
825}
826
5b28df6f
JR
827/*
828 * little helper function to check whether a given protection domain is a
829 * dma_ops domain
830 */
831static bool dma_ops_domain(struct protection_domain *domain)
832{
833 return domain->flags & PD_DMA_OPS_MASK;
834}
835
431b2a20
JR
836/*
837 * Find out the protection domain structure for a given PCI device. This
838 * will give us the pointer to the page table root for example.
839 */
b20ac0d4
JR
840static struct protection_domain *domain_for_device(u16 devid)
841{
842 struct protection_domain *dom;
843 unsigned long flags;
844
845 read_lock_irqsave(&amd_iommu_devtable_lock, flags);
846 dom = amd_iommu_pd_table[devid];
847 read_unlock_irqrestore(&amd_iommu_devtable_lock, flags);
848
849 return dom;
850}
851
431b2a20
JR
852/*
853 * If a device is not yet associated with a domain, this function does
854 * assigns it visible for the hardware
855 */
f1179dc0
JR
856static void attach_device(struct amd_iommu *iommu,
857 struct protection_domain *domain,
858 u16 devid)
b20ac0d4
JR
859{
860 unsigned long flags;
b20ac0d4
JR
861 u64 pte_root = virt_to_phys(domain->pt_root);
862
863c74eb
JR
863 domain->dev_cnt += 1;
864
38ddf41b
JR
865 pte_root |= (domain->mode & DEV_ENTRY_MODE_MASK)
866 << DEV_ENTRY_MODE_SHIFT;
867 pte_root |= IOMMU_PTE_IR | IOMMU_PTE_IW | IOMMU_PTE_P | IOMMU_PTE_TV;
b20ac0d4
JR
868
869 write_lock_irqsave(&amd_iommu_devtable_lock, flags);
38ddf41b
JR
870 amd_iommu_dev_table[devid].data[0] = lower_32_bits(pte_root);
871 amd_iommu_dev_table[devid].data[1] = upper_32_bits(pte_root);
b20ac0d4
JR
872 amd_iommu_dev_table[devid].data[2] = domain->id;
873
874 amd_iommu_pd_table[devid] = domain;
875 write_unlock_irqrestore(&amd_iommu_devtable_lock, flags);
876
877 iommu_queue_inv_dev_entry(iommu, devid);
b20ac0d4
JR
878}
879
355bf553
JR
880/*
881 * Removes a device from a protection domain (unlocked)
882 */
883static void __detach_device(struct protection_domain *domain, u16 devid)
884{
885
886 /* lock domain */
887 spin_lock(&domain->lock);
888
889 /* remove domain from the lookup table */
890 amd_iommu_pd_table[devid] = NULL;
891
892 /* remove entry from the device table seen by the hardware */
893 amd_iommu_dev_table[devid].data[0] = IOMMU_PTE_P | IOMMU_PTE_TV;
894 amd_iommu_dev_table[devid].data[1] = 0;
895 amd_iommu_dev_table[devid].data[2] = 0;
896
897 /* decrease reference counter */
898 domain->dev_cnt -= 1;
899
900 /* ready */
901 spin_unlock(&domain->lock);
902}
903
904/*
905 * Removes a device from a protection domain (with devtable_lock held)
906 */
907static void detach_device(struct protection_domain *domain, u16 devid)
908{
909 unsigned long flags;
910
911 /* lock device table */
912 write_lock_irqsave(&amd_iommu_devtable_lock, flags);
913 __detach_device(domain, devid);
914 write_unlock_irqrestore(&amd_iommu_devtable_lock, flags);
915}
e275a2a0
JR
916
917static int device_change_notifier(struct notifier_block *nb,
918 unsigned long action, void *data)
919{
920 struct device *dev = data;
921 struct pci_dev *pdev = to_pci_dev(dev);
922 u16 devid = calc_devid(pdev->bus->number, pdev->devfn);
923 struct protection_domain *domain;
924 struct dma_ops_domain *dma_domain;
925 struct amd_iommu *iommu;
1ac4cbbc
JR
926 int order = amd_iommu_aperture_order;
927 unsigned long flags;
e275a2a0
JR
928
929 if (devid > amd_iommu_last_bdf)
930 goto out;
931
932 devid = amd_iommu_alias_table[devid];
933
934 iommu = amd_iommu_rlookup_table[devid];
935 if (iommu == NULL)
936 goto out;
937
938 domain = domain_for_device(devid);
939
940 if (domain && !dma_ops_domain(domain))
941 WARN_ONCE(1, "AMD IOMMU WARNING: device %s already bound "
942 "to a non-dma-ops domain\n", dev_name(dev));
943
944 switch (action) {
945 case BUS_NOTIFY_BOUND_DRIVER:
946 if (domain)
947 goto out;
948 dma_domain = find_protection_domain(devid);
949 if (!dma_domain)
950 dma_domain = iommu->default_dom;
951 attach_device(iommu, &dma_domain->domain, devid);
952 printk(KERN_INFO "AMD IOMMU: Using protection domain %d for "
953 "device %s\n", dma_domain->domain.id, dev_name(dev));
954 break;
955 case BUS_NOTIFY_UNBIND_DRIVER:
956 if (!domain)
957 goto out;
958 detach_device(domain, devid);
1ac4cbbc
JR
959 break;
960 case BUS_NOTIFY_ADD_DEVICE:
961 /* allocate a protection domain if a device is added */
962 dma_domain = find_protection_domain(devid);
963 if (dma_domain)
964 goto out;
965 dma_domain = dma_ops_domain_alloc(iommu, order);
966 if (!dma_domain)
967 goto out;
968 dma_domain->target_dev = devid;
969
970 spin_lock_irqsave(&iommu_pd_list_lock, flags);
971 list_add_tail(&dma_domain->list, &iommu_pd_list);
972 spin_unlock_irqrestore(&iommu_pd_list_lock, flags);
973
e275a2a0
JR
974 break;
975 default:
976 goto out;
977 }
978
979 iommu_queue_inv_dev_entry(iommu, devid);
980 iommu_completion_wait(iommu);
981
982out:
983 return 0;
984}
985
986struct notifier_block device_nb = {
987 .notifier_call = device_change_notifier,
988};
355bf553 989
431b2a20
JR
990/*****************************************************************************
991 *
992 * The next functions belong to the dma_ops mapping/unmapping code.
993 *
994 *****************************************************************************/
995
dbcc112e
JR
996/*
997 * This function checks if the driver got a valid device from the caller to
998 * avoid dereferencing invalid pointers.
999 */
1000static bool check_device(struct device *dev)
1001{
1002 if (!dev || !dev->dma_mask)
1003 return false;
1004
1005 return true;
1006}
1007
bd60b735
JR
1008/*
1009 * In this function the list of preallocated protection domains is traversed to
1010 * find the domain for a specific device
1011 */
1012static struct dma_ops_domain *find_protection_domain(u16 devid)
1013{
1014 struct dma_ops_domain *entry, *ret = NULL;
1015 unsigned long flags;
1016
1017 if (list_empty(&iommu_pd_list))
1018 return NULL;
1019
1020 spin_lock_irqsave(&iommu_pd_list_lock, flags);
1021
1022 list_for_each_entry(entry, &iommu_pd_list, list) {
1023 if (entry->target_dev == devid) {
1024 ret = entry;
bd60b735
JR
1025 break;
1026 }
1027 }
1028
1029 spin_unlock_irqrestore(&iommu_pd_list_lock, flags);
1030
1031 return ret;
1032}
1033
431b2a20
JR
1034/*
1035 * In the dma_ops path we only have the struct device. This function
1036 * finds the corresponding IOMMU, the protection domain and the
1037 * requestor id for a given device.
1038 * If the device is not yet associated with a domain this is also done
1039 * in this function.
1040 */
b20ac0d4
JR
1041static int get_device_resources(struct device *dev,
1042 struct amd_iommu **iommu,
1043 struct protection_domain **domain,
1044 u16 *bdf)
1045{
1046 struct dma_ops_domain *dma_dom;
1047 struct pci_dev *pcidev;
1048 u16 _bdf;
1049
dbcc112e
JR
1050 *iommu = NULL;
1051 *domain = NULL;
1052 *bdf = 0xffff;
1053
1054 if (dev->bus != &pci_bus_type)
1055 return 0;
b20ac0d4
JR
1056
1057 pcidev = to_pci_dev(dev);
d591b0a3 1058 _bdf = calc_devid(pcidev->bus->number, pcidev->devfn);
b20ac0d4 1059
431b2a20 1060 /* device not translated by any IOMMU in the system? */
dbcc112e 1061 if (_bdf > amd_iommu_last_bdf)
b20ac0d4 1062 return 0;
b20ac0d4
JR
1063
1064 *bdf = amd_iommu_alias_table[_bdf];
1065
1066 *iommu = amd_iommu_rlookup_table[*bdf];
1067 if (*iommu == NULL)
1068 return 0;
b20ac0d4
JR
1069 *domain = domain_for_device(*bdf);
1070 if (*domain == NULL) {
bd60b735
JR
1071 dma_dom = find_protection_domain(*bdf);
1072 if (!dma_dom)
1073 dma_dom = (*iommu)->default_dom;
b20ac0d4 1074 *domain = &dma_dom->domain;
f1179dc0 1075 attach_device(*iommu, *domain, *bdf);
b20ac0d4 1076 printk(KERN_INFO "AMD IOMMU: Using protection domain %d for "
ab896722 1077 "device %s\n", (*domain)->id, dev_name(dev));
b20ac0d4
JR
1078 }
1079
f91ba190 1080 if (domain_for_device(_bdf) == NULL)
f1179dc0 1081 attach_device(*iommu, *domain, _bdf);
f91ba190 1082
b20ac0d4
JR
1083 return 1;
1084}
1085
431b2a20
JR
1086/*
1087 * This is the generic map function. It maps one 4kb page at paddr to
1088 * the given address in the DMA address space for the domain.
1089 */
cb76c322
JR
1090static dma_addr_t dma_ops_domain_map(struct amd_iommu *iommu,
1091 struct dma_ops_domain *dom,
1092 unsigned long address,
1093 phys_addr_t paddr,
1094 int direction)
1095{
1096 u64 *pte, __pte;
1097
1098 WARN_ON(address > dom->aperture_size);
1099
1100 paddr &= PAGE_MASK;
1101
1102 pte = dom->pte_pages[IOMMU_PTE_L1_INDEX(address)];
1103 pte += IOMMU_PTE_L0_INDEX(address);
1104
1105 __pte = paddr | IOMMU_PTE_P | IOMMU_PTE_FC;
1106
1107 if (direction == DMA_TO_DEVICE)
1108 __pte |= IOMMU_PTE_IR;
1109 else if (direction == DMA_FROM_DEVICE)
1110 __pte |= IOMMU_PTE_IW;
1111 else if (direction == DMA_BIDIRECTIONAL)
1112 __pte |= IOMMU_PTE_IR | IOMMU_PTE_IW;
1113
1114 WARN_ON(*pte);
1115
1116 *pte = __pte;
1117
1118 return (dma_addr_t)address;
1119}
1120
431b2a20
JR
1121/*
1122 * The generic unmapping function for on page in the DMA address space.
1123 */
cb76c322
JR
1124static void dma_ops_domain_unmap(struct amd_iommu *iommu,
1125 struct dma_ops_domain *dom,
1126 unsigned long address)
1127{
1128 u64 *pte;
1129
1130 if (address >= dom->aperture_size)
1131 return;
1132
8ad909c4 1133 WARN_ON(address & ~PAGE_MASK || address >= dom->aperture_size);
cb76c322
JR
1134
1135 pte = dom->pte_pages[IOMMU_PTE_L1_INDEX(address)];
1136 pte += IOMMU_PTE_L0_INDEX(address);
1137
1138 WARN_ON(!*pte);
1139
1140 *pte = 0ULL;
1141}
1142
431b2a20
JR
1143/*
1144 * This function contains common code for mapping of a physically
24f81160
JR
1145 * contiguous memory region into DMA address space. It is used by all
1146 * mapping functions provided with this IOMMU driver.
431b2a20
JR
1147 * Must be called with the domain lock held.
1148 */
cb76c322
JR
1149static dma_addr_t __map_single(struct device *dev,
1150 struct amd_iommu *iommu,
1151 struct dma_ops_domain *dma_dom,
1152 phys_addr_t paddr,
1153 size_t size,
6d4f343f 1154 int dir,
832a90c3
JR
1155 bool align,
1156 u64 dma_mask)
cb76c322
JR
1157{
1158 dma_addr_t offset = paddr & ~PAGE_MASK;
1159 dma_addr_t address, start;
1160 unsigned int pages;
6d4f343f 1161 unsigned long align_mask = 0;
cb76c322
JR
1162 int i;
1163
e3c449f5 1164 pages = iommu_num_pages(paddr, size, PAGE_SIZE);
cb76c322
JR
1165 paddr &= PAGE_MASK;
1166
6d4f343f
JR
1167 if (align)
1168 align_mask = (1UL << get_order(size)) - 1;
1169
832a90c3
JR
1170 address = dma_ops_alloc_addresses(dev, dma_dom, pages, align_mask,
1171 dma_mask);
cb76c322
JR
1172 if (unlikely(address == bad_dma_address))
1173 goto out;
1174
1175 start = address;
1176 for (i = 0; i < pages; ++i) {
1177 dma_ops_domain_map(iommu, dma_dom, start, paddr, dir);
1178 paddr += PAGE_SIZE;
1179 start += PAGE_SIZE;
1180 }
1181 address += offset;
1182
afa9fdc2 1183 if (unlikely(dma_dom->need_flush && !amd_iommu_unmap_flush)) {
1c655773
JR
1184 iommu_flush_tlb(iommu, dma_dom->domain.id);
1185 dma_dom->need_flush = false;
1186 } else if (unlikely(iommu_has_npcache(iommu)))
270cab24
JR
1187 iommu_flush_pages(iommu, dma_dom->domain.id, address, size);
1188
cb76c322
JR
1189out:
1190 return address;
1191}
1192
431b2a20
JR
1193/*
1194 * Does the reverse of the __map_single function. Must be called with
1195 * the domain lock held too
1196 */
cb76c322
JR
1197static void __unmap_single(struct amd_iommu *iommu,
1198 struct dma_ops_domain *dma_dom,
1199 dma_addr_t dma_addr,
1200 size_t size,
1201 int dir)
1202{
1203 dma_addr_t i, start;
1204 unsigned int pages;
1205
b8d9905d
JR
1206 if ((dma_addr == bad_dma_address) ||
1207 (dma_addr + size > dma_dom->aperture_size))
cb76c322
JR
1208 return;
1209
e3c449f5 1210 pages = iommu_num_pages(dma_addr, size, PAGE_SIZE);
cb76c322
JR
1211 dma_addr &= PAGE_MASK;
1212 start = dma_addr;
1213
1214 for (i = 0; i < pages; ++i) {
1215 dma_ops_domain_unmap(iommu, dma_dom, start);
1216 start += PAGE_SIZE;
1217 }
1218
1219 dma_ops_free_addresses(dma_dom, dma_addr, pages);
270cab24 1220
80be308d 1221 if (amd_iommu_unmap_flush || dma_dom->need_flush) {
1c655773 1222 iommu_flush_pages(iommu, dma_dom->domain.id, dma_addr, size);
80be308d
JR
1223 dma_dom->need_flush = false;
1224 }
cb76c322
JR
1225}
1226
431b2a20
JR
1227/*
1228 * The exported map_single function for dma_ops.
1229 */
4da70b9e
JR
1230static dma_addr_t map_single(struct device *dev, phys_addr_t paddr,
1231 size_t size, int dir)
1232{
1233 unsigned long flags;
1234 struct amd_iommu *iommu;
1235 struct protection_domain *domain;
1236 u16 devid;
1237 dma_addr_t addr;
832a90c3 1238 u64 dma_mask;
4da70b9e 1239
dbcc112e
JR
1240 if (!check_device(dev))
1241 return bad_dma_address;
1242
832a90c3 1243 dma_mask = *dev->dma_mask;
4da70b9e
JR
1244
1245 get_device_resources(dev, &iommu, &domain, &devid);
1246
1247 if (iommu == NULL || domain == NULL)
431b2a20 1248 /* device not handled by any AMD IOMMU */
4da70b9e
JR
1249 return (dma_addr_t)paddr;
1250
5b28df6f
JR
1251 if (!dma_ops_domain(domain))
1252 return bad_dma_address;
1253
4da70b9e 1254 spin_lock_irqsave(&domain->lock, flags);
832a90c3
JR
1255 addr = __map_single(dev, iommu, domain->priv, paddr, size, dir, false,
1256 dma_mask);
4da70b9e
JR
1257 if (addr == bad_dma_address)
1258 goto out;
1259
09ee17eb 1260 iommu_completion_wait(iommu);
4da70b9e
JR
1261
1262out:
1263 spin_unlock_irqrestore(&domain->lock, flags);
1264
1265 return addr;
1266}
1267
431b2a20
JR
1268/*
1269 * The exported unmap_single function for dma_ops.
1270 */
4da70b9e
JR
1271static void unmap_single(struct device *dev, dma_addr_t dma_addr,
1272 size_t size, int dir)
1273{
1274 unsigned long flags;
1275 struct amd_iommu *iommu;
1276 struct protection_domain *domain;
1277 u16 devid;
1278
dbcc112e
JR
1279 if (!check_device(dev) ||
1280 !get_device_resources(dev, &iommu, &domain, &devid))
431b2a20 1281 /* device not handled by any AMD IOMMU */
4da70b9e
JR
1282 return;
1283
5b28df6f
JR
1284 if (!dma_ops_domain(domain))
1285 return;
1286
4da70b9e
JR
1287 spin_lock_irqsave(&domain->lock, flags);
1288
1289 __unmap_single(iommu, domain->priv, dma_addr, size, dir);
1290
09ee17eb 1291 iommu_completion_wait(iommu);
4da70b9e
JR
1292
1293 spin_unlock_irqrestore(&domain->lock, flags);
1294}
1295
431b2a20
JR
1296/*
1297 * This is a special map_sg function which is used if we should map a
1298 * device which is not handled by an AMD IOMMU in the system.
1299 */
65b050ad
JR
1300static int map_sg_no_iommu(struct device *dev, struct scatterlist *sglist,
1301 int nelems, int dir)
1302{
1303 struct scatterlist *s;
1304 int i;
1305
1306 for_each_sg(sglist, s, nelems, i) {
1307 s->dma_address = (dma_addr_t)sg_phys(s);
1308 s->dma_length = s->length;
1309 }
1310
1311 return nelems;
1312}
1313
431b2a20
JR
1314/*
1315 * The exported map_sg function for dma_ops (handles scatter-gather
1316 * lists).
1317 */
65b050ad
JR
1318static int map_sg(struct device *dev, struct scatterlist *sglist,
1319 int nelems, int dir)
1320{
1321 unsigned long flags;
1322 struct amd_iommu *iommu;
1323 struct protection_domain *domain;
1324 u16 devid;
1325 int i;
1326 struct scatterlist *s;
1327 phys_addr_t paddr;
1328 int mapped_elems = 0;
832a90c3 1329 u64 dma_mask;
65b050ad 1330
dbcc112e
JR
1331 if (!check_device(dev))
1332 return 0;
1333
832a90c3 1334 dma_mask = *dev->dma_mask;
65b050ad
JR
1335
1336 get_device_resources(dev, &iommu, &domain, &devid);
1337
1338 if (!iommu || !domain)
1339 return map_sg_no_iommu(dev, sglist, nelems, dir);
1340
5b28df6f
JR
1341 if (!dma_ops_domain(domain))
1342 return 0;
1343
65b050ad
JR
1344 spin_lock_irqsave(&domain->lock, flags);
1345
1346 for_each_sg(sglist, s, nelems, i) {
1347 paddr = sg_phys(s);
1348
1349 s->dma_address = __map_single(dev, iommu, domain->priv,
832a90c3
JR
1350 paddr, s->length, dir, false,
1351 dma_mask);
65b050ad
JR
1352
1353 if (s->dma_address) {
1354 s->dma_length = s->length;
1355 mapped_elems++;
1356 } else
1357 goto unmap;
65b050ad
JR
1358 }
1359
09ee17eb 1360 iommu_completion_wait(iommu);
65b050ad
JR
1361
1362out:
1363 spin_unlock_irqrestore(&domain->lock, flags);
1364
1365 return mapped_elems;
1366unmap:
1367 for_each_sg(sglist, s, mapped_elems, i) {
1368 if (s->dma_address)
1369 __unmap_single(iommu, domain->priv, s->dma_address,
1370 s->dma_length, dir);
1371 s->dma_address = s->dma_length = 0;
1372 }
1373
1374 mapped_elems = 0;
1375
1376 goto out;
1377}
1378
431b2a20
JR
1379/*
1380 * The exported map_sg function for dma_ops (handles scatter-gather
1381 * lists).
1382 */
65b050ad
JR
1383static void unmap_sg(struct device *dev, struct scatterlist *sglist,
1384 int nelems, int dir)
1385{
1386 unsigned long flags;
1387 struct amd_iommu *iommu;
1388 struct protection_domain *domain;
1389 struct scatterlist *s;
1390 u16 devid;
1391 int i;
1392
dbcc112e
JR
1393 if (!check_device(dev) ||
1394 !get_device_resources(dev, &iommu, &domain, &devid))
65b050ad
JR
1395 return;
1396
5b28df6f
JR
1397 if (!dma_ops_domain(domain))
1398 return;
1399
65b050ad
JR
1400 spin_lock_irqsave(&domain->lock, flags);
1401
1402 for_each_sg(sglist, s, nelems, i) {
1403 __unmap_single(iommu, domain->priv, s->dma_address,
1404 s->dma_length, dir);
65b050ad
JR
1405 s->dma_address = s->dma_length = 0;
1406 }
1407
09ee17eb 1408 iommu_completion_wait(iommu);
65b050ad
JR
1409
1410 spin_unlock_irqrestore(&domain->lock, flags);
1411}
1412
431b2a20
JR
1413/*
1414 * The exported alloc_coherent function for dma_ops.
1415 */
5d8b53cf
JR
1416static void *alloc_coherent(struct device *dev, size_t size,
1417 dma_addr_t *dma_addr, gfp_t flag)
1418{
1419 unsigned long flags;
1420 void *virt_addr;
1421 struct amd_iommu *iommu;
1422 struct protection_domain *domain;
1423 u16 devid;
1424 phys_addr_t paddr;
832a90c3 1425 u64 dma_mask = dev->coherent_dma_mask;
5d8b53cf 1426
dbcc112e
JR
1427 if (!check_device(dev))
1428 return NULL;
5d8b53cf 1429
13d9fead
FT
1430 if (!get_device_resources(dev, &iommu, &domain, &devid))
1431 flag &= ~(__GFP_DMA | __GFP_HIGHMEM | __GFP_DMA32);
5d8b53cf 1432
c97ac535 1433 flag |= __GFP_ZERO;
5d8b53cf
JR
1434 virt_addr = (void *)__get_free_pages(flag, get_order(size));
1435 if (!virt_addr)
1436 return 0;
1437
5d8b53cf
JR
1438 paddr = virt_to_phys(virt_addr);
1439
5d8b53cf
JR
1440 if (!iommu || !domain) {
1441 *dma_addr = (dma_addr_t)paddr;
1442 return virt_addr;
1443 }
1444
5b28df6f
JR
1445 if (!dma_ops_domain(domain))
1446 goto out_free;
1447
832a90c3
JR
1448 if (!dma_mask)
1449 dma_mask = *dev->dma_mask;
1450
5d8b53cf
JR
1451 spin_lock_irqsave(&domain->lock, flags);
1452
1453 *dma_addr = __map_single(dev, iommu, domain->priv, paddr,
832a90c3 1454 size, DMA_BIDIRECTIONAL, true, dma_mask);
5d8b53cf 1455
5b28df6f
JR
1456 if (*dma_addr == bad_dma_address)
1457 goto out_free;
5d8b53cf 1458
09ee17eb 1459 iommu_completion_wait(iommu);
5d8b53cf 1460
5d8b53cf
JR
1461 spin_unlock_irqrestore(&domain->lock, flags);
1462
1463 return virt_addr;
5b28df6f
JR
1464
1465out_free:
1466
1467 free_pages((unsigned long)virt_addr, get_order(size));
1468
1469 return NULL;
5d8b53cf
JR
1470}
1471
431b2a20
JR
1472/*
1473 * The exported free_coherent function for dma_ops.
431b2a20 1474 */
5d8b53cf
JR
1475static void free_coherent(struct device *dev, size_t size,
1476 void *virt_addr, dma_addr_t dma_addr)
1477{
1478 unsigned long flags;
1479 struct amd_iommu *iommu;
1480 struct protection_domain *domain;
1481 u16 devid;
1482
dbcc112e
JR
1483 if (!check_device(dev))
1484 return;
1485
5d8b53cf
JR
1486 get_device_resources(dev, &iommu, &domain, &devid);
1487
1488 if (!iommu || !domain)
1489 goto free_mem;
1490
5b28df6f
JR
1491 if (!dma_ops_domain(domain))
1492 goto free_mem;
1493
5d8b53cf
JR
1494 spin_lock_irqsave(&domain->lock, flags);
1495
1496 __unmap_single(iommu, domain->priv, dma_addr, size, DMA_BIDIRECTIONAL);
5d8b53cf 1497
09ee17eb 1498 iommu_completion_wait(iommu);
5d8b53cf
JR
1499
1500 spin_unlock_irqrestore(&domain->lock, flags);
1501
1502free_mem:
1503 free_pages((unsigned long)virt_addr, get_order(size));
1504}
1505
b39ba6ad
JR
1506/*
1507 * This function is called by the DMA layer to find out if we can handle a
1508 * particular device. It is part of the dma_ops.
1509 */
1510static int amd_iommu_dma_supported(struct device *dev, u64 mask)
1511{
1512 u16 bdf;
1513 struct pci_dev *pcidev;
1514
1515 /* No device or no PCI device */
1516 if (!dev || dev->bus != &pci_bus_type)
1517 return 0;
1518
1519 pcidev = to_pci_dev(dev);
1520
1521 bdf = calc_devid(pcidev->bus->number, pcidev->devfn);
1522
1523 /* Out of our scope? */
1524 if (bdf > amd_iommu_last_bdf)
1525 return 0;
1526
1527 return 1;
1528}
1529
c432f3df 1530/*
431b2a20
JR
1531 * The function for pre-allocating protection domains.
1532 *
c432f3df
JR
1533 * If the driver core informs the DMA layer if a driver grabs a device
1534 * we don't need to preallocate the protection domains anymore.
1535 * For now we have to.
1536 */
1537void prealloc_protection_domains(void)
1538{
1539 struct pci_dev *dev = NULL;
1540 struct dma_ops_domain *dma_dom;
1541 struct amd_iommu *iommu;
1542 int order = amd_iommu_aperture_order;
1543 u16 devid;
1544
1545 while ((dev = pci_get_device(PCI_ANY_ID, PCI_ANY_ID, dev)) != NULL) {
1546 devid = (dev->bus->number << 8) | dev->devfn;
3a61ec38 1547 if (devid > amd_iommu_last_bdf)
c432f3df
JR
1548 continue;
1549 devid = amd_iommu_alias_table[devid];
1550 if (domain_for_device(devid))
1551 continue;
1552 iommu = amd_iommu_rlookup_table[devid];
1553 if (!iommu)
1554 continue;
1555 dma_dom = dma_ops_domain_alloc(iommu, order);
1556 if (!dma_dom)
1557 continue;
1558 init_unity_mappings_for_device(dma_dom, devid);
bd60b735
JR
1559 dma_dom->target_dev = devid;
1560
1561 list_add_tail(&dma_dom->list, &iommu_pd_list);
c432f3df
JR
1562 }
1563}
1564
6631ee9d
JR
1565static struct dma_mapping_ops amd_iommu_dma_ops = {
1566 .alloc_coherent = alloc_coherent,
1567 .free_coherent = free_coherent,
1568 .map_single = map_single,
1569 .unmap_single = unmap_single,
1570 .map_sg = map_sg,
1571 .unmap_sg = unmap_sg,
b39ba6ad 1572 .dma_supported = amd_iommu_dma_supported,
6631ee9d
JR
1573};
1574
431b2a20
JR
1575/*
1576 * The function which clues the AMD IOMMU driver into dma_ops.
1577 */
6631ee9d
JR
1578int __init amd_iommu_init_dma_ops(void)
1579{
1580 struct amd_iommu *iommu;
1581 int order = amd_iommu_aperture_order;
1582 int ret;
1583
431b2a20
JR
1584 /*
1585 * first allocate a default protection domain for every IOMMU we
1586 * found in the system. Devices not assigned to any other
1587 * protection domain will be assigned to the default one.
1588 */
6631ee9d
JR
1589 list_for_each_entry(iommu, &amd_iommu_list, list) {
1590 iommu->default_dom = dma_ops_domain_alloc(iommu, order);
1591 if (iommu->default_dom == NULL)
1592 return -ENOMEM;
e2dc14a2 1593 iommu->default_dom->domain.flags |= PD_DEFAULT_MASK;
6631ee9d
JR
1594 ret = iommu_init_unity_mappings(iommu);
1595 if (ret)
1596 goto free_domains;
1597 }
1598
431b2a20
JR
1599 /*
1600 * If device isolation is enabled, pre-allocate the protection
1601 * domains for each device.
1602 */
6631ee9d
JR
1603 if (amd_iommu_isolate)
1604 prealloc_protection_domains();
1605
1606 iommu_detected = 1;
1607 force_iommu = 1;
1608 bad_dma_address = 0;
92af4e29 1609#ifdef CONFIG_GART_IOMMU
6631ee9d
JR
1610 gart_iommu_aperture_disabled = 1;
1611 gart_iommu_aperture = 0;
92af4e29 1612#endif
6631ee9d 1613
431b2a20 1614 /* Make the driver finally visible to the drivers */
6631ee9d
JR
1615 dma_ops = &amd_iommu_dma_ops;
1616
26961efe
JR
1617#ifdef CONFIG_IOMMU_API
1618 register_iommu(&amd_iommu_ops);
1619#endif
1620
e275a2a0
JR
1621 bus_register_notifier(&pci_bus_type, &device_nb);
1622
6631ee9d
JR
1623 return 0;
1624
1625free_domains:
1626
1627 list_for_each_entry(iommu, &amd_iommu_list, list) {
1628 if (iommu->default_dom)
1629 dma_ops_domain_free(iommu->default_dom);
1630 }
1631
1632 return ret;
1633}
6d98cd80
JR
1634
1635/*****************************************************************************
1636 *
1637 * The following functions belong to the exported interface of AMD IOMMU
1638 *
1639 * This interface allows access to lower level functions of the IOMMU
1640 * like protection domain handling and assignement of devices to domains
1641 * which is not possible with the dma_ops interface.
1642 *
1643 *****************************************************************************/
1644
1645#ifdef CONFIG_IOMMU_API
1646
1647static void cleanup_domain(struct protection_domain *domain)
1648{
1649 unsigned long flags;
1650 u16 devid;
1651
1652 write_lock_irqsave(&amd_iommu_devtable_lock, flags);
1653
1654 for (devid = 0; devid <= amd_iommu_last_bdf; ++devid)
1655 if (amd_iommu_pd_table[devid] == domain)
1656 __detach_device(domain, devid);
1657
1658 write_unlock_irqrestore(&amd_iommu_devtable_lock, flags);
1659}
1660
c156e347
JR
1661static int amd_iommu_domain_init(struct iommu_domain *dom)
1662{
1663 struct protection_domain *domain;
1664
1665 domain = kzalloc(sizeof(*domain), GFP_KERNEL);
1666 if (!domain)
1667 return -ENOMEM;
1668
1669 spin_lock_init(&domain->lock);
1670 domain->mode = PAGE_MODE_3_LEVEL;
1671 domain->id = domain_id_alloc();
1672 if (!domain->id)
1673 goto out_free;
1674 domain->pt_root = (void *)get_zeroed_page(GFP_KERNEL);
1675 if (!domain->pt_root)
1676 goto out_free;
1677
1678 dom->priv = domain;
1679
1680 return 0;
1681
1682out_free:
1683 kfree(domain);
1684
1685 return -ENOMEM;
1686}
1687
98383fc3
JR
1688static void amd_iommu_domain_destroy(struct iommu_domain *dom)
1689{
1690 struct protection_domain *domain = dom->priv;
1691
1692 if (!domain)
1693 return;
1694
1695 if (domain->dev_cnt > 0)
1696 cleanup_domain(domain);
1697
1698 BUG_ON(domain->dev_cnt != 0);
1699
1700 free_pagetable(domain);
1701
1702 domain_id_free(domain->id);
1703
1704 kfree(domain);
1705
1706 dom->priv = NULL;
1707}
1708
684f2888
JR
1709static void amd_iommu_detach_device(struct iommu_domain *dom,
1710 struct device *dev)
1711{
1712 struct protection_domain *domain = dom->priv;
1713 struct amd_iommu *iommu;
1714 struct pci_dev *pdev;
1715 u16 devid;
1716
1717 if (dev->bus != &pci_bus_type)
1718 return;
1719
1720 pdev = to_pci_dev(dev);
1721
1722 devid = calc_devid(pdev->bus->number, pdev->devfn);
1723
1724 if (devid > 0)
1725 detach_device(domain, devid);
1726
1727 iommu = amd_iommu_rlookup_table[devid];
1728 if (!iommu)
1729 return;
1730
1731 iommu_queue_inv_dev_entry(iommu, devid);
1732 iommu_completion_wait(iommu);
1733}
1734
01106066
JR
1735static int amd_iommu_attach_device(struct iommu_domain *dom,
1736 struct device *dev)
1737{
1738 struct protection_domain *domain = dom->priv;
1739 struct protection_domain *old_domain;
1740 struct amd_iommu *iommu;
1741 struct pci_dev *pdev;
1742 u16 devid;
1743
1744 if (dev->bus != &pci_bus_type)
1745 return -EINVAL;
1746
1747 pdev = to_pci_dev(dev);
1748
1749 devid = calc_devid(pdev->bus->number, pdev->devfn);
1750
1751 if (devid >= amd_iommu_last_bdf ||
1752 devid != amd_iommu_alias_table[devid])
1753 return -EINVAL;
1754
1755 iommu = amd_iommu_rlookup_table[devid];
1756 if (!iommu)
1757 return -EINVAL;
1758
1759 old_domain = domain_for_device(devid);
1760 if (old_domain)
1761 return -EBUSY;
1762
1763 attach_device(iommu, domain, devid);
1764
1765 iommu_completion_wait(iommu);
1766
1767 return 0;
1768}
1769
c6229ca6
JR
1770static int amd_iommu_map_range(struct iommu_domain *dom,
1771 unsigned long iova, phys_addr_t paddr,
1772 size_t size, int iommu_prot)
1773{
1774 struct protection_domain *domain = dom->priv;
1775 unsigned long i, npages = iommu_num_pages(paddr, size, PAGE_SIZE);
1776 int prot = 0;
1777 int ret;
1778
1779 if (iommu_prot & IOMMU_READ)
1780 prot |= IOMMU_PROT_IR;
1781 if (iommu_prot & IOMMU_WRITE)
1782 prot |= IOMMU_PROT_IW;
1783
1784 iova &= PAGE_MASK;
1785 paddr &= PAGE_MASK;
1786
1787 for (i = 0; i < npages; ++i) {
1788 ret = iommu_map_page(domain, iova, paddr, prot);
1789 if (ret)
1790 return ret;
1791
1792 iova += PAGE_SIZE;
1793 paddr += PAGE_SIZE;
1794 }
1795
1796 return 0;
1797}
1798
eb74ff6c
JR
1799static void amd_iommu_unmap_range(struct iommu_domain *dom,
1800 unsigned long iova, size_t size)
1801{
1802
1803 struct protection_domain *domain = dom->priv;
1804 unsigned long i, npages = iommu_num_pages(iova, size, PAGE_SIZE);
1805
1806 iova &= PAGE_MASK;
1807
1808 for (i = 0; i < npages; ++i) {
1809 iommu_unmap_page(domain, iova);
1810 iova += PAGE_SIZE;
1811 }
1812
1813 iommu_flush_domain(domain->id);
1814}
1815
645c4c8d
JR
1816static phys_addr_t amd_iommu_iova_to_phys(struct iommu_domain *dom,
1817 unsigned long iova)
1818{
1819 struct protection_domain *domain = dom->priv;
1820 unsigned long offset = iova & ~PAGE_MASK;
1821 phys_addr_t paddr;
1822 u64 *pte;
1823
1824 pte = &domain->pt_root[IOMMU_PTE_L2_INDEX(iova)];
1825
1826 if (!IOMMU_PTE_PRESENT(*pte))
1827 return 0;
1828
1829 pte = IOMMU_PTE_PAGE(*pte);
1830 pte = &pte[IOMMU_PTE_L1_INDEX(iova)];
1831
1832 if (!IOMMU_PTE_PRESENT(*pte))
1833 return 0;
1834
1835 pte = IOMMU_PTE_PAGE(*pte);
1836 pte = &pte[IOMMU_PTE_L0_INDEX(iova)];
1837
1838 if (!IOMMU_PTE_PRESENT(*pte))
1839 return 0;
1840
1841 paddr = *pte & IOMMU_PAGE_MASK;
1842 paddr |= offset;
1843
1844 return paddr;
1845}
1846
26961efe
JR
1847static struct iommu_ops amd_iommu_ops = {
1848 .domain_init = amd_iommu_domain_init,
1849 .domain_destroy = amd_iommu_domain_destroy,
1850 .attach_dev = amd_iommu_attach_device,
1851 .detach_dev = amd_iommu_detach_device,
1852 .map = amd_iommu_map_range,
1853 .unmap = amd_iommu_unmap_range,
1854 .iova_to_phys = amd_iommu_iova_to_phys,
1855};
1856
6d98cd80 1857#endif
This page took 0.238911 seconds and 5 git commands to generate.