blob: cfca80bfe75fb0ba1c339bfb9f6a834fe229dcdf [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 Roedeld03f067a2008-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 Roedeld03f067a2008-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 Roedel6a1eddd2009-09-03 15:15:10 +0200321 if (unlikely(i == EXIT_LOOP_COUNT)) {
322 spin_unlock(&iommu->lock);
323 reset_iommu_command_buffer(iommu);
324 spin_lock(&iommu->lock);
325 }
Joerg Roedel8d201962008-12-02 20:34:41 +0100326}
327
328/*
329 * This function queues a completion wait command into the command
330 * buffer of an IOMMU
331 */
332static int __iommu_completion_wait(struct amd_iommu *iommu)
333{
334 struct iommu_cmd cmd;
335
336 memset(&cmd, 0, sizeof(cmd));
337 cmd.data[0] = CMD_COMPL_WAIT_INT_MASK;
338 CMD_SET_TYPE(&cmd, CMD_COMPL_WAIT);
339
340 return __iommu_queue_command(iommu, &cmd);
341}
342
343/*
344 * This function is called whenever we need to ensure that the IOMMU has
345 * completed execution of all commands we sent. It sends a
346 * COMPLETION_WAIT command and waits for it to finish. The IOMMU informs
347 * us about that by writing a value to a physical address we pass with
348 * the command.
349 */
350static int iommu_completion_wait(struct amd_iommu *iommu)
351{
352 int ret = 0;
353 unsigned long flags;
354
355 spin_lock_irqsave(&iommu->lock, flags);
356
357 if (!iommu->need_sync)
358 goto out;
359
360 ret = __iommu_completion_wait(iommu);
361
Joerg Roedel0cfd7aa2008-12-10 19:58:00 +0100362 iommu->need_sync = false;
Joerg Roedel8d201962008-12-02 20:34:41 +0100363
364 if (ret)
365 goto out;
366
367 __iommu_wait_for_completion(iommu);
Joerg Roedel84df8172008-12-17 16:36:44 +0100368
Joerg Roedel7e4f88d2008-09-17 14:19:15 +0200369out:
370 spin_unlock_irqrestore(&iommu->lock, flags);
Joerg Roedela19ae1e2008-06-26 21:27:55 +0200371
372 return 0;
373}
374
Joerg Roedel431b2a22008-07-11 17:14:22 +0200375/*
376 * Command send function for invalidating a device table entry
377 */
Joerg Roedela19ae1e2008-06-26 21:27:55 +0200378static int iommu_queue_inv_dev_entry(struct amd_iommu *iommu, u16 devid)
379{
Joerg Roedeld6449532008-07-11 17:14:28 +0200380 struct iommu_cmd cmd;
Joerg Roedelee2fa742008-09-17 13:47:25 +0200381 int ret;
Joerg Roedela19ae1e2008-06-26 21:27:55 +0200382
383 BUG_ON(iommu == NULL);
384
385 memset(&cmd, 0, sizeof(cmd));
386 CMD_SET_TYPE(&cmd, CMD_INV_DEV_ENTRY);
387 cmd.data[0] = devid;
388
Joerg Roedelee2fa742008-09-17 13:47:25 +0200389 ret = iommu_queue_command(iommu, &cmd);
390
Joerg Roedelee2fa742008-09-17 13:47:25 +0200391 return ret;
Joerg Roedela19ae1e2008-06-26 21:27:55 +0200392}
393
Joerg Roedel237b6f32008-12-02 20:54:37 +0100394static void __iommu_build_inv_iommu_pages(struct iommu_cmd *cmd, u64 address,
395 u16 domid, int pde, int s)
396{
397 memset(cmd, 0, sizeof(*cmd));
398 address &= PAGE_MASK;
399 CMD_SET_TYPE(cmd, CMD_INV_IOMMU_PAGES);
400 cmd->data[1] |= domid;
401 cmd->data[2] = lower_32_bits(address);
402 cmd->data[3] = upper_32_bits(address);
403 if (s) /* size bit - we flush more than one 4kb page */
404 cmd->data[2] |= CMD_INV_IOMMU_PAGES_SIZE_MASK;
405 if (pde) /* PDE bit - we wan't flush everything not only the PTEs */
406 cmd->data[2] |= CMD_INV_IOMMU_PAGES_PDE_MASK;
407}
408
Joerg Roedel431b2a22008-07-11 17:14:22 +0200409/*
410 * Generic command send function for invalidaing TLB entries
411 */
Joerg Roedela19ae1e2008-06-26 21:27:55 +0200412static int iommu_queue_inv_iommu_pages(struct amd_iommu *iommu,
413 u64 address, u16 domid, int pde, int s)
414{
Joerg Roedeld6449532008-07-11 17:14:28 +0200415 struct iommu_cmd cmd;
Joerg Roedelee2fa742008-09-17 13:47:25 +0200416 int ret;
Joerg Roedela19ae1e2008-06-26 21:27:55 +0200417
Joerg Roedel237b6f32008-12-02 20:54:37 +0100418 __iommu_build_inv_iommu_pages(&cmd, address, domid, pde, s);
Joerg Roedela19ae1e2008-06-26 21:27:55 +0200419
Joerg Roedelee2fa742008-09-17 13:47:25 +0200420 ret = iommu_queue_command(iommu, &cmd);
421
Joerg Roedelee2fa742008-09-17 13:47:25 +0200422 return ret;
Joerg Roedela19ae1e2008-06-26 21:27:55 +0200423}
424
Joerg Roedel431b2a22008-07-11 17:14:22 +0200425/*
426 * TLB invalidation function which is called from the mapping functions.
427 * It invalidates a single PTE if the range to flush is within a single
428 * page. Otherwise it flushes the whole TLB of the IOMMU.
429 */
Joerg Roedela19ae1e2008-06-26 21:27:55 +0200430static int iommu_flush_pages(struct amd_iommu *iommu, u16 domid,
431 u64 address, size_t size)
432{
Joerg Roedel999ba412008-07-03 19:35:08 +0200433 int s = 0;
Joerg Roedele3c449f2008-10-15 22:02:11 -0700434 unsigned pages = iommu_num_pages(address, size, PAGE_SIZE);
Joerg Roedela19ae1e2008-06-26 21:27:55 +0200435
436 address &= PAGE_MASK;
437
Joerg Roedel999ba412008-07-03 19:35:08 +0200438 if (pages > 1) {
439 /*
440 * If we have to flush more than one page, flush all
441 * TLB entries for this domain
442 */
443 address = CMD_INV_IOMMU_ALL_PAGES_ADDRESS;
444 s = 1;
Joerg Roedela19ae1e2008-06-26 21:27:55 +0200445 }
446
Joerg Roedel999ba412008-07-03 19:35:08 +0200447 iommu_queue_inv_iommu_pages(iommu, address, domid, 0, s);
448
Joerg Roedela19ae1e2008-06-26 21:27:55 +0200449 return 0;
450}
Joerg Roedelb6c02712008-06-26 21:27:53 +0200451
Joerg Roedel1c655772008-09-04 18:40:05 +0200452/* Flush the whole IO/TLB for a given protection domain */
453static void iommu_flush_tlb(struct amd_iommu *iommu, u16 domid)
454{
455 u64 address = CMD_INV_IOMMU_ALL_PAGES_ADDRESS;
456
Joerg Roedelf57d98a2008-12-12 15:46:29 +0100457 INC_STATS_COUNTER(domain_flush_single);
458
Joerg Roedel1c655772008-09-04 18:40:05 +0200459 iommu_queue_inv_iommu_pages(iommu, address, domid, 0, 1);
460}
461
Chris Wright42a49f92009-06-15 15:42:00 +0200462/* Flush the whole IO/TLB for a given protection domain - including PDE */
463static void iommu_flush_tlb_pde(struct amd_iommu *iommu, u16 domid)
464{
465 u64 address = CMD_INV_IOMMU_ALL_PAGES_ADDRESS;
466
467 INC_STATS_COUNTER(domain_flush_single);
468
469 iommu_queue_inv_iommu_pages(iommu, address, domid, 1, 1);
470}
471
Joerg Roedel43f49602008-12-02 21:01:12 +0100472/*
Joerg Roedele394d722009-09-03 15:28:33 +0200473 * This function flushes one domain on one IOMMU
Joerg Roedel43f49602008-12-02 21:01:12 +0100474 */
Joerg Roedele394d722009-09-03 15:28:33 +0200475static void flush_domain_on_iommu(struct amd_iommu *iommu, u16 domid)
Joerg Roedel43f49602008-12-02 21:01:12 +0100476{
Joerg Roedel43f49602008-12-02 21:01:12 +0100477 struct iommu_cmd cmd;
Joerg Roedele394d722009-09-03 15:28:33 +0200478 unsigned long flags;
Joerg Roedel18811f52008-12-12 15:48:28 +0100479
Joerg Roedel43f49602008-12-02 21:01:12 +0100480 __iommu_build_inv_iommu_pages(&cmd, CMD_INV_IOMMU_ALL_PAGES_ADDRESS,
481 domid, 1, 1);
482
Joerg Roedele394d722009-09-03 15:28:33 +0200483 spin_lock_irqsave(&iommu->lock, flags);
484 __iommu_queue_command(iommu, &cmd);
485 __iommu_completion_wait(iommu);
486 __iommu_wait_for_completion(iommu);
487 spin_unlock_irqrestore(&iommu->lock, flags);
Joerg Roedel43f49602008-12-02 21:01:12 +0100488}
Joerg Roedel43f49602008-12-02 21:01:12 +0100489
Joerg Roedele394d722009-09-03 15:28:33 +0200490static void flush_all_domains_on_iommu(struct amd_iommu *iommu)
Joerg Roedelbfd1be12009-05-05 15:33:57 +0200491{
492 int i;
493
494 for (i = 1; i < MAX_DOMAIN_ID; ++i) {
495 if (!test_bit(i, amd_iommu_pd_alloc_bitmap))
496 continue;
Joerg Roedele394d722009-09-03 15:28:33 +0200497 flush_domain_on_iommu(iommu, i);
Joerg Roedelbfd1be12009-05-05 15:33:57 +0200498 }
Joerg Roedele394d722009-09-03 15:28:33 +0200499
500}
501
502/*
503 * This function is used to flush the IO/TLB for a given protection domain
504 * on every IOMMU in the system
505 */
506static void iommu_flush_domain(u16 domid)
507{
508 struct amd_iommu *iommu;
509
510 INC_STATS_COUNTER(domain_flush_all);
511
512 for_each_iommu(iommu)
513 flush_domain_on_iommu(iommu, domid);
514}
515
516void amd_iommu_flush_all_domains(void)
517{
518 struct amd_iommu *iommu;
519
520 for_each_iommu(iommu)
521 flush_all_domains_on_iommu(iommu);
Joerg Roedelbfd1be12009-05-05 15:33:57 +0200522}
523
Joerg Roedeld586d782009-09-03 15:39:23 +0200524static void flush_all_devices_for_iommu(struct amd_iommu *iommu)
525{
526 int i;
527
528 for (i = 0; i <= amd_iommu_last_bdf; ++i) {
529 if (iommu != amd_iommu_rlookup_table[i])
530 continue;
531
532 iommu_queue_inv_dev_entry(iommu, i);
533 iommu_completion_wait(iommu);
534 }
535}
536
Joerg Roedel7d7a1102009-05-05 15:48:10 +0200537void amd_iommu_flush_all_devices(void)
538{
539 struct amd_iommu *iommu;
540 int i;
541
542 for (i = 0; i <= amd_iommu_last_bdf; ++i) {
543 if (amd_iommu_pd_table[i] == NULL)
544 continue;
545
546 iommu = amd_iommu_rlookup_table[i];
547 if (!iommu)
548 continue;
549
550 iommu_queue_inv_dev_entry(iommu, i);
551 iommu_completion_wait(iommu);
552 }
553}
554
Joerg Roedela345b232009-09-03 15:01:43 +0200555static void reset_iommu_command_buffer(struct amd_iommu *iommu)
556{
557 pr_err("AMD-Vi: Resetting IOMMU command buffer\n");
558
Joerg Roedelb26e81b2009-09-03 15:08:09 +0200559 if (iommu->reset_in_progress)
560 panic("AMD-Vi: ILLEGAL_COMMAND_ERROR while resetting command buffer\n");
561
562 iommu->reset_in_progress = true;
563
Joerg Roedela345b232009-09-03 15:01:43 +0200564 amd_iommu_reset_cmd_buffer(iommu);
565 flush_all_devices_for_iommu(iommu);
566 flush_all_domains_on_iommu(iommu);
Joerg Roedelb26e81b2009-09-03 15:08:09 +0200567
568 iommu->reset_in_progress = false;
Joerg Roedela345b232009-09-03 15:01:43 +0200569}
570
Joerg Roedel431b2a22008-07-11 17:14:22 +0200571/****************************************************************************
572 *
573 * The functions below are used the create the page table mappings for
574 * unity mapped regions.
575 *
576 ****************************************************************************/
577
578/*
579 * Generic mapping functions. It maps a physical address into a DMA
580 * address space. It allocates the page table pages if necessary.
581 * In the future it can be extended to a generic mapping function
582 * supporting all features of AMD IOMMU page tables like level skipping
583 * and full 64 bit address spaces.
584 */
Joerg Roedel38e817f2008-12-02 17:27:52 +0100585static int iommu_map_page(struct protection_domain *dom,
586 unsigned long bus_addr,
587 unsigned long phys_addr,
588 int prot)
Joerg Roedelbd0e5212008-06-26 21:27:56 +0200589{
Joerg Roedel8bda3092009-05-12 12:02:46 +0200590 u64 __pte, *pte;
Joerg Roedelbd0e5212008-06-26 21:27:56 +0200591
592 bus_addr = PAGE_ALIGN(bus_addr);
Joerg Roedelbb9d4ff2008-12-04 15:59:48 +0100593 phys_addr = PAGE_ALIGN(phys_addr);
Joerg Roedelbd0e5212008-06-26 21:27:56 +0200594
595 /* only support 512GB address spaces for now */
596 if (bus_addr > IOMMU_MAP_SIZE_L3 || !(prot & IOMMU_PROT_MASK))
597 return -EINVAL;
598
Joerg Roedel8bda3092009-05-12 12:02:46 +0200599 pte = alloc_pte(dom, bus_addr, NULL, GFP_KERNEL);
Joerg Roedelbd0e5212008-06-26 21:27:56 +0200600
601 if (IOMMU_PTE_PRESENT(*pte))
602 return -EBUSY;
603
604 __pte = phys_addr | IOMMU_PTE_P;
605 if (prot & IOMMU_PROT_IR)
606 __pte |= IOMMU_PTE_IR;
607 if (prot & IOMMU_PROT_IW)
608 __pte |= IOMMU_PTE_IW;
609
610 *pte = __pte;
611
612 return 0;
613}
614
Joerg Roedeleb74ff62008-12-02 19:59:10 +0100615static void iommu_unmap_page(struct protection_domain *dom,
616 unsigned long bus_addr)
617{
618 u64 *pte;
619
620 pte = &dom->pt_root[IOMMU_PTE_L2_INDEX(bus_addr)];
621
622 if (!IOMMU_PTE_PRESENT(*pte))
623 return;
624
625 pte = IOMMU_PTE_PAGE(*pte);
626 pte = &pte[IOMMU_PTE_L1_INDEX(bus_addr)];
627
628 if (!IOMMU_PTE_PRESENT(*pte))
629 return;
630
631 pte = IOMMU_PTE_PAGE(*pte);
632 pte = &pte[IOMMU_PTE_L1_INDEX(bus_addr)];
633
634 *pte = 0;
635}
Joerg Roedeleb74ff62008-12-02 19:59:10 +0100636
Joerg Roedel431b2a22008-07-11 17:14:22 +0200637/*
638 * This function checks if a specific unity mapping entry is needed for
639 * this specific IOMMU.
640 */
Joerg Roedelbd0e5212008-06-26 21:27:56 +0200641static int iommu_for_unity_map(struct amd_iommu *iommu,
642 struct unity_map_entry *entry)
643{
644 u16 bdf, i;
645
646 for (i = entry->devid_start; i <= entry->devid_end; ++i) {
647 bdf = amd_iommu_alias_table[i];
648 if (amd_iommu_rlookup_table[bdf] == iommu)
649 return 1;
650 }
651
652 return 0;
653}
654
Joerg Roedel431b2a22008-07-11 17:14:22 +0200655/*
656 * Init the unity mappings for a specific IOMMU in the system
657 *
658 * Basically iterates over all unity mapping entries and applies them to
659 * the default domain DMA of that IOMMU if necessary.
660 */
Joerg Roedelbd0e5212008-06-26 21:27:56 +0200661static int iommu_init_unity_mappings(struct amd_iommu *iommu)
662{
663 struct unity_map_entry *entry;
664 int ret;
665
666 list_for_each_entry(entry, &amd_iommu_unity_map, list) {
667 if (!iommu_for_unity_map(iommu, entry))
668 continue;
669 ret = dma_ops_unity_map(iommu->default_dom, entry);
670 if (ret)
671 return ret;
672 }
673
674 return 0;
675}
676
Joerg Roedel431b2a22008-07-11 17:14:22 +0200677/*
678 * This function actually applies the mapping to the page table of the
679 * dma_ops domain.
680 */
Joerg Roedelbd0e5212008-06-26 21:27:56 +0200681static int dma_ops_unity_map(struct dma_ops_domain *dma_dom,
682 struct unity_map_entry *e)
683{
684 u64 addr;
685 int ret;
686
687 for (addr = e->address_start; addr < e->address_end;
688 addr += PAGE_SIZE) {
Joerg Roedel38e817f2008-12-02 17:27:52 +0100689 ret = iommu_map_page(&dma_dom->domain, addr, addr, e->prot);
Joerg Roedelbd0e5212008-06-26 21:27:56 +0200690 if (ret)
691 return ret;
692 /*
693 * if unity mapping is in aperture range mark the page
694 * as allocated in the aperture
695 */
696 if (addr < dma_dom->aperture_size)
Joerg Roedelc3239562009-05-12 10:56:44 +0200697 __set_bit(addr >> PAGE_SHIFT,
Joerg Roedel384de722009-05-15 12:30:05 +0200698 dma_dom->aperture[0]->bitmap);
Joerg Roedelbd0e5212008-06-26 21:27:56 +0200699 }
700
701 return 0;
702}
703
Joerg Roedel431b2a22008-07-11 17:14:22 +0200704/*
705 * Inits the unity mappings required for a specific device
706 */
Joerg Roedelbd0e5212008-06-26 21:27:56 +0200707static int init_unity_mappings_for_device(struct dma_ops_domain *dma_dom,
708 u16 devid)
709{
710 struct unity_map_entry *e;
711 int ret;
712
713 list_for_each_entry(e, &amd_iommu_unity_map, list) {
714 if (!(devid >= e->devid_start && devid <= e->devid_end))
715 continue;
716 ret = dma_ops_unity_map(dma_dom, e);
717 if (ret)
718 return ret;
719 }
720
721 return 0;
722}
723
Joerg Roedel431b2a22008-07-11 17:14:22 +0200724/****************************************************************************
725 *
726 * The next functions belong to the address allocator for the dma_ops
727 * interface functions. They work like the allocators in the other IOMMU
728 * drivers. Its basically a bitmap which marks the allocated pages in
729 * the aperture. Maybe it could be enhanced in the future to a more
730 * efficient allocator.
731 *
732 ****************************************************************************/
Joerg Roedeld3086442008-06-26 21:27:57 +0200733
Joerg Roedel431b2a22008-07-11 17:14:22 +0200734/*
Joerg Roedel384de722009-05-15 12:30:05 +0200735 * The address allocator core functions.
Joerg Roedel431b2a22008-07-11 17:14:22 +0200736 *
737 * called with domain->lock held
738 */
Joerg Roedel384de722009-05-15 12:30:05 +0200739
Joerg Roedel9cabe892009-05-18 16:38:55 +0200740/*
Joerg Roedel00cd1222009-05-19 09:52:40 +0200741 * This function checks if there is a PTE for a given dma address. If
742 * there is one, it returns the pointer to it.
743 */
744static u64* fetch_pte(struct protection_domain *domain,
745 unsigned long address)
746{
747 u64 *pte;
748
749 pte = &domain->pt_root[IOMMU_PTE_L2_INDEX(address)];
750
751 if (!IOMMU_PTE_PRESENT(*pte))
752 return NULL;
753
754 pte = IOMMU_PTE_PAGE(*pte);
755 pte = &pte[IOMMU_PTE_L1_INDEX(address)];
756
757 if (!IOMMU_PTE_PRESENT(*pte))
758 return NULL;
759
760 pte = IOMMU_PTE_PAGE(*pte);
761 pte = &pte[IOMMU_PTE_L0_INDEX(address)];
762
763 return pte;
764}
765
766/*
Joerg Roedel9cabe892009-05-18 16:38:55 +0200767 * This function is used to add a new aperture range to an existing
768 * aperture in case of dma_ops domain allocation or address allocation
769 * failure.
770 */
Joerg Roedel00cd1222009-05-19 09:52:40 +0200771static int alloc_new_range(struct amd_iommu *iommu,
772 struct dma_ops_domain *dma_dom,
Joerg Roedel9cabe892009-05-18 16:38:55 +0200773 bool populate, gfp_t gfp)
774{
775 int index = dma_dom->aperture_size >> APERTURE_RANGE_SHIFT;
Joerg Roedel00cd1222009-05-19 09:52:40 +0200776 int i;
Joerg Roedel9cabe892009-05-18 16:38:55 +0200777
Joerg Roedelf5e97052009-05-22 12:31:53 +0200778#ifdef CONFIG_IOMMU_STRESS
779 populate = false;
780#endif
781
Joerg Roedel9cabe892009-05-18 16:38:55 +0200782 if (index >= APERTURE_MAX_RANGES)
783 return -ENOMEM;
784
785 dma_dom->aperture[index] = kzalloc(sizeof(struct aperture_range), gfp);
786 if (!dma_dom->aperture[index])
787 return -ENOMEM;
788
789 dma_dom->aperture[index]->bitmap = (void *)get_zeroed_page(gfp);
790 if (!dma_dom->aperture[index]->bitmap)
791 goto out_free;
792
793 dma_dom->aperture[index]->offset = dma_dom->aperture_size;
794
795 if (populate) {
796 unsigned long address = dma_dom->aperture_size;
797 int i, num_ptes = APERTURE_RANGE_PAGES / 512;
798 u64 *pte, *pte_page;
799
800 for (i = 0; i < num_ptes; ++i) {
801 pte = alloc_pte(&dma_dom->domain, address,
802 &pte_page, gfp);
803 if (!pte)
804 goto out_free;
805
806 dma_dom->aperture[index]->pte_pages[i] = pte_page;
807
808 address += APERTURE_RANGE_SIZE / 64;
809 }
810 }
811
812 dma_dom->aperture_size += APERTURE_RANGE_SIZE;
813
Joerg Roedel00cd1222009-05-19 09:52:40 +0200814 /* Intialize the exclusion range if necessary */
815 if (iommu->exclusion_start &&
816 iommu->exclusion_start >= dma_dom->aperture[index]->offset &&
817 iommu->exclusion_start < dma_dom->aperture_size) {
818 unsigned long startpage = iommu->exclusion_start >> PAGE_SHIFT;
819 int pages = iommu_num_pages(iommu->exclusion_start,
820 iommu->exclusion_length,
821 PAGE_SIZE);
822 dma_ops_reserve_addresses(dma_dom, startpage, pages);
823 }
824
825 /*
826 * Check for areas already mapped as present in the new aperture
827 * range and mark those pages as reserved in the allocator. Such
828 * mappings may already exist as a result of requested unity
829 * mappings for devices.
830 */
831 for (i = dma_dom->aperture[index]->offset;
832 i < dma_dom->aperture_size;
833 i += PAGE_SIZE) {
834 u64 *pte = fetch_pte(&dma_dom->domain, i);
835 if (!pte || !IOMMU_PTE_PRESENT(*pte))
836 continue;
837
838 dma_ops_reserve_addresses(dma_dom, i << PAGE_SHIFT, 1);
839 }
840
Joerg Roedel9cabe892009-05-18 16:38:55 +0200841 return 0;
842
843out_free:
844 free_page((unsigned long)dma_dom->aperture[index]->bitmap);
845
846 kfree(dma_dom->aperture[index]);
847 dma_dom->aperture[index] = NULL;
848
849 return -ENOMEM;
850}
851
Joerg Roedel384de722009-05-15 12:30:05 +0200852static unsigned long dma_ops_area_alloc(struct device *dev,
853 struct dma_ops_domain *dom,
854 unsigned int pages,
855 unsigned long align_mask,
856 u64 dma_mask,
857 unsigned long start)
858{
Joerg Roedel803b8cb42009-05-18 15:32:48 +0200859 unsigned long next_bit = dom->next_address % APERTURE_RANGE_SIZE;
Joerg Roedel384de722009-05-15 12:30:05 +0200860 int max_index = dom->aperture_size >> APERTURE_RANGE_SHIFT;
861 int i = start >> APERTURE_RANGE_SHIFT;
862 unsigned long boundary_size;
863 unsigned long address = -1;
864 unsigned long limit;
865
Joerg Roedel803b8cb42009-05-18 15:32:48 +0200866 next_bit >>= PAGE_SHIFT;
867
Joerg Roedel384de722009-05-15 12:30:05 +0200868 boundary_size = ALIGN(dma_get_seg_boundary(dev) + 1,
869 PAGE_SIZE) >> PAGE_SHIFT;
870
871 for (;i < max_index; ++i) {
872 unsigned long offset = dom->aperture[i]->offset >> PAGE_SHIFT;
873
874 if (dom->aperture[i]->offset >= dma_mask)
875 break;
876
877 limit = iommu_device_max_index(APERTURE_RANGE_PAGES, offset,
878 dma_mask >> PAGE_SHIFT);
879
880 address = iommu_area_alloc(dom->aperture[i]->bitmap,
881 limit, next_bit, pages, 0,
882 boundary_size, align_mask);
883 if (address != -1) {
884 address = dom->aperture[i]->offset +
885 (address << PAGE_SHIFT);
Joerg Roedel803b8cb42009-05-18 15:32:48 +0200886 dom->next_address = address + (pages << PAGE_SHIFT);
Joerg Roedel384de722009-05-15 12:30:05 +0200887 break;
888 }
889
890 next_bit = 0;
891 }
892
893 return address;
894}
895
Joerg Roedeld3086442008-06-26 21:27:57 +0200896static unsigned long dma_ops_alloc_addresses(struct device *dev,
897 struct dma_ops_domain *dom,
Joerg Roedel6d4f343f2008-09-04 19:18:02 +0200898 unsigned int pages,
Joerg Roedel832a90c2008-09-18 15:54:23 +0200899 unsigned long align_mask,
900 u64 dma_mask)
Joerg Roedeld3086442008-06-26 21:27:57 +0200901{
Joerg Roedeld3086442008-06-26 21:27:57 +0200902 unsigned long address;
Joerg Roedeld3086442008-06-26 21:27:57 +0200903
Joerg Roedelfe16f082009-05-22 12:27:53 +0200904#ifdef CONFIG_IOMMU_STRESS
905 dom->next_address = 0;
906 dom->need_flush = true;
907#endif
Joerg Roedeld3086442008-06-26 21:27:57 +0200908
Joerg Roedel384de722009-05-15 12:30:05 +0200909 address = dma_ops_area_alloc(dev, dom, pages, align_mask,
Joerg Roedel803b8cb42009-05-18 15:32:48 +0200910 dma_mask, dom->next_address);
Joerg Roedeld3086442008-06-26 21:27:57 +0200911
Joerg Roedel1c655772008-09-04 18:40:05 +0200912 if (address == -1) {
Joerg Roedel803b8cb42009-05-18 15:32:48 +0200913 dom->next_address = 0;
Joerg Roedel384de722009-05-15 12:30:05 +0200914 address = dma_ops_area_alloc(dev, dom, pages, align_mask,
915 dma_mask, 0);
Joerg Roedel1c655772008-09-04 18:40:05 +0200916 dom->need_flush = true;
917 }
Joerg Roedeld3086442008-06-26 21:27:57 +0200918
Joerg Roedel384de722009-05-15 12:30:05 +0200919 if (unlikely(address == -1))
Joerg Roedeld3086442008-06-26 21:27:57 +0200920 address = bad_dma_address;
921
922 WARN_ON((address + (PAGE_SIZE*pages)) > dom->aperture_size);
923
924 return address;
925}
926
Joerg Roedel431b2a22008-07-11 17:14:22 +0200927/*
928 * The address free function.
929 *
930 * called with domain->lock held
931 */
Joerg Roedeld3086442008-06-26 21:27:57 +0200932static void dma_ops_free_addresses(struct dma_ops_domain *dom,
933 unsigned long address,
934 unsigned int pages)
935{
Joerg Roedel384de722009-05-15 12:30:05 +0200936 unsigned i = address >> APERTURE_RANGE_SHIFT;
937 struct aperture_range *range = dom->aperture[i];
Joerg Roedel80be3082008-11-06 14:59:05 +0100938
Joerg Roedel384de722009-05-15 12:30:05 +0200939 BUG_ON(i >= APERTURE_MAX_RANGES || range == NULL);
940
Joerg Roedel47bccd62009-05-22 12:40:54 +0200941#ifdef CONFIG_IOMMU_STRESS
942 if (i < 4)
943 return;
944#endif
945
Joerg Roedel803b8cb42009-05-18 15:32:48 +0200946 if (address >= dom->next_address)
Joerg Roedel80be3082008-11-06 14:59:05 +0100947 dom->need_flush = true;
Joerg Roedel384de722009-05-15 12:30:05 +0200948
949 address = (address % APERTURE_RANGE_SIZE) >> PAGE_SHIFT;
Joerg Roedel803b8cb42009-05-18 15:32:48 +0200950
Joerg Roedel384de722009-05-15 12:30:05 +0200951 iommu_area_free(range->bitmap, address, pages);
952
Joerg Roedeld3086442008-06-26 21:27:57 +0200953}
954
Joerg Roedel431b2a22008-07-11 17:14:22 +0200955/****************************************************************************
956 *
957 * The next functions belong to the domain allocation. A domain is
958 * allocated for every IOMMU as the default domain. If device isolation
959 * is enabled, every device get its own domain. The most important thing
960 * about domains is the page table mapping the DMA address space they
961 * contain.
962 *
963 ****************************************************************************/
964
Joerg Roedelec487d12008-06-26 21:27:58 +0200965static u16 domain_id_alloc(void)
966{
967 unsigned long flags;
968 int id;
969
970 write_lock_irqsave(&amd_iommu_devtable_lock, flags);
971 id = find_first_zero_bit(amd_iommu_pd_alloc_bitmap, MAX_DOMAIN_ID);
972 BUG_ON(id == 0);
973 if (id > 0 && id < MAX_DOMAIN_ID)
974 __set_bit(id, amd_iommu_pd_alloc_bitmap);
975 else
976 id = 0;
977 write_unlock_irqrestore(&amd_iommu_devtable_lock, flags);
978
979 return id;
980}
981
Joerg Roedela2acfb72008-12-02 18:28:53 +0100982static void domain_id_free(int id)
983{
984 unsigned long flags;
985
986 write_lock_irqsave(&amd_iommu_devtable_lock, flags);
987 if (id > 0 && id < MAX_DOMAIN_ID)
988 __clear_bit(id, amd_iommu_pd_alloc_bitmap);
989 write_unlock_irqrestore(&amd_iommu_devtable_lock, flags);
990}
Joerg Roedela2acfb72008-12-02 18:28:53 +0100991
Joerg Roedel431b2a22008-07-11 17:14:22 +0200992/*
993 * Used to reserve address ranges in the aperture (e.g. for exclusion
994 * ranges.
995 */
Joerg Roedelec487d12008-06-26 21:27:58 +0200996static void dma_ops_reserve_addresses(struct dma_ops_domain *dom,
997 unsigned long start_page,
998 unsigned int pages)
999{
Joerg Roedel384de722009-05-15 12:30:05 +02001000 unsigned int i, last_page = dom->aperture_size >> PAGE_SHIFT;
Joerg Roedelec487d12008-06-26 21:27:58 +02001001
1002 if (start_page + pages > last_page)
1003 pages = last_page - start_page;
1004
Joerg Roedel384de722009-05-15 12:30:05 +02001005 for (i = start_page; i < start_page + pages; ++i) {
1006 int index = i / APERTURE_RANGE_PAGES;
1007 int page = i % APERTURE_RANGE_PAGES;
1008 __set_bit(page, dom->aperture[index]->bitmap);
1009 }
Joerg Roedelec487d12008-06-26 21:27:58 +02001010}
1011
Joerg Roedel86db2e52008-12-02 18:20:21 +01001012static void free_pagetable(struct protection_domain *domain)
Joerg Roedelec487d12008-06-26 21:27:58 +02001013{
1014 int i, j;
1015 u64 *p1, *p2, *p3;
1016
Joerg Roedel86db2e52008-12-02 18:20:21 +01001017 p1 = domain->pt_root;
Joerg Roedelec487d12008-06-26 21:27:58 +02001018
1019 if (!p1)
1020 return;
1021
1022 for (i = 0; i < 512; ++i) {
1023 if (!IOMMU_PTE_PRESENT(p1[i]))
1024 continue;
1025
1026 p2 = IOMMU_PTE_PAGE(p1[i]);
Joerg Roedel3cc3d842008-12-04 16:44:31 +01001027 for (j = 0; j < 512; ++j) {
Joerg Roedelec487d12008-06-26 21:27:58 +02001028 if (!IOMMU_PTE_PRESENT(p2[j]))
1029 continue;
1030 p3 = IOMMU_PTE_PAGE(p2[j]);
1031 free_page((unsigned long)p3);
1032 }
1033
1034 free_page((unsigned long)p2);
1035 }
1036
1037 free_page((unsigned long)p1);
Joerg Roedel86db2e52008-12-02 18:20:21 +01001038
1039 domain->pt_root = NULL;
Joerg Roedelec487d12008-06-26 21:27:58 +02001040}
1041
Joerg Roedel431b2a22008-07-11 17:14:22 +02001042/*
1043 * Free a domain, only used if something went wrong in the
1044 * allocation path and we need to free an already allocated page table
1045 */
Joerg Roedelec487d12008-06-26 21:27:58 +02001046static void dma_ops_domain_free(struct dma_ops_domain *dom)
1047{
Joerg Roedel384de722009-05-15 12:30:05 +02001048 int i;
1049
Joerg Roedelec487d12008-06-26 21:27:58 +02001050 if (!dom)
1051 return;
1052
Joerg Roedel86db2e52008-12-02 18:20:21 +01001053 free_pagetable(&dom->domain);
Joerg Roedelec487d12008-06-26 21:27:58 +02001054
Joerg Roedel384de722009-05-15 12:30:05 +02001055 for (i = 0; i < APERTURE_MAX_RANGES; ++i) {
1056 if (!dom->aperture[i])
1057 continue;
1058 free_page((unsigned long)dom->aperture[i]->bitmap);
1059 kfree(dom->aperture[i]);
1060 }
Joerg Roedelec487d12008-06-26 21:27:58 +02001061
1062 kfree(dom);
1063}
1064
Joerg Roedel431b2a22008-07-11 17:14:22 +02001065/*
1066 * Allocates a new protection domain usable for the dma_ops functions.
1067 * It also intializes the page table and the address allocator data
1068 * structures required for the dma_ops interface
1069 */
Joerg Roedeld9cfed92009-05-19 12:16:29 +02001070static struct dma_ops_domain *dma_ops_domain_alloc(struct amd_iommu *iommu)
Joerg Roedelec487d12008-06-26 21:27:58 +02001071{
1072 struct dma_ops_domain *dma_dom;
Joerg Roedelec487d12008-06-26 21:27:58 +02001073
1074 dma_dom = kzalloc(sizeof(struct dma_ops_domain), GFP_KERNEL);
1075 if (!dma_dom)
1076 return NULL;
1077
1078 spin_lock_init(&dma_dom->domain.lock);
1079
1080 dma_dom->domain.id = domain_id_alloc();
1081 if (dma_dom->domain.id == 0)
1082 goto free_dma_dom;
1083 dma_dom->domain.mode = PAGE_MODE_3_LEVEL;
1084 dma_dom->domain.pt_root = (void *)get_zeroed_page(GFP_KERNEL);
Joerg Roedel9fdb19d2008-12-02 17:46:25 +01001085 dma_dom->domain.flags = PD_DMA_OPS_MASK;
Joerg Roedelec487d12008-06-26 21:27:58 +02001086 dma_dom->domain.priv = dma_dom;
1087 if (!dma_dom->domain.pt_root)
1088 goto free_dma_dom;
Joerg Roedelec487d12008-06-26 21:27:58 +02001089
Joerg Roedel1c655772008-09-04 18:40:05 +02001090 dma_dom->need_flush = false;
Joerg Roedelbd60b732008-09-11 10:24:48 +02001091 dma_dom->target_dev = 0xffff;
Joerg Roedel1c655772008-09-04 18:40:05 +02001092
Joerg Roedel00cd1222009-05-19 09:52:40 +02001093 if (alloc_new_range(iommu, dma_dom, true, GFP_KERNEL))
Joerg Roedelec487d12008-06-26 21:27:58 +02001094 goto free_dma_dom;
Joerg Roedelec487d12008-06-26 21:27:58 +02001095
Joerg Roedel431b2a22008-07-11 17:14:22 +02001096 /*
Joerg Roedelec487d12008-06-26 21:27:58 +02001097 * mark the first page as allocated so we never return 0 as
1098 * a valid dma-address. So we can use 0 as error value
Joerg Roedel431b2a22008-07-11 17:14:22 +02001099 */
Joerg Roedel384de722009-05-15 12:30:05 +02001100 dma_dom->aperture[0]->bitmap[0] = 1;
Joerg Roedel803b8cb42009-05-18 15:32:48 +02001101 dma_dom->next_address = 0;
Joerg Roedelec487d12008-06-26 21:27:58 +02001102
Joerg Roedelec487d12008-06-26 21:27:58 +02001103
1104 return dma_dom;
1105
1106free_dma_dom:
1107 dma_ops_domain_free(dma_dom);
1108
1109 return NULL;
1110}
1111
Joerg Roedel431b2a22008-07-11 17:14:22 +02001112/*
Joerg Roedel5b28df62008-12-02 17:49:42 +01001113 * little helper function to check whether a given protection domain is a
1114 * dma_ops domain
1115 */
1116static bool dma_ops_domain(struct protection_domain *domain)
1117{
1118 return domain->flags & PD_DMA_OPS_MASK;
1119}
1120
1121/*
Joerg Roedel431b2a22008-07-11 17:14:22 +02001122 * Find out the protection domain structure for a given PCI device. This
1123 * will give us the pointer to the page table root for example.
1124 */
Joerg Roedelb20ac0d2008-06-26 21:27:59 +02001125static struct protection_domain *domain_for_device(u16 devid)
1126{
1127 struct protection_domain *dom;
1128 unsigned long flags;
1129
1130 read_lock_irqsave(&amd_iommu_devtable_lock, flags);
1131 dom = amd_iommu_pd_table[devid];
1132 read_unlock_irqrestore(&amd_iommu_devtable_lock, flags);
1133
1134 return dom;
1135}
1136
Joerg Roedel431b2a22008-07-11 17:14:22 +02001137/*
1138 * If a device is not yet associated with a domain, this function does
1139 * assigns it visible for the hardware
1140 */
Joerg Roedelf1179dc2008-12-10 14:39:51 +01001141static void attach_device(struct amd_iommu *iommu,
1142 struct protection_domain *domain,
1143 u16 devid)
Joerg Roedelb20ac0d2008-06-26 21:27:59 +02001144{
1145 unsigned long flags;
Joerg Roedelb20ac0d2008-06-26 21:27:59 +02001146 u64 pte_root = virt_to_phys(domain->pt_root);
1147
Joerg Roedel863c74e2008-12-02 17:56:36 +01001148 domain->dev_cnt += 1;
1149
Joerg Roedel38ddf412008-09-11 10:38:32 +02001150 pte_root |= (domain->mode & DEV_ENTRY_MODE_MASK)
1151 << DEV_ENTRY_MODE_SHIFT;
1152 pte_root |= IOMMU_PTE_IR | IOMMU_PTE_IW | IOMMU_PTE_P | IOMMU_PTE_TV;
Joerg Roedelb20ac0d2008-06-26 21:27:59 +02001153
1154 write_lock_irqsave(&amd_iommu_devtable_lock, flags);
Joerg Roedel38ddf412008-09-11 10:38:32 +02001155 amd_iommu_dev_table[devid].data[0] = lower_32_bits(pte_root);
1156 amd_iommu_dev_table[devid].data[1] = upper_32_bits(pte_root);
Joerg Roedelb20ac0d2008-06-26 21:27:59 +02001157 amd_iommu_dev_table[devid].data[2] = domain->id;
1158
1159 amd_iommu_pd_table[devid] = domain;
1160 write_unlock_irqrestore(&amd_iommu_devtable_lock, flags);
1161
Chris Wright42a49f92009-06-15 15:42:00 +02001162 /*
1163 * We might boot into a crash-kernel here. The crashed kernel
1164 * left the caches in the IOMMU dirty. So we have to flush
1165 * here to evict all dirty stuff.
1166 */
Joerg Roedelb20ac0d2008-06-26 21:27:59 +02001167 iommu_queue_inv_dev_entry(iommu, devid);
Chris Wright42a49f92009-06-15 15:42:00 +02001168 iommu_flush_tlb_pde(iommu, domain->id);
Joerg Roedelb20ac0d2008-06-26 21:27:59 +02001169}
1170
Joerg Roedel355bf552008-12-08 12:02:41 +01001171/*
1172 * Removes a device from a protection domain (unlocked)
1173 */
1174static void __detach_device(struct protection_domain *domain, u16 devid)
1175{
1176
1177 /* lock domain */
1178 spin_lock(&domain->lock);
1179
1180 /* remove domain from the lookup table */
1181 amd_iommu_pd_table[devid] = NULL;
1182
1183 /* remove entry from the device table seen by the hardware */
1184 amd_iommu_dev_table[devid].data[0] = IOMMU_PTE_P | IOMMU_PTE_TV;
1185 amd_iommu_dev_table[devid].data[1] = 0;
1186 amd_iommu_dev_table[devid].data[2] = 0;
1187
1188 /* decrease reference counter */
1189 domain->dev_cnt -= 1;
1190
1191 /* ready */
1192 spin_unlock(&domain->lock);
1193}
1194
1195/*
1196 * Removes a device from a protection domain (with devtable_lock held)
1197 */
1198static void detach_device(struct protection_domain *domain, u16 devid)
1199{
1200 unsigned long flags;
1201
1202 /* lock device table */
1203 write_lock_irqsave(&amd_iommu_devtable_lock, flags);
1204 __detach_device(domain, devid);
1205 write_unlock_irqrestore(&amd_iommu_devtable_lock, flags);
1206}
Joerg Roedele275a2a2008-12-10 18:27:25 +01001207
1208static int device_change_notifier(struct notifier_block *nb,
1209 unsigned long action, void *data)
1210{
1211 struct device *dev = data;
1212 struct pci_dev *pdev = to_pci_dev(dev);
1213 u16 devid = calc_devid(pdev->bus->number, pdev->devfn);
1214 struct protection_domain *domain;
1215 struct dma_ops_domain *dma_domain;
1216 struct amd_iommu *iommu;
Joerg Roedel1ac4cbb2008-12-10 19:33:26 +01001217 unsigned long flags;
Joerg Roedele275a2a2008-12-10 18:27:25 +01001218
1219 if (devid > amd_iommu_last_bdf)
1220 goto out;
1221
1222 devid = amd_iommu_alias_table[devid];
1223
1224 iommu = amd_iommu_rlookup_table[devid];
1225 if (iommu == NULL)
1226 goto out;
1227
1228 domain = domain_for_device(devid);
1229
1230 if (domain && !dma_ops_domain(domain))
1231 WARN_ONCE(1, "AMD IOMMU WARNING: device %s already bound "
1232 "to a non-dma-ops domain\n", dev_name(dev));
1233
1234 switch (action) {
Chris Wrightc1eee672009-05-21 00:56:58 -07001235 case BUS_NOTIFY_UNBOUND_DRIVER:
Joerg Roedele275a2a2008-12-10 18:27:25 +01001236 if (!domain)
1237 goto out;
1238 detach_device(domain, devid);
1239 break;
Joerg Roedel1ac4cbb2008-12-10 19:33:26 +01001240 case BUS_NOTIFY_ADD_DEVICE:
1241 /* allocate a protection domain if a device is added */
1242 dma_domain = find_protection_domain(devid);
1243 if (dma_domain)
1244 goto out;
Joerg Roedeld9cfed92009-05-19 12:16:29 +02001245 dma_domain = dma_ops_domain_alloc(iommu);
Joerg Roedel1ac4cbb2008-12-10 19:33:26 +01001246 if (!dma_domain)
1247 goto out;
1248 dma_domain->target_dev = devid;
1249
1250 spin_lock_irqsave(&iommu_pd_list_lock, flags);
1251 list_add_tail(&dma_domain->list, &iommu_pd_list);
1252 spin_unlock_irqrestore(&iommu_pd_list_lock, flags);
1253
1254 break;
Joerg Roedele275a2a2008-12-10 18:27:25 +01001255 default:
1256 goto out;
1257 }
1258
1259 iommu_queue_inv_dev_entry(iommu, devid);
1260 iommu_completion_wait(iommu);
1261
1262out:
1263 return 0;
1264}
1265
Jaswinder Singh Rajputb25ae672009-07-01 19:53:14 +05301266static struct notifier_block device_nb = {
Joerg Roedele275a2a2008-12-10 18:27:25 +01001267 .notifier_call = device_change_notifier,
1268};
Joerg Roedel355bf552008-12-08 12:02:41 +01001269
Joerg Roedel431b2a22008-07-11 17:14:22 +02001270/*****************************************************************************
1271 *
1272 * The next functions belong to the dma_ops mapping/unmapping code.
1273 *
1274 *****************************************************************************/
1275
1276/*
Joerg Roedeldbcc1122008-09-04 15:04:26 +02001277 * This function checks if the driver got a valid device from the caller to
1278 * avoid dereferencing invalid pointers.
1279 */
1280static bool check_device(struct device *dev)
1281{
1282 if (!dev || !dev->dma_mask)
1283 return false;
1284
1285 return true;
1286}
1287
1288/*
Joerg Roedelbd60b732008-09-11 10:24:48 +02001289 * In this function the list of preallocated protection domains is traversed to
1290 * find the domain for a specific device
1291 */
1292static struct dma_ops_domain *find_protection_domain(u16 devid)
1293{
1294 struct dma_ops_domain *entry, *ret = NULL;
1295 unsigned long flags;
1296
1297 if (list_empty(&iommu_pd_list))
1298 return NULL;
1299
1300 spin_lock_irqsave(&iommu_pd_list_lock, flags);
1301
1302 list_for_each_entry(entry, &iommu_pd_list, list) {
1303 if (entry->target_dev == devid) {
1304 ret = entry;
Joerg Roedelbd60b732008-09-11 10:24:48 +02001305 break;
1306 }
1307 }
1308
1309 spin_unlock_irqrestore(&iommu_pd_list_lock, flags);
1310
1311 return ret;
1312}
1313
1314/*
Joerg Roedel431b2a22008-07-11 17:14:22 +02001315 * In the dma_ops path we only have the struct device. This function
1316 * finds the corresponding IOMMU, the protection domain and the
1317 * requestor id for a given device.
1318 * If the device is not yet associated with a domain this is also done
1319 * in this function.
1320 */
Joerg Roedelb20ac0d2008-06-26 21:27:59 +02001321static int get_device_resources(struct device *dev,
1322 struct amd_iommu **iommu,
1323 struct protection_domain **domain,
1324 u16 *bdf)
1325{
1326 struct dma_ops_domain *dma_dom;
1327 struct pci_dev *pcidev;
1328 u16 _bdf;
1329
Joerg Roedeldbcc1122008-09-04 15:04:26 +02001330 *iommu = NULL;
1331 *domain = NULL;
1332 *bdf = 0xffff;
1333
1334 if (dev->bus != &pci_bus_type)
1335 return 0;
Joerg Roedelb20ac0d2008-06-26 21:27:59 +02001336
1337 pcidev = to_pci_dev(dev);
Joerg Roedeld591b0a2008-07-11 17:14:35 +02001338 _bdf = calc_devid(pcidev->bus->number, pcidev->devfn);
Joerg Roedelb20ac0d2008-06-26 21:27:59 +02001339
Joerg Roedel431b2a22008-07-11 17:14:22 +02001340 /* device not translated by any IOMMU in the system? */
Joerg Roedeldbcc1122008-09-04 15:04:26 +02001341 if (_bdf > amd_iommu_last_bdf)
Joerg Roedelb20ac0d2008-06-26 21:27:59 +02001342 return 0;
Joerg Roedelb20ac0d2008-06-26 21:27:59 +02001343
1344 *bdf = amd_iommu_alias_table[_bdf];
1345
1346 *iommu = amd_iommu_rlookup_table[*bdf];
1347 if (*iommu == NULL)
1348 return 0;
Joerg Roedelb20ac0d2008-06-26 21:27:59 +02001349 *domain = domain_for_device(*bdf);
1350 if (*domain == NULL) {
Joerg Roedelbd60b732008-09-11 10:24:48 +02001351 dma_dom = find_protection_domain(*bdf);
1352 if (!dma_dom)
1353 dma_dom = (*iommu)->default_dom;
Joerg Roedelb20ac0d2008-06-26 21:27:59 +02001354 *domain = &dma_dom->domain;
Joerg Roedelf1179dc2008-12-10 14:39:51 +01001355 attach_device(*iommu, *domain, *bdf);
Joerg Roedele9a22a12009-06-09 12:00:37 +02001356 DUMP_printk("Using protection domain %d for device %s\n",
1357 (*domain)->id, dev_name(dev));
Joerg Roedelb20ac0d2008-06-26 21:27:59 +02001358 }
1359
Joerg Roedelf91ba192008-11-25 12:56:12 +01001360 if (domain_for_device(_bdf) == NULL)
Joerg Roedelf1179dc2008-12-10 14:39:51 +01001361 attach_device(*iommu, *domain, _bdf);
Joerg Roedelf91ba192008-11-25 12:56:12 +01001362
Joerg Roedelb20ac0d2008-06-26 21:27:59 +02001363 return 1;
1364}
1365
Joerg Roedel431b2a22008-07-11 17:14:22 +02001366/*
Joerg Roedel8bda3092009-05-12 12:02:46 +02001367 * If the pte_page is not yet allocated this function is called
1368 */
1369static u64* alloc_pte(struct protection_domain *dom,
1370 unsigned long address, u64 **pte_page, gfp_t gfp)
1371{
1372 u64 *pte, *page;
1373
1374 pte = &dom->pt_root[IOMMU_PTE_L2_INDEX(address)];
1375
1376 if (!IOMMU_PTE_PRESENT(*pte)) {
1377 page = (u64 *)get_zeroed_page(gfp);
1378 if (!page)
1379 return NULL;
1380 *pte = IOMMU_L2_PDE(virt_to_phys(page));
1381 }
1382
1383 pte = IOMMU_PTE_PAGE(*pte);
1384 pte = &pte[IOMMU_PTE_L1_INDEX(address)];
1385
1386 if (!IOMMU_PTE_PRESENT(*pte)) {
1387 page = (u64 *)get_zeroed_page(gfp);
1388 if (!page)
1389 return NULL;
1390 *pte = IOMMU_L1_PDE(virt_to_phys(page));
1391 }
1392
1393 pte = IOMMU_PTE_PAGE(*pte);
1394
1395 if (pte_page)
1396 *pte_page = pte;
1397
1398 pte = &pte[IOMMU_PTE_L0_INDEX(address)];
1399
1400 return pte;
1401}
1402
1403/*
1404 * This function fetches the PTE for a given address in the aperture
1405 */
1406static u64* dma_ops_get_pte(struct dma_ops_domain *dom,
1407 unsigned long address)
1408{
Joerg Roedel384de722009-05-15 12:30:05 +02001409 struct aperture_range *aperture;
Joerg Roedel8bda3092009-05-12 12:02:46 +02001410 u64 *pte, *pte_page;
1411
Joerg Roedel384de722009-05-15 12:30:05 +02001412 aperture = dom->aperture[APERTURE_RANGE_INDEX(address)];
1413 if (!aperture)
1414 return NULL;
1415
1416 pte = aperture->pte_pages[APERTURE_PAGE_INDEX(address)];
Joerg Roedel8bda3092009-05-12 12:02:46 +02001417 if (!pte) {
1418 pte = alloc_pte(&dom->domain, address, &pte_page, GFP_ATOMIC);
Joerg Roedel384de722009-05-15 12:30:05 +02001419 aperture->pte_pages[APERTURE_PAGE_INDEX(address)] = pte_page;
1420 } else
1421 pte += IOMMU_PTE_L0_INDEX(address);
Joerg Roedel8bda3092009-05-12 12:02:46 +02001422
1423 return pte;
1424}
1425
1426/*
Joerg Roedel431b2a22008-07-11 17:14:22 +02001427 * This is the generic map function. It maps one 4kb page at paddr to
1428 * the given address in the DMA address space for the domain.
1429 */
Joerg Roedelcb76c322008-06-26 21:28:00 +02001430static dma_addr_t dma_ops_domain_map(struct amd_iommu *iommu,
1431 struct dma_ops_domain *dom,
1432 unsigned long address,
1433 phys_addr_t paddr,
1434 int direction)
1435{
1436 u64 *pte, __pte;
1437
1438 WARN_ON(address > dom->aperture_size);
1439
1440 paddr &= PAGE_MASK;
1441
Joerg Roedel8bda3092009-05-12 12:02:46 +02001442 pte = dma_ops_get_pte(dom, address);
Joerg Roedel53812c12009-05-12 12:17:38 +02001443 if (!pte)
1444 return bad_dma_address;
Joerg Roedelcb76c322008-06-26 21:28:00 +02001445
1446 __pte = paddr | IOMMU_PTE_P | IOMMU_PTE_FC;
1447
1448 if (direction == DMA_TO_DEVICE)
1449 __pte |= IOMMU_PTE_IR;
1450 else if (direction == DMA_FROM_DEVICE)
1451 __pte |= IOMMU_PTE_IW;
1452 else if (direction == DMA_BIDIRECTIONAL)
1453 __pte |= IOMMU_PTE_IR | IOMMU_PTE_IW;
1454
1455 WARN_ON(*pte);
1456
1457 *pte = __pte;
1458
1459 return (dma_addr_t)address;
1460}
1461
Joerg Roedel431b2a22008-07-11 17:14:22 +02001462/*
1463 * The generic unmapping function for on page in the DMA address space.
1464 */
Joerg Roedelcb76c322008-06-26 21:28:00 +02001465static void dma_ops_domain_unmap(struct amd_iommu *iommu,
1466 struct dma_ops_domain *dom,
1467 unsigned long address)
1468{
Joerg Roedel384de722009-05-15 12:30:05 +02001469 struct aperture_range *aperture;
Joerg Roedelcb76c322008-06-26 21:28:00 +02001470 u64 *pte;
1471
1472 if (address >= dom->aperture_size)
1473 return;
1474
Joerg Roedel384de722009-05-15 12:30:05 +02001475 aperture = dom->aperture[APERTURE_RANGE_INDEX(address)];
1476 if (!aperture)
1477 return;
Joerg Roedelcb76c322008-06-26 21:28:00 +02001478
Joerg Roedel384de722009-05-15 12:30:05 +02001479 pte = aperture->pte_pages[APERTURE_PAGE_INDEX(address)];
1480 if (!pte)
1481 return;
1482
Joerg Roedelcb76c322008-06-26 21:28:00 +02001483 pte += IOMMU_PTE_L0_INDEX(address);
1484
1485 WARN_ON(!*pte);
1486
1487 *pte = 0ULL;
1488}
1489
Joerg Roedel431b2a22008-07-11 17:14:22 +02001490/*
1491 * This function contains common code for mapping of a physically
Joerg Roedel24f81162008-12-08 14:25:39 +01001492 * contiguous memory region into DMA address space. It is used by all
1493 * mapping functions provided with this IOMMU driver.
Joerg Roedel431b2a22008-07-11 17:14:22 +02001494 * Must be called with the domain lock held.
1495 */
Joerg Roedelcb76c322008-06-26 21:28:00 +02001496static dma_addr_t __map_single(struct device *dev,
1497 struct amd_iommu *iommu,
1498 struct dma_ops_domain *dma_dom,
1499 phys_addr_t paddr,
1500 size_t size,
Joerg Roedel6d4f343f2008-09-04 19:18:02 +02001501 int dir,
Joerg Roedel832a90c2008-09-18 15:54:23 +02001502 bool align,
1503 u64 dma_mask)
Joerg Roedelcb76c322008-06-26 21:28:00 +02001504{
1505 dma_addr_t offset = paddr & ~PAGE_MASK;
Joerg Roedel53812c12009-05-12 12:17:38 +02001506 dma_addr_t address, start, ret;
Joerg Roedelcb76c322008-06-26 21:28:00 +02001507 unsigned int pages;
Joerg Roedel6d4f343f2008-09-04 19:18:02 +02001508 unsigned long align_mask = 0;
Joerg Roedelcb76c322008-06-26 21:28:00 +02001509 int i;
1510
Joerg Roedele3c449f2008-10-15 22:02:11 -07001511 pages = iommu_num_pages(paddr, size, PAGE_SIZE);
Joerg Roedelcb76c322008-06-26 21:28:00 +02001512 paddr &= PAGE_MASK;
1513
Joerg Roedel8ecaf8f2008-12-12 16:13:04 +01001514 INC_STATS_COUNTER(total_map_requests);
1515
Joerg Roedelc1858972008-12-12 15:42:39 +01001516 if (pages > 1)
1517 INC_STATS_COUNTER(cross_page);
1518
Joerg Roedel6d4f343f2008-09-04 19:18:02 +02001519 if (align)
1520 align_mask = (1UL << get_order(size)) - 1;
1521
Joerg Roedel11b83882009-05-19 10:23:15 +02001522retry:
Joerg Roedel832a90c2008-09-18 15:54:23 +02001523 address = dma_ops_alloc_addresses(dev, dma_dom, pages, align_mask,
1524 dma_mask);
Joerg Roedel11b83882009-05-19 10:23:15 +02001525 if (unlikely(address == bad_dma_address)) {
1526 /*
1527 * setting next_address here will let the address
1528 * allocator only scan the new allocated range in the
1529 * first run. This is a small optimization.
1530 */
1531 dma_dom->next_address = dma_dom->aperture_size;
1532
1533 if (alloc_new_range(iommu, dma_dom, false, GFP_ATOMIC))
1534 goto out;
1535
1536 /*
1537 * aperture was sucessfully enlarged by 128 MB, try
1538 * allocation again
1539 */
1540 goto retry;
1541 }
Joerg Roedelcb76c322008-06-26 21:28:00 +02001542
1543 start = address;
1544 for (i = 0; i < pages; ++i) {
Joerg Roedel53812c12009-05-12 12:17:38 +02001545 ret = dma_ops_domain_map(iommu, dma_dom, start, paddr, dir);
1546 if (ret == bad_dma_address)
1547 goto out_unmap;
1548
Joerg Roedelcb76c322008-06-26 21:28:00 +02001549 paddr += PAGE_SIZE;
1550 start += PAGE_SIZE;
1551 }
1552 address += offset;
1553
Joerg Roedel5774f7c2008-12-12 15:57:30 +01001554 ADD_STATS_COUNTER(alloced_io_mem, size);
1555
FUJITA Tomonoriafa9fdc2008-09-20 01:23:30 +09001556 if (unlikely(dma_dom->need_flush && !amd_iommu_unmap_flush)) {
Joerg Roedel1c655772008-09-04 18:40:05 +02001557 iommu_flush_tlb(iommu, dma_dom->domain.id);
1558 dma_dom->need_flush = false;
1559 } else if (unlikely(iommu_has_npcache(iommu)))
Joerg Roedel270cab242008-09-04 15:49:46 +02001560 iommu_flush_pages(iommu, dma_dom->domain.id, address, size);
1561
Joerg Roedelcb76c322008-06-26 21:28:00 +02001562out:
1563 return address;
Joerg Roedel53812c12009-05-12 12:17:38 +02001564
1565out_unmap:
1566
1567 for (--i; i >= 0; --i) {
1568 start -= PAGE_SIZE;
1569 dma_ops_domain_unmap(iommu, dma_dom, start);
1570 }
1571
1572 dma_ops_free_addresses(dma_dom, address, pages);
1573
1574 return bad_dma_address;
Joerg Roedelcb76c322008-06-26 21:28:00 +02001575}
1576
Joerg Roedel431b2a22008-07-11 17:14:22 +02001577/*
1578 * Does the reverse of the __map_single function. Must be called with
1579 * the domain lock held too
1580 */
Joerg Roedelcb76c322008-06-26 21:28:00 +02001581static void __unmap_single(struct amd_iommu *iommu,
1582 struct dma_ops_domain *dma_dom,
1583 dma_addr_t dma_addr,
1584 size_t size,
1585 int dir)
1586{
1587 dma_addr_t i, start;
1588 unsigned int pages;
1589
Joerg Roedelb8d99052008-12-08 14:40:26 +01001590 if ((dma_addr == bad_dma_address) ||
1591 (dma_addr + size > dma_dom->aperture_size))
Joerg Roedelcb76c322008-06-26 21:28:00 +02001592 return;
1593
Joerg Roedele3c449f2008-10-15 22:02:11 -07001594 pages = iommu_num_pages(dma_addr, size, PAGE_SIZE);
Joerg Roedelcb76c322008-06-26 21:28:00 +02001595 dma_addr &= PAGE_MASK;
1596 start = dma_addr;
1597
1598 for (i = 0; i < pages; ++i) {
1599 dma_ops_domain_unmap(iommu, dma_dom, start);
1600 start += PAGE_SIZE;
1601 }
1602
Joerg Roedel5774f7c2008-12-12 15:57:30 +01001603 SUB_STATS_COUNTER(alloced_io_mem, size);
1604
Joerg Roedelcb76c322008-06-26 21:28:00 +02001605 dma_ops_free_addresses(dma_dom, dma_addr, pages);
Joerg Roedel270cab242008-09-04 15:49:46 +02001606
Joerg Roedel80be3082008-11-06 14:59:05 +01001607 if (amd_iommu_unmap_flush || dma_dom->need_flush) {
Joerg Roedel1c655772008-09-04 18:40:05 +02001608 iommu_flush_pages(iommu, dma_dom->domain.id, dma_addr, size);
Joerg Roedel80be3082008-11-06 14:59:05 +01001609 dma_dom->need_flush = false;
1610 }
Joerg Roedelcb76c322008-06-26 21:28:00 +02001611}
1612
Joerg Roedel431b2a22008-07-11 17:14:22 +02001613/*
1614 * The exported map_single function for dma_ops.
1615 */
FUJITA Tomonori51491362009-01-05 23:47:25 +09001616static dma_addr_t map_page(struct device *dev, struct page *page,
1617 unsigned long offset, size_t size,
1618 enum dma_data_direction dir,
1619 struct dma_attrs *attrs)
Joerg Roedel4da70b92008-06-26 21:28:01 +02001620{
1621 unsigned long flags;
1622 struct amd_iommu *iommu;
1623 struct protection_domain *domain;
1624 u16 devid;
1625 dma_addr_t addr;
Joerg Roedel832a90c2008-09-18 15:54:23 +02001626 u64 dma_mask;
FUJITA Tomonori51491362009-01-05 23:47:25 +09001627 phys_addr_t paddr = page_to_phys(page) + offset;
Joerg Roedel4da70b92008-06-26 21:28:01 +02001628
Joerg Roedel0f2a86f2008-12-12 15:05:16 +01001629 INC_STATS_COUNTER(cnt_map_single);
1630
Joerg Roedeldbcc1122008-09-04 15:04:26 +02001631 if (!check_device(dev))
1632 return bad_dma_address;
1633
Joerg Roedel832a90c2008-09-18 15:54:23 +02001634 dma_mask = *dev->dma_mask;
Joerg Roedel4da70b92008-06-26 21:28:01 +02001635
1636 get_device_resources(dev, &iommu, &domain, &devid);
1637
1638 if (iommu == NULL || domain == NULL)
Joerg Roedel431b2a22008-07-11 17:14:22 +02001639 /* device not handled by any AMD IOMMU */
Joerg Roedel4da70b92008-06-26 21:28:01 +02001640 return (dma_addr_t)paddr;
1641
Joerg Roedel5b28df62008-12-02 17:49:42 +01001642 if (!dma_ops_domain(domain))
1643 return bad_dma_address;
1644
Joerg Roedel4da70b92008-06-26 21:28:01 +02001645 spin_lock_irqsave(&domain->lock, flags);
Joerg Roedel832a90c2008-09-18 15:54:23 +02001646 addr = __map_single(dev, iommu, domain->priv, paddr, size, dir, false,
1647 dma_mask);
Joerg Roedel4da70b92008-06-26 21:28:01 +02001648 if (addr == bad_dma_address)
1649 goto out;
1650
Joerg Roedel09ee17e2008-12-03 12:19:27 +01001651 iommu_completion_wait(iommu);
Joerg Roedel4da70b92008-06-26 21:28:01 +02001652
1653out:
1654 spin_unlock_irqrestore(&domain->lock, flags);
1655
1656 return addr;
1657}
1658
Joerg Roedel431b2a22008-07-11 17:14:22 +02001659/*
1660 * The exported unmap_single function for dma_ops.
1661 */
FUJITA Tomonori51491362009-01-05 23:47:25 +09001662static void unmap_page(struct device *dev, dma_addr_t dma_addr, size_t size,
1663 enum dma_data_direction dir, struct dma_attrs *attrs)
Joerg Roedel4da70b92008-06-26 21:28:01 +02001664{
1665 unsigned long flags;
1666 struct amd_iommu *iommu;
1667 struct protection_domain *domain;
1668 u16 devid;
1669
Joerg Roedel146a6912008-12-12 15:07:12 +01001670 INC_STATS_COUNTER(cnt_unmap_single);
1671
Joerg Roedeldbcc1122008-09-04 15:04:26 +02001672 if (!check_device(dev) ||
1673 !get_device_resources(dev, &iommu, &domain, &devid))
Joerg Roedel431b2a22008-07-11 17:14:22 +02001674 /* device not handled by any AMD IOMMU */
Joerg Roedel4da70b92008-06-26 21:28:01 +02001675 return;
1676
Joerg Roedel5b28df62008-12-02 17:49:42 +01001677 if (!dma_ops_domain(domain))
1678 return;
1679
Joerg Roedel4da70b92008-06-26 21:28:01 +02001680 spin_lock_irqsave(&domain->lock, flags);
1681
1682 __unmap_single(iommu, domain->priv, dma_addr, size, dir);
1683
Joerg Roedel09ee17e2008-12-03 12:19:27 +01001684 iommu_completion_wait(iommu);
Joerg Roedel4da70b92008-06-26 21:28:01 +02001685
1686 spin_unlock_irqrestore(&domain->lock, flags);
1687}
1688
Joerg Roedel431b2a22008-07-11 17:14:22 +02001689/*
1690 * This is a special map_sg function which is used if we should map a
1691 * device which is not handled by an AMD IOMMU in the system.
1692 */
Joerg Roedel65b050a2008-06-26 21:28:02 +02001693static int map_sg_no_iommu(struct device *dev, struct scatterlist *sglist,
1694 int nelems, int dir)
1695{
1696 struct scatterlist *s;
1697 int i;
1698
1699 for_each_sg(sglist, s, nelems, i) {
1700 s->dma_address = (dma_addr_t)sg_phys(s);
1701 s->dma_length = s->length;
1702 }
1703
1704 return nelems;
1705}
1706
Joerg Roedel431b2a22008-07-11 17:14:22 +02001707/*
1708 * The exported map_sg function for dma_ops (handles scatter-gather
1709 * lists).
1710 */
Joerg Roedel65b050a2008-06-26 21:28:02 +02001711static int map_sg(struct device *dev, struct scatterlist *sglist,
FUJITA Tomonori160c1d82009-01-05 23:59:02 +09001712 int nelems, enum dma_data_direction dir,
1713 struct dma_attrs *attrs)
Joerg Roedel65b050a2008-06-26 21:28:02 +02001714{
1715 unsigned long flags;
1716 struct amd_iommu *iommu;
1717 struct protection_domain *domain;
1718 u16 devid;
1719 int i;
1720 struct scatterlist *s;
1721 phys_addr_t paddr;
1722 int mapped_elems = 0;
Joerg Roedel832a90c2008-09-18 15:54:23 +02001723 u64 dma_mask;
Joerg Roedel65b050a2008-06-26 21:28:02 +02001724
Joerg Roedeld03f067a2008-12-12 15:09:48 +01001725 INC_STATS_COUNTER(cnt_map_sg);
1726
Joerg Roedeldbcc1122008-09-04 15:04:26 +02001727 if (!check_device(dev))
1728 return 0;
1729
Joerg Roedel832a90c2008-09-18 15:54:23 +02001730 dma_mask = *dev->dma_mask;
Joerg Roedel65b050a2008-06-26 21:28:02 +02001731
1732 get_device_resources(dev, &iommu, &domain, &devid);
1733
1734 if (!iommu || !domain)
1735 return map_sg_no_iommu(dev, sglist, nelems, dir);
1736
Joerg Roedel5b28df62008-12-02 17:49:42 +01001737 if (!dma_ops_domain(domain))
1738 return 0;
1739
Joerg Roedel65b050a2008-06-26 21:28:02 +02001740 spin_lock_irqsave(&domain->lock, flags);
1741
1742 for_each_sg(sglist, s, nelems, i) {
1743 paddr = sg_phys(s);
1744
1745 s->dma_address = __map_single(dev, iommu, domain->priv,
Joerg Roedel832a90c2008-09-18 15:54:23 +02001746 paddr, s->length, dir, false,
1747 dma_mask);
Joerg Roedel65b050a2008-06-26 21:28:02 +02001748
1749 if (s->dma_address) {
1750 s->dma_length = s->length;
1751 mapped_elems++;
1752 } else
1753 goto unmap;
Joerg Roedel65b050a2008-06-26 21:28:02 +02001754 }
1755
Joerg Roedel09ee17e2008-12-03 12:19:27 +01001756 iommu_completion_wait(iommu);
Joerg Roedel65b050a2008-06-26 21:28:02 +02001757
1758out:
1759 spin_unlock_irqrestore(&domain->lock, flags);
1760
1761 return mapped_elems;
1762unmap:
1763 for_each_sg(sglist, s, mapped_elems, i) {
1764 if (s->dma_address)
1765 __unmap_single(iommu, domain->priv, s->dma_address,
1766 s->dma_length, dir);
1767 s->dma_address = s->dma_length = 0;
1768 }
1769
1770 mapped_elems = 0;
1771
1772 goto out;
1773}
1774
Joerg Roedel431b2a22008-07-11 17:14:22 +02001775/*
1776 * The exported map_sg function for dma_ops (handles scatter-gather
1777 * lists).
1778 */
Joerg Roedel65b050a2008-06-26 21:28:02 +02001779static void unmap_sg(struct device *dev, struct scatterlist *sglist,
FUJITA Tomonori160c1d82009-01-05 23:59:02 +09001780 int nelems, enum dma_data_direction dir,
1781 struct dma_attrs *attrs)
Joerg Roedel65b050a2008-06-26 21:28:02 +02001782{
1783 unsigned long flags;
1784 struct amd_iommu *iommu;
1785 struct protection_domain *domain;
1786 struct scatterlist *s;
1787 u16 devid;
1788 int i;
1789
Joerg Roedel55877a62008-12-12 15:12:14 +01001790 INC_STATS_COUNTER(cnt_unmap_sg);
1791
Joerg Roedeldbcc1122008-09-04 15:04:26 +02001792 if (!check_device(dev) ||
1793 !get_device_resources(dev, &iommu, &domain, &devid))
Joerg Roedel65b050a2008-06-26 21:28:02 +02001794 return;
1795
Joerg Roedel5b28df62008-12-02 17:49:42 +01001796 if (!dma_ops_domain(domain))
1797 return;
1798
Joerg Roedel65b050a2008-06-26 21:28:02 +02001799 spin_lock_irqsave(&domain->lock, flags);
1800
1801 for_each_sg(sglist, s, nelems, i) {
1802 __unmap_single(iommu, domain->priv, s->dma_address,
1803 s->dma_length, dir);
Joerg Roedel65b050a2008-06-26 21:28:02 +02001804 s->dma_address = s->dma_length = 0;
1805 }
1806
Joerg Roedel09ee17e2008-12-03 12:19:27 +01001807 iommu_completion_wait(iommu);
Joerg Roedel65b050a2008-06-26 21:28:02 +02001808
1809 spin_unlock_irqrestore(&domain->lock, flags);
1810}
1811
Joerg Roedel431b2a22008-07-11 17:14:22 +02001812/*
1813 * The exported alloc_coherent function for dma_ops.
1814 */
Joerg Roedel5d8b53c2008-06-26 21:28:03 +02001815static void *alloc_coherent(struct device *dev, size_t size,
1816 dma_addr_t *dma_addr, gfp_t flag)
1817{
1818 unsigned long flags;
1819 void *virt_addr;
1820 struct amd_iommu *iommu;
1821 struct protection_domain *domain;
1822 u16 devid;
1823 phys_addr_t paddr;
Joerg Roedel832a90c2008-09-18 15:54:23 +02001824 u64 dma_mask = dev->coherent_dma_mask;
Joerg Roedel5d8b53c2008-06-26 21:28:03 +02001825
Joerg Roedelc8f0fb32008-12-12 15:14:21 +01001826 INC_STATS_COUNTER(cnt_alloc_coherent);
1827
Joerg Roedeldbcc1122008-09-04 15:04:26 +02001828 if (!check_device(dev))
1829 return NULL;
1830
FUJITA Tomonori13d9fea2008-09-10 20:19:40 +09001831 if (!get_device_resources(dev, &iommu, &domain, &devid))
1832 flag &= ~(__GFP_DMA | __GFP_HIGHMEM | __GFP_DMA32);
1833
Joerg Roedelc97ac532008-09-11 10:59:15 +02001834 flag |= __GFP_ZERO;
Joerg Roedel5d8b53c2008-06-26 21:28:03 +02001835 virt_addr = (void *)__get_free_pages(flag, get_order(size));
1836 if (!virt_addr)
Jaswinder Singh Rajputb25ae672009-07-01 19:53:14 +05301837 return NULL;
Joerg Roedel5d8b53c2008-06-26 21:28:03 +02001838
Joerg Roedel5d8b53c2008-06-26 21:28:03 +02001839 paddr = virt_to_phys(virt_addr);
1840
Joerg Roedel5d8b53c2008-06-26 21:28:03 +02001841 if (!iommu || !domain) {
1842 *dma_addr = (dma_addr_t)paddr;
1843 return virt_addr;
1844 }
1845
Joerg Roedel5b28df62008-12-02 17:49:42 +01001846 if (!dma_ops_domain(domain))
1847 goto out_free;
1848
Joerg Roedel832a90c2008-09-18 15:54:23 +02001849 if (!dma_mask)
1850 dma_mask = *dev->dma_mask;
1851
Joerg Roedel5d8b53c2008-06-26 21:28:03 +02001852 spin_lock_irqsave(&domain->lock, flags);
1853
1854 *dma_addr = __map_single(dev, iommu, domain->priv, paddr,
Joerg Roedel832a90c2008-09-18 15:54:23 +02001855 size, DMA_BIDIRECTIONAL, true, dma_mask);
Joerg Roedel5d8b53c2008-06-26 21:28:03 +02001856
Jiri Slaby367d04c2009-05-28 09:54:48 +02001857 if (*dma_addr == bad_dma_address) {
1858 spin_unlock_irqrestore(&domain->lock, flags);
Joerg Roedel5b28df62008-12-02 17:49:42 +01001859 goto out_free;
Jiri Slaby367d04c2009-05-28 09:54:48 +02001860 }
Joerg Roedel5d8b53c2008-06-26 21:28:03 +02001861
Joerg Roedel09ee17e2008-12-03 12:19:27 +01001862 iommu_completion_wait(iommu);
Joerg Roedel5d8b53c2008-06-26 21:28:03 +02001863
Joerg Roedel5d8b53c2008-06-26 21:28:03 +02001864 spin_unlock_irqrestore(&domain->lock, flags);
1865
1866 return virt_addr;
Joerg Roedel5b28df62008-12-02 17:49:42 +01001867
1868out_free:
1869
1870 free_pages((unsigned long)virt_addr, get_order(size));
1871
1872 return NULL;
Joerg Roedel5d8b53c2008-06-26 21:28:03 +02001873}
1874
Joerg Roedel431b2a22008-07-11 17:14:22 +02001875/*
1876 * The exported free_coherent function for dma_ops.
Joerg Roedel431b2a22008-07-11 17:14:22 +02001877 */
Joerg Roedel5d8b53c2008-06-26 21:28:03 +02001878static void free_coherent(struct device *dev, size_t size,
1879 void *virt_addr, dma_addr_t dma_addr)
1880{
1881 unsigned long flags;
1882 struct amd_iommu *iommu;
1883 struct protection_domain *domain;
1884 u16 devid;
1885
Joerg Roedel5d31ee72008-12-12 15:16:38 +01001886 INC_STATS_COUNTER(cnt_free_coherent);
1887
Joerg Roedeldbcc1122008-09-04 15:04:26 +02001888 if (!check_device(dev))
1889 return;
1890
Joerg Roedel5d8b53c2008-06-26 21:28:03 +02001891 get_device_resources(dev, &iommu, &domain, &devid);
1892
1893 if (!iommu || !domain)
1894 goto free_mem;
1895
Joerg Roedel5b28df62008-12-02 17:49:42 +01001896 if (!dma_ops_domain(domain))
1897 goto free_mem;
1898
Joerg Roedel5d8b53c2008-06-26 21:28:03 +02001899 spin_lock_irqsave(&domain->lock, flags);
1900
1901 __unmap_single(iommu, domain->priv, dma_addr, size, DMA_BIDIRECTIONAL);
Joerg Roedel5d8b53c2008-06-26 21:28:03 +02001902
Joerg Roedel09ee17e2008-12-03 12:19:27 +01001903 iommu_completion_wait(iommu);
Joerg Roedel5d8b53c2008-06-26 21:28:03 +02001904
1905 spin_unlock_irqrestore(&domain->lock, flags);
1906
1907free_mem:
1908 free_pages((unsigned long)virt_addr, get_order(size));
1909}
1910
Joerg Roedelc432f3d2008-06-26 21:28:04 +02001911/*
Joerg Roedelb39ba6a2008-09-09 18:40:46 +02001912 * This function is called by the DMA layer to find out if we can handle a
1913 * particular device. It is part of the dma_ops.
1914 */
1915static int amd_iommu_dma_supported(struct device *dev, u64 mask)
1916{
1917 u16 bdf;
1918 struct pci_dev *pcidev;
1919
1920 /* No device or no PCI device */
1921 if (!dev || dev->bus != &pci_bus_type)
1922 return 0;
1923
1924 pcidev = to_pci_dev(dev);
1925
1926 bdf = calc_devid(pcidev->bus->number, pcidev->devfn);
1927
1928 /* Out of our scope? */
1929 if (bdf > amd_iommu_last_bdf)
1930 return 0;
1931
1932 return 1;
1933}
1934
1935/*
Joerg Roedel431b2a22008-07-11 17:14:22 +02001936 * The function for pre-allocating protection domains.
1937 *
Joerg Roedelc432f3d2008-06-26 21:28:04 +02001938 * If the driver core informs the DMA layer if a driver grabs a device
1939 * we don't need to preallocate the protection domains anymore.
1940 * For now we have to.
1941 */
Jaswinder Singh Rajput0e93dd82008-12-29 21:45:22 +05301942static void prealloc_protection_domains(void)
Joerg Roedelc432f3d2008-06-26 21:28:04 +02001943{
1944 struct pci_dev *dev = NULL;
1945 struct dma_ops_domain *dma_dom;
1946 struct amd_iommu *iommu;
Joerg Roedelc432f3d2008-06-26 21:28:04 +02001947 u16 devid;
1948
1949 while ((dev = pci_get_device(PCI_ANY_ID, PCI_ANY_ID, dev)) != NULL) {
Joerg Roedeledcb34d2008-12-10 20:01:45 +01001950 devid = calc_devid(dev->bus->number, dev->devfn);
Joerg Roedel3a61ec32008-07-25 13:07:50 +02001951 if (devid > amd_iommu_last_bdf)
Joerg Roedelc432f3d2008-06-26 21:28:04 +02001952 continue;
1953 devid = amd_iommu_alias_table[devid];
1954 if (domain_for_device(devid))
1955 continue;
1956 iommu = amd_iommu_rlookup_table[devid];
1957 if (!iommu)
1958 continue;
Joerg Roedeld9cfed92009-05-19 12:16:29 +02001959 dma_dom = dma_ops_domain_alloc(iommu);
Joerg Roedelc432f3d2008-06-26 21:28:04 +02001960 if (!dma_dom)
1961 continue;
1962 init_unity_mappings_for_device(dma_dom, devid);
Joerg Roedelbd60b732008-09-11 10:24:48 +02001963 dma_dom->target_dev = devid;
1964
1965 list_add_tail(&dma_dom->list, &iommu_pd_list);
Joerg Roedelc432f3d2008-06-26 21:28:04 +02001966 }
1967}
1968
FUJITA Tomonori160c1d82009-01-05 23:59:02 +09001969static struct dma_map_ops amd_iommu_dma_ops = {
Joerg Roedel6631ee92008-06-26 21:28:05 +02001970 .alloc_coherent = alloc_coherent,
1971 .free_coherent = free_coherent,
FUJITA Tomonori51491362009-01-05 23:47:25 +09001972 .map_page = map_page,
1973 .unmap_page = unmap_page,
Joerg Roedel6631ee92008-06-26 21:28:05 +02001974 .map_sg = map_sg,
1975 .unmap_sg = unmap_sg,
Joerg Roedelb39ba6a2008-09-09 18:40:46 +02001976 .dma_supported = amd_iommu_dma_supported,
Joerg Roedel6631ee92008-06-26 21:28:05 +02001977};
1978
Joerg Roedel431b2a22008-07-11 17:14:22 +02001979/*
1980 * The function which clues the AMD IOMMU driver into dma_ops.
1981 */
Joerg Roedel6631ee92008-06-26 21:28:05 +02001982int __init amd_iommu_init_dma_ops(void)
1983{
1984 struct amd_iommu *iommu;
Joerg Roedel6631ee92008-06-26 21:28:05 +02001985 int ret;
1986
Joerg Roedel431b2a22008-07-11 17:14:22 +02001987 /*
1988 * first allocate a default protection domain for every IOMMU we
1989 * found in the system. Devices not assigned to any other
1990 * protection domain will be assigned to the default one.
1991 */
Joerg Roedel3bd22172009-05-04 15:06:20 +02001992 for_each_iommu(iommu) {
Joerg Roedeld9cfed92009-05-19 12:16:29 +02001993 iommu->default_dom = dma_ops_domain_alloc(iommu);
Joerg Roedel6631ee92008-06-26 21:28:05 +02001994 if (iommu->default_dom == NULL)
1995 return -ENOMEM;
Joerg Roedele2dc14a2008-12-10 18:48:59 +01001996 iommu->default_dom->domain.flags |= PD_DEFAULT_MASK;
Joerg Roedel6631ee92008-06-26 21:28:05 +02001997 ret = iommu_init_unity_mappings(iommu);
1998 if (ret)
1999 goto free_domains;
2000 }
2001
Joerg Roedel431b2a22008-07-11 17:14:22 +02002002 /*
2003 * If device isolation is enabled, pre-allocate the protection
2004 * domains for each device.
2005 */
Joerg Roedel6631ee92008-06-26 21:28:05 +02002006 if (amd_iommu_isolate)
2007 prealloc_protection_domains();
2008
2009 iommu_detected = 1;
2010 force_iommu = 1;
2011 bad_dma_address = 0;
Ingo Molnar92af4e22008-06-27 10:48:16 +02002012#ifdef CONFIG_GART_IOMMU
Joerg Roedel6631ee92008-06-26 21:28:05 +02002013 gart_iommu_aperture_disabled = 1;
2014 gart_iommu_aperture = 0;
Ingo Molnar92af4e22008-06-27 10:48:16 +02002015#endif
Joerg Roedel6631ee92008-06-26 21:28:05 +02002016
Joerg Roedel431b2a22008-07-11 17:14:22 +02002017 /* Make the driver finally visible to the drivers */
Joerg Roedel6631ee92008-06-26 21:28:05 +02002018 dma_ops = &amd_iommu_dma_ops;
2019
Joerg Roedel26961ef2008-12-03 17:00:17 +01002020 register_iommu(&amd_iommu_ops);
Joerg Roedel26961ef2008-12-03 17:00:17 +01002021
Joerg Roedele275a2a2008-12-10 18:27:25 +01002022 bus_register_notifier(&pci_bus_type, &device_nb);
2023
Joerg Roedel7f265082008-12-12 13:50:21 +01002024 amd_iommu_stats_init();
2025
Joerg Roedel6631ee92008-06-26 21:28:05 +02002026 return 0;
2027
2028free_domains:
2029
Joerg Roedel3bd22172009-05-04 15:06:20 +02002030 for_each_iommu(iommu) {
Joerg Roedel6631ee92008-06-26 21:28:05 +02002031 if (iommu->default_dom)
2032 dma_ops_domain_free(iommu->default_dom);
2033 }
2034
2035 return ret;
2036}
Joerg Roedel6d98cd82008-12-08 12:05:55 +01002037
2038/*****************************************************************************
2039 *
2040 * The following functions belong to the exported interface of AMD IOMMU
2041 *
2042 * This interface allows access to lower level functions of the IOMMU
2043 * like protection domain handling and assignement of devices to domains
2044 * which is not possible with the dma_ops interface.
2045 *
2046 *****************************************************************************/
2047
Joerg Roedel6d98cd82008-12-08 12:05:55 +01002048static void cleanup_domain(struct protection_domain *domain)
2049{
2050 unsigned long flags;
2051 u16 devid;
2052
2053 write_lock_irqsave(&amd_iommu_devtable_lock, flags);
2054
2055 for (devid = 0; devid <= amd_iommu_last_bdf; ++devid)
2056 if (amd_iommu_pd_table[devid] == domain)
2057 __detach_device(domain, devid);
2058
2059 write_unlock_irqrestore(&amd_iommu_devtable_lock, flags);
2060}
2061
Joerg Roedelc156e342008-12-02 18:13:27 +01002062static int amd_iommu_domain_init(struct iommu_domain *dom)
2063{
2064 struct protection_domain *domain;
2065
2066 domain = kzalloc(sizeof(*domain), GFP_KERNEL);
2067 if (!domain)
2068 return -ENOMEM;
2069
2070 spin_lock_init(&domain->lock);
2071 domain->mode = PAGE_MODE_3_LEVEL;
2072 domain->id = domain_id_alloc();
2073 if (!domain->id)
2074 goto out_free;
2075 domain->pt_root = (void *)get_zeroed_page(GFP_KERNEL);
2076 if (!domain->pt_root)
2077 goto out_free;
2078
2079 dom->priv = domain;
2080
2081 return 0;
2082
2083out_free:
2084 kfree(domain);
2085
2086 return -ENOMEM;
2087}
2088
Joerg Roedel98383fc2008-12-02 18:34:12 +01002089static void amd_iommu_domain_destroy(struct iommu_domain *dom)
2090{
2091 struct protection_domain *domain = dom->priv;
2092
2093 if (!domain)
2094 return;
2095
2096 if (domain->dev_cnt > 0)
2097 cleanup_domain(domain);
2098
2099 BUG_ON(domain->dev_cnt != 0);
2100
2101 free_pagetable(domain);
2102
2103 domain_id_free(domain->id);
2104
2105 kfree(domain);
2106
2107 dom->priv = NULL;
2108}
2109
Joerg Roedel684f2882008-12-08 12:07:44 +01002110static void amd_iommu_detach_device(struct iommu_domain *dom,
2111 struct device *dev)
2112{
2113 struct protection_domain *domain = dom->priv;
2114 struct amd_iommu *iommu;
2115 struct pci_dev *pdev;
2116 u16 devid;
2117
2118 if (dev->bus != &pci_bus_type)
2119 return;
2120
2121 pdev = to_pci_dev(dev);
2122
2123 devid = calc_devid(pdev->bus->number, pdev->devfn);
2124
2125 if (devid > 0)
2126 detach_device(domain, devid);
2127
2128 iommu = amd_iommu_rlookup_table[devid];
2129 if (!iommu)
2130 return;
2131
2132 iommu_queue_inv_dev_entry(iommu, devid);
2133 iommu_completion_wait(iommu);
2134}
2135
Joerg Roedel01106062008-12-02 19:34:11 +01002136static int amd_iommu_attach_device(struct iommu_domain *dom,
2137 struct device *dev)
2138{
2139 struct protection_domain *domain = dom->priv;
2140 struct protection_domain *old_domain;
2141 struct amd_iommu *iommu;
2142 struct pci_dev *pdev;
2143 u16 devid;
2144
2145 if (dev->bus != &pci_bus_type)
2146 return -EINVAL;
2147
2148 pdev = to_pci_dev(dev);
2149
2150 devid = calc_devid(pdev->bus->number, pdev->devfn);
2151
2152 if (devid >= amd_iommu_last_bdf ||
2153 devid != amd_iommu_alias_table[devid])
2154 return -EINVAL;
2155
2156 iommu = amd_iommu_rlookup_table[devid];
2157 if (!iommu)
2158 return -EINVAL;
2159
2160 old_domain = domain_for_device(devid);
2161 if (old_domain)
Joerg Roedel71ff3bc2009-06-08 13:47:33 -07002162 detach_device(old_domain, devid);
Joerg Roedel01106062008-12-02 19:34:11 +01002163
2164 attach_device(iommu, domain, devid);
2165
2166 iommu_completion_wait(iommu);
2167
2168 return 0;
2169}
2170
Joerg Roedelc6229ca2008-12-02 19:48:43 +01002171static int amd_iommu_map_range(struct iommu_domain *dom,
2172 unsigned long iova, phys_addr_t paddr,
2173 size_t size, int iommu_prot)
2174{
2175 struct protection_domain *domain = dom->priv;
2176 unsigned long i, npages = iommu_num_pages(paddr, size, PAGE_SIZE);
2177 int prot = 0;
2178 int ret;
2179
2180 if (iommu_prot & IOMMU_READ)
2181 prot |= IOMMU_PROT_IR;
2182 if (iommu_prot & IOMMU_WRITE)
2183 prot |= IOMMU_PROT_IW;
2184
2185 iova &= PAGE_MASK;
2186 paddr &= PAGE_MASK;
2187
2188 for (i = 0; i < npages; ++i) {
2189 ret = iommu_map_page(domain, iova, paddr, prot);
2190 if (ret)
2191 return ret;
2192
2193 iova += PAGE_SIZE;
2194 paddr += PAGE_SIZE;
2195 }
2196
2197 return 0;
2198}
2199
Joerg Roedeleb74ff62008-12-02 19:59:10 +01002200static void amd_iommu_unmap_range(struct iommu_domain *dom,
2201 unsigned long iova, size_t size)
2202{
2203
2204 struct protection_domain *domain = dom->priv;
2205 unsigned long i, npages = iommu_num_pages(iova, size, PAGE_SIZE);
2206
2207 iova &= PAGE_MASK;
2208
2209 for (i = 0; i < npages; ++i) {
2210 iommu_unmap_page(domain, iova);
2211 iova += PAGE_SIZE;
2212 }
2213
2214 iommu_flush_domain(domain->id);
2215}
2216
Joerg Roedel645c4c82008-12-02 20:05:50 +01002217static phys_addr_t amd_iommu_iova_to_phys(struct iommu_domain *dom,
2218 unsigned long iova)
2219{
2220 struct protection_domain *domain = dom->priv;
2221 unsigned long offset = iova & ~PAGE_MASK;
2222 phys_addr_t paddr;
2223 u64 *pte;
2224
2225 pte = &domain->pt_root[IOMMU_PTE_L2_INDEX(iova)];
2226
2227 if (!IOMMU_PTE_PRESENT(*pte))
2228 return 0;
2229
2230 pte = IOMMU_PTE_PAGE(*pte);
2231 pte = &pte[IOMMU_PTE_L1_INDEX(iova)];
2232
2233 if (!IOMMU_PTE_PRESENT(*pte))
2234 return 0;
2235
2236 pte = IOMMU_PTE_PAGE(*pte);
2237 pte = &pte[IOMMU_PTE_L0_INDEX(iova)];
2238
2239 if (!IOMMU_PTE_PRESENT(*pte))
2240 return 0;
2241
2242 paddr = *pte & IOMMU_PAGE_MASK;
2243 paddr |= offset;
2244
2245 return paddr;
2246}
2247
Sheng Yangdbb9fd82009-03-18 15:33:06 +08002248static int amd_iommu_domain_has_cap(struct iommu_domain *domain,
2249 unsigned long cap)
2250{
2251 return 0;
2252}
2253
Joerg Roedel26961ef2008-12-03 17:00:17 +01002254static struct iommu_ops amd_iommu_ops = {
2255 .domain_init = amd_iommu_domain_init,
2256 .domain_destroy = amd_iommu_domain_destroy,
2257 .attach_dev = amd_iommu_attach_device,
2258 .detach_dev = amd_iommu_detach_device,
2259 .map = amd_iommu_map_range,
2260 .unmap = amd_iommu_unmap_range,
2261 .iova_to_phys = amd_iommu_iova_to_phys,
Sheng Yangdbb9fd82009-03-18 15:33:06 +08002262 .domain_has_cap = amd_iommu_domain_has_cap,
Joerg Roedel26961ef2008-12-03 17:00:17 +01002263};
2264