blob: 2dc093370d2de0e45e52fab36bc4fc7741e8a06b [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>
FUJITA Tomonori51491362009-01-05 23:47:25 +090025#include <linux/dma-mapping.h>
Joerg Roedelb6c02712008-06-26 21:27:53 +020026#include <linux/iommu-helper.h>
Joerg Roedelc156e342008-12-02 18:13:27 +010027#include <linux/iommu.h>
Joerg Roedelb6c02712008-06-26 21:27:53 +020028#include <asm/proto.h>
FUJITA Tomonori46a7fa22008-07-11 10:23:42 +090029#include <asm/iommu.h>
Joerg Roedel1d9b16d2008-11-27 18:39:15 +010030#include <asm/gart.h>
Joerg Roedelb6c02712008-06-26 21:27:53 +020031#include <asm/amd_iommu_types.h>
Joerg Roedelc6da9922008-06-26 21:28:06 +020032#include <asm/amd_iommu.h>
Joerg Roedelb6c02712008-06-26 21:27:53 +020033
34#define CMD_SET_TYPE(cmd, t) ((cmd)->data[1] |= ((t) << 28))
35
Joerg Roedel136f78a2008-07-11 17:14:27 +020036#define EXIT_LOOP_COUNT 10000000
37
Joerg Roedelb6c02712008-06-26 21:27:53 +020038static DEFINE_RWLOCK(amd_iommu_devtable_lock);
39
Joerg Roedelbd60b732008-09-11 10:24:48 +020040/* A list of preallocated protection domains */
41static LIST_HEAD(iommu_pd_list);
42static DEFINE_SPINLOCK(iommu_pd_list_lock);
43
Joerg Roedel26961ef2008-12-03 17:00:17 +010044#ifdef CONFIG_IOMMU_API
45static struct iommu_ops amd_iommu_ops;
46#endif
47
Joerg Roedel431b2a22008-07-11 17:14:22 +020048/*
49 * general struct to manage commands send to an IOMMU
50 */
Joerg Roedeld6449532008-07-11 17:14:28 +020051struct iommu_cmd {
Joerg Roedelb6c02712008-06-26 21:27:53 +020052 u32 data[4];
53};
54
Joerg Roedelbd0e5212008-06-26 21:27:56 +020055static int dma_ops_unity_map(struct dma_ops_domain *dma_dom,
56 struct unity_map_entry *e);
Joerg Roedele275a2a2008-12-10 18:27:25 +010057static struct dma_ops_domain *find_protection_domain(u16 devid);
Joerg Roedel8bda3092009-05-12 12:02:46 +020058static u64* alloc_pte(struct protection_domain *dom,
59 unsigned long address, u64
60 **pte_page, gfp_t gfp);
Joerg Roedel00cd1222009-05-19 09:52:40 +020061static void dma_ops_reserve_addresses(struct dma_ops_domain *dom,
62 unsigned long start_page,
63 unsigned int pages);
Joerg Roedelbd0e5212008-06-26 21:27:56 +020064
Chris Wrightc1eee672009-05-21 00:56:58 -070065#ifndef BUS_NOTIFY_UNBOUND_DRIVER
66#define BUS_NOTIFY_UNBOUND_DRIVER 0x0005
67#endif
68
Joerg Roedel7f265082008-12-12 13:50:21 +010069#ifdef CONFIG_AMD_IOMMU_STATS
70
71/*
72 * Initialization code for statistics collection
73 */
74
Joerg Roedelda49f6d2008-12-12 14:59:58 +010075DECLARE_STATS_COUNTER(compl_wait);
Joerg Roedel0f2a86f2008-12-12 15:05:16 +010076DECLARE_STATS_COUNTER(cnt_map_single);
Joerg Roedel146a6912008-12-12 15:07:12 +010077DECLARE_STATS_COUNTER(cnt_unmap_single);
Joerg Roedeld03f067a2008-12-12 15:09:48 +010078DECLARE_STATS_COUNTER(cnt_map_sg);
Joerg Roedel55877a62008-12-12 15:12:14 +010079DECLARE_STATS_COUNTER(cnt_unmap_sg);
Joerg Roedelc8f0fb32008-12-12 15:14:21 +010080DECLARE_STATS_COUNTER(cnt_alloc_coherent);
Joerg Roedel5d31ee72008-12-12 15:16:38 +010081DECLARE_STATS_COUNTER(cnt_free_coherent);
Joerg Roedelc1858972008-12-12 15:42:39 +010082DECLARE_STATS_COUNTER(cross_page);
Joerg Roedelf57d98a2008-12-12 15:46:29 +010083DECLARE_STATS_COUNTER(domain_flush_single);
Joerg Roedel18811f52008-12-12 15:48:28 +010084DECLARE_STATS_COUNTER(domain_flush_all);
Joerg Roedel5774f7c2008-12-12 15:57:30 +010085DECLARE_STATS_COUNTER(alloced_io_mem);
Joerg Roedel8ecaf8f2008-12-12 16:13:04 +010086DECLARE_STATS_COUNTER(total_map_requests);
Joerg Roedelda49f6d2008-12-12 14:59:58 +010087
Joerg Roedel7f265082008-12-12 13:50:21 +010088static struct dentry *stats_dir;
89static struct dentry *de_isolate;
90static struct dentry *de_fflush;
91
92static void amd_iommu_stats_add(struct __iommu_counter *cnt)
93{
94 if (stats_dir == NULL)
95 return;
96
97 cnt->dent = debugfs_create_u64(cnt->name, 0444, stats_dir,
98 &cnt->value);
99}
100
101static void amd_iommu_stats_init(void)
102{
103 stats_dir = debugfs_create_dir("amd-iommu", NULL);
104 if (stats_dir == NULL)
105 return;
106
107 de_isolate = debugfs_create_bool("isolation", 0444, stats_dir,
108 (u32 *)&amd_iommu_isolate);
109
110 de_fflush = debugfs_create_bool("fullflush", 0444, stats_dir,
111 (u32 *)&amd_iommu_unmap_flush);
Joerg Roedelda49f6d2008-12-12 14:59:58 +0100112
113 amd_iommu_stats_add(&compl_wait);
Joerg Roedel0f2a86f2008-12-12 15:05:16 +0100114 amd_iommu_stats_add(&cnt_map_single);
Joerg Roedel146a6912008-12-12 15:07:12 +0100115 amd_iommu_stats_add(&cnt_unmap_single);
Joerg Roedeld03f067a2008-12-12 15:09:48 +0100116 amd_iommu_stats_add(&cnt_map_sg);
Joerg Roedel55877a62008-12-12 15:12:14 +0100117 amd_iommu_stats_add(&cnt_unmap_sg);
Joerg Roedelc8f0fb32008-12-12 15:14:21 +0100118 amd_iommu_stats_add(&cnt_alloc_coherent);
Joerg Roedel5d31ee72008-12-12 15:16:38 +0100119 amd_iommu_stats_add(&cnt_free_coherent);
Joerg Roedelc1858972008-12-12 15:42:39 +0100120 amd_iommu_stats_add(&cross_page);
Joerg Roedelf57d98a2008-12-12 15:46:29 +0100121 amd_iommu_stats_add(&domain_flush_single);
Joerg Roedel18811f52008-12-12 15:48:28 +0100122 amd_iommu_stats_add(&domain_flush_all);
Joerg Roedel5774f7c2008-12-12 15:57:30 +0100123 amd_iommu_stats_add(&alloced_io_mem);
Joerg Roedel8ecaf8f2008-12-12 16:13:04 +0100124 amd_iommu_stats_add(&total_map_requests);
Joerg Roedel7f265082008-12-12 13:50:21 +0100125}
126
127#endif
128
Joerg Roedel431b2a22008-07-11 17:14:22 +0200129/* returns !0 if the IOMMU is caching non-present entries in its TLB */
Joerg Roedel4da70b92008-06-26 21:28:01 +0200130static int iommu_has_npcache(struct amd_iommu *iommu)
131{
Joerg Roedelae9b9402008-10-30 17:43:57 +0100132 return iommu->cap & (1UL << IOMMU_CAP_NPCACHE);
Joerg Roedel4da70b92008-06-26 21:28:01 +0200133}
134
Joerg Roedel431b2a22008-07-11 17:14:22 +0200135/****************************************************************************
136 *
Joerg Roedela80dc3e2008-09-11 16:51:41 +0200137 * Interrupt handling functions
138 *
139 ****************************************************************************/
140
Joerg Roedele3e59872009-09-03 14:02:10 +0200141static void dump_dte_entry(u16 devid)
142{
143 int i;
144
145 for (i = 0; i < 8; ++i)
146 pr_err("AMD-Vi: DTE[%d]: %08x\n", i,
147 amd_iommu_dev_table[devid].data[i]);
148}
149
Joerg Roedel945b4ac2009-09-03 14:25:02 +0200150static void dump_command(unsigned long phys_addr)
151{
152 struct iommu_cmd *cmd = phys_to_virt(phys_addr);
153 int i;
154
155 for (i = 0; i < 4; ++i)
156 pr_err("AMD-Vi: CMD[%d]: %08x\n", i, cmd->data[i]);
157}
158
Joerg Roedel90008ee2008-09-09 16:41:05 +0200159static void iommu_print_event(void *__evt)
160{
161 u32 *event = __evt;
162 int type = (event[1] >> EVENT_TYPE_SHIFT) & EVENT_TYPE_MASK;
163 int devid = (event[0] >> EVENT_DEVID_SHIFT) & EVENT_DEVID_MASK;
164 int domid = (event[1] >> EVENT_DOMID_SHIFT) & EVENT_DOMID_MASK;
165 int flags = (event[1] >> EVENT_FLAGS_SHIFT) & EVENT_FLAGS_MASK;
166 u64 address = (u64)(((u64)event[3]) << 32) | event[2];
167
168 printk(KERN_ERR "AMD IOMMU: Event logged [");
169
170 switch (type) {
171 case EVENT_TYPE_ILL_DEV:
172 printk("ILLEGAL_DEV_TABLE_ENTRY device=%02x:%02x.%x "
173 "address=0x%016llx flags=0x%04x]\n",
174 PCI_BUS(devid), PCI_SLOT(devid), PCI_FUNC(devid),
175 address, flags);
Joerg Roedele3e59872009-09-03 14:02:10 +0200176 dump_dte_entry(devid);
Joerg Roedel90008ee2008-09-09 16:41:05 +0200177 break;
178 case EVENT_TYPE_IO_FAULT:
179 printk("IO_PAGE_FAULT device=%02x:%02x.%x "
180 "domain=0x%04x address=0x%016llx flags=0x%04x]\n",
181 PCI_BUS(devid), PCI_SLOT(devid), PCI_FUNC(devid),
182 domid, address, flags);
183 break;
184 case EVENT_TYPE_DEV_TAB_ERR:
185 printk("DEV_TAB_HARDWARE_ERROR device=%02x:%02x.%x "
186 "address=0x%016llx flags=0x%04x]\n",
187 PCI_BUS(devid), PCI_SLOT(devid), PCI_FUNC(devid),
188 address, flags);
189 break;
190 case EVENT_TYPE_PAGE_TAB_ERR:
191 printk("PAGE_TAB_HARDWARE_ERROR device=%02x:%02x.%x "
192 "domain=0x%04x address=0x%016llx flags=0x%04x]\n",
193 PCI_BUS(devid), PCI_SLOT(devid), PCI_FUNC(devid),
194 domid, address, flags);
195 break;
196 case EVENT_TYPE_ILL_CMD:
197 printk("ILLEGAL_COMMAND_ERROR address=0x%016llx]\n", address);
Joerg Roedel945b4ac2009-09-03 14:25:02 +0200198 dump_command(address);
Joerg Roedel90008ee2008-09-09 16:41:05 +0200199 break;
200 case EVENT_TYPE_CMD_HARD_ERR:
201 printk("COMMAND_HARDWARE_ERROR address=0x%016llx "
202 "flags=0x%04x]\n", address, flags);
203 break;
204 case EVENT_TYPE_IOTLB_INV_TO:
205 printk("IOTLB_INV_TIMEOUT device=%02x:%02x.%x "
206 "address=0x%016llx]\n",
207 PCI_BUS(devid), PCI_SLOT(devid), PCI_FUNC(devid),
208 address);
209 break;
210 case EVENT_TYPE_INV_DEV_REQ:
211 printk("INVALID_DEVICE_REQUEST device=%02x:%02x.%x "
212 "address=0x%016llx flags=0x%04x]\n",
213 PCI_BUS(devid), PCI_SLOT(devid), PCI_FUNC(devid),
214 address, flags);
215 break;
216 default:
217 printk(KERN_ERR "UNKNOWN type=0x%02x]\n", type);
218 }
219}
220
221static void iommu_poll_events(struct amd_iommu *iommu)
222{
223 u32 head, tail;
224 unsigned long flags;
225
226 spin_lock_irqsave(&iommu->lock, flags);
227
228 head = readl(iommu->mmio_base + MMIO_EVT_HEAD_OFFSET);
229 tail = readl(iommu->mmio_base + MMIO_EVT_TAIL_OFFSET);
230
231 while (head != tail) {
232 iommu_print_event(iommu->evt_buf + head);
233 head = (head + EVENT_ENTRY_SIZE) % iommu->evt_buf_size;
234 }
235
236 writel(head, iommu->mmio_base + MMIO_EVT_HEAD_OFFSET);
237
238 spin_unlock_irqrestore(&iommu->lock, flags);
239}
240
Joerg Roedela80dc3e2008-09-11 16:51:41 +0200241irqreturn_t amd_iommu_int_handler(int irq, void *data)
242{
Joerg Roedel90008ee2008-09-09 16:41:05 +0200243 struct amd_iommu *iommu;
244
Joerg Roedel3bd22172009-05-04 15:06:20 +0200245 for_each_iommu(iommu)
Joerg Roedel90008ee2008-09-09 16:41:05 +0200246 iommu_poll_events(iommu);
247
248 return IRQ_HANDLED;
Joerg Roedela80dc3e2008-09-11 16:51:41 +0200249}
250
251/****************************************************************************
252 *
Joerg Roedel431b2a22008-07-11 17:14:22 +0200253 * IOMMU command queuing functions
254 *
255 ****************************************************************************/
256
257/*
258 * Writes the command to the IOMMUs command buffer and informs the
259 * hardware about the new command. Must be called with iommu->lock held.
260 */
Joerg Roedeld6449532008-07-11 17:14:28 +0200261static int __iommu_queue_command(struct amd_iommu *iommu, struct iommu_cmd *cmd)
Joerg Roedela19ae1e2008-06-26 21:27:55 +0200262{
263 u32 tail, head;
264 u8 *target;
265
266 tail = readl(iommu->mmio_base + MMIO_CMD_TAIL_OFFSET);
Jiri Kosina8a7c5ef2008-08-19 02:13:55 +0200267 target = iommu->cmd_buf + tail;
Joerg Roedela19ae1e2008-06-26 21:27:55 +0200268 memcpy_toio(target, cmd, sizeof(*cmd));
269 tail = (tail + sizeof(*cmd)) % iommu->cmd_buf_size;
270 head = readl(iommu->mmio_base + MMIO_CMD_HEAD_OFFSET);
271 if (tail == head)
272 return -ENOMEM;
273 writel(tail, iommu->mmio_base + MMIO_CMD_TAIL_OFFSET);
274
275 return 0;
276}
277
Joerg Roedel431b2a22008-07-11 17:14:22 +0200278/*
279 * General queuing function for commands. Takes iommu->lock and calls
280 * __iommu_queue_command().
281 */
Joerg Roedeld6449532008-07-11 17:14:28 +0200282static int iommu_queue_command(struct amd_iommu *iommu, struct iommu_cmd *cmd)
Joerg Roedela19ae1e2008-06-26 21:27:55 +0200283{
284 unsigned long flags;
285 int ret;
286
287 spin_lock_irqsave(&iommu->lock, flags);
288 ret = __iommu_queue_command(iommu, cmd);
Joerg Roedel09ee17e2008-12-03 12:19:27 +0100289 if (!ret)
Joerg Roedel0cfd7aa2008-12-10 19:58:00 +0100290 iommu->need_sync = true;
Joerg Roedela19ae1e2008-06-26 21:27:55 +0200291 spin_unlock_irqrestore(&iommu->lock, flags);
292
293 return ret;
294}
295
Joerg Roedel431b2a22008-07-11 17:14:22 +0200296/*
Joerg Roedel8d201962008-12-02 20:34:41 +0100297 * This function waits until an IOMMU has completed a completion
298 * wait command
Joerg Roedel431b2a22008-07-11 17:14:22 +0200299 */
Joerg Roedel8d201962008-12-02 20:34:41 +0100300static void __iommu_wait_for_completion(struct amd_iommu *iommu)
Joerg Roedela19ae1e2008-06-26 21:27:55 +0200301{
Joerg Roedel8d201962008-12-02 20:34:41 +0100302 int ready = 0;
Joerg Roedel519c31b2008-08-14 19:55:15 +0200303 unsigned status = 0;
Joerg Roedel8d201962008-12-02 20:34:41 +0100304 unsigned long i = 0;
Joerg Roedela19ae1e2008-06-26 21:27:55 +0200305
Joerg Roedelda49f6d2008-12-12 14:59:58 +0100306 INC_STATS_COUNTER(compl_wait);
307
Joerg Roedel136f78a2008-07-11 17:14:27 +0200308 while (!ready && (i < EXIT_LOOP_COUNT)) {
309 ++i;
Joerg Roedel519c31b2008-08-14 19:55:15 +0200310 /* wait for the bit to become one */
311 status = readl(iommu->mmio_base + MMIO_STATUS_OFFSET);
312 ready = status & MMIO_STATUS_COM_WAIT_INT_MASK;
Joerg Roedel136f78a2008-07-11 17:14:27 +0200313 }
314
Joerg Roedel519c31b2008-08-14 19:55:15 +0200315 /* set bit back to zero */
316 status &= ~MMIO_STATUS_COM_WAIT_INT_MASK;
317 writel(status, iommu->mmio_base + MMIO_STATUS_OFFSET);
318
Joerg Roedel84df8172008-12-17 16:36:44 +0100319 if (unlikely(i == EXIT_LOOP_COUNT))
320 panic("AMD IOMMU: Completion wait loop failed\n");
Joerg Roedel8d201962008-12-02 20:34:41 +0100321}
322
323/*
324 * This function queues a completion wait command into the command
325 * buffer of an IOMMU
326 */
327static int __iommu_completion_wait(struct amd_iommu *iommu)
328{
329 struct iommu_cmd cmd;
330
331 memset(&cmd, 0, sizeof(cmd));
332 cmd.data[0] = CMD_COMPL_WAIT_INT_MASK;
333 CMD_SET_TYPE(&cmd, CMD_COMPL_WAIT);
334
335 return __iommu_queue_command(iommu, &cmd);
336}
337
338/*
339 * This function is called whenever we need to ensure that the IOMMU has
340 * completed execution of all commands we sent. It sends a
341 * COMPLETION_WAIT command and waits for it to finish. The IOMMU informs
342 * us about that by writing a value to a physical address we pass with
343 * the command.
344 */
345static int iommu_completion_wait(struct amd_iommu *iommu)
346{
347 int ret = 0;
348 unsigned long flags;
349
350 spin_lock_irqsave(&iommu->lock, flags);
351
352 if (!iommu->need_sync)
353 goto out;
354
355 ret = __iommu_completion_wait(iommu);
356
Joerg Roedel0cfd7aa2008-12-10 19:58:00 +0100357 iommu->need_sync = false;
Joerg Roedel8d201962008-12-02 20:34:41 +0100358
359 if (ret)
360 goto out;
361
362 __iommu_wait_for_completion(iommu);
Joerg Roedel84df8172008-12-17 16:36:44 +0100363
Joerg Roedel7e4f88d2008-09-17 14:19:15 +0200364out:
365 spin_unlock_irqrestore(&iommu->lock, flags);
Joerg Roedela19ae1e2008-06-26 21:27:55 +0200366
367 return 0;
368}
369
Joerg Roedel431b2a22008-07-11 17:14:22 +0200370/*
371 * Command send function for invalidating a device table entry
372 */
Joerg Roedela19ae1e2008-06-26 21:27:55 +0200373static int iommu_queue_inv_dev_entry(struct amd_iommu *iommu, u16 devid)
374{
Joerg Roedeld6449532008-07-11 17:14:28 +0200375 struct iommu_cmd cmd;
Joerg Roedelee2fa742008-09-17 13:47:25 +0200376 int ret;
Joerg Roedela19ae1e2008-06-26 21:27:55 +0200377
378 BUG_ON(iommu == NULL);
379
380 memset(&cmd, 0, sizeof(cmd));
381 CMD_SET_TYPE(&cmd, CMD_INV_DEV_ENTRY);
382 cmd.data[0] = devid;
383
Joerg Roedelee2fa742008-09-17 13:47:25 +0200384 ret = iommu_queue_command(iommu, &cmd);
385
Joerg Roedelee2fa742008-09-17 13:47:25 +0200386 return ret;
Joerg Roedela19ae1e2008-06-26 21:27:55 +0200387}
388
Joerg Roedel237b6f32008-12-02 20:54:37 +0100389static void __iommu_build_inv_iommu_pages(struct iommu_cmd *cmd, u64 address,
390 u16 domid, int pde, int s)
391{
392 memset(cmd, 0, sizeof(*cmd));
393 address &= PAGE_MASK;
394 CMD_SET_TYPE(cmd, CMD_INV_IOMMU_PAGES);
395 cmd->data[1] |= domid;
396 cmd->data[2] = lower_32_bits(address);
397 cmd->data[3] = upper_32_bits(address);
398 if (s) /* size bit - we flush more than one 4kb page */
399 cmd->data[2] |= CMD_INV_IOMMU_PAGES_SIZE_MASK;
400 if (pde) /* PDE bit - we wan't flush everything not only the PTEs */
401 cmd->data[2] |= CMD_INV_IOMMU_PAGES_PDE_MASK;
402}
403
Joerg Roedel431b2a22008-07-11 17:14:22 +0200404/*
405 * Generic command send function for invalidaing TLB entries
406 */
Joerg Roedela19ae1e2008-06-26 21:27:55 +0200407static int iommu_queue_inv_iommu_pages(struct amd_iommu *iommu,
408 u64 address, u16 domid, int pde, int s)
409{
Joerg Roedeld6449532008-07-11 17:14:28 +0200410 struct iommu_cmd cmd;
Joerg Roedelee2fa742008-09-17 13:47:25 +0200411 int ret;
Joerg Roedela19ae1e2008-06-26 21:27:55 +0200412
Joerg Roedel237b6f32008-12-02 20:54:37 +0100413 __iommu_build_inv_iommu_pages(&cmd, address, domid, pde, s);
Joerg Roedela19ae1e2008-06-26 21:27:55 +0200414
Joerg Roedelee2fa742008-09-17 13:47:25 +0200415 ret = iommu_queue_command(iommu, &cmd);
416
Joerg Roedelee2fa742008-09-17 13:47:25 +0200417 return ret;
Joerg Roedela19ae1e2008-06-26 21:27:55 +0200418}
419
Joerg Roedel431b2a22008-07-11 17:14:22 +0200420/*
421 * TLB invalidation function which is called from the mapping functions.
422 * It invalidates a single PTE if the range to flush is within a single
423 * page. Otherwise it flushes the whole TLB of the IOMMU.
424 */
Joerg Roedela19ae1e2008-06-26 21:27:55 +0200425static int iommu_flush_pages(struct amd_iommu *iommu, u16 domid,
426 u64 address, size_t size)
427{
Joerg Roedel999ba412008-07-03 19:35:08 +0200428 int s = 0;
Joerg Roedele3c449f2008-10-15 22:02:11 -0700429 unsigned pages = iommu_num_pages(address, size, PAGE_SIZE);
Joerg Roedela19ae1e2008-06-26 21:27:55 +0200430
431 address &= PAGE_MASK;
432
Joerg Roedel999ba412008-07-03 19:35:08 +0200433 if (pages > 1) {
434 /*
435 * If we have to flush more than one page, flush all
436 * TLB entries for this domain
437 */
438 address = CMD_INV_IOMMU_ALL_PAGES_ADDRESS;
439 s = 1;
Joerg Roedela19ae1e2008-06-26 21:27:55 +0200440 }
441
Joerg Roedel999ba412008-07-03 19:35:08 +0200442 iommu_queue_inv_iommu_pages(iommu, address, domid, 0, s);
443
Joerg Roedela19ae1e2008-06-26 21:27:55 +0200444 return 0;
445}
Joerg Roedelb6c02712008-06-26 21:27:53 +0200446
Joerg Roedel1c655772008-09-04 18:40:05 +0200447/* Flush the whole IO/TLB for a given protection domain */
448static void iommu_flush_tlb(struct amd_iommu *iommu, u16 domid)
449{
450 u64 address = CMD_INV_IOMMU_ALL_PAGES_ADDRESS;
451
Joerg Roedelf57d98a2008-12-12 15:46:29 +0100452 INC_STATS_COUNTER(domain_flush_single);
453
Joerg Roedel1c655772008-09-04 18:40:05 +0200454 iommu_queue_inv_iommu_pages(iommu, address, domid, 0, 1);
455}
456
Chris Wright42a49f92009-06-15 15:42:00 +0200457/* Flush the whole IO/TLB for a given protection domain - including PDE */
458static void iommu_flush_tlb_pde(struct amd_iommu *iommu, u16 domid)
459{
460 u64 address = CMD_INV_IOMMU_ALL_PAGES_ADDRESS;
461
462 INC_STATS_COUNTER(domain_flush_single);
463
464 iommu_queue_inv_iommu_pages(iommu, address, domid, 1, 1);
465}
466
Joerg Roedel43f49602008-12-02 21:01:12 +0100467/*
Joerg Roedele394d722009-09-03 15:28:33 +0200468 * This function flushes one domain on one IOMMU
Joerg Roedel43f49602008-12-02 21:01:12 +0100469 */
Joerg Roedele394d722009-09-03 15:28:33 +0200470static void flush_domain_on_iommu(struct amd_iommu *iommu, u16 domid)
Joerg Roedel43f49602008-12-02 21:01:12 +0100471{
Joerg Roedel43f49602008-12-02 21:01:12 +0100472 struct iommu_cmd cmd;
Joerg Roedele394d722009-09-03 15:28:33 +0200473 unsigned long flags;
Joerg Roedel18811f52008-12-12 15:48:28 +0100474
Joerg Roedel43f49602008-12-02 21:01:12 +0100475 __iommu_build_inv_iommu_pages(&cmd, CMD_INV_IOMMU_ALL_PAGES_ADDRESS,
476 domid, 1, 1);
477
Joerg Roedele394d722009-09-03 15:28:33 +0200478 spin_lock_irqsave(&iommu->lock, flags);
479 __iommu_queue_command(iommu, &cmd);
480 __iommu_completion_wait(iommu);
481 __iommu_wait_for_completion(iommu);
482 spin_unlock_irqrestore(&iommu->lock, flags);
Joerg Roedel43f49602008-12-02 21:01:12 +0100483}
Joerg Roedel43f49602008-12-02 21:01:12 +0100484
Joerg Roedele394d722009-09-03 15:28:33 +0200485static void flush_all_domains_on_iommu(struct amd_iommu *iommu)
Joerg Roedelbfd1be12009-05-05 15:33:57 +0200486{
487 int i;
488
489 for (i = 1; i < MAX_DOMAIN_ID; ++i) {
490 if (!test_bit(i, amd_iommu_pd_alloc_bitmap))
491 continue;
Joerg Roedele394d722009-09-03 15:28:33 +0200492 flush_domain_on_iommu(iommu, i);
Joerg Roedelbfd1be12009-05-05 15:33:57 +0200493 }
Joerg Roedele394d722009-09-03 15:28:33 +0200494
495}
496
497/*
498 * This function is used to flush the IO/TLB for a given protection domain
499 * on every IOMMU in the system
500 */
501static void iommu_flush_domain(u16 domid)
502{
503 struct amd_iommu *iommu;
504
505 INC_STATS_COUNTER(domain_flush_all);
506
507 for_each_iommu(iommu)
508 flush_domain_on_iommu(iommu, domid);
509}
510
511void amd_iommu_flush_all_domains(void)
512{
513 struct amd_iommu *iommu;
514
515 for_each_iommu(iommu)
516 flush_all_domains_on_iommu(iommu);
Joerg Roedelbfd1be12009-05-05 15:33:57 +0200517}
518
Joerg Roedeld586d782009-09-03 15:39:23 +0200519static void flush_all_devices_for_iommu(struct amd_iommu *iommu)
520{
521 int i;
522
523 for (i = 0; i <= amd_iommu_last_bdf; ++i) {
524 if (iommu != amd_iommu_rlookup_table[i])
525 continue;
526
527 iommu_queue_inv_dev_entry(iommu, i);
528 iommu_completion_wait(iommu);
529 }
530}
531
Joerg Roedel7d7a1102009-05-05 15:48:10 +0200532void amd_iommu_flush_all_devices(void)
533{
534 struct amd_iommu *iommu;
535 int i;
536
537 for (i = 0; i <= amd_iommu_last_bdf; ++i) {
538 if (amd_iommu_pd_table[i] == NULL)
539 continue;
540
541 iommu = amd_iommu_rlookup_table[i];
542 if (!iommu)
543 continue;
544
545 iommu_queue_inv_dev_entry(iommu, i);
546 iommu_completion_wait(iommu);
547 }
548}
549
Joerg Roedel431b2a22008-07-11 17:14:22 +0200550/****************************************************************************
551 *
552 * The functions below are used the create the page table mappings for
553 * unity mapped regions.
554 *
555 ****************************************************************************/
556
557/*
558 * Generic mapping functions. It maps a physical address into a DMA
559 * address space. It allocates the page table pages if necessary.
560 * In the future it can be extended to a generic mapping function
561 * supporting all features of AMD IOMMU page tables like level skipping
562 * and full 64 bit address spaces.
563 */
Joerg Roedel38e817f2008-12-02 17:27:52 +0100564static int iommu_map_page(struct protection_domain *dom,
565 unsigned long bus_addr,
566 unsigned long phys_addr,
567 int prot)
Joerg Roedelbd0e5212008-06-26 21:27:56 +0200568{
Joerg Roedel8bda3092009-05-12 12:02:46 +0200569 u64 __pte, *pte;
Joerg Roedelbd0e5212008-06-26 21:27:56 +0200570
571 bus_addr = PAGE_ALIGN(bus_addr);
Joerg Roedelbb9d4ff2008-12-04 15:59:48 +0100572 phys_addr = PAGE_ALIGN(phys_addr);
Joerg Roedelbd0e5212008-06-26 21:27:56 +0200573
574 /* only support 512GB address spaces for now */
575 if (bus_addr > IOMMU_MAP_SIZE_L3 || !(prot & IOMMU_PROT_MASK))
576 return -EINVAL;
577
Joerg Roedel8bda3092009-05-12 12:02:46 +0200578 pte = alloc_pte(dom, bus_addr, NULL, GFP_KERNEL);
Joerg Roedelbd0e5212008-06-26 21:27:56 +0200579
580 if (IOMMU_PTE_PRESENT(*pte))
581 return -EBUSY;
582
583 __pte = phys_addr | IOMMU_PTE_P;
584 if (prot & IOMMU_PROT_IR)
585 __pte |= IOMMU_PTE_IR;
586 if (prot & IOMMU_PROT_IW)
587 __pte |= IOMMU_PTE_IW;
588
589 *pte = __pte;
590
591 return 0;
592}
593
Joerg Roedeleb74ff62008-12-02 19:59:10 +0100594static void iommu_unmap_page(struct protection_domain *dom,
595 unsigned long bus_addr)
596{
597 u64 *pte;
598
599 pte = &dom->pt_root[IOMMU_PTE_L2_INDEX(bus_addr)];
600
601 if (!IOMMU_PTE_PRESENT(*pte))
602 return;
603
604 pte = IOMMU_PTE_PAGE(*pte);
605 pte = &pte[IOMMU_PTE_L1_INDEX(bus_addr)];
606
607 if (!IOMMU_PTE_PRESENT(*pte))
608 return;
609
610 pte = IOMMU_PTE_PAGE(*pte);
611 pte = &pte[IOMMU_PTE_L1_INDEX(bus_addr)];
612
613 *pte = 0;
614}
Joerg Roedeleb74ff62008-12-02 19:59:10 +0100615
Joerg Roedel431b2a22008-07-11 17:14:22 +0200616/*
617 * This function checks if a specific unity mapping entry is needed for
618 * this specific IOMMU.
619 */
Joerg Roedelbd0e5212008-06-26 21:27:56 +0200620static int iommu_for_unity_map(struct amd_iommu *iommu,
621 struct unity_map_entry *entry)
622{
623 u16 bdf, i;
624
625 for (i = entry->devid_start; i <= entry->devid_end; ++i) {
626 bdf = amd_iommu_alias_table[i];
627 if (amd_iommu_rlookup_table[bdf] == iommu)
628 return 1;
629 }
630
631 return 0;
632}
633
Joerg Roedel431b2a22008-07-11 17:14:22 +0200634/*
635 * Init the unity mappings for a specific IOMMU in the system
636 *
637 * Basically iterates over all unity mapping entries and applies them to
638 * the default domain DMA of that IOMMU if necessary.
639 */
Joerg Roedelbd0e5212008-06-26 21:27:56 +0200640static int iommu_init_unity_mappings(struct amd_iommu *iommu)
641{
642 struct unity_map_entry *entry;
643 int ret;
644
645 list_for_each_entry(entry, &amd_iommu_unity_map, list) {
646 if (!iommu_for_unity_map(iommu, entry))
647 continue;
648 ret = dma_ops_unity_map(iommu->default_dom, entry);
649 if (ret)
650 return ret;
651 }
652
653 return 0;
654}
655
Joerg Roedel431b2a22008-07-11 17:14:22 +0200656/*
657 * This function actually applies the mapping to the page table of the
658 * dma_ops domain.
659 */
Joerg Roedelbd0e5212008-06-26 21:27:56 +0200660static int dma_ops_unity_map(struct dma_ops_domain *dma_dom,
661 struct unity_map_entry *e)
662{
663 u64 addr;
664 int ret;
665
666 for (addr = e->address_start; addr < e->address_end;
667 addr += PAGE_SIZE) {
Joerg Roedel38e817f2008-12-02 17:27:52 +0100668 ret = iommu_map_page(&dma_dom->domain, addr, addr, e->prot);
Joerg Roedelbd0e5212008-06-26 21:27:56 +0200669 if (ret)
670 return ret;
671 /*
672 * if unity mapping is in aperture range mark the page
673 * as allocated in the aperture
674 */
675 if (addr < dma_dom->aperture_size)
Joerg Roedelc3239562009-05-12 10:56:44 +0200676 __set_bit(addr >> PAGE_SHIFT,
Joerg Roedel384de722009-05-15 12:30:05 +0200677 dma_dom->aperture[0]->bitmap);
Joerg Roedelbd0e5212008-06-26 21:27:56 +0200678 }
679
680 return 0;
681}
682
Joerg Roedel431b2a22008-07-11 17:14:22 +0200683/*
684 * Inits the unity mappings required for a specific device
685 */
Joerg Roedelbd0e5212008-06-26 21:27:56 +0200686static int init_unity_mappings_for_device(struct dma_ops_domain *dma_dom,
687 u16 devid)
688{
689 struct unity_map_entry *e;
690 int ret;
691
692 list_for_each_entry(e, &amd_iommu_unity_map, list) {
693 if (!(devid >= e->devid_start && devid <= e->devid_end))
694 continue;
695 ret = dma_ops_unity_map(dma_dom, e);
696 if (ret)
697 return ret;
698 }
699
700 return 0;
701}
702
Joerg Roedel431b2a22008-07-11 17:14:22 +0200703/****************************************************************************
704 *
705 * The next functions belong to the address allocator for the dma_ops
706 * interface functions. They work like the allocators in the other IOMMU
707 * drivers. Its basically a bitmap which marks the allocated pages in
708 * the aperture. Maybe it could be enhanced in the future to a more
709 * efficient allocator.
710 *
711 ****************************************************************************/
Joerg Roedeld3086442008-06-26 21:27:57 +0200712
Joerg Roedel431b2a22008-07-11 17:14:22 +0200713/*
Joerg Roedel384de722009-05-15 12:30:05 +0200714 * The address allocator core functions.
Joerg Roedel431b2a22008-07-11 17:14:22 +0200715 *
716 * called with domain->lock held
717 */
Joerg Roedel384de722009-05-15 12:30:05 +0200718
Joerg Roedel9cabe892009-05-18 16:38:55 +0200719/*
Joerg Roedel00cd1222009-05-19 09:52:40 +0200720 * This function checks if there is a PTE for a given dma address. If
721 * there is one, it returns the pointer to it.
722 */
723static u64* fetch_pte(struct protection_domain *domain,
724 unsigned long address)
725{
726 u64 *pte;
727
728 pte = &domain->pt_root[IOMMU_PTE_L2_INDEX(address)];
729
730 if (!IOMMU_PTE_PRESENT(*pte))
731 return NULL;
732
733 pte = IOMMU_PTE_PAGE(*pte);
734 pte = &pte[IOMMU_PTE_L1_INDEX(address)];
735
736 if (!IOMMU_PTE_PRESENT(*pte))
737 return NULL;
738
739 pte = IOMMU_PTE_PAGE(*pte);
740 pte = &pte[IOMMU_PTE_L0_INDEX(address)];
741
742 return pte;
743}
744
745/*
Joerg Roedel9cabe892009-05-18 16:38:55 +0200746 * This function is used to add a new aperture range to an existing
747 * aperture in case of dma_ops domain allocation or address allocation
748 * failure.
749 */
Joerg Roedel00cd1222009-05-19 09:52:40 +0200750static int alloc_new_range(struct amd_iommu *iommu,
751 struct dma_ops_domain *dma_dom,
Joerg Roedel9cabe892009-05-18 16:38:55 +0200752 bool populate, gfp_t gfp)
753{
754 int index = dma_dom->aperture_size >> APERTURE_RANGE_SHIFT;
Joerg Roedel00cd1222009-05-19 09:52:40 +0200755 int i;
Joerg Roedel9cabe892009-05-18 16:38:55 +0200756
Joerg Roedelf5e97052009-05-22 12:31:53 +0200757#ifdef CONFIG_IOMMU_STRESS
758 populate = false;
759#endif
760
Joerg Roedel9cabe892009-05-18 16:38:55 +0200761 if (index >= APERTURE_MAX_RANGES)
762 return -ENOMEM;
763
764 dma_dom->aperture[index] = kzalloc(sizeof(struct aperture_range), gfp);
765 if (!dma_dom->aperture[index])
766 return -ENOMEM;
767
768 dma_dom->aperture[index]->bitmap = (void *)get_zeroed_page(gfp);
769 if (!dma_dom->aperture[index]->bitmap)
770 goto out_free;
771
772 dma_dom->aperture[index]->offset = dma_dom->aperture_size;
773
774 if (populate) {
775 unsigned long address = dma_dom->aperture_size;
776 int i, num_ptes = APERTURE_RANGE_PAGES / 512;
777 u64 *pte, *pte_page;
778
779 for (i = 0; i < num_ptes; ++i) {
780 pte = alloc_pte(&dma_dom->domain, address,
781 &pte_page, gfp);
782 if (!pte)
783 goto out_free;
784
785 dma_dom->aperture[index]->pte_pages[i] = pte_page;
786
787 address += APERTURE_RANGE_SIZE / 64;
788 }
789 }
790
791 dma_dom->aperture_size += APERTURE_RANGE_SIZE;
792
Joerg Roedel00cd1222009-05-19 09:52:40 +0200793 /* Intialize the exclusion range if necessary */
794 if (iommu->exclusion_start &&
795 iommu->exclusion_start >= dma_dom->aperture[index]->offset &&
796 iommu->exclusion_start < dma_dom->aperture_size) {
797 unsigned long startpage = iommu->exclusion_start >> PAGE_SHIFT;
798 int pages = iommu_num_pages(iommu->exclusion_start,
799 iommu->exclusion_length,
800 PAGE_SIZE);
801 dma_ops_reserve_addresses(dma_dom, startpage, pages);
802 }
803
804 /*
805 * Check for areas already mapped as present in the new aperture
806 * range and mark those pages as reserved in the allocator. Such
807 * mappings may already exist as a result of requested unity
808 * mappings for devices.
809 */
810 for (i = dma_dom->aperture[index]->offset;
811 i < dma_dom->aperture_size;
812 i += PAGE_SIZE) {
813 u64 *pte = fetch_pte(&dma_dom->domain, i);
814 if (!pte || !IOMMU_PTE_PRESENT(*pte))
815 continue;
816
817 dma_ops_reserve_addresses(dma_dom, i << PAGE_SHIFT, 1);
818 }
819
Joerg Roedel9cabe892009-05-18 16:38:55 +0200820 return 0;
821
822out_free:
823 free_page((unsigned long)dma_dom->aperture[index]->bitmap);
824
825 kfree(dma_dom->aperture[index]);
826 dma_dom->aperture[index] = NULL;
827
828 return -ENOMEM;
829}
830
Joerg Roedel384de722009-05-15 12:30:05 +0200831static unsigned long dma_ops_area_alloc(struct device *dev,
832 struct dma_ops_domain *dom,
833 unsigned int pages,
834 unsigned long align_mask,
835 u64 dma_mask,
836 unsigned long start)
837{
Joerg Roedel803b8cb42009-05-18 15:32:48 +0200838 unsigned long next_bit = dom->next_address % APERTURE_RANGE_SIZE;
Joerg Roedel384de722009-05-15 12:30:05 +0200839 int max_index = dom->aperture_size >> APERTURE_RANGE_SHIFT;
840 int i = start >> APERTURE_RANGE_SHIFT;
841 unsigned long boundary_size;
842 unsigned long address = -1;
843 unsigned long limit;
844
Joerg Roedel803b8cb42009-05-18 15:32:48 +0200845 next_bit >>= PAGE_SHIFT;
846
Joerg Roedel384de722009-05-15 12:30:05 +0200847 boundary_size = ALIGN(dma_get_seg_boundary(dev) + 1,
848 PAGE_SIZE) >> PAGE_SHIFT;
849
850 for (;i < max_index; ++i) {
851 unsigned long offset = dom->aperture[i]->offset >> PAGE_SHIFT;
852
853 if (dom->aperture[i]->offset >= dma_mask)
854 break;
855
856 limit = iommu_device_max_index(APERTURE_RANGE_PAGES, offset,
857 dma_mask >> PAGE_SHIFT);
858
859 address = iommu_area_alloc(dom->aperture[i]->bitmap,
860 limit, next_bit, pages, 0,
861 boundary_size, align_mask);
862 if (address != -1) {
863 address = dom->aperture[i]->offset +
864 (address << PAGE_SHIFT);
Joerg Roedel803b8cb42009-05-18 15:32:48 +0200865 dom->next_address = address + (pages << PAGE_SHIFT);
Joerg Roedel384de722009-05-15 12:30:05 +0200866 break;
867 }
868
869 next_bit = 0;
870 }
871
872 return address;
873}
874
Joerg Roedeld3086442008-06-26 21:27:57 +0200875static unsigned long dma_ops_alloc_addresses(struct device *dev,
876 struct dma_ops_domain *dom,
Joerg Roedel6d4f343f2008-09-04 19:18:02 +0200877 unsigned int pages,
Joerg Roedel832a90c2008-09-18 15:54:23 +0200878 unsigned long align_mask,
879 u64 dma_mask)
Joerg Roedeld3086442008-06-26 21:27:57 +0200880{
Joerg Roedeld3086442008-06-26 21:27:57 +0200881 unsigned long address;
Joerg Roedeld3086442008-06-26 21:27:57 +0200882
Joerg Roedelfe16f082009-05-22 12:27:53 +0200883#ifdef CONFIG_IOMMU_STRESS
884 dom->next_address = 0;
885 dom->need_flush = true;
886#endif
Joerg Roedeld3086442008-06-26 21:27:57 +0200887
Joerg Roedel384de722009-05-15 12:30:05 +0200888 address = dma_ops_area_alloc(dev, dom, pages, align_mask,
Joerg Roedel803b8cb42009-05-18 15:32:48 +0200889 dma_mask, dom->next_address);
Joerg Roedeld3086442008-06-26 21:27:57 +0200890
Joerg Roedel1c655772008-09-04 18:40:05 +0200891 if (address == -1) {
Joerg Roedel803b8cb42009-05-18 15:32:48 +0200892 dom->next_address = 0;
Joerg Roedel384de722009-05-15 12:30:05 +0200893 address = dma_ops_area_alloc(dev, dom, pages, align_mask,
894 dma_mask, 0);
Joerg Roedel1c655772008-09-04 18:40:05 +0200895 dom->need_flush = true;
896 }
Joerg Roedeld3086442008-06-26 21:27:57 +0200897
Joerg Roedel384de722009-05-15 12:30:05 +0200898 if (unlikely(address == -1))
Joerg Roedeld3086442008-06-26 21:27:57 +0200899 address = bad_dma_address;
900
901 WARN_ON((address + (PAGE_SIZE*pages)) > dom->aperture_size);
902
903 return address;
904}
905
Joerg Roedel431b2a22008-07-11 17:14:22 +0200906/*
907 * The address free function.
908 *
909 * called with domain->lock held
910 */
Joerg Roedeld3086442008-06-26 21:27:57 +0200911static void dma_ops_free_addresses(struct dma_ops_domain *dom,
912 unsigned long address,
913 unsigned int pages)
914{
Joerg Roedel384de722009-05-15 12:30:05 +0200915 unsigned i = address >> APERTURE_RANGE_SHIFT;
916 struct aperture_range *range = dom->aperture[i];
Joerg Roedel80be3082008-11-06 14:59:05 +0100917
Joerg Roedel384de722009-05-15 12:30:05 +0200918 BUG_ON(i >= APERTURE_MAX_RANGES || range == NULL);
919
Joerg Roedel47bccd62009-05-22 12:40:54 +0200920#ifdef CONFIG_IOMMU_STRESS
921 if (i < 4)
922 return;
923#endif
924
Joerg Roedel803b8cb42009-05-18 15:32:48 +0200925 if (address >= dom->next_address)
Joerg Roedel80be3082008-11-06 14:59:05 +0100926 dom->need_flush = true;
Joerg Roedel384de722009-05-15 12:30:05 +0200927
928 address = (address % APERTURE_RANGE_SIZE) >> PAGE_SHIFT;
Joerg Roedel803b8cb42009-05-18 15:32:48 +0200929
Joerg Roedel384de722009-05-15 12:30:05 +0200930 iommu_area_free(range->bitmap, address, pages);
931
Joerg Roedeld3086442008-06-26 21:27:57 +0200932}
933
Joerg Roedel431b2a22008-07-11 17:14:22 +0200934/****************************************************************************
935 *
936 * The next functions belong to the domain allocation. A domain is
937 * allocated for every IOMMU as the default domain. If device isolation
938 * is enabled, every device get its own domain. The most important thing
939 * about domains is the page table mapping the DMA address space they
940 * contain.
941 *
942 ****************************************************************************/
943
Joerg Roedelec487d12008-06-26 21:27:58 +0200944static u16 domain_id_alloc(void)
945{
946 unsigned long flags;
947 int id;
948
949 write_lock_irqsave(&amd_iommu_devtable_lock, flags);
950 id = find_first_zero_bit(amd_iommu_pd_alloc_bitmap, MAX_DOMAIN_ID);
951 BUG_ON(id == 0);
952 if (id > 0 && id < MAX_DOMAIN_ID)
953 __set_bit(id, amd_iommu_pd_alloc_bitmap);
954 else
955 id = 0;
956 write_unlock_irqrestore(&amd_iommu_devtable_lock, flags);
957
958 return id;
959}
960
Joerg Roedela2acfb72008-12-02 18:28:53 +0100961static void domain_id_free(int id)
962{
963 unsigned long flags;
964
965 write_lock_irqsave(&amd_iommu_devtable_lock, flags);
966 if (id > 0 && id < MAX_DOMAIN_ID)
967 __clear_bit(id, amd_iommu_pd_alloc_bitmap);
968 write_unlock_irqrestore(&amd_iommu_devtable_lock, flags);
969}
Joerg Roedela2acfb72008-12-02 18:28:53 +0100970
Joerg Roedel431b2a22008-07-11 17:14:22 +0200971/*
972 * Used to reserve address ranges in the aperture (e.g. for exclusion
973 * ranges.
974 */
Joerg Roedelec487d12008-06-26 21:27:58 +0200975static void dma_ops_reserve_addresses(struct dma_ops_domain *dom,
976 unsigned long start_page,
977 unsigned int pages)
978{
Joerg Roedel384de722009-05-15 12:30:05 +0200979 unsigned int i, last_page = dom->aperture_size >> PAGE_SHIFT;
Joerg Roedelec487d12008-06-26 21:27:58 +0200980
981 if (start_page + pages > last_page)
982 pages = last_page - start_page;
983
Joerg Roedel384de722009-05-15 12:30:05 +0200984 for (i = start_page; i < start_page + pages; ++i) {
985 int index = i / APERTURE_RANGE_PAGES;
986 int page = i % APERTURE_RANGE_PAGES;
987 __set_bit(page, dom->aperture[index]->bitmap);
988 }
Joerg Roedelec487d12008-06-26 21:27:58 +0200989}
990
Joerg Roedel86db2e52008-12-02 18:20:21 +0100991static void free_pagetable(struct protection_domain *domain)
Joerg Roedelec487d12008-06-26 21:27:58 +0200992{
993 int i, j;
994 u64 *p1, *p2, *p3;
995
Joerg Roedel86db2e52008-12-02 18:20:21 +0100996 p1 = domain->pt_root;
Joerg Roedelec487d12008-06-26 21:27:58 +0200997
998 if (!p1)
999 return;
1000
1001 for (i = 0; i < 512; ++i) {
1002 if (!IOMMU_PTE_PRESENT(p1[i]))
1003 continue;
1004
1005 p2 = IOMMU_PTE_PAGE(p1[i]);
Joerg Roedel3cc3d842008-12-04 16:44:31 +01001006 for (j = 0; j < 512; ++j) {
Joerg Roedelec487d12008-06-26 21:27:58 +02001007 if (!IOMMU_PTE_PRESENT(p2[j]))
1008 continue;
1009 p3 = IOMMU_PTE_PAGE(p2[j]);
1010 free_page((unsigned long)p3);
1011 }
1012
1013 free_page((unsigned long)p2);
1014 }
1015
1016 free_page((unsigned long)p1);
Joerg Roedel86db2e52008-12-02 18:20:21 +01001017
1018 domain->pt_root = NULL;
Joerg Roedelec487d12008-06-26 21:27:58 +02001019}
1020
Joerg Roedel431b2a22008-07-11 17:14:22 +02001021/*
1022 * Free a domain, only used if something went wrong in the
1023 * allocation path and we need to free an already allocated page table
1024 */
Joerg Roedelec487d12008-06-26 21:27:58 +02001025static void dma_ops_domain_free(struct dma_ops_domain *dom)
1026{
Joerg Roedel384de722009-05-15 12:30:05 +02001027 int i;
1028
Joerg Roedelec487d12008-06-26 21:27:58 +02001029 if (!dom)
1030 return;
1031
Joerg Roedel86db2e52008-12-02 18:20:21 +01001032 free_pagetable(&dom->domain);
Joerg Roedelec487d12008-06-26 21:27:58 +02001033
Joerg Roedel384de722009-05-15 12:30:05 +02001034 for (i = 0; i < APERTURE_MAX_RANGES; ++i) {
1035 if (!dom->aperture[i])
1036 continue;
1037 free_page((unsigned long)dom->aperture[i]->bitmap);
1038 kfree(dom->aperture[i]);
1039 }
Joerg Roedelec487d12008-06-26 21:27:58 +02001040
1041 kfree(dom);
1042}
1043
Joerg Roedel431b2a22008-07-11 17:14:22 +02001044/*
1045 * Allocates a new protection domain usable for the dma_ops functions.
1046 * It also intializes the page table and the address allocator data
1047 * structures required for the dma_ops interface
1048 */
Joerg Roedeld9cfed92009-05-19 12:16:29 +02001049static struct dma_ops_domain *dma_ops_domain_alloc(struct amd_iommu *iommu)
Joerg Roedelec487d12008-06-26 21:27:58 +02001050{
1051 struct dma_ops_domain *dma_dom;
Joerg Roedelec487d12008-06-26 21:27:58 +02001052
1053 dma_dom = kzalloc(sizeof(struct dma_ops_domain), GFP_KERNEL);
1054 if (!dma_dom)
1055 return NULL;
1056
1057 spin_lock_init(&dma_dom->domain.lock);
1058
1059 dma_dom->domain.id = domain_id_alloc();
1060 if (dma_dom->domain.id == 0)
1061 goto free_dma_dom;
1062 dma_dom->domain.mode = PAGE_MODE_3_LEVEL;
1063 dma_dom->domain.pt_root = (void *)get_zeroed_page(GFP_KERNEL);
Joerg Roedel9fdb19d2008-12-02 17:46:25 +01001064 dma_dom->domain.flags = PD_DMA_OPS_MASK;
Joerg Roedelec487d12008-06-26 21:27:58 +02001065 dma_dom->domain.priv = dma_dom;
1066 if (!dma_dom->domain.pt_root)
1067 goto free_dma_dom;
Joerg Roedelec487d12008-06-26 21:27:58 +02001068
Joerg Roedel1c655772008-09-04 18:40:05 +02001069 dma_dom->need_flush = false;
Joerg Roedelbd60b732008-09-11 10:24:48 +02001070 dma_dom->target_dev = 0xffff;
Joerg Roedel1c655772008-09-04 18:40:05 +02001071
Joerg Roedel00cd1222009-05-19 09:52:40 +02001072 if (alloc_new_range(iommu, dma_dom, true, GFP_KERNEL))
Joerg Roedelec487d12008-06-26 21:27:58 +02001073 goto free_dma_dom;
Joerg Roedelec487d12008-06-26 21:27:58 +02001074
Joerg Roedel431b2a22008-07-11 17:14:22 +02001075 /*
Joerg Roedelec487d12008-06-26 21:27:58 +02001076 * mark the first page as allocated so we never return 0 as
1077 * a valid dma-address. So we can use 0 as error value
Joerg Roedel431b2a22008-07-11 17:14:22 +02001078 */
Joerg Roedel384de722009-05-15 12:30:05 +02001079 dma_dom->aperture[0]->bitmap[0] = 1;
Joerg Roedel803b8cb42009-05-18 15:32:48 +02001080 dma_dom->next_address = 0;
Joerg Roedelec487d12008-06-26 21:27:58 +02001081
Joerg Roedelec487d12008-06-26 21:27:58 +02001082
1083 return dma_dom;
1084
1085free_dma_dom:
1086 dma_ops_domain_free(dma_dom);
1087
1088 return NULL;
1089}
1090
Joerg Roedel431b2a22008-07-11 17:14:22 +02001091/*
Joerg Roedel5b28df62008-12-02 17:49:42 +01001092 * little helper function to check whether a given protection domain is a
1093 * dma_ops domain
1094 */
1095static bool dma_ops_domain(struct protection_domain *domain)
1096{
1097 return domain->flags & PD_DMA_OPS_MASK;
1098}
1099
1100/*
Joerg Roedel431b2a22008-07-11 17:14:22 +02001101 * Find out the protection domain structure for a given PCI device. This
1102 * will give us the pointer to the page table root for example.
1103 */
Joerg Roedelb20ac0d2008-06-26 21:27:59 +02001104static struct protection_domain *domain_for_device(u16 devid)
1105{
1106 struct protection_domain *dom;
1107 unsigned long flags;
1108
1109 read_lock_irqsave(&amd_iommu_devtable_lock, flags);
1110 dom = amd_iommu_pd_table[devid];
1111 read_unlock_irqrestore(&amd_iommu_devtable_lock, flags);
1112
1113 return dom;
1114}
1115
Joerg Roedel431b2a22008-07-11 17:14:22 +02001116/*
1117 * If a device is not yet associated with a domain, this function does
1118 * assigns it visible for the hardware
1119 */
Joerg Roedelf1179dc2008-12-10 14:39:51 +01001120static void attach_device(struct amd_iommu *iommu,
1121 struct protection_domain *domain,
1122 u16 devid)
Joerg Roedelb20ac0d2008-06-26 21:27:59 +02001123{
1124 unsigned long flags;
Joerg Roedelb20ac0d2008-06-26 21:27:59 +02001125 u64 pte_root = virt_to_phys(domain->pt_root);
1126
Joerg Roedel863c74e2008-12-02 17:56:36 +01001127 domain->dev_cnt += 1;
1128
Joerg Roedel38ddf412008-09-11 10:38:32 +02001129 pte_root |= (domain->mode & DEV_ENTRY_MODE_MASK)
1130 << DEV_ENTRY_MODE_SHIFT;
1131 pte_root |= IOMMU_PTE_IR | IOMMU_PTE_IW | IOMMU_PTE_P | IOMMU_PTE_TV;
Joerg Roedelb20ac0d2008-06-26 21:27:59 +02001132
1133 write_lock_irqsave(&amd_iommu_devtable_lock, flags);
Joerg Roedel38ddf412008-09-11 10:38:32 +02001134 amd_iommu_dev_table[devid].data[0] = lower_32_bits(pte_root);
1135 amd_iommu_dev_table[devid].data[1] = upper_32_bits(pte_root);
Joerg Roedelb20ac0d2008-06-26 21:27:59 +02001136 amd_iommu_dev_table[devid].data[2] = domain->id;
1137
1138 amd_iommu_pd_table[devid] = domain;
1139 write_unlock_irqrestore(&amd_iommu_devtable_lock, flags);
1140
Chris Wright42a49f92009-06-15 15:42:00 +02001141 /*
1142 * We might boot into a crash-kernel here. The crashed kernel
1143 * left the caches in the IOMMU dirty. So we have to flush
1144 * here to evict all dirty stuff.
1145 */
Joerg Roedelb20ac0d2008-06-26 21:27:59 +02001146 iommu_queue_inv_dev_entry(iommu, devid);
Chris Wright42a49f92009-06-15 15:42:00 +02001147 iommu_flush_tlb_pde(iommu, domain->id);
Joerg Roedelb20ac0d2008-06-26 21:27:59 +02001148}
1149
Joerg Roedel355bf552008-12-08 12:02:41 +01001150/*
1151 * Removes a device from a protection domain (unlocked)
1152 */
1153static void __detach_device(struct protection_domain *domain, u16 devid)
1154{
1155
1156 /* lock domain */
1157 spin_lock(&domain->lock);
1158
1159 /* remove domain from the lookup table */
1160 amd_iommu_pd_table[devid] = NULL;
1161
1162 /* remove entry from the device table seen by the hardware */
1163 amd_iommu_dev_table[devid].data[0] = IOMMU_PTE_P | IOMMU_PTE_TV;
1164 amd_iommu_dev_table[devid].data[1] = 0;
1165 amd_iommu_dev_table[devid].data[2] = 0;
1166
1167 /* decrease reference counter */
1168 domain->dev_cnt -= 1;
1169
1170 /* ready */
1171 spin_unlock(&domain->lock);
1172}
1173
1174/*
1175 * Removes a device from a protection domain (with devtable_lock held)
1176 */
1177static void detach_device(struct protection_domain *domain, u16 devid)
1178{
1179 unsigned long flags;
1180
1181 /* lock device table */
1182 write_lock_irqsave(&amd_iommu_devtable_lock, flags);
1183 __detach_device(domain, devid);
1184 write_unlock_irqrestore(&amd_iommu_devtable_lock, flags);
1185}
Joerg Roedele275a2a2008-12-10 18:27:25 +01001186
1187static int device_change_notifier(struct notifier_block *nb,
1188 unsigned long action, void *data)
1189{
1190 struct device *dev = data;
1191 struct pci_dev *pdev = to_pci_dev(dev);
1192 u16 devid = calc_devid(pdev->bus->number, pdev->devfn);
1193 struct protection_domain *domain;
1194 struct dma_ops_domain *dma_domain;
1195 struct amd_iommu *iommu;
Joerg Roedel1ac4cbb2008-12-10 19:33:26 +01001196 unsigned long flags;
Joerg Roedele275a2a2008-12-10 18:27:25 +01001197
1198 if (devid > amd_iommu_last_bdf)
1199 goto out;
1200
1201 devid = amd_iommu_alias_table[devid];
1202
1203 iommu = amd_iommu_rlookup_table[devid];
1204 if (iommu == NULL)
1205 goto out;
1206
1207 domain = domain_for_device(devid);
1208
1209 if (domain && !dma_ops_domain(domain))
1210 WARN_ONCE(1, "AMD IOMMU WARNING: device %s already bound "
1211 "to a non-dma-ops domain\n", dev_name(dev));
1212
1213 switch (action) {
Chris Wrightc1eee672009-05-21 00:56:58 -07001214 case BUS_NOTIFY_UNBOUND_DRIVER:
Joerg Roedele275a2a2008-12-10 18:27:25 +01001215 if (!domain)
1216 goto out;
1217 detach_device(domain, devid);
1218 break;
Joerg Roedel1ac4cbb2008-12-10 19:33:26 +01001219 case BUS_NOTIFY_ADD_DEVICE:
1220 /* allocate a protection domain if a device is added */
1221 dma_domain = find_protection_domain(devid);
1222 if (dma_domain)
1223 goto out;
Joerg Roedeld9cfed92009-05-19 12:16:29 +02001224 dma_domain = dma_ops_domain_alloc(iommu);
Joerg Roedel1ac4cbb2008-12-10 19:33:26 +01001225 if (!dma_domain)
1226 goto out;
1227 dma_domain->target_dev = devid;
1228
1229 spin_lock_irqsave(&iommu_pd_list_lock, flags);
1230 list_add_tail(&dma_domain->list, &iommu_pd_list);
1231 spin_unlock_irqrestore(&iommu_pd_list_lock, flags);
1232
1233 break;
Joerg Roedele275a2a2008-12-10 18:27:25 +01001234 default:
1235 goto out;
1236 }
1237
1238 iommu_queue_inv_dev_entry(iommu, devid);
1239 iommu_completion_wait(iommu);
1240
1241out:
1242 return 0;
1243}
1244
Jaswinder Singh Rajputb25ae672009-07-01 19:53:14 +05301245static struct notifier_block device_nb = {
Joerg Roedele275a2a2008-12-10 18:27:25 +01001246 .notifier_call = device_change_notifier,
1247};
Joerg Roedel355bf552008-12-08 12:02:41 +01001248
Joerg Roedel431b2a22008-07-11 17:14:22 +02001249/*****************************************************************************
1250 *
1251 * The next functions belong to the dma_ops mapping/unmapping code.
1252 *
1253 *****************************************************************************/
1254
1255/*
Joerg Roedeldbcc1122008-09-04 15:04:26 +02001256 * This function checks if the driver got a valid device from the caller to
1257 * avoid dereferencing invalid pointers.
1258 */
1259static bool check_device(struct device *dev)
1260{
1261 if (!dev || !dev->dma_mask)
1262 return false;
1263
1264 return true;
1265}
1266
1267/*
Joerg Roedelbd60b732008-09-11 10:24:48 +02001268 * In this function the list of preallocated protection domains is traversed to
1269 * find the domain for a specific device
1270 */
1271static struct dma_ops_domain *find_protection_domain(u16 devid)
1272{
1273 struct dma_ops_domain *entry, *ret = NULL;
1274 unsigned long flags;
1275
1276 if (list_empty(&iommu_pd_list))
1277 return NULL;
1278
1279 spin_lock_irqsave(&iommu_pd_list_lock, flags);
1280
1281 list_for_each_entry(entry, &iommu_pd_list, list) {
1282 if (entry->target_dev == devid) {
1283 ret = entry;
Joerg Roedelbd60b732008-09-11 10:24:48 +02001284 break;
1285 }
1286 }
1287
1288 spin_unlock_irqrestore(&iommu_pd_list_lock, flags);
1289
1290 return ret;
1291}
1292
1293/*
Joerg Roedel431b2a22008-07-11 17:14:22 +02001294 * In the dma_ops path we only have the struct device. This function
1295 * finds the corresponding IOMMU, the protection domain and the
1296 * requestor id for a given device.
1297 * If the device is not yet associated with a domain this is also done
1298 * in this function.
1299 */
Joerg Roedelb20ac0d2008-06-26 21:27:59 +02001300static int get_device_resources(struct device *dev,
1301 struct amd_iommu **iommu,
1302 struct protection_domain **domain,
1303 u16 *bdf)
1304{
1305 struct dma_ops_domain *dma_dom;
1306 struct pci_dev *pcidev;
1307 u16 _bdf;
1308
Joerg Roedeldbcc1122008-09-04 15:04:26 +02001309 *iommu = NULL;
1310 *domain = NULL;
1311 *bdf = 0xffff;
1312
1313 if (dev->bus != &pci_bus_type)
1314 return 0;
Joerg Roedelb20ac0d2008-06-26 21:27:59 +02001315
1316 pcidev = to_pci_dev(dev);
Joerg Roedeld591b0a2008-07-11 17:14:35 +02001317 _bdf = calc_devid(pcidev->bus->number, pcidev->devfn);
Joerg Roedelb20ac0d2008-06-26 21:27:59 +02001318
Joerg Roedel431b2a22008-07-11 17:14:22 +02001319 /* device not translated by any IOMMU in the system? */
Joerg Roedeldbcc1122008-09-04 15:04:26 +02001320 if (_bdf > amd_iommu_last_bdf)
Joerg Roedelb20ac0d2008-06-26 21:27:59 +02001321 return 0;
Joerg Roedelb20ac0d2008-06-26 21:27:59 +02001322
1323 *bdf = amd_iommu_alias_table[_bdf];
1324
1325 *iommu = amd_iommu_rlookup_table[*bdf];
1326 if (*iommu == NULL)
1327 return 0;
Joerg Roedelb20ac0d2008-06-26 21:27:59 +02001328 *domain = domain_for_device(*bdf);
1329 if (*domain == NULL) {
Joerg Roedelbd60b732008-09-11 10:24:48 +02001330 dma_dom = find_protection_domain(*bdf);
1331 if (!dma_dom)
1332 dma_dom = (*iommu)->default_dom;
Joerg Roedelb20ac0d2008-06-26 21:27:59 +02001333 *domain = &dma_dom->domain;
Joerg Roedelf1179dc2008-12-10 14:39:51 +01001334 attach_device(*iommu, *domain, *bdf);
Joerg Roedele9a22a12009-06-09 12:00:37 +02001335 DUMP_printk("Using protection domain %d for device %s\n",
1336 (*domain)->id, dev_name(dev));
Joerg Roedelb20ac0d2008-06-26 21:27:59 +02001337 }
1338
Joerg Roedelf91ba192008-11-25 12:56:12 +01001339 if (domain_for_device(_bdf) == NULL)
Joerg Roedelf1179dc2008-12-10 14:39:51 +01001340 attach_device(*iommu, *domain, _bdf);
Joerg Roedelf91ba192008-11-25 12:56:12 +01001341
Joerg Roedelb20ac0d2008-06-26 21:27:59 +02001342 return 1;
1343}
1344
Joerg Roedel431b2a22008-07-11 17:14:22 +02001345/*
Joerg Roedel8bda3092009-05-12 12:02:46 +02001346 * If the pte_page is not yet allocated this function is called
1347 */
1348static u64* alloc_pte(struct protection_domain *dom,
1349 unsigned long address, u64 **pte_page, gfp_t gfp)
1350{
1351 u64 *pte, *page;
1352
1353 pte = &dom->pt_root[IOMMU_PTE_L2_INDEX(address)];
1354
1355 if (!IOMMU_PTE_PRESENT(*pte)) {
1356 page = (u64 *)get_zeroed_page(gfp);
1357 if (!page)
1358 return NULL;
1359 *pte = IOMMU_L2_PDE(virt_to_phys(page));
1360 }
1361
1362 pte = IOMMU_PTE_PAGE(*pte);
1363 pte = &pte[IOMMU_PTE_L1_INDEX(address)];
1364
1365 if (!IOMMU_PTE_PRESENT(*pte)) {
1366 page = (u64 *)get_zeroed_page(gfp);
1367 if (!page)
1368 return NULL;
1369 *pte = IOMMU_L1_PDE(virt_to_phys(page));
1370 }
1371
1372 pte = IOMMU_PTE_PAGE(*pte);
1373
1374 if (pte_page)
1375 *pte_page = pte;
1376
1377 pte = &pte[IOMMU_PTE_L0_INDEX(address)];
1378
1379 return pte;
1380}
1381
1382/*
1383 * This function fetches the PTE for a given address in the aperture
1384 */
1385static u64* dma_ops_get_pte(struct dma_ops_domain *dom,
1386 unsigned long address)
1387{
Joerg Roedel384de722009-05-15 12:30:05 +02001388 struct aperture_range *aperture;
Joerg Roedel8bda3092009-05-12 12:02:46 +02001389 u64 *pte, *pte_page;
1390
Joerg Roedel384de722009-05-15 12:30:05 +02001391 aperture = dom->aperture[APERTURE_RANGE_INDEX(address)];
1392 if (!aperture)
1393 return NULL;
1394
1395 pte = aperture->pte_pages[APERTURE_PAGE_INDEX(address)];
Joerg Roedel8bda3092009-05-12 12:02:46 +02001396 if (!pte) {
1397 pte = alloc_pte(&dom->domain, address, &pte_page, GFP_ATOMIC);
Joerg Roedel384de722009-05-15 12:30:05 +02001398 aperture->pte_pages[APERTURE_PAGE_INDEX(address)] = pte_page;
1399 } else
1400 pte += IOMMU_PTE_L0_INDEX(address);
Joerg Roedel8bda3092009-05-12 12:02:46 +02001401
1402 return pte;
1403}
1404
1405/*
Joerg Roedel431b2a22008-07-11 17:14:22 +02001406 * This is the generic map function. It maps one 4kb page at paddr to
1407 * the given address in the DMA address space for the domain.
1408 */
Joerg Roedelcb76c322008-06-26 21:28:00 +02001409static dma_addr_t dma_ops_domain_map(struct amd_iommu *iommu,
1410 struct dma_ops_domain *dom,
1411 unsigned long address,
1412 phys_addr_t paddr,
1413 int direction)
1414{
1415 u64 *pte, __pte;
1416
1417 WARN_ON(address > dom->aperture_size);
1418
1419 paddr &= PAGE_MASK;
1420
Joerg Roedel8bda3092009-05-12 12:02:46 +02001421 pte = dma_ops_get_pte(dom, address);
Joerg Roedel53812c12009-05-12 12:17:38 +02001422 if (!pte)
1423 return bad_dma_address;
Joerg Roedelcb76c322008-06-26 21:28:00 +02001424
1425 __pte = paddr | IOMMU_PTE_P | IOMMU_PTE_FC;
1426
1427 if (direction == DMA_TO_DEVICE)
1428 __pte |= IOMMU_PTE_IR;
1429 else if (direction == DMA_FROM_DEVICE)
1430 __pte |= IOMMU_PTE_IW;
1431 else if (direction == DMA_BIDIRECTIONAL)
1432 __pte |= IOMMU_PTE_IR | IOMMU_PTE_IW;
1433
1434 WARN_ON(*pte);
1435
1436 *pte = __pte;
1437
1438 return (dma_addr_t)address;
1439}
1440
Joerg Roedel431b2a22008-07-11 17:14:22 +02001441/*
1442 * The generic unmapping function for on page in the DMA address space.
1443 */
Joerg Roedelcb76c322008-06-26 21:28:00 +02001444static void dma_ops_domain_unmap(struct amd_iommu *iommu,
1445 struct dma_ops_domain *dom,
1446 unsigned long address)
1447{
Joerg Roedel384de722009-05-15 12:30:05 +02001448 struct aperture_range *aperture;
Joerg Roedelcb76c322008-06-26 21:28:00 +02001449 u64 *pte;
1450
1451 if (address >= dom->aperture_size)
1452 return;
1453
Joerg Roedel384de722009-05-15 12:30:05 +02001454 aperture = dom->aperture[APERTURE_RANGE_INDEX(address)];
1455 if (!aperture)
1456 return;
Joerg Roedelcb76c322008-06-26 21:28:00 +02001457
Joerg Roedel384de722009-05-15 12:30:05 +02001458 pte = aperture->pte_pages[APERTURE_PAGE_INDEX(address)];
1459 if (!pte)
1460 return;
1461
Joerg Roedelcb76c322008-06-26 21:28:00 +02001462 pte += IOMMU_PTE_L0_INDEX(address);
1463
1464 WARN_ON(!*pte);
1465
1466 *pte = 0ULL;
1467}
1468
Joerg Roedel431b2a22008-07-11 17:14:22 +02001469/*
1470 * This function contains common code for mapping of a physically
Joerg Roedel24f81162008-12-08 14:25:39 +01001471 * contiguous memory region into DMA address space. It is used by all
1472 * mapping functions provided with this IOMMU driver.
Joerg Roedel431b2a22008-07-11 17:14:22 +02001473 * Must be called with the domain lock held.
1474 */
Joerg Roedelcb76c322008-06-26 21:28:00 +02001475static dma_addr_t __map_single(struct device *dev,
1476 struct amd_iommu *iommu,
1477 struct dma_ops_domain *dma_dom,
1478 phys_addr_t paddr,
1479 size_t size,
Joerg Roedel6d4f343f2008-09-04 19:18:02 +02001480 int dir,
Joerg Roedel832a90c2008-09-18 15:54:23 +02001481 bool align,
1482 u64 dma_mask)
Joerg Roedelcb76c322008-06-26 21:28:00 +02001483{
1484 dma_addr_t offset = paddr & ~PAGE_MASK;
Joerg Roedel53812c12009-05-12 12:17:38 +02001485 dma_addr_t address, start, ret;
Joerg Roedelcb76c322008-06-26 21:28:00 +02001486 unsigned int pages;
Joerg Roedel6d4f343f2008-09-04 19:18:02 +02001487 unsigned long align_mask = 0;
Joerg Roedelcb76c322008-06-26 21:28:00 +02001488 int i;
1489
Joerg Roedele3c449f2008-10-15 22:02:11 -07001490 pages = iommu_num_pages(paddr, size, PAGE_SIZE);
Joerg Roedelcb76c322008-06-26 21:28:00 +02001491 paddr &= PAGE_MASK;
1492
Joerg Roedel8ecaf8f2008-12-12 16:13:04 +01001493 INC_STATS_COUNTER(total_map_requests);
1494
Joerg Roedelc1858972008-12-12 15:42:39 +01001495 if (pages > 1)
1496 INC_STATS_COUNTER(cross_page);
1497
Joerg Roedel6d4f343f2008-09-04 19:18:02 +02001498 if (align)
1499 align_mask = (1UL << get_order(size)) - 1;
1500
Joerg Roedel11b83882009-05-19 10:23:15 +02001501retry:
Joerg Roedel832a90c2008-09-18 15:54:23 +02001502 address = dma_ops_alloc_addresses(dev, dma_dom, pages, align_mask,
1503 dma_mask);
Joerg Roedel11b83882009-05-19 10:23:15 +02001504 if (unlikely(address == bad_dma_address)) {
1505 /*
1506 * setting next_address here will let the address
1507 * allocator only scan the new allocated range in the
1508 * first run. This is a small optimization.
1509 */
1510 dma_dom->next_address = dma_dom->aperture_size;
1511
1512 if (alloc_new_range(iommu, dma_dom, false, GFP_ATOMIC))
1513 goto out;
1514
1515 /*
1516 * aperture was sucessfully enlarged by 128 MB, try
1517 * allocation again
1518 */
1519 goto retry;
1520 }
Joerg Roedelcb76c322008-06-26 21:28:00 +02001521
1522 start = address;
1523 for (i = 0; i < pages; ++i) {
Joerg Roedel53812c12009-05-12 12:17:38 +02001524 ret = dma_ops_domain_map(iommu, dma_dom, start, paddr, dir);
1525 if (ret == bad_dma_address)
1526 goto out_unmap;
1527
Joerg Roedelcb76c322008-06-26 21:28:00 +02001528 paddr += PAGE_SIZE;
1529 start += PAGE_SIZE;
1530 }
1531 address += offset;
1532
Joerg Roedel5774f7c2008-12-12 15:57:30 +01001533 ADD_STATS_COUNTER(alloced_io_mem, size);
1534
FUJITA Tomonoriafa9fdc2008-09-20 01:23:30 +09001535 if (unlikely(dma_dom->need_flush && !amd_iommu_unmap_flush)) {
Joerg Roedel1c655772008-09-04 18:40:05 +02001536 iommu_flush_tlb(iommu, dma_dom->domain.id);
1537 dma_dom->need_flush = false;
1538 } else if (unlikely(iommu_has_npcache(iommu)))
Joerg Roedel270cab242008-09-04 15:49:46 +02001539 iommu_flush_pages(iommu, dma_dom->domain.id, address, size);
1540
Joerg Roedelcb76c322008-06-26 21:28:00 +02001541out:
1542 return address;
Joerg Roedel53812c12009-05-12 12:17:38 +02001543
1544out_unmap:
1545
1546 for (--i; i >= 0; --i) {
1547 start -= PAGE_SIZE;
1548 dma_ops_domain_unmap(iommu, dma_dom, start);
1549 }
1550
1551 dma_ops_free_addresses(dma_dom, address, pages);
1552
1553 return bad_dma_address;
Joerg Roedelcb76c322008-06-26 21:28:00 +02001554}
1555
Joerg Roedel431b2a22008-07-11 17:14:22 +02001556/*
1557 * Does the reverse of the __map_single function. Must be called with
1558 * the domain lock held too
1559 */
Joerg Roedelcb76c322008-06-26 21:28:00 +02001560static void __unmap_single(struct amd_iommu *iommu,
1561 struct dma_ops_domain *dma_dom,
1562 dma_addr_t dma_addr,
1563 size_t size,
1564 int dir)
1565{
1566 dma_addr_t i, start;
1567 unsigned int pages;
1568
Joerg Roedelb8d99052008-12-08 14:40:26 +01001569 if ((dma_addr == bad_dma_address) ||
1570 (dma_addr + size > dma_dom->aperture_size))
Joerg Roedelcb76c322008-06-26 21:28:00 +02001571 return;
1572
Joerg Roedele3c449f2008-10-15 22:02:11 -07001573 pages = iommu_num_pages(dma_addr, size, PAGE_SIZE);
Joerg Roedelcb76c322008-06-26 21:28:00 +02001574 dma_addr &= PAGE_MASK;
1575 start = dma_addr;
1576
1577 for (i = 0; i < pages; ++i) {
1578 dma_ops_domain_unmap(iommu, dma_dom, start);
1579 start += PAGE_SIZE;
1580 }
1581
Joerg Roedel5774f7c2008-12-12 15:57:30 +01001582 SUB_STATS_COUNTER(alloced_io_mem, size);
1583
Joerg Roedelcb76c322008-06-26 21:28:00 +02001584 dma_ops_free_addresses(dma_dom, dma_addr, pages);
Joerg Roedel270cab242008-09-04 15:49:46 +02001585
Joerg Roedel80be3082008-11-06 14:59:05 +01001586 if (amd_iommu_unmap_flush || dma_dom->need_flush) {
Joerg Roedel1c655772008-09-04 18:40:05 +02001587 iommu_flush_pages(iommu, dma_dom->domain.id, dma_addr, size);
Joerg Roedel80be3082008-11-06 14:59:05 +01001588 dma_dom->need_flush = false;
1589 }
Joerg Roedelcb76c322008-06-26 21:28:00 +02001590}
1591
Joerg Roedel431b2a22008-07-11 17:14:22 +02001592/*
1593 * The exported map_single function for dma_ops.
1594 */
FUJITA Tomonori51491362009-01-05 23:47:25 +09001595static dma_addr_t map_page(struct device *dev, struct page *page,
1596 unsigned long offset, size_t size,
1597 enum dma_data_direction dir,
1598 struct dma_attrs *attrs)
Joerg Roedel4da70b92008-06-26 21:28:01 +02001599{
1600 unsigned long flags;
1601 struct amd_iommu *iommu;
1602 struct protection_domain *domain;
1603 u16 devid;
1604 dma_addr_t addr;
Joerg Roedel832a90c2008-09-18 15:54:23 +02001605 u64 dma_mask;
FUJITA Tomonori51491362009-01-05 23:47:25 +09001606 phys_addr_t paddr = page_to_phys(page) + offset;
Joerg Roedel4da70b92008-06-26 21:28:01 +02001607
Joerg Roedel0f2a86f2008-12-12 15:05:16 +01001608 INC_STATS_COUNTER(cnt_map_single);
1609
Joerg Roedeldbcc1122008-09-04 15:04:26 +02001610 if (!check_device(dev))
1611 return bad_dma_address;
1612
Joerg Roedel832a90c2008-09-18 15:54:23 +02001613 dma_mask = *dev->dma_mask;
Joerg Roedel4da70b92008-06-26 21:28:01 +02001614
1615 get_device_resources(dev, &iommu, &domain, &devid);
1616
1617 if (iommu == NULL || domain == NULL)
Joerg Roedel431b2a22008-07-11 17:14:22 +02001618 /* device not handled by any AMD IOMMU */
Joerg Roedel4da70b92008-06-26 21:28:01 +02001619 return (dma_addr_t)paddr;
1620
Joerg Roedel5b28df62008-12-02 17:49:42 +01001621 if (!dma_ops_domain(domain))
1622 return bad_dma_address;
1623
Joerg Roedel4da70b92008-06-26 21:28:01 +02001624 spin_lock_irqsave(&domain->lock, flags);
Joerg Roedel832a90c2008-09-18 15:54:23 +02001625 addr = __map_single(dev, iommu, domain->priv, paddr, size, dir, false,
1626 dma_mask);
Joerg Roedel4da70b92008-06-26 21:28:01 +02001627 if (addr == bad_dma_address)
1628 goto out;
1629
Joerg Roedel09ee17e2008-12-03 12:19:27 +01001630 iommu_completion_wait(iommu);
Joerg Roedel4da70b92008-06-26 21:28:01 +02001631
1632out:
1633 spin_unlock_irqrestore(&domain->lock, flags);
1634
1635 return addr;
1636}
1637
Joerg Roedel431b2a22008-07-11 17:14:22 +02001638/*
1639 * The exported unmap_single function for dma_ops.
1640 */
FUJITA Tomonori51491362009-01-05 23:47:25 +09001641static void unmap_page(struct device *dev, dma_addr_t dma_addr, size_t size,
1642 enum dma_data_direction dir, struct dma_attrs *attrs)
Joerg Roedel4da70b92008-06-26 21:28:01 +02001643{
1644 unsigned long flags;
1645 struct amd_iommu *iommu;
1646 struct protection_domain *domain;
1647 u16 devid;
1648
Joerg Roedel146a6912008-12-12 15:07:12 +01001649 INC_STATS_COUNTER(cnt_unmap_single);
1650
Joerg Roedeldbcc1122008-09-04 15:04:26 +02001651 if (!check_device(dev) ||
1652 !get_device_resources(dev, &iommu, &domain, &devid))
Joerg Roedel431b2a22008-07-11 17:14:22 +02001653 /* device not handled by any AMD IOMMU */
Joerg Roedel4da70b92008-06-26 21:28:01 +02001654 return;
1655
Joerg Roedel5b28df62008-12-02 17:49:42 +01001656 if (!dma_ops_domain(domain))
1657 return;
1658
Joerg Roedel4da70b92008-06-26 21:28:01 +02001659 spin_lock_irqsave(&domain->lock, flags);
1660
1661 __unmap_single(iommu, domain->priv, dma_addr, size, dir);
1662
Joerg Roedel09ee17e2008-12-03 12:19:27 +01001663 iommu_completion_wait(iommu);
Joerg Roedel4da70b92008-06-26 21:28:01 +02001664
1665 spin_unlock_irqrestore(&domain->lock, flags);
1666}
1667
Joerg Roedel431b2a22008-07-11 17:14:22 +02001668/*
1669 * This is a special map_sg function which is used if we should map a
1670 * device which is not handled by an AMD IOMMU in the system.
1671 */
Joerg Roedel65b050a2008-06-26 21:28:02 +02001672static int map_sg_no_iommu(struct device *dev, struct scatterlist *sglist,
1673 int nelems, int dir)
1674{
1675 struct scatterlist *s;
1676 int i;
1677
1678 for_each_sg(sglist, s, nelems, i) {
1679 s->dma_address = (dma_addr_t)sg_phys(s);
1680 s->dma_length = s->length;
1681 }
1682
1683 return nelems;
1684}
1685
Joerg Roedel431b2a22008-07-11 17:14:22 +02001686/*
1687 * The exported map_sg function for dma_ops (handles scatter-gather
1688 * lists).
1689 */
Joerg Roedel65b050a2008-06-26 21:28:02 +02001690static int map_sg(struct device *dev, struct scatterlist *sglist,
FUJITA Tomonori160c1d82009-01-05 23:59:02 +09001691 int nelems, enum dma_data_direction dir,
1692 struct dma_attrs *attrs)
Joerg Roedel65b050a2008-06-26 21:28:02 +02001693{
1694 unsigned long flags;
1695 struct amd_iommu *iommu;
1696 struct protection_domain *domain;
1697 u16 devid;
1698 int i;
1699 struct scatterlist *s;
1700 phys_addr_t paddr;
1701 int mapped_elems = 0;
Joerg Roedel832a90c2008-09-18 15:54:23 +02001702 u64 dma_mask;
Joerg Roedel65b050a2008-06-26 21:28:02 +02001703
Joerg Roedeld03f067a2008-12-12 15:09:48 +01001704 INC_STATS_COUNTER(cnt_map_sg);
1705
Joerg Roedeldbcc1122008-09-04 15:04:26 +02001706 if (!check_device(dev))
1707 return 0;
1708
Joerg Roedel832a90c2008-09-18 15:54:23 +02001709 dma_mask = *dev->dma_mask;
Joerg Roedel65b050a2008-06-26 21:28:02 +02001710
1711 get_device_resources(dev, &iommu, &domain, &devid);
1712
1713 if (!iommu || !domain)
1714 return map_sg_no_iommu(dev, sglist, nelems, dir);
1715
Joerg Roedel5b28df62008-12-02 17:49:42 +01001716 if (!dma_ops_domain(domain))
1717 return 0;
1718
Joerg Roedel65b050a2008-06-26 21:28:02 +02001719 spin_lock_irqsave(&domain->lock, flags);
1720
1721 for_each_sg(sglist, s, nelems, i) {
1722 paddr = sg_phys(s);
1723
1724 s->dma_address = __map_single(dev, iommu, domain->priv,
Joerg Roedel832a90c2008-09-18 15:54:23 +02001725 paddr, s->length, dir, false,
1726 dma_mask);
Joerg Roedel65b050a2008-06-26 21:28:02 +02001727
1728 if (s->dma_address) {
1729 s->dma_length = s->length;
1730 mapped_elems++;
1731 } else
1732 goto unmap;
Joerg Roedel65b050a2008-06-26 21:28:02 +02001733 }
1734
Joerg Roedel09ee17e2008-12-03 12:19:27 +01001735 iommu_completion_wait(iommu);
Joerg Roedel65b050a2008-06-26 21:28:02 +02001736
1737out:
1738 spin_unlock_irqrestore(&domain->lock, flags);
1739
1740 return mapped_elems;
1741unmap:
1742 for_each_sg(sglist, s, mapped_elems, i) {
1743 if (s->dma_address)
1744 __unmap_single(iommu, domain->priv, s->dma_address,
1745 s->dma_length, dir);
1746 s->dma_address = s->dma_length = 0;
1747 }
1748
1749 mapped_elems = 0;
1750
1751 goto out;
1752}
1753
Joerg Roedel431b2a22008-07-11 17:14:22 +02001754/*
1755 * The exported map_sg function for dma_ops (handles scatter-gather
1756 * lists).
1757 */
Joerg Roedel65b050a2008-06-26 21:28:02 +02001758static void unmap_sg(struct device *dev, struct scatterlist *sglist,
FUJITA Tomonori160c1d82009-01-05 23:59:02 +09001759 int nelems, enum dma_data_direction dir,
1760 struct dma_attrs *attrs)
Joerg Roedel65b050a2008-06-26 21:28:02 +02001761{
1762 unsigned long flags;
1763 struct amd_iommu *iommu;
1764 struct protection_domain *domain;
1765 struct scatterlist *s;
1766 u16 devid;
1767 int i;
1768
Joerg Roedel55877a62008-12-12 15:12:14 +01001769 INC_STATS_COUNTER(cnt_unmap_sg);
1770
Joerg Roedeldbcc1122008-09-04 15:04:26 +02001771 if (!check_device(dev) ||
1772 !get_device_resources(dev, &iommu, &domain, &devid))
Joerg Roedel65b050a2008-06-26 21:28:02 +02001773 return;
1774
Joerg Roedel5b28df62008-12-02 17:49:42 +01001775 if (!dma_ops_domain(domain))
1776 return;
1777
Joerg Roedel65b050a2008-06-26 21:28:02 +02001778 spin_lock_irqsave(&domain->lock, flags);
1779
1780 for_each_sg(sglist, s, nelems, i) {
1781 __unmap_single(iommu, domain->priv, s->dma_address,
1782 s->dma_length, dir);
Joerg Roedel65b050a2008-06-26 21:28:02 +02001783 s->dma_address = s->dma_length = 0;
1784 }
1785
Joerg Roedel09ee17e2008-12-03 12:19:27 +01001786 iommu_completion_wait(iommu);
Joerg Roedel65b050a2008-06-26 21:28:02 +02001787
1788 spin_unlock_irqrestore(&domain->lock, flags);
1789}
1790
Joerg Roedel431b2a22008-07-11 17:14:22 +02001791/*
1792 * The exported alloc_coherent function for dma_ops.
1793 */
Joerg Roedel5d8b53c2008-06-26 21:28:03 +02001794static void *alloc_coherent(struct device *dev, size_t size,
1795 dma_addr_t *dma_addr, gfp_t flag)
1796{
1797 unsigned long flags;
1798 void *virt_addr;
1799 struct amd_iommu *iommu;
1800 struct protection_domain *domain;
1801 u16 devid;
1802 phys_addr_t paddr;
Joerg Roedel832a90c2008-09-18 15:54:23 +02001803 u64 dma_mask = dev->coherent_dma_mask;
Joerg Roedel5d8b53c2008-06-26 21:28:03 +02001804
Joerg Roedelc8f0fb32008-12-12 15:14:21 +01001805 INC_STATS_COUNTER(cnt_alloc_coherent);
1806
Joerg Roedeldbcc1122008-09-04 15:04:26 +02001807 if (!check_device(dev))
1808 return NULL;
1809
FUJITA Tomonori13d9fea2008-09-10 20:19:40 +09001810 if (!get_device_resources(dev, &iommu, &domain, &devid))
1811 flag &= ~(__GFP_DMA | __GFP_HIGHMEM | __GFP_DMA32);
1812
Joerg Roedelc97ac532008-09-11 10:59:15 +02001813 flag |= __GFP_ZERO;
Joerg Roedel5d8b53c2008-06-26 21:28:03 +02001814 virt_addr = (void *)__get_free_pages(flag, get_order(size));
1815 if (!virt_addr)
Jaswinder Singh Rajputb25ae672009-07-01 19:53:14 +05301816 return NULL;
Joerg Roedel5d8b53c2008-06-26 21:28:03 +02001817
Joerg Roedel5d8b53c2008-06-26 21:28:03 +02001818 paddr = virt_to_phys(virt_addr);
1819
Joerg Roedel5d8b53c2008-06-26 21:28:03 +02001820 if (!iommu || !domain) {
1821 *dma_addr = (dma_addr_t)paddr;
1822 return virt_addr;
1823 }
1824
Joerg Roedel5b28df62008-12-02 17:49:42 +01001825 if (!dma_ops_domain(domain))
1826 goto out_free;
1827
Joerg Roedel832a90c2008-09-18 15:54:23 +02001828 if (!dma_mask)
1829 dma_mask = *dev->dma_mask;
1830
Joerg Roedel5d8b53c2008-06-26 21:28:03 +02001831 spin_lock_irqsave(&domain->lock, flags);
1832
1833 *dma_addr = __map_single(dev, iommu, domain->priv, paddr,
Joerg Roedel832a90c2008-09-18 15:54:23 +02001834 size, DMA_BIDIRECTIONAL, true, dma_mask);
Joerg Roedel5d8b53c2008-06-26 21:28:03 +02001835
Jiri Slaby367d04c2009-05-28 09:54:48 +02001836 if (*dma_addr == bad_dma_address) {
1837 spin_unlock_irqrestore(&domain->lock, flags);
Joerg Roedel5b28df62008-12-02 17:49:42 +01001838 goto out_free;
Jiri Slaby367d04c2009-05-28 09:54:48 +02001839 }
Joerg Roedel5d8b53c2008-06-26 21:28:03 +02001840
Joerg Roedel09ee17e2008-12-03 12:19:27 +01001841 iommu_completion_wait(iommu);
Joerg Roedel5d8b53c2008-06-26 21:28:03 +02001842
Joerg Roedel5d8b53c2008-06-26 21:28:03 +02001843 spin_unlock_irqrestore(&domain->lock, flags);
1844
1845 return virt_addr;
Joerg Roedel5b28df62008-12-02 17:49:42 +01001846
1847out_free:
1848
1849 free_pages((unsigned long)virt_addr, get_order(size));
1850
1851 return NULL;
Joerg Roedel5d8b53c2008-06-26 21:28:03 +02001852}
1853
Joerg Roedel431b2a22008-07-11 17:14:22 +02001854/*
1855 * The exported free_coherent function for dma_ops.
Joerg Roedel431b2a22008-07-11 17:14:22 +02001856 */
Joerg Roedel5d8b53c2008-06-26 21:28:03 +02001857static void free_coherent(struct device *dev, size_t size,
1858 void *virt_addr, dma_addr_t dma_addr)
1859{
1860 unsigned long flags;
1861 struct amd_iommu *iommu;
1862 struct protection_domain *domain;
1863 u16 devid;
1864
Joerg Roedel5d31ee72008-12-12 15:16:38 +01001865 INC_STATS_COUNTER(cnt_free_coherent);
1866
Joerg Roedeldbcc1122008-09-04 15:04:26 +02001867 if (!check_device(dev))
1868 return;
1869
Joerg Roedel5d8b53c2008-06-26 21:28:03 +02001870 get_device_resources(dev, &iommu, &domain, &devid);
1871
1872 if (!iommu || !domain)
1873 goto free_mem;
1874
Joerg Roedel5b28df62008-12-02 17:49:42 +01001875 if (!dma_ops_domain(domain))
1876 goto free_mem;
1877
Joerg Roedel5d8b53c2008-06-26 21:28:03 +02001878 spin_lock_irqsave(&domain->lock, flags);
1879
1880 __unmap_single(iommu, domain->priv, dma_addr, size, DMA_BIDIRECTIONAL);
Joerg Roedel5d8b53c2008-06-26 21:28:03 +02001881
Joerg Roedel09ee17e2008-12-03 12:19:27 +01001882 iommu_completion_wait(iommu);
Joerg Roedel5d8b53c2008-06-26 21:28:03 +02001883
1884 spin_unlock_irqrestore(&domain->lock, flags);
1885
1886free_mem:
1887 free_pages((unsigned long)virt_addr, get_order(size));
1888}
1889
Joerg Roedelc432f3d2008-06-26 21:28:04 +02001890/*
Joerg Roedelb39ba6a2008-09-09 18:40:46 +02001891 * This function is called by the DMA layer to find out if we can handle a
1892 * particular device. It is part of the dma_ops.
1893 */
1894static int amd_iommu_dma_supported(struct device *dev, u64 mask)
1895{
1896 u16 bdf;
1897 struct pci_dev *pcidev;
1898
1899 /* No device or no PCI device */
1900 if (!dev || dev->bus != &pci_bus_type)
1901 return 0;
1902
1903 pcidev = to_pci_dev(dev);
1904
1905 bdf = calc_devid(pcidev->bus->number, pcidev->devfn);
1906
1907 /* Out of our scope? */
1908 if (bdf > amd_iommu_last_bdf)
1909 return 0;
1910
1911 return 1;
1912}
1913
1914/*
Joerg Roedel431b2a22008-07-11 17:14:22 +02001915 * The function for pre-allocating protection domains.
1916 *
Joerg Roedelc432f3d2008-06-26 21:28:04 +02001917 * If the driver core informs the DMA layer if a driver grabs a device
1918 * we don't need to preallocate the protection domains anymore.
1919 * For now we have to.
1920 */
Jaswinder Singh Rajput0e93dd82008-12-29 21:45:22 +05301921static void prealloc_protection_domains(void)
Joerg Roedelc432f3d2008-06-26 21:28:04 +02001922{
1923 struct pci_dev *dev = NULL;
1924 struct dma_ops_domain *dma_dom;
1925 struct amd_iommu *iommu;
Joerg Roedelc432f3d2008-06-26 21:28:04 +02001926 u16 devid;
1927
1928 while ((dev = pci_get_device(PCI_ANY_ID, PCI_ANY_ID, dev)) != NULL) {
Joerg Roedeledcb34d2008-12-10 20:01:45 +01001929 devid = calc_devid(dev->bus->number, dev->devfn);
Joerg Roedel3a61ec32008-07-25 13:07:50 +02001930 if (devid > amd_iommu_last_bdf)
Joerg Roedelc432f3d2008-06-26 21:28:04 +02001931 continue;
1932 devid = amd_iommu_alias_table[devid];
1933 if (domain_for_device(devid))
1934 continue;
1935 iommu = amd_iommu_rlookup_table[devid];
1936 if (!iommu)
1937 continue;
Joerg Roedeld9cfed92009-05-19 12:16:29 +02001938 dma_dom = dma_ops_domain_alloc(iommu);
Joerg Roedelc432f3d2008-06-26 21:28:04 +02001939 if (!dma_dom)
1940 continue;
1941 init_unity_mappings_for_device(dma_dom, devid);
Joerg Roedelbd60b732008-09-11 10:24:48 +02001942 dma_dom->target_dev = devid;
1943
1944 list_add_tail(&dma_dom->list, &iommu_pd_list);
Joerg Roedelc432f3d2008-06-26 21:28:04 +02001945 }
1946}
1947
FUJITA Tomonori160c1d82009-01-05 23:59:02 +09001948static struct dma_map_ops amd_iommu_dma_ops = {
Joerg Roedel6631ee92008-06-26 21:28:05 +02001949 .alloc_coherent = alloc_coherent,
1950 .free_coherent = free_coherent,
FUJITA Tomonori51491362009-01-05 23:47:25 +09001951 .map_page = map_page,
1952 .unmap_page = unmap_page,
Joerg Roedel6631ee92008-06-26 21:28:05 +02001953 .map_sg = map_sg,
1954 .unmap_sg = unmap_sg,
Joerg Roedelb39ba6a2008-09-09 18:40:46 +02001955 .dma_supported = amd_iommu_dma_supported,
Joerg Roedel6631ee92008-06-26 21:28:05 +02001956};
1957
Joerg Roedel431b2a22008-07-11 17:14:22 +02001958/*
1959 * The function which clues the AMD IOMMU driver into dma_ops.
1960 */
Joerg Roedel6631ee92008-06-26 21:28:05 +02001961int __init amd_iommu_init_dma_ops(void)
1962{
1963 struct amd_iommu *iommu;
Joerg Roedel6631ee92008-06-26 21:28:05 +02001964 int ret;
1965
Joerg Roedel431b2a22008-07-11 17:14:22 +02001966 /*
1967 * first allocate a default protection domain for every IOMMU we
1968 * found in the system. Devices not assigned to any other
1969 * protection domain will be assigned to the default one.
1970 */
Joerg Roedel3bd22172009-05-04 15:06:20 +02001971 for_each_iommu(iommu) {
Joerg Roedeld9cfed92009-05-19 12:16:29 +02001972 iommu->default_dom = dma_ops_domain_alloc(iommu);
Joerg Roedel6631ee92008-06-26 21:28:05 +02001973 if (iommu->default_dom == NULL)
1974 return -ENOMEM;
Joerg Roedele2dc14a2008-12-10 18:48:59 +01001975 iommu->default_dom->domain.flags |= PD_DEFAULT_MASK;
Joerg Roedel6631ee92008-06-26 21:28:05 +02001976 ret = iommu_init_unity_mappings(iommu);
1977 if (ret)
1978 goto free_domains;
1979 }
1980
Joerg Roedel431b2a22008-07-11 17:14:22 +02001981 /*
1982 * If device isolation is enabled, pre-allocate the protection
1983 * domains for each device.
1984 */
Joerg Roedel6631ee92008-06-26 21:28:05 +02001985 if (amd_iommu_isolate)
1986 prealloc_protection_domains();
1987
1988 iommu_detected = 1;
1989 force_iommu = 1;
1990 bad_dma_address = 0;
Ingo Molnar92af4e22008-06-27 10:48:16 +02001991#ifdef CONFIG_GART_IOMMU
Joerg Roedel6631ee92008-06-26 21:28:05 +02001992 gart_iommu_aperture_disabled = 1;
1993 gart_iommu_aperture = 0;
Ingo Molnar92af4e22008-06-27 10:48:16 +02001994#endif
Joerg Roedel6631ee92008-06-26 21:28:05 +02001995
Joerg Roedel431b2a22008-07-11 17:14:22 +02001996 /* Make the driver finally visible to the drivers */
Joerg Roedel6631ee92008-06-26 21:28:05 +02001997 dma_ops = &amd_iommu_dma_ops;
1998
Joerg Roedel26961ef2008-12-03 17:00:17 +01001999 register_iommu(&amd_iommu_ops);
Joerg Roedel26961ef2008-12-03 17:00:17 +01002000
Joerg Roedele275a2a2008-12-10 18:27:25 +01002001 bus_register_notifier(&pci_bus_type, &device_nb);
2002
Joerg Roedel7f265082008-12-12 13:50:21 +01002003 amd_iommu_stats_init();
2004
Joerg Roedel6631ee92008-06-26 21:28:05 +02002005 return 0;
2006
2007free_domains:
2008
Joerg Roedel3bd22172009-05-04 15:06:20 +02002009 for_each_iommu(iommu) {
Joerg Roedel6631ee92008-06-26 21:28:05 +02002010 if (iommu->default_dom)
2011 dma_ops_domain_free(iommu->default_dom);
2012 }
2013
2014 return ret;
2015}
Joerg Roedel6d98cd82008-12-08 12:05:55 +01002016
2017/*****************************************************************************
2018 *
2019 * The following functions belong to the exported interface of AMD IOMMU
2020 *
2021 * This interface allows access to lower level functions of the IOMMU
2022 * like protection domain handling and assignement of devices to domains
2023 * which is not possible with the dma_ops interface.
2024 *
2025 *****************************************************************************/
2026
Joerg Roedel6d98cd82008-12-08 12:05:55 +01002027static void cleanup_domain(struct protection_domain *domain)
2028{
2029 unsigned long flags;
2030 u16 devid;
2031
2032 write_lock_irqsave(&amd_iommu_devtable_lock, flags);
2033
2034 for (devid = 0; devid <= amd_iommu_last_bdf; ++devid)
2035 if (amd_iommu_pd_table[devid] == domain)
2036 __detach_device(domain, devid);
2037
2038 write_unlock_irqrestore(&amd_iommu_devtable_lock, flags);
2039}
2040
Joerg Roedelc156e342008-12-02 18:13:27 +01002041static int amd_iommu_domain_init(struct iommu_domain *dom)
2042{
2043 struct protection_domain *domain;
2044
2045 domain = kzalloc(sizeof(*domain), GFP_KERNEL);
2046 if (!domain)
2047 return -ENOMEM;
2048
2049 spin_lock_init(&domain->lock);
2050 domain->mode = PAGE_MODE_3_LEVEL;
2051 domain->id = domain_id_alloc();
2052 if (!domain->id)
2053 goto out_free;
2054 domain->pt_root = (void *)get_zeroed_page(GFP_KERNEL);
2055 if (!domain->pt_root)
2056 goto out_free;
2057
2058 dom->priv = domain;
2059
2060 return 0;
2061
2062out_free:
2063 kfree(domain);
2064
2065 return -ENOMEM;
2066}
2067
Joerg Roedel98383fc2008-12-02 18:34:12 +01002068static void amd_iommu_domain_destroy(struct iommu_domain *dom)
2069{
2070 struct protection_domain *domain = dom->priv;
2071
2072 if (!domain)
2073 return;
2074
2075 if (domain->dev_cnt > 0)
2076 cleanup_domain(domain);
2077
2078 BUG_ON(domain->dev_cnt != 0);
2079
2080 free_pagetable(domain);
2081
2082 domain_id_free(domain->id);
2083
2084 kfree(domain);
2085
2086 dom->priv = NULL;
2087}
2088
Joerg Roedel684f2882008-12-08 12:07:44 +01002089static void amd_iommu_detach_device(struct iommu_domain *dom,
2090 struct device *dev)
2091{
2092 struct protection_domain *domain = dom->priv;
2093 struct amd_iommu *iommu;
2094 struct pci_dev *pdev;
2095 u16 devid;
2096
2097 if (dev->bus != &pci_bus_type)
2098 return;
2099
2100 pdev = to_pci_dev(dev);
2101
2102 devid = calc_devid(pdev->bus->number, pdev->devfn);
2103
2104 if (devid > 0)
2105 detach_device(domain, devid);
2106
2107 iommu = amd_iommu_rlookup_table[devid];
2108 if (!iommu)
2109 return;
2110
2111 iommu_queue_inv_dev_entry(iommu, devid);
2112 iommu_completion_wait(iommu);
2113}
2114
Joerg Roedel01106062008-12-02 19:34:11 +01002115static int amd_iommu_attach_device(struct iommu_domain *dom,
2116 struct device *dev)
2117{
2118 struct protection_domain *domain = dom->priv;
2119 struct protection_domain *old_domain;
2120 struct amd_iommu *iommu;
2121 struct pci_dev *pdev;
2122 u16 devid;
2123
2124 if (dev->bus != &pci_bus_type)
2125 return -EINVAL;
2126
2127 pdev = to_pci_dev(dev);
2128
2129 devid = calc_devid(pdev->bus->number, pdev->devfn);
2130
2131 if (devid >= amd_iommu_last_bdf ||
2132 devid != amd_iommu_alias_table[devid])
2133 return -EINVAL;
2134
2135 iommu = amd_iommu_rlookup_table[devid];
2136 if (!iommu)
2137 return -EINVAL;
2138
2139 old_domain = domain_for_device(devid);
2140 if (old_domain)
Joerg Roedel71ff3bc2009-06-08 13:47:33 -07002141 detach_device(old_domain, devid);
Joerg Roedel01106062008-12-02 19:34:11 +01002142
2143 attach_device(iommu, domain, devid);
2144
2145 iommu_completion_wait(iommu);
2146
2147 return 0;
2148}
2149
Joerg Roedelc6229ca2008-12-02 19:48:43 +01002150static int amd_iommu_map_range(struct iommu_domain *dom,
2151 unsigned long iova, phys_addr_t paddr,
2152 size_t size, int iommu_prot)
2153{
2154 struct protection_domain *domain = dom->priv;
2155 unsigned long i, npages = iommu_num_pages(paddr, size, PAGE_SIZE);
2156 int prot = 0;
2157 int ret;
2158
2159 if (iommu_prot & IOMMU_READ)
2160 prot |= IOMMU_PROT_IR;
2161 if (iommu_prot & IOMMU_WRITE)
2162 prot |= IOMMU_PROT_IW;
2163
2164 iova &= PAGE_MASK;
2165 paddr &= PAGE_MASK;
2166
2167 for (i = 0; i < npages; ++i) {
2168 ret = iommu_map_page(domain, iova, paddr, prot);
2169 if (ret)
2170 return ret;
2171
2172 iova += PAGE_SIZE;
2173 paddr += PAGE_SIZE;
2174 }
2175
2176 return 0;
2177}
2178
Joerg Roedeleb74ff62008-12-02 19:59:10 +01002179static void amd_iommu_unmap_range(struct iommu_domain *dom,
2180 unsigned long iova, size_t size)
2181{
2182
2183 struct protection_domain *domain = dom->priv;
2184 unsigned long i, npages = iommu_num_pages(iova, size, PAGE_SIZE);
2185
2186 iova &= PAGE_MASK;
2187
2188 for (i = 0; i < npages; ++i) {
2189 iommu_unmap_page(domain, iova);
2190 iova += PAGE_SIZE;
2191 }
2192
2193 iommu_flush_domain(domain->id);
2194}
2195
Joerg Roedel645c4c82008-12-02 20:05:50 +01002196static phys_addr_t amd_iommu_iova_to_phys(struct iommu_domain *dom,
2197 unsigned long iova)
2198{
2199 struct protection_domain *domain = dom->priv;
2200 unsigned long offset = iova & ~PAGE_MASK;
2201 phys_addr_t paddr;
2202 u64 *pte;
2203
2204 pte = &domain->pt_root[IOMMU_PTE_L2_INDEX(iova)];
2205
2206 if (!IOMMU_PTE_PRESENT(*pte))
2207 return 0;
2208
2209 pte = IOMMU_PTE_PAGE(*pte);
2210 pte = &pte[IOMMU_PTE_L1_INDEX(iova)];
2211
2212 if (!IOMMU_PTE_PRESENT(*pte))
2213 return 0;
2214
2215 pte = IOMMU_PTE_PAGE(*pte);
2216 pte = &pte[IOMMU_PTE_L0_INDEX(iova)];
2217
2218 if (!IOMMU_PTE_PRESENT(*pte))
2219 return 0;
2220
2221 paddr = *pte & IOMMU_PAGE_MASK;
2222 paddr |= offset;
2223
2224 return paddr;
2225}
2226
Sheng Yangdbb9fd82009-03-18 15:33:06 +08002227static int amd_iommu_domain_has_cap(struct iommu_domain *domain,
2228 unsigned long cap)
2229{
2230 return 0;
2231}
2232
Joerg Roedel26961ef2008-12-03 17:00:17 +01002233static struct iommu_ops amd_iommu_ops = {
2234 .domain_init = amd_iommu_domain_init,
2235 .domain_destroy = amd_iommu_domain_destroy,
2236 .attach_dev = amd_iommu_attach_device,
2237 .detach_dev = amd_iommu_detach_device,
2238 .map = amd_iommu_map_range,
2239 .unmap = amd_iommu_unmap_range,
2240 .iova_to_phys = amd_iommu_iova_to_phys,
Sheng Yangdbb9fd82009-03-18 15:33:06 +08002241 .domain_has_cap = amd_iommu_domain_has_cap,
Joerg Roedel26961ef2008-12-03 17:00:17 +01002242};
2243