blob: f98f70626bc64a6623ef6aee48a07bd1259195bd [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>
Joerg Roedel7f265082008-12-12 13:50:21 +010023#include <linux/debugfs.h>
Joerg Roedelb6c02712008-06-26 21:27:53 +020024#include <linux/scatterlist.h>
25#include <linux/iommu-helper.h>
Joerg Roedelc156e342008-12-02 18:13:27 +010026#ifdef CONFIG_IOMMU_API
27#include <linux/iommu.h>
28#endif
Joerg Roedelb6c02712008-06-26 21:27:53 +020029#include <asm/proto.h>
FUJITA Tomonori46a7fa22008-07-11 10:23:42 +090030#include <asm/iommu.h>
Joerg Roedel1d9b16d2008-11-27 18:39:15 +010031#include <asm/gart.h>
Joerg Roedelb6c02712008-06-26 21:27:53 +020032#include <asm/amd_iommu_types.h>
Joerg Roedelc6da9922008-06-26 21:28:06 +020033#include <asm/amd_iommu.h>
Joerg Roedelb6c02712008-06-26 21:27:53 +020034
35#define CMD_SET_TYPE(cmd, t) ((cmd)->data[1] |= ((t) << 28))
36
Joerg Roedel136f78a2008-07-11 17:14:27 +020037#define EXIT_LOOP_COUNT 10000000
38
Joerg Roedelb6c02712008-06-26 21:27:53 +020039static DEFINE_RWLOCK(amd_iommu_devtable_lock);
40
Joerg Roedelbd60b732008-09-11 10:24:48 +020041/* A list of preallocated protection domains */
42static LIST_HEAD(iommu_pd_list);
43static DEFINE_SPINLOCK(iommu_pd_list_lock);
44
Joerg Roedel26961ef2008-12-03 17:00:17 +010045#ifdef CONFIG_IOMMU_API
46static struct iommu_ops amd_iommu_ops;
47#endif
48
Joerg Roedel431b2a22008-07-11 17:14:22 +020049/*
50 * general struct to manage commands send to an IOMMU
51 */
Joerg Roedeld6449532008-07-11 17:14:28 +020052struct iommu_cmd {
Joerg Roedelb6c02712008-06-26 21:27:53 +020053 u32 data[4];
54};
55
Joerg Roedelbd0e5212008-06-26 21:27:56 +020056static int dma_ops_unity_map(struct dma_ops_domain *dma_dom,
57 struct unity_map_entry *e);
Joerg Roedele275a2a2008-12-10 18:27:25 +010058static struct dma_ops_domain *find_protection_domain(u16 devid);
59
Joerg Roedelbd0e5212008-06-26 21:27:56 +020060
Joerg Roedel7f265082008-12-12 13:50:21 +010061#ifdef CONFIG_AMD_IOMMU_STATS
62
63/*
64 * Initialization code for statistics collection
65 */
66
67static struct dentry *stats_dir;
68static struct dentry *de_isolate;
69static struct dentry *de_fflush;
70
71static void amd_iommu_stats_add(struct __iommu_counter *cnt)
72{
73 if (stats_dir == NULL)
74 return;
75
76 cnt->dent = debugfs_create_u64(cnt->name, 0444, stats_dir,
77 &cnt->value);
78}
79
80static void amd_iommu_stats_init(void)
81{
82 stats_dir = debugfs_create_dir("amd-iommu", NULL);
83 if (stats_dir == NULL)
84 return;
85
86 de_isolate = debugfs_create_bool("isolation", 0444, stats_dir,
87 (u32 *)&amd_iommu_isolate);
88
89 de_fflush = debugfs_create_bool("fullflush", 0444, stats_dir,
90 (u32 *)&amd_iommu_unmap_flush);
91}
92
93#endif
94
Joerg Roedel431b2a22008-07-11 17:14:22 +020095/* returns !0 if the IOMMU is caching non-present entries in its TLB */
Joerg Roedel4da70b92008-06-26 21:28:01 +020096static int iommu_has_npcache(struct amd_iommu *iommu)
97{
Joerg Roedelae9b9402008-10-30 17:43:57 +010098 return iommu->cap & (1UL << IOMMU_CAP_NPCACHE);
Joerg Roedel4da70b92008-06-26 21:28:01 +020099}
100
Joerg Roedel431b2a22008-07-11 17:14:22 +0200101/****************************************************************************
102 *
Joerg Roedela80dc3e2008-09-11 16:51:41 +0200103 * Interrupt handling functions
104 *
105 ****************************************************************************/
106
Joerg Roedel90008ee2008-09-09 16:41:05 +0200107static void iommu_print_event(void *__evt)
108{
109 u32 *event = __evt;
110 int type = (event[1] >> EVENT_TYPE_SHIFT) & EVENT_TYPE_MASK;
111 int devid = (event[0] >> EVENT_DEVID_SHIFT) & EVENT_DEVID_MASK;
112 int domid = (event[1] >> EVENT_DOMID_SHIFT) & EVENT_DOMID_MASK;
113 int flags = (event[1] >> EVENT_FLAGS_SHIFT) & EVENT_FLAGS_MASK;
114 u64 address = (u64)(((u64)event[3]) << 32) | event[2];
115
116 printk(KERN_ERR "AMD IOMMU: Event logged [");
117
118 switch (type) {
119 case EVENT_TYPE_ILL_DEV:
120 printk("ILLEGAL_DEV_TABLE_ENTRY device=%02x:%02x.%x "
121 "address=0x%016llx flags=0x%04x]\n",
122 PCI_BUS(devid), PCI_SLOT(devid), PCI_FUNC(devid),
123 address, flags);
124 break;
125 case EVENT_TYPE_IO_FAULT:
126 printk("IO_PAGE_FAULT device=%02x:%02x.%x "
127 "domain=0x%04x address=0x%016llx flags=0x%04x]\n",
128 PCI_BUS(devid), PCI_SLOT(devid), PCI_FUNC(devid),
129 domid, address, flags);
130 break;
131 case EVENT_TYPE_DEV_TAB_ERR:
132 printk("DEV_TAB_HARDWARE_ERROR device=%02x:%02x.%x "
133 "address=0x%016llx flags=0x%04x]\n",
134 PCI_BUS(devid), PCI_SLOT(devid), PCI_FUNC(devid),
135 address, flags);
136 break;
137 case EVENT_TYPE_PAGE_TAB_ERR:
138 printk("PAGE_TAB_HARDWARE_ERROR device=%02x:%02x.%x "
139 "domain=0x%04x address=0x%016llx flags=0x%04x]\n",
140 PCI_BUS(devid), PCI_SLOT(devid), PCI_FUNC(devid),
141 domid, address, flags);
142 break;
143 case EVENT_TYPE_ILL_CMD:
144 printk("ILLEGAL_COMMAND_ERROR address=0x%016llx]\n", address);
145 break;
146 case EVENT_TYPE_CMD_HARD_ERR:
147 printk("COMMAND_HARDWARE_ERROR address=0x%016llx "
148 "flags=0x%04x]\n", address, flags);
149 break;
150 case EVENT_TYPE_IOTLB_INV_TO:
151 printk("IOTLB_INV_TIMEOUT device=%02x:%02x.%x "
152 "address=0x%016llx]\n",
153 PCI_BUS(devid), PCI_SLOT(devid), PCI_FUNC(devid),
154 address);
155 break;
156 case EVENT_TYPE_INV_DEV_REQ:
157 printk("INVALID_DEVICE_REQUEST device=%02x:%02x.%x "
158 "address=0x%016llx flags=0x%04x]\n",
159 PCI_BUS(devid), PCI_SLOT(devid), PCI_FUNC(devid),
160 address, flags);
161 break;
162 default:
163 printk(KERN_ERR "UNKNOWN type=0x%02x]\n", type);
164 }
165}
166
167static void iommu_poll_events(struct amd_iommu *iommu)
168{
169 u32 head, tail;
170 unsigned long flags;
171
172 spin_lock_irqsave(&iommu->lock, flags);
173
174 head = readl(iommu->mmio_base + MMIO_EVT_HEAD_OFFSET);
175 tail = readl(iommu->mmio_base + MMIO_EVT_TAIL_OFFSET);
176
177 while (head != tail) {
178 iommu_print_event(iommu->evt_buf + head);
179 head = (head + EVENT_ENTRY_SIZE) % iommu->evt_buf_size;
180 }
181
182 writel(head, iommu->mmio_base + MMIO_EVT_HEAD_OFFSET);
183
184 spin_unlock_irqrestore(&iommu->lock, flags);
185}
186
Joerg Roedela80dc3e2008-09-11 16:51:41 +0200187irqreturn_t amd_iommu_int_handler(int irq, void *data)
188{
Joerg Roedel90008ee2008-09-09 16:41:05 +0200189 struct amd_iommu *iommu;
190
191 list_for_each_entry(iommu, &amd_iommu_list, list)
192 iommu_poll_events(iommu);
193
194 return IRQ_HANDLED;
Joerg Roedela80dc3e2008-09-11 16:51:41 +0200195}
196
197/****************************************************************************
198 *
Joerg Roedel431b2a22008-07-11 17:14:22 +0200199 * IOMMU command queuing functions
200 *
201 ****************************************************************************/
202
203/*
204 * Writes the command to the IOMMUs command buffer and informs the
205 * hardware about the new command. Must be called with iommu->lock held.
206 */
Joerg Roedeld6449532008-07-11 17:14:28 +0200207static int __iommu_queue_command(struct amd_iommu *iommu, struct iommu_cmd *cmd)
Joerg Roedela19ae1e2008-06-26 21:27:55 +0200208{
209 u32 tail, head;
210 u8 *target;
211
212 tail = readl(iommu->mmio_base + MMIO_CMD_TAIL_OFFSET);
Jiri Kosina8a7c5ef2008-08-19 02:13:55 +0200213 target = iommu->cmd_buf + tail;
Joerg Roedela19ae1e2008-06-26 21:27:55 +0200214 memcpy_toio(target, cmd, sizeof(*cmd));
215 tail = (tail + sizeof(*cmd)) % iommu->cmd_buf_size;
216 head = readl(iommu->mmio_base + MMIO_CMD_HEAD_OFFSET);
217 if (tail == head)
218 return -ENOMEM;
219 writel(tail, iommu->mmio_base + MMIO_CMD_TAIL_OFFSET);
220
221 return 0;
222}
223
Joerg Roedel431b2a22008-07-11 17:14:22 +0200224/*
225 * General queuing function for commands. Takes iommu->lock and calls
226 * __iommu_queue_command().
227 */
Joerg Roedeld6449532008-07-11 17:14:28 +0200228static int iommu_queue_command(struct amd_iommu *iommu, struct iommu_cmd *cmd)
Joerg Roedela19ae1e2008-06-26 21:27:55 +0200229{
230 unsigned long flags;
231 int ret;
232
233 spin_lock_irqsave(&iommu->lock, flags);
234 ret = __iommu_queue_command(iommu, cmd);
Joerg Roedel09ee17e2008-12-03 12:19:27 +0100235 if (!ret)
Joerg Roedel0cfd7aa2008-12-10 19:58:00 +0100236 iommu->need_sync = true;
Joerg Roedela19ae1e2008-06-26 21:27:55 +0200237 spin_unlock_irqrestore(&iommu->lock, flags);
238
239 return ret;
240}
241
Joerg Roedel431b2a22008-07-11 17:14:22 +0200242/*
Joerg Roedel8d201962008-12-02 20:34:41 +0100243 * This function waits until an IOMMU has completed a completion
244 * wait command
Joerg Roedel431b2a22008-07-11 17:14:22 +0200245 */
Joerg Roedel8d201962008-12-02 20:34:41 +0100246static void __iommu_wait_for_completion(struct amd_iommu *iommu)
Joerg Roedela19ae1e2008-06-26 21:27:55 +0200247{
Joerg Roedel8d201962008-12-02 20:34:41 +0100248 int ready = 0;
Joerg Roedel519c31b2008-08-14 19:55:15 +0200249 unsigned status = 0;
Joerg Roedel8d201962008-12-02 20:34:41 +0100250 unsigned long i = 0;
Joerg Roedela19ae1e2008-06-26 21:27:55 +0200251
Joerg Roedel136f78a2008-07-11 17:14:27 +0200252 while (!ready && (i < EXIT_LOOP_COUNT)) {
253 ++i;
Joerg Roedel519c31b2008-08-14 19:55:15 +0200254 /* wait for the bit to become one */
255 status = readl(iommu->mmio_base + MMIO_STATUS_OFFSET);
256 ready = status & MMIO_STATUS_COM_WAIT_INT_MASK;
Joerg Roedel136f78a2008-07-11 17:14:27 +0200257 }
258
Joerg Roedel519c31b2008-08-14 19:55:15 +0200259 /* set bit back to zero */
260 status &= ~MMIO_STATUS_COM_WAIT_INT_MASK;
261 writel(status, iommu->mmio_base + MMIO_STATUS_OFFSET);
262
Joerg Roedel84df8172008-12-17 16:36:44 +0100263 if (unlikely(i == EXIT_LOOP_COUNT))
264 panic("AMD IOMMU: Completion wait loop failed\n");
Joerg Roedel8d201962008-12-02 20:34:41 +0100265}
266
267/*
268 * This function queues a completion wait command into the command
269 * buffer of an IOMMU
270 */
271static int __iommu_completion_wait(struct amd_iommu *iommu)
272{
273 struct iommu_cmd cmd;
274
275 memset(&cmd, 0, sizeof(cmd));
276 cmd.data[0] = CMD_COMPL_WAIT_INT_MASK;
277 CMD_SET_TYPE(&cmd, CMD_COMPL_WAIT);
278
279 return __iommu_queue_command(iommu, &cmd);
280}
281
282/*
283 * This function is called whenever we need to ensure that the IOMMU has
284 * completed execution of all commands we sent. It sends a
285 * COMPLETION_WAIT command and waits for it to finish. The IOMMU informs
286 * us about that by writing a value to a physical address we pass with
287 * the command.
288 */
289static int iommu_completion_wait(struct amd_iommu *iommu)
290{
291 int ret = 0;
292 unsigned long flags;
293
294 spin_lock_irqsave(&iommu->lock, flags);
295
296 if (!iommu->need_sync)
297 goto out;
298
299 ret = __iommu_completion_wait(iommu);
300
Joerg Roedel0cfd7aa2008-12-10 19:58:00 +0100301 iommu->need_sync = false;
Joerg Roedel8d201962008-12-02 20:34:41 +0100302
303 if (ret)
304 goto out;
305
306 __iommu_wait_for_completion(iommu);
Joerg Roedel84df8172008-12-17 16:36:44 +0100307
Joerg Roedel7e4f88d2008-09-17 14:19:15 +0200308out:
309 spin_unlock_irqrestore(&iommu->lock, flags);
Joerg Roedela19ae1e2008-06-26 21:27:55 +0200310
311 return 0;
312}
313
Joerg Roedel431b2a22008-07-11 17:14:22 +0200314/*
315 * Command send function for invalidating a device table entry
316 */
Joerg Roedela19ae1e2008-06-26 21:27:55 +0200317static int iommu_queue_inv_dev_entry(struct amd_iommu *iommu, u16 devid)
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
322 BUG_ON(iommu == NULL);
323
324 memset(&cmd, 0, sizeof(cmd));
325 CMD_SET_TYPE(&cmd, CMD_INV_DEV_ENTRY);
326 cmd.data[0] = devid;
327
Joerg Roedelee2fa742008-09-17 13:47:25 +0200328 ret = iommu_queue_command(iommu, &cmd);
329
Joerg Roedelee2fa742008-09-17 13:47:25 +0200330 return ret;
Joerg Roedela19ae1e2008-06-26 21:27:55 +0200331}
332
Joerg Roedel237b6f32008-12-02 20:54:37 +0100333static void __iommu_build_inv_iommu_pages(struct iommu_cmd *cmd, u64 address,
334 u16 domid, int pde, int s)
335{
336 memset(cmd, 0, sizeof(*cmd));
337 address &= PAGE_MASK;
338 CMD_SET_TYPE(cmd, CMD_INV_IOMMU_PAGES);
339 cmd->data[1] |= domid;
340 cmd->data[2] = lower_32_bits(address);
341 cmd->data[3] = upper_32_bits(address);
342 if (s) /* size bit - we flush more than one 4kb page */
343 cmd->data[2] |= CMD_INV_IOMMU_PAGES_SIZE_MASK;
344 if (pde) /* PDE bit - we wan't flush everything not only the PTEs */
345 cmd->data[2] |= CMD_INV_IOMMU_PAGES_PDE_MASK;
346}
347
Joerg Roedel431b2a22008-07-11 17:14:22 +0200348/*
349 * Generic command send function for invalidaing TLB entries
350 */
Joerg Roedela19ae1e2008-06-26 21:27:55 +0200351static int iommu_queue_inv_iommu_pages(struct amd_iommu *iommu,
352 u64 address, u16 domid, int pde, int s)
353{
Joerg Roedeld6449532008-07-11 17:14:28 +0200354 struct iommu_cmd cmd;
Joerg Roedelee2fa742008-09-17 13:47:25 +0200355 int ret;
Joerg Roedela19ae1e2008-06-26 21:27:55 +0200356
Joerg Roedel237b6f32008-12-02 20:54:37 +0100357 __iommu_build_inv_iommu_pages(&cmd, address, domid, pde, s);
Joerg Roedela19ae1e2008-06-26 21:27:55 +0200358
Joerg Roedelee2fa742008-09-17 13:47:25 +0200359 ret = iommu_queue_command(iommu, &cmd);
360
Joerg Roedelee2fa742008-09-17 13:47:25 +0200361 return ret;
Joerg Roedela19ae1e2008-06-26 21:27:55 +0200362}
363
Joerg Roedel431b2a22008-07-11 17:14:22 +0200364/*
365 * TLB invalidation function which is called from the mapping functions.
366 * It invalidates a single PTE if the range to flush is within a single
367 * page. Otherwise it flushes the whole TLB of the IOMMU.
368 */
Joerg Roedela19ae1e2008-06-26 21:27:55 +0200369static int iommu_flush_pages(struct amd_iommu *iommu, u16 domid,
370 u64 address, size_t size)
371{
Joerg Roedel999ba412008-07-03 19:35:08 +0200372 int s = 0;
Joerg Roedele3c449f2008-10-15 22:02:11 -0700373 unsigned pages = iommu_num_pages(address, size, PAGE_SIZE);
Joerg Roedela19ae1e2008-06-26 21:27:55 +0200374
375 address &= PAGE_MASK;
376
Joerg Roedel999ba412008-07-03 19:35:08 +0200377 if (pages > 1) {
378 /*
379 * If we have to flush more than one page, flush all
380 * TLB entries for this domain
381 */
382 address = CMD_INV_IOMMU_ALL_PAGES_ADDRESS;
383 s = 1;
Joerg Roedela19ae1e2008-06-26 21:27:55 +0200384 }
385
Joerg Roedel999ba412008-07-03 19:35:08 +0200386 iommu_queue_inv_iommu_pages(iommu, address, domid, 0, s);
387
Joerg Roedela19ae1e2008-06-26 21:27:55 +0200388 return 0;
389}
Joerg Roedelb6c02712008-06-26 21:27:53 +0200390
Joerg Roedel1c655772008-09-04 18:40:05 +0200391/* Flush the whole IO/TLB for a given protection domain */
392static void iommu_flush_tlb(struct amd_iommu *iommu, u16 domid)
393{
394 u64 address = CMD_INV_IOMMU_ALL_PAGES_ADDRESS;
395
396 iommu_queue_inv_iommu_pages(iommu, address, domid, 0, 1);
397}
398
Joerg Roedel43f49602008-12-02 21:01:12 +0100399#ifdef CONFIG_IOMMU_API
400/*
401 * This function is used to flush the IO/TLB for a given protection domain
402 * on every IOMMU in the system
403 */
404static void iommu_flush_domain(u16 domid)
405{
406 unsigned long flags;
407 struct amd_iommu *iommu;
408 struct iommu_cmd cmd;
409
410 __iommu_build_inv_iommu_pages(&cmd, CMD_INV_IOMMU_ALL_PAGES_ADDRESS,
411 domid, 1, 1);
412
413 list_for_each_entry(iommu, &amd_iommu_list, list) {
414 spin_lock_irqsave(&iommu->lock, flags);
415 __iommu_queue_command(iommu, &cmd);
416 __iommu_completion_wait(iommu);
417 __iommu_wait_for_completion(iommu);
418 spin_unlock_irqrestore(&iommu->lock, flags);
419 }
420}
421#endif
422
Joerg Roedel431b2a22008-07-11 17:14:22 +0200423/****************************************************************************
424 *
425 * The functions below are used the create the page table mappings for
426 * unity mapped regions.
427 *
428 ****************************************************************************/
429
430/*
431 * Generic mapping functions. It maps a physical address into a DMA
432 * address space. It allocates the page table pages if necessary.
433 * In the future it can be extended to a generic mapping function
434 * supporting all features of AMD IOMMU page tables like level skipping
435 * and full 64 bit address spaces.
436 */
Joerg Roedel38e817f2008-12-02 17:27:52 +0100437static int iommu_map_page(struct protection_domain *dom,
438 unsigned long bus_addr,
439 unsigned long phys_addr,
440 int prot)
Joerg Roedelbd0e5212008-06-26 21:27:56 +0200441{
442 u64 __pte, *pte, *page;
443
444 bus_addr = PAGE_ALIGN(bus_addr);
Joerg Roedelbb9d4ff2008-12-04 15:59:48 +0100445 phys_addr = PAGE_ALIGN(phys_addr);
Joerg Roedelbd0e5212008-06-26 21:27:56 +0200446
447 /* only support 512GB address spaces for now */
448 if (bus_addr > IOMMU_MAP_SIZE_L3 || !(prot & IOMMU_PROT_MASK))
449 return -EINVAL;
450
451 pte = &dom->pt_root[IOMMU_PTE_L2_INDEX(bus_addr)];
452
453 if (!IOMMU_PTE_PRESENT(*pte)) {
454 page = (u64 *)get_zeroed_page(GFP_KERNEL);
455 if (!page)
456 return -ENOMEM;
457 *pte = IOMMU_L2_PDE(virt_to_phys(page));
458 }
459
460 pte = IOMMU_PTE_PAGE(*pte);
461 pte = &pte[IOMMU_PTE_L1_INDEX(bus_addr)];
462
463 if (!IOMMU_PTE_PRESENT(*pte)) {
464 page = (u64 *)get_zeroed_page(GFP_KERNEL);
465 if (!page)
466 return -ENOMEM;
467 *pte = IOMMU_L1_PDE(virt_to_phys(page));
468 }
469
470 pte = IOMMU_PTE_PAGE(*pte);
471 pte = &pte[IOMMU_PTE_L0_INDEX(bus_addr)];
472
473 if (IOMMU_PTE_PRESENT(*pte))
474 return -EBUSY;
475
476 __pte = phys_addr | IOMMU_PTE_P;
477 if (prot & IOMMU_PROT_IR)
478 __pte |= IOMMU_PTE_IR;
479 if (prot & IOMMU_PROT_IW)
480 __pte |= IOMMU_PTE_IW;
481
482 *pte = __pte;
483
484 return 0;
485}
486
Joerg Roedeleb74ff62008-12-02 19:59:10 +0100487#ifdef CONFIG_IOMMU_API
488static void iommu_unmap_page(struct protection_domain *dom,
489 unsigned long bus_addr)
490{
491 u64 *pte;
492
493 pte = &dom->pt_root[IOMMU_PTE_L2_INDEX(bus_addr)];
494
495 if (!IOMMU_PTE_PRESENT(*pte))
496 return;
497
498 pte = IOMMU_PTE_PAGE(*pte);
499 pte = &pte[IOMMU_PTE_L1_INDEX(bus_addr)];
500
501 if (!IOMMU_PTE_PRESENT(*pte))
502 return;
503
504 pte = IOMMU_PTE_PAGE(*pte);
505 pte = &pte[IOMMU_PTE_L1_INDEX(bus_addr)];
506
507 *pte = 0;
508}
509#endif
510
Joerg Roedel431b2a22008-07-11 17:14:22 +0200511/*
512 * This function checks if a specific unity mapping entry is needed for
513 * this specific IOMMU.
514 */
Joerg Roedelbd0e5212008-06-26 21:27:56 +0200515static int iommu_for_unity_map(struct amd_iommu *iommu,
516 struct unity_map_entry *entry)
517{
518 u16 bdf, i;
519
520 for (i = entry->devid_start; i <= entry->devid_end; ++i) {
521 bdf = amd_iommu_alias_table[i];
522 if (amd_iommu_rlookup_table[bdf] == iommu)
523 return 1;
524 }
525
526 return 0;
527}
528
Joerg Roedel431b2a22008-07-11 17:14:22 +0200529/*
530 * Init the unity mappings for a specific IOMMU in the system
531 *
532 * Basically iterates over all unity mapping entries and applies them to
533 * the default domain DMA of that IOMMU if necessary.
534 */
Joerg Roedelbd0e5212008-06-26 21:27:56 +0200535static int iommu_init_unity_mappings(struct amd_iommu *iommu)
536{
537 struct unity_map_entry *entry;
538 int ret;
539
540 list_for_each_entry(entry, &amd_iommu_unity_map, list) {
541 if (!iommu_for_unity_map(iommu, entry))
542 continue;
543 ret = dma_ops_unity_map(iommu->default_dom, entry);
544 if (ret)
545 return ret;
546 }
547
548 return 0;
549}
550
Joerg Roedel431b2a22008-07-11 17:14:22 +0200551/*
552 * This function actually applies the mapping to the page table of the
553 * dma_ops domain.
554 */
Joerg Roedelbd0e5212008-06-26 21:27:56 +0200555static int dma_ops_unity_map(struct dma_ops_domain *dma_dom,
556 struct unity_map_entry *e)
557{
558 u64 addr;
559 int ret;
560
561 for (addr = e->address_start; addr < e->address_end;
562 addr += PAGE_SIZE) {
Joerg Roedel38e817f2008-12-02 17:27:52 +0100563 ret = iommu_map_page(&dma_dom->domain, addr, addr, e->prot);
Joerg Roedelbd0e5212008-06-26 21:27:56 +0200564 if (ret)
565 return ret;
566 /*
567 * if unity mapping is in aperture range mark the page
568 * as allocated in the aperture
569 */
570 if (addr < dma_dom->aperture_size)
571 __set_bit(addr >> PAGE_SHIFT, dma_dom->bitmap);
572 }
573
574 return 0;
575}
576
Joerg Roedel431b2a22008-07-11 17:14:22 +0200577/*
578 * Inits the unity mappings required for a specific device
579 */
Joerg Roedelbd0e5212008-06-26 21:27:56 +0200580static int init_unity_mappings_for_device(struct dma_ops_domain *dma_dom,
581 u16 devid)
582{
583 struct unity_map_entry *e;
584 int ret;
585
586 list_for_each_entry(e, &amd_iommu_unity_map, list) {
587 if (!(devid >= e->devid_start && devid <= e->devid_end))
588 continue;
589 ret = dma_ops_unity_map(dma_dom, e);
590 if (ret)
591 return ret;
592 }
593
594 return 0;
595}
596
Joerg Roedel431b2a22008-07-11 17:14:22 +0200597/****************************************************************************
598 *
599 * The next functions belong to the address allocator for the dma_ops
600 * interface functions. They work like the allocators in the other IOMMU
601 * drivers. Its basically a bitmap which marks the allocated pages in
602 * the aperture. Maybe it could be enhanced in the future to a more
603 * efficient allocator.
604 *
605 ****************************************************************************/
Joerg Roedeld3086442008-06-26 21:27:57 +0200606
Joerg Roedel431b2a22008-07-11 17:14:22 +0200607/*
608 * The address allocator core function.
609 *
610 * called with domain->lock held
611 */
Joerg Roedeld3086442008-06-26 21:27:57 +0200612static unsigned long dma_ops_alloc_addresses(struct device *dev,
613 struct dma_ops_domain *dom,
Joerg Roedel6d4f3432008-09-04 19:18:02 +0200614 unsigned int pages,
Joerg Roedel832a90c2008-09-18 15:54:23 +0200615 unsigned long align_mask,
616 u64 dma_mask)
Joerg Roedeld3086442008-06-26 21:27:57 +0200617{
FUJITA Tomonori40becd82008-09-29 00:06:36 +0900618 unsigned long limit;
Joerg Roedeld3086442008-06-26 21:27:57 +0200619 unsigned long address;
Joerg Roedeld3086442008-06-26 21:27:57 +0200620 unsigned long boundary_size;
621
622 boundary_size = ALIGN(dma_get_seg_boundary(dev) + 1,
623 PAGE_SIZE) >> PAGE_SHIFT;
FUJITA Tomonori40becd82008-09-29 00:06:36 +0900624 limit = iommu_device_max_index(dom->aperture_size >> PAGE_SHIFT, 0,
625 dma_mask >> PAGE_SHIFT);
Joerg Roedeld3086442008-06-26 21:27:57 +0200626
Joerg Roedel1c655772008-09-04 18:40:05 +0200627 if (dom->next_bit >= limit) {
Joerg Roedeld3086442008-06-26 21:27:57 +0200628 dom->next_bit = 0;
Joerg Roedel1c655772008-09-04 18:40:05 +0200629 dom->need_flush = true;
630 }
Joerg Roedeld3086442008-06-26 21:27:57 +0200631
632 address = iommu_area_alloc(dom->bitmap, limit, dom->next_bit, pages,
Joerg Roedel6d4f3432008-09-04 19:18:02 +0200633 0 , boundary_size, align_mask);
Joerg Roedel1c655772008-09-04 18:40:05 +0200634 if (address == -1) {
Joerg Roedeld3086442008-06-26 21:27:57 +0200635 address = iommu_area_alloc(dom->bitmap, limit, 0, pages,
Joerg Roedel6d4f3432008-09-04 19:18:02 +0200636 0, boundary_size, align_mask);
Joerg Roedel1c655772008-09-04 18:40:05 +0200637 dom->need_flush = true;
638 }
Joerg Roedeld3086442008-06-26 21:27:57 +0200639
640 if (likely(address != -1)) {
Joerg Roedeld3086442008-06-26 21:27:57 +0200641 dom->next_bit = address + pages;
642 address <<= PAGE_SHIFT;
643 } else
644 address = bad_dma_address;
645
646 WARN_ON((address + (PAGE_SIZE*pages)) > dom->aperture_size);
647
648 return address;
649}
650
Joerg Roedel431b2a22008-07-11 17:14:22 +0200651/*
652 * The address free function.
653 *
654 * called with domain->lock held
655 */
Joerg Roedeld3086442008-06-26 21:27:57 +0200656static void dma_ops_free_addresses(struct dma_ops_domain *dom,
657 unsigned long address,
658 unsigned int pages)
659{
660 address >>= PAGE_SHIFT;
661 iommu_area_free(dom->bitmap, address, pages);
Joerg Roedel80be3082008-11-06 14:59:05 +0100662
Joerg Roedel8501c452008-11-17 19:11:46 +0100663 if (address >= dom->next_bit)
Joerg Roedel80be3082008-11-06 14:59:05 +0100664 dom->need_flush = true;
Joerg Roedeld3086442008-06-26 21:27:57 +0200665}
666
Joerg Roedel431b2a22008-07-11 17:14:22 +0200667/****************************************************************************
668 *
669 * The next functions belong to the domain allocation. A domain is
670 * allocated for every IOMMU as the default domain. If device isolation
671 * is enabled, every device get its own domain. The most important thing
672 * about domains is the page table mapping the DMA address space they
673 * contain.
674 *
675 ****************************************************************************/
676
Joerg Roedelec487d12008-06-26 21:27:58 +0200677static u16 domain_id_alloc(void)
678{
679 unsigned long flags;
680 int id;
681
682 write_lock_irqsave(&amd_iommu_devtable_lock, flags);
683 id = find_first_zero_bit(amd_iommu_pd_alloc_bitmap, MAX_DOMAIN_ID);
684 BUG_ON(id == 0);
685 if (id > 0 && id < MAX_DOMAIN_ID)
686 __set_bit(id, amd_iommu_pd_alloc_bitmap);
687 else
688 id = 0;
689 write_unlock_irqrestore(&amd_iommu_devtable_lock, flags);
690
691 return id;
692}
693
Joerg Roedela2acfb72008-12-02 18:28:53 +0100694#ifdef CONFIG_IOMMU_API
695static void domain_id_free(int id)
696{
697 unsigned long flags;
698
699 write_lock_irqsave(&amd_iommu_devtable_lock, flags);
700 if (id > 0 && id < MAX_DOMAIN_ID)
701 __clear_bit(id, amd_iommu_pd_alloc_bitmap);
702 write_unlock_irqrestore(&amd_iommu_devtable_lock, flags);
703}
704#endif
705
Joerg Roedel431b2a22008-07-11 17:14:22 +0200706/*
707 * Used to reserve address ranges in the aperture (e.g. for exclusion
708 * ranges.
709 */
Joerg Roedelec487d12008-06-26 21:27:58 +0200710static void dma_ops_reserve_addresses(struct dma_ops_domain *dom,
711 unsigned long start_page,
712 unsigned int pages)
713{
714 unsigned int last_page = dom->aperture_size >> PAGE_SHIFT;
715
716 if (start_page + pages > last_page)
717 pages = last_page - start_page;
718
FUJITA Tomonorid26dbc52008-09-22 22:35:07 +0900719 iommu_area_reserve(dom->bitmap, start_page, pages);
Joerg Roedelec487d12008-06-26 21:27:58 +0200720}
721
Joerg Roedel86db2e52008-12-02 18:20:21 +0100722static void free_pagetable(struct protection_domain *domain)
Joerg Roedelec487d12008-06-26 21:27:58 +0200723{
724 int i, j;
725 u64 *p1, *p2, *p3;
726
Joerg Roedel86db2e52008-12-02 18:20:21 +0100727 p1 = domain->pt_root;
Joerg Roedelec487d12008-06-26 21:27:58 +0200728
729 if (!p1)
730 return;
731
732 for (i = 0; i < 512; ++i) {
733 if (!IOMMU_PTE_PRESENT(p1[i]))
734 continue;
735
736 p2 = IOMMU_PTE_PAGE(p1[i]);
Joerg Roedel3cc3d842008-12-04 16:44:31 +0100737 for (j = 0; j < 512; ++j) {
Joerg Roedelec487d12008-06-26 21:27:58 +0200738 if (!IOMMU_PTE_PRESENT(p2[j]))
739 continue;
740 p3 = IOMMU_PTE_PAGE(p2[j]);
741 free_page((unsigned long)p3);
742 }
743
744 free_page((unsigned long)p2);
745 }
746
747 free_page((unsigned long)p1);
Joerg Roedel86db2e52008-12-02 18:20:21 +0100748
749 domain->pt_root = NULL;
Joerg Roedelec487d12008-06-26 21:27:58 +0200750}
751
Joerg Roedel431b2a22008-07-11 17:14:22 +0200752/*
753 * Free a domain, only used if something went wrong in the
754 * allocation path and we need to free an already allocated page table
755 */
Joerg Roedelec487d12008-06-26 21:27:58 +0200756static void dma_ops_domain_free(struct dma_ops_domain *dom)
757{
758 if (!dom)
759 return;
760
Joerg Roedel86db2e52008-12-02 18:20:21 +0100761 free_pagetable(&dom->domain);
Joerg Roedelec487d12008-06-26 21:27:58 +0200762
763 kfree(dom->pte_pages);
764
765 kfree(dom->bitmap);
766
767 kfree(dom);
768}
769
Joerg Roedel431b2a22008-07-11 17:14:22 +0200770/*
771 * Allocates a new protection domain usable for the dma_ops functions.
772 * It also intializes the page table and the address allocator data
773 * structures required for the dma_ops interface
774 */
Joerg Roedelec487d12008-06-26 21:27:58 +0200775static struct dma_ops_domain *dma_ops_domain_alloc(struct amd_iommu *iommu,
776 unsigned order)
777{
778 struct dma_ops_domain *dma_dom;
779 unsigned i, num_pte_pages;
780 u64 *l2_pde;
781 u64 address;
782
783 /*
784 * Currently the DMA aperture must be between 32 MB and 1GB in size
785 */
786 if ((order < 25) || (order > 30))
787 return NULL;
788
789 dma_dom = kzalloc(sizeof(struct dma_ops_domain), GFP_KERNEL);
790 if (!dma_dom)
791 return NULL;
792
793 spin_lock_init(&dma_dom->domain.lock);
794
795 dma_dom->domain.id = domain_id_alloc();
796 if (dma_dom->domain.id == 0)
797 goto free_dma_dom;
798 dma_dom->domain.mode = PAGE_MODE_3_LEVEL;
799 dma_dom->domain.pt_root = (void *)get_zeroed_page(GFP_KERNEL);
Joerg Roedel9fdb19d2008-12-02 17:46:25 +0100800 dma_dom->domain.flags = PD_DMA_OPS_MASK;
Joerg Roedelec487d12008-06-26 21:27:58 +0200801 dma_dom->domain.priv = dma_dom;
802 if (!dma_dom->domain.pt_root)
803 goto free_dma_dom;
804 dma_dom->aperture_size = (1ULL << order);
805 dma_dom->bitmap = kzalloc(dma_dom->aperture_size / (PAGE_SIZE * 8),
806 GFP_KERNEL);
807 if (!dma_dom->bitmap)
808 goto free_dma_dom;
809 /*
810 * mark the first page as allocated so we never return 0 as
811 * a valid dma-address. So we can use 0 as error value
812 */
813 dma_dom->bitmap[0] = 1;
814 dma_dom->next_bit = 0;
815
Joerg Roedel1c655772008-09-04 18:40:05 +0200816 dma_dom->need_flush = false;
Joerg Roedelbd60b732008-09-11 10:24:48 +0200817 dma_dom->target_dev = 0xffff;
Joerg Roedel1c655772008-09-04 18:40:05 +0200818
Joerg Roedel431b2a22008-07-11 17:14:22 +0200819 /* Intialize the exclusion range if necessary */
Joerg Roedelec487d12008-06-26 21:27:58 +0200820 if (iommu->exclusion_start &&
821 iommu->exclusion_start < dma_dom->aperture_size) {
822 unsigned long startpage = iommu->exclusion_start >> PAGE_SHIFT;
Joerg Roedele3c449f2008-10-15 22:02:11 -0700823 int pages = iommu_num_pages(iommu->exclusion_start,
824 iommu->exclusion_length,
825 PAGE_SIZE);
Joerg Roedelec487d12008-06-26 21:27:58 +0200826 dma_ops_reserve_addresses(dma_dom, startpage, pages);
827 }
828
Joerg Roedel431b2a22008-07-11 17:14:22 +0200829 /*
830 * At the last step, build the page tables so we don't need to
831 * allocate page table pages in the dma_ops mapping/unmapping
832 * path.
833 */
Joerg Roedelec487d12008-06-26 21:27:58 +0200834 num_pte_pages = dma_dom->aperture_size / (PAGE_SIZE * 512);
835 dma_dom->pte_pages = kzalloc(num_pte_pages * sizeof(void *),
836 GFP_KERNEL);
837 if (!dma_dom->pte_pages)
838 goto free_dma_dom;
839
840 l2_pde = (u64 *)get_zeroed_page(GFP_KERNEL);
841 if (l2_pde == NULL)
842 goto free_dma_dom;
843
844 dma_dom->domain.pt_root[0] = IOMMU_L2_PDE(virt_to_phys(l2_pde));
845
846 for (i = 0; i < num_pte_pages; ++i) {
847 dma_dom->pte_pages[i] = (u64 *)get_zeroed_page(GFP_KERNEL);
848 if (!dma_dom->pte_pages[i])
849 goto free_dma_dom;
850 address = virt_to_phys(dma_dom->pte_pages[i]);
851 l2_pde[i] = IOMMU_L1_PDE(address);
852 }
853
854 return dma_dom;
855
856free_dma_dom:
857 dma_ops_domain_free(dma_dom);
858
859 return NULL;
860}
861
Joerg Roedel431b2a22008-07-11 17:14:22 +0200862/*
Joerg Roedel5b28df62008-12-02 17:49:42 +0100863 * little helper function to check whether a given protection domain is a
864 * dma_ops domain
865 */
866static bool dma_ops_domain(struct protection_domain *domain)
867{
868 return domain->flags & PD_DMA_OPS_MASK;
869}
870
871/*
Joerg Roedel431b2a22008-07-11 17:14:22 +0200872 * Find out the protection domain structure for a given PCI device. This
873 * will give us the pointer to the page table root for example.
874 */
Joerg Roedelb20ac0d2008-06-26 21:27:59 +0200875static struct protection_domain *domain_for_device(u16 devid)
876{
877 struct protection_domain *dom;
878 unsigned long flags;
879
880 read_lock_irqsave(&amd_iommu_devtable_lock, flags);
881 dom = amd_iommu_pd_table[devid];
882 read_unlock_irqrestore(&amd_iommu_devtable_lock, flags);
883
884 return dom;
885}
886
Joerg Roedel431b2a22008-07-11 17:14:22 +0200887/*
888 * If a device is not yet associated with a domain, this function does
889 * assigns it visible for the hardware
890 */
Joerg Roedelf1179dc2008-12-10 14:39:51 +0100891static void attach_device(struct amd_iommu *iommu,
892 struct protection_domain *domain,
893 u16 devid)
Joerg Roedelb20ac0d2008-06-26 21:27:59 +0200894{
895 unsigned long flags;
Joerg Roedelb20ac0d2008-06-26 21:27:59 +0200896 u64 pte_root = virt_to_phys(domain->pt_root);
897
Joerg Roedel863c74e2008-12-02 17:56:36 +0100898 domain->dev_cnt += 1;
899
Joerg Roedel38ddf412008-09-11 10:38:32 +0200900 pte_root |= (domain->mode & DEV_ENTRY_MODE_MASK)
901 << DEV_ENTRY_MODE_SHIFT;
902 pte_root |= IOMMU_PTE_IR | IOMMU_PTE_IW | IOMMU_PTE_P | IOMMU_PTE_TV;
Joerg Roedelb20ac0d2008-06-26 21:27:59 +0200903
904 write_lock_irqsave(&amd_iommu_devtable_lock, flags);
Joerg Roedel38ddf412008-09-11 10:38:32 +0200905 amd_iommu_dev_table[devid].data[0] = lower_32_bits(pte_root);
906 amd_iommu_dev_table[devid].data[1] = upper_32_bits(pte_root);
Joerg Roedelb20ac0d2008-06-26 21:27:59 +0200907 amd_iommu_dev_table[devid].data[2] = domain->id;
908
909 amd_iommu_pd_table[devid] = domain;
910 write_unlock_irqrestore(&amd_iommu_devtable_lock, flags);
911
912 iommu_queue_inv_dev_entry(iommu, devid);
Joerg Roedelb20ac0d2008-06-26 21:27:59 +0200913}
914
Joerg Roedel355bf552008-12-08 12:02:41 +0100915/*
916 * Removes a device from a protection domain (unlocked)
917 */
918static void __detach_device(struct protection_domain *domain, u16 devid)
919{
920
921 /* lock domain */
922 spin_lock(&domain->lock);
923
924 /* remove domain from the lookup table */
925 amd_iommu_pd_table[devid] = NULL;
926
927 /* remove entry from the device table seen by the hardware */
928 amd_iommu_dev_table[devid].data[0] = IOMMU_PTE_P | IOMMU_PTE_TV;
929 amd_iommu_dev_table[devid].data[1] = 0;
930 amd_iommu_dev_table[devid].data[2] = 0;
931
932 /* decrease reference counter */
933 domain->dev_cnt -= 1;
934
935 /* ready */
936 spin_unlock(&domain->lock);
937}
938
939/*
940 * Removes a device from a protection domain (with devtable_lock held)
941 */
942static void detach_device(struct protection_domain *domain, u16 devid)
943{
944 unsigned long flags;
945
946 /* lock device table */
947 write_lock_irqsave(&amd_iommu_devtable_lock, flags);
948 __detach_device(domain, devid);
949 write_unlock_irqrestore(&amd_iommu_devtable_lock, flags);
950}
Joerg Roedele275a2a2008-12-10 18:27:25 +0100951
952static int device_change_notifier(struct notifier_block *nb,
953 unsigned long action, void *data)
954{
955 struct device *dev = data;
956 struct pci_dev *pdev = to_pci_dev(dev);
957 u16 devid = calc_devid(pdev->bus->number, pdev->devfn);
958 struct protection_domain *domain;
959 struct dma_ops_domain *dma_domain;
960 struct amd_iommu *iommu;
Joerg Roedel1ac4cbb2008-12-10 19:33:26 +0100961 int order = amd_iommu_aperture_order;
962 unsigned long flags;
Joerg Roedele275a2a2008-12-10 18:27:25 +0100963
964 if (devid > amd_iommu_last_bdf)
965 goto out;
966
967 devid = amd_iommu_alias_table[devid];
968
969 iommu = amd_iommu_rlookup_table[devid];
970 if (iommu == NULL)
971 goto out;
972
973 domain = domain_for_device(devid);
974
975 if (domain && !dma_ops_domain(domain))
976 WARN_ONCE(1, "AMD IOMMU WARNING: device %s already bound "
977 "to a non-dma-ops domain\n", dev_name(dev));
978
979 switch (action) {
980 case BUS_NOTIFY_BOUND_DRIVER:
981 if (domain)
982 goto out;
983 dma_domain = find_protection_domain(devid);
984 if (!dma_domain)
985 dma_domain = iommu->default_dom;
986 attach_device(iommu, &dma_domain->domain, devid);
987 printk(KERN_INFO "AMD IOMMU: Using protection domain %d for "
988 "device %s\n", dma_domain->domain.id, dev_name(dev));
989 break;
990 case BUS_NOTIFY_UNBIND_DRIVER:
991 if (!domain)
992 goto out;
993 detach_device(domain, devid);
994 break;
Joerg Roedel1ac4cbb2008-12-10 19:33:26 +0100995 case BUS_NOTIFY_ADD_DEVICE:
996 /* allocate a protection domain if a device is added */
997 dma_domain = find_protection_domain(devid);
998 if (dma_domain)
999 goto out;
1000 dma_domain = dma_ops_domain_alloc(iommu, order);
1001 if (!dma_domain)
1002 goto out;
1003 dma_domain->target_dev = devid;
1004
1005 spin_lock_irqsave(&iommu_pd_list_lock, flags);
1006 list_add_tail(&dma_domain->list, &iommu_pd_list);
1007 spin_unlock_irqrestore(&iommu_pd_list_lock, flags);
1008
1009 break;
Joerg Roedele275a2a2008-12-10 18:27:25 +01001010 default:
1011 goto out;
1012 }
1013
1014 iommu_queue_inv_dev_entry(iommu, devid);
1015 iommu_completion_wait(iommu);
1016
1017out:
1018 return 0;
1019}
1020
1021struct notifier_block device_nb = {
1022 .notifier_call = device_change_notifier,
1023};
Joerg Roedel355bf552008-12-08 12:02:41 +01001024
Joerg Roedel431b2a22008-07-11 17:14:22 +02001025/*****************************************************************************
1026 *
1027 * The next functions belong to the dma_ops mapping/unmapping code.
1028 *
1029 *****************************************************************************/
1030
1031/*
Joerg Roedeldbcc1122008-09-04 15:04:26 +02001032 * This function checks if the driver got a valid device from the caller to
1033 * avoid dereferencing invalid pointers.
1034 */
1035static bool check_device(struct device *dev)
1036{
1037 if (!dev || !dev->dma_mask)
1038 return false;
1039
1040 return true;
1041}
1042
1043/*
Joerg Roedelbd60b732008-09-11 10:24:48 +02001044 * In this function the list of preallocated protection domains is traversed to
1045 * find the domain for a specific device
1046 */
1047static struct dma_ops_domain *find_protection_domain(u16 devid)
1048{
1049 struct dma_ops_domain *entry, *ret = NULL;
1050 unsigned long flags;
1051
1052 if (list_empty(&iommu_pd_list))
1053 return NULL;
1054
1055 spin_lock_irqsave(&iommu_pd_list_lock, flags);
1056
1057 list_for_each_entry(entry, &iommu_pd_list, list) {
1058 if (entry->target_dev == devid) {
1059 ret = entry;
Joerg Roedelbd60b732008-09-11 10:24:48 +02001060 break;
1061 }
1062 }
1063
1064 spin_unlock_irqrestore(&iommu_pd_list_lock, flags);
1065
1066 return ret;
1067}
1068
1069/*
Joerg Roedel431b2a22008-07-11 17:14:22 +02001070 * In the dma_ops path we only have the struct device. This function
1071 * finds the corresponding IOMMU, the protection domain and the
1072 * requestor id for a given device.
1073 * If the device is not yet associated with a domain this is also done
1074 * in this function.
1075 */
Joerg Roedelb20ac0d2008-06-26 21:27:59 +02001076static int get_device_resources(struct device *dev,
1077 struct amd_iommu **iommu,
1078 struct protection_domain **domain,
1079 u16 *bdf)
1080{
1081 struct dma_ops_domain *dma_dom;
1082 struct pci_dev *pcidev;
1083 u16 _bdf;
1084
Joerg Roedeldbcc1122008-09-04 15:04:26 +02001085 *iommu = NULL;
1086 *domain = NULL;
1087 *bdf = 0xffff;
1088
1089 if (dev->bus != &pci_bus_type)
1090 return 0;
Joerg Roedelb20ac0d2008-06-26 21:27:59 +02001091
1092 pcidev = to_pci_dev(dev);
Joerg Roedeld591b0a2008-07-11 17:14:35 +02001093 _bdf = calc_devid(pcidev->bus->number, pcidev->devfn);
Joerg Roedelb20ac0d2008-06-26 21:27:59 +02001094
Joerg Roedel431b2a22008-07-11 17:14:22 +02001095 /* device not translated by any IOMMU in the system? */
Joerg Roedeldbcc1122008-09-04 15:04:26 +02001096 if (_bdf > amd_iommu_last_bdf)
Joerg Roedelb20ac0d2008-06-26 21:27:59 +02001097 return 0;
Joerg Roedelb20ac0d2008-06-26 21:27:59 +02001098
1099 *bdf = amd_iommu_alias_table[_bdf];
1100
1101 *iommu = amd_iommu_rlookup_table[*bdf];
1102 if (*iommu == NULL)
1103 return 0;
Joerg Roedelb20ac0d2008-06-26 21:27:59 +02001104 *domain = domain_for_device(*bdf);
1105 if (*domain == NULL) {
Joerg Roedelbd60b732008-09-11 10:24:48 +02001106 dma_dom = find_protection_domain(*bdf);
1107 if (!dma_dom)
1108 dma_dom = (*iommu)->default_dom;
Joerg Roedelb20ac0d2008-06-26 21:27:59 +02001109 *domain = &dma_dom->domain;
Joerg Roedelf1179dc2008-12-10 14:39:51 +01001110 attach_device(*iommu, *domain, *bdf);
Joerg Roedelb20ac0d2008-06-26 21:27:59 +02001111 printk(KERN_INFO "AMD IOMMU: Using protection domain %d for "
Joerg Roedelab896722008-12-10 19:43:07 +01001112 "device %s\n", (*domain)->id, dev_name(dev));
Joerg Roedelb20ac0d2008-06-26 21:27:59 +02001113 }
1114
Joerg Roedelf91ba192008-11-25 12:56:12 +01001115 if (domain_for_device(_bdf) == NULL)
Joerg Roedelf1179dc2008-12-10 14:39:51 +01001116 attach_device(*iommu, *domain, _bdf);
Joerg Roedelf91ba192008-11-25 12:56:12 +01001117
Joerg Roedelb20ac0d2008-06-26 21:27:59 +02001118 return 1;
1119}
1120
Joerg Roedel431b2a22008-07-11 17:14:22 +02001121/*
1122 * This is the generic map function. It maps one 4kb page at paddr to
1123 * the given address in the DMA address space for the domain.
1124 */
Joerg Roedelcb76c322008-06-26 21:28:00 +02001125static dma_addr_t dma_ops_domain_map(struct amd_iommu *iommu,
1126 struct dma_ops_domain *dom,
1127 unsigned long address,
1128 phys_addr_t paddr,
1129 int direction)
1130{
1131 u64 *pte, __pte;
1132
1133 WARN_ON(address > dom->aperture_size);
1134
1135 paddr &= PAGE_MASK;
1136
1137 pte = dom->pte_pages[IOMMU_PTE_L1_INDEX(address)];
1138 pte += IOMMU_PTE_L0_INDEX(address);
1139
1140 __pte = paddr | IOMMU_PTE_P | IOMMU_PTE_FC;
1141
1142 if (direction == DMA_TO_DEVICE)
1143 __pte |= IOMMU_PTE_IR;
1144 else if (direction == DMA_FROM_DEVICE)
1145 __pte |= IOMMU_PTE_IW;
1146 else if (direction == DMA_BIDIRECTIONAL)
1147 __pte |= IOMMU_PTE_IR | IOMMU_PTE_IW;
1148
1149 WARN_ON(*pte);
1150
1151 *pte = __pte;
1152
1153 return (dma_addr_t)address;
1154}
1155
Joerg Roedel431b2a22008-07-11 17:14:22 +02001156/*
1157 * The generic unmapping function for on page in the DMA address space.
1158 */
Joerg Roedelcb76c322008-06-26 21:28:00 +02001159static void dma_ops_domain_unmap(struct amd_iommu *iommu,
1160 struct dma_ops_domain *dom,
1161 unsigned long address)
1162{
1163 u64 *pte;
1164
1165 if (address >= dom->aperture_size)
1166 return;
1167
Joerg Roedel8ad909c2008-12-08 14:37:20 +01001168 WARN_ON(address & ~PAGE_MASK || address >= dom->aperture_size);
Joerg Roedelcb76c322008-06-26 21:28:00 +02001169
1170 pte = dom->pte_pages[IOMMU_PTE_L1_INDEX(address)];
1171 pte += IOMMU_PTE_L0_INDEX(address);
1172
1173 WARN_ON(!*pte);
1174
1175 *pte = 0ULL;
1176}
1177
Joerg Roedel431b2a22008-07-11 17:14:22 +02001178/*
1179 * This function contains common code for mapping of a physically
Joerg Roedel24f81162008-12-08 14:25:39 +01001180 * contiguous memory region into DMA address space. It is used by all
1181 * mapping functions provided with this IOMMU driver.
Joerg Roedel431b2a22008-07-11 17:14:22 +02001182 * Must be called with the domain lock held.
1183 */
Joerg Roedelcb76c322008-06-26 21:28:00 +02001184static dma_addr_t __map_single(struct device *dev,
1185 struct amd_iommu *iommu,
1186 struct dma_ops_domain *dma_dom,
1187 phys_addr_t paddr,
1188 size_t size,
Joerg Roedel6d4f3432008-09-04 19:18:02 +02001189 int dir,
Joerg Roedel832a90c2008-09-18 15:54:23 +02001190 bool align,
1191 u64 dma_mask)
Joerg Roedelcb76c322008-06-26 21:28:00 +02001192{
1193 dma_addr_t offset = paddr & ~PAGE_MASK;
1194 dma_addr_t address, start;
1195 unsigned int pages;
Joerg Roedel6d4f3432008-09-04 19:18:02 +02001196 unsigned long align_mask = 0;
Joerg Roedelcb76c322008-06-26 21:28:00 +02001197 int i;
1198
Joerg Roedele3c449f2008-10-15 22:02:11 -07001199 pages = iommu_num_pages(paddr, size, PAGE_SIZE);
Joerg Roedelcb76c322008-06-26 21:28:00 +02001200 paddr &= PAGE_MASK;
1201
Joerg Roedel6d4f3432008-09-04 19:18:02 +02001202 if (align)
1203 align_mask = (1UL << get_order(size)) - 1;
1204
Joerg Roedel832a90c2008-09-18 15:54:23 +02001205 address = dma_ops_alloc_addresses(dev, dma_dom, pages, align_mask,
1206 dma_mask);
Joerg Roedelcb76c322008-06-26 21:28:00 +02001207 if (unlikely(address == bad_dma_address))
1208 goto out;
1209
1210 start = address;
1211 for (i = 0; i < pages; ++i) {
1212 dma_ops_domain_map(iommu, dma_dom, start, paddr, dir);
1213 paddr += PAGE_SIZE;
1214 start += PAGE_SIZE;
1215 }
1216 address += offset;
1217
FUJITA Tomonoriafa9fdc2008-09-20 01:23:30 +09001218 if (unlikely(dma_dom->need_flush && !amd_iommu_unmap_flush)) {
Joerg Roedel1c655772008-09-04 18:40:05 +02001219 iommu_flush_tlb(iommu, dma_dom->domain.id);
1220 dma_dom->need_flush = false;
1221 } else if (unlikely(iommu_has_npcache(iommu)))
Joerg Roedel270cab242008-09-04 15:49:46 +02001222 iommu_flush_pages(iommu, dma_dom->domain.id, address, size);
1223
Joerg Roedelcb76c322008-06-26 21:28:00 +02001224out:
1225 return address;
1226}
1227
Joerg Roedel431b2a22008-07-11 17:14:22 +02001228/*
1229 * Does the reverse of the __map_single function. Must be called with
1230 * the domain lock held too
1231 */
Joerg Roedelcb76c322008-06-26 21:28:00 +02001232static void __unmap_single(struct amd_iommu *iommu,
1233 struct dma_ops_domain *dma_dom,
1234 dma_addr_t dma_addr,
1235 size_t size,
1236 int dir)
1237{
1238 dma_addr_t i, start;
1239 unsigned int pages;
1240
Joerg Roedelb8d99052008-12-08 14:40:26 +01001241 if ((dma_addr == bad_dma_address) ||
1242 (dma_addr + size > dma_dom->aperture_size))
Joerg Roedelcb76c322008-06-26 21:28:00 +02001243 return;
1244
Joerg Roedele3c449f2008-10-15 22:02:11 -07001245 pages = iommu_num_pages(dma_addr, size, PAGE_SIZE);
Joerg Roedelcb76c322008-06-26 21:28:00 +02001246 dma_addr &= PAGE_MASK;
1247 start = dma_addr;
1248
1249 for (i = 0; i < pages; ++i) {
1250 dma_ops_domain_unmap(iommu, dma_dom, start);
1251 start += PAGE_SIZE;
1252 }
1253
1254 dma_ops_free_addresses(dma_dom, dma_addr, pages);
Joerg Roedel270cab242008-09-04 15:49:46 +02001255
Joerg Roedel80be3082008-11-06 14:59:05 +01001256 if (amd_iommu_unmap_flush || dma_dom->need_flush) {
Joerg Roedel1c655772008-09-04 18:40:05 +02001257 iommu_flush_pages(iommu, dma_dom->domain.id, dma_addr, size);
Joerg Roedel80be3082008-11-06 14:59:05 +01001258 dma_dom->need_flush = false;
1259 }
Joerg Roedelcb76c322008-06-26 21:28:00 +02001260}
1261
Joerg Roedel431b2a22008-07-11 17:14:22 +02001262/*
1263 * The exported map_single function for dma_ops.
1264 */
Joerg Roedel4da70b92008-06-26 21:28:01 +02001265static dma_addr_t map_single(struct device *dev, phys_addr_t paddr,
1266 size_t size, int dir)
1267{
1268 unsigned long flags;
1269 struct amd_iommu *iommu;
1270 struct protection_domain *domain;
1271 u16 devid;
1272 dma_addr_t addr;
Joerg Roedel832a90c2008-09-18 15:54:23 +02001273 u64 dma_mask;
Joerg Roedel4da70b92008-06-26 21:28:01 +02001274
Joerg Roedeldbcc1122008-09-04 15:04:26 +02001275 if (!check_device(dev))
1276 return bad_dma_address;
1277
Joerg Roedel832a90c2008-09-18 15:54:23 +02001278 dma_mask = *dev->dma_mask;
Joerg Roedel4da70b92008-06-26 21:28:01 +02001279
1280 get_device_resources(dev, &iommu, &domain, &devid);
1281
1282 if (iommu == NULL || domain == NULL)
Joerg Roedel431b2a22008-07-11 17:14:22 +02001283 /* device not handled by any AMD IOMMU */
Joerg Roedel4da70b92008-06-26 21:28:01 +02001284 return (dma_addr_t)paddr;
1285
Joerg Roedel5b28df62008-12-02 17:49:42 +01001286 if (!dma_ops_domain(domain))
1287 return bad_dma_address;
1288
Joerg Roedel4da70b92008-06-26 21:28:01 +02001289 spin_lock_irqsave(&domain->lock, flags);
Joerg Roedel832a90c2008-09-18 15:54:23 +02001290 addr = __map_single(dev, iommu, domain->priv, paddr, size, dir, false,
1291 dma_mask);
Joerg Roedel4da70b92008-06-26 21:28:01 +02001292 if (addr == bad_dma_address)
1293 goto out;
1294
Joerg Roedel09ee17e2008-12-03 12:19:27 +01001295 iommu_completion_wait(iommu);
Joerg Roedel4da70b92008-06-26 21:28:01 +02001296
1297out:
1298 spin_unlock_irqrestore(&domain->lock, flags);
1299
1300 return addr;
1301}
1302
Joerg Roedel431b2a22008-07-11 17:14:22 +02001303/*
1304 * The exported unmap_single function for dma_ops.
1305 */
Joerg Roedel4da70b92008-06-26 21:28:01 +02001306static void unmap_single(struct device *dev, dma_addr_t dma_addr,
1307 size_t size, int dir)
1308{
1309 unsigned long flags;
1310 struct amd_iommu *iommu;
1311 struct protection_domain *domain;
1312 u16 devid;
1313
Joerg Roedeldbcc1122008-09-04 15:04:26 +02001314 if (!check_device(dev) ||
1315 !get_device_resources(dev, &iommu, &domain, &devid))
Joerg Roedel431b2a22008-07-11 17:14:22 +02001316 /* device not handled by any AMD IOMMU */
Joerg Roedel4da70b92008-06-26 21:28:01 +02001317 return;
1318
Joerg Roedel5b28df62008-12-02 17:49:42 +01001319 if (!dma_ops_domain(domain))
1320 return;
1321
Joerg Roedel4da70b92008-06-26 21:28:01 +02001322 spin_lock_irqsave(&domain->lock, flags);
1323
1324 __unmap_single(iommu, domain->priv, dma_addr, size, dir);
1325
Joerg Roedel09ee17e2008-12-03 12:19:27 +01001326 iommu_completion_wait(iommu);
Joerg Roedel4da70b92008-06-26 21:28:01 +02001327
1328 spin_unlock_irqrestore(&domain->lock, flags);
1329}
1330
Joerg Roedel431b2a22008-07-11 17:14:22 +02001331/*
1332 * This is a special map_sg function which is used if we should map a
1333 * device which is not handled by an AMD IOMMU in the system.
1334 */
Joerg Roedel65b050a2008-06-26 21:28:02 +02001335static int map_sg_no_iommu(struct device *dev, struct scatterlist *sglist,
1336 int nelems, int dir)
1337{
1338 struct scatterlist *s;
1339 int i;
1340
1341 for_each_sg(sglist, s, nelems, i) {
1342 s->dma_address = (dma_addr_t)sg_phys(s);
1343 s->dma_length = s->length;
1344 }
1345
1346 return nelems;
1347}
1348
Joerg Roedel431b2a22008-07-11 17:14:22 +02001349/*
1350 * The exported map_sg function for dma_ops (handles scatter-gather
1351 * lists).
1352 */
Joerg Roedel65b050a2008-06-26 21:28:02 +02001353static int map_sg(struct device *dev, struct scatterlist *sglist,
1354 int nelems, int dir)
1355{
1356 unsigned long flags;
1357 struct amd_iommu *iommu;
1358 struct protection_domain *domain;
1359 u16 devid;
1360 int i;
1361 struct scatterlist *s;
1362 phys_addr_t paddr;
1363 int mapped_elems = 0;
Joerg Roedel832a90c2008-09-18 15:54:23 +02001364 u64 dma_mask;
Joerg Roedel65b050a2008-06-26 21:28:02 +02001365
Joerg Roedeldbcc1122008-09-04 15:04:26 +02001366 if (!check_device(dev))
1367 return 0;
1368
Joerg Roedel832a90c2008-09-18 15:54:23 +02001369 dma_mask = *dev->dma_mask;
Joerg Roedel65b050a2008-06-26 21:28:02 +02001370
1371 get_device_resources(dev, &iommu, &domain, &devid);
1372
1373 if (!iommu || !domain)
1374 return map_sg_no_iommu(dev, sglist, nelems, dir);
1375
Joerg Roedel5b28df62008-12-02 17:49:42 +01001376 if (!dma_ops_domain(domain))
1377 return 0;
1378
Joerg Roedel65b050a2008-06-26 21:28:02 +02001379 spin_lock_irqsave(&domain->lock, flags);
1380
1381 for_each_sg(sglist, s, nelems, i) {
1382 paddr = sg_phys(s);
1383
1384 s->dma_address = __map_single(dev, iommu, domain->priv,
Joerg Roedel832a90c2008-09-18 15:54:23 +02001385 paddr, s->length, dir, false,
1386 dma_mask);
Joerg Roedel65b050a2008-06-26 21:28:02 +02001387
1388 if (s->dma_address) {
1389 s->dma_length = s->length;
1390 mapped_elems++;
1391 } else
1392 goto unmap;
Joerg Roedel65b050a2008-06-26 21:28:02 +02001393 }
1394
Joerg Roedel09ee17e2008-12-03 12:19:27 +01001395 iommu_completion_wait(iommu);
Joerg Roedel65b050a2008-06-26 21:28:02 +02001396
1397out:
1398 spin_unlock_irqrestore(&domain->lock, flags);
1399
1400 return mapped_elems;
1401unmap:
1402 for_each_sg(sglist, s, mapped_elems, i) {
1403 if (s->dma_address)
1404 __unmap_single(iommu, domain->priv, s->dma_address,
1405 s->dma_length, dir);
1406 s->dma_address = s->dma_length = 0;
1407 }
1408
1409 mapped_elems = 0;
1410
1411 goto out;
1412}
1413
Joerg Roedel431b2a22008-07-11 17:14:22 +02001414/*
1415 * The exported map_sg function for dma_ops (handles scatter-gather
1416 * lists).
1417 */
Joerg Roedel65b050a2008-06-26 21:28:02 +02001418static void unmap_sg(struct device *dev, struct scatterlist *sglist,
1419 int nelems, int dir)
1420{
1421 unsigned long flags;
1422 struct amd_iommu *iommu;
1423 struct protection_domain *domain;
1424 struct scatterlist *s;
1425 u16 devid;
1426 int i;
1427
Joerg Roedeldbcc1122008-09-04 15:04:26 +02001428 if (!check_device(dev) ||
1429 !get_device_resources(dev, &iommu, &domain, &devid))
Joerg Roedel65b050a2008-06-26 21:28:02 +02001430 return;
1431
Joerg Roedel5b28df62008-12-02 17:49:42 +01001432 if (!dma_ops_domain(domain))
1433 return;
1434
Joerg Roedel65b050a2008-06-26 21:28:02 +02001435 spin_lock_irqsave(&domain->lock, flags);
1436
1437 for_each_sg(sglist, s, nelems, i) {
1438 __unmap_single(iommu, domain->priv, s->dma_address,
1439 s->dma_length, dir);
Joerg Roedel65b050a2008-06-26 21:28:02 +02001440 s->dma_address = s->dma_length = 0;
1441 }
1442
Joerg Roedel09ee17e2008-12-03 12:19:27 +01001443 iommu_completion_wait(iommu);
Joerg Roedel65b050a2008-06-26 21:28:02 +02001444
1445 spin_unlock_irqrestore(&domain->lock, flags);
1446}
1447
Joerg Roedel431b2a22008-07-11 17:14:22 +02001448/*
1449 * The exported alloc_coherent function for dma_ops.
1450 */
Joerg Roedel5d8b53c2008-06-26 21:28:03 +02001451static void *alloc_coherent(struct device *dev, size_t size,
1452 dma_addr_t *dma_addr, gfp_t flag)
1453{
1454 unsigned long flags;
1455 void *virt_addr;
1456 struct amd_iommu *iommu;
1457 struct protection_domain *domain;
1458 u16 devid;
1459 phys_addr_t paddr;
Joerg Roedel832a90c2008-09-18 15:54:23 +02001460 u64 dma_mask = dev->coherent_dma_mask;
Joerg Roedel5d8b53c2008-06-26 21:28:03 +02001461
Joerg Roedeldbcc1122008-09-04 15:04:26 +02001462 if (!check_device(dev))
1463 return NULL;
1464
FUJITA Tomonori13d9fea2008-09-10 20:19:40 +09001465 if (!get_device_resources(dev, &iommu, &domain, &devid))
1466 flag &= ~(__GFP_DMA | __GFP_HIGHMEM | __GFP_DMA32);
1467
Joerg Roedelc97ac532008-09-11 10:59:15 +02001468 flag |= __GFP_ZERO;
Joerg Roedel5d8b53c2008-06-26 21:28:03 +02001469 virt_addr = (void *)__get_free_pages(flag, get_order(size));
1470 if (!virt_addr)
1471 return 0;
1472
Joerg Roedel5d8b53c2008-06-26 21:28:03 +02001473 paddr = virt_to_phys(virt_addr);
1474
Joerg Roedel5d8b53c2008-06-26 21:28:03 +02001475 if (!iommu || !domain) {
1476 *dma_addr = (dma_addr_t)paddr;
1477 return virt_addr;
1478 }
1479
Joerg Roedel5b28df62008-12-02 17:49:42 +01001480 if (!dma_ops_domain(domain))
1481 goto out_free;
1482
Joerg Roedel832a90c2008-09-18 15:54:23 +02001483 if (!dma_mask)
1484 dma_mask = *dev->dma_mask;
1485
Joerg Roedel5d8b53c2008-06-26 21:28:03 +02001486 spin_lock_irqsave(&domain->lock, flags);
1487
1488 *dma_addr = __map_single(dev, iommu, domain->priv, paddr,
Joerg Roedel832a90c2008-09-18 15:54:23 +02001489 size, DMA_BIDIRECTIONAL, true, dma_mask);
Joerg Roedel5d8b53c2008-06-26 21:28:03 +02001490
Joerg Roedel5b28df62008-12-02 17:49:42 +01001491 if (*dma_addr == bad_dma_address)
1492 goto out_free;
Joerg Roedel5d8b53c2008-06-26 21:28:03 +02001493
Joerg Roedel09ee17e2008-12-03 12:19:27 +01001494 iommu_completion_wait(iommu);
Joerg Roedel5d8b53c2008-06-26 21:28:03 +02001495
Joerg Roedel5d8b53c2008-06-26 21:28:03 +02001496 spin_unlock_irqrestore(&domain->lock, flags);
1497
1498 return virt_addr;
Joerg Roedel5b28df62008-12-02 17:49:42 +01001499
1500out_free:
1501
1502 free_pages((unsigned long)virt_addr, get_order(size));
1503
1504 return NULL;
Joerg Roedel5d8b53c2008-06-26 21:28:03 +02001505}
1506
Joerg Roedel431b2a22008-07-11 17:14:22 +02001507/*
1508 * The exported free_coherent function for dma_ops.
Joerg Roedel431b2a22008-07-11 17:14:22 +02001509 */
Joerg Roedel5d8b53c2008-06-26 21:28:03 +02001510static void free_coherent(struct device *dev, size_t size,
1511 void *virt_addr, dma_addr_t dma_addr)
1512{
1513 unsigned long flags;
1514 struct amd_iommu *iommu;
1515 struct protection_domain *domain;
1516 u16 devid;
1517
Joerg Roedeldbcc1122008-09-04 15:04:26 +02001518 if (!check_device(dev))
1519 return;
1520
Joerg Roedel5d8b53c2008-06-26 21:28:03 +02001521 get_device_resources(dev, &iommu, &domain, &devid);
1522
1523 if (!iommu || !domain)
1524 goto free_mem;
1525
Joerg Roedel5b28df62008-12-02 17:49:42 +01001526 if (!dma_ops_domain(domain))
1527 goto free_mem;
1528
Joerg Roedel5d8b53c2008-06-26 21:28:03 +02001529 spin_lock_irqsave(&domain->lock, flags);
1530
1531 __unmap_single(iommu, domain->priv, dma_addr, size, DMA_BIDIRECTIONAL);
Joerg Roedel5d8b53c2008-06-26 21:28:03 +02001532
Joerg Roedel09ee17e2008-12-03 12:19:27 +01001533 iommu_completion_wait(iommu);
Joerg Roedel5d8b53c2008-06-26 21:28:03 +02001534
1535 spin_unlock_irqrestore(&domain->lock, flags);
1536
1537free_mem:
1538 free_pages((unsigned long)virt_addr, get_order(size));
1539}
1540
Joerg Roedelc432f3d2008-06-26 21:28:04 +02001541/*
Joerg Roedelb39ba6a2008-09-09 18:40:46 +02001542 * This function is called by the DMA layer to find out if we can handle a
1543 * particular device. It is part of the dma_ops.
1544 */
1545static int amd_iommu_dma_supported(struct device *dev, u64 mask)
1546{
1547 u16 bdf;
1548 struct pci_dev *pcidev;
1549
1550 /* No device or no PCI device */
1551 if (!dev || dev->bus != &pci_bus_type)
1552 return 0;
1553
1554 pcidev = to_pci_dev(dev);
1555
1556 bdf = calc_devid(pcidev->bus->number, pcidev->devfn);
1557
1558 /* Out of our scope? */
1559 if (bdf > amd_iommu_last_bdf)
1560 return 0;
1561
1562 return 1;
1563}
1564
1565/*
Joerg Roedel431b2a22008-07-11 17:14:22 +02001566 * The function for pre-allocating protection domains.
1567 *
Joerg Roedelc432f3d2008-06-26 21:28:04 +02001568 * If the driver core informs the DMA layer if a driver grabs a device
1569 * we don't need to preallocate the protection domains anymore.
1570 * For now we have to.
1571 */
1572void prealloc_protection_domains(void)
1573{
1574 struct pci_dev *dev = NULL;
1575 struct dma_ops_domain *dma_dom;
1576 struct amd_iommu *iommu;
1577 int order = amd_iommu_aperture_order;
1578 u16 devid;
1579
1580 while ((dev = pci_get_device(PCI_ANY_ID, PCI_ANY_ID, dev)) != NULL) {
Joerg Roedeledcb34d2008-12-10 20:01:45 +01001581 devid = calc_devid(dev->bus->number, dev->devfn);
Joerg Roedel3a61ec32008-07-25 13:07:50 +02001582 if (devid > amd_iommu_last_bdf)
Joerg Roedelc432f3d2008-06-26 21:28:04 +02001583 continue;
1584 devid = amd_iommu_alias_table[devid];
1585 if (domain_for_device(devid))
1586 continue;
1587 iommu = amd_iommu_rlookup_table[devid];
1588 if (!iommu)
1589 continue;
1590 dma_dom = dma_ops_domain_alloc(iommu, order);
1591 if (!dma_dom)
1592 continue;
1593 init_unity_mappings_for_device(dma_dom, devid);
Joerg Roedelbd60b732008-09-11 10:24:48 +02001594 dma_dom->target_dev = devid;
1595
1596 list_add_tail(&dma_dom->list, &iommu_pd_list);
Joerg Roedelc432f3d2008-06-26 21:28:04 +02001597 }
1598}
1599
Joerg Roedel6631ee92008-06-26 21:28:05 +02001600static struct dma_mapping_ops amd_iommu_dma_ops = {
1601 .alloc_coherent = alloc_coherent,
1602 .free_coherent = free_coherent,
1603 .map_single = map_single,
1604 .unmap_single = unmap_single,
1605 .map_sg = map_sg,
1606 .unmap_sg = unmap_sg,
Joerg Roedelb39ba6a2008-09-09 18:40:46 +02001607 .dma_supported = amd_iommu_dma_supported,
Joerg Roedel6631ee92008-06-26 21:28:05 +02001608};
1609
Joerg Roedel431b2a22008-07-11 17:14:22 +02001610/*
1611 * The function which clues the AMD IOMMU driver into dma_ops.
1612 */
Joerg Roedel6631ee92008-06-26 21:28:05 +02001613int __init amd_iommu_init_dma_ops(void)
1614{
1615 struct amd_iommu *iommu;
1616 int order = amd_iommu_aperture_order;
1617 int ret;
1618
Joerg Roedel431b2a22008-07-11 17:14:22 +02001619 /*
1620 * first allocate a default protection domain for every IOMMU we
1621 * found in the system. Devices not assigned to any other
1622 * protection domain will be assigned to the default one.
1623 */
Joerg Roedel6631ee92008-06-26 21:28:05 +02001624 list_for_each_entry(iommu, &amd_iommu_list, list) {
1625 iommu->default_dom = dma_ops_domain_alloc(iommu, order);
1626 if (iommu->default_dom == NULL)
1627 return -ENOMEM;
Joerg Roedele2dc14a2008-12-10 18:48:59 +01001628 iommu->default_dom->domain.flags |= PD_DEFAULT_MASK;
Joerg Roedel6631ee92008-06-26 21:28:05 +02001629 ret = iommu_init_unity_mappings(iommu);
1630 if (ret)
1631 goto free_domains;
1632 }
1633
Joerg Roedel431b2a22008-07-11 17:14:22 +02001634 /*
1635 * If device isolation is enabled, pre-allocate the protection
1636 * domains for each device.
1637 */
Joerg Roedel6631ee92008-06-26 21:28:05 +02001638 if (amd_iommu_isolate)
1639 prealloc_protection_domains();
1640
1641 iommu_detected = 1;
1642 force_iommu = 1;
1643 bad_dma_address = 0;
Ingo Molnar92af4e22008-06-27 10:48:16 +02001644#ifdef CONFIG_GART_IOMMU
Joerg Roedel6631ee92008-06-26 21:28:05 +02001645 gart_iommu_aperture_disabled = 1;
1646 gart_iommu_aperture = 0;
Ingo Molnar92af4e22008-06-27 10:48:16 +02001647#endif
Joerg Roedel6631ee92008-06-26 21:28:05 +02001648
Joerg Roedel431b2a22008-07-11 17:14:22 +02001649 /* Make the driver finally visible to the drivers */
Joerg Roedel6631ee92008-06-26 21:28:05 +02001650 dma_ops = &amd_iommu_dma_ops;
1651
Joerg Roedel26961ef2008-12-03 17:00:17 +01001652#ifdef CONFIG_IOMMU_API
1653 register_iommu(&amd_iommu_ops);
1654#endif
1655
Joerg Roedele275a2a2008-12-10 18:27:25 +01001656 bus_register_notifier(&pci_bus_type, &device_nb);
1657
Joerg Roedel7f265082008-12-12 13:50:21 +01001658 amd_iommu_stats_init();
1659
Joerg Roedel6631ee92008-06-26 21:28:05 +02001660 return 0;
1661
1662free_domains:
1663
1664 list_for_each_entry(iommu, &amd_iommu_list, list) {
1665 if (iommu->default_dom)
1666 dma_ops_domain_free(iommu->default_dom);
1667 }
1668
1669 return ret;
1670}
Joerg Roedel6d98cd82008-12-08 12:05:55 +01001671
1672/*****************************************************************************
1673 *
1674 * The following functions belong to the exported interface of AMD IOMMU
1675 *
1676 * This interface allows access to lower level functions of the IOMMU
1677 * like protection domain handling and assignement of devices to domains
1678 * which is not possible with the dma_ops interface.
1679 *
1680 *****************************************************************************/
1681
1682#ifdef CONFIG_IOMMU_API
1683
1684static void cleanup_domain(struct protection_domain *domain)
1685{
1686 unsigned long flags;
1687 u16 devid;
1688
1689 write_lock_irqsave(&amd_iommu_devtable_lock, flags);
1690
1691 for (devid = 0; devid <= amd_iommu_last_bdf; ++devid)
1692 if (amd_iommu_pd_table[devid] == domain)
1693 __detach_device(domain, devid);
1694
1695 write_unlock_irqrestore(&amd_iommu_devtable_lock, flags);
1696}
1697
Joerg Roedelc156e342008-12-02 18:13:27 +01001698static int amd_iommu_domain_init(struct iommu_domain *dom)
1699{
1700 struct protection_domain *domain;
1701
1702 domain = kzalloc(sizeof(*domain), GFP_KERNEL);
1703 if (!domain)
1704 return -ENOMEM;
1705
1706 spin_lock_init(&domain->lock);
1707 domain->mode = PAGE_MODE_3_LEVEL;
1708 domain->id = domain_id_alloc();
1709 if (!domain->id)
1710 goto out_free;
1711 domain->pt_root = (void *)get_zeroed_page(GFP_KERNEL);
1712 if (!domain->pt_root)
1713 goto out_free;
1714
1715 dom->priv = domain;
1716
1717 return 0;
1718
1719out_free:
1720 kfree(domain);
1721
1722 return -ENOMEM;
1723}
1724
Joerg Roedel98383fc2008-12-02 18:34:12 +01001725static void amd_iommu_domain_destroy(struct iommu_domain *dom)
1726{
1727 struct protection_domain *domain = dom->priv;
1728
1729 if (!domain)
1730 return;
1731
1732 if (domain->dev_cnt > 0)
1733 cleanup_domain(domain);
1734
1735 BUG_ON(domain->dev_cnt != 0);
1736
1737 free_pagetable(domain);
1738
1739 domain_id_free(domain->id);
1740
1741 kfree(domain);
1742
1743 dom->priv = NULL;
1744}
1745
Joerg Roedel684f2882008-12-08 12:07:44 +01001746static void amd_iommu_detach_device(struct iommu_domain *dom,
1747 struct device *dev)
1748{
1749 struct protection_domain *domain = dom->priv;
1750 struct amd_iommu *iommu;
1751 struct pci_dev *pdev;
1752 u16 devid;
1753
1754 if (dev->bus != &pci_bus_type)
1755 return;
1756
1757 pdev = to_pci_dev(dev);
1758
1759 devid = calc_devid(pdev->bus->number, pdev->devfn);
1760
1761 if (devid > 0)
1762 detach_device(domain, devid);
1763
1764 iommu = amd_iommu_rlookup_table[devid];
1765 if (!iommu)
1766 return;
1767
1768 iommu_queue_inv_dev_entry(iommu, devid);
1769 iommu_completion_wait(iommu);
1770}
1771
Joerg Roedel01106062008-12-02 19:34:11 +01001772static int amd_iommu_attach_device(struct iommu_domain *dom,
1773 struct device *dev)
1774{
1775 struct protection_domain *domain = dom->priv;
1776 struct protection_domain *old_domain;
1777 struct amd_iommu *iommu;
1778 struct pci_dev *pdev;
1779 u16 devid;
1780
1781 if (dev->bus != &pci_bus_type)
1782 return -EINVAL;
1783
1784 pdev = to_pci_dev(dev);
1785
1786 devid = calc_devid(pdev->bus->number, pdev->devfn);
1787
1788 if (devid >= amd_iommu_last_bdf ||
1789 devid != amd_iommu_alias_table[devid])
1790 return -EINVAL;
1791
1792 iommu = amd_iommu_rlookup_table[devid];
1793 if (!iommu)
1794 return -EINVAL;
1795
1796 old_domain = domain_for_device(devid);
1797 if (old_domain)
1798 return -EBUSY;
1799
1800 attach_device(iommu, domain, devid);
1801
1802 iommu_completion_wait(iommu);
1803
1804 return 0;
1805}
1806
Joerg Roedelc6229ca2008-12-02 19:48:43 +01001807static int amd_iommu_map_range(struct iommu_domain *dom,
1808 unsigned long iova, phys_addr_t paddr,
1809 size_t size, int iommu_prot)
1810{
1811 struct protection_domain *domain = dom->priv;
1812 unsigned long i, npages = iommu_num_pages(paddr, size, PAGE_SIZE);
1813 int prot = 0;
1814 int ret;
1815
1816 if (iommu_prot & IOMMU_READ)
1817 prot |= IOMMU_PROT_IR;
1818 if (iommu_prot & IOMMU_WRITE)
1819 prot |= IOMMU_PROT_IW;
1820
1821 iova &= PAGE_MASK;
1822 paddr &= PAGE_MASK;
1823
1824 for (i = 0; i < npages; ++i) {
1825 ret = iommu_map_page(domain, iova, paddr, prot);
1826 if (ret)
1827 return ret;
1828
1829 iova += PAGE_SIZE;
1830 paddr += PAGE_SIZE;
1831 }
1832
1833 return 0;
1834}
1835
Joerg Roedeleb74ff62008-12-02 19:59:10 +01001836static void amd_iommu_unmap_range(struct iommu_domain *dom,
1837 unsigned long iova, size_t size)
1838{
1839
1840 struct protection_domain *domain = dom->priv;
1841 unsigned long i, npages = iommu_num_pages(iova, size, PAGE_SIZE);
1842
1843 iova &= PAGE_MASK;
1844
1845 for (i = 0; i < npages; ++i) {
1846 iommu_unmap_page(domain, iova);
1847 iova += PAGE_SIZE;
1848 }
1849
1850 iommu_flush_domain(domain->id);
1851}
1852
Joerg Roedel645c4c82008-12-02 20:05:50 +01001853static phys_addr_t amd_iommu_iova_to_phys(struct iommu_domain *dom,
1854 unsigned long iova)
1855{
1856 struct protection_domain *domain = dom->priv;
1857 unsigned long offset = iova & ~PAGE_MASK;
1858 phys_addr_t paddr;
1859 u64 *pte;
1860
1861 pte = &domain->pt_root[IOMMU_PTE_L2_INDEX(iova)];
1862
1863 if (!IOMMU_PTE_PRESENT(*pte))
1864 return 0;
1865
1866 pte = IOMMU_PTE_PAGE(*pte);
1867 pte = &pte[IOMMU_PTE_L1_INDEX(iova)];
1868
1869 if (!IOMMU_PTE_PRESENT(*pte))
1870 return 0;
1871
1872 pte = IOMMU_PTE_PAGE(*pte);
1873 pte = &pte[IOMMU_PTE_L0_INDEX(iova)];
1874
1875 if (!IOMMU_PTE_PRESENT(*pte))
1876 return 0;
1877
1878 paddr = *pte & IOMMU_PAGE_MASK;
1879 paddr |= offset;
1880
1881 return paddr;
1882}
1883
Joerg Roedel26961ef2008-12-03 17:00:17 +01001884static struct iommu_ops amd_iommu_ops = {
1885 .domain_init = amd_iommu_domain_init,
1886 .domain_destroy = amd_iommu_domain_destroy,
1887 .attach_dev = amd_iommu_attach_device,
1888 .detach_dev = amd_iommu_detach_device,
1889 .map = amd_iommu_map_range,
1890 .unmap = amd_iommu_unmap_range,
1891 .iova_to_phys = amd_iommu_iova_to_phys,
1892};
1893
Joerg Roedel6d98cd82008-12-08 12:05:55 +01001894#endif