blob: 859ca741745b127462fe800235acb6001f6fc83b [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
Joerg Roedelda49f6d2008-12-12 14:59:58 +010067DECLARE_STATS_COUNTER(compl_wait);
Joerg Roedel0f2a86f2008-12-12 15:05:16 +010068DECLARE_STATS_COUNTER(cnt_map_single);
Joerg Roedel146a6912008-12-12 15:07:12 +010069DECLARE_STATS_COUNTER(cnt_unmap_single);
Joerg Roedeld03f067a2008-12-12 15:09:48 +010070DECLARE_STATS_COUNTER(cnt_map_sg);
Joerg Roedelda49f6d2008-12-12 14:59:58 +010071
Joerg Roedel7f265082008-12-12 13:50:21 +010072static struct dentry *stats_dir;
73static struct dentry *de_isolate;
74static struct dentry *de_fflush;
75
76static void amd_iommu_stats_add(struct __iommu_counter *cnt)
77{
78 if (stats_dir == NULL)
79 return;
80
81 cnt->dent = debugfs_create_u64(cnt->name, 0444, stats_dir,
82 &cnt->value);
83}
84
85static void amd_iommu_stats_init(void)
86{
87 stats_dir = debugfs_create_dir("amd-iommu", NULL);
88 if (stats_dir == NULL)
89 return;
90
91 de_isolate = debugfs_create_bool("isolation", 0444, stats_dir,
92 (u32 *)&amd_iommu_isolate);
93
94 de_fflush = debugfs_create_bool("fullflush", 0444, stats_dir,
95 (u32 *)&amd_iommu_unmap_flush);
Joerg Roedelda49f6d2008-12-12 14:59:58 +010096
97 amd_iommu_stats_add(&compl_wait);
Joerg Roedel0f2a86f2008-12-12 15:05:16 +010098 amd_iommu_stats_add(&cnt_map_single);
Joerg Roedel146a6912008-12-12 15:07:12 +010099 amd_iommu_stats_add(&cnt_unmap_single);
Joerg Roedeld03f067a2008-12-12 15:09:48 +0100100 amd_iommu_stats_add(&cnt_map_sg);
Joerg Roedel7f265082008-12-12 13:50:21 +0100101}
102
103#endif
104
Joerg Roedel431b2a22008-07-11 17:14:22 +0200105/* returns !0 if the IOMMU is caching non-present entries in its TLB */
Joerg Roedel4da70b92008-06-26 21:28:01 +0200106static int iommu_has_npcache(struct amd_iommu *iommu)
107{
Joerg Roedelae9b9402008-10-30 17:43:57 +0100108 return iommu->cap & (1UL << IOMMU_CAP_NPCACHE);
Joerg Roedel4da70b92008-06-26 21:28:01 +0200109}
110
Joerg Roedel431b2a22008-07-11 17:14:22 +0200111/****************************************************************************
112 *
Joerg Roedela80dc3e2008-09-11 16:51:41 +0200113 * Interrupt handling functions
114 *
115 ****************************************************************************/
116
Joerg Roedel90008ee2008-09-09 16:41:05 +0200117static void iommu_print_event(void *__evt)
118{
119 u32 *event = __evt;
120 int type = (event[1] >> EVENT_TYPE_SHIFT) & EVENT_TYPE_MASK;
121 int devid = (event[0] >> EVENT_DEVID_SHIFT) & EVENT_DEVID_MASK;
122 int domid = (event[1] >> EVENT_DOMID_SHIFT) & EVENT_DOMID_MASK;
123 int flags = (event[1] >> EVENT_FLAGS_SHIFT) & EVENT_FLAGS_MASK;
124 u64 address = (u64)(((u64)event[3]) << 32) | event[2];
125
126 printk(KERN_ERR "AMD IOMMU: Event logged [");
127
128 switch (type) {
129 case EVENT_TYPE_ILL_DEV:
130 printk("ILLEGAL_DEV_TABLE_ENTRY device=%02x:%02x.%x "
131 "address=0x%016llx flags=0x%04x]\n",
132 PCI_BUS(devid), PCI_SLOT(devid), PCI_FUNC(devid),
133 address, flags);
134 break;
135 case EVENT_TYPE_IO_FAULT:
136 printk("IO_PAGE_FAULT device=%02x:%02x.%x "
137 "domain=0x%04x address=0x%016llx flags=0x%04x]\n",
138 PCI_BUS(devid), PCI_SLOT(devid), PCI_FUNC(devid),
139 domid, address, flags);
140 break;
141 case EVENT_TYPE_DEV_TAB_ERR:
142 printk("DEV_TAB_HARDWARE_ERROR device=%02x:%02x.%x "
143 "address=0x%016llx flags=0x%04x]\n",
144 PCI_BUS(devid), PCI_SLOT(devid), PCI_FUNC(devid),
145 address, flags);
146 break;
147 case EVENT_TYPE_PAGE_TAB_ERR:
148 printk("PAGE_TAB_HARDWARE_ERROR device=%02x:%02x.%x "
149 "domain=0x%04x address=0x%016llx flags=0x%04x]\n",
150 PCI_BUS(devid), PCI_SLOT(devid), PCI_FUNC(devid),
151 domid, address, flags);
152 break;
153 case EVENT_TYPE_ILL_CMD:
154 printk("ILLEGAL_COMMAND_ERROR address=0x%016llx]\n", address);
155 break;
156 case EVENT_TYPE_CMD_HARD_ERR:
157 printk("COMMAND_HARDWARE_ERROR address=0x%016llx "
158 "flags=0x%04x]\n", address, flags);
159 break;
160 case EVENT_TYPE_IOTLB_INV_TO:
161 printk("IOTLB_INV_TIMEOUT device=%02x:%02x.%x "
162 "address=0x%016llx]\n",
163 PCI_BUS(devid), PCI_SLOT(devid), PCI_FUNC(devid),
164 address);
165 break;
166 case EVENT_TYPE_INV_DEV_REQ:
167 printk("INVALID_DEVICE_REQUEST device=%02x:%02x.%x "
168 "address=0x%016llx flags=0x%04x]\n",
169 PCI_BUS(devid), PCI_SLOT(devid), PCI_FUNC(devid),
170 address, flags);
171 break;
172 default:
173 printk(KERN_ERR "UNKNOWN type=0x%02x]\n", type);
174 }
175}
176
177static void iommu_poll_events(struct amd_iommu *iommu)
178{
179 u32 head, tail;
180 unsigned long flags;
181
182 spin_lock_irqsave(&iommu->lock, flags);
183
184 head = readl(iommu->mmio_base + MMIO_EVT_HEAD_OFFSET);
185 tail = readl(iommu->mmio_base + MMIO_EVT_TAIL_OFFSET);
186
187 while (head != tail) {
188 iommu_print_event(iommu->evt_buf + head);
189 head = (head + EVENT_ENTRY_SIZE) % iommu->evt_buf_size;
190 }
191
192 writel(head, iommu->mmio_base + MMIO_EVT_HEAD_OFFSET);
193
194 spin_unlock_irqrestore(&iommu->lock, flags);
195}
196
Joerg Roedela80dc3e2008-09-11 16:51:41 +0200197irqreturn_t amd_iommu_int_handler(int irq, void *data)
198{
Joerg Roedel90008ee2008-09-09 16:41:05 +0200199 struct amd_iommu *iommu;
200
201 list_for_each_entry(iommu, &amd_iommu_list, list)
202 iommu_poll_events(iommu);
203
204 return IRQ_HANDLED;
Joerg Roedela80dc3e2008-09-11 16:51:41 +0200205}
206
207/****************************************************************************
208 *
Joerg Roedel431b2a22008-07-11 17:14:22 +0200209 * IOMMU command queuing functions
210 *
211 ****************************************************************************/
212
213/*
214 * Writes the command to the IOMMUs command buffer and informs the
215 * hardware about the new command. Must be called with iommu->lock held.
216 */
Joerg Roedeld6449532008-07-11 17:14:28 +0200217static int __iommu_queue_command(struct amd_iommu *iommu, struct iommu_cmd *cmd)
Joerg Roedela19ae1e2008-06-26 21:27:55 +0200218{
219 u32 tail, head;
220 u8 *target;
221
222 tail = readl(iommu->mmio_base + MMIO_CMD_TAIL_OFFSET);
Jiri Kosina8a7c5ef2008-08-19 02:13:55 +0200223 target = iommu->cmd_buf + tail;
Joerg Roedela19ae1e2008-06-26 21:27:55 +0200224 memcpy_toio(target, cmd, sizeof(*cmd));
225 tail = (tail + sizeof(*cmd)) % iommu->cmd_buf_size;
226 head = readl(iommu->mmio_base + MMIO_CMD_HEAD_OFFSET);
227 if (tail == head)
228 return -ENOMEM;
229 writel(tail, iommu->mmio_base + MMIO_CMD_TAIL_OFFSET);
230
231 return 0;
232}
233
Joerg Roedel431b2a22008-07-11 17:14:22 +0200234/*
235 * General queuing function for commands. Takes iommu->lock and calls
236 * __iommu_queue_command().
237 */
Joerg Roedeld6449532008-07-11 17:14:28 +0200238static int iommu_queue_command(struct amd_iommu *iommu, struct iommu_cmd *cmd)
Joerg Roedela19ae1e2008-06-26 21:27:55 +0200239{
240 unsigned long flags;
241 int ret;
242
243 spin_lock_irqsave(&iommu->lock, flags);
244 ret = __iommu_queue_command(iommu, cmd);
Joerg Roedel09ee17e2008-12-03 12:19:27 +0100245 if (!ret)
Joerg Roedel0cfd7aa2008-12-10 19:58:00 +0100246 iommu->need_sync = true;
Joerg Roedela19ae1e2008-06-26 21:27:55 +0200247 spin_unlock_irqrestore(&iommu->lock, flags);
248
249 return ret;
250}
251
Joerg Roedel431b2a22008-07-11 17:14:22 +0200252/*
Joerg Roedel8d201962008-12-02 20:34:41 +0100253 * This function waits until an IOMMU has completed a completion
254 * wait command
Joerg Roedel431b2a22008-07-11 17:14:22 +0200255 */
Joerg Roedel8d201962008-12-02 20:34:41 +0100256static void __iommu_wait_for_completion(struct amd_iommu *iommu)
Joerg Roedela19ae1e2008-06-26 21:27:55 +0200257{
Joerg Roedel8d201962008-12-02 20:34:41 +0100258 int ready = 0;
Joerg Roedel519c31b2008-08-14 19:55:15 +0200259 unsigned status = 0;
Joerg Roedel8d201962008-12-02 20:34:41 +0100260 unsigned long i = 0;
Joerg Roedela19ae1e2008-06-26 21:27:55 +0200261
Joerg Roedelda49f6d2008-12-12 14:59:58 +0100262 INC_STATS_COUNTER(compl_wait);
263
Joerg Roedel136f78a2008-07-11 17:14:27 +0200264 while (!ready && (i < EXIT_LOOP_COUNT)) {
265 ++i;
Joerg Roedel519c31b2008-08-14 19:55:15 +0200266 /* wait for the bit to become one */
267 status = readl(iommu->mmio_base + MMIO_STATUS_OFFSET);
268 ready = status & MMIO_STATUS_COM_WAIT_INT_MASK;
Joerg Roedel136f78a2008-07-11 17:14:27 +0200269 }
270
Joerg Roedel519c31b2008-08-14 19:55:15 +0200271 /* set bit back to zero */
272 status &= ~MMIO_STATUS_COM_WAIT_INT_MASK;
273 writel(status, iommu->mmio_base + MMIO_STATUS_OFFSET);
274
Joerg Roedel84df8172008-12-17 16:36:44 +0100275 if (unlikely(i == EXIT_LOOP_COUNT))
276 panic("AMD IOMMU: Completion wait loop failed\n");
Joerg Roedel8d201962008-12-02 20:34:41 +0100277}
278
279/*
280 * This function queues a completion wait command into the command
281 * buffer of an IOMMU
282 */
283static int __iommu_completion_wait(struct amd_iommu *iommu)
284{
285 struct iommu_cmd cmd;
286
287 memset(&cmd, 0, sizeof(cmd));
288 cmd.data[0] = CMD_COMPL_WAIT_INT_MASK;
289 CMD_SET_TYPE(&cmd, CMD_COMPL_WAIT);
290
291 return __iommu_queue_command(iommu, &cmd);
292}
293
294/*
295 * This function is called whenever we need to ensure that the IOMMU has
296 * completed execution of all commands we sent. It sends a
297 * COMPLETION_WAIT command and waits for it to finish. The IOMMU informs
298 * us about that by writing a value to a physical address we pass with
299 * the command.
300 */
301static int iommu_completion_wait(struct amd_iommu *iommu)
302{
303 int ret = 0;
304 unsigned long flags;
305
306 spin_lock_irqsave(&iommu->lock, flags);
307
308 if (!iommu->need_sync)
309 goto out;
310
311 ret = __iommu_completion_wait(iommu);
312
Joerg Roedel0cfd7aa2008-12-10 19:58:00 +0100313 iommu->need_sync = false;
Joerg Roedel8d201962008-12-02 20:34:41 +0100314
315 if (ret)
316 goto out;
317
318 __iommu_wait_for_completion(iommu);
Joerg Roedel84df8172008-12-17 16:36:44 +0100319
Joerg Roedel7e4f88d2008-09-17 14:19:15 +0200320out:
321 spin_unlock_irqrestore(&iommu->lock, flags);
Joerg Roedela19ae1e2008-06-26 21:27:55 +0200322
323 return 0;
324}
325
Joerg Roedel431b2a22008-07-11 17:14:22 +0200326/*
327 * Command send function for invalidating a device table entry
328 */
Joerg Roedela19ae1e2008-06-26 21:27:55 +0200329static int iommu_queue_inv_dev_entry(struct amd_iommu *iommu, u16 devid)
330{
Joerg Roedeld6449532008-07-11 17:14:28 +0200331 struct iommu_cmd cmd;
Joerg Roedelee2fa742008-09-17 13:47:25 +0200332 int ret;
Joerg Roedela19ae1e2008-06-26 21:27:55 +0200333
334 BUG_ON(iommu == NULL);
335
336 memset(&cmd, 0, sizeof(cmd));
337 CMD_SET_TYPE(&cmd, CMD_INV_DEV_ENTRY);
338 cmd.data[0] = devid;
339
Joerg Roedelee2fa742008-09-17 13:47:25 +0200340 ret = iommu_queue_command(iommu, &cmd);
341
Joerg Roedelee2fa742008-09-17 13:47:25 +0200342 return ret;
Joerg Roedela19ae1e2008-06-26 21:27:55 +0200343}
344
Joerg Roedel237b6f32008-12-02 20:54:37 +0100345static void __iommu_build_inv_iommu_pages(struct iommu_cmd *cmd, u64 address,
346 u16 domid, int pde, int s)
347{
348 memset(cmd, 0, sizeof(*cmd));
349 address &= PAGE_MASK;
350 CMD_SET_TYPE(cmd, CMD_INV_IOMMU_PAGES);
351 cmd->data[1] |= domid;
352 cmd->data[2] = lower_32_bits(address);
353 cmd->data[3] = upper_32_bits(address);
354 if (s) /* size bit - we flush more than one 4kb page */
355 cmd->data[2] |= CMD_INV_IOMMU_PAGES_SIZE_MASK;
356 if (pde) /* PDE bit - we wan't flush everything not only the PTEs */
357 cmd->data[2] |= CMD_INV_IOMMU_PAGES_PDE_MASK;
358}
359
Joerg Roedel431b2a22008-07-11 17:14:22 +0200360/*
361 * Generic command send function for invalidaing TLB entries
362 */
Joerg Roedela19ae1e2008-06-26 21:27:55 +0200363static int iommu_queue_inv_iommu_pages(struct amd_iommu *iommu,
364 u64 address, u16 domid, int pde, int s)
365{
Joerg Roedeld6449532008-07-11 17:14:28 +0200366 struct iommu_cmd cmd;
Joerg Roedelee2fa742008-09-17 13:47:25 +0200367 int ret;
Joerg Roedela19ae1e2008-06-26 21:27:55 +0200368
Joerg Roedel237b6f32008-12-02 20:54:37 +0100369 __iommu_build_inv_iommu_pages(&cmd, address, domid, pde, s);
Joerg Roedela19ae1e2008-06-26 21:27:55 +0200370
Joerg Roedelee2fa742008-09-17 13:47:25 +0200371 ret = iommu_queue_command(iommu, &cmd);
372
Joerg Roedelee2fa742008-09-17 13:47:25 +0200373 return ret;
Joerg Roedela19ae1e2008-06-26 21:27:55 +0200374}
375
Joerg Roedel431b2a22008-07-11 17:14:22 +0200376/*
377 * TLB invalidation function which is called from the mapping functions.
378 * It invalidates a single PTE if the range to flush is within a single
379 * page. Otherwise it flushes the whole TLB of the IOMMU.
380 */
Joerg Roedela19ae1e2008-06-26 21:27:55 +0200381static int iommu_flush_pages(struct amd_iommu *iommu, u16 domid,
382 u64 address, size_t size)
383{
Joerg Roedel999ba412008-07-03 19:35:08 +0200384 int s = 0;
Joerg Roedele3c449f2008-10-15 22:02:11 -0700385 unsigned pages = iommu_num_pages(address, size, PAGE_SIZE);
Joerg Roedela19ae1e2008-06-26 21:27:55 +0200386
387 address &= PAGE_MASK;
388
Joerg Roedel999ba412008-07-03 19:35:08 +0200389 if (pages > 1) {
390 /*
391 * If we have to flush more than one page, flush all
392 * TLB entries for this domain
393 */
394 address = CMD_INV_IOMMU_ALL_PAGES_ADDRESS;
395 s = 1;
Joerg Roedela19ae1e2008-06-26 21:27:55 +0200396 }
397
Joerg Roedel999ba412008-07-03 19:35:08 +0200398 iommu_queue_inv_iommu_pages(iommu, address, domid, 0, s);
399
Joerg Roedela19ae1e2008-06-26 21:27:55 +0200400 return 0;
401}
Joerg Roedelb6c02712008-06-26 21:27:53 +0200402
Joerg Roedel1c655772008-09-04 18:40:05 +0200403/* Flush the whole IO/TLB for a given protection domain */
404static void iommu_flush_tlb(struct amd_iommu *iommu, u16 domid)
405{
406 u64 address = CMD_INV_IOMMU_ALL_PAGES_ADDRESS;
407
408 iommu_queue_inv_iommu_pages(iommu, address, domid, 0, 1);
409}
410
Joerg Roedel43f49602008-12-02 21:01:12 +0100411#ifdef CONFIG_IOMMU_API
412/*
413 * This function is used to flush the IO/TLB for a given protection domain
414 * on every IOMMU in the system
415 */
416static void iommu_flush_domain(u16 domid)
417{
418 unsigned long flags;
419 struct amd_iommu *iommu;
420 struct iommu_cmd cmd;
421
422 __iommu_build_inv_iommu_pages(&cmd, CMD_INV_IOMMU_ALL_PAGES_ADDRESS,
423 domid, 1, 1);
424
425 list_for_each_entry(iommu, &amd_iommu_list, list) {
426 spin_lock_irqsave(&iommu->lock, flags);
427 __iommu_queue_command(iommu, &cmd);
428 __iommu_completion_wait(iommu);
429 __iommu_wait_for_completion(iommu);
430 spin_unlock_irqrestore(&iommu->lock, flags);
431 }
432}
433#endif
434
Joerg Roedel431b2a22008-07-11 17:14:22 +0200435/****************************************************************************
436 *
437 * The functions below are used the create the page table mappings for
438 * unity mapped regions.
439 *
440 ****************************************************************************/
441
442/*
443 * Generic mapping functions. It maps a physical address into a DMA
444 * address space. It allocates the page table pages if necessary.
445 * In the future it can be extended to a generic mapping function
446 * supporting all features of AMD IOMMU page tables like level skipping
447 * and full 64 bit address spaces.
448 */
Joerg Roedel38e817f2008-12-02 17:27:52 +0100449static int iommu_map_page(struct protection_domain *dom,
450 unsigned long bus_addr,
451 unsigned long phys_addr,
452 int prot)
Joerg Roedelbd0e5212008-06-26 21:27:56 +0200453{
454 u64 __pte, *pte, *page;
455
456 bus_addr = PAGE_ALIGN(bus_addr);
Joerg Roedelbb9d4ff2008-12-04 15:59:48 +0100457 phys_addr = PAGE_ALIGN(phys_addr);
Joerg Roedelbd0e5212008-06-26 21:27:56 +0200458
459 /* only support 512GB address spaces for now */
460 if (bus_addr > IOMMU_MAP_SIZE_L3 || !(prot & IOMMU_PROT_MASK))
461 return -EINVAL;
462
463 pte = &dom->pt_root[IOMMU_PTE_L2_INDEX(bus_addr)];
464
465 if (!IOMMU_PTE_PRESENT(*pte)) {
466 page = (u64 *)get_zeroed_page(GFP_KERNEL);
467 if (!page)
468 return -ENOMEM;
469 *pte = IOMMU_L2_PDE(virt_to_phys(page));
470 }
471
472 pte = IOMMU_PTE_PAGE(*pte);
473 pte = &pte[IOMMU_PTE_L1_INDEX(bus_addr)];
474
475 if (!IOMMU_PTE_PRESENT(*pte)) {
476 page = (u64 *)get_zeroed_page(GFP_KERNEL);
477 if (!page)
478 return -ENOMEM;
479 *pte = IOMMU_L1_PDE(virt_to_phys(page));
480 }
481
482 pte = IOMMU_PTE_PAGE(*pte);
483 pte = &pte[IOMMU_PTE_L0_INDEX(bus_addr)];
484
485 if (IOMMU_PTE_PRESENT(*pte))
486 return -EBUSY;
487
488 __pte = phys_addr | IOMMU_PTE_P;
489 if (prot & IOMMU_PROT_IR)
490 __pte |= IOMMU_PTE_IR;
491 if (prot & IOMMU_PROT_IW)
492 __pte |= IOMMU_PTE_IW;
493
494 *pte = __pte;
495
496 return 0;
497}
498
Joerg Roedeleb74ff62008-12-02 19:59:10 +0100499#ifdef CONFIG_IOMMU_API
500static void iommu_unmap_page(struct protection_domain *dom,
501 unsigned long bus_addr)
502{
503 u64 *pte;
504
505 pte = &dom->pt_root[IOMMU_PTE_L2_INDEX(bus_addr)];
506
507 if (!IOMMU_PTE_PRESENT(*pte))
508 return;
509
510 pte = IOMMU_PTE_PAGE(*pte);
511 pte = &pte[IOMMU_PTE_L1_INDEX(bus_addr)];
512
513 if (!IOMMU_PTE_PRESENT(*pte))
514 return;
515
516 pte = IOMMU_PTE_PAGE(*pte);
517 pte = &pte[IOMMU_PTE_L1_INDEX(bus_addr)];
518
519 *pte = 0;
520}
521#endif
522
Joerg Roedel431b2a22008-07-11 17:14:22 +0200523/*
524 * This function checks if a specific unity mapping entry is needed for
525 * this specific IOMMU.
526 */
Joerg Roedelbd0e5212008-06-26 21:27:56 +0200527static int iommu_for_unity_map(struct amd_iommu *iommu,
528 struct unity_map_entry *entry)
529{
530 u16 bdf, i;
531
532 for (i = entry->devid_start; i <= entry->devid_end; ++i) {
533 bdf = amd_iommu_alias_table[i];
534 if (amd_iommu_rlookup_table[bdf] == iommu)
535 return 1;
536 }
537
538 return 0;
539}
540
Joerg Roedel431b2a22008-07-11 17:14:22 +0200541/*
542 * Init the unity mappings for a specific IOMMU in the system
543 *
544 * Basically iterates over all unity mapping entries and applies them to
545 * the default domain DMA of that IOMMU if necessary.
546 */
Joerg Roedelbd0e5212008-06-26 21:27:56 +0200547static int iommu_init_unity_mappings(struct amd_iommu *iommu)
548{
549 struct unity_map_entry *entry;
550 int ret;
551
552 list_for_each_entry(entry, &amd_iommu_unity_map, list) {
553 if (!iommu_for_unity_map(iommu, entry))
554 continue;
555 ret = dma_ops_unity_map(iommu->default_dom, entry);
556 if (ret)
557 return ret;
558 }
559
560 return 0;
561}
562
Joerg Roedel431b2a22008-07-11 17:14:22 +0200563/*
564 * This function actually applies the mapping to the page table of the
565 * dma_ops domain.
566 */
Joerg Roedelbd0e5212008-06-26 21:27:56 +0200567static int dma_ops_unity_map(struct dma_ops_domain *dma_dom,
568 struct unity_map_entry *e)
569{
570 u64 addr;
571 int ret;
572
573 for (addr = e->address_start; addr < e->address_end;
574 addr += PAGE_SIZE) {
Joerg Roedel38e817f2008-12-02 17:27:52 +0100575 ret = iommu_map_page(&dma_dom->domain, addr, addr, e->prot);
Joerg Roedelbd0e5212008-06-26 21:27:56 +0200576 if (ret)
577 return ret;
578 /*
579 * if unity mapping is in aperture range mark the page
580 * as allocated in the aperture
581 */
582 if (addr < dma_dom->aperture_size)
583 __set_bit(addr >> PAGE_SHIFT, dma_dom->bitmap);
584 }
585
586 return 0;
587}
588
Joerg Roedel431b2a22008-07-11 17:14:22 +0200589/*
590 * Inits the unity mappings required for a specific device
591 */
Joerg Roedelbd0e5212008-06-26 21:27:56 +0200592static int init_unity_mappings_for_device(struct dma_ops_domain *dma_dom,
593 u16 devid)
594{
595 struct unity_map_entry *e;
596 int ret;
597
598 list_for_each_entry(e, &amd_iommu_unity_map, list) {
599 if (!(devid >= e->devid_start && devid <= e->devid_end))
600 continue;
601 ret = dma_ops_unity_map(dma_dom, e);
602 if (ret)
603 return ret;
604 }
605
606 return 0;
607}
608
Joerg Roedel431b2a22008-07-11 17:14:22 +0200609/****************************************************************************
610 *
611 * The next functions belong to the address allocator for the dma_ops
612 * interface functions. They work like the allocators in the other IOMMU
613 * drivers. Its basically a bitmap which marks the allocated pages in
614 * the aperture. Maybe it could be enhanced in the future to a more
615 * efficient allocator.
616 *
617 ****************************************************************************/
Joerg Roedeld3086442008-06-26 21:27:57 +0200618
Joerg Roedel431b2a22008-07-11 17:14:22 +0200619/*
620 * The address allocator core function.
621 *
622 * called with domain->lock held
623 */
Joerg Roedeld3086442008-06-26 21:27:57 +0200624static unsigned long dma_ops_alloc_addresses(struct device *dev,
625 struct dma_ops_domain *dom,
Joerg Roedel6d4f343f2008-09-04 19:18:02 +0200626 unsigned int pages,
Joerg Roedel832a90c2008-09-18 15:54:23 +0200627 unsigned long align_mask,
628 u64 dma_mask)
Joerg Roedeld3086442008-06-26 21:27:57 +0200629{
FUJITA Tomonori40becd82008-09-29 00:06:36 +0900630 unsigned long limit;
Joerg Roedeld3086442008-06-26 21:27:57 +0200631 unsigned long address;
Joerg Roedeld3086442008-06-26 21:27:57 +0200632 unsigned long boundary_size;
633
634 boundary_size = ALIGN(dma_get_seg_boundary(dev) + 1,
635 PAGE_SIZE) >> PAGE_SHIFT;
FUJITA Tomonori40becd82008-09-29 00:06:36 +0900636 limit = iommu_device_max_index(dom->aperture_size >> PAGE_SHIFT, 0,
637 dma_mask >> PAGE_SHIFT);
Joerg Roedeld3086442008-06-26 21:27:57 +0200638
Joerg Roedel1c655772008-09-04 18:40:05 +0200639 if (dom->next_bit >= limit) {
Joerg Roedeld3086442008-06-26 21:27:57 +0200640 dom->next_bit = 0;
Joerg Roedel1c655772008-09-04 18:40:05 +0200641 dom->need_flush = true;
642 }
Joerg Roedeld3086442008-06-26 21:27:57 +0200643
644 address = iommu_area_alloc(dom->bitmap, limit, dom->next_bit, pages,
Joerg Roedel6d4f343f2008-09-04 19:18:02 +0200645 0 , boundary_size, align_mask);
Joerg Roedel1c655772008-09-04 18:40:05 +0200646 if (address == -1) {
Joerg Roedeld3086442008-06-26 21:27:57 +0200647 address = iommu_area_alloc(dom->bitmap, limit, 0, pages,
Joerg Roedel6d4f343f2008-09-04 19:18:02 +0200648 0, boundary_size, align_mask);
Joerg Roedel1c655772008-09-04 18:40:05 +0200649 dom->need_flush = true;
650 }
Joerg Roedeld3086442008-06-26 21:27:57 +0200651
652 if (likely(address != -1)) {
Joerg Roedeld3086442008-06-26 21:27:57 +0200653 dom->next_bit = address + pages;
654 address <<= PAGE_SHIFT;
655 } else
656 address = bad_dma_address;
657
658 WARN_ON((address + (PAGE_SIZE*pages)) > dom->aperture_size);
659
660 return address;
661}
662
Joerg Roedel431b2a22008-07-11 17:14:22 +0200663/*
664 * The address free function.
665 *
666 * called with domain->lock held
667 */
Joerg Roedeld3086442008-06-26 21:27:57 +0200668static void dma_ops_free_addresses(struct dma_ops_domain *dom,
669 unsigned long address,
670 unsigned int pages)
671{
672 address >>= PAGE_SHIFT;
673 iommu_area_free(dom->bitmap, address, pages);
Joerg Roedel80be3082008-11-06 14:59:05 +0100674
Joerg Roedel8501c452008-11-17 19:11:46 +0100675 if (address >= dom->next_bit)
Joerg Roedel80be3082008-11-06 14:59:05 +0100676 dom->need_flush = true;
Joerg Roedeld3086442008-06-26 21:27:57 +0200677}
678
Joerg Roedel431b2a22008-07-11 17:14:22 +0200679/****************************************************************************
680 *
681 * The next functions belong to the domain allocation. A domain is
682 * allocated for every IOMMU as the default domain. If device isolation
683 * is enabled, every device get its own domain. The most important thing
684 * about domains is the page table mapping the DMA address space they
685 * contain.
686 *
687 ****************************************************************************/
688
Joerg Roedelec487d12008-06-26 21:27:58 +0200689static u16 domain_id_alloc(void)
690{
691 unsigned long flags;
692 int id;
693
694 write_lock_irqsave(&amd_iommu_devtable_lock, flags);
695 id = find_first_zero_bit(amd_iommu_pd_alloc_bitmap, MAX_DOMAIN_ID);
696 BUG_ON(id == 0);
697 if (id > 0 && id < MAX_DOMAIN_ID)
698 __set_bit(id, amd_iommu_pd_alloc_bitmap);
699 else
700 id = 0;
701 write_unlock_irqrestore(&amd_iommu_devtable_lock, flags);
702
703 return id;
704}
705
Joerg Roedela2acfb72008-12-02 18:28:53 +0100706#ifdef CONFIG_IOMMU_API
707static void domain_id_free(int id)
708{
709 unsigned long flags;
710
711 write_lock_irqsave(&amd_iommu_devtable_lock, flags);
712 if (id > 0 && id < MAX_DOMAIN_ID)
713 __clear_bit(id, amd_iommu_pd_alloc_bitmap);
714 write_unlock_irqrestore(&amd_iommu_devtable_lock, flags);
715}
716#endif
717
Joerg Roedel431b2a22008-07-11 17:14:22 +0200718/*
719 * Used to reserve address ranges in the aperture (e.g. for exclusion
720 * ranges.
721 */
Joerg Roedelec487d12008-06-26 21:27:58 +0200722static void dma_ops_reserve_addresses(struct dma_ops_domain *dom,
723 unsigned long start_page,
724 unsigned int pages)
725{
726 unsigned int last_page = dom->aperture_size >> PAGE_SHIFT;
727
728 if (start_page + pages > last_page)
729 pages = last_page - start_page;
730
FUJITA Tomonorid26dbc52008-09-22 22:35:07 +0900731 iommu_area_reserve(dom->bitmap, start_page, pages);
Joerg Roedelec487d12008-06-26 21:27:58 +0200732}
733
Joerg Roedel86db2e52008-12-02 18:20:21 +0100734static void free_pagetable(struct protection_domain *domain)
Joerg Roedelec487d12008-06-26 21:27:58 +0200735{
736 int i, j;
737 u64 *p1, *p2, *p3;
738
Joerg Roedel86db2e52008-12-02 18:20:21 +0100739 p1 = domain->pt_root;
Joerg Roedelec487d12008-06-26 21:27:58 +0200740
741 if (!p1)
742 return;
743
744 for (i = 0; i < 512; ++i) {
745 if (!IOMMU_PTE_PRESENT(p1[i]))
746 continue;
747
748 p2 = IOMMU_PTE_PAGE(p1[i]);
Joerg Roedel3cc3d842008-12-04 16:44:31 +0100749 for (j = 0; j < 512; ++j) {
Joerg Roedelec487d12008-06-26 21:27:58 +0200750 if (!IOMMU_PTE_PRESENT(p2[j]))
751 continue;
752 p3 = IOMMU_PTE_PAGE(p2[j]);
753 free_page((unsigned long)p3);
754 }
755
756 free_page((unsigned long)p2);
757 }
758
759 free_page((unsigned long)p1);
Joerg Roedel86db2e52008-12-02 18:20:21 +0100760
761 domain->pt_root = NULL;
Joerg Roedelec487d12008-06-26 21:27:58 +0200762}
763
Joerg Roedel431b2a22008-07-11 17:14:22 +0200764/*
765 * Free a domain, only used if something went wrong in the
766 * allocation path and we need to free an already allocated page table
767 */
Joerg Roedelec487d12008-06-26 21:27:58 +0200768static void dma_ops_domain_free(struct dma_ops_domain *dom)
769{
770 if (!dom)
771 return;
772
Joerg Roedel86db2e52008-12-02 18:20:21 +0100773 free_pagetable(&dom->domain);
Joerg Roedelec487d12008-06-26 21:27:58 +0200774
775 kfree(dom->pte_pages);
776
777 kfree(dom->bitmap);
778
779 kfree(dom);
780}
781
Joerg Roedel431b2a22008-07-11 17:14:22 +0200782/*
783 * Allocates a new protection domain usable for the dma_ops functions.
784 * It also intializes the page table and the address allocator data
785 * structures required for the dma_ops interface
786 */
Joerg Roedelec487d12008-06-26 21:27:58 +0200787static struct dma_ops_domain *dma_ops_domain_alloc(struct amd_iommu *iommu,
788 unsigned order)
789{
790 struct dma_ops_domain *dma_dom;
791 unsigned i, num_pte_pages;
792 u64 *l2_pde;
793 u64 address;
794
795 /*
796 * Currently the DMA aperture must be between 32 MB and 1GB in size
797 */
798 if ((order < 25) || (order > 30))
799 return NULL;
800
801 dma_dom = kzalloc(sizeof(struct dma_ops_domain), GFP_KERNEL);
802 if (!dma_dom)
803 return NULL;
804
805 spin_lock_init(&dma_dom->domain.lock);
806
807 dma_dom->domain.id = domain_id_alloc();
808 if (dma_dom->domain.id == 0)
809 goto free_dma_dom;
810 dma_dom->domain.mode = PAGE_MODE_3_LEVEL;
811 dma_dom->domain.pt_root = (void *)get_zeroed_page(GFP_KERNEL);
Joerg Roedel9fdb19d2008-12-02 17:46:25 +0100812 dma_dom->domain.flags = PD_DMA_OPS_MASK;
Joerg Roedelec487d12008-06-26 21:27:58 +0200813 dma_dom->domain.priv = dma_dom;
814 if (!dma_dom->domain.pt_root)
815 goto free_dma_dom;
816 dma_dom->aperture_size = (1ULL << order);
817 dma_dom->bitmap = kzalloc(dma_dom->aperture_size / (PAGE_SIZE * 8),
818 GFP_KERNEL);
819 if (!dma_dom->bitmap)
820 goto free_dma_dom;
821 /*
822 * mark the first page as allocated so we never return 0 as
823 * a valid dma-address. So we can use 0 as error value
824 */
825 dma_dom->bitmap[0] = 1;
826 dma_dom->next_bit = 0;
827
Joerg Roedel1c655772008-09-04 18:40:05 +0200828 dma_dom->need_flush = false;
Joerg Roedelbd60b732008-09-11 10:24:48 +0200829 dma_dom->target_dev = 0xffff;
Joerg Roedel1c655772008-09-04 18:40:05 +0200830
Joerg Roedel431b2a22008-07-11 17:14:22 +0200831 /* Intialize the exclusion range if necessary */
Joerg Roedelec487d12008-06-26 21:27:58 +0200832 if (iommu->exclusion_start &&
833 iommu->exclusion_start < dma_dom->aperture_size) {
834 unsigned long startpage = iommu->exclusion_start >> PAGE_SHIFT;
Joerg Roedele3c449f2008-10-15 22:02:11 -0700835 int pages = iommu_num_pages(iommu->exclusion_start,
836 iommu->exclusion_length,
837 PAGE_SIZE);
Joerg Roedelec487d12008-06-26 21:27:58 +0200838 dma_ops_reserve_addresses(dma_dom, startpage, pages);
839 }
840
Joerg Roedel431b2a22008-07-11 17:14:22 +0200841 /*
842 * At the last step, build the page tables so we don't need to
843 * allocate page table pages in the dma_ops mapping/unmapping
844 * path.
845 */
Joerg Roedelec487d12008-06-26 21:27:58 +0200846 num_pte_pages = dma_dom->aperture_size / (PAGE_SIZE * 512);
847 dma_dom->pte_pages = kzalloc(num_pte_pages * sizeof(void *),
848 GFP_KERNEL);
849 if (!dma_dom->pte_pages)
850 goto free_dma_dom;
851
852 l2_pde = (u64 *)get_zeroed_page(GFP_KERNEL);
853 if (l2_pde == NULL)
854 goto free_dma_dom;
855
856 dma_dom->domain.pt_root[0] = IOMMU_L2_PDE(virt_to_phys(l2_pde));
857
858 for (i = 0; i < num_pte_pages; ++i) {
859 dma_dom->pte_pages[i] = (u64 *)get_zeroed_page(GFP_KERNEL);
860 if (!dma_dom->pte_pages[i])
861 goto free_dma_dom;
862 address = virt_to_phys(dma_dom->pte_pages[i]);
863 l2_pde[i] = IOMMU_L1_PDE(address);
864 }
865
866 return dma_dom;
867
868free_dma_dom:
869 dma_ops_domain_free(dma_dom);
870
871 return NULL;
872}
873
Joerg Roedel431b2a22008-07-11 17:14:22 +0200874/*
Joerg Roedel5b28df62008-12-02 17:49:42 +0100875 * little helper function to check whether a given protection domain is a
876 * dma_ops domain
877 */
878static bool dma_ops_domain(struct protection_domain *domain)
879{
880 return domain->flags & PD_DMA_OPS_MASK;
881}
882
883/*
Joerg Roedel431b2a22008-07-11 17:14:22 +0200884 * Find out the protection domain structure for a given PCI device. This
885 * will give us the pointer to the page table root for example.
886 */
Joerg Roedelb20ac0d2008-06-26 21:27:59 +0200887static struct protection_domain *domain_for_device(u16 devid)
888{
889 struct protection_domain *dom;
890 unsigned long flags;
891
892 read_lock_irqsave(&amd_iommu_devtable_lock, flags);
893 dom = amd_iommu_pd_table[devid];
894 read_unlock_irqrestore(&amd_iommu_devtable_lock, flags);
895
896 return dom;
897}
898
Joerg Roedel431b2a22008-07-11 17:14:22 +0200899/*
900 * If a device is not yet associated with a domain, this function does
901 * assigns it visible for the hardware
902 */
Joerg Roedelf1179dc2008-12-10 14:39:51 +0100903static void attach_device(struct amd_iommu *iommu,
904 struct protection_domain *domain,
905 u16 devid)
Joerg Roedelb20ac0d2008-06-26 21:27:59 +0200906{
907 unsigned long flags;
Joerg Roedelb20ac0d2008-06-26 21:27:59 +0200908 u64 pte_root = virt_to_phys(domain->pt_root);
909
Joerg Roedel863c74e2008-12-02 17:56:36 +0100910 domain->dev_cnt += 1;
911
Joerg Roedel38ddf412008-09-11 10:38:32 +0200912 pte_root |= (domain->mode & DEV_ENTRY_MODE_MASK)
913 << DEV_ENTRY_MODE_SHIFT;
914 pte_root |= IOMMU_PTE_IR | IOMMU_PTE_IW | IOMMU_PTE_P | IOMMU_PTE_TV;
Joerg Roedelb20ac0d2008-06-26 21:27:59 +0200915
916 write_lock_irqsave(&amd_iommu_devtable_lock, flags);
Joerg Roedel38ddf412008-09-11 10:38:32 +0200917 amd_iommu_dev_table[devid].data[0] = lower_32_bits(pte_root);
918 amd_iommu_dev_table[devid].data[1] = upper_32_bits(pte_root);
Joerg Roedelb20ac0d2008-06-26 21:27:59 +0200919 amd_iommu_dev_table[devid].data[2] = domain->id;
920
921 amd_iommu_pd_table[devid] = domain;
922 write_unlock_irqrestore(&amd_iommu_devtable_lock, flags);
923
924 iommu_queue_inv_dev_entry(iommu, devid);
Joerg Roedelb20ac0d2008-06-26 21:27:59 +0200925}
926
Joerg Roedel355bf552008-12-08 12:02:41 +0100927/*
928 * Removes a device from a protection domain (unlocked)
929 */
930static void __detach_device(struct protection_domain *domain, u16 devid)
931{
932
933 /* lock domain */
934 spin_lock(&domain->lock);
935
936 /* remove domain from the lookup table */
937 amd_iommu_pd_table[devid] = NULL;
938
939 /* remove entry from the device table seen by the hardware */
940 amd_iommu_dev_table[devid].data[0] = IOMMU_PTE_P | IOMMU_PTE_TV;
941 amd_iommu_dev_table[devid].data[1] = 0;
942 amd_iommu_dev_table[devid].data[2] = 0;
943
944 /* decrease reference counter */
945 domain->dev_cnt -= 1;
946
947 /* ready */
948 spin_unlock(&domain->lock);
949}
950
951/*
952 * Removes a device from a protection domain (with devtable_lock held)
953 */
954static void detach_device(struct protection_domain *domain, u16 devid)
955{
956 unsigned long flags;
957
958 /* lock device table */
959 write_lock_irqsave(&amd_iommu_devtable_lock, flags);
960 __detach_device(domain, devid);
961 write_unlock_irqrestore(&amd_iommu_devtable_lock, flags);
962}
Joerg Roedele275a2a2008-12-10 18:27:25 +0100963
964static int device_change_notifier(struct notifier_block *nb,
965 unsigned long action, void *data)
966{
967 struct device *dev = data;
968 struct pci_dev *pdev = to_pci_dev(dev);
969 u16 devid = calc_devid(pdev->bus->number, pdev->devfn);
970 struct protection_domain *domain;
971 struct dma_ops_domain *dma_domain;
972 struct amd_iommu *iommu;
Joerg Roedel1ac4cbb2008-12-10 19:33:26 +0100973 int order = amd_iommu_aperture_order;
974 unsigned long flags;
Joerg Roedele275a2a2008-12-10 18:27:25 +0100975
976 if (devid > amd_iommu_last_bdf)
977 goto out;
978
979 devid = amd_iommu_alias_table[devid];
980
981 iommu = amd_iommu_rlookup_table[devid];
982 if (iommu == NULL)
983 goto out;
984
985 domain = domain_for_device(devid);
986
987 if (domain && !dma_ops_domain(domain))
988 WARN_ONCE(1, "AMD IOMMU WARNING: device %s already bound "
989 "to a non-dma-ops domain\n", dev_name(dev));
990
991 switch (action) {
992 case BUS_NOTIFY_BOUND_DRIVER:
993 if (domain)
994 goto out;
995 dma_domain = find_protection_domain(devid);
996 if (!dma_domain)
997 dma_domain = iommu->default_dom;
998 attach_device(iommu, &dma_domain->domain, devid);
999 printk(KERN_INFO "AMD IOMMU: Using protection domain %d for "
1000 "device %s\n", dma_domain->domain.id, dev_name(dev));
1001 break;
1002 case BUS_NOTIFY_UNBIND_DRIVER:
1003 if (!domain)
1004 goto out;
1005 detach_device(domain, devid);
1006 break;
Joerg Roedel1ac4cbb2008-12-10 19:33:26 +01001007 case BUS_NOTIFY_ADD_DEVICE:
1008 /* allocate a protection domain if a device is added */
1009 dma_domain = find_protection_domain(devid);
1010 if (dma_domain)
1011 goto out;
1012 dma_domain = dma_ops_domain_alloc(iommu, order);
1013 if (!dma_domain)
1014 goto out;
1015 dma_domain->target_dev = devid;
1016
1017 spin_lock_irqsave(&iommu_pd_list_lock, flags);
1018 list_add_tail(&dma_domain->list, &iommu_pd_list);
1019 spin_unlock_irqrestore(&iommu_pd_list_lock, flags);
1020
1021 break;
Joerg Roedele275a2a2008-12-10 18:27:25 +01001022 default:
1023 goto out;
1024 }
1025
1026 iommu_queue_inv_dev_entry(iommu, devid);
1027 iommu_completion_wait(iommu);
1028
1029out:
1030 return 0;
1031}
1032
1033struct notifier_block device_nb = {
1034 .notifier_call = device_change_notifier,
1035};
Joerg Roedel355bf552008-12-08 12:02:41 +01001036
Joerg Roedel431b2a22008-07-11 17:14:22 +02001037/*****************************************************************************
1038 *
1039 * The next functions belong to the dma_ops mapping/unmapping code.
1040 *
1041 *****************************************************************************/
1042
1043/*
Joerg Roedeldbcc1122008-09-04 15:04:26 +02001044 * This function checks if the driver got a valid device from the caller to
1045 * avoid dereferencing invalid pointers.
1046 */
1047static bool check_device(struct device *dev)
1048{
1049 if (!dev || !dev->dma_mask)
1050 return false;
1051
1052 return true;
1053}
1054
1055/*
Joerg Roedelbd60b732008-09-11 10:24:48 +02001056 * In this function the list of preallocated protection domains is traversed to
1057 * find the domain for a specific device
1058 */
1059static struct dma_ops_domain *find_protection_domain(u16 devid)
1060{
1061 struct dma_ops_domain *entry, *ret = NULL;
1062 unsigned long flags;
1063
1064 if (list_empty(&iommu_pd_list))
1065 return NULL;
1066
1067 spin_lock_irqsave(&iommu_pd_list_lock, flags);
1068
1069 list_for_each_entry(entry, &iommu_pd_list, list) {
1070 if (entry->target_dev == devid) {
1071 ret = entry;
Joerg Roedelbd60b732008-09-11 10:24:48 +02001072 break;
1073 }
1074 }
1075
1076 spin_unlock_irqrestore(&iommu_pd_list_lock, flags);
1077
1078 return ret;
1079}
1080
1081/*
Joerg Roedel431b2a22008-07-11 17:14:22 +02001082 * In the dma_ops path we only have the struct device. This function
1083 * finds the corresponding IOMMU, the protection domain and the
1084 * requestor id for a given device.
1085 * If the device is not yet associated with a domain this is also done
1086 * in this function.
1087 */
Joerg Roedelb20ac0d2008-06-26 21:27:59 +02001088static int get_device_resources(struct device *dev,
1089 struct amd_iommu **iommu,
1090 struct protection_domain **domain,
1091 u16 *bdf)
1092{
1093 struct dma_ops_domain *dma_dom;
1094 struct pci_dev *pcidev;
1095 u16 _bdf;
1096
Joerg Roedeldbcc1122008-09-04 15:04:26 +02001097 *iommu = NULL;
1098 *domain = NULL;
1099 *bdf = 0xffff;
1100
1101 if (dev->bus != &pci_bus_type)
1102 return 0;
Joerg Roedelb20ac0d2008-06-26 21:27:59 +02001103
1104 pcidev = to_pci_dev(dev);
Joerg Roedeld591b0a2008-07-11 17:14:35 +02001105 _bdf = calc_devid(pcidev->bus->number, pcidev->devfn);
Joerg Roedelb20ac0d2008-06-26 21:27:59 +02001106
Joerg Roedel431b2a22008-07-11 17:14:22 +02001107 /* device not translated by any IOMMU in the system? */
Joerg Roedeldbcc1122008-09-04 15:04:26 +02001108 if (_bdf > amd_iommu_last_bdf)
Joerg Roedelb20ac0d2008-06-26 21:27:59 +02001109 return 0;
Joerg Roedelb20ac0d2008-06-26 21:27:59 +02001110
1111 *bdf = amd_iommu_alias_table[_bdf];
1112
1113 *iommu = amd_iommu_rlookup_table[*bdf];
1114 if (*iommu == NULL)
1115 return 0;
Joerg Roedelb20ac0d2008-06-26 21:27:59 +02001116 *domain = domain_for_device(*bdf);
1117 if (*domain == NULL) {
Joerg Roedelbd60b732008-09-11 10:24:48 +02001118 dma_dom = find_protection_domain(*bdf);
1119 if (!dma_dom)
1120 dma_dom = (*iommu)->default_dom;
Joerg Roedelb20ac0d2008-06-26 21:27:59 +02001121 *domain = &dma_dom->domain;
Joerg Roedelf1179dc2008-12-10 14:39:51 +01001122 attach_device(*iommu, *domain, *bdf);
Joerg Roedelb20ac0d2008-06-26 21:27:59 +02001123 printk(KERN_INFO "AMD IOMMU: Using protection domain %d for "
Joerg Roedelab896722008-12-10 19:43:07 +01001124 "device %s\n", (*domain)->id, dev_name(dev));
Joerg Roedelb20ac0d2008-06-26 21:27:59 +02001125 }
1126
Joerg Roedelf91ba192008-11-25 12:56:12 +01001127 if (domain_for_device(_bdf) == NULL)
Joerg Roedelf1179dc2008-12-10 14:39:51 +01001128 attach_device(*iommu, *domain, _bdf);
Joerg Roedelf91ba192008-11-25 12:56:12 +01001129
Joerg Roedelb20ac0d2008-06-26 21:27:59 +02001130 return 1;
1131}
1132
Joerg Roedel431b2a22008-07-11 17:14:22 +02001133/*
1134 * This is the generic map function. It maps one 4kb page at paddr to
1135 * the given address in the DMA address space for the domain.
1136 */
Joerg Roedelcb76c322008-06-26 21:28:00 +02001137static dma_addr_t dma_ops_domain_map(struct amd_iommu *iommu,
1138 struct dma_ops_domain *dom,
1139 unsigned long address,
1140 phys_addr_t paddr,
1141 int direction)
1142{
1143 u64 *pte, __pte;
1144
1145 WARN_ON(address > dom->aperture_size);
1146
1147 paddr &= PAGE_MASK;
1148
1149 pte = dom->pte_pages[IOMMU_PTE_L1_INDEX(address)];
1150 pte += IOMMU_PTE_L0_INDEX(address);
1151
1152 __pte = paddr | IOMMU_PTE_P | IOMMU_PTE_FC;
1153
1154 if (direction == DMA_TO_DEVICE)
1155 __pte |= IOMMU_PTE_IR;
1156 else if (direction == DMA_FROM_DEVICE)
1157 __pte |= IOMMU_PTE_IW;
1158 else if (direction == DMA_BIDIRECTIONAL)
1159 __pte |= IOMMU_PTE_IR | IOMMU_PTE_IW;
1160
1161 WARN_ON(*pte);
1162
1163 *pte = __pte;
1164
1165 return (dma_addr_t)address;
1166}
1167
Joerg Roedel431b2a22008-07-11 17:14:22 +02001168/*
1169 * The generic unmapping function for on page in the DMA address space.
1170 */
Joerg Roedelcb76c322008-06-26 21:28:00 +02001171static void dma_ops_domain_unmap(struct amd_iommu *iommu,
1172 struct dma_ops_domain *dom,
1173 unsigned long address)
1174{
1175 u64 *pte;
1176
1177 if (address >= dom->aperture_size)
1178 return;
1179
Joerg Roedel8ad909c2008-12-08 14:37:20 +01001180 WARN_ON(address & ~PAGE_MASK || address >= dom->aperture_size);
Joerg Roedelcb76c322008-06-26 21:28:00 +02001181
1182 pte = dom->pte_pages[IOMMU_PTE_L1_INDEX(address)];
1183 pte += IOMMU_PTE_L0_INDEX(address);
1184
1185 WARN_ON(!*pte);
1186
1187 *pte = 0ULL;
1188}
1189
Joerg Roedel431b2a22008-07-11 17:14:22 +02001190/*
1191 * This function contains common code for mapping of a physically
Joerg Roedel24f81162008-12-08 14:25:39 +01001192 * contiguous memory region into DMA address space. It is used by all
1193 * mapping functions provided with this IOMMU driver.
Joerg Roedel431b2a22008-07-11 17:14:22 +02001194 * Must be called with the domain lock held.
1195 */
Joerg Roedelcb76c322008-06-26 21:28:00 +02001196static dma_addr_t __map_single(struct device *dev,
1197 struct amd_iommu *iommu,
1198 struct dma_ops_domain *dma_dom,
1199 phys_addr_t paddr,
1200 size_t size,
Joerg Roedel6d4f343f2008-09-04 19:18:02 +02001201 int dir,
Joerg Roedel832a90c2008-09-18 15:54:23 +02001202 bool align,
1203 u64 dma_mask)
Joerg Roedelcb76c322008-06-26 21:28:00 +02001204{
1205 dma_addr_t offset = paddr & ~PAGE_MASK;
1206 dma_addr_t address, start;
1207 unsigned int pages;
Joerg Roedel6d4f343f2008-09-04 19:18:02 +02001208 unsigned long align_mask = 0;
Joerg Roedelcb76c322008-06-26 21:28:00 +02001209 int i;
1210
Joerg Roedele3c449f2008-10-15 22:02:11 -07001211 pages = iommu_num_pages(paddr, size, PAGE_SIZE);
Joerg Roedelcb76c322008-06-26 21:28:00 +02001212 paddr &= PAGE_MASK;
1213
Joerg Roedel6d4f343f2008-09-04 19:18:02 +02001214 if (align)
1215 align_mask = (1UL << get_order(size)) - 1;
1216
Joerg Roedel832a90c2008-09-18 15:54:23 +02001217 address = dma_ops_alloc_addresses(dev, dma_dom, pages, align_mask,
1218 dma_mask);
Joerg Roedelcb76c322008-06-26 21:28:00 +02001219 if (unlikely(address == bad_dma_address))
1220 goto out;
1221
1222 start = address;
1223 for (i = 0; i < pages; ++i) {
1224 dma_ops_domain_map(iommu, dma_dom, start, paddr, dir);
1225 paddr += PAGE_SIZE;
1226 start += PAGE_SIZE;
1227 }
1228 address += offset;
1229
FUJITA Tomonoriafa9fdc2008-09-20 01:23:30 +09001230 if (unlikely(dma_dom->need_flush && !amd_iommu_unmap_flush)) {
Joerg Roedel1c655772008-09-04 18:40:05 +02001231 iommu_flush_tlb(iommu, dma_dom->domain.id);
1232 dma_dom->need_flush = false;
1233 } else if (unlikely(iommu_has_npcache(iommu)))
Joerg Roedel270cab242008-09-04 15:49:46 +02001234 iommu_flush_pages(iommu, dma_dom->domain.id, address, size);
1235
Joerg Roedelcb76c322008-06-26 21:28:00 +02001236out:
1237 return address;
1238}
1239
Joerg Roedel431b2a22008-07-11 17:14:22 +02001240/*
1241 * Does the reverse of the __map_single function. Must be called with
1242 * the domain lock held too
1243 */
Joerg Roedelcb76c322008-06-26 21:28:00 +02001244static void __unmap_single(struct amd_iommu *iommu,
1245 struct dma_ops_domain *dma_dom,
1246 dma_addr_t dma_addr,
1247 size_t size,
1248 int dir)
1249{
1250 dma_addr_t i, start;
1251 unsigned int pages;
1252
Joerg Roedelb8d99052008-12-08 14:40:26 +01001253 if ((dma_addr == bad_dma_address) ||
1254 (dma_addr + size > dma_dom->aperture_size))
Joerg Roedelcb76c322008-06-26 21:28:00 +02001255 return;
1256
Joerg Roedele3c449f2008-10-15 22:02:11 -07001257 pages = iommu_num_pages(dma_addr, size, PAGE_SIZE);
Joerg Roedelcb76c322008-06-26 21:28:00 +02001258 dma_addr &= PAGE_MASK;
1259 start = dma_addr;
1260
1261 for (i = 0; i < pages; ++i) {
1262 dma_ops_domain_unmap(iommu, dma_dom, start);
1263 start += PAGE_SIZE;
1264 }
1265
1266 dma_ops_free_addresses(dma_dom, dma_addr, pages);
Joerg Roedel270cab242008-09-04 15:49:46 +02001267
Joerg Roedel80be3082008-11-06 14:59:05 +01001268 if (amd_iommu_unmap_flush || dma_dom->need_flush) {
Joerg Roedel1c655772008-09-04 18:40:05 +02001269 iommu_flush_pages(iommu, dma_dom->domain.id, dma_addr, size);
Joerg Roedel80be3082008-11-06 14:59:05 +01001270 dma_dom->need_flush = false;
1271 }
Joerg Roedelcb76c322008-06-26 21:28:00 +02001272}
1273
Joerg Roedel431b2a22008-07-11 17:14:22 +02001274/*
1275 * The exported map_single function for dma_ops.
1276 */
Joerg Roedel4da70b92008-06-26 21:28:01 +02001277static dma_addr_t map_single(struct device *dev, phys_addr_t paddr,
1278 size_t size, int dir)
1279{
1280 unsigned long flags;
1281 struct amd_iommu *iommu;
1282 struct protection_domain *domain;
1283 u16 devid;
1284 dma_addr_t addr;
Joerg Roedel832a90c2008-09-18 15:54:23 +02001285 u64 dma_mask;
Joerg Roedel4da70b92008-06-26 21:28:01 +02001286
Joerg Roedel0f2a86f2008-12-12 15:05:16 +01001287 INC_STATS_COUNTER(cnt_map_single);
1288
Joerg Roedeldbcc1122008-09-04 15:04:26 +02001289 if (!check_device(dev))
1290 return bad_dma_address;
1291
Joerg Roedel832a90c2008-09-18 15:54:23 +02001292 dma_mask = *dev->dma_mask;
Joerg Roedel4da70b92008-06-26 21:28:01 +02001293
1294 get_device_resources(dev, &iommu, &domain, &devid);
1295
1296 if (iommu == NULL || domain == NULL)
Joerg Roedel431b2a22008-07-11 17:14:22 +02001297 /* device not handled by any AMD IOMMU */
Joerg Roedel4da70b92008-06-26 21:28:01 +02001298 return (dma_addr_t)paddr;
1299
Joerg Roedel5b28df62008-12-02 17:49:42 +01001300 if (!dma_ops_domain(domain))
1301 return bad_dma_address;
1302
Joerg Roedel4da70b92008-06-26 21:28:01 +02001303 spin_lock_irqsave(&domain->lock, flags);
Joerg Roedel832a90c2008-09-18 15:54:23 +02001304 addr = __map_single(dev, iommu, domain->priv, paddr, size, dir, false,
1305 dma_mask);
Joerg Roedel4da70b92008-06-26 21:28:01 +02001306 if (addr == bad_dma_address)
1307 goto out;
1308
Joerg Roedel09ee17e2008-12-03 12:19:27 +01001309 iommu_completion_wait(iommu);
Joerg Roedel4da70b92008-06-26 21:28:01 +02001310
1311out:
1312 spin_unlock_irqrestore(&domain->lock, flags);
1313
1314 return addr;
1315}
1316
Joerg Roedel431b2a22008-07-11 17:14:22 +02001317/*
1318 * The exported unmap_single function for dma_ops.
1319 */
Joerg Roedel4da70b92008-06-26 21:28:01 +02001320static void unmap_single(struct device *dev, dma_addr_t dma_addr,
1321 size_t size, int dir)
1322{
1323 unsigned long flags;
1324 struct amd_iommu *iommu;
1325 struct protection_domain *domain;
1326 u16 devid;
1327
Joerg Roedel146a6912008-12-12 15:07:12 +01001328 INC_STATS_COUNTER(cnt_unmap_single);
1329
Joerg Roedeldbcc1122008-09-04 15:04:26 +02001330 if (!check_device(dev) ||
1331 !get_device_resources(dev, &iommu, &domain, &devid))
Joerg Roedel431b2a22008-07-11 17:14:22 +02001332 /* device not handled by any AMD IOMMU */
Joerg Roedel4da70b92008-06-26 21:28:01 +02001333 return;
1334
Joerg Roedel5b28df62008-12-02 17:49:42 +01001335 if (!dma_ops_domain(domain))
1336 return;
1337
Joerg Roedel4da70b92008-06-26 21:28:01 +02001338 spin_lock_irqsave(&domain->lock, flags);
1339
1340 __unmap_single(iommu, domain->priv, dma_addr, size, dir);
1341
Joerg Roedel09ee17e2008-12-03 12:19:27 +01001342 iommu_completion_wait(iommu);
Joerg Roedel4da70b92008-06-26 21:28:01 +02001343
1344 spin_unlock_irqrestore(&domain->lock, flags);
1345}
1346
Joerg Roedel431b2a22008-07-11 17:14:22 +02001347/*
1348 * This is a special map_sg function which is used if we should map a
1349 * device which is not handled by an AMD IOMMU in the system.
1350 */
Joerg Roedel65b050a2008-06-26 21:28:02 +02001351static int map_sg_no_iommu(struct device *dev, struct scatterlist *sglist,
1352 int nelems, int dir)
1353{
1354 struct scatterlist *s;
1355 int i;
1356
1357 for_each_sg(sglist, s, nelems, i) {
1358 s->dma_address = (dma_addr_t)sg_phys(s);
1359 s->dma_length = s->length;
1360 }
1361
1362 return nelems;
1363}
1364
Joerg Roedel431b2a22008-07-11 17:14:22 +02001365/*
1366 * The exported map_sg function for dma_ops (handles scatter-gather
1367 * lists).
1368 */
Joerg Roedel65b050a2008-06-26 21:28:02 +02001369static int map_sg(struct device *dev, struct scatterlist *sglist,
1370 int nelems, int dir)
1371{
1372 unsigned long flags;
1373 struct amd_iommu *iommu;
1374 struct protection_domain *domain;
1375 u16 devid;
1376 int i;
1377 struct scatterlist *s;
1378 phys_addr_t paddr;
1379 int mapped_elems = 0;
Joerg Roedel832a90c2008-09-18 15:54:23 +02001380 u64 dma_mask;
Joerg Roedel65b050a2008-06-26 21:28:02 +02001381
Joerg Roedeld03f067a2008-12-12 15:09:48 +01001382 INC_STATS_COUNTER(cnt_map_sg);
1383
Joerg Roedeldbcc1122008-09-04 15:04:26 +02001384 if (!check_device(dev))
1385 return 0;
1386
Joerg Roedel832a90c2008-09-18 15:54:23 +02001387 dma_mask = *dev->dma_mask;
Joerg Roedel65b050a2008-06-26 21:28:02 +02001388
1389 get_device_resources(dev, &iommu, &domain, &devid);
1390
1391 if (!iommu || !domain)
1392 return map_sg_no_iommu(dev, sglist, nelems, dir);
1393
Joerg Roedel5b28df62008-12-02 17:49:42 +01001394 if (!dma_ops_domain(domain))
1395 return 0;
1396
Joerg Roedel65b050a2008-06-26 21:28:02 +02001397 spin_lock_irqsave(&domain->lock, flags);
1398
1399 for_each_sg(sglist, s, nelems, i) {
1400 paddr = sg_phys(s);
1401
1402 s->dma_address = __map_single(dev, iommu, domain->priv,
Joerg Roedel832a90c2008-09-18 15:54:23 +02001403 paddr, s->length, dir, false,
1404 dma_mask);
Joerg Roedel65b050a2008-06-26 21:28:02 +02001405
1406 if (s->dma_address) {
1407 s->dma_length = s->length;
1408 mapped_elems++;
1409 } else
1410 goto unmap;
Joerg Roedel65b050a2008-06-26 21:28:02 +02001411 }
1412
Joerg Roedel09ee17e2008-12-03 12:19:27 +01001413 iommu_completion_wait(iommu);
Joerg Roedel65b050a2008-06-26 21:28:02 +02001414
1415out:
1416 spin_unlock_irqrestore(&domain->lock, flags);
1417
1418 return mapped_elems;
1419unmap:
1420 for_each_sg(sglist, s, mapped_elems, i) {
1421 if (s->dma_address)
1422 __unmap_single(iommu, domain->priv, s->dma_address,
1423 s->dma_length, dir);
1424 s->dma_address = s->dma_length = 0;
1425 }
1426
1427 mapped_elems = 0;
1428
1429 goto out;
1430}
1431
Joerg Roedel431b2a22008-07-11 17:14:22 +02001432/*
1433 * The exported map_sg function for dma_ops (handles scatter-gather
1434 * lists).
1435 */
Joerg Roedel65b050a2008-06-26 21:28:02 +02001436static void unmap_sg(struct device *dev, struct scatterlist *sglist,
1437 int nelems, int dir)
1438{
1439 unsigned long flags;
1440 struct amd_iommu *iommu;
1441 struct protection_domain *domain;
1442 struct scatterlist *s;
1443 u16 devid;
1444 int i;
1445
Joerg Roedeldbcc1122008-09-04 15:04:26 +02001446 if (!check_device(dev) ||
1447 !get_device_resources(dev, &iommu, &domain, &devid))
Joerg Roedel65b050a2008-06-26 21:28:02 +02001448 return;
1449
Joerg Roedel5b28df62008-12-02 17:49:42 +01001450 if (!dma_ops_domain(domain))
1451 return;
1452
Joerg Roedel65b050a2008-06-26 21:28:02 +02001453 spin_lock_irqsave(&domain->lock, flags);
1454
1455 for_each_sg(sglist, s, nelems, i) {
1456 __unmap_single(iommu, domain->priv, s->dma_address,
1457 s->dma_length, dir);
Joerg Roedel65b050a2008-06-26 21:28:02 +02001458 s->dma_address = s->dma_length = 0;
1459 }
1460
Joerg Roedel09ee17e2008-12-03 12:19:27 +01001461 iommu_completion_wait(iommu);
Joerg Roedel65b050a2008-06-26 21:28:02 +02001462
1463 spin_unlock_irqrestore(&domain->lock, flags);
1464}
1465
Joerg Roedel431b2a22008-07-11 17:14:22 +02001466/*
1467 * The exported alloc_coherent function for dma_ops.
1468 */
Joerg Roedel5d8b53c2008-06-26 21:28:03 +02001469static void *alloc_coherent(struct device *dev, size_t size,
1470 dma_addr_t *dma_addr, gfp_t flag)
1471{
1472 unsigned long flags;
1473 void *virt_addr;
1474 struct amd_iommu *iommu;
1475 struct protection_domain *domain;
1476 u16 devid;
1477 phys_addr_t paddr;
Joerg Roedel832a90c2008-09-18 15:54:23 +02001478 u64 dma_mask = dev->coherent_dma_mask;
Joerg Roedel5d8b53c2008-06-26 21:28:03 +02001479
Joerg Roedeldbcc1122008-09-04 15:04:26 +02001480 if (!check_device(dev))
1481 return NULL;
1482
FUJITA Tomonori13d9fea2008-09-10 20:19:40 +09001483 if (!get_device_resources(dev, &iommu, &domain, &devid))
1484 flag &= ~(__GFP_DMA | __GFP_HIGHMEM | __GFP_DMA32);
1485
Joerg Roedelc97ac532008-09-11 10:59:15 +02001486 flag |= __GFP_ZERO;
Joerg Roedel5d8b53c2008-06-26 21:28:03 +02001487 virt_addr = (void *)__get_free_pages(flag, get_order(size));
1488 if (!virt_addr)
1489 return 0;
1490
Joerg Roedel5d8b53c2008-06-26 21:28:03 +02001491 paddr = virt_to_phys(virt_addr);
1492
Joerg Roedel5d8b53c2008-06-26 21:28:03 +02001493 if (!iommu || !domain) {
1494 *dma_addr = (dma_addr_t)paddr;
1495 return virt_addr;
1496 }
1497
Joerg Roedel5b28df62008-12-02 17:49:42 +01001498 if (!dma_ops_domain(domain))
1499 goto out_free;
1500
Joerg Roedel832a90c2008-09-18 15:54:23 +02001501 if (!dma_mask)
1502 dma_mask = *dev->dma_mask;
1503
Joerg Roedel5d8b53c2008-06-26 21:28:03 +02001504 spin_lock_irqsave(&domain->lock, flags);
1505
1506 *dma_addr = __map_single(dev, iommu, domain->priv, paddr,
Joerg Roedel832a90c2008-09-18 15:54:23 +02001507 size, DMA_BIDIRECTIONAL, true, dma_mask);
Joerg Roedel5d8b53c2008-06-26 21:28:03 +02001508
Joerg Roedel5b28df62008-12-02 17:49:42 +01001509 if (*dma_addr == bad_dma_address)
1510 goto out_free;
Joerg Roedel5d8b53c2008-06-26 21:28:03 +02001511
Joerg Roedel09ee17e2008-12-03 12:19:27 +01001512 iommu_completion_wait(iommu);
Joerg Roedel5d8b53c2008-06-26 21:28:03 +02001513
Joerg Roedel5d8b53c2008-06-26 21:28:03 +02001514 spin_unlock_irqrestore(&domain->lock, flags);
1515
1516 return virt_addr;
Joerg Roedel5b28df62008-12-02 17:49:42 +01001517
1518out_free:
1519
1520 free_pages((unsigned long)virt_addr, get_order(size));
1521
1522 return NULL;
Joerg Roedel5d8b53c2008-06-26 21:28:03 +02001523}
1524
Joerg Roedel431b2a22008-07-11 17:14:22 +02001525/*
1526 * The exported free_coherent function for dma_ops.
Joerg Roedel431b2a22008-07-11 17:14:22 +02001527 */
Joerg Roedel5d8b53c2008-06-26 21:28:03 +02001528static void free_coherent(struct device *dev, size_t size,
1529 void *virt_addr, dma_addr_t dma_addr)
1530{
1531 unsigned long flags;
1532 struct amd_iommu *iommu;
1533 struct protection_domain *domain;
1534 u16 devid;
1535
Joerg Roedeldbcc1122008-09-04 15:04:26 +02001536 if (!check_device(dev))
1537 return;
1538
Joerg Roedel5d8b53c2008-06-26 21:28:03 +02001539 get_device_resources(dev, &iommu, &domain, &devid);
1540
1541 if (!iommu || !domain)
1542 goto free_mem;
1543
Joerg Roedel5b28df62008-12-02 17:49:42 +01001544 if (!dma_ops_domain(domain))
1545 goto free_mem;
1546
Joerg Roedel5d8b53c2008-06-26 21:28:03 +02001547 spin_lock_irqsave(&domain->lock, flags);
1548
1549 __unmap_single(iommu, domain->priv, dma_addr, size, DMA_BIDIRECTIONAL);
Joerg Roedel5d8b53c2008-06-26 21:28:03 +02001550
Joerg Roedel09ee17e2008-12-03 12:19:27 +01001551 iommu_completion_wait(iommu);
Joerg Roedel5d8b53c2008-06-26 21:28:03 +02001552
1553 spin_unlock_irqrestore(&domain->lock, flags);
1554
1555free_mem:
1556 free_pages((unsigned long)virt_addr, get_order(size));
1557}
1558
Joerg Roedelc432f3d2008-06-26 21:28:04 +02001559/*
Joerg Roedelb39ba6a2008-09-09 18:40:46 +02001560 * This function is called by the DMA layer to find out if we can handle a
1561 * particular device. It is part of the dma_ops.
1562 */
1563static int amd_iommu_dma_supported(struct device *dev, u64 mask)
1564{
1565 u16 bdf;
1566 struct pci_dev *pcidev;
1567
1568 /* No device or no PCI device */
1569 if (!dev || dev->bus != &pci_bus_type)
1570 return 0;
1571
1572 pcidev = to_pci_dev(dev);
1573
1574 bdf = calc_devid(pcidev->bus->number, pcidev->devfn);
1575
1576 /* Out of our scope? */
1577 if (bdf > amd_iommu_last_bdf)
1578 return 0;
1579
1580 return 1;
1581}
1582
1583/*
Joerg Roedel431b2a22008-07-11 17:14:22 +02001584 * The function for pre-allocating protection domains.
1585 *
Joerg Roedelc432f3d2008-06-26 21:28:04 +02001586 * If the driver core informs the DMA layer if a driver grabs a device
1587 * we don't need to preallocate the protection domains anymore.
1588 * For now we have to.
1589 */
1590void prealloc_protection_domains(void)
1591{
1592 struct pci_dev *dev = NULL;
1593 struct dma_ops_domain *dma_dom;
1594 struct amd_iommu *iommu;
1595 int order = amd_iommu_aperture_order;
1596 u16 devid;
1597
1598 while ((dev = pci_get_device(PCI_ANY_ID, PCI_ANY_ID, dev)) != NULL) {
Joerg Roedeledcb34d2008-12-10 20:01:45 +01001599 devid = calc_devid(dev->bus->number, dev->devfn);
Joerg Roedel3a61ec32008-07-25 13:07:50 +02001600 if (devid > amd_iommu_last_bdf)
Joerg Roedelc432f3d2008-06-26 21:28:04 +02001601 continue;
1602 devid = amd_iommu_alias_table[devid];
1603 if (domain_for_device(devid))
1604 continue;
1605 iommu = amd_iommu_rlookup_table[devid];
1606 if (!iommu)
1607 continue;
1608 dma_dom = dma_ops_domain_alloc(iommu, order);
1609 if (!dma_dom)
1610 continue;
1611 init_unity_mappings_for_device(dma_dom, devid);
Joerg Roedelbd60b732008-09-11 10:24:48 +02001612 dma_dom->target_dev = devid;
1613
1614 list_add_tail(&dma_dom->list, &iommu_pd_list);
Joerg Roedelc432f3d2008-06-26 21:28:04 +02001615 }
1616}
1617
Joerg Roedel6631ee92008-06-26 21:28:05 +02001618static struct dma_mapping_ops amd_iommu_dma_ops = {
1619 .alloc_coherent = alloc_coherent,
1620 .free_coherent = free_coherent,
1621 .map_single = map_single,
1622 .unmap_single = unmap_single,
1623 .map_sg = map_sg,
1624 .unmap_sg = unmap_sg,
Joerg Roedelb39ba6a2008-09-09 18:40:46 +02001625 .dma_supported = amd_iommu_dma_supported,
Joerg Roedel6631ee92008-06-26 21:28:05 +02001626};
1627
Joerg Roedel431b2a22008-07-11 17:14:22 +02001628/*
1629 * The function which clues the AMD IOMMU driver into dma_ops.
1630 */
Joerg Roedel6631ee92008-06-26 21:28:05 +02001631int __init amd_iommu_init_dma_ops(void)
1632{
1633 struct amd_iommu *iommu;
1634 int order = amd_iommu_aperture_order;
1635 int ret;
1636
Joerg Roedel431b2a22008-07-11 17:14:22 +02001637 /*
1638 * first allocate a default protection domain for every IOMMU we
1639 * found in the system. Devices not assigned to any other
1640 * protection domain will be assigned to the default one.
1641 */
Joerg Roedel6631ee92008-06-26 21:28:05 +02001642 list_for_each_entry(iommu, &amd_iommu_list, list) {
1643 iommu->default_dom = dma_ops_domain_alloc(iommu, order);
1644 if (iommu->default_dom == NULL)
1645 return -ENOMEM;
Joerg Roedele2dc14a2008-12-10 18:48:59 +01001646 iommu->default_dom->domain.flags |= PD_DEFAULT_MASK;
Joerg Roedel6631ee92008-06-26 21:28:05 +02001647 ret = iommu_init_unity_mappings(iommu);
1648 if (ret)
1649 goto free_domains;
1650 }
1651
Joerg Roedel431b2a22008-07-11 17:14:22 +02001652 /*
1653 * If device isolation is enabled, pre-allocate the protection
1654 * domains for each device.
1655 */
Joerg Roedel6631ee92008-06-26 21:28:05 +02001656 if (amd_iommu_isolate)
1657 prealloc_protection_domains();
1658
1659 iommu_detected = 1;
1660 force_iommu = 1;
1661 bad_dma_address = 0;
Ingo Molnar92af4e22008-06-27 10:48:16 +02001662#ifdef CONFIG_GART_IOMMU
Joerg Roedel6631ee92008-06-26 21:28:05 +02001663 gart_iommu_aperture_disabled = 1;
1664 gart_iommu_aperture = 0;
Ingo Molnar92af4e22008-06-27 10:48:16 +02001665#endif
Joerg Roedel6631ee92008-06-26 21:28:05 +02001666
Joerg Roedel431b2a22008-07-11 17:14:22 +02001667 /* Make the driver finally visible to the drivers */
Joerg Roedel6631ee92008-06-26 21:28:05 +02001668 dma_ops = &amd_iommu_dma_ops;
1669
Joerg Roedel26961ef2008-12-03 17:00:17 +01001670#ifdef CONFIG_IOMMU_API
1671 register_iommu(&amd_iommu_ops);
1672#endif
1673
Joerg Roedele275a2a2008-12-10 18:27:25 +01001674 bus_register_notifier(&pci_bus_type, &device_nb);
1675
Joerg Roedel7f265082008-12-12 13:50:21 +01001676 amd_iommu_stats_init();
1677
Joerg Roedel6631ee92008-06-26 21:28:05 +02001678 return 0;
1679
1680free_domains:
1681
1682 list_for_each_entry(iommu, &amd_iommu_list, list) {
1683 if (iommu->default_dom)
1684 dma_ops_domain_free(iommu->default_dom);
1685 }
1686
1687 return ret;
1688}
Joerg Roedel6d98cd82008-12-08 12:05:55 +01001689
1690/*****************************************************************************
1691 *
1692 * The following functions belong to the exported interface of AMD IOMMU
1693 *
1694 * This interface allows access to lower level functions of the IOMMU
1695 * like protection domain handling and assignement of devices to domains
1696 * which is not possible with the dma_ops interface.
1697 *
1698 *****************************************************************************/
1699
1700#ifdef CONFIG_IOMMU_API
1701
1702static void cleanup_domain(struct protection_domain *domain)
1703{
1704 unsigned long flags;
1705 u16 devid;
1706
1707 write_lock_irqsave(&amd_iommu_devtable_lock, flags);
1708
1709 for (devid = 0; devid <= amd_iommu_last_bdf; ++devid)
1710 if (amd_iommu_pd_table[devid] == domain)
1711 __detach_device(domain, devid);
1712
1713 write_unlock_irqrestore(&amd_iommu_devtable_lock, flags);
1714}
1715
Joerg Roedelc156e342008-12-02 18:13:27 +01001716static int amd_iommu_domain_init(struct iommu_domain *dom)
1717{
1718 struct protection_domain *domain;
1719
1720 domain = kzalloc(sizeof(*domain), GFP_KERNEL);
1721 if (!domain)
1722 return -ENOMEM;
1723
1724 spin_lock_init(&domain->lock);
1725 domain->mode = PAGE_MODE_3_LEVEL;
1726 domain->id = domain_id_alloc();
1727 if (!domain->id)
1728 goto out_free;
1729 domain->pt_root = (void *)get_zeroed_page(GFP_KERNEL);
1730 if (!domain->pt_root)
1731 goto out_free;
1732
1733 dom->priv = domain;
1734
1735 return 0;
1736
1737out_free:
1738 kfree(domain);
1739
1740 return -ENOMEM;
1741}
1742
Joerg Roedel98383fc2008-12-02 18:34:12 +01001743static void amd_iommu_domain_destroy(struct iommu_domain *dom)
1744{
1745 struct protection_domain *domain = dom->priv;
1746
1747 if (!domain)
1748 return;
1749
1750 if (domain->dev_cnt > 0)
1751 cleanup_domain(domain);
1752
1753 BUG_ON(domain->dev_cnt != 0);
1754
1755 free_pagetable(domain);
1756
1757 domain_id_free(domain->id);
1758
1759 kfree(domain);
1760
1761 dom->priv = NULL;
1762}
1763
Joerg Roedel684f2882008-12-08 12:07:44 +01001764static void amd_iommu_detach_device(struct iommu_domain *dom,
1765 struct device *dev)
1766{
1767 struct protection_domain *domain = dom->priv;
1768 struct amd_iommu *iommu;
1769 struct pci_dev *pdev;
1770 u16 devid;
1771
1772 if (dev->bus != &pci_bus_type)
1773 return;
1774
1775 pdev = to_pci_dev(dev);
1776
1777 devid = calc_devid(pdev->bus->number, pdev->devfn);
1778
1779 if (devid > 0)
1780 detach_device(domain, devid);
1781
1782 iommu = amd_iommu_rlookup_table[devid];
1783 if (!iommu)
1784 return;
1785
1786 iommu_queue_inv_dev_entry(iommu, devid);
1787 iommu_completion_wait(iommu);
1788}
1789
Joerg Roedel01106062008-12-02 19:34:11 +01001790static int amd_iommu_attach_device(struct iommu_domain *dom,
1791 struct device *dev)
1792{
1793 struct protection_domain *domain = dom->priv;
1794 struct protection_domain *old_domain;
1795 struct amd_iommu *iommu;
1796 struct pci_dev *pdev;
1797 u16 devid;
1798
1799 if (dev->bus != &pci_bus_type)
1800 return -EINVAL;
1801
1802 pdev = to_pci_dev(dev);
1803
1804 devid = calc_devid(pdev->bus->number, pdev->devfn);
1805
1806 if (devid >= amd_iommu_last_bdf ||
1807 devid != amd_iommu_alias_table[devid])
1808 return -EINVAL;
1809
1810 iommu = amd_iommu_rlookup_table[devid];
1811 if (!iommu)
1812 return -EINVAL;
1813
1814 old_domain = domain_for_device(devid);
1815 if (old_domain)
1816 return -EBUSY;
1817
1818 attach_device(iommu, domain, devid);
1819
1820 iommu_completion_wait(iommu);
1821
1822 return 0;
1823}
1824
Joerg Roedelc6229ca2008-12-02 19:48:43 +01001825static int amd_iommu_map_range(struct iommu_domain *dom,
1826 unsigned long iova, phys_addr_t paddr,
1827 size_t size, int iommu_prot)
1828{
1829 struct protection_domain *domain = dom->priv;
1830 unsigned long i, npages = iommu_num_pages(paddr, size, PAGE_SIZE);
1831 int prot = 0;
1832 int ret;
1833
1834 if (iommu_prot & IOMMU_READ)
1835 prot |= IOMMU_PROT_IR;
1836 if (iommu_prot & IOMMU_WRITE)
1837 prot |= IOMMU_PROT_IW;
1838
1839 iova &= PAGE_MASK;
1840 paddr &= PAGE_MASK;
1841
1842 for (i = 0; i < npages; ++i) {
1843 ret = iommu_map_page(domain, iova, paddr, prot);
1844 if (ret)
1845 return ret;
1846
1847 iova += PAGE_SIZE;
1848 paddr += PAGE_SIZE;
1849 }
1850
1851 return 0;
1852}
1853
Joerg Roedeleb74ff62008-12-02 19:59:10 +01001854static void amd_iommu_unmap_range(struct iommu_domain *dom,
1855 unsigned long iova, size_t size)
1856{
1857
1858 struct protection_domain *domain = dom->priv;
1859 unsigned long i, npages = iommu_num_pages(iova, size, PAGE_SIZE);
1860
1861 iova &= PAGE_MASK;
1862
1863 for (i = 0; i < npages; ++i) {
1864 iommu_unmap_page(domain, iova);
1865 iova += PAGE_SIZE;
1866 }
1867
1868 iommu_flush_domain(domain->id);
1869}
1870
Joerg Roedel645c4c82008-12-02 20:05:50 +01001871static phys_addr_t amd_iommu_iova_to_phys(struct iommu_domain *dom,
1872 unsigned long iova)
1873{
1874 struct protection_domain *domain = dom->priv;
1875 unsigned long offset = iova & ~PAGE_MASK;
1876 phys_addr_t paddr;
1877 u64 *pte;
1878
1879 pte = &domain->pt_root[IOMMU_PTE_L2_INDEX(iova)];
1880
1881 if (!IOMMU_PTE_PRESENT(*pte))
1882 return 0;
1883
1884 pte = IOMMU_PTE_PAGE(*pte);
1885 pte = &pte[IOMMU_PTE_L1_INDEX(iova)];
1886
1887 if (!IOMMU_PTE_PRESENT(*pte))
1888 return 0;
1889
1890 pte = IOMMU_PTE_PAGE(*pte);
1891 pte = &pte[IOMMU_PTE_L0_INDEX(iova)];
1892
1893 if (!IOMMU_PTE_PRESENT(*pte))
1894 return 0;
1895
1896 paddr = *pte & IOMMU_PAGE_MASK;
1897 paddr |= offset;
1898
1899 return paddr;
1900}
1901
Joerg Roedel26961ef2008-12-03 17:00:17 +01001902static struct iommu_ops amd_iommu_ops = {
1903 .domain_init = amd_iommu_domain_init,
1904 .domain_destroy = amd_iommu_domain_destroy,
1905 .attach_dev = amd_iommu_attach_device,
1906 .detach_dev = amd_iommu_detach_device,
1907 .map = amd_iommu_map_range,
1908 .unmap = amd_iommu_unmap_range,
1909 .iova_to_phys = amd_iommu_iova_to_phys,
1910};
1911
Joerg Roedel6d98cd82008-12-08 12:05:55 +01001912#endif