blob: 3011ea7a3f82e060d0875d75d88eca2da0183dbd [file] [log] [blame]
Joerg Roedelb6c02712008-06-26 21:27:53 +02001/*
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>
Joerg Roedelc156e342008-12-02 18:13:27 +010025#ifdef CONFIG_IOMMU_API
26#include <linux/iommu.h>
27#endif
Joerg Roedelb6c02712008-06-26 21:27:53 +020028#include <asm/proto.h>
FUJITA Tomonori46a7fa22008-07-11 10:23:42 +090029#include <asm/iommu.h>
Joerg Roedel1d9b16d2008-11-27 18:39:15 +010030#include <asm/gart.h>
Joerg Roedelb6c02712008-06-26 21:27:53 +020031#include <asm/amd_iommu_types.h>
Joerg Roedelc6da9922008-06-26 21:28:06 +020032#include <asm/amd_iommu.h>
Joerg Roedelb6c02712008-06-26 21:27:53 +020033
34#define CMD_SET_TYPE(cmd, t) ((cmd)->data[1] |= ((t) << 28))
35
Joerg Roedel136f78a2008-07-11 17:14:27 +020036#define EXIT_LOOP_COUNT 10000000
37
Joerg Roedelb6c02712008-06-26 21:27:53 +020038static DEFINE_RWLOCK(amd_iommu_devtable_lock);
39
Joerg Roedelbd60b732008-09-11 10:24:48 +020040/* A list of preallocated protection domains */
41static LIST_HEAD(iommu_pd_list);
42static DEFINE_SPINLOCK(iommu_pd_list_lock);
43
Joerg Roedel26961ef2008-12-03 17:00:17 +010044#ifdef CONFIG_IOMMU_API
45static struct iommu_ops amd_iommu_ops;
46#endif
47
Joerg Roedel431b2a22008-07-11 17:14:22 +020048/*
49 * general struct to manage commands send to an IOMMU
50 */
Joerg Roedeld6449532008-07-11 17:14:28 +020051struct iommu_cmd {
Joerg Roedelb6c02712008-06-26 21:27:53 +020052 u32 data[4];
53};
54
Joerg Roedelbd0e5212008-06-26 21:27:56 +020055static int dma_ops_unity_map(struct dma_ops_domain *dma_dom,
56 struct unity_map_entry *e);
Joerg Roedele275a2a2008-12-10 18:27:25 +010057static struct dma_ops_domain *find_protection_domain(u16 devid);
58
Joerg Roedelbd0e5212008-06-26 21:27:56 +020059
Joerg Roedel431b2a22008-07-11 17:14:22 +020060/* returns !0 if the IOMMU is caching non-present entries in its TLB */
Joerg Roedel4da70b92008-06-26 21:28:01 +020061static int iommu_has_npcache(struct amd_iommu *iommu)
62{
Joerg Roedelae9b9402008-10-30 17:43:57 +010063 return iommu->cap & (1UL << IOMMU_CAP_NPCACHE);
Joerg Roedel4da70b92008-06-26 21:28:01 +020064}
65
Joerg Roedel431b2a22008-07-11 17:14:22 +020066/****************************************************************************
67 *
Joerg Roedela80dc3e2008-09-11 16:51:41 +020068 * Interrupt handling functions
69 *
70 ****************************************************************************/
71
Joerg Roedel90008ee2008-09-09 16:41:05 +020072static 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
Joerg Roedela80dc3e2008-09-11 16:51:41 +0200152irqreturn_t amd_iommu_int_handler(int irq, void *data)
153{
Joerg Roedel90008ee2008-09-09 16:41:05 +0200154 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;
Joerg Roedela80dc3e2008-09-11 16:51:41 +0200160}
161
162/****************************************************************************
163 *
Joerg Roedel431b2a22008-07-11 17:14:22 +0200164 * 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 */
Joerg Roedeld6449532008-07-11 17:14:28 +0200172static int __iommu_queue_command(struct amd_iommu *iommu, struct iommu_cmd *cmd)
Joerg Roedela19ae1e2008-06-26 21:27:55 +0200173{
174 u32 tail, head;
175 u8 *target;
176
177 tail = readl(iommu->mmio_base + MMIO_CMD_TAIL_OFFSET);
Jiri Kosina8a7c5ef2008-08-19 02:13:55 +0200178 target = iommu->cmd_buf + tail;
Joerg Roedela19ae1e2008-06-26 21:27:55 +0200179 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
Joerg Roedel431b2a22008-07-11 17:14:22 +0200189/*
190 * General queuing function for commands. Takes iommu->lock and calls
191 * __iommu_queue_command().
192 */
Joerg Roedeld6449532008-07-11 17:14:28 +0200193static int iommu_queue_command(struct amd_iommu *iommu, struct iommu_cmd *cmd)
Joerg Roedela19ae1e2008-06-26 21:27:55 +0200194{
195 unsigned long flags;
196 int ret;
197
198 spin_lock_irqsave(&iommu->lock, flags);
199 ret = __iommu_queue_command(iommu, cmd);
Joerg Roedel09ee17e2008-12-03 12:19:27 +0100200 if (!ret)
Joerg Roedel0cfd7aa2008-12-10 19:58:00 +0100201 iommu->need_sync = true;
Joerg Roedela19ae1e2008-06-26 21:27:55 +0200202 spin_unlock_irqrestore(&iommu->lock, flags);
203
204 return ret;
205}
206
Joerg Roedel431b2a22008-07-11 17:14:22 +0200207/*
Joerg Roedel8d201962008-12-02 20:34:41 +0100208 * This function waits until an IOMMU has completed a completion
209 * wait command
Joerg Roedel431b2a22008-07-11 17:14:22 +0200210 */
Joerg Roedel8d201962008-12-02 20:34:41 +0100211static void __iommu_wait_for_completion(struct amd_iommu *iommu)
Joerg Roedela19ae1e2008-06-26 21:27:55 +0200212{
Joerg Roedel8d201962008-12-02 20:34:41 +0100213 int ready = 0;
Joerg Roedel519c31b2008-08-14 19:55:15 +0200214 unsigned status = 0;
Joerg Roedel8d201962008-12-02 20:34:41 +0100215 unsigned long i = 0;
Joerg Roedela19ae1e2008-06-26 21:27:55 +0200216
Joerg Roedel136f78a2008-07-11 17:14:27 +0200217 while (!ready && (i < EXIT_LOOP_COUNT)) {
218 ++i;
Joerg Roedel519c31b2008-08-14 19:55:15 +0200219 /* 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;
Joerg Roedel136f78a2008-07-11 17:14:27 +0200222 }
223
Joerg Roedel519c31b2008-08-14 19:55:15 +0200224 /* set bit back to zero */
225 status &= ~MMIO_STATUS_COM_WAIT_INT_MASK;
226 writel(status, iommu->mmio_base + MMIO_STATUS_OFFSET);
227
Joerg Roedel84df8172008-12-17 16:36:44 +0100228 if (unlikely(i == EXIT_LOOP_COUNT))
229 panic("AMD IOMMU: Completion wait loop failed\n");
Joerg Roedel8d201962008-12-02 20:34:41 +0100230}
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
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 */
254static int iommu_completion_wait(struct amd_iommu *iommu)
255{
256 int ret = 0;
257 unsigned long flags;
258
259 spin_lock_irqsave(&iommu->lock, flags);
260
261 if (!iommu->need_sync)
262 goto out;
263
264 ret = __iommu_completion_wait(iommu);
265
Joerg Roedel0cfd7aa2008-12-10 19:58:00 +0100266 iommu->need_sync = false;
Joerg Roedel8d201962008-12-02 20:34:41 +0100267
268 if (ret)
269 goto out;
270
271 __iommu_wait_for_completion(iommu);
Joerg Roedel84df8172008-12-17 16:36:44 +0100272
Joerg Roedel7e4f88d2008-09-17 14:19:15 +0200273out:
274 spin_unlock_irqrestore(&iommu->lock, flags);
Joerg Roedela19ae1e2008-06-26 21:27:55 +0200275
276 return 0;
277}
278
Joerg Roedel431b2a22008-07-11 17:14:22 +0200279/*
280 * Command send function for invalidating a device table entry
281 */
Joerg Roedela19ae1e2008-06-26 21:27:55 +0200282static int iommu_queue_inv_dev_entry(struct amd_iommu *iommu, u16 devid)
283{
Joerg Roedeld6449532008-07-11 17:14:28 +0200284 struct iommu_cmd cmd;
Joerg Roedelee2fa742008-09-17 13:47:25 +0200285 int ret;
Joerg Roedela19ae1e2008-06-26 21:27:55 +0200286
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
Joerg Roedelee2fa742008-09-17 13:47:25 +0200293 ret = iommu_queue_command(iommu, &cmd);
294
Joerg Roedelee2fa742008-09-17 13:47:25 +0200295 return ret;
Joerg Roedela19ae1e2008-06-26 21:27:55 +0200296}
297
Joerg Roedel237b6f32008-12-02 20:54:37 +0100298static 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
Joerg Roedel431b2a22008-07-11 17:14:22 +0200313/*
314 * Generic command send function for invalidaing TLB entries
315 */
Joerg Roedela19ae1e2008-06-26 21:27:55 +0200316static int iommu_queue_inv_iommu_pages(struct amd_iommu *iommu,
317 u64 address, u16 domid, int pde, int s)
318{
Joerg Roedeld6449532008-07-11 17:14:28 +0200319 struct iommu_cmd cmd;
Joerg Roedelee2fa742008-09-17 13:47:25 +0200320 int ret;
Joerg Roedela19ae1e2008-06-26 21:27:55 +0200321
Joerg Roedel237b6f32008-12-02 20:54:37 +0100322 __iommu_build_inv_iommu_pages(&cmd, address, domid, pde, s);
Joerg Roedela19ae1e2008-06-26 21:27:55 +0200323
Joerg Roedelee2fa742008-09-17 13:47:25 +0200324 ret = iommu_queue_command(iommu, &cmd);
325
Joerg Roedelee2fa742008-09-17 13:47:25 +0200326 return ret;
Joerg Roedela19ae1e2008-06-26 21:27:55 +0200327}
328
Joerg Roedel431b2a22008-07-11 17:14:22 +0200329/*
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 */
Joerg Roedela19ae1e2008-06-26 21:27:55 +0200334static int iommu_flush_pages(struct amd_iommu *iommu, u16 domid,
335 u64 address, size_t size)
336{
Joerg Roedel999ba412008-07-03 19:35:08 +0200337 int s = 0;
Joerg Roedele3c449f2008-10-15 22:02:11 -0700338 unsigned pages = iommu_num_pages(address, size, PAGE_SIZE);
Joerg Roedela19ae1e2008-06-26 21:27:55 +0200339
340 address &= PAGE_MASK;
341
Joerg Roedel999ba412008-07-03 19:35:08 +0200342 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;
Joerg Roedela19ae1e2008-06-26 21:27:55 +0200349 }
350
Joerg Roedel999ba412008-07-03 19:35:08 +0200351 iommu_queue_inv_iommu_pages(iommu, address, domid, 0, s);
352
Joerg Roedela19ae1e2008-06-26 21:27:55 +0200353 return 0;
354}
Joerg Roedelb6c02712008-06-26 21:27:53 +0200355
Joerg Roedel1c655772008-09-04 18:40:05 +0200356/* 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
Joerg Roedel43f49602008-12-02 21:01:12 +0100364#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
Joerg Roedel431b2a22008-07-11 17:14:22 +0200388/****************************************************************************
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 */
Joerg Roedel38e817f2008-12-02 17:27:52 +0100402static int iommu_map_page(struct protection_domain *dom,
403 unsigned long bus_addr,
404 unsigned long phys_addr,
405 int prot)
Joerg Roedelbd0e5212008-06-26 21:27:56 +0200406{
407 u64 __pte, *pte, *page;
408
409 bus_addr = PAGE_ALIGN(bus_addr);
Joerg Roedelbb9d4ff2008-12-04 15:59:48 +0100410 phys_addr = PAGE_ALIGN(phys_addr);
Joerg Roedelbd0e5212008-06-26 21:27:56 +0200411
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
Joerg Roedeleb74ff62008-12-02 19:59:10 +0100452#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
Joerg Roedel431b2a22008-07-11 17:14:22 +0200476/*
477 * This function checks if a specific unity mapping entry is needed for
478 * this specific IOMMU.
479 */
Joerg Roedelbd0e5212008-06-26 21:27:56 +0200480static 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
Joerg Roedel431b2a22008-07-11 17:14:22 +0200494/*
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 */
Joerg Roedelbd0e5212008-06-26 21:27:56 +0200500static 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
Joerg Roedel431b2a22008-07-11 17:14:22 +0200516/*
517 * This function actually applies the mapping to the page table of the
518 * dma_ops domain.
519 */
Joerg Roedelbd0e5212008-06-26 21:27:56 +0200520static 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) {
Joerg Roedel38e817f2008-12-02 17:27:52 +0100528 ret = iommu_map_page(&dma_dom->domain, addr, addr, e->prot);
Joerg Roedelbd0e5212008-06-26 21:27:56 +0200529 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
Joerg Roedel431b2a22008-07-11 17:14:22 +0200542/*
543 * Inits the unity mappings required for a specific device
544 */
Joerg Roedelbd0e5212008-06-26 21:27:56 +0200545static 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
Joerg Roedel431b2a22008-07-11 17:14:22 +0200562/****************************************************************************
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 ****************************************************************************/
Joerg Roedeld3086442008-06-26 21:27:57 +0200571
Joerg Roedel431b2a22008-07-11 17:14:22 +0200572/*
573 * The address allocator core function.
574 *
575 * called with domain->lock held
576 */
Joerg Roedeld3086442008-06-26 21:27:57 +0200577static unsigned long dma_ops_alloc_addresses(struct device *dev,
578 struct dma_ops_domain *dom,
Joerg Roedel6d4f343f2008-09-04 19:18:02 +0200579 unsigned int pages,
Joerg Roedel832a90c2008-09-18 15:54:23 +0200580 unsigned long align_mask,
581 u64 dma_mask)
Joerg Roedeld3086442008-06-26 21:27:57 +0200582{
FUJITA Tomonori40becd82008-09-29 00:06:36 +0900583 unsigned long limit;
Joerg Roedeld3086442008-06-26 21:27:57 +0200584 unsigned long address;
Joerg Roedeld3086442008-06-26 21:27:57 +0200585 unsigned long boundary_size;
586
587 boundary_size = ALIGN(dma_get_seg_boundary(dev) + 1,
588 PAGE_SIZE) >> PAGE_SHIFT;
FUJITA Tomonori40becd82008-09-29 00:06:36 +0900589 limit = iommu_device_max_index(dom->aperture_size >> PAGE_SHIFT, 0,
590 dma_mask >> PAGE_SHIFT);
Joerg Roedeld3086442008-06-26 21:27:57 +0200591
Joerg Roedel1c655772008-09-04 18:40:05 +0200592 if (dom->next_bit >= limit) {
Joerg Roedeld3086442008-06-26 21:27:57 +0200593 dom->next_bit = 0;
Joerg Roedel1c655772008-09-04 18:40:05 +0200594 dom->need_flush = true;
595 }
Joerg Roedeld3086442008-06-26 21:27:57 +0200596
597 address = iommu_area_alloc(dom->bitmap, limit, dom->next_bit, pages,
Joerg Roedel6d4f343f2008-09-04 19:18:02 +0200598 0 , boundary_size, align_mask);
Joerg Roedel1c655772008-09-04 18:40:05 +0200599 if (address == -1) {
Joerg Roedeld3086442008-06-26 21:27:57 +0200600 address = iommu_area_alloc(dom->bitmap, limit, 0, pages,
Joerg Roedel6d4f343f2008-09-04 19:18:02 +0200601 0, boundary_size, align_mask);
Joerg Roedel1c655772008-09-04 18:40:05 +0200602 dom->need_flush = true;
603 }
Joerg Roedeld3086442008-06-26 21:27:57 +0200604
605 if (likely(address != -1)) {
Joerg Roedeld3086442008-06-26 21:27:57 +0200606 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
Joerg Roedel431b2a22008-07-11 17:14:22 +0200616/*
617 * The address free function.
618 *
619 * called with domain->lock held
620 */
Joerg Roedeld3086442008-06-26 21:27:57 +0200621static 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);
Joerg Roedel80be3082008-11-06 14:59:05 +0100627
Joerg Roedel8501c452008-11-17 19:11:46 +0100628 if (address >= dom->next_bit)
Joerg Roedel80be3082008-11-06 14:59:05 +0100629 dom->need_flush = true;
Joerg Roedeld3086442008-06-26 21:27:57 +0200630}
631
Joerg Roedel431b2a22008-07-11 17:14:22 +0200632/****************************************************************************
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
Joerg Roedelec487d12008-06-26 21:27:58 +0200642static 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
Joerg Roedela2acfb72008-12-02 18:28:53 +0100659#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
Joerg Roedel431b2a22008-07-11 17:14:22 +0200671/*
672 * Used to reserve address ranges in the aperture (e.g. for exclusion
673 * ranges.
674 */
Joerg Roedelec487d12008-06-26 21:27:58 +0200675static 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
FUJITA Tomonorid26dbc52008-09-22 22:35:07 +0900684 iommu_area_reserve(dom->bitmap, start_page, pages);
Joerg Roedelec487d12008-06-26 21:27:58 +0200685}
686
Joerg Roedel86db2e52008-12-02 18:20:21 +0100687static void free_pagetable(struct protection_domain *domain)
Joerg Roedelec487d12008-06-26 21:27:58 +0200688{
689 int i, j;
690 u64 *p1, *p2, *p3;
691
Joerg Roedel86db2e52008-12-02 18:20:21 +0100692 p1 = domain->pt_root;
Joerg Roedelec487d12008-06-26 21:27:58 +0200693
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]);
Joerg Roedel3cc3d842008-12-04 16:44:31 +0100702 for (j = 0; j < 512; ++j) {
Joerg Roedelec487d12008-06-26 21:27:58 +0200703 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);
Joerg Roedel86db2e52008-12-02 18:20:21 +0100713
714 domain->pt_root = NULL;
Joerg Roedelec487d12008-06-26 21:27:58 +0200715}
716
Joerg Roedel431b2a22008-07-11 17:14:22 +0200717/*
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 */
Joerg Roedelec487d12008-06-26 21:27:58 +0200721static void dma_ops_domain_free(struct dma_ops_domain *dom)
722{
723 if (!dom)
724 return;
725
Joerg Roedel86db2e52008-12-02 18:20:21 +0100726 free_pagetable(&dom->domain);
Joerg Roedelec487d12008-06-26 21:27:58 +0200727
728 kfree(dom->pte_pages);
729
730 kfree(dom->bitmap);
731
732 kfree(dom);
733}
734
Joerg Roedel431b2a22008-07-11 17:14:22 +0200735/*
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 */
Joerg Roedelec487d12008-06-26 21:27:58 +0200740static 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);
Joerg Roedel9fdb19d2008-12-02 17:46:25 +0100765 dma_dom->domain.flags = PD_DMA_OPS_MASK;
Joerg Roedelec487d12008-06-26 21:27:58 +0200766 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
Joerg Roedel1c655772008-09-04 18:40:05 +0200781 dma_dom->need_flush = false;
Joerg Roedelbd60b732008-09-11 10:24:48 +0200782 dma_dom->target_dev = 0xffff;
Joerg Roedel1c655772008-09-04 18:40:05 +0200783
Joerg Roedel431b2a22008-07-11 17:14:22 +0200784 /* Intialize the exclusion range if necessary */
Joerg Roedelec487d12008-06-26 21:27:58 +0200785 if (iommu->exclusion_start &&
786 iommu->exclusion_start < dma_dom->aperture_size) {
787 unsigned long startpage = iommu->exclusion_start >> PAGE_SHIFT;
Joerg Roedele3c449f2008-10-15 22:02:11 -0700788 int pages = iommu_num_pages(iommu->exclusion_start,
789 iommu->exclusion_length,
790 PAGE_SIZE);
Joerg Roedelec487d12008-06-26 21:27:58 +0200791 dma_ops_reserve_addresses(dma_dom, startpage, pages);
792 }
793
Joerg Roedel431b2a22008-07-11 17:14:22 +0200794 /*
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 */
Joerg Roedelec487d12008-06-26 21:27:58 +0200799 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
Joerg Roedel431b2a22008-07-11 17:14:22 +0200827/*
Joerg Roedel5b28df62008-12-02 17:49:42 +0100828 * 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
836/*
Joerg Roedel431b2a22008-07-11 17:14:22 +0200837 * 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 */
Joerg Roedelb20ac0d2008-06-26 21:27:59 +0200840static 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
Joerg Roedel431b2a22008-07-11 17:14:22 +0200852/*
853 * If a device is not yet associated with a domain, this function does
854 * assigns it visible for the hardware
855 */
Joerg Roedelf1179dc2008-12-10 14:39:51 +0100856static void attach_device(struct amd_iommu *iommu,
857 struct protection_domain *domain,
858 u16 devid)
Joerg Roedelb20ac0d2008-06-26 21:27:59 +0200859{
860 unsigned long flags;
Joerg Roedelb20ac0d2008-06-26 21:27:59 +0200861 u64 pte_root = virt_to_phys(domain->pt_root);
862
Joerg Roedel863c74e2008-12-02 17:56:36 +0100863 domain->dev_cnt += 1;
864
Joerg Roedel38ddf412008-09-11 10:38:32 +0200865 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;
Joerg Roedelb20ac0d2008-06-26 21:27:59 +0200868
869 write_lock_irqsave(&amd_iommu_devtable_lock, flags);
Joerg Roedel38ddf412008-09-11 10:38:32 +0200870 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);
Joerg Roedelb20ac0d2008-06-26 21:27:59 +0200872 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);
Joerg Roedelb20ac0d2008-06-26 21:27:59 +0200878}
879
Joerg Roedel355bf552008-12-08 12:02:41 +0100880/*
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}
Joerg Roedele275a2a2008-12-10 18:27:25 +0100916
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;
Joerg Roedel1ac4cbb2008-12-10 19:33:26 +0100926 int order = amd_iommu_aperture_order;
927 unsigned long flags;
Joerg Roedele275a2a2008-12-10 18:27:25 +0100928
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);
959 break;
Joerg Roedel1ac4cbb2008-12-10 19:33:26 +0100960 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
974 break;
Joerg Roedele275a2a2008-12-10 18:27:25 +0100975 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};
Joerg Roedel355bf552008-12-08 12:02:41 +0100989
Joerg Roedel431b2a22008-07-11 17:14:22 +0200990/*****************************************************************************
991 *
992 * The next functions belong to the dma_ops mapping/unmapping code.
993 *
994 *****************************************************************************/
995
996/*
Joerg Roedeldbcc1122008-09-04 15:04:26 +0200997 * 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
1008/*
Joerg Roedelbd60b732008-09-11 10:24:48 +02001009 * 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;
Joerg Roedelbd60b732008-09-11 10:24:48 +02001025 break;
1026 }
1027 }
1028
1029 spin_unlock_irqrestore(&iommu_pd_list_lock, flags);
1030
1031 return ret;
1032}
1033
1034/*
Joerg Roedel431b2a22008-07-11 17:14:22 +02001035 * 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 */
Joerg Roedelb20ac0d2008-06-26 21:27:59 +02001041static 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
Joerg Roedeldbcc1122008-09-04 15:04:26 +02001050 *iommu = NULL;
1051 *domain = NULL;
1052 *bdf = 0xffff;
1053
1054 if (dev->bus != &pci_bus_type)
1055 return 0;
Joerg Roedelb20ac0d2008-06-26 21:27:59 +02001056
1057 pcidev = to_pci_dev(dev);
Joerg Roedeld591b0a2008-07-11 17:14:35 +02001058 _bdf = calc_devid(pcidev->bus->number, pcidev->devfn);
Joerg Roedelb20ac0d2008-06-26 21:27:59 +02001059
Joerg Roedel431b2a22008-07-11 17:14:22 +02001060 /* device not translated by any IOMMU in the system? */
Joerg Roedeldbcc1122008-09-04 15:04:26 +02001061 if (_bdf > amd_iommu_last_bdf)
Joerg Roedelb20ac0d2008-06-26 21:27:59 +02001062 return 0;
Joerg Roedelb20ac0d2008-06-26 21:27:59 +02001063
1064 *bdf = amd_iommu_alias_table[_bdf];
1065
1066 *iommu = amd_iommu_rlookup_table[*bdf];
1067 if (*iommu == NULL)
1068 return 0;
Joerg Roedelb20ac0d2008-06-26 21:27:59 +02001069 *domain = domain_for_device(*bdf);
1070 if (*domain == NULL) {
Joerg Roedelbd60b732008-09-11 10:24:48 +02001071 dma_dom = find_protection_domain(*bdf);
1072 if (!dma_dom)
1073 dma_dom = (*iommu)->default_dom;
Joerg Roedelb20ac0d2008-06-26 21:27:59 +02001074 *domain = &dma_dom->domain;
Joerg Roedelf1179dc2008-12-10 14:39:51 +01001075 attach_device(*iommu, *domain, *bdf);
Joerg Roedelb20ac0d2008-06-26 21:27:59 +02001076 printk(KERN_INFO "AMD IOMMU: Using protection domain %d for "
Joerg Roedelab896722008-12-10 19:43:07 +01001077 "device %s\n", (*domain)->id, dev_name(dev));
Joerg Roedelb20ac0d2008-06-26 21:27:59 +02001078 }
1079
Joerg Roedelf91ba192008-11-25 12:56:12 +01001080 if (domain_for_device(_bdf) == NULL)
Joerg Roedelf1179dc2008-12-10 14:39:51 +01001081 attach_device(*iommu, *domain, _bdf);
Joerg Roedelf91ba192008-11-25 12:56:12 +01001082
Joerg Roedelb20ac0d2008-06-26 21:27:59 +02001083 return 1;
1084}
1085
Joerg Roedel431b2a22008-07-11 17:14:22 +02001086/*
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 */
Joerg Roedelcb76c322008-06-26 21:28:00 +02001090static 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
Joerg Roedel431b2a22008-07-11 17:14:22 +02001121/*
1122 * The generic unmapping function for on page in the DMA address space.
1123 */
Joerg Roedelcb76c322008-06-26 21:28:00 +02001124static 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
Joerg Roedel8ad909c2008-12-08 14:37:20 +01001133 WARN_ON(address & ~PAGE_MASK || address >= dom->aperture_size);
Joerg Roedelcb76c322008-06-26 21:28:00 +02001134
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
Joerg Roedel431b2a22008-07-11 17:14:22 +02001143/*
1144 * This function contains common code for mapping of a physically
Joerg Roedel24f81162008-12-08 14:25:39 +01001145 * contiguous memory region into DMA address space. It is used by all
1146 * mapping functions provided with this IOMMU driver.
Joerg Roedel431b2a22008-07-11 17:14:22 +02001147 * Must be called with the domain lock held.
1148 */
Joerg Roedelcb76c322008-06-26 21:28:00 +02001149static 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,
Joerg Roedel6d4f343f2008-09-04 19:18:02 +02001154 int dir,
Joerg Roedel832a90c2008-09-18 15:54:23 +02001155 bool align,
1156 u64 dma_mask)
Joerg Roedelcb76c322008-06-26 21:28:00 +02001157{
1158 dma_addr_t offset = paddr & ~PAGE_MASK;
1159 dma_addr_t address, start;
1160 unsigned int pages;
Joerg Roedel6d4f343f2008-09-04 19:18:02 +02001161 unsigned long align_mask = 0;
Joerg Roedelcb76c322008-06-26 21:28:00 +02001162 int i;
1163
Joerg Roedele3c449f2008-10-15 22:02:11 -07001164 pages = iommu_num_pages(paddr, size, PAGE_SIZE);
Joerg Roedelcb76c322008-06-26 21:28:00 +02001165 paddr &= PAGE_MASK;
1166
Joerg Roedel6d4f343f2008-09-04 19:18:02 +02001167 if (align)
1168 align_mask = (1UL << get_order(size)) - 1;
1169
Joerg Roedel832a90c2008-09-18 15:54:23 +02001170 address = dma_ops_alloc_addresses(dev, dma_dom, pages, align_mask,
1171 dma_mask);
Joerg Roedelcb76c322008-06-26 21:28:00 +02001172 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
FUJITA Tomonoriafa9fdc2008-09-20 01:23:30 +09001183 if (unlikely(dma_dom->need_flush && !amd_iommu_unmap_flush)) {
Joerg Roedel1c655772008-09-04 18:40:05 +02001184 iommu_flush_tlb(iommu, dma_dom->domain.id);
1185 dma_dom->need_flush = false;
1186 } else if (unlikely(iommu_has_npcache(iommu)))
Joerg Roedel270cab242008-09-04 15:49:46 +02001187 iommu_flush_pages(iommu, dma_dom->domain.id, address, size);
1188
Joerg Roedelcb76c322008-06-26 21:28:00 +02001189out:
1190 return address;
1191}
1192
Joerg Roedel431b2a22008-07-11 17:14:22 +02001193/*
1194 * Does the reverse of the __map_single function. Must be called with
1195 * the domain lock held too
1196 */
Joerg Roedelcb76c322008-06-26 21:28:00 +02001197static 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
Joerg Roedelb8d99052008-12-08 14:40:26 +01001206 if ((dma_addr == bad_dma_address) ||
1207 (dma_addr + size > dma_dom->aperture_size))
Joerg Roedelcb76c322008-06-26 21:28:00 +02001208 return;
1209
Joerg Roedele3c449f2008-10-15 22:02:11 -07001210 pages = iommu_num_pages(dma_addr, size, PAGE_SIZE);
Joerg Roedelcb76c322008-06-26 21:28:00 +02001211 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);
Joerg Roedel270cab242008-09-04 15:49:46 +02001220
Joerg Roedel80be3082008-11-06 14:59:05 +01001221 if (amd_iommu_unmap_flush || dma_dom->need_flush) {
Joerg Roedel1c655772008-09-04 18:40:05 +02001222 iommu_flush_pages(iommu, dma_dom->domain.id, dma_addr, size);
Joerg Roedel80be3082008-11-06 14:59:05 +01001223 dma_dom->need_flush = false;
1224 }
Joerg Roedelcb76c322008-06-26 21:28:00 +02001225}
1226
Joerg Roedel431b2a22008-07-11 17:14:22 +02001227/*
1228 * The exported map_single function for dma_ops.
1229 */
Joerg Roedel4da70b92008-06-26 21:28:01 +02001230static 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;
Joerg Roedel832a90c2008-09-18 15:54:23 +02001238 u64 dma_mask;
Joerg Roedel4da70b92008-06-26 21:28:01 +02001239
Joerg Roedeldbcc1122008-09-04 15:04:26 +02001240 if (!check_device(dev))
1241 return bad_dma_address;
1242
Joerg Roedel832a90c2008-09-18 15:54:23 +02001243 dma_mask = *dev->dma_mask;
Joerg Roedel4da70b92008-06-26 21:28:01 +02001244
1245 get_device_resources(dev, &iommu, &domain, &devid);
1246
1247 if (iommu == NULL || domain == NULL)
Joerg Roedel431b2a22008-07-11 17:14:22 +02001248 /* device not handled by any AMD IOMMU */
Joerg Roedel4da70b92008-06-26 21:28:01 +02001249 return (dma_addr_t)paddr;
1250
Joerg Roedel5b28df62008-12-02 17:49:42 +01001251 if (!dma_ops_domain(domain))
1252 return bad_dma_address;
1253
Joerg Roedel4da70b92008-06-26 21:28:01 +02001254 spin_lock_irqsave(&domain->lock, flags);
Joerg Roedel832a90c2008-09-18 15:54:23 +02001255 addr = __map_single(dev, iommu, domain->priv, paddr, size, dir, false,
1256 dma_mask);
Joerg Roedel4da70b92008-06-26 21:28:01 +02001257 if (addr == bad_dma_address)
1258 goto out;
1259
Joerg Roedel09ee17e2008-12-03 12:19:27 +01001260 iommu_completion_wait(iommu);
Joerg Roedel4da70b92008-06-26 21:28:01 +02001261
1262out:
1263 spin_unlock_irqrestore(&domain->lock, flags);
1264
1265 return addr;
1266}
1267
Joerg Roedel431b2a22008-07-11 17:14:22 +02001268/*
1269 * The exported unmap_single function for dma_ops.
1270 */
Joerg Roedel4da70b92008-06-26 21:28:01 +02001271static 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
Joerg Roedeldbcc1122008-09-04 15:04:26 +02001279 if (!check_device(dev) ||
1280 !get_device_resources(dev, &iommu, &domain, &devid))
Joerg Roedel431b2a22008-07-11 17:14:22 +02001281 /* device not handled by any AMD IOMMU */
Joerg Roedel4da70b92008-06-26 21:28:01 +02001282 return;
1283
Joerg Roedel5b28df62008-12-02 17:49:42 +01001284 if (!dma_ops_domain(domain))
1285 return;
1286
Joerg Roedel4da70b92008-06-26 21:28:01 +02001287 spin_lock_irqsave(&domain->lock, flags);
1288
1289 __unmap_single(iommu, domain->priv, dma_addr, size, dir);
1290
Joerg Roedel09ee17e2008-12-03 12:19:27 +01001291 iommu_completion_wait(iommu);
Joerg Roedel4da70b92008-06-26 21:28:01 +02001292
1293 spin_unlock_irqrestore(&domain->lock, flags);
1294}
1295
Joerg Roedel431b2a22008-07-11 17:14:22 +02001296/*
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 */
Joerg Roedel65b050a2008-06-26 21:28:02 +02001300static 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
Joerg Roedel431b2a22008-07-11 17:14:22 +02001314/*
1315 * The exported map_sg function for dma_ops (handles scatter-gather
1316 * lists).
1317 */
Joerg Roedel65b050a2008-06-26 21:28:02 +02001318static 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;
Joerg Roedel832a90c2008-09-18 15:54:23 +02001329 u64 dma_mask;
Joerg Roedel65b050a2008-06-26 21:28:02 +02001330
Joerg Roedeldbcc1122008-09-04 15:04:26 +02001331 if (!check_device(dev))
1332 return 0;
1333
Joerg Roedel832a90c2008-09-18 15:54:23 +02001334 dma_mask = *dev->dma_mask;
Joerg Roedel65b050a2008-06-26 21:28:02 +02001335
1336 get_device_resources(dev, &iommu, &domain, &devid);
1337
1338 if (!iommu || !domain)
1339 return map_sg_no_iommu(dev, sglist, nelems, dir);
1340
Joerg Roedel5b28df62008-12-02 17:49:42 +01001341 if (!dma_ops_domain(domain))
1342 return 0;
1343
Joerg Roedel65b050a2008-06-26 21:28:02 +02001344 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,
Joerg Roedel832a90c2008-09-18 15:54:23 +02001350 paddr, s->length, dir, false,
1351 dma_mask);
Joerg Roedel65b050a2008-06-26 21:28:02 +02001352
1353 if (s->dma_address) {
1354 s->dma_length = s->length;
1355 mapped_elems++;
1356 } else
1357 goto unmap;
Joerg Roedel65b050a2008-06-26 21:28:02 +02001358 }
1359
Joerg Roedel09ee17e2008-12-03 12:19:27 +01001360 iommu_completion_wait(iommu);
Joerg Roedel65b050a2008-06-26 21:28:02 +02001361
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
Joerg Roedel431b2a22008-07-11 17:14:22 +02001379/*
1380 * The exported map_sg function for dma_ops (handles scatter-gather
1381 * lists).
1382 */
Joerg Roedel65b050a2008-06-26 21:28:02 +02001383static 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
Joerg Roedeldbcc1122008-09-04 15:04:26 +02001393 if (!check_device(dev) ||
1394 !get_device_resources(dev, &iommu, &domain, &devid))
Joerg Roedel65b050a2008-06-26 21:28:02 +02001395 return;
1396
Joerg Roedel5b28df62008-12-02 17:49:42 +01001397 if (!dma_ops_domain(domain))
1398 return;
1399
Joerg Roedel65b050a2008-06-26 21:28:02 +02001400 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);
Joerg Roedel65b050a2008-06-26 21:28:02 +02001405 s->dma_address = s->dma_length = 0;
1406 }
1407
Joerg Roedel09ee17e2008-12-03 12:19:27 +01001408 iommu_completion_wait(iommu);
Joerg Roedel65b050a2008-06-26 21:28:02 +02001409
1410 spin_unlock_irqrestore(&domain->lock, flags);
1411}
1412
Joerg Roedel431b2a22008-07-11 17:14:22 +02001413/*
1414 * The exported alloc_coherent function for dma_ops.
1415 */
Joerg Roedel5d8b53c2008-06-26 21:28:03 +02001416static 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;
Joerg Roedel832a90c2008-09-18 15:54:23 +02001425 u64 dma_mask = dev->coherent_dma_mask;
Joerg Roedel5d8b53c2008-06-26 21:28:03 +02001426
Joerg Roedeldbcc1122008-09-04 15:04:26 +02001427 if (!check_device(dev))
1428 return NULL;
1429
FUJITA Tomonori13d9fea2008-09-10 20:19:40 +09001430 if (!get_device_resources(dev, &iommu, &domain, &devid))
1431 flag &= ~(__GFP_DMA | __GFP_HIGHMEM | __GFP_DMA32);
1432
Joerg Roedelc97ac532008-09-11 10:59:15 +02001433 flag |= __GFP_ZERO;
Joerg Roedel5d8b53c2008-06-26 21:28:03 +02001434 virt_addr = (void *)__get_free_pages(flag, get_order(size));
1435 if (!virt_addr)
1436 return 0;
1437
Joerg Roedel5d8b53c2008-06-26 21:28:03 +02001438 paddr = virt_to_phys(virt_addr);
1439
Joerg Roedel5d8b53c2008-06-26 21:28:03 +02001440 if (!iommu || !domain) {
1441 *dma_addr = (dma_addr_t)paddr;
1442 return virt_addr;
1443 }
1444
Joerg Roedel5b28df62008-12-02 17:49:42 +01001445 if (!dma_ops_domain(domain))
1446 goto out_free;
1447
Joerg Roedel832a90c2008-09-18 15:54:23 +02001448 if (!dma_mask)
1449 dma_mask = *dev->dma_mask;
1450
Joerg Roedel5d8b53c2008-06-26 21:28:03 +02001451 spin_lock_irqsave(&domain->lock, flags);
1452
1453 *dma_addr = __map_single(dev, iommu, domain->priv, paddr,
Joerg Roedel832a90c2008-09-18 15:54:23 +02001454 size, DMA_BIDIRECTIONAL, true, dma_mask);
Joerg Roedel5d8b53c2008-06-26 21:28:03 +02001455
Joerg Roedel5b28df62008-12-02 17:49:42 +01001456 if (*dma_addr == bad_dma_address)
1457 goto out_free;
Joerg Roedel5d8b53c2008-06-26 21:28:03 +02001458
Joerg Roedel09ee17e2008-12-03 12:19:27 +01001459 iommu_completion_wait(iommu);
Joerg Roedel5d8b53c2008-06-26 21:28:03 +02001460
Joerg Roedel5d8b53c2008-06-26 21:28:03 +02001461 spin_unlock_irqrestore(&domain->lock, flags);
1462
1463 return virt_addr;
Joerg Roedel5b28df62008-12-02 17:49:42 +01001464
1465out_free:
1466
1467 free_pages((unsigned long)virt_addr, get_order(size));
1468
1469 return NULL;
Joerg Roedel5d8b53c2008-06-26 21:28:03 +02001470}
1471
Joerg Roedel431b2a22008-07-11 17:14:22 +02001472/*
1473 * The exported free_coherent function for dma_ops.
Joerg Roedel431b2a22008-07-11 17:14:22 +02001474 */
Joerg Roedel5d8b53c2008-06-26 21:28:03 +02001475static 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
Joerg Roedeldbcc1122008-09-04 15:04:26 +02001483 if (!check_device(dev))
1484 return;
1485
Joerg Roedel5d8b53c2008-06-26 21:28:03 +02001486 get_device_resources(dev, &iommu, &domain, &devid);
1487
1488 if (!iommu || !domain)
1489 goto free_mem;
1490
Joerg Roedel5b28df62008-12-02 17:49:42 +01001491 if (!dma_ops_domain(domain))
1492 goto free_mem;
1493
Joerg Roedel5d8b53c2008-06-26 21:28:03 +02001494 spin_lock_irqsave(&domain->lock, flags);
1495
1496 __unmap_single(iommu, domain->priv, dma_addr, size, DMA_BIDIRECTIONAL);
Joerg Roedel5d8b53c2008-06-26 21:28:03 +02001497
Joerg Roedel09ee17e2008-12-03 12:19:27 +01001498 iommu_completion_wait(iommu);
Joerg Roedel5d8b53c2008-06-26 21:28:03 +02001499
1500 spin_unlock_irqrestore(&domain->lock, flags);
1501
1502free_mem:
1503 free_pages((unsigned long)virt_addr, get_order(size));
1504}
1505
Joerg Roedelc432f3d2008-06-26 21:28:04 +02001506/*
Joerg Roedelb39ba6a2008-09-09 18:40:46 +02001507 * 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
1530/*
Joerg Roedel431b2a22008-07-11 17:14:22 +02001531 * The function for pre-allocating protection domains.
1532 *
Joerg Roedelc432f3d2008-06-26 21:28:04 +02001533 * 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) {
Joerg Roedeledcb34d2008-12-10 20:01:45 +01001546 devid = calc_devid(dev->bus->number, dev->devfn);
Joerg Roedel3a61ec32008-07-25 13:07:50 +02001547 if (devid > amd_iommu_last_bdf)
Joerg Roedelc432f3d2008-06-26 21:28:04 +02001548 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);
Joerg Roedelbd60b732008-09-11 10:24:48 +02001559 dma_dom->target_dev = devid;
1560
1561 list_add_tail(&dma_dom->list, &iommu_pd_list);
Joerg Roedelc432f3d2008-06-26 21:28:04 +02001562 }
1563}
1564
Joerg Roedel6631ee92008-06-26 21:28:05 +02001565static 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,
Joerg Roedelb39ba6a2008-09-09 18:40:46 +02001572 .dma_supported = amd_iommu_dma_supported,
Joerg Roedel6631ee92008-06-26 21:28:05 +02001573};
1574
Joerg Roedel431b2a22008-07-11 17:14:22 +02001575/*
1576 * The function which clues the AMD IOMMU driver into dma_ops.
1577 */
Joerg Roedel6631ee92008-06-26 21:28:05 +02001578int __init amd_iommu_init_dma_ops(void)
1579{
1580 struct amd_iommu *iommu;
1581 int order = amd_iommu_aperture_order;
1582 int ret;
1583
Joerg Roedel431b2a22008-07-11 17:14:22 +02001584 /*
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 */
Joerg Roedel6631ee92008-06-26 21:28:05 +02001589 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;
Joerg Roedele2dc14a2008-12-10 18:48:59 +01001593 iommu->default_dom->domain.flags |= PD_DEFAULT_MASK;
Joerg Roedel6631ee92008-06-26 21:28:05 +02001594 ret = iommu_init_unity_mappings(iommu);
1595 if (ret)
1596 goto free_domains;
1597 }
1598
Joerg Roedel431b2a22008-07-11 17:14:22 +02001599 /*
1600 * If device isolation is enabled, pre-allocate the protection
1601 * domains for each device.
1602 */
Joerg Roedel6631ee92008-06-26 21:28:05 +02001603 if (amd_iommu_isolate)
1604 prealloc_protection_domains();
1605
1606 iommu_detected = 1;
1607 force_iommu = 1;
1608 bad_dma_address = 0;
Ingo Molnar92af4e22008-06-27 10:48:16 +02001609#ifdef CONFIG_GART_IOMMU
Joerg Roedel6631ee92008-06-26 21:28:05 +02001610 gart_iommu_aperture_disabled = 1;
1611 gart_iommu_aperture = 0;
Ingo Molnar92af4e22008-06-27 10:48:16 +02001612#endif
Joerg Roedel6631ee92008-06-26 21:28:05 +02001613
Joerg Roedel431b2a22008-07-11 17:14:22 +02001614 /* Make the driver finally visible to the drivers */
Joerg Roedel6631ee92008-06-26 21:28:05 +02001615 dma_ops = &amd_iommu_dma_ops;
1616
Joerg Roedel26961ef2008-12-03 17:00:17 +01001617#ifdef CONFIG_IOMMU_API
1618 register_iommu(&amd_iommu_ops);
1619#endif
1620
Joerg Roedele275a2a2008-12-10 18:27:25 +01001621 bus_register_notifier(&pci_bus_type, &device_nb);
1622
Joerg Roedel6631ee92008-06-26 21:28:05 +02001623 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}
Joerg Roedel6d98cd82008-12-08 12:05:55 +01001634
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
Joerg Roedelc156e342008-12-02 18:13:27 +01001661static 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
Joerg Roedel98383fc2008-12-02 18:34:12 +01001688static 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
Joerg Roedel684f2882008-12-08 12:07:44 +01001709static 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
Joerg Roedel01106062008-12-02 19:34:11 +01001735static 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
Joerg Roedelc6229ca2008-12-02 19:48:43 +01001770static 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
Joerg Roedeleb74ff62008-12-02 19:59:10 +01001799static 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
Joerg Roedel645c4c82008-12-02 20:05:50 +01001816static 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
Joerg Roedel26961ef2008-12-03 17:00:17 +01001847static 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
Joerg Roedel6d98cd82008-12-08 12:05:55 +01001857#endif