blob: b62a2f64dfc5e75a2490ece5727d5c20c2ac16ec [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 Roedela345b232009-09-03 15:01:43 +020064static void reset_iommu_command_buffer(struct amd_iommu *iommu);
Joerg Roedelbd0e5212008-06-26 21:27:56 +020065
Chris Wrightc1eee672009-05-21 00:56:58 -070066#ifndef BUS_NOTIFY_UNBOUND_DRIVER
67#define BUS_NOTIFY_UNBOUND_DRIVER 0x0005
68#endif
69
Joerg Roedel7f265082008-12-12 13:50:21 +010070#ifdef CONFIG_AMD_IOMMU_STATS
71
72/*
73 * Initialization code for statistics collection
74 */
75
Joerg Roedelda49f6d2008-12-12 14:59:58 +010076DECLARE_STATS_COUNTER(compl_wait);
Joerg Roedel0f2a86f2008-12-12 15:05:16 +010077DECLARE_STATS_COUNTER(cnt_map_single);
Joerg Roedel146a6912008-12-12 15:07:12 +010078DECLARE_STATS_COUNTER(cnt_unmap_single);
Joerg Roedeld03f0672008-12-12 15:09:48 +010079DECLARE_STATS_COUNTER(cnt_map_sg);
Joerg Roedel55877a62008-12-12 15:12:14 +010080DECLARE_STATS_COUNTER(cnt_unmap_sg);
Joerg Roedelc8f0fb32008-12-12 15:14:21 +010081DECLARE_STATS_COUNTER(cnt_alloc_coherent);
Joerg Roedel5d31ee72008-12-12 15:16:38 +010082DECLARE_STATS_COUNTER(cnt_free_coherent);
Joerg Roedelc1858972008-12-12 15:42:39 +010083DECLARE_STATS_COUNTER(cross_page);
Joerg Roedelf57d98a2008-12-12 15:46:29 +010084DECLARE_STATS_COUNTER(domain_flush_single);
Joerg Roedel18811f52008-12-12 15:48:28 +010085DECLARE_STATS_COUNTER(domain_flush_all);
Joerg Roedel5774f7c2008-12-12 15:57:30 +010086DECLARE_STATS_COUNTER(alloced_io_mem);
Joerg Roedel8ecaf8f2008-12-12 16:13:04 +010087DECLARE_STATS_COUNTER(total_map_requests);
Joerg Roedelda49f6d2008-12-12 14:59:58 +010088
Joerg Roedel7f265082008-12-12 13:50:21 +010089static struct dentry *stats_dir;
90static struct dentry *de_isolate;
91static struct dentry *de_fflush;
92
93static void amd_iommu_stats_add(struct __iommu_counter *cnt)
94{
95 if (stats_dir == NULL)
96 return;
97
98 cnt->dent = debugfs_create_u64(cnt->name, 0444, stats_dir,
99 &cnt->value);
100}
101
102static void amd_iommu_stats_init(void)
103{
104 stats_dir = debugfs_create_dir("amd-iommu", NULL);
105 if (stats_dir == NULL)
106 return;
107
108 de_isolate = debugfs_create_bool("isolation", 0444, stats_dir,
109 (u32 *)&amd_iommu_isolate);
110
111 de_fflush = debugfs_create_bool("fullflush", 0444, stats_dir,
112 (u32 *)&amd_iommu_unmap_flush);
Joerg Roedelda49f6d2008-12-12 14:59:58 +0100113
114 amd_iommu_stats_add(&compl_wait);
Joerg Roedel0f2a86f2008-12-12 15:05:16 +0100115 amd_iommu_stats_add(&cnt_map_single);
Joerg Roedel146a6912008-12-12 15:07:12 +0100116 amd_iommu_stats_add(&cnt_unmap_single);
Joerg Roedeld03f0672008-12-12 15:09:48 +0100117 amd_iommu_stats_add(&cnt_map_sg);
Joerg Roedel55877a62008-12-12 15:12:14 +0100118 amd_iommu_stats_add(&cnt_unmap_sg);
Joerg Roedelc8f0fb32008-12-12 15:14:21 +0100119 amd_iommu_stats_add(&cnt_alloc_coherent);
Joerg Roedel5d31ee72008-12-12 15:16:38 +0100120 amd_iommu_stats_add(&cnt_free_coherent);
Joerg Roedelc1858972008-12-12 15:42:39 +0100121 amd_iommu_stats_add(&cross_page);
Joerg Roedelf57d98a2008-12-12 15:46:29 +0100122 amd_iommu_stats_add(&domain_flush_single);
Joerg Roedel18811f52008-12-12 15:48:28 +0100123 amd_iommu_stats_add(&domain_flush_all);
Joerg Roedel5774f7c2008-12-12 15:57:30 +0100124 amd_iommu_stats_add(&alloced_io_mem);
Joerg Roedel8ecaf8f2008-12-12 16:13:04 +0100125 amd_iommu_stats_add(&total_map_requests);
Joerg Roedel7f265082008-12-12 13:50:21 +0100126}
127
128#endif
129
Joerg Roedel431b2a22008-07-11 17:14:22 +0200130/* returns !0 if the IOMMU is caching non-present entries in its TLB */
Joerg Roedel4da70b92008-06-26 21:28:01 +0200131static int iommu_has_npcache(struct amd_iommu *iommu)
132{
Joerg Roedelae9b9402008-10-30 17:43:57 +0100133 return iommu->cap & (1UL << IOMMU_CAP_NPCACHE);
Joerg Roedel4da70b92008-06-26 21:28:01 +0200134}
135
Joerg Roedel431b2a22008-07-11 17:14:22 +0200136/****************************************************************************
137 *
Joerg Roedela80dc3e2008-09-11 16:51:41 +0200138 * Interrupt handling functions
139 *
140 ****************************************************************************/
141
Joerg Roedele3e59872009-09-03 14:02:10 +0200142static void dump_dte_entry(u16 devid)
143{
144 int i;
145
146 for (i = 0; i < 8; ++i)
147 pr_err("AMD-Vi: DTE[%d]: %08x\n", i,
148 amd_iommu_dev_table[devid].data[i]);
149}
150
Joerg Roedel945b4ac2009-09-03 14:25:02 +0200151static void dump_command(unsigned long phys_addr)
152{
153 struct iommu_cmd *cmd = phys_to_virt(phys_addr);
154 int i;
155
156 for (i = 0; i < 4; ++i)
157 pr_err("AMD-Vi: CMD[%d]: %08x\n", i, cmd->data[i]);
158}
159
Joerg Roedela345b232009-09-03 15:01:43 +0200160static void iommu_print_event(struct amd_iommu *iommu, void *__evt)
Joerg Roedel90008ee2008-09-09 16:41:05 +0200161{
162 u32 *event = __evt;
163 int type = (event[1] >> EVENT_TYPE_SHIFT) & EVENT_TYPE_MASK;
164 int devid = (event[0] >> EVENT_DEVID_SHIFT) & EVENT_DEVID_MASK;
165 int domid = (event[1] >> EVENT_DOMID_SHIFT) & EVENT_DOMID_MASK;
166 int flags = (event[1] >> EVENT_FLAGS_SHIFT) & EVENT_FLAGS_MASK;
167 u64 address = (u64)(((u64)event[3]) << 32) | event[2];
168
169 printk(KERN_ERR "AMD IOMMU: Event logged [");
170
171 switch (type) {
172 case EVENT_TYPE_ILL_DEV:
173 printk("ILLEGAL_DEV_TABLE_ENTRY device=%02x:%02x.%x "
174 "address=0x%016llx flags=0x%04x]\n",
175 PCI_BUS(devid), PCI_SLOT(devid), PCI_FUNC(devid),
176 address, flags);
Joerg Roedele3e59872009-09-03 14:02:10 +0200177 dump_dte_entry(devid);
Joerg Roedel90008ee2008-09-09 16:41:05 +0200178 break;
179 case EVENT_TYPE_IO_FAULT:
180 printk("IO_PAGE_FAULT device=%02x:%02x.%x "
181 "domain=0x%04x address=0x%016llx flags=0x%04x]\n",
182 PCI_BUS(devid), PCI_SLOT(devid), PCI_FUNC(devid),
183 domid, address, flags);
184 break;
185 case EVENT_TYPE_DEV_TAB_ERR:
186 printk("DEV_TAB_HARDWARE_ERROR device=%02x:%02x.%x "
187 "address=0x%016llx flags=0x%04x]\n",
188 PCI_BUS(devid), PCI_SLOT(devid), PCI_FUNC(devid),
189 address, flags);
190 break;
191 case EVENT_TYPE_PAGE_TAB_ERR:
192 printk("PAGE_TAB_HARDWARE_ERROR device=%02x:%02x.%x "
193 "domain=0x%04x address=0x%016llx flags=0x%04x]\n",
194 PCI_BUS(devid), PCI_SLOT(devid), PCI_FUNC(devid),
195 domid, address, flags);
196 break;
197 case EVENT_TYPE_ILL_CMD:
198 printk("ILLEGAL_COMMAND_ERROR address=0x%016llx]\n", address);
Joerg Roedela345b232009-09-03 15:01:43 +0200199 reset_iommu_command_buffer(iommu);
Joerg Roedel945b4ac2009-09-03 14:25:02 +0200200 dump_command(address);
Joerg Roedel90008ee2008-09-09 16:41:05 +0200201 break;
202 case EVENT_TYPE_CMD_HARD_ERR:
203 printk("COMMAND_HARDWARE_ERROR address=0x%016llx "
204 "flags=0x%04x]\n", address, flags);
205 break;
206 case EVENT_TYPE_IOTLB_INV_TO:
207 printk("IOTLB_INV_TIMEOUT device=%02x:%02x.%x "
208 "address=0x%016llx]\n",
209 PCI_BUS(devid), PCI_SLOT(devid), PCI_FUNC(devid),
210 address);
211 break;
212 case EVENT_TYPE_INV_DEV_REQ:
213 printk("INVALID_DEVICE_REQUEST device=%02x:%02x.%x "
214 "address=0x%016llx flags=0x%04x]\n",
215 PCI_BUS(devid), PCI_SLOT(devid), PCI_FUNC(devid),
216 address, flags);
217 break;
218 default:
219 printk(KERN_ERR "UNKNOWN type=0x%02x]\n", type);
220 }
221}
222
223static void iommu_poll_events(struct amd_iommu *iommu)
224{
225 u32 head, tail;
226 unsigned long flags;
227
228 spin_lock_irqsave(&iommu->lock, flags);
229
230 head = readl(iommu->mmio_base + MMIO_EVT_HEAD_OFFSET);
231 tail = readl(iommu->mmio_base + MMIO_EVT_TAIL_OFFSET);
232
233 while (head != tail) {
Joerg Roedela345b232009-09-03 15:01:43 +0200234 iommu_print_event(iommu, iommu->evt_buf + head);
Joerg Roedel90008ee2008-09-09 16:41:05 +0200235 head = (head + EVENT_ENTRY_SIZE) % iommu->evt_buf_size;
236 }
237
238 writel(head, iommu->mmio_base + MMIO_EVT_HEAD_OFFSET);
239
240 spin_unlock_irqrestore(&iommu->lock, flags);
241}
242
Joerg Roedela80dc3e2008-09-11 16:51:41 +0200243irqreturn_t amd_iommu_int_handler(int irq, void *data)
244{
Joerg Roedel90008ee2008-09-09 16:41:05 +0200245 struct amd_iommu *iommu;
246
Joerg Roedel3bd22172009-05-04 15:06:20 +0200247 for_each_iommu(iommu)
Joerg Roedel90008ee2008-09-09 16:41:05 +0200248 iommu_poll_events(iommu);
249
250 return IRQ_HANDLED;
Joerg Roedela80dc3e2008-09-11 16:51:41 +0200251}
252
253/****************************************************************************
254 *
Joerg Roedel431b2a22008-07-11 17:14:22 +0200255 * IOMMU command queuing functions
256 *
257 ****************************************************************************/
258
259/*
260 * Writes the command to the IOMMUs command buffer and informs the
261 * hardware about the new command. Must be called with iommu->lock held.
262 */
Joerg Roedeld6449532008-07-11 17:14:28 +0200263static int __iommu_queue_command(struct amd_iommu *iommu, struct iommu_cmd *cmd)
Joerg Roedela19ae1e2008-06-26 21:27:55 +0200264{
265 u32 tail, head;
266 u8 *target;
267
268 tail = readl(iommu->mmio_base + MMIO_CMD_TAIL_OFFSET);
Jiri Kosina8a7c5ef2008-08-19 02:13:55 +0200269 target = iommu->cmd_buf + tail;
Joerg Roedela19ae1e2008-06-26 21:27:55 +0200270 memcpy_toio(target, cmd, sizeof(*cmd));
271 tail = (tail + sizeof(*cmd)) % iommu->cmd_buf_size;
272 head = readl(iommu->mmio_base + MMIO_CMD_HEAD_OFFSET);
273 if (tail == head)
274 return -ENOMEM;
275 writel(tail, iommu->mmio_base + MMIO_CMD_TAIL_OFFSET);
276
277 return 0;
278}
279
Joerg Roedel431b2a22008-07-11 17:14:22 +0200280/*
281 * General queuing function for commands. Takes iommu->lock and calls
282 * __iommu_queue_command().
283 */
Joerg Roedeld6449532008-07-11 17:14:28 +0200284static int iommu_queue_command(struct amd_iommu *iommu, struct iommu_cmd *cmd)
Joerg Roedela19ae1e2008-06-26 21:27:55 +0200285{
286 unsigned long flags;
287 int ret;
288
289 spin_lock_irqsave(&iommu->lock, flags);
290 ret = __iommu_queue_command(iommu, cmd);
Joerg Roedel09ee17e2008-12-03 12:19:27 +0100291 if (!ret)
Joerg Roedel0cfd7aa2008-12-10 19:58:00 +0100292 iommu->need_sync = true;
Joerg Roedela19ae1e2008-06-26 21:27:55 +0200293 spin_unlock_irqrestore(&iommu->lock, flags);
294
295 return ret;
296}
297
Joerg Roedel431b2a22008-07-11 17:14:22 +0200298/*
Joerg Roedel8d201962008-12-02 20:34:41 +0100299 * This function waits until an IOMMU has completed a completion
300 * wait command
Joerg Roedel431b2a22008-07-11 17:14:22 +0200301 */
Joerg Roedel8d201962008-12-02 20:34:41 +0100302static void __iommu_wait_for_completion(struct amd_iommu *iommu)
Joerg Roedela19ae1e2008-06-26 21:27:55 +0200303{
Joerg Roedel8d201962008-12-02 20:34:41 +0100304 int ready = 0;
Joerg Roedel519c31b2008-08-14 19:55:15 +0200305 unsigned status = 0;
Joerg Roedel8d201962008-12-02 20:34:41 +0100306 unsigned long i = 0;
Joerg Roedela19ae1e2008-06-26 21:27:55 +0200307
Joerg Roedelda49f6d2008-12-12 14:59:58 +0100308 INC_STATS_COUNTER(compl_wait);
309
Joerg Roedel136f78a2008-07-11 17:14:27 +0200310 while (!ready && (i < EXIT_LOOP_COUNT)) {
311 ++i;
Joerg Roedel519c31b2008-08-14 19:55:15 +0200312 /* wait for the bit to become one */
313 status = readl(iommu->mmio_base + MMIO_STATUS_OFFSET);
314 ready = status & MMIO_STATUS_COM_WAIT_INT_MASK;
Joerg Roedel136f78a2008-07-11 17:14:27 +0200315 }
316
Joerg Roedel519c31b2008-08-14 19:55:15 +0200317 /* set bit back to zero */
318 status &= ~MMIO_STATUS_COM_WAIT_INT_MASK;
319 writel(status, iommu->mmio_base + MMIO_STATUS_OFFSET);
320
Joerg Roedel84df8172008-12-17 16:36:44 +0100321 if (unlikely(i == EXIT_LOOP_COUNT))
322 panic("AMD IOMMU: Completion wait loop failed\n");
Joerg Roedel8d201962008-12-02 20:34:41 +0100323}
324
325/*
326 * This function queues a completion wait command into the command
327 * buffer of an IOMMU
328 */
329static int __iommu_completion_wait(struct amd_iommu *iommu)
330{
331 struct iommu_cmd cmd;
332
333 memset(&cmd, 0, sizeof(cmd));
334 cmd.data[0] = CMD_COMPL_WAIT_INT_MASK;
335 CMD_SET_TYPE(&cmd, CMD_COMPL_WAIT);
336
337 return __iommu_queue_command(iommu, &cmd);
338}
339
340/*
341 * This function is called whenever we need to ensure that the IOMMU has
342 * completed execution of all commands we sent. It sends a
343 * COMPLETION_WAIT command and waits for it to finish. The IOMMU informs
344 * us about that by writing a value to a physical address we pass with
345 * the command.
346 */
347static int iommu_completion_wait(struct amd_iommu *iommu)
348{
349 int ret = 0;
350 unsigned long flags;
351
352 spin_lock_irqsave(&iommu->lock, flags);
353
354 if (!iommu->need_sync)
355 goto out;
356
357 ret = __iommu_completion_wait(iommu);
358
Joerg Roedel0cfd7aa2008-12-10 19:58:00 +0100359 iommu->need_sync = false;
Joerg Roedel8d201962008-12-02 20:34:41 +0100360
361 if (ret)
362 goto out;
363
364 __iommu_wait_for_completion(iommu);
Joerg Roedel84df8172008-12-17 16:36:44 +0100365
Joerg Roedel7e4f88d2008-09-17 14:19:15 +0200366out:
367 spin_unlock_irqrestore(&iommu->lock, flags);
Joerg Roedela19ae1e2008-06-26 21:27:55 +0200368
369 return 0;
370}
371
Joerg Roedel431b2a22008-07-11 17:14:22 +0200372/*
373 * Command send function for invalidating a device table entry
374 */
Joerg Roedela19ae1e2008-06-26 21:27:55 +0200375static int iommu_queue_inv_dev_entry(struct amd_iommu *iommu, u16 devid)
376{
Joerg Roedeld6449532008-07-11 17:14:28 +0200377 struct iommu_cmd cmd;
Joerg Roedelee2fa742008-09-17 13:47:25 +0200378 int ret;
Joerg Roedela19ae1e2008-06-26 21:27:55 +0200379
380 BUG_ON(iommu == NULL);
381
382 memset(&cmd, 0, sizeof(cmd));
383 CMD_SET_TYPE(&cmd, CMD_INV_DEV_ENTRY);
384 cmd.data[0] = devid;
385
Joerg Roedelee2fa742008-09-17 13:47:25 +0200386 ret = iommu_queue_command(iommu, &cmd);
387
Joerg Roedelee2fa742008-09-17 13:47:25 +0200388 return ret;
Joerg Roedela19ae1e2008-06-26 21:27:55 +0200389}
390
Joerg Roedel237b6f32008-12-02 20:54:37 +0100391static void __iommu_build_inv_iommu_pages(struct iommu_cmd *cmd, u64 address,
392 u16 domid, int pde, int s)
393{
394 memset(cmd, 0, sizeof(*cmd));
395 address &= PAGE_MASK;
396 CMD_SET_TYPE(cmd, CMD_INV_IOMMU_PAGES);
397 cmd->data[1] |= domid;
398 cmd->data[2] = lower_32_bits(address);
399 cmd->data[3] = upper_32_bits(address);
400 if (s) /* size bit - we flush more than one 4kb page */
401 cmd->data[2] |= CMD_INV_IOMMU_PAGES_SIZE_MASK;
402 if (pde) /* PDE bit - we wan't flush everything not only the PTEs */
403 cmd->data[2] |= CMD_INV_IOMMU_PAGES_PDE_MASK;
404}
405
Joerg Roedel431b2a22008-07-11 17:14:22 +0200406/*
407 * Generic command send function for invalidaing TLB entries
408 */
Joerg Roedela19ae1e2008-06-26 21:27:55 +0200409static int iommu_queue_inv_iommu_pages(struct amd_iommu *iommu,
410 u64 address, u16 domid, int pde, int s)
411{
Joerg Roedeld6449532008-07-11 17:14:28 +0200412 struct iommu_cmd cmd;
Joerg Roedelee2fa742008-09-17 13:47:25 +0200413 int ret;
Joerg Roedela19ae1e2008-06-26 21:27:55 +0200414
Joerg Roedel237b6f32008-12-02 20:54:37 +0100415 __iommu_build_inv_iommu_pages(&cmd, address, domid, pde, s);
Joerg Roedela19ae1e2008-06-26 21:27:55 +0200416
Joerg Roedelee2fa742008-09-17 13:47:25 +0200417 ret = iommu_queue_command(iommu, &cmd);
418
Joerg Roedelee2fa742008-09-17 13:47:25 +0200419 return ret;
Joerg Roedela19ae1e2008-06-26 21:27:55 +0200420}
421
Joerg Roedel431b2a22008-07-11 17:14:22 +0200422/*
423 * TLB invalidation function which is called from the mapping functions.
424 * It invalidates a single PTE if the range to flush is within a single
425 * page. Otherwise it flushes the whole TLB of the IOMMU.
426 */
Joerg Roedela19ae1e2008-06-26 21:27:55 +0200427static int iommu_flush_pages(struct amd_iommu *iommu, u16 domid,
428 u64 address, size_t size)
429{
Joerg Roedel999ba412008-07-03 19:35:08 +0200430 int s = 0;
Joerg Roedele3c449f2008-10-15 22:02:11 -0700431 unsigned pages = iommu_num_pages(address, size, PAGE_SIZE);
Joerg Roedela19ae1e2008-06-26 21:27:55 +0200432
433 address &= PAGE_MASK;
434
Joerg Roedel999ba412008-07-03 19:35:08 +0200435 if (pages > 1) {
436 /*
437 * If we have to flush more than one page, flush all
438 * TLB entries for this domain
439 */
440 address = CMD_INV_IOMMU_ALL_PAGES_ADDRESS;
441 s = 1;
Joerg Roedela19ae1e2008-06-26 21:27:55 +0200442 }
443
Joerg Roedel999ba412008-07-03 19:35:08 +0200444 iommu_queue_inv_iommu_pages(iommu, address, domid, 0, s);
445
Joerg Roedela19ae1e2008-06-26 21:27:55 +0200446 return 0;
447}
Joerg Roedelb6c02712008-06-26 21:27:53 +0200448
Joerg Roedel1c655772008-09-04 18:40:05 +0200449/* Flush the whole IO/TLB for a given protection domain */
450static void iommu_flush_tlb(struct amd_iommu *iommu, u16 domid)
451{
452 u64 address = CMD_INV_IOMMU_ALL_PAGES_ADDRESS;
453
Joerg Roedelf57d98a2008-12-12 15:46:29 +0100454 INC_STATS_COUNTER(domain_flush_single);
455
Joerg Roedel1c655772008-09-04 18:40:05 +0200456 iommu_queue_inv_iommu_pages(iommu, address, domid, 0, 1);
457}
458
Chris Wright42a49f92009-06-15 15:42:00 +0200459/* Flush the whole IO/TLB for a given protection domain - including PDE */
460static void iommu_flush_tlb_pde(struct amd_iommu *iommu, u16 domid)
461{
462 u64 address = CMD_INV_IOMMU_ALL_PAGES_ADDRESS;
463
464 INC_STATS_COUNTER(domain_flush_single);
465
466 iommu_queue_inv_iommu_pages(iommu, address, domid, 1, 1);
467}
468
Joerg Roedel43f49602008-12-02 21:01:12 +0100469/*
Joerg Roedele394d722009-09-03 15:28:33 +0200470 * This function flushes one domain on one IOMMU
Joerg Roedel43f49602008-12-02 21:01:12 +0100471 */
Joerg Roedele394d722009-09-03 15:28:33 +0200472static void flush_domain_on_iommu(struct amd_iommu *iommu, u16 domid)
Joerg Roedel43f49602008-12-02 21:01:12 +0100473{
Joerg Roedel43f49602008-12-02 21:01:12 +0100474 struct iommu_cmd cmd;
Joerg Roedele394d722009-09-03 15:28:33 +0200475 unsigned long flags;
Joerg Roedel18811f52008-12-12 15:48:28 +0100476
Joerg Roedel43f49602008-12-02 21:01:12 +0100477 __iommu_build_inv_iommu_pages(&cmd, CMD_INV_IOMMU_ALL_PAGES_ADDRESS,
478 domid, 1, 1);
479
Joerg Roedele394d722009-09-03 15:28:33 +0200480 spin_lock_irqsave(&iommu->lock, flags);
481 __iommu_queue_command(iommu, &cmd);
482 __iommu_completion_wait(iommu);
483 __iommu_wait_for_completion(iommu);
484 spin_unlock_irqrestore(&iommu->lock, flags);
Joerg Roedel43f49602008-12-02 21:01:12 +0100485}
Joerg Roedel43f49602008-12-02 21:01:12 +0100486
Joerg Roedele394d722009-09-03 15:28:33 +0200487static void flush_all_domains_on_iommu(struct amd_iommu *iommu)
Joerg Roedelbfd1be12009-05-05 15:33:57 +0200488{
489 int i;
490
491 for (i = 1; i < MAX_DOMAIN_ID; ++i) {
492 if (!test_bit(i, amd_iommu_pd_alloc_bitmap))
493 continue;
Joerg Roedele394d722009-09-03 15:28:33 +0200494 flush_domain_on_iommu(iommu, i);
Joerg Roedelbfd1be12009-05-05 15:33:57 +0200495 }
Joerg Roedele394d722009-09-03 15:28:33 +0200496
497}
498
499/*
500 * This function is used to flush the IO/TLB for a given protection domain
501 * on every IOMMU in the system
502 */
503static void iommu_flush_domain(u16 domid)
504{
505 struct amd_iommu *iommu;
506
507 INC_STATS_COUNTER(domain_flush_all);
508
509 for_each_iommu(iommu)
510 flush_domain_on_iommu(iommu, domid);
511}
512
513void amd_iommu_flush_all_domains(void)
514{
515 struct amd_iommu *iommu;
516
517 for_each_iommu(iommu)
518 flush_all_domains_on_iommu(iommu);
Joerg Roedelbfd1be12009-05-05 15:33:57 +0200519}
520
Joerg Roedeld586d782009-09-03 15:39:23 +0200521static void flush_all_devices_for_iommu(struct amd_iommu *iommu)
522{
523 int i;
524
525 for (i = 0; i <= amd_iommu_last_bdf; ++i) {
526 if (iommu != amd_iommu_rlookup_table[i])
527 continue;
528
529 iommu_queue_inv_dev_entry(iommu, i);
530 iommu_completion_wait(iommu);
531 }
532}
533
Joerg Roedel7d7a1102009-05-05 15:48:10 +0200534void amd_iommu_flush_all_devices(void)
535{
536 struct amd_iommu *iommu;
537 int i;
538
539 for (i = 0; i <= amd_iommu_last_bdf; ++i) {
540 if (amd_iommu_pd_table[i] == NULL)
541 continue;
542
543 iommu = amd_iommu_rlookup_table[i];
544 if (!iommu)
545 continue;
546
547 iommu_queue_inv_dev_entry(iommu, i);
548 iommu_completion_wait(iommu);
549 }
550}
551
Joerg Roedela345b232009-09-03 15:01:43 +0200552static void reset_iommu_command_buffer(struct amd_iommu *iommu)
553{
554 pr_err("AMD-Vi: Resetting IOMMU command buffer\n");
555
Joerg Roedelb26e81b2009-09-03 15:08:09 +0200556 if (iommu->reset_in_progress)
557 panic("AMD-Vi: ILLEGAL_COMMAND_ERROR while resetting command buffer\n");
558
559 iommu->reset_in_progress = true;
560
Joerg Roedela345b232009-09-03 15:01:43 +0200561 amd_iommu_reset_cmd_buffer(iommu);
562 flush_all_devices_for_iommu(iommu);
563 flush_all_domains_on_iommu(iommu);
Joerg Roedelb26e81b2009-09-03 15:08:09 +0200564
565 iommu->reset_in_progress = false;
Joerg Roedela345b232009-09-03 15:01:43 +0200566}
567
Joerg Roedel431b2a22008-07-11 17:14:22 +0200568/****************************************************************************
569 *
570 * The functions below are used the create the page table mappings for
571 * unity mapped regions.
572 *
573 ****************************************************************************/
574
575/*
576 * Generic mapping functions. It maps a physical address into a DMA
577 * address space. It allocates the page table pages if necessary.
578 * In the future it can be extended to a generic mapping function
579 * supporting all features of AMD IOMMU page tables like level skipping
580 * and full 64 bit address spaces.
581 */
Joerg Roedel38e817f2008-12-02 17:27:52 +0100582static int iommu_map_page(struct protection_domain *dom,
583 unsigned long bus_addr,
584 unsigned long phys_addr,
585 int prot)
Joerg Roedelbd0e5212008-06-26 21:27:56 +0200586{
Joerg Roedel8bda3092009-05-12 12:02:46 +0200587 u64 __pte, *pte;
Joerg Roedelbd0e5212008-06-26 21:27:56 +0200588
589 bus_addr = PAGE_ALIGN(bus_addr);
Joerg Roedelbb9d4ff2008-12-04 15:59:48 +0100590 phys_addr = PAGE_ALIGN(phys_addr);
Joerg Roedelbd0e5212008-06-26 21:27:56 +0200591
592 /* only support 512GB address spaces for now */
593 if (bus_addr > IOMMU_MAP_SIZE_L3 || !(prot & IOMMU_PROT_MASK))
594 return -EINVAL;
595
Joerg Roedel8bda3092009-05-12 12:02:46 +0200596 pte = alloc_pte(dom, bus_addr, NULL, GFP_KERNEL);
Joerg Roedelbd0e5212008-06-26 21:27:56 +0200597
598 if (IOMMU_PTE_PRESENT(*pte))
599 return -EBUSY;
600
601 __pte = phys_addr | IOMMU_PTE_P;
602 if (prot & IOMMU_PROT_IR)
603 __pte |= IOMMU_PTE_IR;
604 if (prot & IOMMU_PROT_IW)
605 __pte |= IOMMU_PTE_IW;
606
607 *pte = __pte;
608
609 return 0;
610}
611
Joerg Roedeleb74ff62008-12-02 19:59:10 +0100612static void iommu_unmap_page(struct protection_domain *dom,
613 unsigned long bus_addr)
614{
615 u64 *pte;
616
617 pte = &dom->pt_root[IOMMU_PTE_L2_INDEX(bus_addr)];
618
619 if (!IOMMU_PTE_PRESENT(*pte))
620 return;
621
622 pte = IOMMU_PTE_PAGE(*pte);
623 pte = &pte[IOMMU_PTE_L1_INDEX(bus_addr)];
624
625 if (!IOMMU_PTE_PRESENT(*pte))
626 return;
627
628 pte = IOMMU_PTE_PAGE(*pte);
629 pte = &pte[IOMMU_PTE_L1_INDEX(bus_addr)];
630
631 *pte = 0;
632}
Joerg Roedeleb74ff62008-12-02 19:59:10 +0100633
Joerg Roedel431b2a22008-07-11 17:14:22 +0200634/*
635 * This function checks if a specific unity mapping entry is needed for
636 * this specific IOMMU.
637 */
Joerg Roedelbd0e5212008-06-26 21:27:56 +0200638static int iommu_for_unity_map(struct amd_iommu *iommu,
639 struct unity_map_entry *entry)
640{
641 u16 bdf, i;
642
643 for (i = entry->devid_start; i <= entry->devid_end; ++i) {
644 bdf = amd_iommu_alias_table[i];
645 if (amd_iommu_rlookup_table[bdf] == iommu)
646 return 1;
647 }
648
649 return 0;
650}
651
Joerg Roedel431b2a22008-07-11 17:14:22 +0200652/*
653 * Init the unity mappings for a specific IOMMU in the system
654 *
655 * Basically iterates over all unity mapping entries and applies them to
656 * the default domain DMA of that IOMMU if necessary.
657 */
Joerg Roedelbd0e5212008-06-26 21:27:56 +0200658static int iommu_init_unity_mappings(struct amd_iommu *iommu)
659{
660 struct unity_map_entry *entry;
661 int ret;
662
663 list_for_each_entry(entry, &amd_iommu_unity_map, list) {
664 if (!iommu_for_unity_map(iommu, entry))
665 continue;
666 ret = dma_ops_unity_map(iommu->default_dom, entry);
667 if (ret)
668 return ret;
669 }
670
671 return 0;
672}
673
Joerg Roedel431b2a22008-07-11 17:14:22 +0200674/*
675 * This function actually applies the mapping to the page table of the
676 * dma_ops domain.
677 */
Joerg Roedelbd0e5212008-06-26 21:27:56 +0200678static int dma_ops_unity_map(struct dma_ops_domain *dma_dom,
679 struct unity_map_entry *e)
680{
681 u64 addr;
682 int ret;
683
684 for (addr = e->address_start; addr < e->address_end;
685 addr += PAGE_SIZE) {
Joerg Roedel38e817f2008-12-02 17:27:52 +0100686 ret = iommu_map_page(&dma_dom->domain, addr, addr, e->prot);
Joerg Roedelbd0e5212008-06-26 21:27:56 +0200687 if (ret)
688 return ret;
689 /*
690 * if unity mapping is in aperture range mark the page
691 * as allocated in the aperture
692 */
693 if (addr < dma_dom->aperture_size)
Joerg Roedelc3239562009-05-12 10:56:44 +0200694 __set_bit(addr >> PAGE_SHIFT,
Joerg Roedel384de722009-05-15 12:30:05 +0200695 dma_dom->aperture[0]->bitmap);
Joerg Roedelbd0e5212008-06-26 21:27:56 +0200696 }
697
698 return 0;
699}
700
Joerg Roedel431b2a22008-07-11 17:14:22 +0200701/*
702 * Inits the unity mappings required for a specific device
703 */
Joerg Roedelbd0e5212008-06-26 21:27:56 +0200704static int init_unity_mappings_for_device(struct dma_ops_domain *dma_dom,
705 u16 devid)
706{
707 struct unity_map_entry *e;
708 int ret;
709
710 list_for_each_entry(e, &amd_iommu_unity_map, list) {
711 if (!(devid >= e->devid_start && devid <= e->devid_end))
712 continue;
713 ret = dma_ops_unity_map(dma_dom, e);
714 if (ret)
715 return ret;
716 }
717
718 return 0;
719}
720
Joerg Roedel431b2a22008-07-11 17:14:22 +0200721/****************************************************************************
722 *
723 * The next functions belong to the address allocator for the dma_ops
724 * interface functions. They work like the allocators in the other IOMMU
725 * drivers. Its basically a bitmap which marks the allocated pages in
726 * the aperture. Maybe it could be enhanced in the future to a more
727 * efficient allocator.
728 *
729 ****************************************************************************/
Joerg Roedeld3086442008-06-26 21:27:57 +0200730
Joerg Roedel431b2a22008-07-11 17:14:22 +0200731/*
Joerg Roedel384de722009-05-15 12:30:05 +0200732 * The address allocator core functions.
Joerg Roedel431b2a22008-07-11 17:14:22 +0200733 *
734 * called with domain->lock held
735 */
Joerg Roedel384de722009-05-15 12:30:05 +0200736
Joerg Roedel9cabe892009-05-18 16:38:55 +0200737/*
Joerg Roedel00cd1222009-05-19 09:52:40 +0200738 * This function checks if there is a PTE for a given dma address. If
739 * there is one, it returns the pointer to it.
740 */
741static u64* fetch_pte(struct protection_domain *domain,
742 unsigned long address)
743{
744 u64 *pte;
745
746 pte = &domain->pt_root[IOMMU_PTE_L2_INDEX(address)];
747
748 if (!IOMMU_PTE_PRESENT(*pte))
749 return NULL;
750
751 pte = IOMMU_PTE_PAGE(*pte);
752 pte = &pte[IOMMU_PTE_L1_INDEX(address)];
753
754 if (!IOMMU_PTE_PRESENT(*pte))
755 return NULL;
756
757 pte = IOMMU_PTE_PAGE(*pte);
758 pte = &pte[IOMMU_PTE_L0_INDEX(address)];
759
760 return pte;
761}
762
763/*
Joerg Roedel9cabe892009-05-18 16:38:55 +0200764 * This function is used to add a new aperture range to an existing
765 * aperture in case of dma_ops domain allocation or address allocation
766 * failure.
767 */
Joerg Roedel00cd1222009-05-19 09:52:40 +0200768static int alloc_new_range(struct amd_iommu *iommu,
769 struct dma_ops_domain *dma_dom,
Joerg Roedel9cabe892009-05-18 16:38:55 +0200770 bool populate, gfp_t gfp)
771{
772 int index = dma_dom->aperture_size >> APERTURE_RANGE_SHIFT;
Joerg Roedel00cd1222009-05-19 09:52:40 +0200773 int i;
Joerg Roedel9cabe892009-05-18 16:38:55 +0200774
Joerg Roedelf5e97052009-05-22 12:31:53 +0200775#ifdef CONFIG_IOMMU_STRESS
776 populate = false;
777#endif
778
Joerg Roedel9cabe892009-05-18 16:38:55 +0200779 if (index >= APERTURE_MAX_RANGES)
780 return -ENOMEM;
781
782 dma_dom->aperture[index] = kzalloc(sizeof(struct aperture_range), gfp);
783 if (!dma_dom->aperture[index])
784 return -ENOMEM;
785
786 dma_dom->aperture[index]->bitmap = (void *)get_zeroed_page(gfp);
787 if (!dma_dom->aperture[index]->bitmap)
788 goto out_free;
789
790 dma_dom->aperture[index]->offset = dma_dom->aperture_size;
791
792 if (populate) {
793 unsigned long address = dma_dom->aperture_size;
794 int i, num_ptes = APERTURE_RANGE_PAGES / 512;
795 u64 *pte, *pte_page;
796
797 for (i = 0; i < num_ptes; ++i) {
798 pte = alloc_pte(&dma_dom->domain, address,
799 &pte_page, gfp);
800 if (!pte)
801 goto out_free;
802
803 dma_dom->aperture[index]->pte_pages[i] = pte_page;
804
805 address += APERTURE_RANGE_SIZE / 64;
806 }
807 }
808
809 dma_dom->aperture_size += APERTURE_RANGE_SIZE;
810
Joerg Roedel00cd1222009-05-19 09:52:40 +0200811 /* Intialize the exclusion range if necessary */
812 if (iommu->exclusion_start &&
813 iommu->exclusion_start >= dma_dom->aperture[index]->offset &&
814 iommu->exclusion_start < dma_dom->aperture_size) {
815 unsigned long startpage = iommu->exclusion_start >> PAGE_SHIFT;
816 int pages = iommu_num_pages(iommu->exclusion_start,
817 iommu->exclusion_length,
818 PAGE_SIZE);
819 dma_ops_reserve_addresses(dma_dom, startpage, pages);
820 }
821
822 /*
823 * Check for areas already mapped as present in the new aperture
824 * range and mark those pages as reserved in the allocator. Such
825 * mappings may already exist as a result of requested unity
826 * mappings for devices.
827 */
828 for (i = dma_dom->aperture[index]->offset;
829 i < dma_dom->aperture_size;
830 i += PAGE_SIZE) {
831 u64 *pte = fetch_pte(&dma_dom->domain, i);
832 if (!pte || !IOMMU_PTE_PRESENT(*pte))
833 continue;
834
835 dma_ops_reserve_addresses(dma_dom, i << PAGE_SHIFT, 1);
836 }
837
Joerg Roedel9cabe892009-05-18 16:38:55 +0200838 return 0;
839
840out_free:
841 free_page((unsigned long)dma_dom->aperture[index]->bitmap);
842
843 kfree(dma_dom->aperture[index]);
844 dma_dom->aperture[index] = NULL;
845
846 return -ENOMEM;
847}
848
Joerg Roedel384de722009-05-15 12:30:05 +0200849static unsigned long dma_ops_area_alloc(struct device *dev,
850 struct dma_ops_domain *dom,
851 unsigned int pages,
852 unsigned long align_mask,
853 u64 dma_mask,
854 unsigned long start)
855{
Joerg Roedel803b8cb2009-05-18 15:32:48 +0200856 unsigned long next_bit = dom->next_address % APERTURE_RANGE_SIZE;
Joerg Roedel384de722009-05-15 12:30:05 +0200857 int max_index = dom->aperture_size >> APERTURE_RANGE_SHIFT;
858 int i = start >> APERTURE_RANGE_SHIFT;
859 unsigned long boundary_size;
860 unsigned long address = -1;
861 unsigned long limit;
862
Joerg Roedel803b8cb2009-05-18 15:32:48 +0200863 next_bit >>= PAGE_SHIFT;
864
Joerg Roedel384de722009-05-15 12:30:05 +0200865 boundary_size = ALIGN(dma_get_seg_boundary(dev) + 1,
866 PAGE_SIZE) >> PAGE_SHIFT;
867
868 for (;i < max_index; ++i) {
869 unsigned long offset = dom->aperture[i]->offset >> PAGE_SHIFT;
870
871 if (dom->aperture[i]->offset >= dma_mask)
872 break;
873
874 limit = iommu_device_max_index(APERTURE_RANGE_PAGES, offset,
875 dma_mask >> PAGE_SHIFT);
876
877 address = iommu_area_alloc(dom->aperture[i]->bitmap,
878 limit, next_bit, pages, 0,
879 boundary_size, align_mask);
880 if (address != -1) {
881 address = dom->aperture[i]->offset +
882 (address << PAGE_SHIFT);
Joerg Roedel803b8cb2009-05-18 15:32:48 +0200883 dom->next_address = address + (pages << PAGE_SHIFT);
Joerg Roedel384de722009-05-15 12:30:05 +0200884 break;
885 }
886
887 next_bit = 0;
888 }
889
890 return address;
891}
892
Joerg Roedeld3086442008-06-26 21:27:57 +0200893static unsigned long dma_ops_alloc_addresses(struct device *dev,
894 struct dma_ops_domain *dom,
Joerg Roedel6d4f3432008-09-04 19:18:02 +0200895 unsigned int pages,
Joerg Roedel832a90c2008-09-18 15:54:23 +0200896 unsigned long align_mask,
897 u64 dma_mask)
Joerg Roedeld3086442008-06-26 21:27:57 +0200898{
Joerg Roedeld3086442008-06-26 21:27:57 +0200899 unsigned long address;
Joerg Roedeld3086442008-06-26 21:27:57 +0200900
Joerg Roedelfe16f082009-05-22 12:27:53 +0200901#ifdef CONFIG_IOMMU_STRESS
902 dom->next_address = 0;
903 dom->need_flush = true;
904#endif
Joerg Roedeld3086442008-06-26 21:27:57 +0200905
Joerg Roedel384de722009-05-15 12:30:05 +0200906 address = dma_ops_area_alloc(dev, dom, pages, align_mask,
Joerg Roedel803b8cb2009-05-18 15:32:48 +0200907 dma_mask, dom->next_address);
Joerg Roedeld3086442008-06-26 21:27:57 +0200908
Joerg Roedel1c655772008-09-04 18:40:05 +0200909 if (address == -1) {
Joerg Roedel803b8cb2009-05-18 15:32:48 +0200910 dom->next_address = 0;
Joerg Roedel384de722009-05-15 12:30:05 +0200911 address = dma_ops_area_alloc(dev, dom, pages, align_mask,
912 dma_mask, 0);
Joerg Roedel1c655772008-09-04 18:40:05 +0200913 dom->need_flush = true;
914 }
Joerg Roedeld3086442008-06-26 21:27:57 +0200915
Joerg Roedel384de722009-05-15 12:30:05 +0200916 if (unlikely(address == -1))
Joerg Roedeld3086442008-06-26 21:27:57 +0200917 address = bad_dma_address;
918
919 WARN_ON((address + (PAGE_SIZE*pages)) > dom->aperture_size);
920
921 return address;
922}
923
Joerg Roedel431b2a22008-07-11 17:14:22 +0200924/*
925 * The address free function.
926 *
927 * called with domain->lock held
928 */
Joerg Roedeld3086442008-06-26 21:27:57 +0200929static void dma_ops_free_addresses(struct dma_ops_domain *dom,
930 unsigned long address,
931 unsigned int pages)
932{
Joerg Roedel384de722009-05-15 12:30:05 +0200933 unsigned i = address >> APERTURE_RANGE_SHIFT;
934 struct aperture_range *range = dom->aperture[i];
Joerg Roedel80be3082008-11-06 14:59:05 +0100935
Joerg Roedel384de722009-05-15 12:30:05 +0200936 BUG_ON(i >= APERTURE_MAX_RANGES || range == NULL);
937
Joerg Roedel47bccd62009-05-22 12:40:54 +0200938#ifdef CONFIG_IOMMU_STRESS
939 if (i < 4)
940 return;
941#endif
942
Joerg Roedel803b8cb2009-05-18 15:32:48 +0200943 if (address >= dom->next_address)
Joerg Roedel80be3082008-11-06 14:59:05 +0100944 dom->need_flush = true;
Joerg Roedel384de722009-05-15 12:30:05 +0200945
946 address = (address % APERTURE_RANGE_SIZE) >> PAGE_SHIFT;
Joerg Roedel803b8cb2009-05-18 15:32:48 +0200947
Joerg Roedel384de722009-05-15 12:30:05 +0200948 iommu_area_free(range->bitmap, address, pages);
949
Joerg Roedeld3086442008-06-26 21:27:57 +0200950}
951
Joerg Roedel431b2a22008-07-11 17:14:22 +0200952/****************************************************************************
953 *
954 * The next functions belong to the domain allocation. A domain is
955 * allocated for every IOMMU as the default domain. If device isolation
956 * is enabled, every device get its own domain. The most important thing
957 * about domains is the page table mapping the DMA address space they
958 * contain.
959 *
960 ****************************************************************************/
961
Joerg Roedelec487d12008-06-26 21:27:58 +0200962static u16 domain_id_alloc(void)
963{
964 unsigned long flags;
965 int id;
966
967 write_lock_irqsave(&amd_iommu_devtable_lock, flags);
968 id = find_first_zero_bit(amd_iommu_pd_alloc_bitmap, MAX_DOMAIN_ID);
969 BUG_ON(id == 0);
970 if (id > 0 && id < MAX_DOMAIN_ID)
971 __set_bit(id, amd_iommu_pd_alloc_bitmap);
972 else
973 id = 0;
974 write_unlock_irqrestore(&amd_iommu_devtable_lock, flags);
975
976 return id;
977}
978
Joerg Roedela2acfb72008-12-02 18:28:53 +0100979static void domain_id_free(int id)
980{
981 unsigned long flags;
982
983 write_lock_irqsave(&amd_iommu_devtable_lock, flags);
984 if (id > 0 && id < MAX_DOMAIN_ID)
985 __clear_bit(id, amd_iommu_pd_alloc_bitmap);
986 write_unlock_irqrestore(&amd_iommu_devtable_lock, flags);
987}
Joerg Roedela2acfb72008-12-02 18:28:53 +0100988
Joerg Roedel431b2a22008-07-11 17:14:22 +0200989/*
990 * Used to reserve address ranges in the aperture (e.g. for exclusion
991 * ranges.
992 */
Joerg Roedelec487d12008-06-26 21:27:58 +0200993static void dma_ops_reserve_addresses(struct dma_ops_domain *dom,
994 unsigned long start_page,
995 unsigned int pages)
996{
Joerg Roedel384de722009-05-15 12:30:05 +0200997 unsigned int i, last_page = dom->aperture_size >> PAGE_SHIFT;
Joerg Roedelec487d12008-06-26 21:27:58 +0200998
999 if (start_page + pages > last_page)
1000 pages = last_page - start_page;
1001
Joerg Roedel384de722009-05-15 12:30:05 +02001002 for (i = start_page; i < start_page + pages; ++i) {
1003 int index = i / APERTURE_RANGE_PAGES;
1004 int page = i % APERTURE_RANGE_PAGES;
1005 __set_bit(page, dom->aperture[index]->bitmap);
1006 }
Joerg Roedelec487d12008-06-26 21:27:58 +02001007}
1008
Joerg Roedel86db2e52008-12-02 18:20:21 +01001009static void free_pagetable(struct protection_domain *domain)
Joerg Roedelec487d12008-06-26 21:27:58 +02001010{
1011 int i, j;
1012 u64 *p1, *p2, *p3;
1013
Joerg Roedel86db2e52008-12-02 18:20:21 +01001014 p1 = domain->pt_root;
Joerg Roedelec487d12008-06-26 21:27:58 +02001015
1016 if (!p1)
1017 return;
1018
1019 for (i = 0; i < 512; ++i) {
1020 if (!IOMMU_PTE_PRESENT(p1[i]))
1021 continue;
1022
1023 p2 = IOMMU_PTE_PAGE(p1[i]);
Joerg Roedel3cc3d842008-12-04 16:44:31 +01001024 for (j = 0; j < 512; ++j) {
Joerg Roedelec487d12008-06-26 21:27:58 +02001025 if (!IOMMU_PTE_PRESENT(p2[j]))
1026 continue;
1027 p3 = IOMMU_PTE_PAGE(p2[j]);
1028 free_page((unsigned long)p3);
1029 }
1030
1031 free_page((unsigned long)p2);
1032 }
1033
1034 free_page((unsigned long)p1);
Joerg Roedel86db2e52008-12-02 18:20:21 +01001035
1036 domain->pt_root = NULL;
Joerg Roedelec487d12008-06-26 21:27:58 +02001037}
1038
Joerg Roedel431b2a22008-07-11 17:14:22 +02001039/*
1040 * Free a domain, only used if something went wrong in the
1041 * allocation path and we need to free an already allocated page table
1042 */
Joerg Roedelec487d12008-06-26 21:27:58 +02001043static void dma_ops_domain_free(struct dma_ops_domain *dom)
1044{
Joerg Roedel384de722009-05-15 12:30:05 +02001045 int i;
1046
Joerg Roedelec487d12008-06-26 21:27:58 +02001047 if (!dom)
1048 return;
1049
Joerg Roedel86db2e52008-12-02 18:20:21 +01001050 free_pagetable(&dom->domain);
Joerg Roedelec487d12008-06-26 21:27:58 +02001051
Joerg Roedel384de722009-05-15 12:30:05 +02001052 for (i = 0; i < APERTURE_MAX_RANGES; ++i) {
1053 if (!dom->aperture[i])
1054 continue;
1055 free_page((unsigned long)dom->aperture[i]->bitmap);
1056 kfree(dom->aperture[i]);
1057 }
Joerg Roedelec487d12008-06-26 21:27:58 +02001058
1059 kfree(dom);
1060}
1061
Joerg Roedel431b2a22008-07-11 17:14:22 +02001062/*
1063 * Allocates a new protection domain usable for the dma_ops functions.
1064 * It also intializes the page table and the address allocator data
1065 * structures required for the dma_ops interface
1066 */
Joerg Roedeld9cfed92009-05-19 12:16:29 +02001067static struct dma_ops_domain *dma_ops_domain_alloc(struct amd_iommu *iommu)
Joerg Roedelec487d12008-06-26 21:27:58 +02001068{
1069 struct dma_ops_domain *dma_dom;
Joerg Roedelec487d12008-06-26 21:27:58 +02001070
1071 dma_dom = kzalloc(sizeof(struct dma_ops_domain), GFP_KERNEL);
1072 if (!dma_dom)
1073 return NULL;
1074
1075 spin_lock_init(&dma_dom->domain.lock);
1076
1077 dma_dom->domain.id = domain_id_alloc();
1078 if (dma_dom->domain.id == 0)
1079 goto free_dma_dom;
1080 dma_dom->domain.mode = PAGE_MODE_3_LEVEL;
1081 dma_dom->domain.pt_root = (void *)get_zeroed_page(GFP_KERNEL);
Joerg Roedel9fdb19d2008-12-02 17:46:25 +01001082 dma_dom->domain.flags = PD_DMA_OPS_MASK;
Joerg Roedelec487d12008-06-26 21:27:58 +02001083 dma_dom->domain.priv = dma_dom;
1084 if (!dma_dom->domain.pt_root)
1085 goto free_dma_dom;
Joerg Roedelec487d12008-06-26 21:27:58 +02001086
Joerg Roedel1c655772008-09-04 18:40:05 +02001087 dma_dom->need_flush = false;
Joerg Roedelbd60b732008-09-11 10:24:48 +02001088 dma_dom->target_dev = 0xffff;
Joerg Roedel1c655772008-09-04 18:40:05 +02001089
Joerg Roedel00cd1222009-05-19 09:52:40 +02001090 if (alloc_new_range(iommu, dma_dom, true, GFP_KERNEL))
Joerg Roedelec487d12008-06-26 21:27:58 +02001091 goto free_dma_dom;
Joerg Roedelec487d12008-06-26 21:27:58 +02001092
Joerg Roedel431b2a22008-07-11 17:14:22 +02001093 /*
Joerg Roedelec487d12008-06-26 21:27:58 +02001094 * mark the first page as allocated so we never return 0 as
1095 * a valid dma-address. So we can use 0 as error value
Joerg Roedel431b2a22008-07-11 17:14:22 +02001096 */
Joerg Roedel384de722009-05-15 12:30:05 +02001097 dma_dom->aperture[0]->bitmap[0] = 1;
Joerg Roedel803b8cb2009-05-18 15:32:48 +02001098 dma_dom->next_address = 0;
Joerg Roedelec487d12008-06-26 21:27:58 +02001099
Joerg Roedelec487d12008-06-26 21:27:58 +02001100
1101 return dma_dom;
1102
1103free_dma_dom:
1104 dma_ops_domain_free(dma_dom);
1105
1106 return NULL;
1107}
1108
Joerg Roedel431b2a22008-07-11 17:14:22 +02001109/*
Joerg Roedel5b28df62008-12-02 17:49:42 +01001110 * little helper function to check whether a given protection domain is a
1111 * dma_ops domain
1112 */
1113static bool dma_ops_domain(struct protection_domain *domain)
1114{
1115 return domain->flags & PD_DMA_OPS_MASK;
1116}
1117
1118/*
Joerg Roedel431b2a22008-07-11 17:14:22 +02001119 * Find out the protection domain structure for a given PCI device. This
1120 * will give us the pointer to the page table root for example.
1121 */
Joerg Roedelb20ac0d2008-06-26 21:27:59 +02001122static struct protection_domain *domain_for_device(u16 devid)
1123{
1124 struct protection_domain *dom;
1125 unsigned long flags;
1126
1127 read_lock_irqsave(&amd_iommu_devtable_lock, flags);
1128 dom = amd_iommu_pd_table[devid];
1129 read_unlock_irqrestore(&amd_iommu_devtable_lock, flags);
1130
1131 return dom;
1132}
1133
Joerg Roedel431b2a22008-07-11 17:14:22 +02001134/*
1135 * If a device is not yet associated with a domain, this function does
1136 * assigns it visible for the hardware
1137 */
Joerg Roedelf1179dc2008-12-10 14:39:51 +01001138static void attach_device(struct amd_iommu *iommu,
1139 struct protection_domain *domain,
1140 u16 devid)
Joerg Roedelb20ac0d2008-06-26 21:27:59 +02001141{
1142 unsigned long flags;
Joerg Roedelb20ac0d2008-06-26 21:27:59 +02001143 u64 pte_root = virt_to_phys(domain->pt_root);
1144
Joerg Roedel863c74e2008-12-02 17:56:36 +01001145 domain->dev_cnt += 1;
1146
Joerg Roedel38ddf412008-09-11 10:38:32 +02001147 pte_root |= (domain->mode & DEV_ENTRY_MODE_MASK)
1148 << DEV_ENTRY_MODE_SHIFT;
1149 pte_root |= IOMMU_PTE_IR | IOMMU_PTE_IW | IOMMU_PTE_P | IOMMU_PTE_TV;
Joerg Roedelb20ac0d2008-06-26 21:27:59 +02001150
1151 write_lock_irqsave(&amd_iommu_devtable_lock, flags);
Joerg Roedel38ddf412008-09-11 10:38:32 +02001152 amd_iommu_dev_table[devid].data[0] = lower_32_bits(pte_root);
1153 amd_iommu_dev_table[devid].data[1] = upper_32_bits(pte_root);
Joerg Roedelb20ac0d2008-06-26 21:27:59 +02001154 amd_iommu_dev_table[devid].data[2] = domain->id;
1155
1156 amd_iommu_pd_table[devid] = domain;
1157 write_unlock_irqrestore(&amd_iommu_devtable_lock, flags);
1158
Chris Wright42a49f92009-06-15 15:42:00 +02001159 /*
1160 * We might boot into a crash-kernel here. The crashed kernel
1161 * left the caches in the IOMMU dirty. So we have to flush
1162 * here to evict all dirty stuff.
1163 */
Joerg Roedelb20ac0d2008-06-26 21:27:59 +02001164 iommu_queue_inv_dev_entry(iommu, devid);
Chris Wright42a49f92009-06-15 15:42:00 +02001165 iommu_flush_tlb_pde(iommu, domain->id);
Joerg Roedelb20ac0d2008-06-26 21:27:59 +02001166}
1167
Joerg Roedel355bf552008-12-08 12:02:41 +01001168/*
1169 * Removes a device from a protection domain (unlocked)
1170 */
1171static void __detach_device(struct protection_domain *domain, u16 devid)
1172{
1173
1174 /* lock domain */
1175 spin_lock(&domain->lock);
1176
1177 /* remove domain from the lookup table */
1178 amd_iommu_pd_table[devid] = NULL;
1179
1180 /* remove entry from the device table seen by the hardware */
1181 amd_iommu_dev_table[devid].data[0] = IOMMU_PTE_P | IOMMU_PTE_TV;
1182 amd_iommu_dev_table[devid].data[1] = 0;
1183 amd_iommu_dev_table[devid].data[2] = 0;
1184
1185 /* decrease reference counter */
1186 domain->dev_cnt -= 1;
1187
1188 /* ready */
1189 spin_unlock(&domain->lock);
1190}
1191
1192/*
1193 * Removes a device from a protection domain (with devtable_lock held)
1194 */
1195static void detach_device(struct protection_domain *domain, u16 devid)
1196{
1197 unsigned long flags;
1198
1199 /* lock device table */
1200 write_lock_irqsave(&amd_iommu_devtable_lock, flags);
1201 __detach_device(domain, devid);
1202 write_unlock_irqrestore(&amd_iommu_devtable_lock, flags);
1203}
Joerg Roedele275a2a2008-12-10 18:27:25 +01001204
1205static int device_change_notifier(struct notifier_block *nb,
1206 unsigned long action, void *data)
1207{
1208 struct device *dev = data;
1209 struct pci_dev *pdev = to_pci_dev(dev);
1210 u16 devid = calc_devid(pdev->bus->number, pdev->devfn);
1211 struct protection_domain *domain;
1212 struct dma_ops_domain *dma_domain;
1213 struct amd_iommu *iommu;
Joerg Roedel1ac4cbb2008-12-10 19:33:26 +01001214 unsigned long flags;
Joerg Roedele275a2a2008-12-10 18:27:25 +01001215
1216 if (devid > amd_iommu_last_bdf)
1217 goto out;
1218
1219 devid = amd_iommu_alias_table[devid];
1220
1221 iommu = amd_iommu_rlookup_table[devid];
1222 if (iommu == NULL)
1223 goto out;
1224
1225 domain = domain_for_device(devid);
1226
1227 if (domain && !dma_ops_domain(domain))
1228 WARN_ONCE(1, "AMD IOMMU WARNING: device %s already bound "
1229 "to a non-dma-ops domain\n", dev_name(dev));
1230
1231 switch (action) {
Chris Wrightc1eee672009-05-21 00:56:58 -07001232 case BUS_NOTIFY_UNBOUND_DRIVER:
Joerg Roedele275a2a2008-12-10 18:27:25 +01001233 if (!domain)
1234 goto out;
1235 detach_device(domain, devid);
1236 break;
Joerg Roedel1ac4cbb2008-12-10 19:33:26 +01001237 case BUS_NOTIFY_ADD_DEVICE:
1238 /* allocate a protection domain if a device is added */
1239 dma_domain = find_protection_domain(devid);
1240 if (dma_domain)
1241 goto out;
Joerg Roedeld9cfed92009-05-19 12:16:29 +02001242 dma_domain = dma_ops_domain_alloc(iommu);
Joerg Roedel1ac4cbb2008-12-10 19:33:26 +01001243 if (!dma_domain)
1244 goto out;
1245 dma_domain->target_dev = devid;
1246
1247 spin_lock_irqsave(&iommu_pd_list_lock, flags);
1248 list_add_tail(&dma_domain->list, &iommu_pd_list);
1249 spin_unlock_irqrestore(&iommu_pd_list_lock, flags);
1250
1251 break;
Joerg Roedele275a2a2008-12-10 18:27:25 +01001252 default:
1253 goto out;
1254 }
1255
1256 iommu_queue_inv_dev_entry(iommu, devid);
1257 iommu_completion_wait(iommu);
1258
1259out:
1260 return 0;
1261}
1262
Jaswinder Singh Rajputb25ae672009-07-01 19:53:14 +05301263static struct notifier_block device_nb = {
Joerg Roedele275a2a2008-12-10 18:27:25 +01001264 .notifier_call = device_change_notifier,
1265};
Joerg Roedel355bf552008-12-08 12:02:41 +01001266
Joerg Roedel431b2a22008-07-11 17:14:22 +02001267/*****************************************************************************
1268 *
1269 * The next functions belong to the dma_ops mapping/unmapping code.
1270 *
1271 *****************************************************************************/
1272
1273/*
Joerg Roedeldbcc1122008-09-04 15:04:26 +02001274 * This function checks if the driver got a valid device from the caller to
1275 * avoid dereferencing invalid pointers.
1276 */
1277static bool check_device(struct device *dev)
1278{
1279 if (!dev || !dev->dma_mask)
1280 return false;
1281
1282 return true;
1283}
1284
1285/*
Joerg Roedelbd60b732008-09-11 10:24:48 +02001286 * In this function the list of preallocated protection domains is traversed to
1287 * find the domain for a specific device
1288 */
1289static struct dma_ops_domain *find_protection_domain(u16 devid)
1290{
1291 struct dma_ops_domain *entry, *ret = NULL;
1292 unsigned long flags;
1293
1294 if (list_empty(&iommu_pd_list))
1295 return NULL;
1296
1297 spin_lock_irqsave(&iommu_pd_list_lock, flags);
1298
1299 list_for_each_entry(entry, &iommu_pd_list, list) {
1300 if (entry->target_dev == devid) {
1301 ret = entry;
Joerg Roedelbd60b732008-09-11 10:24:48 +02001302 break;
1303 }
1304 }
1305
1306 spin_unlock_irqrestore(&iommu_pd_list_lock, flags);
1307
1308 return ret;
1309}
1310
1311/*
Joerg Roedel431b2a22008-07-11 17:14:22 +02001312 * In the dma_ops path we only have the struct device. This function
1313 * finds the corresponding IOMMU, the protection domain and the
1314 * requestor id for a given device.
1315 * If the device is not yet associated with a domain this is also done
1316 * in this function.
1317 */
Joerg Roedelb20ac0d2008-06-26 21:27:59 +02001318static int get_device_resources(struct device *dev,
1319 struct amd_iommu **iommu,
1320 struct protection_domain **domain,
1321 u16 *bdf)
1322{
1323 struct dma_ops_domain *dma_dom;
1324 struct pci_dev *pcidev;
1325 u16 _bdf;
1326
Joerg Roedeldbcc1122008-09-04 15:04:26 +02001327 *iommu = NULL;
1328 *domain = NULL;
1329 *bdf = 0xffff;
1330
1331 if (dev->bus != &pci_bus_type)
1332 return 0;
Joerg Roedelb20ac0d2008-06-26 21:27:59 +02001333
1334 pcidev = to_pci_dev(dev);
Joerg Roedeld591b0a2008-07-11 17:14:35 +02001335 _bdf = calc_devid(pcidev->bus->number, pcidev->devfn);
Joerg Roedelb20ac0d2008-06-26 21:27:59 +02001336
Joerg Roedel431b2a22008-07-11 17:14:22 +02001337 /* device not translated by any IOMMU in the system? */
Joerg Roedeldbcc1122008-09-04 15:04:26 +02001338 if (_bdf > amd_iommu_last_bdf)
Joerg Roedelb20ac0d2008-06-26 21:27:59 +02001339 return 0;
Joerg Roedelb20ac0d2008-06-26 21:27:59 +02001340
1341 *bdf = amd_iommu_alias_table[_bdf];
1342
1343 *iommu = amd_iommu_rlookup_table[*bdf];
1344 if (*iommu == NULL)
1345 return 0;
Joerg Roedelb20ac0d2008-06-26 21:27:59 +02001346 *domain = domain_for_device(*bdf);
1347 if (*domain == NULL) {
Joerg Roedelbd60b732008-09-11 10:24:48 +02001348 dma_dom = find_protection_domain(*bdf);
1349 if (!dma_dom)
1350 dma_dom = (*iommu)->default_dom;
Joerg Roedelb20ac0d2008-06-26 21:27:59 +02001351 *domain = &dma_dom->domain;
Joerg Roedelf1179dc2008-12-10 14:39:51 +01001352 attach_device(*iommu, *domain, *bdf);
Joerg Roedele9a22a12009-06-09 12:00:37 +02001353 DUMP_printk("Using protection domain %d for device %s\n",
1354 (*domain)->id, dev_name(dev));
Joerg Roedelb20ac0d2008-06-26 21:27:59 +02001355 }
1356
Joerg Roedelf91ba192008-11-25 12:56:12 +01001357 if (domain_for_device(_bdf) == NULL)
Joerg Roedelf1179dc2008-12-10 14:39:51 +01001358 attach_device(*iommu, *domain, _bdf);
Joerg Roedelf91ba192008-11-25 12:56:12 +01001359
Joerg Roedelb20ac0d2008-06-26 21:27:59 +02001360 return 1;
1361}
1362
Joerg Roedel431b2a22008-07-11 17:14:22 +02001363/*
Joerg Roedel8bda3092009-05-12 12:02:46 +02001364 * If the pte_page is not yet allocated this function is called
1365 */
1366static u64* alloc_pte(struct protection_domain *dom,
1367 unsigned long address, u64 **pte_page, gfp_t gfp)
1368{
1369 u64 *pte, *page;
1370
1371 pte = &dom->pt_root[IOMMU_PTE_L2_INDEX(address)];
1372
1373 if (!IOMMU_PTE_PRESENT(*pte)) {
1374 page = (u64 *)get_zeroed_page(gfp);
1375 if (!page)
1376 return NULL;
1377 *pte = IOMMU_L2_PDE(virt_to_phys(page));
1378 }
1379
1380 pte = IOMMU_PTE_PAGE(*pte);
1381 pte = &pte[IOMMU_PTE_L1_INDEX(address)];
1382
1383 if (!IOMMU_PTE_PRESENT(*pte)) {
1384 page = (u64 *)get_zeroed_page(gfp);
1385 if (!page)
1386 return NULL;
1387 *pte = IOMMU_L1_PDE(virt_to_phys(page));
1388 }
1389
1390 pte = IOMMU_PTE_PAGE(*pte);
1391
1392 if (pte_page)
1393 *pte_page = pte;
1394
1395 pte = &pte[IOMMU_PTE_L0_INDEX(address)];
1396
1397 return pte;
1398}
1399
1400/*
1401 * This function fetches the PTE for a given address in the aperture
1402 */
1403static u64* dma_ops_get_pte(struct dma_ops_domain *dom,
1404 unsigned long address)
1405{
Joerg Roedel384de722009-05-15 12:30:05 +02001406 struct aperture_range *aperture;
Joerg Roedel8bda3092009-05-12 12:02:46 +02001407 u64 *pte, *pte_page;
1408
Joerg Roedel384de722009-05-15 12:30:05 +02001409 aperture = dom->aperture[APERTURE_RANGE_INDEX(address)];
1410 if (!aperture)
1411 return NULL;
1412
1413 pte = aperture->pte_pages[APERTURE_PAGE_INDEX(address)];
Joerg Roedel8bda3092009-05-12 12:02:46 +02001414 if (!pte) {
1415 pte = alloc_pte(&dom->domain, address, &pte_page, GFP_ATOMIC);
Joerg Roedel384de722009-05-15 12:30:05 +02001416 aperture->pte_pages[APERTURE_PAGE_INDEX(address)] = pte_page;
1417 } else
1418 pte += IOMMU_PTE_L0_INDEX(address);
Joerg Roedel8bda3092009-05-12 12:02:46 +02001419
1420 return pte;
1421}
1422
1423/*
Joerg Roedel431b2a22008-07-11 17:14:22 +02001424 * This is the generic map function. It maps one 4kb page at paddr to
1425 * the given address in the DMA address space for the domain.
1426 */
Joerg Roedelcb76c322008-06-26 21:28:00 +02001427static dma_addr_t dma_ops_domain_map(struct amd_iommu *iommu,
1428 struct dma_ops_domain *dom,
1429 unsigned long address,
1430 phys_addr_t paddr,
1431 int direction)
1432{
1433 u64 *pte, __pte;
1434
1435 WARN_ON(address > dom->aperture_size);
1436
1437 paddr &= PAGE_MASK;
1438
Joerg Roedel8bda3092009-05-12 12:02:46 +02001439 pte = dma_ops_get_pte(dom, address);
Joerg Roedel53812c12009-05-12 12:17:38 +02001440 if (!pte)
1441 return bad_dma_address;
Joerg Roedelcb76c322008-06-26 21:28:00 +02001442
1443 __pte = paddr | IOMMU_PTE_P | IOMMU_PTE_FC;
1444
1445 if (direction == DMA_TO_DEVICE)
1446 __pte |= IOMMU_PTE_IR;
1447 else if (direction == DMA_FROM_DEVICE)
1448 __pte |= IOMMU_PTE_IW;
1449 else if (direction == DMA_BIDIRECTIONAL)
1450 __pte |= IOMMU_PTE_IR | IOMMU_PTE_IW;
1451
1452 WARN_ON(*pte);
1453
1454 *pte = __pte;
1455
1456 return (dma_addr_t)address;
1457}
1458
Joerg Roedel431b2a22008-07-11 17:14:22 +02001459/*
1460 * The generic unmapping function for on page in the DMA address space.
1461 */
Joerg Roedelcb76c322008-06-26 21:28:00 +02001462static void dma_ops_domain_unmap(struct amd_iommu *iommu,
1463 struct dma_ops_domain *dom,
1464 unsigned long address)
1465{
Joerg Roedel384de722009-05-15 12:30:05 +02001466 struct aperture_range *aperture;
Joerg Roedelcb76c322008-06-26 21:28:00 +02001467 u64 *pte;
1468
1469 if (address >= dom->aperture_size)
1470 return;
1471
Joerg Roedel384de722009-05-15 12:30:05 +02001472 aperture = dom->aperture[APERTURE_RANGE_INDEX(address)];
1473 if (!aperture)
1474 return;
Joerg Roedelcb76c322008-06-26 21:28:00 +02001475
Joerg Roedel384de722009-05-15 12:30:05 +02001476 pte = aperture->pte_pages[APERTURE_PAGE_INDEX(address)];
1477 if (!pte)
1478 return;
1479
Joerg Roedelcb76c322008-06-26 21:28:00 +02001480 pte += IOMMU_PTE_L0_INDEX(address);
1481
1482 WARN_ON(!*pte);
1483
1484 *pte = 0ULL;
1485}
1486
Joerg Roedel431b2a22008-07-11 17:14:22 +02001487/*
1488 * This function contains common code for mapping of a physically
Joerg Roedel24f81162008-12-08 14:25:39 +01001489 * contiguous memory region into DMA address space. It is used by all
1490 * mapping functions provided with this IOMMU driver.
Joerg Roedel431b2a22008-07-11 17:14:22 +02001491 * Must be called with the domain lock held.
1492 */
Joerg Roedelcb76c322008-06-26 21:28:00 +02001493static dma_addr_t __map_single(struct device *dev,
1494 struct amd_iommu *iommu,
1495 struct dma_ops_domain *dma_dom,
1496 phys_addr_t paddr,
1497 size_t size,
Joerg Roedel6d4f3432008-09-04 19:18:02 +02001498 int dir,
Joerg Roedel832a90c2008-09-18 15:54:23 +02001499 bool align,
1500 u64 dma_mask)
Joerg Roedelcb76c322008-06-26 21:28:00 +02001501{
1502 dma_addr_t offset = paddr & ~PAGE_MASK;
Joerg Roedel53812c12009-05-12 12:17:38 +02001503 dma_addr_t address, start, ret;
Joerg Roedelcb76c322008-06-26 21:28:00 +02001504 unsigned int pages;
Joerg Roedel6d4f3432008-09-04 19:18:02 +02001505 unsigned long align_mask = 0;
Joerg Roedelcb76c322008-06-26 21:28:00 +02001506 int i;
1507
Joerg Roedele3c449f2008-10-15 22:02:11 -07001508 pages = iommu_num_pages(paddr, size, PAGE_SIZE);
Joerg Roedelcb76c322008-06-26 21:28:00 +02001509 paddr &= PAGE_MASK;
1510
Joerg Roedel8ecaf8f2008-12-12 16:13:04 +01001511 INC_STATS_COUNTER(total_map_requests);
1512
Joerg Roedelc1858972008-12-12 15:42:39 +01001513 if (pages > 1)
1514 INC_STATS_COUNTER(cross_page);
1515
Joerg Roedel6d4f3432008-09-04 19:18:02 +02001516 if (align)
1517 align_mask = (1UL << get_order(size)) - 1;
1518
Joerg Roedel11b83882009-05-19 10:23:15 +02001519retry:
Joerg Roedel832a90c2008-09-18 15:54:23 +02001520 address = dma_ops_alloc_addresses(dev, dma_dom, pages, align_mask,
1521 dma_mask);
Joerg Roedel11b83882009-05-19 10:23:15 +02001522 if (unlikely(address == bad_dma_address)) {
1523 /*
1524 * setting next_address here will let the address
1525 * allocator only scan the new allocated range in the
1526 * first run. This is a small optimization.
1527 */
1528 dma_dom->next_address = dma_dom->aperture_size;
1529
1530 if (alloc_new_range(iommu, dma_dom, false, GFP_ATOMIC))
1531 goto out;
1532
1533 /*
1534 * aperture was sucessfully enlarged by 128 MB, try
1535 * allocation again
1536 */
1537 goto retry;
1538 }
Joerg Roedelcb76c322008-06-26 21:28:00 +02001539
1540 start = address;
1541 for (i = 0; i < pages; ++i) {
Joerg Roedel53812c12009-05-12 12:17:38 +02001542 ret = dma_ops_domain_map(iommu, dma_dom, start, paddr, dir);
1543 if (ret == bad_dma_address)
1544 goto out_unmap;
1545
Joerg Roedelcb76c322008-06-26 21:28:00 +02001546 paddr += PAGE_SIZE;
1547 start += PAGE_SIZE;
1548 }
1549 address += offset;
1550
Joerg Roedel5774f7c2008-12-12 15:57:30 +01001551 ADD_STATS_COUNTER(alloced_io_mem, size);
1552
FUJITA Tomonoriafa9fdc2008-09-20 01:23:30 +09001553 if (unlikely(dma_dom->need_flush && !amd_iommu_unmap_flush)) {
Joerg Roedel1c655772008-09-04 18:40:05 +02001554 iommu_flush_tlb(iommu, dma_dom->domain.id);
1555 dma_dom->need_flush = false;
1556 } else if (unlikely(iommu_has_npcache(iommu)))
Joerg Roedel270cab242008-09-04 15:49:46 +02001557 iommu_flush_pages(iommu, dma_dom->domain.id, address, size);
1558
Joerg Roedelcb76c322008-06-26 21:28:00 +02001559out:
1560 return address;
Joerg Roedel53812c12009-05-12 12:17:38 +02001561
1562out_unmap:
1563
1564 for (--i; i >= 0; --i) {
1565 start -= PAGE_SIZE;
1566 dma_ops_domain_unmap(iommu, dma_dom, start);
1567 }
1568
1569 dma_ops_free_addresses(dma_dom, address, pages);
1570
1571 return bad_dma_address;
Joerg Roedelcb76c322008-06-26 21:28:00 +02001572}
1573
Joerg Roedel431b2a22008-07-11 17:14:22 +02001574/*
1575 * Does the reverse of the __map_single function. Must be called with
1576 * the domain lock held too
1577 */
Joerg Roedelcb76c322008-06-26 21:28:00 +02001578static void __unmap_single(struct amd_iommu *iommu,
1579 struct dma_ops_domain *dma_dom,
1580 dma_addr_t dma_addr,
1581 size_t size,
1582 int dir)
1583{
1584 dma_addr_t i, start;
1585 unsigned int pages;
1586
Joerg Roedelb8d99052008-12-08 14:40:26 +01001587 if ((dma_addr == bad_dma_address) ||
1588 (dma_addr + size > dma_dom->aperture_size))
Joerg Roedelcb76c322008-06-26 21:28:00 +02001589 return;
1590
Joerg Roedele3c449f2008-10-15 22:02:11 -07001591 pages = iommu_num_pages(dma_addr, size, PAGE_SIZE);
Joerg Roedelcb76c322008-06-26 21:28:00 +02001592 dma_addr &= PAGE_MASK;
1593 start = dma_addr;
1594
1595 for (i = 0; i < pages; ++i) {
1596 dma_ops_domain_unmap(iommu, dma_dom, start);
1597 start += PAGE_SIZE;
1598 }
1599
Joerg Roedel5774f7c2008-12-12 15:57:30 +01001600 SUB_STATS_COUNTER(alloced_io_mem, size);
1601
Joerg Roedelcb76c322008-06-26 21:28:00 +02001602 dma_ops_free_addresses(dma_dom, dma_addr, pages);
Joerg Roedel270cab242008-09-04 15:49:46 +02001603
Joerg Roedel80be3082008-11-06 14:59:05 +01001604 if (amd_iommu_unmap_flush || dma_dom->need_flush) {
Joerg Roedel1c655772008-09-04 18:40:05 +02001605 iommu_flush_pages(iommu, dma_dom->domain.id, dma_addr, size);
Joerg Roedel80be3082008-11-06 14:59:05 +01001606 dma_dom->need_flush = false;
1607 }
Joerg Roedelcb76c322008-06-26 21:28:00 +02001608}
1609
Joerg Roedel431b2a22008-07-11 17:14:22 +02001610/*
1611 * The exported map_single function for dma_ops.
1612 */
FUJITA Tomonori51491362009-01-05 23:47:25 +09001613static dma_addr_t map_page(struct device *dev, struct page *page,
1614 unsigned long offset, size_t size,
1615 enum dma_data_direction dir,
1616 struct dma_attrs *attrs)
Joerg Roedel4da70b92008-06-26 21:28:01 +02001617{
1618 unsigned long flags;
1619 struct amd_iommu *iommu;
1620 struct protection_domain *domain;
1621 u16 devid;
1622 dma_addr_t addr;
Joerg Roedel832a90c2008-09-18 15:54:23 +02001623 u64 dma_mask;
FUJITA Tomonori51491362009-01-05 23:47:25 +09001624 phys_addr_t paddr = page_to_phys(page) + offset;
Joerg Roedel4da70b92008-06-26 21:28:01 +02001625
Joerg Roedel0f2a86f2008-12-12 15:05:16 +01001626 INC_STATS_COUNTER(cnt_map_single);
1627
Joerg Roedeldbcc1122008-09-04 15:04:26 +02001628 if (!check_device(dev))
1629 return bad_dma_address;
1630
Joerg Roedel832a90c2008-09-18 15:54:23 +02001631 dma_mask = *dev->dma_mask;
Joerg Roedel4da70b92008-06-26 21:28:01 +02001632
1633 get_device_resources(dev, &iommu, &domain, &devid);
1634
1635 if (iommu == NULL || domain == NULL)
Joerg Roedel431b2a22008-07-11 17:14:22 +02001636 /* device not handled by any AMD IOMMU */
Joerg Roedel4da70b92008-06-26 21:28:01 +02001637 return (dma_addr_t)paddr;
1638
Joerg Roedel5b28df62008-12-02 17:49:42 +01001639 if (!dma_ops_domain(domain))
1640 return bad_dma_address;
1641
Joerg Roedel4da70b92008-06-26 21:28:01 +02001642 spin_lock_irqsave(&domain->lock, flags);
Joerg Roedel832a90c2008-09-18 15:54:23 +02001643 addr = __map_single(dev, iommu, domain->priv, paddr, size, dir, false,
1644 dma_mask);
Joerg Roedel4da70b92008-06-26 21:28:01 +02001645 if (addr == bad_dma_address)
1646 goto out;
1647
Joerg Roedel09ee17e2008-12-03 12:19:27 +01001648 iommu_completion_wait(iommu);
Joerg Roedel4da70b92008-06-26 21:28:01 +02001649
1650out:
1651 spin_unlock_irqrestore(&domain->lock, flags);
1652
1653 return addr;
1654}
1655
Joerg Roedel431b2a22008-07-11 17:14:22 +02001656/*
1657 * The exported unmap_single function for dma_ops.
1658 */
FUJITA Tomonori51491362009-01-05 23:47:25 +09001659static void unmap_page(struct device *dev, dma_addr_t dma_addr, size_t size,
1660 enum dma_data_direction dir, struct dma_attrs *attrs)
Joerg Roedel4da70b92008-06-26 21:28:01 +02001661{
1662 unsigned long flags;
1663 struct amd_iommu *iommu;
1664 struct protection_domain *domain;
1665 u16 devid;
1666
Joerg Roedel146a6912008-12-12 15:07:12 +01001667 INC_STATS_COUNTER(cnt_unmap_single);
1668
Joerg Roedeldbcc1122008-09-04 15:04:26 +02001669 if (!check_device(dev) ||
1670 !get_device_resources(dev, &iommu, &domain, &devid))
Joerg Roedel431b2a22008-07-11 17:14:22 +02001671 /* device not handled by any AMD IOMMU */
Joerg Roedel4da70b92008-06-26 21:28:01 +02001672 return;
1673
Joerg Roedel5b28df62008-12-02 17:49:42 +01001674 if (!dma_ops_domain(domain))
1675 return;
1676
Joerg Roedel4da70b92008-06-26 21:28:01 +02001677 spin_lock_irqsave(&domain->lock, flags);
1678
1679 __unmap_single(iommu, domain->priv, dma_addr, size, dir);
1680
Joerg Roedel09ee17e2008-12-03 12:19:27 +01001681 iommu_completion_wait(iommu);
Joerg Roedel4da70b92008-06-26 21:28:01 +02001682
1683 spin_unlock_irqrestore(&domain->lock, flags);
1684}
1685
Joerg Roedel431b2a22008-07-11 17:14:22 +02001686/*
1687 * This is a special map_sg function which is used if we should map a
1688 * device which is not handled by an AMD IOMMU in the system.
1689 */
Joerg Roedel65b050a2008-06-26 21:28:02 +02001690static int map_sg_no_iommu(struct device *dev, struct scatterlist *sglist,
1691 int nelems, int dir)
1692{
1693 struct scatterlist *s;
1694 int i;
1695
1696 for_each_sg(sglist, s, nelems, i) {
1697 s->dma_address = (dma_addr_t)sg_phys(s);
1698 s->dma_length = s->length;
1699 }
1700
1701 return nelems;
1702}
1703
Joerg Roedel431b2a22008-07-11 17:14:22 +02001704/*
1705 * The exported map_sg function for dma_ops (handles scatter-gather
1706 * lists).
1707 */
Joerg Roedel65b050a2008-06-26 21:28:02 +02001708static int map_sg(struct device *dev, struct scatterlist *sglist,
FUJITA Tomonori160c1d82009-01-05 23:59:02 +09001709 int nelems, enum dma_data_direction dir,
1710 struct dma_attrs *attrs)
Joerg Roedel65b050a2008-06-26 21:28:02 +02001711{
1712 unsigned long flags;
1713 struct amd_iommu *iommu;
1714 struct protection_domain *domain;
1715 u16 devid;
1716 int i;
1717 struct scatterlist *s;
1718 phys_addr_t paddr;
1719 int mapped_elems = 0;
Joerg Roedel832a90c2008-09-18 15:54:23 +02001720 u64 dma_mask;
Joerg Roedel65b050a2008-06-26 21:28:02 +02001721
Joerg Roedeld03f0672008-12-12 15:09:48 +01001722 INC_STATS_COUNTER(cnt_map_sg);
1723
Joerg Roedeldbcc1122008-09-04 15:04:26 +02001724 if (!check_device(dev))
1725 return 0;
1726
Joerg Roedel832a90c2008-09-18 15:54:23 +02001727 dma_mask = *dev->dma_mask;
Joerg Roedel65b050a2008-06-26 21:28:02 +02001728
1729 get_device_resources(dev, &iommu, &domain, &devid);
1730
1731 if (!iommu || !domain)
1732 return map_sg_no_iommu(dev, sglist, nelems, dir);
1733
Joerg Roedel5b28df62008-12-02 17:49:42 +01001734 if (!dma_ops_domain(domain))
1735 return 0;
1736
Joerg Roedel65b050a2008-06-26 21:28:02 +02001737 spin_lock_irqsave(&domain->lock, flags);
1738
1739 for_each_sg(sglist, s, nelems, i) {
1740 paddr = sg_phys(s);
1741
1742 s->dma_address = __map_single(dev, iommu, domain->priv,
Joerg Roedel832a90c2008-09-18 15:54:23 +02001743 paddr, s->length, dir, false,
1744 dma_mask);
Joerg Roedel65b050a2008-06-26 21:28:02 +02001745
1746 if (s->dma_address) {
1747 s->dma_length = s->length;
1748 mapped_elems++;
1749 } else
1750 goto unmap;
Joerg Roedel65b050a2008-06-26 21:28:02 +02001751 }
1752
Joerg Roedel09ee17e2008-12-03 12:19:27 +01001753 iommu_completion_wait(iommu);
Joerg Roedel65b050a2008-06-26 21:28:02 +02001754
1755out:
1756 spin_unlock_irqrestore(&domain->lock, flags);
1757
1758 return mapped_elems;
1759unmap:
1760 for_each_sg(sglist, s, mapped_elems, i) {
1761 if (s->dma_address)
1762 __unmap_single(iommu, domain->priv, s->dma_address,
1763 s->dma_length, dir);
1764 s->dma_address = s->dma_length = 0;
1765 }
1766
1767 mapped_elems = 0;
1768
1769 goto out;
1770}
1771
Joerg Roedel431b2a22008-07-11 17:14:22 +02001772/*
1773 * The exported map_sg function for dma_ops (handles scatter-gather
1774 * lists).
1775 */
Joerg Roedel65b050a2008-06-26 21:28:02 +02001776static void unmap_sg(struct device *dev, struct scatterlist *sglist,
FUJITA Tomonori160c1d82009-01-05 23:59:02 +09001777 int nelems, enum dma_data_direction dir,
1778 struct dma_attrs *attrs)
Joerg Roedel65b050a2008-06-26 21:28:02 +02001779{
1780 unsigned long flags;
1781 struct amd_iommu *iommu;
1782 struct protection_domain *domain;
1783 struct scatterlist *s;
1784 u16 devid;
1785 int i;
1786
Joerg Roedel55877a62008-12-12 15:12:14 +01001787 INC_STATS_COUNTER(cnt_unmap_sg);
1788
Joerg Roedeldbcc1122008-09-04 15:04:26 +02001789 if (!check_device(dev) ||
1790 !get_device_resources(dev, &iommu, &domain, &devid))
Joerg Roedel65b050a2008-06-26 21:28:02 +02001791 return;
1792
Joerg Roedel5b28df62008-12-02 17:49:42 +01001793 if (!dma_ops_domain(domain))
1794 return;
1795
Joerg Roedel65b050a2008-06-26 21:28:02 +02001796 spin_lock_irqsave(&domain->lock, flags);
1797
1798 for_each_sg(sglist, s, nelems, i) {
1799 __unmap_single(iommu, domain->priv, s->dma_address,
1800 s->dma_length, dir);
Joerg Roedel65b050a2008-06-26 21:28:02 +02001801 s->dma_address = s->dma_length = 0;
1802 }
1803
Joerg Roedel09ee17e2008-12-03 12:19:27 +01001804 iommu_completion_wait(iommu);
Joerg Roedel65b050a2008-06-26 21:28:02 +02001805
1806 spin_unlock_irqrestore(&domain->lock, flags);
1807}
1808
Joerg Roedel431b2a22008-07-11 17:14:22 +02001809/*
1810 * The exported alloc_coherent function for dma_ops.
1811 */
Joerg Roedel5d8b53cf32008-06-26 21:28:03 +02001812static void *alloc_coherent(struct device *dev, size_t size,
1813 dma_addr_t *dma_addr, gfp_t flag)
1814{
1815 unsigned long flags;
1816 void *virt_addr;
1817 struct amd_iommu *iommu;
1818 struct protection_domain *domain;
1819 u16 devid;
1820 phys_addr_t paddr;
Joerg Roedel832a90c2008-09-18 15:54:23 +02001821 u64 dma_mask = dev->coherent_dma_mask;
Joerg Roedel5d8b53cf32008-06-26 21:28:03 +02001822
Joerg Roedelc8f0fb32008-12-12 15:14:21 +01001823 INC_STATS_COUNTER(cnt_alloc_coherent);
1824
Joerg Roedeldbcc1122008-09-04 15:04:26 +02001825 if (!check_device(dev))
1826 return NULL;
1827
FUJITA Tomonori13d9fea2008-09-10 20:19:40 +09001828 if (!get_device_resources(dev, &iommu, &domain, &devid))
1829 flag &= ~(__GFP_DMA | __GFP_HIGHMEM | __GFP_DMA32);
1830
Joerg Roedelc97ac532008-09-11 10:59:15 +02001831 flag |= __GFP_ZERO;
Joerg Roedel5d8b53cf32008-06-26 21:28:03 +02001832 virt_addr = (void *)__get_free_pages(flag, get_order(size));
1833 if (!virt_addr)
Jaswinder Singh Rajputb25ae672009-07-01 19:53:14 +05301834 return NULL;
Joerg Roedel5d8b53cf32008-06-26 21:28:03 +02001835
Joerg Roedel5d8b53cf32008-06-26 21:28:03 +02001836 paddr = virt_to_phys(virt_addr);
1837
Joerg Roedel5d8b53cf32008-06-26 21:28:03 +02001838 if (!iommu || !domain) {
1839 *dma_addr = (dma_addr_t)paddr;
1840 return virt_addr;
1841 }
1842
Joerg Roedel5b28df62008-12-02 17:49:42 +01001843 if (!dma_ops_domain(domain))
1844 goto out_free;
1845
Joerg Roedel832a90c2008-09-18 15:54:23 +02001846 if (!dma_mask)
1847 dma_mask = *dev->dma_mask;
1848
Joerg Roedel5d8b53cf32008-06-26 21:28:03 +02001849 spin_lock_irqsave(&domain->lock, flags);
1850
1851 *dma_addr = __map_single(dev, iommu, domain->priv, paddr,
Joerg Roedel832a90c2008-09-18 15:54:23 +02001852 size, DMA_BIDIRECTIONAL, true, dma_mask);
Joerg Roedel5d8b53cf32008-06-26 21:28:03 +02001853
Jiri Slaby367d04c2009-05-28 09:54:48 +02001854 if (*dma_addr == bad_dma_address) {
1855 spin_unlock_irqrestore(&domain->lock, flags);
Joerg Roedel5b28df62008-12-02 17:49:42 +01001856 goto out_free;
Jiri Slaby367d04c2009-05-28 09:54:48 +02001857 }
Joerg Roedel5d8b53cf32008-06-26 21:28:03 +02001858
Joerg Roedel09ee17e2008-12-03 12:19:27 +01001859 iommu_completion_wait(iommu);
Joerg Roedel5d8b53cf32008-06-26 21:28:03 +02001860
Joerg Roedel5d8b53cf32008-06-26 21:28:03 +02001861 spin_unlock_irqrestore(&domain->lock, flags);
1862
1863 return virt_addr;
Joerg Roedel5b28df62008-12-02 17:49:42 +01001864
1865out_free:
1866
1867 free_pages((unsigned long)virt_addr, get_order(size));
1868
1869 return NULL;
Joerg Roedel5d8b53cf32008-06-26 21:28:03 +02001870}
1871
Joerg Roedel431b2a22008-07-11 17:14:22 +02001872/*
1873 * The exported free_coherent function for dma_ops.
Joerg Roedel431b2a22008-07-11 17:14:22 +02001874 */
Joerg Roedel5d8b53cf32008-06-26 21:28:03 +02001875static void free_coherent(struct device *dev, size_t size,
1876 void *virt_addr, dma_addr_t dma_addr)
1877{
1878 unsigned long flags;
1879 struct amd_iommu *iommu;
1880 struct protection_domain *domain;
1881 u16 devid;
1882
Joerg Roedel5d31ee72008-12-12 15:16:38 +01001883 INC_STATS_COUNTER(cnt_free_coherent);
1884
Joerg Roedeldbcc1122008-09-04 15:04:26 +02001885 if (!check_device(dev))
1886 return;
1887
Joerg Roedel5d8b53cf32008-06-26 21:28:03 +02001888 get_device_resources(dev, &iommu, &domain, &devid);
1889
1890 if (!iommu || !domain)
1891 goto free_mem;
1892
Joerg Roedel5b28df62008-12-02 17:49:42 +01001893 if (!dma_ops_domain(domain))
1894 goto free_mem;
1895
Joerg Roedel5d8b53cf32008-06-26 21:28:03 +02001896 spin_lock_irqsave(&domain->lock, flags);
1897
1898 __unmap_single(iommu, domain->priv, dma_addr, size, DMA_BIDIRECTIONAL);
Joerg Roedel5d8b53cf32008-06-26 21:28:03 +02001899
Joerg Roedel09ee17e2008-12-03 12:19:27 +01001900 iommu_completion_wait(iommu);
Joerg Roedel5d8b53cf32008-06-26 21:28:03 +02001901
1902 spin_unlock_irqrestore(&domain->lock, flags);
1903
1904free_mem:
1905 free_pages((unsigned long)virt_addr, get_order(size));
1906}
1907
Joerg Roedelc432f3d2008-06-26 21:28:04 +02001908/*
Joerg Roedelb39ba6a2008-09-09 18:40:46 +02001909 * This function is called by the DMA layer to find out if we can handle a
1910 * particular device. It is part of the dma_ops.
1911 */
1912static int amd_iommu_dma_supported(struct device *dev, u64 mask)
1913{
1914 u16 bdf;
1915 struct pci_dev *pcidev;
1916
1917 /* No device or no PCI device */
1918 if (!dev || dev->bus != &pci_bus_type)
1919 return 0;
1920
1921 pcidev = to_pci_dev(dev);
1922
1923 bdf = calc_devid(pcidev->bus->number, pcidev->devfn);
1924
1925 /* Out of our scope? */
1926 if (bdf > amd_iommu_last_bdf)
1927 return 0;
1928
1929 return 1;
1930}
1931
1932/*
Joerg Roedel431b2a22008-07-11 17:14:22 +02001933 * The function for pre-allocating protection domains.
1934 *
Joerg Roedelc432f3d2008-06-26 21:28:04 +02001935 * If the driver core informs the DMA layer if a driver grabs a device
1936 * we don't need to preallocate the protection domains anymore.
1937 * For now we have to.
1938 */
Jaswinder Singh Rajput0e93dd82008-12-29 21:45:22 +05301939static void prealloc_protection_domains(void)
Joerg Roedelc432f3d2008-06-26 21:28:04 +02001940{
1941 struct pci_dev *dev = NULL;
1942 struct dma_ops_domain *dma_dom;
1943 struct amd_iommu *iommu;
Joerg Roedelc432f3d2008-06-26 21:28:04 +02001944 u16 devid;
1945
1946 while ((dev = pci_get_device(PCI_ANY_ID, PCI_ANY_ID, dev)) != NULL) {
Joerg Roedeledcb34d2008-12-10 20:01:45 +01001947 devid = calc_devid(dev->bus->number, dev->devfn);
Joerg Roedel3a61ec32008-07-25 13:07:50 +02001948 if (devid > amd_iommu_last_bdf)
Joerg Roedelc432f3d2008-06-26 21:28:04 +02001949 continue;
1950 devid = amd_iommu_alias_table[devid];
1951 if (domain_for_device(devid))
1952 continue;
1953 iommu = amd_iommu_rlookup_table[devid];
1954 if (!iommu)
1955 continue;
Joerg Roedeld9cfed92009-05-19 12:16:29 +02001956 dma_dom = dma_ops_domain_alloc(iommu);
Joerg Roedelc432f3d2008-06-26 21:28:04 +02001957 if (!dma_dom)
1958 continue;
1959 init_unity_mappings_for_device(dma_dom, devid);
Joerg Roedelbd60b732008-09-11 10:24:48 +02001960 dma_dom->target_dev = devid;
1961
1962 list_add_tail(&dma_dom->list, &iommu_pd_list);
Joerg Roedelc432f3d2008-06-26 21:28:04 +02001963 }
1964}
1965
FUJITA Tomonori160c1d82009-01-05 23:59:02 +09001966static struct dma_map_ops amd_iommu_dma_ops = {
Joerg Roedel6631ee92008-06-26 21:28:05 +02001967 .alloc_coherent = alloc_coherent,
1968 .free_coherent = free_coherent,
FUJITA Tomonori51491362009-01-05 23:47:25 +09001969 .map_page = map_page,
1970 .unmap_page = unmap_page,
Joerg Roedel6631ee92008-06-26 21:28:05 +02001971 .map_sg = map_sg,
1972 .unmap_sg = unmap_sg,
Joerg Roedelb39ba6a2008-09-09 18:40:46 +02001973 .dma_supported = amd_iommu_dma_supported,
Joerg Roedel6631ee92008-06-26 21:28:05 +02001974};
1975
Joerg Roedel431b2a22008-07-11 17:14:22 +02001976/*
1977 * The function which clues the AMD IOMMU driver into dma_ops.
1978 */
Joerg Roedel6631ee92008-06-26 21:28:05 +02001979int __init amd_iommu_init_dma_ops(void)
1980{
1981 struct amd_iommu *iommu;
Joerg Roedel6631ee92008-06-26 21:28:05 +02001982 int ret;
1983
Joerg Roedel431b2a22008-07-11 17:14:22 +02001984 /*
1985 * first allocate a default protection domain for every IOMMU we
1986 * found in the system. Devices not assigned to any other
1987 * protection domain will be assigned to the default one.
1988 */
Joerg Roedel3bd22172009-05-04 15:06:20 +02001989 for_each_iommu(iommu) {
Joerg Roedeld9cfed92009-05-19 12:16:29 +02001990 iommu->default_dom = dma_ops_domain_alloc(iommu);
Joerg Roedel6631ee92008-06-26 21:28:05 +02001991 if (iommu->default_dom == NULL)
1992 return -ENOMEM;
Joerg Roedele2dc14a2008-12-10 18:48:59 +01001993 iommu->default_dom->domain.flags |= PD_DEFAULT_MASK;
Joerg Roedel6631ee92008-06-26 21:28:05 +02001994 ret = iommu_init_unity_mappings(iommu);
1995 if (ret)
1996 goto free_domains;
1997 }
1998
Joerg Roedel431b2a22008-07-11 17:14:22 +02001999 /*
2000 * If device isolation is enabled, pre-allocate the protection
2001 * domains for each device.
2002 */
Joerg Roedel6631ee92008-06-26 21:28:05 +02002003 if (amd_iommu_isolate)
2004 prealloc_protection_domains();
2005
2006 iommu_detected = 1;
2007 force_iommu = 1;
2008 bad_dma_address = 0;
Ingo Molnar92af4e22008-06-27 10:48:16 +02002009#ifdef CONFIG_GART_IOMMU
Joerg Roedel6631ee92008-06-26 21:28:05 +02002010 gart_iommu_aperture_disabled = 1;
2011 gart_iommu_aperture = 0;
Ingo Molnar92af4e22008-06-27 10:48:16 +02002012#endif
Joerg Roedel6631ee92008-06-26 21:28:05 +02002013
Joerg Roedel431b2a22008-07-11 17:14:22 +02002014 /* Make the driver finally visible to the drivers */
Joerg Roedel6631ee92008-06-26 21:28:05 +02002015 dma_ops = &amd_iommu_dma_ops;
2016
Joerg Roedel26961ef2008-12-03 17:00:17 +01002017 register_iommu(&amd_iommu_ops);
Joerg Roedel26961ef2008-12-03 17:00:17 +01002018
Joerg Roedele275a2a2008-12-10 18:27:25 +01002019 bus_register_notifier(&pci_bus_type, &device_nb);
2020
Joerg Roedel7f265082008-12-12 13:50:21 +01002021 amd_iommu_stats_init();
2022
Joerg Roedel6631ee92008-06-26 21:28:05 +02002023 return 0;
2024
2025free_domains:
2026
Joerg Roedel3bd22172009-05-04 15:06:20 +02002027 for_each_iommu(iommu) {
Joerg Roedel6631ee92008-06-26 21:28:05 +02002028 if (iommu->default_dom)
2029 dma_ops_domain_free(iommu->default_dom);
2030 }
2031
2032 return ret;
2033}
Joerg Roedel6d98cd82008-12-08 12:05:55 +01002034
2035/*****************************************************************************
2036 *
2037 * The following functions belong to the exported interface of AMD IOMMU
2038 *
2039 * This interface allows access to lower level functions of the IOMMU
2040 * like protection domain handling and assignement of devices to domains
2041 * which is not possible with the dma_ops interface.
2042 *
2043 *****************************************************************************/
2044
Joerg Roedel6d98cd82008-12-08 12:05:55 +01002045static void cleanup_domain(struct protection_domain *domain)
2046{
2047 unsigned long flags;
2048 u16 devid;
2049
2050 write_lock_irqsave(&amd_iommu_devtable_lock, flags);
2051
2052 for (devid = 0; devid <= amd_iommu_last_bdf; ++devid)
2053 if (amd_iommu_pd_table[devid] == domain)
2054 __detach_device(domain, devid);
2055
2056 write_unlock_irqrestore(&amd_iommu_devtable_lock, flags);
2057}
2058
Joerg Roedelc156e342008-12-02 18:13:27 +01002059static int amd_iommu_domain_init(struct iommu_domain *dom)
2060{
2061 struct protection_domain *domain;
2062
2063 domain = kzalloc(sizeof(*domain), GFP_KERNEL);
2064 if (!domain)
2065 return -ENOMEM;
2066
2067 spin_lock_init(&domain->lock);
2068 domain->mode = PAGE_MODE_3_LEVEL;
2069 domain->id = domain_id_alloc();
2070 if (!domain->id)
2071 goto out_free;
2072 domain->pt_root = (void *)get_zeroed_page(GFP_KERNEL);
2073 if (!domain->pt_root)
2074 goto out_free;
2075
2076 dom->priv = domain;
2077
2078 return 0;
2079
2080out_free:
2081 kfree(domain);
2082
2083 return -ENOMEM;
2084}
2085
Joerg Roedel98383fc2008-12-02 18:34:12 +01002086static void amd_iommu_domain_destroy(struct iommu_domain *dom)
2087{
2088 struct protection_domain *domain = dom->priv;
2089
2090 if (!domain)
2091 return;
2092
2093 if (domain->dev_cnt > 0)
2094 cleanup_domain(domain);
2095
2096 BUG_ON(domain->dev_cnt != 0);
2097
2098 free_pagetable(domain);
2099
2100 domain_id_free(domain->id);
2101
2102 kfree(domain);
2103
2104 dom->priv = NULL;
2105}
2106
Joerg Roedel684f2882008-12-08 12:07:44 +01002107static void amd_iommu_detach_device(struct iommu_domain *dom,
2108 struct device *dev)
2109{
2110 struct protection_domain *domain = dom->priv;
2111 struct amd_iommu *iommu;
2112 struct pci_dev *pdev;
2113 u16 devid;
2114
2115 if (dev->bus != &pci_bus_type)
2116 return;
2117
2118 pdev = to_pci_dev(dev);
2119
2120 devid = calc_devid(pdev->bus->number, pdev->devfn);
2121
2122 if (devid > 0)
2123 detach_device(domain, devid);
2124
2125 iommu = amd_iommu_rlookup_table[devid];
2126 if (!iommu)
2127 return;
2128
2129 iommu_queue_inv_dev_entry(iommu, devid);
2130 iommu_completion_wait(iommu);
2131}
2132
Joerg Roedel01106062008-12-02 19:34:11 +01002133static int amd_iommu_attach_device(struct iommu_domain *dom,
2134 struct device *dev)
2135{
2136 struct protection_domain *domain = dom->priv;
2137 struct protection_domain *old_domain;
2138 struct amd_iommu *iommu;
2139 struct pci_dev *pdev;
2140 u16 devid;
2141
2142 if (dev->bus != &pci_bus_type)
2143 return -EINVAL;
2144
2145 pdev = to_pci_dev(dev);
2146
2147 devid = calc_devid(pdev->bus->number, pdev->devfn);
2148
2149 if (devid >= amd_iommu_last_bdf ||
2150 devid != amd_iommu_alias_table[devid])
2151 return -EINVAL;
2152
2153 iommu = amd_iommu_rlookup_table[devid];
2154 if (!iommu)
2155 return -EINVAL;
2156
2157 old_domain = domain_for_device(devid);
2158 if (old_domain)
Joerg Roedel71ff3bc2009-06-08 13:47:33 -07002159 detach_device(old_domain, devid);
Joerg Roedel01106062008-12-02 19:34:11 +01002160
2161 attach_device(iommu, domain, devid);
2162
2163 iommu_completion_wait(iommu);
2164
2165 return 0;
2166}
2167
Joerg Roedelc6229ca2008-12-02 19:48:43 +01002168static int amd_iommu_map_range(struct iommu_domain *dom,
2169 unsigned long iova, phys_addr_t paddr,
2170 size_t size, int iommu_prot)
2171{
2172 struct protection_domain *domain = dom->priv;
2173 unsigned long i, npages = iommu_num_pages(paddr, size, PAGE_SIZE);
2174 int prot = 0;
2175 int ret;
2176
2177 if (iommu_prot & IOMMU_READ)
2178 prot |= IOMMU_PROT_IR;
2179 if (iommu_prot & IOMMU_WRITE)
2180 prot |= IOMMU_PROT_IW;
2181
2182 iova &= PAGE_MASK;
2183 paddr &= PAGE_MASK;
2184
2185 for (i = 0; i < npages; ++i) {
2186 ret = iommu_map_page(domain, iova, paddr, prot);
2187 if (ret)
2188 return ret;
2189
2190 iova += PAGE_SIZE;
2191 paddr += PAGE_SIZE;
2192 }
2193
2194 return 0;
2195}
2196
Joerg Roedeleb74ff62008-12-02 19:59:10 +01002197static void amd_iommu_unmap_range(struct iommu_domain *dom,
2198 unsigned long iova, size_t size)
2199{
2200
2201 struct protection_domain *domain = dom->priv;
2202 unsigned long i, npages = iommu_num_pages(iova, size, PAGE_SIZE);
2203
2204 iova &= PAGE_MASK;
2205
2206 for (i = 0; i < npages; ++i) {
2207 iommu_unmap_page(domain, iova);
2208 iova += PAGE_SIZE;
2209 }
2210
2211 iommu_flush_domain(domain->id);
2212}
2213
Joerg Roedel645c4c82008-12-02 20:05:50 +01002214static phys_addr_t amd_iommu_iova_to_phys(struct iommu_domain *dom,
2215 unsigned long iova)
2216{
2217 struct protection_domain *domain = dom->priv;
2218 unsigned long offset = iova & ~PAGE_MASK;
2219 phys_addr_t paddr;
2220 u64 *pte;
2221
2222 pte = &domain->pt_root[IOMMU_PTE_L2_INDEX(iova)];
2223
2224 if (!IOMMU_PTE_PRESENT(*pte))
2225 return 0;
2226
2227 pte = IOMMU_PTE_PAGE(*pte);
2228 pte = &pte[IOMMU_PTE_L1_INDEX(iova)];
2229
2230 if (!IOMMU_PTE_PRESENT(*pte))
2231 return 0;
2232
2233 pte = IOMMU_PTE_PAGE(*pte);
2234 pte = &pte[IOMMU_PTE_L0_INDEX(iova)];
2235
2236 if (!IOMMU_PTE_PRESENT(*pte))
2237 return 0;
2238
2239 paddr = *pte & IOMMU_PAGE_MASK;
2240 paddr |= offset;
2241
2242 return paddr;
2243}
2244
Sheng Yangdbb9fd82009-03-18 15:33:06 +08002245static int amd_iommu_domain_has_cap(struct iommu_domain *domain,
2246 unsigned long cap)
2247{
2248 return 0;
2249}
2250
Joerg Roedel26961ef2008-12-03 17:00:17 +01002251static struct iommu_ops amd_iommu_ops = {
2252 .domain_init = amd_iommu_domain_init,
2253 .domain_destroy = amd_iommu_domain_destroy,
2254 .attach_dev = amd_iommu_attach_device,
2255 .detach_dev = amd_iommu_detach_device,
2256 .map = amd_iommu_map_range,
2257 .unmap = amd_iommu_unmap_range,
2258 .iova_to_phys = amd_iommu_iova_to_phys,
Sheng Yangdbb9fd82009-03-18 15:33:06 +08002259 .domain_has_cap = amd_iommu_domain_has_cap,
Joerg Roedel26961ef2008-12-03 17:00:17 +01002260};
2261