blob: f95dfe526444a5dac78ee75b16c3c1cc77a1553f [file] [log] [blame]
Joerg Roedelb6c02712008-06-26 21:27:53 +02001/*
2 * Copyright (C) 2007-2008 Advanced Micro Devices, Inc.
3 * Author: Joerg Roedel <joerg.roedel@amd.com>
4 * Leo Duran <leo.duran@amd.com>
5 *
6 * This program is free software; you can redistribute it and/or modify it
7 * under the terms of the GNU General Public License version 2 as published
8 * by the Free Software Foundation.
9 *
10 * This program is distributed in the hope that it will be useful,
11 * but WITHOUT ANY WARRANTY; without even the implied warranty of
12 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
13 * GNU General Public License for more details.
14 *
15 * You should have received a copy of the GNU General Public License
16 * along with this program; if not, write to the Free Software
17 * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
18 */
19
20#include <linux/pci.h>
21#include <linux/gfp.h>
22#include <linux/bitops.h>
Joerg Roedel7f265082008-12-12 13:50:21 +010023#include <linux/debugfs.h>
Joerg Roedelb6c02712008-06-26 21:27:53 +020024#include <linux/scatterlist.h>
FUJITA Tomonori51491362009-01-05 23:47:25 +090025#include <linux/dma-mapping.h>
Joerg Roedelb6c02712008-06-26 21:27:53 +020026#include <linux/iommu-helper.h>
Joerg Roedelc156e342008-12-02 18:13:27 +010027#include <linux/iommu.h>
Joerg Roedelb6c02712008-06-26 21:27:53 +020028#include <asm/proto.h>
FUJITA Tomonori46a7fa22008-07-11 10:23:42 +090029#include <asm/iommu.h>
Joerg Roedel1d9b16d2008-11-27 18:39:15 +010030#include <asm/gart.h>
Joerg Roedelb6c02712008-06-26 21:27:53 +020031#include <asm/amd_iommu_types.h>
Joerg Roedelc6da9922008-06-26 21:28:06 +020032#include <asm/amd_iommu.h>
Joerg Roedelb6c02712008-06-26 21:27:53 +020033
34#define CMD_SET_TYPE(cmd, t) ((cmd)->data[1] |= ((t) << 28))
35
Joerg Roedel136f78a2008-07-11 17:14:27 +020036#define EXIT_LOOP_COUNT 10000000
37
Joerg Roedelb6c02712008-06-26 21:27:53 +020038static DEFINE_RWLOCK(amd_iommu_devtable_lock);
39
Joerg Roedelbd60b732008-09-11 10:24:48 +020040/* A list of preallocated protection domains */
41static LIST_HEAD(iommu_pd_list);
42static DEFINE_SPINLOCK(iommu_pd_list_lock);
43
Joerg Roedel26961ef2008-12-03 17:00:17 +010044#ifdef CONFIG_IOMMU_API
45static struct iommu_ops amd_iommu_ops;
46#endif
47
Joerg Roedel431b2a22008-07-11 17:14:22 +020048/*
49 * general struct to manage commands send to an IOMMU
50 */
Joerg Roedeld6449532008-07-11 17:14:28 +020051struct iommu_cmd {
Joerg Roedelb6c02712008-06-26 21:27:53 +020052 u32 data[4];
53};
54
Joerg Roedelbd0e5212008-06-26 21:27:56 +020055static int dma_ops_unity_map(struct dma_ops_domain *dma_dom,
56 struct unity_map_entry *e);
Joerg Roedele275a2a2008-12-10 18:27:25 +010057static struct dma_ops_domain *find_protection_domain(u16 devid);
Joerg Roedel8bda3092009-05-12 12:02:46 +020058static u64* alloc_pte(struct protection_domain *dom,
59 unsigned long address, u64
60 **pte_page, gfp_t gfp);
Joerg Roedel00cd1222009-05-19 09:52:40 +020061static void dma_ops_reserve_addresses(struct dma_ops_domain *dom,
62 unsigned long start_page,
63 unsigned int pages);
Joerg Roedelbd0e5212008-06-26 21:27:56 +020064
Chris Wrightc1eee672009-05-21 00:56:58 -070065#ifndef BUS_NOTIFY_UNBOUND_DRIVER
66#define BUS_NOTIFY_UNBOUND_DRIVER 0x0005
67#endif
68
Joerg Roedel7f265082008-12-12 13:50:21 +010069#ifdef CONFIG_AMD_IOMMU_STATS
70
71/*
72 * Initialization code for statistics collection
73 */
74
Joerg Roedelda49f6d2008-12-12 14:59:58 +010075DECLARE_STATS_COUNTER(compl_wait);
Joerg Roedel0f2a86f2008-12-12 15:05:16 +010076DECLARE_STATS_COUNTER(cnt_map_single);
Joerg Roedel146a6912008-12-12 15:07:12 +010077DECLARE_STATS_COUNTER(cnt_unmap_single);
Joerg Roedeld03f067a2008-12-12 15:09:48 +010078DECLARE_STATS_COUNTER(cnt_map_sg);
Joerg Roedel55877a62008-12-12 15:12:14 +010079DECLARE_STATS_COUNTER(cnt_unmap_sg);
Joerg Roedelc8f0fb32008-12-12 15:14:21 +010080DECLARE_STATS_COUNTER(cnt_alloc_coherent);
Joerg Roedel5d31ee72008-12-12 15:16:38 +010081DECLARE_STATS_COUNTER(cnt_free_coherent);
Joerg Roedelc1858972008-12-12 15:42:39 +010082DECLARE_STATS_COUNTER(cross_page);
Joerg Roedelf57d98a2008-12-12 15:46:29 +010083DECLARE_STATS_COUNTER(domain_flush_single);
Joerg Roedel18811f52008-12-12 15:48:28 +010084DECLARE_STATS_COUNTER(domain_flush_all);
Joerg Roedel5774f7c2008-12-12 15:57:30 +010085DECLARE_STATS_COUNTER(alloced_io_mem);
Joerg Roedel8ecaf8f2008-12-12 16:13:04 +010086DECLARE_STATS_COUNTER(total_map_requests);
Joerg Roedelda49f6d2008-12-12 14:59:58 +010087
Joerg Roedel7f265082008-12-12 13:50:21 +010088static struct dentry *stats_dir;
89static struct dentry *de_isolate;
90static struct dentry *de_fflush;
91
92static void amd_iommu_stats_add(struct __iommu_counter *cnt)
93{
94 if (stats_dir == NULL)
95 return;
96
97 cnt->dent = debugfs_create_u64(cnt->name, 0444, stats_dir,
98 &cnt->value);
99}
100
101static void amd_iommu_stats_init(void)
102{
103 stats_dir = debugfs_create_dir("amd-iommu", NULL);
104 if (stats_dir == NULL)
105 return;
106
107 de_isolate = debugfs_create_bool("isolation", 0444, stats_dir,
108 (u32 *)&amd_iommu_isolate);
109
110 de_fflush = debugfs_create_bool("fullflush", 0444, stats_dir,
111 (u32 *)&amd_iommu_unmap_flush);
Joerg Roedelda49f6d2008-12-12 14:59:58 +0100112
113 amd_iommu_stats_add(&compl_wait);
Joerg Roedel0f2a86f2008-12-12 15:05:16 +0100114 amd_iommu_stats_add(&cnt_map_single);
Joerg Roedel146a6912008-12-12 15:07:12 +0100115 amd_iommu_stats_add(&cnt_unmap_single);
Joerg Roedeld03f067a2008-12-12 15:09:48 +0100116 amd_iommu_stats_add(&cnt_map_sg);
Joerg Roedel55877a62008-12-12 15:12:14 +0100117 amd_iommu_stats_add(&cnt_unmap_sg);
Joerg Roedelc8f0fb32008-12-12 15:14:21 +0100118 amd_iommu_stats_add(&cnt_alloc_coherent);
Joerg Roedel5d31ee72008-12-12 15:16:38 +0100119 amd_iommu_stats_add(&cnt_free_coherent);
Joerg Roedelc1858972008-12-12 15:42:39 +0100120 amd_iommu_stats_add(&cross_page);
Joerg Roedelf57d98a2008-12-12 15:46:29 +0100121 amd_iommu_stats_add(&domain_flush_single);
Joerg Roedel18811f52008-12-12 15:48:28 +0100122 amd_iommu_stats_add(&domain_flush_all);
Joerg Roedel5774f7c2008-12-12 15:57:30 +0100123 amd_iommu_stats_add(&alloced_io_mem);
Joerg Roedel8ecaf8f2008-12-12 16:13:04 +0100124 amd_iommu_stats_add(&total_map_requests);
Joerg Roedel7f265082008-12-12 13:50:21 +0100125}
126
127#endif
128
Joerg Roedel431b2a22008-07-11 17:14:22 +0200129/* returns !0 if the IOMMU is caching non-present entries in its TLB */
Joerg Roedel4da70b92008-06-26 21:28:01 +0200130static int iommu_has_npcache(struct amd_iommu *iommu)
131{
Joerg Roedelae9b9402008-10-30 17:43:57 +0100132 return iommu->cap & (1UL << IOMMU_CAP_NPCACHE);
Joerg Roedel4da70b92008-06-26 21:28:01 +0200133}
134
Joerg Roedel431b2a22008-07-11 17:14:22 +0200135/****************************************************************************
136 *
Joerg Roedela80dc3e2008-09-11 16:51:41 +0200137 * Interrupt handling functions
138 *
139 ****************************************************************************/
140
Joerg Roedel90008ee2008-09-09 16:41:05 +0200141static void iommu_print_event(void *__evt)
142{
143 u32 *event = __evt;
144 int type = (event[1] >> EVENT_TYPE_SHIFT) & EVENT_TYPE_MASK;
145 int devid = (event[0] >> EVENT_DEVID_SHIFT) & EVENT_DEVID_MASK;
146 int domid = (event[1] >> EVENT_DOMID_SHIFT) & EVENT_DOMID_MASK;
147 int flags = (event[1] >> EVENT_FLAGS_SHIFT) & EVENT_FLAGS_MASK;
148 u64 address = (u64)(((u64)event[3]) << 32) | event[2];
149
150 printk(KERN_ERR "AMD IOMMU: Event logged [");
151
152 switch (type) {
153 case EVENT_TYPE_ILL_DEV:
154 printk("ILLEGAL_DEV_TABLE_ENTRY device=%02x:%02x.%x "
155 "address=0x%016llx flags=0x%04x]\n",
156 PCI_BUS(devid), PCI_SLOT(devid), PCI_FUNC(devid),
157 address, flags);
158 break;
159 case EVENT_TYPE_IO_FAULT:
160 printk("IO_PAGE_FAULT device=%02x:%02x.%x "
161 "domain=0x%04x address=0x%016llx flags=0x%04x]\n",
162 PCI_BUS(devid), PCI_SLOT(devid), PCI_FUNC(devid),
163 domid, address, flags);
164 break;
165 case EVENT_TYPE_DEV_TAB_ERR:
166 printk("DEV_TAB_HARDWARE_ERROR device=%02x:%02x.%x "
167 "address=0x%016llx flags=0x%04x]\n",
168 PCI_BUS(devid), PCI_SLOT(devid), PCI_FUNC(devid),
169 address, flags);
170 break;
171 case EVENT_TYPE_PAGE_TAB_ERR:
172 printk("PAGE_TAB_HARDWARE_ERROR device=%02x:%02x.%x "
173 "domain=0x%04x address=0x%016llx flags=0x%04x]\n",
174 PCI_BUS(devid), PCI_SLOT(devid), PCI_FUNC(devid),
175 domid, address, flags);
176 break;
177 case EVENT_TYPE_ILL_CMD:
178 printk("ILLEGAL_COMMAND_ERROR address=0x%016llx]\n", address);
179 break;
180 case EVENT_TYPE_CMD_HARD_ERR:
181 printk("COMMAND_HARDWARE_ERROR address=0x%016llx "
182 "flags=0x%04x]\n", address, flags);
183 break;
184 case EVENT_TYPE_IOTLB_INV_TO:
185 printk("IOTLB_INV_TIMEOUT device=%02x:%02x.%x "
186 "address=0x%016llx]\n",
187 PCI_BUS(devid), PCI_SLOT(devid), PCI_FUNC(devid),
188 address);
189 break;
190 case EVENT_TYPE_INV_DEV_REQ:
191 printk("INVALID_DEVICE_REQUEST device=%02x:%02x.%x "
192 "address=0x%016llx flags=0x%04x]\n",
193 PCI_BUS(devid), PCI_SLOT(devid), PCI_FUNC(devid),
194 address, flags);
195 break;
196 default:
197 printk(KERN_ERR "UNKNOWN type=0x%02x]\n", type);
198 }
199}
200
201static void iommu_poll_events(struct amd_iommu *iommu)
202{
203 u32 head, tail;
204 unsigned long flags;
205
206 spin_lock_irqsave(&iommu->lock, flags);
207
208 head = readl(iommu->mmio_base + MMIO_EVT_HEAD_OFFSET);
209 tail = readl(iommu->mmio_base + MMIO_EVT_TAIL_OFFSET);
210
211 while (head != tail) {
212 iommu_print_event(iommu->evt_buf + head);
213 head = (head + EVENT_ENTRY_SIZE) % iommu->evt_buf_size;
214 }
215
216 writel(head, iommu->mmio_base + MMIO_EVT_HEAD_OFFSET);
217
218 spin_unlock_irqrestore(&iommu->lock, flags);
219}
220
Joerg Roedela80dc3e2008-09-11 16:51:41 +0200221irqreturn_t amd_iommu_int_handler(int irq, void *data)
222{
Joerg Roedel90008ee2008-09-09 16:41:05 +0200223 struct amd_iommu *iommu;
224
Joerg Roedel3bd22172009-05-04 15:06:20 +0200225 for_each_iommu(iommu)
Joerg Roedel90008ee2008-09-09 16:41:05 +0200226 iommu_poll_events(iommu);
227
228 return IRQ_HANDLED;
Joerg Roedela80dc3e2008-09-11 16:51:41 +0200229}
230
231/****************************************************************************
232 *
Joerg Roedel431b2a22008-07-11 17:14:22 +0200233 * IOMMU command queuing functions
234 *
235 ****************************************************************************/
236
237/*
238 * Writes the command to the IOMMUs command buffer and informs the
239 * hardware about the new command. Must be called with iommu->lock held.
240 */
Joerg Roedeld6449532008-07-11 17:14:28 +0200241static int __iommu_queue_command(struct amd_iommu *iommu, struct iommu_cmd *cmd)
Joerg Roedela19ae1e2008-06-26 21:27:55 +0200242{
243 u32 tail, head;
244 u8 *target;
245
246 tail = readl(iommu->mmio_base + MMIO_CMD_TAIL_OFFSET);
Jiri Kosina8a7c5ef2008-08-19 02:13:55 +0200247 target = iommu->cmd_buf + tail;
Joerg Roedela19ae1e2008-06-26 21:27:55 +0200248 memcpy_toio(target, cmd, sizeof(*cmd));
249 tail = (tail + sizeof(*cmd)) % iommu->cmd_buf_size;
250 head = readl(iommu->mmio_base + MMIO_CMD_HEAD_OFFSET);
251 if (tail == head)
252 return -ENOMEM;
253 writel(tail, iommu->mmio_base + MMIO_CMD_TAIL_OFFSET);
254
255 return 0;
256}
257
Joerg Roedel431b2a22008-07-11 17:14:22 +0200258/*
259 * General queuing function for commands. Takes iommu->lock and calls
260 * __iommu_queue_command().
261 */
Joerg Roedeld6449532008-07-11 17:14:28 +0200262static int iommu_queue_command(struct amd_iommu *iommu, struct iommu_cmd *cmd)
Joerg Roedela19ae1e2008-06-26 21:27:55 +0200263{
264 unsigned long flags;
265 int ret;
266
267 spin_lock_irqsave(&iommu->lock, flags);
268 ret = __iommu_queue_command(iommu, cmd);
Joerg Roedel09ee17e2008-12-03 12:19:27 +0100269 if (!ret)
Joerg Roedel0cfd7aa2008-12-10 19:58:00 +0100270 iommu->need_sync = true;
Joerg Roedela19ae1e2008-06-26 21:27:55 +0200271 spin_unlock_irqrestore(&iommu->lock, flags);
272
273 return ret;
274}
275
Joerg Roedel431b2a22008-07-11 17:14:22 +0200276/*
Joerg Roedel8d201962008-12-02 20:34:41 +0100277 * This function waits until an IOMMU has completed a completion
278 * wait command
Joerg Roedel431b2a22008-07-11 17:14:22 +0200279 */
Joerg Roedel8d201962008-12-02 20:34:41 +0100280static void __iommu_wait_for_completion(struct amd_iommu *iommu)
Joerg Roedela19ae1e2008-06-26 21:27:55 +0200281{
Joerg Roedel8d201962008-12-02 20:34:41 +0100282 int ready = 0;
Joerg Roedel519c31b2008-08-14 19:55:15 +0200283 unsigned status = 0;
Joerg Roedel8d201962008-12-02 20:34:41 +0100284 unsigned long i = 0;
Joerg Roedela19ae1e2008-06-26 21:27:55 +0200285
Joerg Roedelda49f6d2008-12-12 14:59:58 +0100286 INC_STATS_COUNTER(compl_wait);
287
Joerg Roedel136f78a2008-07-11 17:14:27 +0200288 while (!ready && (i < EXIT_LOOP_COUNT)) {
289 ++i;
Joerg Roedel519c31b2008-08-14 19:55:15 +0200290 /* wait for the bit to become one */
291 status = readl(iommu->mmio_base + MMIO_STATUS_OFFSET);
292 ready = status & MMIO_STATUS_COM_WAIT_INT_MASK;
Joerg Roedel136f78a2008-07-11 17:14:27 +0200293 }
294
Joerg Roedel519c31b2008-08-14 19:55:15 +0200295 /* set bit back to zero */
296 status &= ~MMIO_STATUS_COM_WAIT_INT_MASK;
297 writel(status, iommu->mmio_base + MMIO_STATUS_OFFSET);
298
Joerg Roedel84df8172008-12-17 16:36:44 +0100299 if (unlikely(i == EXIT_LOOP_COUNT))
300 panic("AMD IOMMU: Completion wait loop failed\n");
Joerg Roedel8d201962008-12-02 20:34:41 +0100301}
302
303/*
304 * This function queues a completion wait command into the command
305 * buffer of an IOMMU
306 */
307static int __iommu_completion_wait(struct amd_iommu *iommu)
308{
309 struct iommu_cmd cmd;
310
311 memset(&cmd, 0, sizeof(cmd));
312 cmd.data[0] = CMD_COMPL_WAIT_INT_MASK;
313 CMD_SET_TYPE(&cmd, CMD_COMPL_WAIT);
314
315 return __iommu_queue_command(iommu, &cmd);
316}
317
318/*
319 * This function is called whenever we need to ensure that the IOMMU has
320 * completed execution of all commands we sent. It sends a
321 * COMPLETION_WAIT command and waits for it to finish. The IOMMU informs
322 * us about that by writing a value to a physical address we pass with
323 * the command.
324 */
325static int iommu_completion_wait(struct amd_iommu *iommu)
326{
327 int ret = 0;
328 unsigned long flags;
329
330 spin_lock_irqsave(&iommu->lock, flags);
331
332 if (!iommu->need_sync)
333 goto out;
334
335 ret = __iommu_completion_wait(iommu);
336
Joerg Roedel0cfd7aa2008-12-10 19:58:00 +0100337 iommu->need_sync = false;
Joerg Roedel8d201962008-12-02 20:34:41 +0100338
339 if (ret)
340 goto out;
341
342 __iommu_wait_for_completion(iommu);
Joerg Roedel84df8172008-12-17 16:36:44 +0100343
Joerg Roedel7e4f88d2008-09-17 14:19:15 +0200344out:
345 spin_unlock_irqrestore(&iommu->lock, flags);
Joerg Roedela19ae1e2008-06-26 21:27:55 +0200346
347 return 0;
348}
349
Joerg Roedel431b2a22008-07-11 17:14:22 +0200350/*
351 * Command send function for invalidating a device table entry
352 */
Joerg Roedela19ae1e2008-06-26 21:27:55 +0200353static int iommu_queue_inv_dev_entry(struct amd_iommu *iommu, u16 devid)
354{
Joerg Roedeld6449532008-07-11 17:14:28 +0200355 struct iommu_cmd cmd;
Joerg Roedelee2fa742008-09-17 13:47:25 +0200356 int ret;
Joerg Roedela19ae1e2008-06-26 21:27:55 +0200357
358 BUG_ON(iommu == NULL);
359
360 memset(&cmd, 0, sizeof(cmd));
361 CMD_SET_TYPE(&cmd, CMD_INV_DEV_ENTRY);
362 cmd.data[0] = devid;
363
Joerg Roedelee2fa742008-09-17 13:47:25 +0200364 ret = iommu_queue_command(iommu, &cmd);
365
Joerg Roedelee2fa742008-09-17 13:47:25 +0200366 return ret;
Joerg Roedela19ae1e2008-06-26 21:27:55 +0200367}
368
Joerg Roedel237b6f32008-12-02 20:54:37 +0100369static void __iommu_build_inv_iommu_pages(struct iommu_cmd *cmd, u64 address,
370 u16 domid, int pde, int s)
371{
372 memset(cmd, 0, sizeof(*cmd));
373 address &= PAGE_MASK;
374 CMD_SET_TYPE(cmd, CMD_INV_IOMMU_PAGES);
375 cmd->data[1] |= domid;
376 cmd->data[2] = lower_32_bits(address);
377 cmd->data[3] = upper_32_bits(address);
378 if (s) /* size bit - we flush more than one 4kb page */
379 cmd->data[2] |= CMD_INV_IOMMU_PAGES_SIZE_MASK;
380 if (pde) /* PDE bit - we wan't flush everything not only the PTEs */
381 cmd->data[2] |= CMD_INV_IOMMU_PAGES_PDE_MASK;
382}
383
Joerg Roedel431b2a22008-07-11 17:14:22 +0200384/*
385 * Generic command send function for invalidaing TLB entries
386 */
Joerg Roedela19ae1e2008-06-26 21:27:55 +0200387static int iommu_queue_inv_iommu_pages(struct amd_iommu *iommu,
388 u64 address, u16 domid, int pde, int s)
389{
Joerg Roedeld6449532008-07-11 17:14:28 +0200390 struct iommu_cmd cmd;
Joerg Roedelee2fa742008-09-17 13:47:25 +0200391 int ret;
Joerg Roedela19ae1e2008-06-26 21:27:55 +0200392
Joerg Roedel237b6f32008-12-02 20:54:37 +0100393 __iommu_build_inv_iommu_pages(&cmd, address, domid, pde, s);
Joerg Roedela19ae1e2008-06-26 21:27:55 +0200394
Joerg Roedelee2fa742008-09-17 13:47:25 +0200395 ret = iommu_queue_command(iommu, &cmd);
396
Joerg Roedelee2fa742008-09-17 13:47:25 +0200397 return ret;
Joerg Roedela19ae1e2008-06-26 21:27:55 +0200398}
399
Joerg Roedel431b2a22008-07-11 17:14:22 +0200400/*
401 * TLB invalidation function which is called from the mapping functions.
402 * It invalidates a single PTE if the range to flush is within a single
403 * page. Otherwise it flushes the whole TLB of the IOMMU.
404 */
Joerg Roedela19ae1e2008-06-26 21:27:55 +0200405static int iommu_flush_pages(struct amd_iommu *iommu, u16 domid,
406 u64 address, size_t size)
407{
Joerg Roedel999ba412008-07-03 19:35:08 +0200408 int s = 0;
Joerg Roedele3c449f2008-10-15 22:02:11 -0700409 unsigned pages = iommu_num_pages(address, size, PAGE_SIZE);
Joerg Roedela19ae1e2008-06-26 21:27:55 +0200410
411 address &= PAGE_MASK;
412
Joerg Roedel999ba412008-07-03 19:35:08 +0200413 if (pages > 1) {
414 /*
415 * If we have to flush more than one page, flush all
416 * TLB entries for this domain
417 */
418 address = CMD_INV_IOMMU_ALL_PAGES_ADDRESS;
419 s = 1;
Joerg Roedela19ae1e2008-06-26 21:27:55 +0200420 }
421
Joerg Roedel999ba412008-07-03 19:35:08 +0200422 iommu_queue_inv_iommu_pages(iommu, address, domid, 0, s);
423
Joerg Roedela19ae1e2008-06-26 21:27:55 +0200424 return 0;
425}
Joerg Roedelb6c02712008-06-26 21:27:53 +0200426
Joerg Roedel1c655772008-09-04 18:40:05 +0200427/* Flush the whole IO/TLB for a given protection domain */
428static void iommu_flush_tlb(struct amd_iommu *iommu, u16 domid)
429{
430 u64 address = CMD_INV_IOMMU_ALL_PAGES_ADDRESS;
431
Joerg Roedelf57d98a2008-12-12 15:46:29 +0100432 INC_STATS_COUNTER(domain_flush_single);
433
Joerg Roedel1c655772008-09-04 18:40:05 +0200434 iommu_queue_inv_iommu_pages(iommu, address, domid, 0, 1);
435}
436
Chris Wright42a49f92009-06-15 15:42:00 +0200437/* Flush the whole IO/TLB for a given protection domain - including PDE */
438static void iommu_flush_tlb_pde(struct amd_iommu *iommu, u16 domid)
439{
440 u64 address = CMD_INV_IOMMU_ALL_PAGES_ADDRESS;
441
442 INC_STATS_COUNTER(domain_flush_single);
443
444 iommu_queue_inv_iommu_pages(iommu, address, domid, 1, 1);
445}
446
Joerg Roedel43f49602008-12-02 21:01:12 +0100447/*
448 * This function is used to flush the IO/TLB for a given protection domain
449 * on every IOMMU in the system
450 */
451static void iommu_flush_domain(u16 domid)
452{
453 unsigned long flags;
454 struct amd_iommu *iommu;
455 struct iommu_cmd cmd;
456
Joerg Roedel18811f52008-12-12 15:48:28 +0100457 INC_STATS_COUNTER(domain_flush_all);
458
Joerg Roedel43f49602008-12-02 21:01:12 +0100459 __iommu_build_inv_iommu_pages(&cmd, CMD_INV_IOMMU_ALL_PAGES_ADDRESS,
460 domid, 1, 1);
461
Joerg Roedel3bd22172009-05-04 15:06:20 +0200462 for_each_iommu(iommu) {
Joerg Roedel43f49602008-12-02 21:01:12 +0100463 spin_lock_irqsave(&iommu->lock, flags);
464 __iommu_queue_command(iommu, &cmd);
465 __iommu_completion_wait(iommu);
466 __iommu_wait_for_completion(iommu);
467 spin_unlock_irqrestore(&iommu->lock, flags);
468 }
469}
Joerg Roedel43f49602008-12-02 21:01:12 +0100470
Joerg Roedelbfd1be12009-05-05 15:33:57 +0200471void amd_iommu_flush_all_domains(void)
472{
473 int i;
474
475 for (i = 1; i < MAX_DOMAIN_ID; ++i) {
476 if (!test_bit(i, amd_iommu_pd_alloc_bitmap))
477 continue;
478 iommu_flush_domain(i);
479 }
480}
481
Joerg Roedel7d7a1102009-05-05 15:48:10 +0200482void amd_iommu_flush_all_devices(void)
483{
484 struct amd_iommu *iommu;
485 int i;
486
487 for (i = 0; i <= amd_iommu_last_bdf; ++i) {
488 if (amd_iommu_pd_table[i] == NULL)
489 continue;
490
491 iommu = amd_iommu_rlookup_table[i];
492 if (!iommu)
493 continue;
494
495 iommu_queue_inv_dev_entry(iommu, i);
496 iommu_completion_wait(iommu);
497 }
498}
499
Joerg Roedel431b2a22008-07-11 17:14:22 +0200500/****************************************************************************
501 *
502 * The functions below are used the create the page table mappings for
503 * unity mapped regions.
504 *
505 ****************************************************************************/
506
507/*
508 * Generic mapping functions. It maps a physical address into a DMA
509 * address space. It allocates the page table pages if necessary.
510 * In the future it can be extended to a generic mapping function
511 * supporting all features of AMD IOMMU page tables like level skipping
512 * and full 64 bit address spaces.
513 */
Joerg Roedel38e817f2008-12-02 17:27:52 +0100514static int iommu_map_page(struct protection_domain *dom,
515 unsigned long bus_addr,
516 unsigned long phys_addr,
517 int prot)
Joerg Roedelbd0e5212008-06-26 21:27:56 +0200518{
Joerg Roedel8bda3092009-05-12 12:02:46 +0200519 u64 __pte, *pte;
Joerg Roedelbd0e5212008-06-26 21:27:56 +0200520
521 bus_addr = PAGE_ALIGN(bus_addr);
Joerg Roedelbb9d4ff2008-12-04 15:59:48 +0100522 phys_addr = PAGE_ALIGN(phys_addr);
Joerg Roedelbd0e5212008-06-26 21:27:56 +0200523
524 /* only support 512GB address spaces for now */
525 if (bus_addr > IOMMU_MAP_SIZE_L3 || !(prot & IOMMU_PROT_MASK))
526 return -EINVAL;
527
Joerg Roedel8bda3092009-05-12 12:02:46 +0200528 pte = alloc_pte(dom, bus_addr, NULL, GFP_KERNEL);
Joerg Roedelbd0e5212008-06-26 21:27:56 +0200529
530 if (IOMMU_PTE_PRESENT(*pte))
531 return -EBUSY;
532
533 __pte = phys_addr | IOMMU_PTE_P;
534 if (prot & IOMMU_PROT_IR)
535 __pte |= IOMMU_PTE_IR;
536 if (prot & IOMMU_PROT_IW)
537 __pte |= IOMMU_PTE_IW;
538
539 *pte = __pte;
540
541 return 0;
542}
543
Joerg Roedeleb74ff62008-12-02 19:59:10 +0100544static void iommu_unmap_page(struct protection_domain *dom,
545 unsigned long bus_addr)
546{
547 u64 *pte;
548
549 pte = &dom->pt_root[IOMMU_PTE_L2_INDEX(bus_addr)];
550
551 if (!IOMMU_PTE_PRESENT(*pte))
552 return;
553
554 pte = IOMMU_PTE_PAGE(*pte);
555 pte = &pte[IOMMU_PTE_L1_INDEX(bus_addr)];
556
557 if (!IOMMU_PTE_PRESENT(*pte))
558 return;
559
560 pte = IOMMU_PTE_PAGE(*pte);
561 pte = &pte[IOMMU_PTE_L1_INDEX(bus_addr)];
562
563 *pte = 0;
564}
Joerg Roedeleb74ff62008-12-02 19:59:10 +0100565
Joerg Roedel431b2a22008-07-11 17:14:22 +0200566/*
567 * This function checks if a specific unity mapping entry is needed for
568 * this specific IOMMU.
569 */
Joerg Roedelbd0e5212008-06-26 21:27:56 +0200570static int iommu_for_unity_map(struct amd_iommu *iommu,
571 struct unity_map_entry *entry)
572{
573 u16 bdf, i;
574
575 for (i = entry->devid_start; i <= entry->devid_end; ++i) {
576 bdf = amd_iommu_alias_table[i];
577 if (amd_iommu_rlookup_table[bdf] == iommu)
578 return 1;
579 }
580
581 return 0;
582}
583
Joerg Roedel431b2a22008-07-11 17:14:22 +0200584/*
585 * Init the unity mappings for a specific IOMMU in the system
586 *
587 * Basically iterates over all unity mapping entries and applies them to
588 * the default domain DMA of that IOMMU if necessary.
589 */
Joerg Roedelbd0e5212008-06-26 21:27:56 +0200590static int iommu_init_unity_mappings(struct amd_iommu *iommu)
591{
592 struct unity_map_entry *entry;
593 int ret;
594
595 list_for_each_entry(entry, &amd_iommu_unity_map, list) {
596 if (!iommu_for_unity_map(iommu, entry))
597 continue;
598 ret = dma_ops_unity_map(iommu->default_dom, entry);
599 if (ret)
600 return ret;
601 }
602
603 return 0;
604}
605
Joerg Roedel431b2a22008-07-11 17:14:22 +0200606/*
607 * This function actually applies the mapping to the page table of the
608 * dma_ops domain.
609 */
Joerg Roedelbd0e5212008-06-26 21:27:56 +0200610static int dma_ops_unity_map(struct dma_ops_domain *dma_dom,
611 struct unity_map_entry *e)
612{
613 u64 addr;
614 int ret;
615
616 for (addr = e->address_start; addr < e->address_end;
617 addr += PAGE_SIZE) {
Joerg Roedel38e817f2008-12-02 17:27:52 +0100618 ret = iommu_map_page(&dma_dom->domain, addr, addr, e->prot);
Joerg Roedelbd0e5212008-06-26 21:27:56 +0200619 if (ret)
620 return ret;
621 /*
622 * if unity mapping is in aperture range mark the page
623 * as allocated in the aperture
624 */
625 if (addr < dma_dom->aperture_size)
Joerg Roedelc3239562009-05-12 10:56:44 +0200626 __set_bit(addr >> PAGE_SHIFT,
Joerg Roedel384de722009-05-15 12:30:05 +0200627 dma_dom->aperture[0]->bitmap);
Joerg Roedelbd0e5212008-06-26 21:27:56 +0200628 }
629
630 return 0;
631}
632
Joerg Roedel431b2a22008-07-11 17:14:22 +0200633/*
634 * Inits the unity mappings required for a specific device
635 */
Joerg Roedelbd0e5212008-06-26 21:27:56 +0200636static int init_unity_mappings_for_device(struct dma_ops_domain *dma_dom,
637 u16 devid)
638{
639 struct unity_map_entry *e;
640 int ret;
641
642 list_for_each_entry(e, &amd_iommu_unity_map, list) {
643 if (!(devid >= e->devid_start && devid <= e->devid_end))
644 continue;
645 ret = dma_ops_unity_map(dma_dom, e);
646 if (ret)
647 return ret;
648 }
649
650 return 0;
651}
652
Joerg Roedel431b2a22008-07-11 17:14:22 +0200653/****************************************************************************
654 *
655 * The next functions belong to the address allocator for the dma_ops
656 * interface functions. They work like the allocators in the other IOMMU
657 * drivers. Its basically a bitmap which marks the allocated pages in
658 * the aperture. Maybe it could be enhanced in the future to a more
659 * efficient allocator.
660 *
661 ****************************************************************************/
Joerg Roedeld3086442008-06-26 21:27:57 +0200662
Joerg Roedel431b2a22008-07-11 17:14:22 +0200663/*
Joerg Roedel384de722009-05-15 12:30:05 +0200664 * The address allocator core functions.
Joerg Roedel431b2a22008-07-11 17:14:22 +0200665 *
666 * called with domain->lock held
667 */
Joerg Roedel384de722009-05-15 12:30:05 +0200668
Joerg Roedel9cabe892009-05-18 16:38:55 +0200669/*
Joerg Roedel00cd1222009-05-19 09:52:40 +0200670 * This function checks if there is a PTE for a given dma address. If
671 * there is one, it returns the pointer to it.
672 */
673static u64* fetch_pte(struct protection_domain *domain,
674 unsigned long address)
675{
676 u64 *pte;
677
678 pte = &domain->pt_root[IOMMU_PTE_L2_INDEX(address)];
679
680 if (!IOMMU_PTE_PRESENT(*pte))
681 return NULL;
682
683 pte = IOMMU_PTE_PAGE(*pte);
684 pte = &pte[IOMMU_PTE_L1_INDEX(address)];
685
686 if (!IOMMU_PTE_PRESENT(*pte))
687 return NULL;
688
689 pte = IOMMU_PTE_PAGE(*pte);
690 pte = &pte[IOMMU_PTE_L0_INDEX(address)];
691
692 return pte;
693}
694
695/*
Joerg Roedel9cabe892009-05-18 16:38:55 +0200696 * This function is used to add a new aperture range to an existing
697 * aperture in case of dma_ops domain allocation or address allocation
698 * failure.
699 */
Joerg Roedel00cd1222009-05-19 09:52:40 +0200700static int alloc_new_range(struct amd_iommu *iommu,
701 struct dma_ops_domain *dma_dom,
Joerg Roedel9cabe892009-05-18 16:38:55 +0200702 bool populate, gfp_t gfp)
703{
704 int index = dma_dom->aperture_size >> APERTURE_RANGE_SHIFT;
Joerg Roedel00cd1222009-05-19 09:52:40 +0200705 int i;
Joerg Roedel9cabe892009-05-18 16:38:55 +0200706
Joerg Roedelf5e97052009-05-22 12:31:53 +0200707#ifdef CONFIG_IOMMU_STRESS
708 populate = false;
709#endif
710
Joerg Roedel9cabe892009-05-18 16:38:55 +0200711 if (index >= APERTURE_MAX_RANGES)
712 return -ENOMEM;
713
714 dma_dom->aperture[index] = kzalloc(sizeof(struct aperture_range), gfp);
715 if (!dma_dom->aperture[index])
716 return -ENOMEM;
717
718 dma_dom->aperture[index]->bitmap = (void *)get_zeroed_page(gfp);
719 if (!dma_dom->aperture[index]->bitmap)
720 goto out_free;
721
722 dma_dom->aperture[index]->offset = dma_dom->aperture_size;
723
724 if (populate) {
725 unsigned long address = dma_dom->aperture_size;
726 int i, num_ptes = APERTURE_RANGE_PAGES / 512;
727 u64 *pte, *pte_page;
728
729 for (i = 0; i < num_ptes; ++i) {
730 pte = alloc_pte(&dma_dom->domain, address,
731 &pte_page, gfp);
732 if (!pte)
733 goto out_free;
734
735 dma_dom->aperture[index]->pte_pages[i] = pte_page;
736
737 address += APERTURE_RANGE_SIZE / 64;
738 }
739 }
740
741 dma_dom->aperture_size += APERTURE_RANGE_SIZE;
742
Joerg Roedel00cd1222009-05-19 09:52:40 +0200743 /* Intialize the exclusion range if necessary */
744 if (iommu->exclusion_start &&
745 iommu->exclusion_start >= dma_dom->aperture[index]->offset &&
746 iommu->exclusion_start < dma_dom->aperture_size) {
747 unsigned long startpage = iommu->exclusion_start >> PAGE_SHIFT;
748 int pages = iommu_num_pages(iommu->exclusion_start,
749 iommu->exclusion_length,
750 PAGE_SIZE);
751 dma_ops_reserve_addresses(dma_dom, startpage, pages);
752 }
753
754 /*
755 * Check for areas already mapped as present in the new aperture
756 * range and mark those pages as reserved in the allocator. Such
757 * mappings may already exist as a result of requested unity
758 * mappings for devices.
759 */
760 for (i = dma_dom->aperture[index]->offset;
761 i < dma_dom->aperture_size;
762 i += PAGE_SIZE) {
763 u64 *pte = fetch_pte(&dma_dom->domain, i);
764 if (!pte || !IOMMU_PTE_PRESENT(*pte))
765 continue;
766
767 dma_ops_reserve_addresses(dma_dom, i << PAGE_SHIFT, 1);
768 }
769
Joerg Roedel9cabe892009-05-18 16:38:55 +0200770 return 0;
771
772out_free:
773 free_page((unsigned long)dma_dom->aperture[index]->bitmap);
774
775 kfree(dma_dom->aperture[index]);
776 dma_dom->aperture[index] = NULL;
777
778 return -ENOMEM;
779}
780
Joerg Roedel384de722009-05-15 12:30:05 +0200781static unsigned long dma_ops_area_alloc(struct device *dev,
782 struct dma_ops_domain *dom,
783 unsigned int pages,
784 unsigned long align_mask,
785 u64 dma_mask,
786 unsigned long start)
787{
Joerg Roedel803b8cb42009-05-18 15:32:48 +0200788 unsigned long next_bit = dom->next_address % APERTURE_RANGE_SIZE;
Joerg Roedel384de722009-05-15 12:30:05 +0200789 int max_index = dom->aperture_size >> APERTURE_RANGE_SHIFT;
790 int i = start >> APERTURE_RANGE_SHIFT;
791 unsigned long boundary_size;
792 unsigned long address = -1;
793 unsigned long limit;
794
Joerg Roedel803b8cb42009-05-18 15:32:48 +0200795 next_bit >>= PAGE_SHIFT;
796
Joerg Roedel384de722009-05-15 12:30:05 +0200797 boundary_size = ALIGN(dma_get_seg_boundary(dev) + 1,
798 PAGE_SIZE) >> PAGE_SHIFT;
799
800 for (;i < max_index; ++i) {
801 unsigned long offset = dom->aperture[i]->offset >> PAGE_SHIFT;
802
803 if (dom->aperture[i]->offset >= dma_mask)
804 break;
805
806 limit = iommu_device_max_index(APERTURE_RANGE_PAGES, offset,
807 dma_mask >> PAGE_SHIFT);
808
809 address = iommu_area_alloc(dom->aperture[i]->bitmap,
810 limit, next_bit, pages, 0,
811 boundary_size, align_mask);
812 if (address != -1) {
813 address = dom->aperture[i]->offset +
814 (address << PAGE_SHIFT);
Joerg Roedel803b8cb42009-05-18 15:32:48 +0200815 dom->next_address = address + (pages << PAGE_SHIFT);
Joerg Roedel384de722009-05-15 12:30:05 +0200816 break;
817 }
818
819 next_bit = 0;
820 }
821
822 return address;
823}
824
Joerg Roedeld3086442008-06-26 21:27:57 +0200825static unsigned long dma_ops_alloc_addresses(struct device *dev,
826 struct dma_ops_domain *dom,
Joerg Roedel6d4f3432008-09-04 19:18:02 +0200827 unsigned int pages,
Joerg Roedel832a90c2008-09-18 15:54:23 +0200828 unsigned long align_mask,
829 u64 dma_mask)
Joerg Roedeld3086442008-06-26 21:27:57 +0200830{
Joerg Roedeld3086442008-06-26 21:27:57 +0200831 unsigned long address;
Joerg Roedeld3086442008-06-26 21:27:57 +0200832
Joerg Roedelfe16f082009-05-22 12:27:53 +0200833#ifdef CONFIG_IOMMU_STRESS
834 dom->next_address = 0;
835 dom->need_flush = true;
836#endif
Joerg Roedeld3086442008-06-26 21:27:57 +0200837
Joerg Roedel384de722009-05-15 12:30:05 +0200838 address = dma_ops_area_alloc(dev, dom, pages, align_mask,
Joerg Roedel803b8cb42009-05-18 15:32:48 +0200839 dma_mask, dom->next_address);
Joerg Roedeld3086442008-06-26 21:27:57 +0200840
Joerg Roedel1c655772008-09-04 18:40:05 +0200841 if (address == -1) {
Joerg Roedel803b8cb42009-05-18 15:32:48 +0200842 dom->next_address = 0;
Joerg Roedel384de722009-05-15 12:30:05 +0200843 address = dma_ops_area_alloc(dev, dom, pages, align_mask,
844 dma_mask, 0);
Joerg Roedel1c655772008-09-04 18:40:05 +0200845 dom->need_flush = true;
846 }
Joerg Roedeld3086442008-06-26 21:27:57 +0200847
Joerg Roedel384de722009-05-15 12:30:05 +0200848 if (unlikely(address == -1))
Joerg Roedeld3086442008-06-26 21:27:57 +0200849 address = bad_dma_address;
850
851 WARN_ON((address + (PAGE_SIZE*pages)) > dom->aperture_size);
852
853 return address;
854}
855
Joerg Roedel431b2a22008-07-11 17:14:22 +0200856/*
857 * The address free function.
858 *
859 * called with domain->lock held
860 */
Joerg Roedeld3086442008-06-26 21:27:57 +0200861static void dma_ops_free_addresses(struct dma_ops_domain *dom,
862 unsigned long address,
863 unsigned int pages)
864{
Joerg Roedel384de722009-05-15 12:30:05 +0200865 unsigned i = address >> APERTURE_RANGE_SHIFT;
866 struct aperture_range *range = dom->aperture[i];
Joerg Roedel80be3082008-11-06 14:59:05 +0100867
Joerg Roedel384de722009-05-15 12:30:05 +0200868 BUG_ON(i >= APERTURE_MAX_RANGES || range == NULL);
869
Joerg Roedel47bccd62009-05-22 12:40:54 +0200870#ifdef CONFIG_IOMMU_STRESS
871 if (i < 4)
872 return;
873#endif
874
Joerg Roedel803b8cb42009-05-18 15:32:48 +0200875 if (address >= dom->next_address)
Joerg Roedel80be3082008-11-06 14:59:05 +0100876 dom->need_flush = true;
Joerg Roedel384de722009-05-15 12:30:05 +0200877
878 address = (address % APERTURE_RANGE_SIZE) >> PAGE_SHIFT;
Joerg Roedel803b8cb42009-05-18 15:32:48 +0200879
Joerg Roedel384de722009-05-15 12:30:05 +0200880 iommu_area_free(range->bitmap, address, pages);
881
Joerg Roedeld3086442008-06-26 21:27:57 +0200882}
883
Joerg Roedel431b2a22008-07-11 17:14:22 +0200884/****************************************************************************
885 *
886 * The next functions belong to the domain allocation. A domain is
887 * allocated for every IOMMU as the default domain. If device isolation
888 * is enabled, every device get its own domain. The most important thing
889 * about domains is the page table mapping the DMA address space they
890 * contain.
891 *
892 ****************************************************************************/
893
Joerg Roedelec487d12008-06-26 21:27:58 +0200894static u16 domain_id_alloc(void)
895{
896 unsigned long flags;
897 int id;
898
899 write_lock_irqsave(&amd_iommu_devtable_lock, flags);
900 id = find_first_zero_bit(amd_iommu_pd_alloc_bitmap, MAX_DOMAIN_ID);
901 BUG_ON(id == 0);
902 if (id > 0 && id < MAX_DOMAIN_ID)
903 __set_bit(id, amd_iommu_pd_alloc_bitmap);
904 else
905 id = 0;
906 write_unlock_irqrestore(&amd_iommu_devtable_lock, flags);
907
908 return id;
909}
910
Joerg Roedela2acfb72008-12-02 18:28:53 +0100911static void domain_id_free(int id)
912{
913 unsigned long flags;
914
915 write_lock_irqsave(&amd_iommu_devtable_lock, flags);
916 if (id > 0 && id < MAX_DOMAIN_ID)
917 __clear_bit(id, amd_iommu_pd_alloc_bitmap);
918 write_unlock_irqrestore(&amd_iommu_devtable_lock, flags);
919}
Joerg Roedela2acfb72008-12-02 18:28:53 +0100920
Joerg Roedel431b2a22008-07-11 17:14:22 +0200921/*
922 * Used to reserve address ranges in the aperture (e.g. for exclusion
923 * ranges.
924 */
Joerg Roedelec487d12008-06-26 21:27:58 +0200925static void dma_ops_reserve_addresses(struct dma_ops_domain *dom,
926 unsigned long start_page,
927 unsigned int pages)
928{
Joerg Roedel384de722009-05-15 12:30:05 +0200929 unsigned int i, last_page = dom->aperture_size >> PAGE_SHIFT;
Joerg Roedelec487d12008-06-26 21:27:58 +0200930
931 if (start_page + pages > last_page)
932 pages = last_page - start_page;
933
Joerg Roedel384de722009-05-15 12:30:05 +0200934 for (i = start_page; i < start_page + pages; ++i) {
935 int index = i / APERTURE_RANGE_PAGES;
936 int page = i % APERTURE_RANGE_PAGES;
937 __set_bit(page, dom->aperture[index]->bitmap);
938 }
Joerg Roedelec487d12008-06-26 21:27:58 +0200939}
940
Joerg Roedel86db2e52008-12-02 18:20:21 +0100941static void free_pagetable(struct protection_domain *domain)
Joerg Roedelec487d12008-06-26 21:27:58 +0200942{
943 int i, j;
944 u64 *p1, *p2, *p3;
945
Joerg Roedel86db2e52008-12-02 18:20:21 +0100946 p1 = domain->pt_root;
Joerg Roedelec487d12008-06-26 21:27:58 +0200947
948 if (!p1)
949 return;
950
951 for (i = 0; i < 512; ++i) {
952 if (!IOMMU_PTE_PRESENT(p1[i]))
953 continue;
954
955 p2 = IOMMU_PTE_PAGE(p1[i]);
Joerg Roedel3cc3d842008-12-04 16:44:31 +0100956 for (j = 0; j < 512; ++j) {
Joerg Roedelec487d12008-06-26 21:27:58 +0200957 if (!IOMMU_PTE_PRESENT(p2[j]))
958 continue;
959 p3 = IOMMU_PTE_PAGE(p2[j]);
960 free_page((unsigned long)p3);
961 }
962
963 free_page((unsigned long)p2);
964 }
965
966 free_page((unsigned long)p1);
Joerg Roedel86db2e52008-12-02 18:20:21 +0100967
968 domain->pt_root = NULL;
Joerg Roedelec487d12008-06-26 21:27:58 +0200969}
970
Joerg Roedel431b2a22008-07-11 17:14:22 +0200971/*
972 * Free a domain, only used if something went wrong in the
973 * allocation path and we need to free an already allocated page table
974 */
Joerg Roedelec487d12008-06-26 21:27:58 +0200975static void dma_ops_domain_free(struct dma_ops_domain *dom)
976{
Joerg Roedel384de722009-05-15 12:30:05 +0200977 int i;
978
Joerg Roedelec487d12008-06-26 21:27:58 +0200979 if (!dom)
980 return;
981
Joerg Roedel86db2e52008-12-02 18:20:21 +0100982 free_pagetable(&dom->domain);
Joerg Roedelec487d12008-06-26 21:27:58 +0200983
Joerg Roedel384de722009-05-15 12:30:05 +0200984 for (i = 0; i < APERTURE_MAX_RANGES; ++i) {
985 if (!dom->aperture[i])
986 continue;
987 free_page((unsigned long)dom->aperture[i]->bitmap);
988 kfree(dom->aperture[i]);
989 }
Joerg Roedelec487d12008-06-26 21:27:58 +0200990
991 kfree(dom);
992}
993
Joerg Roedel431b2a22008-07-11 17:14:22 +0200994/*
995 * Allocates a new protection domain usable for the dma_ops functions.
996 * It also intializes the page table and the address allocator data
997 * structures required for the dma_ops interface
998 */
Joerg Roedeld9cfed92009-05-19 12:16:29 +0200999static struct dma_ops_domain *dma_ops_domain_alloc(struct amd_iommu *iommu)
Joerg Roedelec487d12008-06-26 21:27:58 +02001000{
1001 struct dma_ops_domain *dma_dom;
Joerg Roedelec487d12008-06-26 21:27:58 +02001002
1003 dma_dom = kzalloc(sizeof(struct dma_ops_domain), GFP_KERNEL);
1004 if (!dma_dom)
1005 return NULL;
1006
1007 spin_lock_init(&dma_dom->domain.lock);
1008
1009 dma_dom->domain.id = domain_id_alloc();
1010 if (dma_dom->domain.id == 0)
1011 goto free_dma_dom;
1012 dma_dom->domain.mode = PAGE_MODE_3_LEVEL;
1013 dma_dom->domain.pt_root = (void *)get_zeroed_page(GFP_KERNEL);
Joerg Roedel9fdb19d2008-12-02 17:46:25 +01001014 dma_dom->domain.flags = PD_DMA_OPS_MASK;
Joerg Roedelec487d12008-06-26 21:27:58 +02001015 dma_dom->domain.priv = dma_dom;
1016 if (!dma_dom->domain.pt_root)
1017 goto free_dma_dom;
Joerg Roedelec487d12008-06-26 21:27:58 +02001018
Joerg Roedel1c655772008-09-04 18:40:05 +02001019 dma_dom->need_flush = false;
Joerg Roedelbd60b732008-09-11 10:24:48 +02001020 dma_dom->target_dev = 0xffff;
Joerg Roedel1c655772008-09-04 18:40:05 +02001021
Joerg Roedel00cd1222009-05-19 09:52:40 +02001022 if (alloc_new_range(iommu, dma_dom, true, GFP_KERNEL))
Joerg Roedelec487d12008-06-26 21:27:58 +02001023 goto free_dma_dom;
Joerg Roedelec487d12008-06-26 21:27:58 +02001024
Joerg Roedel431b2a22008-07-11 17:14:22 +02001025 /*
Joerg Roedelec487d12008-06-26 21:27:58 +02001026 * mark the first page as allocated so we never return 0 as
1027 * a valid dma-address. So we can use 0 as error value
Joerg Roedel431b2a22008-07-11 17:14:22 +02001028 */
Joerg Roedel384de722009-05-15 12:30:05 +02001029 dma_dom->aperture[0]->bitmap[0] = 1;
Joerg Roedel803b8cb42009-05-18 15:32:48 +02001030 dma_dom->next_address = 0;
Joerg Roedelec487d12008-06-26 21:27:58 +02001031
Joerg Roedelec487d12008-06-26 21:27:58 +02001032
1033 return dma_dom;
1034
1035free_dma_dom:
1036 dma_ops_domain_free(dma_dom);
1037
1038 return NULL;
1039}
1040
Joerg Roedel431b2a22008-07-11 17:14:22 +02001041/*
Joerg Roedel5b28df62008-12-02 17:49:42 +01001042 * little helper function to check whether a given protection domain is a
1043 * dma_ops domain
1044 */
1045static bool dma_ops_domain(struct protection_domain *domain)
1046{
1047 return domain->flags & PD_DMA_OPS_MASK;
1048}
1049
1050/*
Joerg Roedel431b2a22008-07-11 17:14:22 +02001051 * Find out the protection domain structure for a given PCI device. This
1052 * will give us the pointer to the page table root for example.
1053 */
Joerg Roedelb20ac0d2008-06-26 21:27:59 +02001054static struct protection_domain *domain_for_device(u16 devid)
1055{
1056 struct protection_domain *dom;
1057 unsigned long flags;
1058
1059 read_lock_irqsave(&amd_iommu_devtable_lock, flags);
1060 dom = amd_iommu_pd_table[devid];
1061 read_unlock_irqrestore(&amd_iommu_devtable_lock, flags);
1062
1063 return dom;
1064}
1065
Joerg Roedel431b2a22008-07-11 17:14:22 +02001066/*
1067 * If a device is not yet associated with a domain, this function does
1068 * assigns it visible for the hardware
1069 */
Joerg Roedelf1179dc2008-12-10 14:39:51 +01001070static void attach_device(struct amd_iommu *iommu,
1071 struct protection_domain *domain,
1072 u16 devid)
Joerg Roedelb20ac0d2008-06-26 21:27:59 +02001073{
1074 unsigned long flags;
Joerg Roedelb20ac0d2008-06-26 21:27:59 +02001075 u64 pte_root = virt_to_phys(domain->pt_root);
1076
Joerg Roedel863c74e2008-12-02 17:56:36 +01001077 domain->dev_cnt += 1;
1078
Joerg Roedel38ddf412008-09-11 10:38:32 +02001079 pte_root |= (domain->mode & DEV_ENTRY_MODE_MASK)
1080 << DEV_ENTRY_MODE_SHIFT;
1081 pte_root |= IOMMU_PTE_IR | IOMMU_PTE_IW | IOMMU_PTE_P | IOMMU_PTE_TV;
Joerg Roedelb20ac0d2008-06-26 21:27:59 +02001082
1083 write_lock_irqsave(&amd_iommu_devtable_lock, flags);
Joerg Roedel38ddf412008-09-11 10:38:32 +02001084 amd_iommu_dev_table[devid].data[0] = lower_32_bits(pte_root);
1085 amd_iommu_dev_table[devid].data[1] = upper_32_bits(pte_root);
Joerg Roedelb20ac0d2008-06-26 21:27:59 +02001086 amd_iommu_dev_table[devid].data[2] = domain->id;
1087
1088 amd_iommu_pd_table[devid] = domain;
1089 write_unlock_irqrestore(&amd_iommu_devtable_lock, flags);
1090
Chris Wright42a49f92009-06-15 15:42:00 +02001091 /*
1092 * We might boot into a crash-kernel here. The crashed kernel
1093 * left the caches in the IOMMU dirty. So we have to flush
1094 * here to evict all dirty stuff.
1095 */
Joerg Roedelb20ac0d2008-06-26 21:27:59 +02001096 iommu_queue_inv_dev_entry(iommu, devid);
Chris Wright42a49f92009-06-15 15:42:00 +02001097 iommu_flush_tlb_pde(iommu, domain->id);
Joerg Roedelb20ac0d2008-06-26 21:27:59 +02001098}
1099
Joerg Roedel355bf552008-12-08 12:02:41 +01001100/*
1101 * Removes a device from a protection domain (unlocked)
1102 */
1103static void __detach_device(struct protection_domain *domain, u16 devid)
1104{
1105
1106 /* lock domain */
1107 spin_lock(&domain->lock);
1108
1109 /* remove domain from the lookup table */
1110 amd_iommu_pd_table[devid] = NULL;
1111
1112 /* remove entry from the device table seen by the hardware */
1113 amd_iommu_dev_table[devid].data[0] = IOMMU_PTE_P | IOMMU_PTE_TV;
1114 amd_iommu_dev_table[devid].data[1] = 0;
1115 amd_iommu_dev_table[devid].data[2] = 0;
1116
Joerg Roedelc5cca142009-10-09 18:31:20 +02001117 amd_iommu_apply_erratum_63(devid);
1118
Joerg Roedel355bf552008-12-08 12:02:41 +01001119 /* decrease reference counter */
1120 domain->dev_cnt -= 1;
1121
1122 /* ready */
1123 spin_unlock(&domain->lock);
1124}
1125
1126/*
1127 * Removes a device from a protection domain (with devtable_lock held)
1128 */
1129static void detach_device(struct protection_domain *domain, u16 devid)
1130{
1131 unsigned long flags;
1132
1133 /* lock device table */
1134 write_lock_irqsave(&amd_iommu_devtable_lock, flags);
1135 __detach_device(domain, devid);
1136 write_unlock_irqrestore(&amd_iommu_devtable_lock, flags);
1137}
Joerg Roedele275a2a2008-12-10 18:27:25 +01001138
1139static int device_change_notifier(struct notifier_block *nb,
1140 unsigned long action, void *data)
1141{
1142 struct device *dev = data;
1143 struct pci_dev *pdev = to_pci_dev(dev);
1144 u16 devid = calc_devid(pdev->bus->number, pdev->devfn);
1145 struct protection_domain *domain;
1146 struct dma_ops_domain *dma_domain;
1147 struct amd_iommu *iommu;
Joerg Roedel1ac4cbb2008-12-10 19:33:26 +01001148 unsigned long flags;
Joerg Roedele275a2a2008-12-10 18:27:25 +01001149
1150 if (devid > amd_iommu_last_bdf)
1151 goto out;
1152
1153 devid = amd_iommu_alias_table[devid];
1154
1155 iommu = amd_iommu_rlookup_table[devid];
1156 if (iommu == NULL)
1157 goto out;
1158
1159 domain = domain_for_device(devid);
1160
1161 if (domain && !dma_ops_domain(domain))
1162 WARN_ONCE(1, "AMD IOMMU WARNING: device %s already bound "
1163 "to a non-dma-ops domain\n", dev_name(dev));
1164
1165 switch (action) {
Chris Wrightc1eee672009-05-21 00:56:58 -07001166 case BUS_NOTIFY_UNBOUND_DRIVER:
Joerg Roedele275a2a2008-12-10 18:27:25 +01001167 if (!domain)
1168 goto out;
1169 detach_device(domain, devid);
1170 break;
Joerg Roedel1ac4cbb2008-12-10 19:33:26 +01001171 case BUS_NOTIFY_ADD_DEVICE:
1172 /* allocate a protection domain if a device is added */
1173 dma_domain = find_protection_domain(devid);
1174 if (dma_domain)
1175 goto out;
Joerg Roedeld9cfed92009-05-19 12:16:29 +02001176 dma_domain = dma_ops_domain_alloc(iommu);
Joerg Roedel1ac4cbb2008-12-10 19:33:26 +01001177 if (!dma_domain)
1178 goto out;
1179 dma_domain->target_dev = devid;
1180
1181 spin_lock_irqsave(&iommu_pd_list_lock, flags);
1182 list_add_tail(&dma_domain->list, &iommu_pd_list);
1183 spin_unlock_irqrestore(&iommu_pd_list_lock, flags);
1184
1185 break;
Joerg Roedele275a2a2008-12-10 18:27:25 +01001186 default:
1187 goto out;
1188 }
1189
1190 iommu_queue_inv_dev_entry(iommu, devid);
1191 iommu_completion_wait(iommu);
1192
1193out:
1194 return 0;
1195}
1196
Jaswinder Singh Rajputb25ae672009-07-01 19:53:14 +05301197static struct notifier_block device_nb = {
Joerg Roedele275a2a2008-12-10 18:27:25 +01001198 .notifier_call = device_change_notifier,
1199};
Joerg Roedel355bf552008-12-08 12:02:41 +01001200
Joerg Roedel431b2a22008-07-11 17:14:22 +02001201/*****************************************************************************
1202 *
1203 * The next functions belong to the dma_ops mapping/unmapping code.
1204 *
1205 *****************************************************************************/
1206
1207/*
Joerg Roedeldbcc1122008-09-04 15:04:26 +02001208 * This function checks if the driver got a valid device from the caller to
1209 * avoid dereferencing invalid pointers.
1210 */
1211static bool check_device(struct device *dev)
1212{
1213 if (!dev || !dev->dma_mask)
1214 return false;
1215
1216 return true;
1217}
1218
1219/*
Joerg Roedelbd60b732008-09-11 10:24:48 +02001220 * In this function the list of preallocated protection domains is traversed to
1221 * find the domain for a specific device
1222 */
1223static struct dma_ops_domain *find_protection_domain(u16 devid)
1224{
1225 struct dma_ops_domain *entry, *ret = NULL;
1226 unsigned long flags;
1227
1228 if (list_empty(&iommu_pd_list))
1229 return NULL;
1230
1231 spin_lock_irqsave(&iommu_pd_list_lock, flags);
1232
1233 list_for_each_entry(entry, &iommu_pd_list, list) {
1234 if (entry->target_dev == devid) {
1235 ret = entry;
Joerg Roedelbd60b732008-09-11 10:24:48 +02001236 break;
1237 }
1238 }
1239
1240 spin_unlock_irqrestore(&iommu_pd_list_lock, flags);
1241
1242 return ret;
1243}
1244
1245/*
Joerg Roedel431b2a22008-07-11 17:14:22 +02001246 * In the dma_ops path we only have the struct device. This function
1247 * finds the corresponding IOMMU, the protection domain and the
1248 * requestor id for a given device.
1249 * If the device is not yet associated with a domain this is also done
1250 * in this function.
1251 */
Joerg Roedelb20ac0d2008-06-26 21:27:59 +02001252static int get_device_resources(struct device *dev,
1253 struct amd_iommu **iommu,
1254 struct protection_domain **domain,
1255 u16 *bdf)
1256{
1257 struct dma_ops_domain *dma_dom;
1258 struct pci_dev *pcidev;
1259 u16 _bdf;
1260
Joerg Roedeldbcc1122008-09-04 15:04:26 +02001261 *iommu = NULL;
1262 *domain = NULL;
1263 *bdf = 0xffff;
1264
1265 if (dev->bus != &pci_bus_type)
1266 return 0;
Joerg Roedelb20ac0d2008-06-26 21:27:59 +02001267
1268 pcidev = to_pci_dev(dev);
Joerg Roedeld591b0a2008-07-11 17:14:35 +02001269 _bdf = calc_devid(pcidev->bus->number, pcidev->devfn);
Joerg Roedelb20ac0d2008-06-26 21:27:59 +02001270
Joerg Roedel431b2a22008-07-11 17:14:22 +02001271 /* device not translated by any IOMMU in the system? */
Joerg Roedeldbcc1122008-09-04 15:04:26 +02001272 if (_bdf > amd_iommu_last_bdf)
Joerg Roedelb20ac0d2008-06-26 21:27:59 +02001273 return 0;
Joerg Roedelb20ac0d2008-06-26 21:27:59 +02001274
1275 *bdf = amd_iommu_alias_table[_bdf];
1276
1277 *iommu = amd_iommu_rlookup_table[*bdf];
1278 if (*iommu == NULL)
1279 return 0;
Joerg Roedelb20ac0d2008-06-26 21:27:59 +02001280 *domain = domain_for_device(*bdf);
1281 if (*domain == NULL) {
Joerg Roedelbd60b732008-09-11 10:24:48 +02001282 dma_dom = find_protection_domain(*bdf);
1283 if (!dma_dom)
1284 dma_dom = (*iommu)->default_dom;
Joerg Roedelb20ac0d2008-06-26 21:27:59 +02001285 *domain = &dma_dom->domain;
Joerg Roedelf1179dc2008-12-10 14:39:51 +01001286 attach_device(*iommu, *domain, *bdf);
Joerg Roedele9a22a12009-06-09 12:00:37 +02001287 DUMP_printk("Using protection domain %d for device %s\n",
1288 (*domain)->id, dev_name(dev));
Joerg Roedelb20ac0d2008-06-26 21:27:59 +02001289 }
1290
Joerg Roedelf91ba192008-11-25 12:56:12 +01001291 if (domain_for_device(_bdf) == NULL)
Joerg Roedelf1179dc2008-12-10 14:39:51 +01001292 attach_device(*iommu, *domain, _bdf);
Joerg Roedelf91ba192008-11-25 12:56:12 +01001293
Joerg Roedelb20ac0d2008-06-26 21:27:59 +02001294 return 1;
1295}
1296
Joerg Roedel431b2a22008-07-11 17:14:22 +02001297/*
Joerg Roedel8bda3092009-05-12 12:02:46 +02001298 * If the pte_page is not yet allocated this function is called
1299 */
1300static u64* alloc_pte(struct protection_domain *dom,
1301 unsigned long address, u64 **pte_page, gfp_t gfp)
1302{
1303 u64 *pte, *page;
1304
1305 pte = &dom->pt_root[IOMMU_PTE_L2_INDEX(address)];
1306
1307 if (!IOMMU_PTE_PRESENT(*pte)) {
1308 page = (u64 *)get_zeroed_page(gfp);
1309 if (!page)
1310 return NULL;
1311 *pte = IOMMU_L2_PDE(virt_to_phys(page));
1312 }
1313
1314 pte = IOMMU_PTE_PAGE(*pte);
1315 pte = &pte[IOMMU_PTE_L1_INDEX(address)];
1316
1317 if (!IOMMU_PTE_PRESENT(*pte)) {
1318 page = (u64 *)get_zeroed_page(gfp);
1319 if (!page)
1320 return NULL;
1321 *pte = IOMMU_L1_PDE(virt_to_phys(page));
1322 }
1323
1324 pte = IOMMU_PTE_PAGE(*pte);
1325
1326 if (pte_page)
1327 *pte_page = pte;
1328
1329 pte = &pte[IOMMU_PTE_L0_INDEX(address)];
1330
1331 return pte;
1332}
1333
1334/*
1335 * This function fetches the PTE for a given address in the aperture
1336 */
1337static u64* dma_ops_get_pte(struct dma_ops_domain *dom,
1338 unsigned long address)
1339{
Joerg Roedel384de722009-05-15 12:30:05 +02001340 struct aperture_range *aperture;
Joerg Roedel8bda3092009-05-12 12:02:46 +02001341 u64 *pte, *pte_page;
1342
Joerg Roedel384de722009-05-15 12:30:05 +02001343 aperture = dom->aperture[APERTURE_RANGE_INDEX(address)];
1344 if (!aperture)
1345 return NULL;
1346
1347 pte = aperture->pte_pages[APERTURE_PAGE_INDEX(address)];
Joerg Roedel8bda3092009-05-12 12:02:46 +02001348 if (!pte) {
1349 pte = alloc_pte(&dom->domain, address, &pte_page, GFP_ATOMIC);
Joerg Roedel384de722009-05-15 12:30:05 +02001350 aperture->pte_pages[APERTURE_PAGE_INDEX(address)] = pte_page;
1351 } else
1352 pte += IOMMU_PTE_L0_INDEX(address);
Joerg Roedel8bda3092009-05-12 12:02:46 +02001353
1354 return pte;
1355}
1356
1357/*
Joerg Roedel431b2a22008-07-11 17:14:22 +02001358 * This is the generic map function. It maps one 4kb page at paddr to
1359 * the given address in the DMA address space for the domain.
1360 */
Joerg Roedelcb76c322008-06-26 21:28:00 +02001361static dma_addr_t dma_ops_domain_map(struct amd_iommu *iommu,
1362 struct dma_ops_domain *dom,
1363 unsigned long address,
1364 phys_addr_t paddr,
1365 int direction)
1366{
1367 u64 *pte, __pte;
1368
1369 WARN_ON(address > dom->aperture_size);
1370
1371 paddr &= PAGE_MASK;
1372
Joerg Roedel8bda3092009-05-12 12:02:46 +02001373 pte = dma_ops_get_pte(dom, address);
Joerg Roedel53812c12009-05-12 12:17:38 +02001374 if (!pte)
1375 return bad_dma_address;
Joerg Roedelcb76c322008-06-26 21:28:00 +02001376
1377 __pte = paddr | IOMMU_PTE_P | IOMMU_PTE_FC;
1378
1379 if (direction == DMA_TO_DEVICE)
1380 __pte |= IOMMU_PTE_IR;
1381 else if (direction == DMA_FROM_DEVICE)
1382 __pte |= IOMMU_PTE_IW;
1383 else if (direction == DMA_BIDIRECTIONAL)
1384 __pte |= IOMMU_PTE_IR | IOMMU_PTE_IW;
1385
1386 WARN_ON(*pte);
1387
1388 *pte = __pte;
1389
1390 return (dma_addr_t)address;
1391}
1392
Joerg Roedel431b2a22008-07-11 17:14:22 +02001393/*
1394 * The generic unmapping function for on page in the DMA address space.
1395 */
Joerg Roedelcb76c322008-06-26 21:28:00 +02001396static void dma_ops_domain_unmap(struct amd_iommu *iommu,
1397 struct dma_ops_domain *dom,
1398 unsigned long address)
1399{
Joerg Roedel384de722009-05-15 12:30:05 +02001400 struct aperture_range *aperture;
Joerg Roedelcb76c322008-06-26 21:28:00 +02001401 u64 *pte;
1402
1403 if (address >= dom->aperture_size)
1404 return;
1405
Joerg Roedel384de722009-05-15 12:30:05 +02001406 aperture = dom->aperture[APERTURE_RANGE_INDEX(address)];
1407 if (!aperture)
1408 return;
Joerg Roedelcb76c322008-06-26 21:28:00 +02001409
Joerg Roedel384de722009-05-15 12:30:05 +02001410 pte = aperture->pte_pages[APERTURE_PAGE_INDEX(address)];
1411 if (!pte)
1412 return;
1413
Joerg Roedelcb76c322008-06-26 21:28:00 +02001414 pte += IOMMU_PTE_L0_INDEX(address);
1415
1416 WARN_ON(!*pte);
1417
1418 *pte = 0ULL;
1419}
1420
Joerg Roedel431b2a22008-07-11 17:14:22 +02001421/*
1422 * This function contains common code for mapping of a physically
Joerg Roedel24f81162008-12-08 14:25:39 +01001423 * contiguous memory region into DMA address space. It is used by all
1424 * mapping functions provided with this IOMMU driver.
Joerg Roedel431b2a22008-07-11 17:14:22 +02001425 * Must be called with the domain lock held.
1426 */
Joerg Roedelcb76c322008-06-26 21:28:00 +02001427static dma_addr_t __map_single(struct device *dev,
1428 struct amd_iommu *iommu,
1429 struct dma_ops_domain *dma_dom,
1430 phys_addr_t paddr,
1431 size_t size,
Joerg Roedel6d4f3432008-09-04 19:18:02 +02001432 int dir,
Joerg Roedel832a90c2008-09-18 15:54:23 +02001433 bool align,
1434 u64 dma_mask)
Joerg Roedelcb76c322008-06-26 21:28:00 +02001435{
1436 dma_addr_t offset = paddr & ~PAGE_MASK;
Joerg Roedel53812c12009-05-12 12:17:38 +02001437 dma_addr_t address, start, ret;
Joerg Roedelcb76c322008-06-26 21:28:00 +02001438 unsigned int pages;
Joerg Roedel6d4f3432008-09-04 19:18:02 +02001439 unsigned long align_mask = 0;
Joerg Roedelcb76c322008-06-26 21:28:00 +02001440 int i;
1441
Joerg Roedele3c449f2008-10-15 22:02:11 -07001442 pages = iommu_num_pages(paddr, size, PAGE_SIZE);
Joerg Roedelcb76c322008-06-26 21:28:00 +02001443 paddr &= PAGE_MASK;
1444
Joerg Roedel8ecaf8f2008-12-12 16:13:04 +01001445 INC_STATS_COUNTER(total_map_requests);
1446
Joerg Roedelc1858972008-12-12 15:42:39 +01001447 if (pages > 1)
1448 INC_STATS_COUNTER(cross_page);
1449
Joerg Roedel6d4f3432008-09-04 19:18:02 +02001450 if (align)
1451 align_mask = (1UL << get_order(size)) - 1;
1452
Joerg Roedel11b83882009-05-19 10:23:15 +02001453retry:
Joerg Roedel832a90c2008-09-18 15:54:23 +02001454 address = dma_ops_alloc_addresses(dev, dma_dom, pages, align_mask,
1455 dma_mask);
Joerg Roedel11b83882009-05-19 10:23:15 +02001456 if (unlikely(address == bad_dma_address)) {
1457 /*
1458 * setting next_address here will let the address
1459 * allocator only scan the new allocated range in the
1460 * first run. This is a small optimization.
1461 */
1462 dma_dom->next_address = dma_dom->aperture_size;
1463
1464 if (alloc_new_range(iommu, dma_dom, false, GFP_ATOMIC))
1465 goto out;
1466
1467 /*
1468 * aperture was sucessfully enlarged by 128 MB, try
1469 * allocation again
1470 */
1471 goto retry;
1472 }
Joerg Roedelcb76c322008-06-26 21:28:00 +02001473
1474 start = address;
1475 for (i = 0; i < pages; ++i) {
Joerg Roedel53812c12009-05-12 12:17:38 +02001476 ret = dma_ops_domain_map(iommu, dma_dom, start, paddr, dir);
1477 if (ret == bad_dma_address)
1478 goto out_unmap;
1479
Joerg Roedelcb76c322008-06-26 21:28:00 +02001480 paddr += PAGE_SIZE;
1481 start += PAGE_SIZE;
1482 }
1483 address += offset;
1484
Joerg Roedel5774f7c2008-12-12 15:57:30 +01001485 ADD_STATS_COUNTER(alloced_io_mem, size);
1486
FUJITA Tomonoriafa9fdc2008-09-20 01:23:30 +09001487 if (unlikely(dma_dom->need_flush && !amd_iommu_unmap_flush)) {
Joerg Roedel1c655772008-09-04 18:40:05 +02001488 iommu_flush_tlb(iommu, dma_dom->domain.id);
1489 dma_dom->need_flush = false;
1490 } else if (unlikely(iommu_has_npcache(iommu)))
Joerg Roedel270cab242008-09-04 15:49:46 +02001491 iommu_flush_pages(iommu, dma_dom->domain.id, address, size);
1492
Joerg Roedelcb76c322008-06-26 21:28:00 +02001493out:
1494 return address;
Joerg Roedel53812c12009-05-12 12:17:38 +02001495
1496out_unmap:
1497
1498 for (--i; i >= 0; --i) {
1499 start -= PAGE_SIZE;
1500 dma_ops_domain_unmap(iommu, dma_dom, start);
1501 }
1502
1503 dma_ops_free_addresses(dma_dom, address, pages);
1504
1505 return bad_dma_address;
Joerg Roedelcb76c322008-06-26 21:28:00 +02001506}
1507
Joerg Roedel431b2a22008-07-11 17:14:22 +02001508/*
1509 * Does the reverse of the __map_single function. Must be called with
1510 * the domain lock held too
1511 */
Joerg Roedelcb76c322008-06-26 21:28:00 +02001512static void __unmap_single(struct amd_iommu *iommu,
1513 struct dma_ops_domain *dma_dom,
1514 dma_addr_t dma_addr,
1515 size_t size,
1516 int dir)
1517{
1518 dma_addr_t i, start;
1519 unsigned int pages;
1520
Joerg Roedelb8d99052008-12-08 14:40:26 +01001521 if ((dma_addr == bad_dma_address) ||
1522 (dma_addr + size > dma_dom->aperture_size))
Joerg Roedelcb76c322008-06-26 21:28:00 +02001523 return;
1524
Joerg Roedele3c449f2008-10-15 22:02:11 -07001525 pages = iommu_num_pages(dma_addr, size, PAGE_SIZE);
Joerg Roedelcb76c322008-06-26 21:28:00 +02001526 dma_addr &= PAGE_MASK;
1527 start = dma_addr;
1528
1529 for (i = 0; i < pages; ++i) {
1530 dma_ops_domain_unmap(iommu, dma_dom, start);
1531 start += PAGE_SIZE;
1532 }
1533
Joerg Roedel5774f7c2008-12-12 15:57:30 +01001534 SUB_STATS_COUNTER(alloced_io_mem, size);
1535
Joerg Roedelcb76c322008-06-26 21:28:00 +02001536 dma_ops_free_addresses(dma_dom, dma_addr, pages);
Joerg Roedel270cab242008-09-04 15:49:46 +02001537
Joerg Roedel80be3082008-11-06 14:59:05 +01001538 if (amd_iommu_unmap_flush || dma_dom->need_flush) {
Joerg Roedel1c655772008-09-04 18:40:05 +02001539 iommu_flush_pages(iommu, dma_dom->domain.id, dma_addr, size);
Joerg Roedel80be3082008-11-06 14:59:05 +01001540 dma_dom->need_flush = false;
1541 }
Joerg Roedelcb76c322008-06-26 21:28:00 +02001542}
1543
Joerg Roedel431b2a22008-07-11 17:14:22 +02001544/*
1545 * The exported map_single function for dma_ops.
1546 */
FUJITA Tomonori51491362009-01-05 23:47:25 +09001547static dma_addr_t map_page(struct device *dev, struct page *page,
1548 unsigned long offset, size_t size,
1549 enum dma_data_direction dir,
1550 struct dma_attrs *attrs)
Joerg Roedel4da70b92008-06-26 21:28:01 +02001551{
1552 unsigned long flags;
1553 struct amd_iommu *iommu;
1554 struct protection_domain *domain;
1555 u16 devid;
1556 dma_addr_t addr;
Joerg Roedel832a90c2008-09-18 15:54:23 +02001557 u64 dma_mask;
FUJITA Tomonori51491362009-01-05 23:47:25 +09001558 phys_addr_t paddr = page_to_phys(page) + offset;
Joerg Roedel4da70b92008-06-26 21:28:01 +02001559
Joerg Roedel0f2a86f2008-12-12 15:05:16 +01001560 INC_STATS_COUNTER(cnt_map_single);
1561
Joerg Roedeldbcc1122008-09-04 15:04:26 +02001562 if (!check_device(dev))
1563 return bad_dma_address;
1564
Joerg Roedel832a90c2008-09-18 15:54:23 +02001565 dma_mask = *dev->dma_mask;
Joerg Roedel4da70b92008-06-26 21:28:01 +02001566
1567 get_device_resources(dev, &iommu, &domain, &devid);
1568
1569 if (iommu == NULL || domain == NULL)
Joerg Roedel431b2a22008-07-11 17:14:22 +02001570 /* device not handled by any AMD IOMMU */
Joerg Roedel4da70b92008-06-26 21:28:01 +02001571 return (dma_addr_t)paddr;
1572
Joerg Roedel5b28df62008-12-02 17:49:42 +01001573 if (!dma_ops_domain(domain))
1574 return bad_dma_address;
1575
Joerg Roedel4da70b92008-06-26 21:28:01 +02001576 spin_lock_irqsave(&domain->lock, flags);
Joerg Roedel832a90c2008-09-18 15:54:23 +02001577 addr = __map_single(dev, iommu, domain->priv, paddr, size, dir, false,
1578 dma_mask);
Joerg Roedel4da70b92008-06-26 21:28:01 +02001579 if (addr == bad_dma_address)
1580 goto out;
1581
Joerg Roedel09ee17e2008-12-03 12:19:27 +01001582 iommu_completion_wait(iommu);
Joerg Roedel4da70b92008-06-26 21:28:01 +02001583
1584out:
1585 spin_unlock_irqrestore(&domain->lock, flags);
1586
1587 return addr;
1588}
1589
Joerg Roedel431b2a22008-07-11 17:14:22 +02001590/*
1591 * The exported unmap_single function for dma_ops.
1592 */
FUJITA Tomonori51491362009-01-05 23:47:25 +09001593static void unmap_page(struct device *dev, dma_addr_t dma_addr, size_t size,
1594 enum dma_data_direction dir, struct dma_attrs *attrs)
Joerg Roedel4da70b92008-06-26 21:28:01 +02001595{
1596 unsigned long flags;
1597 struct amd_iommu *iommu;
1598 struct protection_domain *domain;
1599 u16 devid;
1600
Joerg Roedel146a6912008-12-12 15:07:12 +01001601 INC_STATS_COUNTER(cnt_unmap_single);
1602
Joerg Roedeldbcc1122008-09-04 15:04:26 +02001603 if (!check_device(dev) ||
1604 !get_device_resources(dev, &iommu, &domain, &devid))
Joerg Roedel431b2a22008-07-11 17:14:22 +02001605 /* device not handled by any AMD IOMMU */
Joerg Roedel4da70b92008-06-26 21:28:01 +02001606 return;
1607
Joerg Roedel5b28df62008-12-02 17:49:42 +01001608 if (!dma_ops_domain(domain))
1609 return;
1610
Joerg Roedel4da70b92008-06-26 21:28:01 +02001611 spin_lock_irqsave(&domain->lock, flags);
1612
1613 __unmap_single(iommu, domain->priv, dma_addr, size, dir);
1614
Joerg Roedel09ee17e2008-12-03 12:19:27 +01001615 iommu_completion_wait(iommu);
Joerg Roedel4da70b92008-06-26 21:28:01 +02001616
1617 spin_unlock_irqrestore(&domain->lock, flags);
1618}
1619
Joerg Roedel431b2a22008-07-11 17:14:22 +02001620/*
1621 * This is a special map_sg function which is used if we should map a
1622 * device which is not handled by an AMD IOMMU in the system.
1623 */
Joerg Roedel65b050a2008-06-26 21:28:02 +02001624static int map_sg_no_iommu(struct device *dev, struct scatterlist *sglist,
1625 int nelems, int dir)
1626{
1627 struct scatterlist *s;
1628 int i;
1629
1630 for_each_sg(sglist, s, nelems, i) {
1631 s->dma_address = (dma_addr_t)sg_phys(s);
1632 s->dma_length = s->length;
1633 }
1634
1635 return nelems;
1636}
1637
Joerg Roedel431b2a22008-07-11 17:14:22 +02001638/*
1639 * The exported map_sg function for dma_ops (handles scatter-gather
1640 * lists).
1641 */
Joerg Roedel65b050a2008-06-26 21:28:02 +02001642static int map_sg(struct device *dev, struct scatterlist *sglist,
FUJITA Tomonori160c1d82009-01-05 23:59:02 +09001643 int nelems, enum dma_data_direction dir,
1644 struct dma_attrs *attrs)
Joerg Roedel65b050a2008-06-26 21:28:02 +02001645{
1646 unsigned long flags;
1647 struct amd_iommu *iommu;
1648 struct protection_domain *domain;
1649 u16 devid;
1650 int i;
1651 struct scatterlist *s;
1652 phys_addr_t paddr;
1653 int mapped_elems = 0;
Joerg Roedel832a90c2008-09-18 15:54:23 +02001654 u64 dma_mask;
Joerg Roedel65b050a2008-06-26 21:28:02 +02001655
Joerg Roedeld03f067a2008-12-12 15:09:48 +01001656 INC_STATS_COUNTER(cnt_map_sg);
1657
Joerg Roedeldbcc1122008-09-04 15:04:26 +02001658 if (!check_device(dev))
1659 return 0;
1660
Joerg Roedel832a90c2008-09-18 15:54:23 +02001661 dma_mask = *dev->dma_mask;
Joerg Roedel65b050a2008-06-26 21:28:02 +02001662
1663 get_device_resources(dev, &iommu, &domain, &devid);
1664
1665 if (!iommu || !domain)
1666 return map_sg_no_iommu(dev, sglist, nelems, dir);
1667
Joerg Roedel5b28df62008-12-02 17:49:42 +01001668 if (!dma_ops_domain(domain))
1669 return 0;
1670
Joerg Roedel65b050a2008-06-26 21:28:02 +02001671 spin_lock_irqsave(&domain->lock, flags);
1672
1673 for_each_sg(sglist, s, nelems, i) {
1674 paddr = sg_phys(s);
1675
1676 s->dma_address = __map_single(dev, iommu, domain->priv,
Joerg Roedel832a90c2008-09-18 15:54:23 +02001677 paddr, s->length, dir, false,
1678 dma_mask);
Joerg Roedel65b050a2008-06-26 21:28:02 +02001679
1680 if (s->dma_address) {
1681 s->dma_length = s->length;
1682 mapped_elems++;
1683 } else
1684 goto unmap;
Joerg Roedel65b050a2008-06-26 21:28:02 +02001685 }
1686
Joerg Roedel09ee17e2008-12-03 12:19:27 +01001687 iommu_completion_wait(iommu);
Joerg Roedel65b050a2008-06-26 21:28:02 +02001688
1689out:
1690 spin_unlock_irqrestore(&domain->lock, flags);
1691
1692 return mapped_elems;
1693unmap:
1694 for_each_sg(sglist, s, mapped_elems, i) {
1695 if (s->dma_address)
1696 __unmap_single(iommu, domain->priv, s->dma_address,
1697 s->dma_length, dir);
1698 s->dma_address = s->dma_length = 0;
1699 }
1700
1701 mapped_elems = 0;
1702
1703 goto out;
1704}
1705
Joerg Roedel431b2a22008-07-11 17:14:22 +02001706/*
1707 * The exported map_sg function for dma_ops (handles scatter-gather
1708 * lists).
1709 */
Joerg Roedel65b050a2008-06-26 21:28:02 +02001710static void unmap_sg(struct device *dev, struct scatterlist *sglist,
FUJITA Tomonori160c1d82009-01-05 23:59:02 +09001711 int nelems, enum dma_data_direction dir,
1712 struct dma_attrs *attrs)
Joerg Roedel65b050a2008-06-26 21:28:02 +02001713{
1714 unsigned long flags;
1715 struct amd_iommu *iommu;
1716 struct protection_domain *domain;
1717 struct scatterlist *s;
1718 u16 devid;
1719 int i;
1720
Joerg Roedel55877a62008-12-12 15:12:14 +01001721 INC_STATS_COUNTER(cnt_unmap_sg);
1722
Joerg Roedeldbcc1122008-09-04 15:04:26 +02001723 if (!check_device(dev) ||
1724 !get_device_resources(dev, &iommu, &domain, &devid))
Joerg Roedel65b050a2008-06-26 21:28:02 +02001725 return;
1726
Joerg Roedel5b28df62008-12-02 17:49:42 +01001727 if (!dma_ops_domain(domain))
1728 return;
1729
Joerg Roedel65b050a2008-06-26 21:28:02 +02001730 spin_lock_irqsave(&domain->lock, flags);
1731
1732 for_each_sg(sglist, s, nelems, i) {
1733 __unmap_single(iommu, domain->priv, s->dma_address,
1734 s->dma_length, dir);
Joerg Roedel65b050a2008-06-26 21:28:02 +02001735 s->dma_address = s->dma_length = 0;
1736 }
1737
Joerg Roedel09ee17e2008-12-03 12:19:27 +01001738 iommu_completion_wait(iommu);
Joerg Roedel65b050a2008-06-26 21:28:02 +02001739
1740 spin_unlock_irqrestore(&domain->lock, flags);
1741}
1742
Joerg Roedel431b2a22008-07-11 17:14:22 +02001743/*
1744 * The exported alloc_coherent function for dma_ops.
1745 */
Joerg Roedel5d8b53c2008-06-26 21:28:03 +02001746static void *alloc_coherent(struct device *dev, size_t size,
1747 dma_addr_t *dma_addr, gfp_t flag)
1748{
1749 unsigned long flags;
1750 void *virt_addr;
1751 struct amd_iommu *iommu;
1752 struct protection_domain *domain;
1753 u16 devid;
1754 phys_addr_t paddr;
Joerg Roedel832a90c2008-09-18 15:54:23 +02001755 u64 dma_mask = dev->coherent_dma_mask;
Joerg Roedel5d8b53c2008-06-26 21:28:03 +02001756
Joerg Roedelc8f0fb32008-12-12 15:14:21 +01001757 INC_STATS_COUNTER(cnt_alloc_coherent);
1758
Joerg Roedeldbcc1122008-09-04 15:04:26 +02001759 if (!check_device(dev))
1760 return NULL;
1761
FUJITA Tomonori13d9fea2008-09-10 20:19:40 +09001762 if (!get_device_resources(dev, &iommu, &domain, &devid))
1763 flag &= ~(__GFP_DMA | __GFP_HIGHMEM | __GFP_DMA32);
1764
Joerg Roedelc97ac532008-09-11 10:59:15 +02001765 flag |= __GFP_ZERO;
Joerg Roedel5d8b53c2008-06-26 21:28:03 +02001766 virt_addr = (void *)__get_free_pages(flag, get_order(size));
1767 if (!virt_addr)
Jaswinder Singh Rajputb25ae672009-07-01 19:53:14 +05301768 return NULL;
Joerg Roedel5d8b53c2008-06-26 21:28:03 +02001769
Joerg Roedel5d8b53c2008-06-26 21:28:03 +02001770 paddr = virt_to_phys(virt_addr);
1771
Joerg Roedel5d8b53c2008-06-26 21:28:03 +02001772 if (!iommu || !domain) {
1773 *dma_addr = (dma_addr_t)paddr;
1774 return virt_addr;
1775 }
1776
Joerg Roedel5b28df62008-12-02 17:49:42 +01001777 if (!dma_ops_domain(domain))
1778 goto out_free;
1779
Joerg Roedel832a90c2008-09-18 15:54:23 +02001780 if (!dma_mask)
1781 dma_mask = *dev->dma_mask;
1782
Joerg Roedel5d8b53c2008-06-26 21:28:03 +02001783 spin_lock_irqsave(&domain->lock, flags);
1784
1785 *dma_addr = __map_single(dev, iommu, domain->priv, paddr,
Joerg Roedel832a90c2008-09-18 15:54:23 +02001786 size, DMA_BIDIRECTIONAL, true, dma_mask);
Joerg Roedel5d8b53c2008-06-26 21:28:03 +02001787
Jiri Slaby367d04c2009-05-28 09:54:48 +02001788 if (*dma_addr == bad_dma_address) {
1789 spin_unlock_irqrestore(&domain->lock, flags);
Joerg Roedel5b28df62008-12-02 17:49:42 +01001790 goto out_free;
Jiri Slaby367d04c2009-05-28 09:54:48 +02001791 }
Joerg Roedel5d8b53c2008-06-26 21:28:03 +02001792
Joerg Roedel09ee17e2008-12-03 12:19:27 +01001793 iommu_completion_wait(iommu);
Joerg Roedel5d8b53c2008-06-26 21:28:03 +02001794
Joerg Roedel5d8b53c2008-06-26 21:28:03 +02001795 spin_unlock_irqrestore(&domain->lock, flags);
1796
1797 return virt_addr;
Joerg Roedel5b28df62008-12-02 17:49:42 +01001798
1799out_free:
1800
1801 free_pages((unsigned long)virt_addr, get_order(size));
1802
1803 return NULL;
Joerg Roedel5d8b53c2008-06-26 21:28:03 +02001804}
1805
Joerg Roedel431b2a22008-07-11 17:14:22 +02001806/*
1807 * The exported free_coherent function for dma_ops.
Joerg Roedel431b2a22008-07-11 17:14:22 +02001808 */
Joerg Roedel5d8b53c2008-06-26 21:28:03 +02001809static void free_coherent(struct device *dev, size_t size,
1810 void *virt_addr, dma_addr_t dma_addr)
1811{
1812 unsigned long flags;
1813 struct amd_iommu *iommu;
1814 struct protection_domain *domain;
1815 u16 devid;
1816
Joerg Roedel5d31ee72008-12-12 15:16:38 +01001817 INC_STATS_COUNTER(cnt_free_coherent);
1818
Joerg Roedeldbcc1122008-09-04 15:04:26 +02001819 if (!check_device(dev))
1820 return;
1821
Joerg Roedel5d8b53c2008-06-26 21:28:03 +02001822 get_device_resources(dev, &iommu, &domain, &devid);
1823
1824 if (!iommu || !domain)
1825 goto free_mem;
1826
Joerg Roedel5b28df62008-12-02 17:49:42 +01001827 if (!dma_ops_domain(domain))
1828 goto free_mem;
1829
Joerg Roedel5d8b53c2008-06-26 21:28:03 +02001830 spin_lock_irqsave(&domain->lock, flags);
1831
1832 __unmap_single(iommu, domain->priv, dma_addr, size, DMA_BIDIRECTIONAL);
Joerg Roedel5d8b53c2008-06-26 21:28:03 +02001833
Joerg Roedel09ee17e2008-12-03 12:19:27 +01001834 iommu_completion_wait(iommu);
Joerg Roedel5d8b53c2008-06-26 21:28:03 +02001835
1836 spin_unlock_irqrestore(&domain->lock, flags);
1837
1838free_mem:
1839 free_pages((unsigned long)virt_addr, get_order(size));
1840}
1841
Joerg Roedelc432f3d2008-06-26 21:28:04 +02001842/*
Joerg Roedelb39ba6a2008-09-09 18:40:46 +02001843 * This function is called by the DMA layer to find out if we can handle a
1844 * particular device. It is part of the dma_ops.
1845 */
1846static int amd_iommu_dma_supported(struct device *dev, u64 mask)
1847{
1848 u16 bdf;
1849 struct pci_dev *pcidev;
1850
1851 /* No device or no PCI device */
1852 if (!dev || dev->bus != &pci_bus_type)
1853 return 0;
1854
1855 pcidev = to_pci_dev(dev);
1856
1857 bdf = calc_devid(pcidev->bus->number, pcidev->devfn);
1858
1859 /* Out of our scope? */
1860 if (bdf > amd_iommu_last_bdf)
1861 return 0;
1862
1863 return 1;
1864}
1865
1866/*
Joerg Roedel431b2a22008-07-11 17:14:22 +02001867 * The function for pre-allocating protection domains.
1868 *
Joerg Roedelc432f3d2008-06-26 21:28:04 +02001869 * If the driver core informs the DMA layer if a driver grabs a device
1870 * we don't need to preallocate the protection domains anymore.
1871 * For now we have to.
1872 */
Jaswinder Singh Rajput0e93dd82008-12-29 21:45:22 +05301873static void prealloc_protection_domains(void)
Joerg Roedelc432f3d2008-06-26 21:28:04 +02001874{
1875 struct pci_dev *dev = NULL;
1876 struct dma_ops_domain *dma_dom;
1877 struct amd_iommu *iommu;
Joerg Roedelc432f3d2008-06-26 21:28:04 +02001878 u16 devid;
1879
1880 while ((dev = pci_get_device(PCI_ANY_ID, PCI_ANY_ID, dev)) != NULL) {
Joerg Roedeledcb34d2008-12-10 20:01:45 +01001881 devid = calc_devid(dev->bus->number, dev->devfn);
Joerg Roedel3a61ec32008-07-25 13:07:50 +02001882 if (devid > amd_iommu_last_bdf)
Joerg Roedelc432f3d2008-06-26 21:28:04 +02001883 continue;
1884 devid = amd_iommu_alias_table[devid];
1885 if (domain_for_device(devid))
1886 continue;
1887 iommu = amd_iommu_rlookup_table[devid];
1888 if (!iommu)
1889 continue;
Joerg Roedeld9cfed92009-05-19 12:16:29 +02001890 dma_dom = dma_ops_domain_alloc(iommu);
Joerg Roedelc432f3d2008-06-26 21:28:04 +02001891 if (!dma_dom)
1892 continue;
1893 init_unity_mappings_for_device(dma_dom, devid);
Joerg Roedelbd60b732008-09-11 10:24:48 +02001894 dma_dom->target_dev = devid;
1895
1896 list_add_tail(&dma_dom->list, &iommu_pd_list);
Joerg Roedelc432f3d2008-06-26 21:28:04 +02001897 }
1898}
1899
FUJITA Tomonori160c1d82009-01-05 23:59:02 +09001900static struct dma_map_ops amd_iommu_dma_ops = {
Joerg Roedel6631ee92008-06-26 21:28:05 +02001901 .alloc_coherent = alloc_coherent,
1902 .free_coherent = free_coherent,
FUJITA Tomonori51491362009-01-05 23:47:25 +09001903 .map_page = map_page,
1904 .unmap_page = unmap_page,
Joerg Roedel6631ee92008-06-26 21:28:05 +02001905 .map_sg = map_sg,
1906 .unmap_sg = unmap_sg,
Joerg Roedelb39ba6a2008-09-09 18:40:46 +02001907 .dma_supported = amd_iommu_dma_supported,
Joerg Roedel6631ee92008-06-26 21:28:05 +02001908};
1909
Joerg Roedel431b2a22008-07-11 17:14:22 +02001910/*
1911 * The function which clues the AMD IOMMU driver into dma_ops.
1912 */
Joerg Roedel6631ee92008-06-26 21:28:05 +02001913int __init amd_iommu_init_dma_ops(void)
1914{
1915 struct amd_iommu *iommu;
Joerg Roedel6631ee92008-06-26 21:28:05 +02001916 int ret;
1917
Joerg Roedel431b2a22008-07-11 17:14:22 +02001918 /*
1919 * first allocate a default protection domain for every IOMMU we
1920 * found in the system. Devices not assigned to any other
1921 * protection domain will be assigned to the default one.
1922 */
Joerg Roedel3bd22172009-05-04 15:06:20 +02001923 for_each_iommu(iommu) {
Joerg Roedeld9cfed92009-05-19 12:16:29 +02001924 iommu->default_dom = dma_ops_domain_alloc(iommu);
Joerg Roedel6631ee92008-06-26 21:28:05 +02001925 if (iommu->default_dom == NULL)
1926 return -ENOMEM;
Joerg Roedele2dc14a2008-12-10 18:48:59 +01001927 iommu->default_dom->domain.flags |= PD_DEFAULT_MASK;
Joerg Roedel6631ee92008-06-26 21:28:05 +02001928 ret = iommu_init_unity_mappings(iommu);
1929 if (ret)
1930 goto free_domains;
1931 }
1932
Joerg Roedel431b2a22008-07-11 17:14:22 +02001933 /*
1934 * If device isolation is enabled, pre-allocate the protection
1935 * domains for each device.
1936 */
Joerg Roedel6631ee92008-06-26 21:28:05 +02001937 if (amd_iommu_isolate)
1938 prealloc_protection_domains();
1939
1940 iommu_detected = 1;
1941 force_iommu = 1;
1942 bad_dma_address = 0;
Ingo Molnar92af4e22008-06-27 10:48:16 +02001943#ifdef CONFIG_GART_IOMMU
Joerg Roedel6631ee92008-06-26 21:28:05 +02001944 gart_iommu_aperture_disabled = 1;
1945 gart_iommu_aperture = 0;
Ingo Molnar92af4e22008-06-27 10:48:16 +02001946#endif
Joerg Roedel6631ee92008-06-26 21:28:05 +02001947
Joerg Roedel431b2a22008-07-11 17:14:22 +02001948 /* Make the driver finally visible to the drivers */
Joerg Roedel6631ee92008-06-26 21:28:05 +02001949 dma_ops = &amd_iommu_dma_ops;
1950
Joerg Roedel26961ef2008-12-03 17:00:17 +01001951 register_iommu(&amd_iommu_ops);
Joerg Roedel26961ef2008-12-03 17:00:17 +01001952
Joerg Roedele275a2a2008-12-10 18:27:25 +01001953 bus_register_notifier(&pci_bus_type, &device_nb);
1954
Joerg Roedel7f265082008-12-12 13:50:21 +01001955 amd_iommu_stats_init();
1956
Joerg Roedel6631ee92008-06-26 21:28:05 +02001957 return 0;
1958
1959free_domains:
1960
Joerg Roedel3bd22172009-05-04 15:06:20 +02001961 for_each_iommu(iommu) {
Joerg Roedel6631ee92008-06-26 21:28:05 +02001962 if (iommu->default_dom)
1963 dma_ops_domain_free(iommu->default_dom);
1964 }
1965
1966 return ret;
1967}
Joerg Roedel6d98cd82008-12-08 12:05:55 +01001968
1969/*****************************************************************************
1970 *
1971 * The following functions belong to the exported interface of AMD IOMMU
1972 *
1973 * This interface allows access to lower level functions of the IOMMU
1974 * like protection domain handling and assignement of devices to domains
1975 * which is not possible with the dma_ops interface.
1976 *
1977 *****************************************************************************/
1978
Joerg Roedel6d98cd82008-12-08 12:05:55 +01001979static void cleanup_domain(struct protection_domain *domain)
1980{
1981 unsigned long flags;
1982 u16 devid;
1983
1984 write_lock_irqsave(&amd_iommu_devtable_lock, flags);
1985
1986 for (devid = 0; devid <= amd_iommu_last_bdf; ++devid)
1987 if (amd_iommu_pd_table[devid] == domain)
1988 __detach_device(domain, devid);
1989
1990 write_unlock_irqrestore(&amd_iommu_devtable_lock, flags);
1991}
1992
Joerg Roedelc156e342008-12-02 18:13:27 +01001993static int amd_iommu_domain_init(struct iommu_domain *dom)
1994{
1995 struct protection_domain *domain;
1996
1997 domain = kzalloc(sizeof(*domain), GFP_KERNEL);
1998 if (!domain)
1999 return -ENOMEM;
2000
2001 spin_lock_init(&domain->lock);
2002 domain->mode = PAGE_MODE_3_LEVEL;
2003 domain->id = domain_id_alloc();
2004 if (!domain->id)
2005 goto out_free;
2006 domain->pt_root = (void *)get_zeroed_page(GFP_KERNEL);
2007 if (!domain->pt_root)
2008 goto out_free;
2009
2010 dom->priv = domain;
2011
2012 return 0;
2013
2014out_free:
2015 kfree(domain);
2016
2017 return -ENOMEM;
2018}
2019
Joerg Roedel98383fc2008-12-02 18:34:12 +01002020static void amd_iommu_domain_destroy(struct iommu_domain *dom)
2021{
2022 struct protection_domain *domain = dom->priv;
2023
2024 if (!domain)
2025 return;
2026
2027 if (domain->dev_cnt > 0)
2028 cleanup_domain(domain);
2029
2030 BUG_ON(domain->dev_cnt != 0);
2031
2032 free_pagetable(domain);
2033
2034 domain_id_free(domain->id);
2035
2036 kfree(domain);
2037
2038 dom->priv = NULL;
2039}
2040
Joerg Roedel684f2882008-12-08 12:07:44 +01002041static void amd_iommu_detach_device(struct iommu_domain *dom,
2042 struct device *dev)
2043{
2044 struct protection_domain *domain = dom->priv;
2045 struct amd_iommu *iommu;
2046 struct pci_dev *pdev;
2047 u16 devid;
2048
2049 if (dev->bus != &pci_bus_type)
2050 return;
2051
2052 pdev = to_pci_dev(dev);
2053
2054 devid = calc_devid(pdev->bus->number, pdev->devfn);
2055
2056 if (devid > 0)
2057 detach_device(domain, devid);
2058
2059 iommu = amd_iommu_rlookup_table[devid];
2060 if (!iommu)
2061 return;
2062
2063 iommu_queue_inv_dev_entry(iommu, devid);
2064 iommu_completion_wait(iommu);
2065}
2066
Joerg Roedel01106062008-12-02 19:34:11 +01002067static int amd_iommu_attach_device(struct iommu_domain *dom,
2068 struct device *dev)
2069{
2070 struct protection_domain *domain = dom->priv;
2071 struct protection_domain *old_domain;
2072 struct amd_iommu *iommu;
2073 struct pci_dev *pdev;
2074 u16 devid;
2075
2076 if (dev->bus != &pci_bus_type)
2077 return -EINVAL;
2078
2079 pdev = to_pci_dev(dev);
2080
2081 devid = calc_devid(pdev->bus->number, pdev->devfn);
2082
2083 if (devid >= amd_iommu_last_bdf ||
2084 devid != amd_iommu_alias_table[devid])
2085 return -EINVAL;
2086
2087 iommu = amd_iommu_rlookup_table[devid];
2088 if (!iommu)
2089 return -EINVAL;
2090
2091 old_domain = domain_for_device(devid);
2092 if (old_domain)
Joerg Roedel71ff3bc2009-06-08 13:47:33 -07002093 detach_device(old_domain, devid);
Joerg Roedel01106062008-12-02 19:34:11 +01002094
2095 attach_device(iommu, domain, devid);
2096
2097 iommu_completion_wait(iommu);
2098
2099 return 0;
2100}
2101
Joerg Roedelc6229ca2008-12-02 19:48:43 +01002102static int amd_iommu_map_range(struct iommu_domain *dom,
2103 unsigned long iova, phys_addr_t paddr,
2104 size_t size, int iommu_prot)
2105{
2106 struct protection_domain *domain = dom->priv;
2107 unsigned long i, npages = iommu_num_pages(paddr, size, PAGE_SIZE);
2108 int prot = 0;
2109 int ret;
2110
2111 if (iommu_prot & IOMMU_READ)
2112 prot |= IOMMU_PROT_IR;
2113 if (iommu_prot & IOMMU_WRITE)
2114 prot |= IOMMU_PROT_IW;
2115
2116 iova &= PAGE_MASK;
2117 paddr &= PAGE_MASK;
2118
2119 for (i = 0; i < npages; ++i) {
2120 ret = iommu_map_page(domain, iova, paddr, prot);
2121 if (ret)
2122 return ret;
2123
2124 iova += PAGE_SIZE;
2125 paddr += PAGE_SIZE;
2126 }
2127
2128 return 0;
2129}
2130
Joerg Roedeleb74ff62008-12-02 19:59:10 +01002131static void amd_iommu_unmap_range(struct iommu_domain *dom,
2132 unsigned long iova, size_t size)
2133{
2134
2135 struct protection_domain *domain = dom->priv;
2136 unsigned long i, npages = iommu_num_pages(iova, size, PAGE_SIZE);
2137
2138 iova &= PAGE_MASK;
2139
2140 for (i = 0; i < npages; ++i) {
2141 iommu_unmap_page(domain, iova);
2142 iova += PAGE_SIZE;
2143 }
2144
2145 iommu_flush_domain(domain->id);
2146}
2147
Joerg Roedel645c4c82008-12-02 20:05:50 +01002148static phys_addr_t amd_iommu_iova_to_phys(struct iommu_domain *dom,
2149 unsigned long iova)
2150{
2151 struct protection_domain *domain = dom->priv;
2152 unsigned long offset = iova & ~PAGE_MASK;
2153 phys_addr_t paddr;
2154 u64 *pte;
2155
2156 pte = &domain->pt_root[IOMMU_PTE_L2_INDEX(iova)];
2157
2158 if (!IOMMU_PTE_PRESENT(*pte))
2159 return 0;
2160
2161 pte = IOMMU_PTE_PAGE(*pte);
2162 pte = &pte[IOMMU_PTE_L1_INDEX(iova)];
2163
2164 if (!IOMMU_PTE_PRESENT(*pte))
2165 return 0;
2166
2167 pte = IOMMU_PTE_PAGE(*pte);
2168 pte = &pte[IOMMU_PTE_L0_INDEX(iova)];
2169
2170 if (!IOMMU_PTE_PRESENT(*pte))
2171 return 0;
2172
2173 paddr = *pte & IOMMU_PAGE_MASK;
2174 paddr |= offset;
2175
2176 return paddr;
2177}
2178
Sheng Yangdbb9fd82009-03-18 15:33:06 +08002179static int amd_iommu_domain_has_cap(struct iommu_domain *domain,
2180 unsigned long cap)
2181{
2182 return 0;
2183}
2184
Joerg Roedel26961ef2008-12-03 17:00:17 +01002185static struct iommu_ops amd_iommu_ops = {
2186 .domain_init = amd_iommu_domain_init,
2187 .domain_destroy = amd_iommu_domain_destroy,
2188 .attach_dev = amd_iommu_attach_device,
2189 .detach_dev = amd_iommu_detach_device,
2190 .map = amd_iommu_map_range,
2191 .unmap = amd_iommu_unmap_range,
2192 .iova_to_phys = amd_iommu_iova_to_phys,
Sheng Yangdbb9fd82009-03-18 15:33:06 +08002193 .domain_has_cap = amd_iommu_domain_has_cap,
Joerg Roedel26961ef2008-12-03 17:00:17 +01002194};
2195