blob: 9aa135d4453f1ef004c224509189a3e6a7c44e7a [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 Roedel0feae532009-08-26 15:26:30 +020044/*
45 * Domain for untranslated devices - only allocated
46 * if iommu=pt passed on kernel cmd line.
47 */
48static struct protection_domain *pt_domain;
49
Joerg Roedel26961ef2008-12-03 17:00:17 +010050#ifdef CONFIG_IOMMU_API
51static struct iommu_ops amd_iommu_ops;
52#endif
53
Joerg Roedel431b2a22008-07-11 17:14:22 +020054/*
55 * general struct to manage commands send to an IOMMU
56 */
Joerg Roedeld6449532008-07-11 17:14:28 +020057struct iommu_cmd {
Joerg Roedelb6c02712008-06-26 21:27:53 +020058 u32 data[4];
59};
60
Joerg Roedelbd0e5212008-06-26 21:27:56 +020061static int dma_ops_unity_map(struct dma_ops_domain *dma_dom,
62 struct unity_map_entry *e);
Joerg Roedele275a2a2008-12-10 18:27:25 +010063static struct dma_ops_domain *find_protection_domain(u16 devid);
Joerg Roedel8bda3092009-05-12 12:02:46 +020064static u64* alloc_pte(struct protection_domain *dom,
65 unsigned long address, u64
66 **pte_page, gfp_t gfp);
Joerg Roedel00cd1222009-05-19 09:52:40 +020067static void dma_ops_reserve_addresses(struct dma_ops_domain *dom,
68 unsigned long start_page,
69 unsigned int pages);
Joerg Roedelbd0e5212008-06-26 21:27:56 +020070
Chris Wrightc1eee672009-05-21 00:56:58 -070071#ifndef BUS_NOTIFY_UNBOUND_DRIVER
72#define BUS_NOTIFY_UNBOUND_DRIVER 0x0005
73#endif
74
Joerg Roedel7f265082008-12-12 13:50:21 +010075#ifdef CONFIG_AMD_IOMMU_STATS
76
77/*
78 * Initialization code for statistics collection
79 */
80
Joerg Roedelda49f6d2008-12-12 14:59:58 +010081DECLARE_STATS_COUNTER(compl_wait);
Joerg Roedel0f2a86f2008-12-12 15:05:16 +010082DECLARE_STATS_COUNTER(cnt_map_single);
Joerg Roedel146a6912008-12-12 15:07:12 +010083DECLARE_STATS_COUNTER(cnt_unmap_single);
Joerg Roedeld03f067a2008-12-12 15:09:48 +010084DECLARE_STATS_COUNTER(cnt_map_sg);
Joerg Roedel55877a62008-12-12 15:12:14 +010085DECLARE_STATS_COUNTER(cnt_unmap_sg);
Joerg Roedelc8f0fb32008-12-12 15:14:21 +010086DECLARE_STATS_COUNTER(cnt_alloc_coherent);
Joerg Roedel5d31ee72008-12-12 15:16:38 +010087DECLARE_STATS_COUNTER(cnt_free_coherent);
Joerg Roedelc1858972008-12-12 15:42:39 +010088DECLARE_STATS_COUNTER(cross_page);
Joerg Roedelf57d98a2008-12-12 15:46:29 +010089DECLARE_STATS_COUNTER(domain_flush_single);
Joerg Roedel18811f52008-12-12 15:48:28 +010090DECLARE_STATS_COUNTER(domain_flush_all);
Joerg Roedel5774f7c2008-12-12 15:57:30 +010091DECLARE_STATS_COUNTER(alloced_io_mem);
Joerg Roedel8ecaf8f2008-12-12 16:13:04 +010092DECLARE_STATS_COUNTER(total_map_requests);
Joerg Roedelda49f6d2008-12-12 14:59:58 +010093
Joerg Roedel7f265082008-12-12 13:50:21 +010094static struct dentry *stats_dir;
95static struct dentry *de_isolate;
96static struct dentry *de_fflush;
97
98static void amd_iommu_stats_add(struct __iommu_counter *cnt)
99{
100 if (stats_dir == NULL)
101 return;
102
103 cnt->dent = debugfs_create_u64(cnt->name, 0444, stats_dir,
104 &cnt->value);
105}
106
107static void amd_iommu_stats_init(void)
108{
109 stats_dir = debugfs_create_dir("amd-iommu", NULL);
110 if (stats_dir == NULL)
111 return;
112
113 de_isolate = debugfs_create_bool("isolation", 0444, stats_dir,
114 (u32 *)&amd_iommu_isolate);
115
116 de_fflush = debugfs_create_bool("fullflush", 0444, stats_dir,
117 (u32 *)&amd_iommu_unmap_flush);
Joerg Roedelda49f6d2008-12-12 14:59:58 +0100118
119 amd_iommu_stats_add(&compl_wait);
Joerg Roedel0f2a86f2008-12-12 15:05:16 +0100120 amd_iommu_stats_add(&cnt_map_single);
Joerg Roedel146a6912008-12-12 15:07:12 +0100121 amd_iommu_stats_add(&cnt_unmap_single);
Joerg Roedeld03f067a2008-12-12 15:09:48 +0100122 amd_iommu_stats_add(&cnt_map_sg);
Joerg Roedel55877a62008-12-12 15:12:14 +0100123 amd_iommu_stats_add(&cnt_unmap_sg);
Joerg Roedelc8f0fb32008-12-12 15:14:21 +0100124 amd_iommu_stats_add(&cnt_alloc_coherent);
Joerg Roedel5d31ee72008-12-12 15:16:38 +0100125 amd_iommu_stats_add(&cnt_free_coherent);
Joerg Roedelc1858972008-12-12 15:42:39 +0100126 amd_iommu_stats_add(&cross_page);
Joerg Roedelf57d98a2008-12-12 15:46:29 +0100127 amd_iommu_stats_add(&domain_flush_single);
Joerg Roedel18811f52008-12-12 15:48:28 +0100128 amd_iommu_stats_add(&domain_flush_all);
Joerg Roedel5774f7c2008-12-12 15:57:30 +0100129 amd_iommu_stats_add(&alloced_io_mem);
Joerg Roedel8ecaf8f2008-12-12 16:13:04 +0100130 amd_iommu_stats_add(&total_map_requests);
Joerg Roedel7f265082008-12-12 13:50:21 +0100131}
132
133#endif
134
Joerg Roedel431b2a22008-07-11 17:14:22 +0200135/* returns !0 if the IOMMU is caching non-present entries in its TLB */
Joerg Roedel4da70b92008-06-26 21:28:01 +0200136static int iommu_has_npcache(struct amd_iommu *iommu)
137{
Joerg Roedelae9b9402008-10-30 17:43:57 +0100138 return iommu->cap & (1UL << IOMMU_CAP_NPCACHE);
Joerg Roedel4da70b92008-06-26 21:28:01 +0200139}
140
Joerg Roedel431b2a22008-07-11 17:14:22 +0200141/****************************************************************************
142 *
Joerg Roedela80dc3e2008-09-11 16:51:41 +0200143 * Interrupt handling functions
144 *
145 ****************************************************************************/
146
Joerg Roedel90008ee2008-09-09 16:41:05 +0200147static void iommu_print_event(void *__evt)
148{
149 u32 *event = __evt;
150 int type = (event[1] >> EVENT_TYPE_SHIFT) & EVENT_TYPE_MASK;
151 int devid = (event[0] >> EVENT_DEVID_SHIFT) & EVENT_DEVID_MASK;
152 int domid = (event[1] >> EVENT_DOMID_SHIFT) & EVENT_DOMID_MASK;
153 int flags = (event[1] >> EVENT_FLAGS_SHIFT) & EVENT_FLAGS_MASK;
154 u64 address = (u64)(((u64)event[3]) << 32) | event[2];
155
156 printk(KERN_ERR "AMD IOMMU: Event logged [");
157
158 switch (type) {
159 case EVENT_TYPE_ILL_DEV:
160 printk("ILLEGAL_DEV_TABLE_ENTRY device=%02x:%02x.%x "
161 "address=0x%016llx flags=0x%04x]\n",
162 PCI_BUS(devid), PCI_SLOT(devid), PCI_FUNC(devid),
163 address, flags);
164 break;
165 case EVENT_TYPE_IO_FAULT:
166 printk("IO_PAGE_FAULT device=%02x:%02x.%x "
167 "domain=0x%04x address=0x%016llx flags=0x%04x]\n",
168 PCI_BUS(devid), PCI_SLOT(devid), PCI_FUNC(devid),
169 domid, address, flags);
170 break;
171 case EVENT_TYPE_DEV_TAB_ERR:
172 printk("DEV_TAB_HARDWARE_ERROR device=%02x:%02x.%x "
173 "address=0x%016llx flags=0x%04x]\n",
174 PCI_BUS(devid), PCI_SLOT(devid), PCI_FUNC(devid),
175 address, flags);
176 break;
177 case EVENT_TYPE_PAGE_TAB_ERR:
178 printk("PAGE_TAB_HARDWARE_ERROR device=%02x:%02x.%x "
179 "domain=0x%04x address=0x%016llx flags=0x%04x]\n",
180 PCI_BUS(devid), PCI_SLOT(devid), PCI_FUNC(devid),
181 domid, address, flags);
182 break;
183 case EVENT_TYPE_ILL_CMD:
184 printk("ILLEGAL_COMMAND_ERROR address=0x%016llx]\n", address);
185 break;
186 case EVENT_TYPE_CMD_HARD_ERR:
187 printk("COMMAND_HARDWARE_ERROR address=0x%016llx "
188 "flags=0x%04x]\n", address, flags);
189 break;
190 case EVENT_TYPE_IOTLB_INV_TO:
191 printk("IOTLB_INV_TIMEOUT device=%02x:%02x.%x "
192 "address=0x%016llx]\n",
193 PCI_BUS(devid), PCI_SLOT(devid), PCI_FUNC(devid),
194 address);
195 break;
196 case EVENT_TYPE_INV_DEV_REQ:
197 printk("INVALID_DEVICE_REQUEST device=%02x:%02x.%x "
198 "address=0x%016llx flags=0x%04x]\n",
199 PCI_BUS(devid), PCI_SLOT(devid), PCI_FUNC(devid),
200 address, flags);
201 break;
202 default:
203 printk(KERN_ERR "UNKNOWN type=0x%02x]\n", type);
204 }
205}
206
207static void iommu_poll_events(struct amd_iommu *iommu)
208{
209 u32 head, tail;
210 unsigned long flags;
211
212 spin_lock_irqsave(&iommu->lock, flags);
213
214 head = readl(iommu->mmio_base + MMIO_EVT_HEAD_OFFSET);
215 tail = readl(iommu->mmio_base + MMIO_EVT_TAIL_OFFSET);
216
217 while (head != tail) {
218 iommu_print_event(iommu->evt_buf + head);
219 head = (head + EVENT_ENTRY_SIZE) % iommu->evt_buf_size;
220 }
221
222 writel(head, iommu->mmio_base + MMIO_EVT_HEAD_OFFSET);
223
224 spin_unlock_irqrestore(&iommu->lock, flags);
225}
226
Joerg Roedela80dc3e2008-09-11 16:51:41 +0200227irqreturn_t amd_iommu_int_handler(int irq, void *data)
228{
Joerg Roedel90008ee2008-09-09 16:41:05 +0200229 struct amd_iommu *iommu;
230
Joerg Roedel3bd22172009-05-04 15:06:20 +0200231 for_each_iommu(iommu)
Joerg Roedel90008ee2008-09-09 16:41:05 +0200232 iommu_poll_events(iommu);
233
234 return IRQ_HANDLED;
Joerg Roedela80dc3e2008-09-11 16:51:41 +0200235}
236
237/****************************************************************************
238 *
Joerg Roedel431b2a22008-07-11 17:14:22 +0200239 * IOMMU command queuing functions
240 *
241 ****************************************************************************/
242
243/*
244 * Writes the command to the IOMMUs command buffer and informs the
245 * hardware about the new command. Must be called with iommu->lock held.
246 */
Joerg Roedeld6449532008-07-11 17:14:28 +0200247static int __iommu_queue_command(struct amd_iommu *iommu, struct iommu_cmd *cmd)
Joerg Roedela19ae1e2008-06-26 21:27:55 +0200248{
249 u32 tail, head;
250 u8 *target;
251
252 tail = readl(iommu->mmio_base + MMIO_CMD_TAIL_OFFSET);
Jiri Kosina8a7c5ef2008-08-19 02:13:55 +0200253 target = iommu->cmd_buf + tail;
Joerg Roedela19ae1e2008-06-26 21:27:55 +0200254 memcpy_toio(target, cmd, sizeof(*cmd));
255 tail = (tail + sizeof(*cmd)) % iommu->cmd_buf_size;
256 head = readl(iommu->mmio_base + MMIO_CMD_HEAD_OFFSET);
257 if (tail == head)
258 return -ENOMEM;
259 writel(tail, iommu->mmio_base + MMIO_CMD_TAIL_OFFSET);
260
261 return 0;
262}
263
Joerg Roedel431b2a22008-07-11 17:14:22 +0200264/*
265 * General queuing function for commands. Takes iommu->lock and calls
266 * __iommu_queue_command().
267 */
Joerg Roedeld6449532008-07-11 17:14:28 +0200268static int iommu_queue_command(struct amd_iommu *iommu, struct iommu_cmd *cmd)
Joerg Roedela19ae1e2008-06-26 21:27:55 +0200269{
270 unsigned long flags;
271 int ret;
272
273 spin_lock_irqsave(&iommu->lock, flags);
274 ret = __iommu_queue_command(iommu, cmd);
Joerg Roedel09ee17e2008-12-03 12:19:27 +0100275 if (!ret)
Joerg Roedel0cfd7aa2008-12-10 19:58:00 +0100276 iommu->need_sync = true;
Joerg Roedela19ae1e2008-06-26 21:27:55 +0200277 spin_unlock_irqrestore(&iommu->lock, flags);
278
279 return ret;
280}
281
Joerg Roedel431b2a22008-07-11 17:14:22 +0200282/*
Joerg Roedel8d201962008-12-02 20:34:41 +0100283 * This function waits until an IOMMU has completed a completion
284 * wait command
Joerg Roedel431b2a22008-07-11 17:14:22 +0200285 */
Joerg Roedel8d201962008-12-02 20:34:41 +0100286static void __iommu_wait_for_completion(struct amd_iommu *iommu)
Joerg Roedela19ae1e2008-06-26 21:27:55 +0200287{
Joerg Roedel8d201962008-12-02 20:34:41 +0100288 int ready = 0;
Joerg Roedel519c31b2008-08-14 19:55:15 +0200289 unsigned status = 0;
Joerg Roedel8d201962008-12-02 20:34:41 +0100290 unsigned long i = 0;
Joerg Roedela19ae1e2008-06-26 21:27:55 +0200291
Joerg Roedelda49f6d2008-12-12 14:59:58 +0100292 INC_STATS_COUNTER(compl_wait);
293
Joerg Roedel136f78a2008-07-11 17:14:27 +0200294 while (!ready && (i < EXIT_LOOP_COUNT)) {
295 ++i;
Joerg Roedel519c31b2008-08-14 19:55:15 +0200296 /* wait for the bit to become one */
297 status = readl(iommu->mmio_base + MMIO_STATUS_OFFSET);
298 ready = status & MMIO_STATUS_COM_WAIT_INT_MASK;
Joerg Roedel136f78a2008-07-11 17:14:27 +0200299 }
300
Joerg Roedel519c31b2008-08-14 19:55:15 +0200301 /* set bit back to zero */
302 status &= ~MMIO_STATUS_COM_WAIT_INT_MASK;
303 writel(status, iommu->mmio_base + MMIO_STATUS_OFFSET);
304
Joerg Roedel84df8172008-12-17 16:36:44 +0100305 if (unlikely(i == EXIT_LOOP_COUNT))
306 panic("AMD IOMMU: Completion wait loop failed\n");
Joerg Roedel8d201962008-12-02 20:34:41 +0100307}
308
309/*
310 * This function queues a completion wait command into the command
311 * buffer of an IOMMU
312 */
313static int __iommu_completion_wait(struct amd_iommu *iommu)
314{
315 struct iommu_cmd cmd;
316
317 memset(&cmd, 0, sizeof(cmd));
318 cmd.data[0] = CMD_COMPL_WAIT_INT_MASK;
319 CMD_SET_TYPE(&cmd, CMD_COMPL_WAIT);
320
321 return __iommu_queue_command(iommu, &cmd);
322}
323
324/*
325 * This function is called whenever we need to ensure that the IOMMU has
326 * completed execution of all commands we sent. It sends a
327 * COMPLETION_WAIT command and waits for it to finish. The IOMMU informs
328 * us about that by writing a value to a physical address we pass with
329 * the command.
330 */
331static int iommu_completion_wait(struct amd_iommu *iommu)
332{
333 int ret = 0;
334 unsigned long flags;
335
336 spin_lock_irqsave(&iommu->lock, flags);
337
338 if (!iommu->need_sync)
339 goto out;
340
341 ret = __iommu_completion_wait(iommu);
342
Joerg Roedel0cfd7aa2008-12-10 19:58:00 +0100343 iommu->need_sync = false;
Joerg Roedel8d201962008-12-02 20:34:41 +0100344
345 if (ret)
346 goto out;
347
348 __iommu_wait_for_completion(iommu);
Joerg Roedel84df8172008-12-17 16:36:44 +0100349
Joerg Roedel7e4f88d2008-09-17 14:19:15 +0200350out:
351 spin_unlock_irqrestore(&iommu->lock, flags);
Joerg Roedela19ae1e2008-06-26 21:27:55 +0200352
353 return 0;
354}
355
Joerg Roedel431b2a22008-07-11 17:14:22 +0200356/*
357 * Command send function for invalidating a device table entry
358 */
Joerg Roedela19ae1e2008-06-26 21:27:55 +0200359static int iommu_queue_inv_dev_entry(struct amd_iommu *iommu, u16 devid)
360{
Joerg Roedeld6449532008-07-11 17:14:28 +0200361 struct iommu_cmd cmd;
Joerg Roedelee2fa742008-09-17 13:47:25 +0200362 int ret;
Joerg Roedela19ae1e2008-06-26 21:27:55 +0200363
364 BUG_ON(iommu == NULL);
365
366 memset(&cmd, 0, sizeof(cmd));
367 CMD_SET_TYPE(&cmd, CMD_INV_DEV_ENTRY);
368 cmd.data[0] = devid;
369
Joerg Roedelee2fa742008-09-17 13:47:25 +0200370 ret = iommu_queue_command(iommu, &cmd);
371
Joerg Roedelee2fa742008-09-17 13:47:25 +0200372 return ret;
Joerg Roedela19ae1e2008-06-26 21:27:55 +0200373}
374
Joerg Roedel237b6f32008-12-02 20:54:37 +0100375static void __iommu_build_inv_iommu_pages(struct iommu_cmd *cmd, u64 address,
376 u16 domid, int pde, int s)
377{
378 memset(cmd, 0, sizeof(*cmd));
379 address &= PAGE_MASK;
380 CMD_SET_TYPE(cmd, CMD_INV_IOMMU_PAGES);
381 cmd->data[1] |= domid;
382 cmd->data[2] = lower_32_bits(address);
383 cmd->data[3] = upper_32_bits(address);
384 if (s) /* size bit - we flush more than one 4kb page */
385 cmd->data[2] |= CMD_INV_IOMMU_PAGES_SIZE_MASK;
386 if (pde) /* PDE bit - we wan't flush everything not only the PTEs */
387 cmd->data[2] |= CMD_INV_IOMMU_PAGES_PDE_MASK;
388}
389
Joerg Roedel431b2a22008-07-11 17:14:22 +0200390/*
391 * Generic command send function for invalidaing TLB entries
392 */
Joerg Roedela19ae1e2008-06-26 21:27:55 +0200393static int iommu_queue_inv_iommu_pages(struct amd_iommu *iommu,
394 u64 address, u16 domid, int pde, int s)
395{
Joerg Roedeld6449532008-07-11 17:14:28 +0200396 struct iommu_cmd cmd;
Joerg Roedelee2fa742008-09-17 13:47:25 +0200397 int ret;
Joerg Roedela19ae1e2008-06-26 21:27:55 +0200398
Joerg Roedel237b6f32008-12-02 20:54:37 +0100399 __iommu_build_inv_iommu_pages(&cmd, address, domid, pde, s);
Joerg Roedela19ae1e2008-06-26 21:27:55 +0200400
Joerg Roedelee2fa742008-09-17 13:47:25 +0200401 ret = iommu_queue_command(iommu, &cmd);
402
Joerg Roedelee2fa742008-09-17 13:47:25 +0200403 return ret;
Joerg Roedela19ae1e2008-06-26 21:27:55 +0200404}
405
Joerg Roedel431b2a22008-07-11 17:14:22 +0200406/*
407 * TLB invalidation function which is called from the mapping functions.
408 * It invalidates a single PTE if the range to flush is within a single
409 * page. Otherwise it flushes the whole TLB of the IOMMU.
410 */
Joerg Roedela19ae1e2008-06-26 21:27:55 +0200411static int iommu_flush_pages(struct amd_iommu *iommu, u16 domid,
412 u64 address, size_t size)
413{
Joerg Roedel999ba412008-07-03 19:35:08 +0200414 int s = 0;
Joerg Roedele3c449f2008-10-15 22:02:11 -0700415 unsigned pages = iommu_num_pages(address, size, PAGE_SIZE);
Joerg Roedela19ae1e2008-06-26 21:27:55 +0200416
417 address &= PAGE_MASK;
418
Joerg Roedel999ba412008-07-03 19:35:08 +0200419 if (pages > 1) {
420 /*
421 * If we have to flush more than one page, flush all
422 * TLB entries for this domain
423 */
424 address = CMD_INV_IOMMU_ALL_PAGES_ADDRESS;
425 s = 1;
Joerg Roedela19ae1e2008-06-26 21:27:55 +0200426 }
427
Joerg Roedel999ba412008-07-03 19:35:08 +0200428 iommu_queue_inv_iommu_pages(iommu, address, domid, 0, s);
429
Joerg Roedela19ae1e2008-06-26 21:27:55 +0200430 return 0;
431}
Joerg Roedelb6c02712008-06-26 21:27:53 +0200432
Joerg Roedel1c655772008-09-04 18:40:05 +0200433/* Flush the whole IO/TLB for a given protection domain */
434static void iommu_flush_tlb(struct amd_iommu *iommu, u16 domid)
435{
436 u64 address = CMD_INV_IOMMU_ALL_PAGES_ADDRESS;
437
Joerg Roedelf57d98a2008-12-12 15:46:29 +0100438 INC_STATS_COUNTER(domain_flush_single);
439
Joerg Roedel1c655772008-09-04 18:40:05 +0200440 iommu_queue_inv_iommu_pages(iommu, address, domid, 0, 1);
441}
442
Chris Wright42a49f92009-06-15 15:42:00 +0200443/* Flush the whole IO/TLB for a given protection domain - including PDE */
444static void iommu_flush_tlb_pde(struct amd_iommu *iommu, u16 domid)
445{
446 u64 address = CMD_INV_IOMMU_ALL_PAGES_ADDRESS;
447
448 INC_STATS_COUNTER(domain_flush_single);
449
450 iommu_queue_inv_iommu_pages(iommu, address, domid, 1, 1);
451}
452
Joerg Roedel43f49602008-12-02 21:01:12 +0100453/*
454 * This function is used to flush the IO/TLB for a given protection domain
455 * on every IOMMU in the system
456 */
457static void iommu_flush_domain(u16 domid)
458{
459 unsigned long flags;
460 struct amd_iommu *iommu;
461 struct iommu_cmd cmd;
462
Joerg Roedel18811f52008-12-12 15:48:28 +0100463 INC_STATS_COUNTER(domain_flush_all);
464
Joerg Roedel43f49602008-12-02 21:01:12 +0100465 __iommu_build_inv_iommu_pages(&cmd, CMD_INV_IOMMU_ALL_PAGES_ADDRESS,
466 domid, 1, 1);
467
Joerg Roedel3bd22172009-05-04 15:06:20 +0200468 for_each_iommu(iommu) {
Joerg Roedel43f49602008-12-02 21:01:12 +0100469 spin_lock_irqsave(&iommu->lock, flags);
470 __iommu_queue_command(iommu, &cmd);
471 __iommu_completion_wait(iommu);
472 __iommu_wait_for_completion(iommu);
473 spin_unlock_irqrestore(&iommu->lock, flags);
474 }
475}
Joerg Roedel43f49602008-12-02 21:01:12 +0100476
Joerg Roedelbfd1be12009-05-05 15:33:57 +0200477void amd_iommu_flush_all_domains(void)
478{
479 int i;
480
481 for (i = 1; i < MAX_DOMAIN_ID; ++i) {
482 if (!test_bit(i, amd_iommu_pd_alloc_bitmap))
483 continue;
484 iommu_flush_domain(i);
485 }
486}
487
Joerg Roedel7d7a1102009-05-05 15:48:10 +0200488void amd_iommu_flush_all_devices(void)
489{
490 struct amd_iommu *iommu;
491 int i;
492
493 for (i = 0; i <= amd_iommu_last_bdf; ++i) {
494 if (amd_iommu_pd_table[i] == NULL)
495 continue;
496
497 iommu = amd_iommu_rlookup_table[i];
498 if (!iommu)
499 continue;
500
501 iommu_queue_inv_dev_entry(iommu, i);
502 iommu_completion_wait(iommu);
503 }
504}
505
Joerg Roedel431b2a22008-07-11 17:14:22 +0200506/****************************************************************************
507 *
508 * The functions below are used the create the page table mappings for
509 * unity mapped regions.
510 *
511 ****************************************************************************/
512
513/*
514 * Generic mapping functions. It maps a physical address into a DMA
515 * address space. It allocates the page table pages if necessary.
516 * In the future it can be extended to a generic mapping function
517 * supporting all features of AMD IOMMU page tables like level skipping
518 * and full 64 bit address spaces.
519 */
Joerg Roedel38e817f2008-12-02 17:27:52 +0100520static int iommu_map_page(struct protection_domain *dom,
521 unsigned long bus_addr,
522 unsigned long phys_addr,
523 int prot)
Joerg Roedelbd0e5212008-06-26 21:27:56 +0200524{
Joerg Roedel8bda3092009-05-12 12:02:46 +0200525 u64 __pte, *pte;
Joerg Roedelbd0e5212008-06-26 21:27:56 +0200526
527 bus_addr = PAGE_ALIGN(bus_addr);
Joerg Roedelbb9d4ff2008-12-04 15:59:48 +0100528 phys_addr = PAGE_ALIGN(phys_addr);
Joerg Roedelbd0e5212008-06-26 21:27:56 +0200529
530 /* only support 512GB address spaces for now */
531 if (bus_addr > IOMMU_MAP_SIZE_L3 || !(prot & IOMMU_PROT_MASK))
532 return -EINVAL;
533
Joerg Roedel8bda3092009-05-12 12:02:46 +0200534 pte = alloc_pte(dom, bus_addr, NULL, GFP_KERNEL);
Joerg Roedelbd0e5212008-06-26 21:27:56 +0200535
536 if (IOMMU_PTE_PRESENT(*pte))
537 return -EBUSY;
538
539 __pte = phys_addr | IOMMU_PTE_P;
540 if (prot & IOMMU_PROT_IR)
541 __pte |= IOMMU_PTE_IR;
542 if (prot & IOMMU_PROT_IW)
543 __pte |= IOMMU_PTE_IW;
544
545 *pte = __pte;
546
547 return 0;
548}
549
Joerg Roedeleb74ff62008-12-02 19:59:10 +0100550static void iommu_unmap_page(struct protection_domain *dom,
551 unsigned long bus_addr)
552{
553 u64 *pte;
554
555 pte = &dom->pt_root[IOMMU_PTE_L2_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 if (!IOMMU_PTE_PRESENT(*pte))
564 return;
565
566 pte = IOMMU_PTE_PAGE(*pte);
567 pte = &pte[IOMMU_PTE_L1_INDEX(bus_addr)];
568
569 *pte = 0;
570}
Joerg Roedeleb74ff62008-12-02 19:59:10 +0100571
Joerg Roedel431b2a22008-07-11 17:14:22 +0200572/*
573 * This function checks if a specific unity mapping entry is needed for
574 * this specific IOMMU.
575 */
Joerg Roedelbd0e5212008-06-26 21:27:56 +0200576static int iommu_for_unity_map(struct amd_iommu *iommu,
577 struct unity_map_entry *entry)
578{
579 u16 bdf, i;
580
581 for (i = entry->devid_start; i <= entry->devid_end; ++i) {
582 bdf = amd_iommu_alias_table[i];
583 if (amd_iommu_rlookup_table[bdf] == iommu)
584 return 1;
585 }
586
587 return 0;
588}
589
Joerg Roedel431b2a22008-07-11 17:14:22 +0200590/*
591 * Init the unity mappings for a specific IOMMU in the system
592 *
593 * Basically iterates over all unity mapping entries and applies them to
594 * the default domain DMA of that IOMMU if necessary.
595 */
Joerg Roedelbd0e5212008-06-26 21:27:56 +0200596static int iommu_init_unity_mappings(struct amd_iommu *iommu)
597{
598 struct unity_map_entry *entry;
599 int ret;
600
601 list_for_each_entry(entry, &amd_iommu_unity_map, list) {
602 if (!iommu_for_unity_map(iommu, entry))
603 continue;
604 ret = dma_ops_unity_map(iommu->default_dom, entry);
605 if (ret)
606 return ret;
607 }
608
609 return 0;
610}
611
Joerg Roedel431b2a22008-07-11 17:14:22 +0200612/*
613 * This function actually applies the mapping to the page table of the
614 * dma_ops domain.
615 */
Joerg Roedelbd0e5212008-06-26 21:27:56 +0200616static int dma_ops_unity_map(struct dma_ops_domain *dma_dom,
617 struct unity_map_entry *e)
618{
619 u64 addr;
620 int ret;
621
622 for (addr = e->address_start; addr < e->address_end;
623 addr += PAGE_SIZE) {
Joerg Roedel38e817f2008-12-02 17:27:52 +0100624 ret = iommu_map_page(&dma_dom->domain, addr, addr, e->prot);
Joerg Roedelbd0e5212008-06-26 21:27:56 +0200625 if (ret)
626 return ret;
627 /*
628 * if unity mapping is in aperture range mark the page
629 * as allocated in the aperture
630 */
631 if (addr < dma_dom->aperture_size)
Joerg Roedelc3239562009-05-12 10:56:44 +0200632 __set_bit(addr >> PAGE_SHIFT,
Joerg Roedel384de722009-05-15 12:30:05 +0200633 dma_dom->aperture[0]->bitmap);
Joerg Roedelbd0e5212008-06-26 21:27:56 +0200634 }
635
636 return 0;
637}
638
Joerg Roedel431b2a22008-07-11 17:14:22 +0200639/*
640 * Inits the unity mappings required for a specific device
641 */
Joerg Roedelbd0e5212008-06-26 21:27:56 +0200642static int init_unity_mappings_for_device(struct dma_ops_domain *dma_dom,
643 u16 devid)
644{
645 struct unity_map_entry *e;
646 int ret;
647
648 list_for_each_entry(e, &amd_iommu_unity_map, list) {
649 if (!(devid >= e->devid_start && devid <= e->devid_end))
650 continue;
651 ret = dma_ops_unity_map(dma_dom, e);
652 if (ret)
653 return ret;
654 }
655
656 return 0;
657}
658
Joerg Roedel431b2a22008-07-11 17:14:22 +0200659/****************************************************************************
660 *
661 * The next functions belong to the address allocator for the dma_ops
662 * interface functions. They work like the allocators in the other IOMMU
663 * drivers. Its basically a bitmap which marks the allocated pages in
664 * the aperture. Maybe it could be enhanced in the future to a more
665 * efficient allocator.
666 *
667 ****************************************************************************/
Joerg Roedeld3086442008-06-26 21:27:57 +0200668
Joerg Roedel431b2a22008-07-11 17:14:22 +0200669/*
Joerg Roedel384de722009-05-15 12:30:05 +0200670 * The address allocator core functions.
Joerg Roedel431b2a22008-07-11 17:14:22 +0200671 *
672 * called with domain->lock held
673 */
Joerg Roedel384de722009-05-15 12:30:05 +0200674
Joerg Roedel9cabe892009-05-18 16:38:55 +0200675/*
Joerg Roedel00cd1222009-05-19 09:52:40 +0200676 * This function checks if there is a PTE for a given dma address. If
677 * there is one, it returns the pointer to it.
678 */
679static u64* fetch_pte(struct protection_domain *domain,
680 unsigned long address)
681{
682 u64 *pte;
683
684 pte = &domain->pt_root[IOMMU_PTE_L2_INDEX(address)];
685
686 if (!IOMMU_PTE_PRESENT(*pte))
687 return NULL;
688
689 pte = IOMMU_PTE_PAGE(*pte);
690 pte = &pte[IOMMU_PTE_L1_INDEX(address)];
691
692 if (!IOMMU_PTE_PRESENT(*pte))
693 return NULL;
694
695 pte = IOMMU_PTE_PAGE(*pte);
696 pte = &pte[IOMMU_PTE_L0_INDEX(address)];
697
698 return pte;
699}
700
701/*
Joerg Roedel9cabe892009-05-18 16:38:55 +0200702 * This function is used to add a new aperture range to an existing
703 * aperture in case of dma_ops domain allocation or address allocation
704 * failure.
705 */
Joerg Roedel00cd1222009-05-19 09:52:40 +0200706static int alloc_new_range(struct amd_iommu *iommu,
707 struct dma_ops_domain *dma_dom,
Joerg Roedel9cabe892009-05-18 16:38:55 +0200708 bool populate, gfp_t gfp)
709{
710 int index = dma_dom->aperture_size >> APERTURE_RANGE_SHIFT;
Joerg Roedel00cd1222009-05-19 09:52:40 +0200711 int i;
Joerg Roedel9cabe892009-05-18 16:38:55 +0200712
Joerg Roedelf5e97052009-05-22 12:31:53 +0200713#ifdef CONFIG_IOMMU_STRESS
714 populate = false;
715#endif
716
Joerg Roedel9cabe892009-05-18 16:38:55 +0200717 if (index >= APERTURE_MAX_RANGES)
718 return -ENOMEM;
719
720 dma_dom->aperture[index] = kzalloc(sizeof(struct aperture_range), gfp);
721 if (!dma_dom->aperture[index])
722 return -ENOMEM;
723
724 dma_dom->aperture[index]->bitmap = (void *)get_zeroed_page(gfp);
725 if (!dma_dom->aperture[index]->bitmap)
726 goto out_free;
727
728 dma_dom->aperture[index]->offset = dma_dom->aperture_size;
729
730 if (populate) {
731 unsigned long address = dma_dom->aperture_size;
732 int i, num_ptes = APERTURE_RANGE_PAGES / 512;
733 u64 *pte, *pte_page;
734
735 for (i = 0; i < num_ptes; ++i) {
736 pte = alloc_pte(&dma_dom->domain, address,
737 &pte_page, gfp);
738 if (!pte)
739 goto out_free;
740
741 dma_dom->aperture[index]->pte_pages[i] = pte_page;
742
743 address += APERTURE_RANGE_SIZE / 64;
744 }
745 }
746
747 dma_dom->aperture_size += APERTURE_RANGE_SIZE;
748
Joerg Roedel00cd1222009-05-19 09:52:40 +0200749 /* Intialize the exclusion range if necessary */
750 if (iommu->exclusion_start &&
751 iommu->exclusion_start >= dma_dom->aperture[index]->offset &&
752 iommu->exclusion_start < dma_dom->aperture_size) {
753 unsigned long startpage = iommu->exclusion_start >> PAGE_SHIFT;
754 int pages = iommu_num_pages(iommu->exclusion_start,
755 iommu->exclusion_length,
756 PAGE_SIZE);
757 dma_ops_reserve_addresses(dma_dom, startpage, pages);
758 }
759
760 /*
761 * Check for areas already mapped as present in the new aperture
762 * range and mark those pages as reserved in the allocator. Such
763 * mappings may already exist as a result of requested unity
764 * mappings for devices.
765 */
766 for (i = dma_dom->aperture[index]->offset;
767 i < dma_dom->aperture_size;
768 i += PAGE_SIZE) {
769 u64 *pte = fetch_pte(&dma_dom->domain, i);
770 if (!pte || !IOMMU_PTE_PRESENT(*pte))
771 continue;
772
773 dma_ops_reserve_addresses(dma_dom, i << PAGE_SHIFT, 1);
774 }
775
Joerg Roedel9cabe892009-05-18 16:38:55 +0200776 return 0;
777
778out_free:
779 free_page((unsigned long)dma_dom->aperture[index]->bitmap);
780
781 kfree(dma_dom->aperture[index]);
782 dma_dom->aperture[index] = NULL;
783
784 return -ENOMEM;
785}
786
Joerg Roedel384de722009-05-15 12:30:05 +0200787static unsigned long dma_ops_area_alloc(struct device *dev,
788 struct dma_ops_domain *dom,
789 unsigned int pages,
790 unsigned long align_mask,
791 u64 dma_mask,
792 unsigned long start)
793{
Joerg Roedel803b8cb42009-05-18 15:32:48 +0200794 unsigned long next_bit = dom->next_address % APERTURE_RANGE_SIZE;
Joerg Roedel384de722009-05-15 12:30:05 +0200795 int max_index = dom->aperture_size >> APERTURE_RANGE_SHIFT;
796 int i = start >> APERTURE_RANGE_SHIFT;
797 unsigned long boundary_size;
798 unsigned long address = -1;
799 unsigned long limit;
800
Joerg Roedel803b8cb42009-05-18 15:32:48 +0200801 next_bit >>= PAGE_SHIFT;
802
Joerg Roedel384de722009-05-15 12:30:05 +0200803 boundary_size = ALIGN(dma_get_seg_boundary(dev) + 1,
804 PAGE_SIZE) >> PAGE_SHIFT;
805
806 for (;i < max_index; ++i) {
807 unsigned long offset = dom->aperture[i]->offset >> PAGE_SHIFT;
808
809 if (dom->aperture[i]->offset >= dma_mask)
810 break;
811
812 limit = iommu_device_max_index(APERTURE_RANGE_PAGES, offset,
813 dma_mask >> PAGE_SHIFT);
814
815 address = iommu_area_alloc(dom->aperture[i]->bitmap,
816 limit, next_bit, pages, 0,
817 boundary_size, align_mask);
818 if (address != -1) {
819 address = dom->aperture[i]->offset +
820 (address << PAGE_SHIFT);
Joerg Roedel803b8cb42009-05-18 15:32:48 +0200821 dom->next_address = address + (pages << PAGE_SHIFT);
Joerg Roedel384de722009-05-15 12:30:05 +0200822 break;
823 }
824
825 next_bit = 0;
826 }
827
828 return address;
829}
830
Joerg Roedeld3086442008-06-26 21:27:57 +0200831static unsigned long dma_ops_alloc_addresses(struct device *dev,
832 struct dma_ops_domain *dom,
Joerg Roedel6d4f343f2008-09-04 19:18:02 +0200833 unsigned int pages,
Joerg Roedel832a90c2008-09-18 15:54:23 +0200834 unsigned long align_mask,
835 u64 dma_mask)
Joerg Roedeld3086442008-06-26 21:27:57 +0200836{
Joerg Roedeld3086442008-06-26 21:27:57 +0200837 unsigned long address;
Joerg Roedeld3086442008-06-26 21:27:57 +0200838
Joerg Roedelfe16f082009-05-22 12:27:53 +0200839#ifdef CONFIG_IOMMU_STRESS
840 dom->next_address = 0;
841 dom->need_flush = true;
842#endif
Joerg Roedeld3086442008-06-26 21:27:57 +0200843
Joerg Roedel384de722009-05-15 12:30:05 +0200844 address = dma_ops_area_alloc(dev, dom, pages, align_mask,
Joerg Roedel803b8cb42009-05-18 15:32:48 +0200845 dma_mask, dom->next_address);
Joerg Roedeld3086442008-06-26 21:27:57 +0200846
Joerg Roedel1c655772008-09-04 18:40:05 +0200847 if (address == -1) {
Joerg Roedel803b8cb42009-05-18 15:32:48 +0200848 dom->next_address = 0;
Joerg Roedel384de722009-05-15 12:30:05 +0200849 address = dma_ops_area_alloc(dev, dom, pages, align_mask,
850 dma_mask, 0);
Joerg Roedel1c655772008-09-04 18:40:05 +0200851 dom->need_flush = true;
852 }
Joerg Roedeld3086442008-06-26 21:27:57 +0200853
Joerg Roedel384de722009-05-15 12:30:05 +0200854 if (unlikely(address == -1))
Joerg Roedeld3086442008-06-26 21:27:57 +0200855 address = bad_dma_address;
856
857 WARN_ON((address + (PAGE_SIZE*pages)) > dom->aperture_size);
858
859 return address;
860}
861
Joerg Roedel431b2a22008-07-11 17:14:22 +0200862/*
863 * The address free function.
864 *
865 * called with domain->lock held
866 */
Joerg Roedeld3086442008-06-26 21:27:57 +0200867static void dma_ops_free_addresses(struct dma_ops_domain *dom,
868 unsigned long address,
869 unsigned int pages)
870{
Joerg Roedel384de722009-05-15 12:30:05 +0200871 unsigned i = address >> APERTURE_RANGE_SHIFT;
872 struct aperture_range *range = dom->aperture[i];
Joerg Roedel80be3082008-11-06 14:59:05 +0100873
Joerg Roedel384de722009-05-15 12:30:05 +0200874 BUG_ON(i >= APERTURE_MAX_RANGES || range == NULL);
875
Joerg Roedel47bccd62009-05-22 12:40:54 +0200876#ifdef CONFIG_IOMMU_STRESS
877 if (i < 4)
878 return;
879#endif
880
Joerg Roedel803b8cb42009-05-18 15:32:48 +0200881 if (address >= dom->next_address)
Joerg Roedel80be3082008-11-06 14:59:05 +0100882 dom->need_flush = true;
Joerg Roedel384de722009-05-15 12:30:05 +0200883
884 address = (address % APERTURE_RANGE_SIZE) >> PAGE_SHIFT;
Joerg Roedel803b8cb42009-05-18 15:32:48 +0200885
Joerg Roedel384de722009-05-15 12:30:05 +0200886 iommu_area_free(range->bitmap, address, pages);
887
Joerg Roedeld3086442008-06-26 21:27:57 +0200888}
889
Joerg Roedel431b2a22008-07-11 17:14:22 +0200890/****************************************************************************
891 *
892 * The next functions belong to the domain allocation. A domain is
893 * allocated for every IOMMU as the default domain. If device isolation
894 * is enabled, every device get its own domain. The most important thing
895 * about domains is the page table mapping the DMA address space they
896 * contain.
897 *
898 ****************************************************************************/
899
Joerg Roedelec487d12008-06-26 21:27:58 +0200900static u16 domain_id_alloc(void)
901{
902 unsigned long flags;
903 int id;
904
905 write_lock_irqsave(&amd_iommu_devtable_lock, flags);
906 id = find_first_zero_bit(amd_iommu_pd_alloc_bitmap, MAX_DOMAIN_ID);
907 BUG_ON(id == 0);
908 if (id > 0 && id < MAX_DOMAIN_ID)
909 __set_bit(id, amd_iommu_pd_alloc_bitmap);
910 else
911 id = 0;
912 write_unlock_irqrestore(&amd_iommu_devtable_lock, flags);
913
914 return id;
915}
916
Joerg Roedela2acfb72008-12-02 18:28:53 +0100917static void domain_id_free(int id)
918{
919 unsigned long flags;
920
921 write_lock_irqsave(&amd_iommu_devtable_lock, flags);
922 if (id > 0 && id < MAX_DOMAIN_ID)
923 __clear_bit(id, amd_iommu_pd_alloc_bitmap);
924 write_unlock_irqrestore(&amd_iommu_devtable_lock, flags);
925}
Joerg Roedela2acfb72008-12-02 18:28:53 +0100926
Joerg Roedel431b2a22008-07-11 17:14:22 +0200927/*
928 * Used to reserve address ranges in the aperture (e.g. for exclusion
929 * ranges.
930 */
Joerg Roedelec487d12008-06-26 21:27:58 +0200931static void dma_ops_reserve_addresses(struct dma_ops_domain *dom,
932 unsigned long start_page,
933 unsigned int pages)
934{
Joerg Roedel384de722009-05-15 12:30:05 +0200935 unsigned int i, last_page = dom->aperture_size >> PAGE_SHIFT;
Joerg Roedelec487d12008-06-26 21:27:58 +0200936
937 if (start_page + pages > last_page)
938 pages = last_page - start_page;
939
Joerg Roedel384de722009-05-15 12:30:05 +0200940 for (i = start_page; i < start_page + pages; ++i) {
941 int index = i / APERTURE_RANGE_PAGES;
942 int page = i % APERTURE_RANGE_PAGES;
943 __set_bit(page, dom->aperture[index]->bitmap);
944 }
Joerg Roedelec487d12008-06-26 21:27:58 +0200945}
946
Joerg Roedel86db2e52008-12-02 18:20:21 +0100947static void free_pagetable(struct protection_domain *domain)
Joerg Roedelec487d12008-06-26 21:27:58 +0200948{
949 int i, j;
950 u64 *p1, *p2, *p3;
951
Joerg Roedel86db2e52008-12-02 18:20:21 +0100952 p1 = domain->pt_root;
Joerg Roedelec487d12008-06-26 21:27:58 +0200953
954 if (!p1)
955 return;
956
957 for (i = 0; i < 512; ++i) {
958 if (!IOMMU_PTE_PRESENT(p1[i]))
959 continue;
960
961 p2 = IOMMU_PTE_PAGE(p1[i]);
Joerg Roedel3cc3d842008-12-04 16:44:31 +0100962 for (j = 0; j < 512; ++j) {
Joerg Roedelec487d12008-06-26 21:27:58 +0200963 if (!IOMMU_PTE_PRESENT(p2[j]))
964 continue;
965 p3 = IOMMU_PTE_PAGE(p2[j]);
966 free_page((unsigned long)p3);
967 }
968
969 free_page((unsigned long)p2);
970 }
971
972 free_page((unsigned long)p1);
Joerg Roedel86db2e52008-12-02 18:20:21 +0100973
974 domain->pt_root = NULL;
Joerg Roedelec487d12008-06-26 21:27:58 +0200975}
976
Joerg Roedel431b2a22008-07-11 17:14:22 +0200977/*
978 * Free a domain, only used if something went wrong in the
979 * allocation path and we need to free an already allocated page table
980 */
Joerg Roedelec487d12008-06-26 21:27:58 +0200981static void dma_ops_domain_free(struct dma_ops_domain *dom)
982{
Joerg Roedel384de722009-05-15 12:30:05 +0200983 int i;
984
Joerg Roedelec487d12008-06-26 21:27:58 +0200985 if (!dom)
986 return;
987
Joerg Roedel86db2e52008-12-02 18:20:21 +0100988 free_pagetable(&dom->domain);
Joerg Roedelec487d12008-06-26 21:27:58 +0200989
Joerg Roedel384de722009-05-15 12:30:05 +0200990 for (i = 0; i < APERTURE_MAX_RANGES; ++i) {
991 if (!dom->aperture[i])
992 continue;
993 free_page((unsigned long)dom->aperture[i]->bitmap);
994 kfree(dom->aperture[i]);
995 }
Joerg Roedelec487d12008-06-26 21:27:58 +0200996
997 kfree(dom);
998}
999
Joerg Roedel431b2a22008-07-11 17:14:22 +02001000/*
1001 * Allocates a new protection domain usable for the dma_ops functions.
1002 * It also intializes the page table and the address allocator data
1003 * structures required for the dma_ops interface
1004 */
Joerg Roedeld9cfed92009-05-19 12:16:29 +02001005static struct dma_ops_domain *dma_ops_domain_alloc(struct amd_iommu *iommu)
Joerg Roedelec487d12008-06-26 21:27:58 +02001006{
1007 struct dma_ops_domain *dma_dom;
Joerg Roedelec487d12008-06-26 21:27:58 +02001008
1009 dma_dom = kzalloc(sizeof(struct dma_ops_domain), GFP_KERNEL);
1010 if (!dma_dom)
1011 return NULL;
1012
1013 spin_lock_init(&dma_dom->domain.lock);
1014
1015 dma_dom->domain.id = domain_id_alloc();
1016 if (dma_dom->domain.id == 0)
1017 goto free_dma_dom;
1018 dma_dom->domain.mode = PAGE_MODE_3_LEVEL;
1019 dma_dom->domain.pt_root = (void *)get_zeroed_page(GFP_KERNEL);
Joerg Roedel9fdb19d2008-12-02 17:46:25 +01001020 dma_dom->domain.flags = PD_DMA_OPS_MASK;
Joerg Roedelec487d12008-06-26 21:27:58 +02001021 dma_dom->domain.priv = dma_dom;
1022 if (!dma_dom->domain.pt_root)
1023 goto free_dma_dom;
Joerg Roedelec487d12008-06-26 21:27:58 +02001024
Joerg Roedel1c655772008-09-04 18:40:05 +02001025 dma_dom->need_flush = false;
Joerg Roedelbd60b732008-09-11 10:24:48 +02001026 dma_dom->target_dev = 0xffff;
Joerg Roedel1c655772008-09-04 18:40:05 +02001027
Joerg Roedel00cd1222009-05-19 09:52:40 +02001028 if (alloc_new_range(iommu, dma_dom, true, GFP_KERNEL))
Joerg Roedelec487d12008-06-26 21:27:58 +02001029 goto free_dma_dom;
Joerg Roedelec487d12008-06-26 21:27:58 +02001030
Joerg Roedel431b2a22008-07-11 17:14:22 +02001031 /*
Joerg Roedelec487d12008-06-26 21:27:58 +02001032 * mark the first page as allocated so we never return 0 as
1033 * a valid dma-address. So we can use 0 as error value
Joerg Roedel431b2a22008-07-11 17:14:22 +02001034 */
Joerg Roedel384de722009-05-15 12:30:05 +02001035 dma_dom->aperture[0]->bitmap[0] = 1;
Joerg Roedel803b8cb42009-05-18 15:32:48 +02001036 dma_dom->next_address = 0;
Joerg Roedelec487d12008-06-26 21:27:58 +02001037
Joerg Roedelec487d12008-06-26 21:27:58 +02001038
1039 return dma_dom;
1040
1041free_dma_dom:
1042 dma_ops_domain_free(dma_dom);
1043
1044 return NULL;
1045}
1046
Joerg Roedel431b2a22008-07-11 17:14:22 +02001047/*
Joerg Roedel5b28df62008-12-02 17:49:42 +01001048 * little helper function to check whether a given protection domain is a
1049 * dma_ops domain
1050 */
1051static bool dma_ops_domain(struct protection_domain *domain)
1052{
1053 return domain->flags & PD_DMA_OPS_MASK;
1054}
1055
1056/*
Joerg Roedel431b2a22008-07-11 17:14:22 +02001057 * Find out the protection domain structure for a given PCI device. This
1058 * will give us the pointer to the page table root for example.
1059 */
Joerg Roedelb20ac0d2008-06-26 21:27:59 +02001060static struct protection_domain *domain_for_device(u16 devid)
1061{
1062 struct protection_domain *dom;
1063 unsigned long flags;
1064
1065 read_lock_irqsave(&amd_iommu_devtable_lock, flags);
1066 dom = amd_iommu_pd_table[devid];
1067 read_unlock_irqrestore(&amd_iommu_devtable_lock, flags);
1068
1069 return dom;
1070}
1071
Joerg Roedel431b2a22008-07-11 17:14:22 +02001072/*
1073 * If a device is not yet associated with a domain, this function does
1074 * assigns it visible for the hardware
1075 */
Joerg Roedel0feae532009-08-26 15:26:30 +02001076static void __attach_device(struct amd_iommu *iommu,
1077 struct protection_domain *domain,
1078 u16 devid)
Joerg Roedelb20ac0d2008-06-26 21:27:59 +02001079{
Joerg Roedeleba6ac62009-09-01 12:07:08 +02001080 u64 pte_root;
Joerg Roedelb20ac0d2008-06-26 21:27:59 +02001081
Joerg Roedeleba6ac62009-09-01 12:07:08 +02001082 /* lock domain */
1083 spin_lock(&domain->lock);
1084
1085 pte_root = virt_to_phys(domain->pt_root);
Joerg Roedel863c74e2008-12-02 17:56:36 +01001086
Joerg Roedel38ddf412008-09-11 10:38:32 +02001087 pte_root |= (domain->mode & DEV_ENTRY_MODE_MASK)
1088 << DEV_ENTRY_MODE_SHIFT;
1089 pte_root |= IOMMU_PTE_IR | IOMMU_PTE_IW | IOMMU_PTE_P | IOMMU_PTE_TV;
Joerg Roedelb20ac0d2008-06-26 21:27:59 +02001090
Joerg Roedelb20ac0d2008-06-26 21:27:59 +02001091 amd_iommu_dev_table[devid].data[2] = domain->id;
Joerg Roedelaa879ff2009-08-31 16:01:48 +02001092 amd_iommu_dev_table[devid].data[1] = upper_32_bits(pte_root);
1093 amd_iommu_dev_table[devid].data[0] = lower_32_bits(pte_root);
Joerg Roedelb20ac0d2008-06-26 21:27:59 +02001094
1095 amd_iommu_pd_table[devid] = domain;
Joerg Roedeleba6ac62009-09-01 12:07:08 +02001096
1097 domain->dev_cnt += 1;
1098
1099 /* ready */
1100 spin_unlock(&domain->lock);
Joerg Roedel0feae532009-08-26 15:26:30 +02001101}
Joerg Roedelb20ac0d2008-06-26 21:27:59 +02001102
Joerg Roedel0feae532009-08-26 15:26:30 +02001103static void attach_device(struct amd_iommu *iommu,
1104 struct protection_domain *domain,
1105 u16 devid)
1106{
Joerg Roedeleba6ac62009-09-01 12:07:08 +02001107 unsigned long flags;
1108
1109 write_lock_irqsave(&amd_iommu_devtable_lock, flags);
Joerg Roedel0feae532009-08-26 15:26:30 +02001110 __attach_device(iommu, domain, devid);
Joerg Roedeleba6ac62009-09-01 12:07:08 +02001111 write_unlock_irqrestore(&amd_iommu_devtable_lock, flags);
Joerg Roedel0feae532009-08-26 15:26:30 +02001112
1113 /*
1114 * We might boot into a crash-kernel here. The crashed kernel
1115 * left the caches in the IOMMU dirty. So we have to flush
1116 * here to evict all dirty stuff.
1117 */
Joerg Roedelb20ac0d2008-06-26 21:27:59 +02001118 iommu_queue_inv_dev_entry(iommu, devid);
Chris Wright42a49f92009-06-15 15:42:00 +02001119 iommu_flush_tlb_pde(iommu, domain->id);
Joerg Roedelb20ac0d2008-06-26 21:27:59 +02001120}
1121
Joerg Roedel355bf552008-12-08 12:02:41 +01001122/*
1123 * Removes a device from a protection domain (unlocked)
1124 */
1125static void __detach_device(struct protection_domain *domain, u16 devid)
1126{
1127
1128 /* lock domain */
1129 spin_lock(&domain->lock);
1130
1131 /* remove domain from the lookup table */
1132 amd_iommu_pd_table[devid] = NULL;
1133
1134 /* remove entry from the device table seen by the hardware */
1135 amd_iommu_dev_table[devid].data[0] = IOMMU_PTE_P | IOMMU_PTE_TV;
1136 amd_iommu_dev_table[devid].data[1] = 0;
1137 amd_iommu_dev_table[devid].data[2] = 0;
1138
1139 /* decrease reference counter */
1140 domain->dev_cnt -= 1;
1141
1142 /* ready */
1143 spin_unlock(&domain->lock);
1144}
1145
1146/*
1147 * Removes a device from a protection domain (with devtable_lock held)
1148 */
1149static void detach_device(struct protection_domain *domain, u16 devid)
1150{
1151 unsigned long flags;
1152
1153 /* lock device table */
1154 write_lock_irqsave(&amd_iommu_devtable_lock, flags);
1155 __detach_device(domain, devid);
1156 write_unlock_irqrestore(&amd_iommu_devtable_lock, flags);
1157}
Joerg Roedele275a2a2008-12-10 18:27:25 +01001158
1159static int device_change_notifier(struct notifier_block *nb,
1160 unsigned long action, void *data)
1161{
1162 struct device *dev = data;
1163 struct pci_dev *pdev = to_pci_dev(dev);
1164 u16 devid = calc_devid(pdev->bus->number, pdev->devfn);
1165 struct protection_domain *domain;
1166 struct dma_ops_domain *dma_domain;
1167 struct amd_iommu *iommu;
Joerg Roedel1ac4cbb2008-12-10 19:33:26 +01001168 unsigned long flags;
Joerg Roedele275a2a2008-12-10 18:27:25 +01001169
1170 if (devid > amd_iommu_last_bdf)
1171 goto out;
1172
1173 devid = amd_iommu_alias_table[devid];
1174
1175 iommu = amd_iommu_rlookup_table[devid];
1176 if (iommu == NULL)
1177 goto out;
1178
1179 domain = domain_for_device(devid);
1180
1181 if (domain && !dma_ops_domain(domain))
1182 WARN_ONCE(1, "AMD IOMMU WARNING: device %s already bound "
1183 "to a non-dma-ops domain\n", dev_name(dev));
1184
1185 switch (action) {
Chris Wrightc1eee672009-05-21 00:56:58 -07001186 case BUS_NOTIFY_UNBOUND_DRIVER:
Joerg Roedele275a2a2008-12-10 18:27:25 +01001187 if (!domain)
1188 goto out;
1189 detach_device(domain, devid);
1190 break;
Joerg Roedel1ac4cbb2008-12-10 19:33:26 +01001191 case BUS_NOTIFY_ADD_DEVICE:
1192 /* allocate a protection domain if a device is added */
1193 dma_domain = find_protection_domain(devid);
1194 if (dma_domain)
1195 goto out;
Joerg Roedeld9cfed92009-05-19 12:16:29 +02001196 dma_domain = dma_ops_domain_alloc(iommu);
Joerg Roedel1ac4cbb2008-12-10 19:33:26 +01001197 if (!dma_domain)
1198 goto out;
1199 dma_domain->target_dev = devid;
1200
1201 spin_lock_irqsave(&iommu_pd_list_lock, flags);
1202 list_add_tail(&dma_domain->list, &iommu_pd_list);
1203 spin_unlock_irqrestore(&iommu_pd_list_lock, flags);
1204
1205 break;
Joerg Roedele275a2a2008-12-10 18:27:25 +01001206 default:
1207 goto out;
1208 }
1209
1210 iommu_queue_inv_dev_entry(iommu, devid);
1211 iommu_completion_wait(iommu);
1212
1213out:
1214 return 0;
1215}
1216
Jaswinder Singh Rajputb25ae672009-07-01 19:53:14 +05301217static struct notifier_block device_nb = {
Joerg Roedele275a2a2008-12-10 18:27:25 +01001218 .notifier_call = device_change_notifier,
1219};
Joerg Roedel355bf552008-12-08 12:02:41 +01001220
Joerg Roedel431b2a22008-07-11 17:14:22 +02001221/*****************************************************************************
1222 *
1223 * The next functions belong to the dma_ops mapping/unmapping code.
1224 *
1225 *****************************************************************************/
1226
1227/*
Joerg Roedeldbcc1122008-09-04 15:04:26 +02001228 * This function checks if the driver got a valid device from the caller to
1229 * avoid dereferencing invalid pointers.
1230 */
1231static bool check_device(struct device *dev)
1232{
1233 if (!dev || !dev->dma_mask)
1234 return false;
1235
1236 return true;
1237}
1238
1239/*
Joerg Roedelbd60b732008-09-11 10:24:48 +02001240 * In this function the list of preallocated protection domains is traversed to
1241 * find the domain for a specific device
1242 */
1243static struct dma_ops_domain *find_protection_domain(u16 devid)
1244{
1245 struct dma_ops_domain *entry, *ret = NULL;
1246 unsigned long flags;
1247
1248 if (list_empty(&iommu_pd_list))
1249 return NULL;
1250
1251 spin_lock_irqsave(&iommu_pd_list_lock, flags);
1252
1253 list_for_each_entry(entry, &iommu_pd_list, list) {
1254 if (entry->target_dev == devid) {
1255 ret = entry;
Joerg Roedelbd60b732008-09-11 10:24:48 +02001256 break;
1257 }
1258 }
1259
1260 spin_unlock_irqrestore(&iommu_pd_list_lock, flags);
1261
1262 return ret;
1263}
1264
1265/*
Joerg Roedel431b2a22008-07-11 17:14:22 +02001266 * In the dma_ops path we only have the struct device. This function
1267 * finds the corresponding IOMMU, the protection domain and the
1268 * requestor id for a given device.
1269 * If the device is not yet associated with a domain this is also done
1270 * in this function.
1271 */
Joerg Roedelb20ac0d2008-06-26 21:27:59 +02001272static int get_device_resources(struct device *dev,
1273 struct amd_iommu **iommu,
1274 struct protection_domain **domain,
1275 u16 *bdf)
1276{
1277 struct dma_ops_domain *dma_dom;
1278 struct pci_dev *pcidev;
1279 u16 _bdf;
1280
Joerg Roedeldbcc1122008-09-04 15:04:26 +02001281 *iommu = NULL;
1282 *domain = NULL;
1283 *bdf = 0xffff;
1284
1285 if (dev->bus != &pci_bus_type)
1286 return 0;
Joerg Roedelb20ac0d2008-06-26 21:27:59 +02001287
1288 pcidev = to_pci_dev(dev);
Joerg Roedeld591b0a2008-07-11 17:14:35 +02001289 _bdf = calc_devid(pcidev->bus->number, pcidev->devfn);
Joerg Roedelb20ac0d2008-06-26 21:27:59 +02001290
Joerg Roedel431b2a22008-07-11 17:14:22 +02001291 /* device not translated by any IOMMU in the system? */
Joerg Roedeldbcc1122008-09-04 15:04:26 +02001292 if (_bdf > amd_iommu_last_bdf)
Joerg Roedelb20ac0d2008-06-26 21:27:59 +02001293 return 0;
Joerg Roedelb20ac0d2008-06-26 21:27:59 +02001294
1295 *bdf = amd_iommu_alias_table[_bdf];
1296
1297 *iommu = amd_iommu_rlookup_table[*bdf];
1298 if (*iommu == NULL)
1299 return 0;
Joerg Roedelb20ac0d2008-06-26 21:27:59 +02001300 *domain = domain_for_device(*bdf);
1301 if (*domain == NULL) {
Joerg Roedelbd60b732008-09-11 10:24:48 +02001302 dma_dom = find_protection_domain(*bdf);
1303 if (!dma_dom)
1304 dma_dom = (*iommu)->default_dom;
Joerg Roedelb20ac0d2008-06-26 21:27:59 +02001305 *domain = &dma_dom->domain;
Joerg Roedelf1179dc2008-12-10 14:39:51 +01001306 attach_device(*iommu, *domain, *bdf);
Joerg Roedele9a22a12009-06-09 12:00:37 +02001307 DUMP_printk("Using protection domain %d for device %s\n",
1308 (*domain)->id, dev_name(dev));
Joerg Roedelb20ac0d2008-06-26 21:27:59 +02001309 }
1310
Joerg Roedelf91ba192008-11-25 12:56:12 +01001311 if (domain_for_device(_bdf) == NULL)
Joerg Roedelf1179dc2008-12-10 14:39:51 +01001312 attach_device(*iommu, *domain, _bdf);
Joerg Roedelf91ba192008-11-25 12:56:12 +01001313
Joerg Roedelb20ac0d2008-06-26 21:27:59 +02001314 return 1;
1315}
1316
Joerg Roedel431b2a22008-07-11 17:14:22 +02001317/*
Joerg Roedel8bda3092009-05-12 12:02:46 +02001318 * If the pte_page is not yet allocated this function is called
1319 */
1320static u64* alloc_pte(struct protection_domain *dom,
1321 unsigned long address, u64 **pte_page, gfp_t gfp)
1322{
1323 u64 *pte, *page;
1324
1325 pte = &dom->pt_root[IOMMU_PTE_L2_INDEX(address)];
1326
1327 if (!IOMMU_PTE_PRESENT(*pte)) {
1328 page = (u64 *)get_zeroed_page(gfp);
1329 if (!page)
1330 return NULL;
1331 *pte = IOMMU_L2_PDE(virt_to_phys(page));
1332 }
1333
1334 pte = IOMMU_PTE_PAGE(*pte);
1335 pte = &pte[IOMMU_PTE_L1_INDEX(address)];
1336
1337 if (!IOMMU_PTE_PRESENT(*pte)) {
1338 page = (u64 *)get_zeroed_page(gfp);
1339 if (!page)
1340 return NULL;
1341 *pte = IOMMU_L1_PDE(virt_to_phys(page));
1342 }
1343
1344 pte = IOMMU_PTE_PAGE(*pte);
1345
1346 if (pte_page)
1347 *pte_page = pte;
1348
1349 pte = &pte[IOMMU_PTE_L0_INDEX(address)];
1350
1351 return pte;
1352}
1353
1354/*
1355 * This function fetches the PTE for a given address in the aperture
1356 */
1357static u64* dma_ops_get_pte(struct dma_ops_domain *dom,
1358 unsigned long address)
1359{
Joerg Roedel384de722009-05-15 12:30:05 +02001360 struct aperture_range *aperture;
Joerg Roedel8bda3092009-05-12 12:02:46 +02001361 u64 *pte, *pte_page;
1362
Joerg Roedel384de722009-05-15 12:30:05 +02001363 aperture = dom->aperture[APERTURE_RANGE_INDEX(address)];
1364 if (!aperture)
1365 return NULL;
1366
1367 pte = aperture->pte_pages[APERTURE_PAGE_INDEX(address)];
Joerg Roedel8bda3092009-05-12 12:02:46 +02001368 if (!pte) {
1369 pte = alloc_pte(&dom->domain, address, &pte_page, GFP_ATOMIC);
Joerg Roedel384de722009-05-15 12:30:05 +02001370 aperture->pte_pages[APERTURE_PAGE_INDEX(address)] = pte_page;
1371 } else
1372 pte += IOMMU_PTE_L0_INDEX(address);
Joerg Roedel8bda3092009-05-12 12:02:46 +02001373
1374 return pte;
1375}
1376
1377/*
Joerg Roedel431b2a22008-07-11 17:14:22 +02001378 * This is the generic map function. It maps one 4kb page at paddr to
1379 * the given address in the DMA address space for the domain.
1380 */
Joerg Roedelcb76c322008-06-26 21:28:00 +02001381static dma_addr_t dma_ops_domain_map(struct amd_iommu *iommu,
1382 struct dma_ops_domain *dom,
1383 unsigned long address,
1384 phys_addr_t paddr,
1385 int direction)
1386{
1387 u64 *pte, __pte;
1388
1389 WARN_ON(address > dom->aperture_size);
1390
1391 paddr &= PAGE_MASK;
1392
Joerg Roedel8bda3092009-05-12 12:02:46 +02001393 pte = dma_ops_get_pte(dom, address);
Joerg Roedel53812c12009-05-12 12:17:38 +02001394 if (!pte)
1395 return bad_dma_address;
Joerg Roedelcb76c322008-06-26 21:28:00 +02001396
1397 __pte = paddr | IOMMU_PTE_P | IOMMU_PTE_FC;
1398
1399 if (direction == DMA_TO_DEVICE)
1400 __pte |= IOMMU_PTE_IR;
1401 else if (direction == DMA_FROM_DEVICE)
1402 __pte |= IOMMU_PTE_IW;
1403 else if (direction == DMA_BIDIRECTIONAL)
1404 __pte |= IOMMU_PTE_IR | IOMMU_PTE_IW;
1405
1406 WARN_ON(*pte);
1407
1408 *pte = __pte;
1409
1410 return (dma_addr_t)address;
1411}
1412
Joerg Roedel431b2a22008-07-11 17:14:22 +02001413/*
1414 * The generic unmapping function for on page in the DMA address space.
1415 */
Joerg Roedelcb76c322008-06-26 21:28:00 +02001416static void dma_ops_domain_unmap(struct amd_iommu *iommu,
1417 struct dma_ops_domain *dom,
1418 unsigned long address)
1419{
Joerg Roedel384de722009-05-15 12:30:05 +02001420 struct aperture_range *aperture;
Joerg Roedelcb76c322008-06-26 21:28:00 +02001421 u64 *pte;
1422
1423 if (address >= dom->aperture_size)
1424 return;
1425
Joerg Roedel384de722009-05-15 12:30:05 +02001426 aperture = dom->aperture[APERTURE_RANGE_INDEX(address)];
1427 if (!aperture)
1428 return;
Joerg Roedelcb76c322008-06-26 21:28:00 +02001429
Joerg Roedel384de722009-05-15 12:30:05 +02001430 pte = aperture->pte_pages[APERTURE_PAGE_INDEX(address)];
1431 if (!pte)
1432 return;
1433
Joerg Roedelcb76c322008-06-26 21:28:00 +02001434 pte += IOMMU_PTE_L0_INDEX(address);
1435
1436 WARN_ON(!*pte);
1437
1438 *pte = 0ULL;
1439}
1440
Joerg Roedel431b2a22008-07-11 17:14:22 +02001441/*
1442 * This function contains common code for mapping of a physically
Joerg Roedel24f81162008-12-08 14:25:39 +01001443 * contiguous memory region into DMA address space. It is used by all
1444 * mapping functions provided with this IOMMU driver.
Joerg Roedel431b2a22008-07-11 17:14:22 +02001445 * Must be called with the domain lock held.
1446 */
Joerg Roedelcb76c322008-06-26 21:28:00 +02001447static dma_addr_t __map_single(struct device *dev,
1448 struct amd_iommu *iommu,
1449 struct dma_ops_domain *dma_dom,
1450 phys_addr_t paddr,
1451 size_t size,
Joerg Roedel6d4f343f2008-09-04 19:18:02 +02001452 int dir,
Joerg Roedel832a90c2008-09-18 15:54:23 +02001453 bool align,
1454 u64 dma_mask)
Joerg Roedelcb76c322008-06-26 21:28:00 +02001455{
1456 dma_addr_t offset = paddr & ~PAGE_MASK;
Joerg Roedel53812c12009-05-12 12:17:38 +02001457 dma_addr_t address, start, ret;
Joerg Roedelcb76c322008-06-26 21:28:00 +02001458 unsigned int pages;
Joerg Roedel6d4f343f2008-09-04 19:18:02 +02001459 unsigned long align_mask = 0;
Joerg Roedelcb76c322008-06-26 21:28:00 +02001460 int i;
1461
Joerg Roedele3c449f2008-10-15 22:02:11 -07001462 pages = iommu_num_pages(paddr, size, PAGE_SIZE);
Joerg Roedelcb76c322008-06-26 21:28:00 +02001463 paddr &= PAGE_MASK;
1464
Joerg Roedel8ecaf8f2008-12-12 16:13:04 +01001465 INC_STATS_COUNTER(total_map_requests);
1466
Joerg Roedelc1858972008-12-12 15:42:39 +01001467 if (pages > 1)
1468 INC_STATS_COUNTER(cross_page);
1469
Joerg Roedel6d4f343f2008-09-04 19:18:02 +02001470 if (align)
1471 align_mask = (1UL << get_order(size)) - 1;
1472
Joerg Roedel11b83882009-05-19 10:23:15 +02001473retry:
Joerg Roedel832a90c2008-09-18 15:54:23 +02001474 address = dma_ops_alloc_addresses(dev, dma_dom, pages, align_mask,
1475 dma_mask);
Joerg Roedel11b83882009-05-19 10:23:15 +02001476 if (unlikely(address == bad_dma_address)) {
1477 /*
1478 * setting next_address here will let the address
1479 * allocator only scan the new allocated range in the
1480 * first run. This is a small optimization.
1481 */
1482 dma_dom->next_address = dma_dom->aperture_size;
1483
1484 if (alloc_new_range(iommu, dma_dom, false, GFP_ATOMIC))
1485 goto out;
1486
1487 /*
1488 * aperture was sucessfully enlarged by 128 MB, try
1489 * allocation again
1490 */
1491 goto retry;
1492 }
Joerg Roedelcb76c322008-06-26 21:28:00 +02001493
1494 start = address;
1495 for (i = 0; i < pages; ++i) {
Joerg Roedel53812c12009-05-12 12:17:38 +02001496 ret = dma_ops_domain_map(iommu, dma_dom, start, paddr, dir);
1497 if (ret == bad_dma_address)
1498 goto out_unmap;
1499
Joerg Roedelcb76c322008-06-26 21:28:00 +02001500 paddr += PAGE_SIZE;
1501 start += PAGE_SIZE;
1502 }
1503 address += offset;
1504
Joerg Roedel5774f7c2008-12-12 15:57:30 +01001505 ADD_STATS_COUNTER(alloced_io_mem, size);
1506
FUJITA Tomonoriafa9fdc2008-09-20 01:23:30 +09001507 if (unlikely(dma_dom->need_flush && !amd_iommu_unmap_flush)) {
Joerg Roedel1c655772008-09-04 18:40:05 +02001508 iommu_flush_tlb(iommu, dma_dom->domain.id);
1509 dma_dom->need_flush = false;
1510 } else if (unlikely(iommu_has_npcache(iommu)))
Joerg Roedel270cab242008-09-04 15:49:46 +02001511 iommu_flush_pages(iommu, dma_dom->domain.id, address, size);
1512
Joerg Roedelcb76c322008-06-26 21:28:00 +02001513out:
1514 return address;
Joerg Roedel53812c12009-05-12 12:17:38 +02001515
1516out_unmap:
1517
1518 for (--i; i >= 0; --i) {
1519 start -= PAGE_SIZE;
1520 dma_ops_domain_unmap(iommu, dma_dom, start);
1521 }
1522
1523 dma_ops_free_addresses(dma_dom, address, pages);
1524
1525 return bad_dma_address;
Joerg Roedelcb76c322008-06-26 21:28:00 +02001526}
1527
Joerg Roedel431b2a22008-07-11 17:14:22 +02001528/*
1529 * Does the reverse of the __map_single function. Must be called with
1530 * the domain lock held too
1531 */
Joerg Roedelcb76c322008-06-26 21:28:00 +02001532static void __unmap_single(struct amd_iommu *iommu,
1533 struct dma_ops_domain *dma_dom,
1534 dma_addr_t dma_addr,
1535 size_t size,
1536 int dir)
1537{
1538 dma_addr_t i, start;
1539 unsigned int pages;
1540
Joerg Roedelb8d99052008-12-08 14:40:26 +01001541 if ((dma_addr == bad_dma_address) ||
1542 (dma_addr + size > dma_dom->aperture_size))
Joerg Roedelcb76c322008-06-26 21:28:00 +02001543 return;
1544
Joerg Roedele3c449f2008-10-15 22:02:11 -07001545 pages = iommu_num_pages(dma_addr, size, PAGE_SIZE);
Joerg Roedelcb76c322008-06-26 21:28:00 +02001546 dma_addr &= PAGE_MASK;
1547 start = dma_addr;
1548
1549 for (i = 0; i < pages; ++i) {
1550 dma_ops_domain_unmap(iommu, dma_dom, start);
1551 start += PAGE_SIZE;
1552 }
1553
Joerg Roedel5774f7c2008-12-12 15:57:30 +01001554 SUB_STATS_COUNTER(alloced_io_mem, size);
1555
Joerg Roedelcb76c322008-06-26 21:28:00 +02001556 dma_ops_free_addresses(dma_dom, dma_addr, pages);
Joerg Roedel270cab242008-09-04 15:49:46 +02001557
Joerg Roedel80be3082008-11-06 14:59:05 +01001558 if (amd_iommu_unmap_flush || dma_dom->need_flush) {
Joerg Roedel1c655772008-09-04 18:40:05 +02001559 iommu_flush_pages(iommu, dma_dom->domain.id, dma_addr, size);
Joerg Roedel80be3082008-11-06 14:59:05 +01001560 dma_dom->need_flush = false;
1561 }
Joerg Roedelcb76c322008-06-26 21:28:00 +02001562}
1563
Joerg Roedel431b2a22008-07-11 17:14:22 +02001564/*
1565 * The exported map_single function for dma_ops.
1566 */
FUJITA Tomonori51491362009-01-05 23:47:25 +09001567static dma_addr_t map_page(struct device *dev, struct page *page,
1568 unsigned long offset, size_t size,
1569 enum dma_data_direction dir,
1570 struct dma_attrs *attrs)
Joerg Roedel4da70b92008-06-26 21:28:01 +02001571{
1572 unsigned long flags;
1573 struct amd_iommu *iommu;
1574 struct protection_domain *domain;
1575 u16 devid;
1576 dma_addr_t addr;
Joerg Roedel832a90c2008-09-18 15:54:23 +02001577 u64 dma_mask;
FUJITA Tomonori51491362009-01-05 23:47:25 +09001578 phys_addr_t paddr = page_to_phys(page) + offset;
Joerg Roedel4da70b92008-06-26 21:28:01 +02001579
Joerg Roedel0f2a86f2008-12-12 15:05:16 +01001580 INC_STATS_COUNTER(cnt_map_single);
1581
Joerg Roedeldbcc1122008-09-04 15:04:26 +02001582 if (!check_device(dev))
1583 return bad_dma_address;
1584
Joerg Roedel832a90c2008-09-18 15:54:23 +02001585 dma_mask = *dev->dma_mask;
Joerg Roedel4da70b92008-06-26 21:28:01 +02001586
1587 get_device_resources(dev, &iommu, &domain, &devid);
1588
1589 if (iommu == NULL || domain == NULL)
Joerg Roedel431b2a22008-07-11 17:14:22 +02001590 /* device not handled by any AMD IOMMU */
Joerg Roedel4da70b92008-06-26 21:28:01 +02001591 return (dma_addr_t)paddr;
1592
Joerg Roedel5b28df62008-12-02 17:49:42 +01001593 if (!dma_ops_domain(domain))
1594 return bad_dma_address;
1595
Joerg Roedel4da70b92008-06-26 21:28:01 +02001596 spin_lock_irqsave(&domain->lock, flags);
Joerg Roedel832a90c2008-09-18 15:54:23 +02001597 addr = __map_single(dev, iommu, domain->priv, paddr, size, dir, false,
1598 dma_mask);
Joerg Roedel4da70b92008-06-26 21:28:01 +02001599 if (addr == bad_dma_address)
1600 goto out;
1601
Joerg Roedel09ee17e2008-12-03 12:19:27 +01001602 iommu_completion_wait(iommu);
Joerg Roedel4da70b92008-06-26 21:28:01 +02001603
1604out:
1605 spin_unlock_irqrestore(&domain->lock, flags);
1606
1607 return addr;
1608}
1609
Joerg Roedel431b2a22008-07-11 17:14:22 +02001610/*
1611 * The exported unmap_single function for dma_ops.
1612 */
FUJITA Tomonori51491362009-01-05 23:47:25 +09001613static void unmap_page(struct device *dev, dma_addr_t dma_addr, size_t size,
1614 enum dma_data_direction dir, struct dma_attrs *attrs)
Joerg Roedel4da70b92008-06-26 21:28:01 +02001615{
1616 unsigned long flags;
1617 struct amd_iommu *iommu;
1618 struct protection_domain *domain;
1619 u16 devid;
1620
Joerg Roedel146a6912008-12-12 15:07:12 +01001621 INC_STATS_COUNTER(cnt_unmap_single);
1622
Joerg Roedeldbcc1122008-09-04 15:04:26 +02001623 if (!check_device(dev) ||
1624 !get_device_resources(dev, &iommu, &domain, &devid))
Joerg Roedel431b2a22008-07-11 17:14:22 +02001625 /* device not handled by any AMD IOMMU */
Joerg Roedel4da70b92008-06-26 21:28:01 +02001626 return;
1627
Joerg Roedel5b28df62008-12-02 17:49:42 +01001628 if (!dma_ops_domain(domain))
1629 return;
1630
Joerg Roedel4da70b92008-06-26 21:28:01 +02001631 spin_lock_irqsave(&domain->lock, flags);
1632
1633 __unmap_single(iommu, domain->priv, dma_addr, size, dir);
1634
Joerg Roedel09ee17e2008-12-03 12:19:27 +01001635 iommu_completion_wait(iommu);
Joerg Roedel4da70b92008-06-26 21:28:01 +02001636
1637 spin_unlock_irqrestore(&domain->lock, flags);
1638}
1639
Joerg Roedel431b2a22008-07-11 17:14:22 +02001640/*
1641 * This is a special map_sg function which is used if we should map a
1642 * device which is not handled by an AMD IOMMU in the system.
1643 */
Joerg Roedel65b050a2008-06-26 21:28:02 +02001644static int map_sg_no_iommu(struct device *dev, struct scatterlist *sglist,
1645 int nelems, int dir)
1646{
1647 struct scatterlist *s;
1648 int i;
1649
1650 for_each_sg(sglist, s, nelems, i) {
1651 s->dma_address = (dma_addr_t)sg_phys(s);
1652 s->dma_length = s->length;
1653 }
1654
1655 return nelems;
1656}
1657
Joerg Roedel431b2a22008-07-11 17:14:22 +02001658/*
1659 * The exported map_sg function for dma_ops (handles scatter-gather
1660 * lists).
1661 */
Joerg Roedel65b050a2008-06-26 21:28:02 +02001662static int map_sg(struct device *dev, struct scatterlist *sglist,
FUJITA Tomonori160c1d82009-01-05 23:59:02 +09001663 int nelems, enum dma_data_direction dir,
1664 struct dma_attrs *attrs)
Joerg Roedel65b050a2008-06-26 21:28:02 +02001665{
1666 unsigned long flags;
1667 struct amd_iommu *iommu;
1668 struct protection_domain *domain;
1669 u16 devid;
1670 int i;
1671 struct scatterlist *s;
1672 phys_addr_t paddr;
1673 int mapped_elems = 0;
Joerg Roedel832a90c2008-09-18 15:54:23 +02001674 u64 dma_mask;
Joerg Roedel65b050a2008-06-26 21:28:02 +02001675
Joerg Roedeld03f067a2008-12-12 15:09:48 +01001676 INC_STATS_COUNTER(cnt_map_sg);
1677
Joerg Roedeldbcc1122008-09-04 15:04:26 +02001678 if (!check_device(dev))
1679 return 0;
1680
Joerg Roedel832a90c2008-09-18 15:54:23 +02001681 dma_mask = *dev->dma_mask;
Joerg Roedel65b050a2008-06-26 21:28:02 +02001682
1683 get_device_resources(dev, &iommu, &domain, &devid);
1684
1685 if (!iommu || !domain)
1686 return map_sg_no_iommu(dev, sglist, nelems, dir);
1687
Joerg Roedel5b28df62008-12-02 17:49:42 +01001688 if (!dma_ops_domain(domain))
1689 return 0;
1690
Joerg Roedel65b050a2008-06-26 21:28:02 +02001691 spin_lock_irqsave(&domain->lock, flags);
1692
1693 for_each_sg(sglist, s, nelems, i) {
1694 paddr = sg_phys(s);
1695
1696 s->dma_address = __map_single(dev, iommu, domain->priv,
Joerg Roedel832a90c2008-09-18 15:54:23 +02001697 paddr, s->length, dir, false,
1698 dma_mask);
Joerg Roedel65b050a2008-06-26 21:28:02 +02001699
1700 if (s->dma_address) {
1701 s->dma_length = s->length;
1702 mapped_elems++;
1703 } else
1704 goto unmap;
Joerg Roedel65b050a2008-06-26 21:28:02 +02001705 }
1706
Joerg Roedel09ee17e2008-12-03 12:19:27 +01001707 iommu_completion_wait(iommu);
Joerg Roedel65b050a2008-06-26 21:28:02 +02001708
1709out:
1710 spin_unlock_irqrestore(&domain->lock, flags);
1711
1712 return mapped_elems;
1713unmap:
1714 for_each_sg(sglist, s, mapped_elems, i) {
1715 if (s->dma_address)
1716 __unmap_single(iommu, domain->priv, s->dma_address,
1717 s->dma_length, dir);
1718 s->dma_address = s->dma_length = 0;
1719 }
1720
1721 mapped_elems = 0;
1722
1723 goto out;
1724}
1725
Joerg Roedel431b2a22008-07-11 17:14:22 +02001726/*
1727 * The exported map_sg function for dma_ops (handles scatter-gather
1728 * lists).
1729 */
Joerg Roedel65b050a2008-06-26 21:28:02 +02001730static void unmap_sg(struct device *dev, struct scatterlist *sglist,
FUJITA Tomonori160c1d82009-01-05 23:59:02 +09001731 int nelems, enum dma_data_direction dir,
1732 struct dma_attrs *attrs)
Joerg Roedel65b050a2008-06-26 21:28:02 +02001733{
1734 unsigned long flags;
1735 struct amd_iommu *iommu;
1736 struct protection_domain *domain;
1737 struct scatterlist *s;
1738 u16 devid;
1739 int i;
1740
Joerg Roedel55877a62008-12-12 15:12:14 +01001741 INC_STATS_COUNTER(cnt_unmap_sg);
1742
Joerg Roedeldbcc1122008-09-04 15:04:26 +02001743 if (!check_device(dev) ||
1744 !get_device_resources(dev, &iommu, &domain, &devid))
Joerg Roedel65b050a2008-06-26 21:28:02 +02001745 return;
1746
Joerg Roedel5b28df62008-12-02 17:49:42 +01001747 if (!dma_ops_domain(domain))
1748 return;
1749
Joerg Roedel65b050a2008-06-26 21:28:02 +02001750 spin_lock_irqsave(&domain->lock, flags);
1751
1752 for_each_sg(sglist, s, nelems, i) {
1753 __unmap_single(iommu, domain->priv, s->dma_address,
1754 s->dma_length, dir);
Joerg Roedel65b050a2008-06-26 21:28:02 +02001755 s->dma_address = s->dma_length = 0;
1756 }
1757
Joerg Roedel09ee17e2008-12-03 12:19:27 +01001758 iommu_completion_wait(iommu);
Joerg Roedel65b050a2008-06-26 21:28:02 +02001759
1760 spin_unlock_irqrestore(&domain->lock, flags);
1761}
1762
Joerg Roedel431b2a22008-07-11 17:14:22 +02001763/*
1764 * The exported alloc_coherent function for dma_ops.
1765 */
Joerg Roedel5d8b53c2008-06-26 21:28:03 +02001766static void *alloc_coherent(struct device *dev, size_t size,
1767 dma_addr_t *dma_addr, gfp_t flag)
1768{
1769 unsigned long flags;
1770 void *virt_addr;
1771 struct amd_iommu *iommu;
1772 struct protection_domain *domain;
1773 u16 devid;
1774 phys_addr_t paddr;
Joerg Roedel832a90c2008-09-18 15:54:23 +02001775 u64 dma_mask = dev->coherent_dma_mask;
Joerg Roedel5d8b53c2008-06-26 21:28:03 +02001776
Joerg Roedelc8f0fb32008-12-12 15:14:21 +01001777 INC_STATS_COUNTER(cnt_alloc_coherent);
1778
Joerg Roedeldbcc1122008-09-04 15:04:26 +02001779 if (!check_device(dev))
1780 return NULL;
1781
FUJITA Tomonori13d9fea2008-09-10 20:19:40 +09001782 if (!get_device_resources(dev, &iommu, &domain, &devid))
1783 flag &= ~(__GFP_DMA | __GFP_HIGHMEM | __GFP_DMA32);
1784
Joerg Roedelc97ac532008-09-11 10:59:15 +02001785 flag |= __GFP_ZERO;
Joerg Roedel5d8b53c2008-06-26 21:28:03 +02001786 virt_addr = (void *)__get_free_pages(flag, get_order(size));
1787 if (!virt_addr)
Jaswinder Singh Rajputb25ae672009-07-01 19:53:14 +05301788 return NULL;
Joerg Roedel5d8b53c2008-06-26 21:28:03 +02001789
Joerg Roedel5d8b53c2008-06-26 21:28:03 +02001790 paddr = virt_to_phys(virt_addr);
1791
Joerg Roedel5d8b53c2008-06-26 21:28:03 +02001792 if (!iommu || !domain) {
1793 *dma_addr = (dma_addr_t)paddr;
1794 return virt_addr;
1795 }
1796
Joerg Roedel5b28df62008-12-02 17:49:42 +01001797 if (!dma_ops_domain(domain))
1798 goto out_free;
1799
Joerg Roedel832a90c2008-09-18 15:54:23 +02001800 if (!dma_mask)
1801 dma_mask = *dev->dma_mask;
1802
Joerg Roedel5d8b53c2008-06-26 21:28:03 +02001803 spin_lock_irqsave(&domain->lock, flags);
1804
1805 *dma_addr = __map_single(dev, iommu, domain->priv, paddr,
Joerg Roedel832a90c2008-09-18 15:54:23 +02001806 size, DMA_BIDIRECTIONAL, true, dma_mask);
Joerg Roedel5d8b53c2008-06-26 21:28:03 +02001807
Jiri Slaby367d04c2009-05-28 09:54:48 +02001808 if (*dma_addr == bad_dma_address) {
1809 spin_unlock_irqrestore(&domain->lock, flags);
Joerg Roedel5b28df62008-12-02 17:49:42 +01001810 goto out_free;
Jiri Slaby367d04c2009-05-28 09:54:48 +02001811 }
Joerg Roedel5d8b53c2008-06-26 21:28:03 +02001812
Joerg Roedel09ee17e2008-12-03 12:19:27 +01001813 iommu_completion_wait(iommu);
Joerg Roedel5d8b53c2008-06-26 21:28:03 +02001814
Joerg Roedel5d8b53c2008-06-26 21:28:03 +02001815 spin_unlock_irqrestore(&domain->lock, flags);
1816
1817 return virt_addr;
Joerg Roedel5b28df62008-12-02 17:49:42 +01001818
1819out_free:
1820
1821 free_pages((unsigned long)virt_addr, get_order(size));
1822
1823 return NULL;
Joerg Roedel5d8b53c2008-06-26 21:28:03 +02001824}
1825
Joerg Roedel431b2a22008-07-11 17:14:22 +02001826/*
1827 * The exported free_coherent function for dma_ops.
Joerg Roedel431b2a22008-07-11 17:14:22 +02001828 */
Joerg Roedel5d8b53c2008-06-26 21:28:03 +02001829static void free_coherent(struct device *dev, size_t size,
1830 void *virt_addr, dma_addr_t dma_addr)
1831{
1832 unsigned long flags;
1833 struct amd_iommu *iommu;
1834 struct protection_domain *domain;
1835 u16 devid;
1836
Joerg Roedel5d31ee72008-12-12 15:16:38 +01001837 INC_STATS_COUNTER(cnt_free_coherent);
1838
Joerg Roedeldbcc1122008-09-04 15:04:26 +02001839 if (!check_device(dev))
1840 return;
1841
Joerg Roedel5d8b53c2008-06-26 21:28:03 +02001842 get_device_resources(dev, &iommu, &domain, &devid);
1843
1844 if (!iommu || !domain)
1845 goto free_mem;
1846
Joerg Roedel5b28df62008-12-02 17:49:42 +01001847 if (!dma_ops_domain(domain))
1848 goto free_mem;
1849
Joerg Roedel5d8b53c2008-06-26 21:28:03 +02001850 spin_lock_irqsave(&domain->lock, flags);
1851
1852 __unmap_single(iommu, domain->priv, dma_addr, size, DMA_BIDIRECTIONAL);
Joerg Roedel5d8b53c2008-06-26 21:28:03 +02001853
Joerg Roedel09ee17e2008-12-03 12:19:27 +01001854 iommu_completion_wait(iommu);
Joerg Roedel5d8b53c2008-06-26 21:28:03 +02001855
1856 spin_unlock_irqrestore(&domain->lock, flags);
1857
1858free_mem:
1859 free_pages((unsigned long)virt_addr, get_order(size));
1860}
1861
Joerg Roedelc432f3d2008-06-26 21:28:04 +02001862/*
Joerg Roedelb39ba6a2008-09-09 18:40:46 +02001863 * This function is called by the DMA layer to find out if we can handle a
1864 * particular device. It is part of the dma_ops.
1865 */
1866static int amd_iommu_dma_supported(struct device *dev, u64 mask)
1867{
1868 u16 bdf;
1869 struct pci_dev *pcidev;
1870
1871 /* No device or no PCI device */
1872 if (!dev || dev->bus != &pci_bus_type)
1873 return 0;
1874
1875 pcidev = to_pci_dev(dev);
1876
1877 bdf = calc_devid(pcidev->bus->number, pcidev->devfn);
1878
1879 /* Out of our scope? */
1880 if (bdf > amd_iommu_last_bdf)
1881 return 0;
1882
1883 return 1;
1884}
1885
1886/*
Joerg Roedel431b2a22008-07-11 17:14:22 +02001887 * The function for pre-allocating protection domains.
1888 *
Joerg Roedelc432f3d2008-06-26 21:28:04 +02001889 * If the driver core informs the DMA layer if a driver grabs a device
1890 * we don't need to preallocate the protection domains anymore.
1891 * For now we have to.
1892 */
Jaswinder Singh Rajput0e93dd82008-12-29 21:45:22 +05301893static void prealloc_protection_domains(void)
Joerg Roedelc432f3d2008-06-26 21:28:04 +02001894{
1895 struct pci_dev *dev = NULL;
1896 struct dma_ops_domain *dma_dom;
1897 struct amd_iommu *iommu;
Joerg Roedelc432f3d2008-06-26 21:28:04 +02001898 u16 devid;
1899
1900 while ((dev = pci_get_device(PCI_ANY_ID, PCI_ANY_ID, dev)) != NULL) {
Joerg Roedeledcb34d2008-12-10 20:01:45 +01001901 devid = calc_devid(dev->bus->number, dev->devfn);
Joerg Roedel3a61ec32008-07-25 13:07:50 +02001902 if (devid > amd_iommu_last_bdf)
Joerg Roedelc432f3d2008-06-26 21:28:04 +02001903 continue;
1904 devid = amd_iommu_alias_table[devid];
1905 if (domain_for_device(devid))
1906 continue;
1907 iommu = amd_iommu_rlookup_table[devid];
1908 if (!iommu)
1909 continue;
Joerg Roedeld9cfed92009-05-19 12:16:29 +02001910 dma_dom = dma_ops_domain_alloc(iommu);
Joerg Roedelc432f3d2008-06-26 21:28:04 +02001911 if (!dma_dom)
1912 continue;
1913 init_unity_mappings_for_device(dma_dom, devid);
Joerg Roedelbd60b732008-09-11 10:24:48 +02001914 dma_dom->target_dev = devid;
1915
1916 list_add_tail(&dma_dom->list, &iommu_pd_list);
Joerg Roedelc432f3d2008-06-26 21:28:04 +02001917 }
1918}
1919
FUJITA Tomonori160c1d82009-01-05 23:59:02 +09001920static struct dma_map_ops amd_iommu_dma_ops = {
Joerg Roedel6631ee92008-06-26 21:28:05 +02001921 .alloc_coherent = alloc_coherent,
1922 .free_coherent = free_coherent,
FUJITA Tomonori51491362009-01-05 23:47:25 +09001923 .map_page = map_page,
1924 .unmap_page = unmap_page,
Joerg Roedel6631ee92008-06-26 21:28:05 +02001925 .map_sg = map_sg,
1926 .unmap_sg = unmap_sg,
Joerg Roedelb39ba6a2008-09-09 18:40:46 +02001927 .dma_supported = amd_iommu_dma_supported,
Joerg Roedel6631ee92008-06-26 21:28:05 +02001928};
1929
Joerg Roedel431b2a22008-07-11 17:14:22 +02001930/*
1931 * The function which clues the AMD IOMMU driver into dma_ops.
1932 */
Joerg Roedel6631ee92008-06-26 21:28:05 +02001933int __init amd_iommu_init_dma_ops(void)
1934{
1935 struct amd_iommu *iommu;
Joerg Roedel6631ee92008-06-26 21:28:05 +02001936 int ret;
1937
Joerg Roedel431b2a22008-07-11 17:14:22 +02001938 /*
1939 * first allocate a default protection domain for every IOMMU we
1940 * found in the system. Devices not assigned to any other
1941 * protection domain will be assigned to the default one.
1942 */
Joerg Roedel3bd22172009-05-04 15:06:20 +02001943 for_each_iommu(iommu) {
Joerg Roedeld9cfed92009-05-19 12:16:29 +02001944 iommu->default_dom = dma_ops_domain_alloc(iommu);
Joerg Roedel6631ee92008-06-26 21:28:05 +02001945 if (iommu->default_dom == NULL)
1946 return -ENOMEM;
Joerg Roedele2dc14a2008-12-10 18:48:59 +01001947 iommu->default_dom->domain.flags |= PD_DEFAULT_MASK;
Joerg Roedel6631ee92008-06-26 21:28:05 +02001948 ret = iommu_init_unity_mappings(iommu);
1949 if (ret)
1950 goto free_domains;
1951 }
1952
Joerg Roedel431b2a22008-07-11 17:14:22 +02001953 /*
1954 * If device isolation is enabled, pre-allocate the protection
1955 * domains for each device.
1956 */
Joerg Roedel6631ee92008-06-26 21:28:05 +02001957 if (amd_iommu_isolate)
1958 prealloc_protection_domains();
1959
1960 iommu_detected = 1;
1961 force_iommu = 1;
1962 bad_dma_address = 0;
Ingo Molnar92af4e22008-06-27 10:48:16 +02001963#ifdef CONFIG_GART_IOMMU
Joerg Roedel6631ee92008-06-26 21:28:05 +02001964 gart_iommu_aperture_disabled = 1;
1965 gart_iommu_aperture = 0;
Ingo Molnar92af4e22008-06-27 10:48:16 +02001966#endif
Joerg Roedel6631ee92008-06-26 21:28:05 +02001967
Joerg Roedel431b2a22008-07-11 17:14:22 +02001968 /* Make the driver finally visible to the drivers */
Joerg Roedel6631ee92008-06-26 21:28:05 +02001969 dma_ops = &amd_iommu_dma_ops;
1970
Joerg Roedel26961ef2008-12-03 17:00:17 +01001971 register_iommu(&amd_iommu_ops);
Joerg Roedel26961ef2008-12-03 17:00:17 +01001972
Joerg Roedele275a2a2008-12-10 18:27:25 +01001973 bus_register_notifier(&pci_bus_type, &device_nb);
1974
Joerg Roedel7f265082008-12-12 13:50:21 +01001975 amd_iommu_stats_init();
1976
Joerg Roedel6631ee92008-06-26 21:28:05 +02001977 return 0;
1978
1979free_domains:
1980
Joerg Roedel3bd22172009-05-04 15:06:20 +02001981 for_each_iommu(iommu) {
Joerg Roedel6631ee92008-06-26 21:28:05 +02001982 if (iommu->default_dom)
1983 dma_ops_domain_free(iommu->default_dom);
1984 }
1985
1986 return ret;
1987}
Joerg Roedel6d98cd82008-12-08 12:05:55 +01001988
1989/*****************************************************************************
1990 *
1991 * The following functions belong to the exported interface of AMD IOMMU
1992 *
1993 * This interface allows access to lower level functions of the IOMMU
1994 * like protection domain handling and assignement of devices to domains
1995 * which is not possible with the dma_ops interface.
1996 *
1997 *****************************************************************************/
1998
Joerg Roedel6d98cd82008-12-08 12:05:55 +01001999static void cleanup_domain(struct protection_domain *domain)
2000{
2001 unsigned long flags;
2002 u16 devid;
2003
2004 write_lock_irqsave(&amd_iommu_devtable_lock, flags);
2005
2006 for (devid = 0; devid <= amd_iommu_last_bdf; ++devid)
2007 if (amd_iommu_pd_table[devid] == domain)
2008 __detach_device(domain, devid);
2009
2010 write_unlock_irqrestore(&amd_iommu_devtable_lock, flags);
2011}
2012
Joerg Roedel26508152009-08-26 16:52:40 +02002013static void protection_domain_free(struct protection_domain *domain)
2014{
2015 if (!domain)
2016 return;
2017
2018 if (domain->id)
2019 domain_id_free(domain->id);
2020
2021 kfree(domain);
2022}
2023
2024static struct protection_domain *protection_domain_alloc(void)
Joerg Roedelc156e342008-12-02 18:13:27 +01002025{
2026 struct protection_domain *domain;
2027
2028 domain = kzalloc(sizeof(*domain), GFP_KERNEL);
2029 if (!domain)
Joerg Roedel26508152009-08-26 16:52:40 +02002030 return NULL;
Joerg Roedelc156e342008-12-02 18:13:27 +01002031
2032 spin_lock_init(&domain->lock);
Joerg Roedelc156e342008-12-02 18:13:27 +01002033 domain->id = domain_id_alloc();
2034 if (!domain->id)
Joerg Roedel26508152009-08-26 16:52:40 +02002035 goto out_err;
2036
2037 return domain;
2038
2039out_err:
2040 kfree(domain);
2041
2042 return NULL;
2043}
2044
2045static int amd_iommu_domain_init(struct iommu_domain *dom)
2046{
2047 struct protection_domain *domain;
2048
2049 domain = protection_domain_alloc();
2050 if (!domain)
Joerg Roedelc156e342008-12-02 18:13:27 +01002051 goto out_free;
Joerg Roedel26508152009-08-26 16:52:40 +02002052
2053 domain->mode = PAGE_MODE_3_LEVEL;
Joerg Roedelc156e342008-12-02 18:13:27 +01002054 domain->pt_root = (void *)get_zeroed_page(GFP_KERNEL);
2055 if (!domain->pt_root)
2056 goto out_free;
2057
2058 dom->priv = domain;
2059
2060 return 0;
2061
2062out_free:
Joerg Roedel26508152009-08-26 16:52:40 +02002063 protection_domain_free(domain);
Joerg Roedelc156e342008-12-02 18:13:27 +01002064
2065 return -ENOMEM;
2066}
2067
Joerg Roedel98383fc2008-12-02 18:34:12 +01002068static void amd_iommu_domain_destroy(struct iommu_domain *dom)
2069{
2070 struct protection_domain *domain = dom->priv;
2071
2072 if (!domain)
2073 return;
2074
2075 if (domain->dev_cnt > 0)
2076 cleanup_domain(domain);
2077
2078 BUG_ON(domain->dev_cnt != 0);
2079
2080 free_pagetable(domain);
2081
2082 domain_id_free(domain->id);
2083
2084 kfree(domain);
2085
2086 dom->priv = NULL;
2087}
2088
Joerg Roedel684f2882008-12-08 12:07:44 +01002089static void amd_iommu_detach_device(struct iommu_domain *dom,
2090 struct device *dev)
2091{
2092 struct protection_domain *domain = dom->priv;
2093 struct amd_iommu *iommu;
2094 struct pci_dev *pdev;
2095 u16 devid;
2096
2097 if (dev->bus != &pci_bus_type)
2098 return;
2099
2100 pdev = to_pci_dev(dev);
2101
2102 devid = calc_devid(pdev->bus->number, pdev->devfn);
2103
2104 if (devid > 0)
2105 detach_device(domain, devid);
2106
2107 iommu = amd_iommu_rlookup_table[devid];
2108 if (!iommu)
2109 return;
2110
2111 iommu_queue_inv_dev_entry(iommu, devid);
2112 iommu_completion_wait(iommu);
2113}
2114
Joerg Roedel01106062008-12-02 19:34:11 +01002115static int amd_iommu_attach_device(struct iommu_domain *dom,
2116 struct device *dev)
2117{
2118 struct protection_domain *domain = dom->priv;
2119 struct protection_domain *old_domain;
2120 struct amd_iommu *iommu;
2121 struct pci_dev *pdev;
2122 u16 devid;
2123
2124 if (dev->bus != &pci_bus_type)
2125 return -EINVAL;
2126
2127 pdev = to_pci_dev(dev);
2128
2129 devid = calc_devid(pdev->bus->number, pdev->devfn);
2130
2131 if (devid >= amd_iommu_last_bdf ||
2132 devid != amd_iommu_alias_table[devid])
2133 return -EINVAL;
2134
2135 iommu = amd_iommu_rlookup_table[devid];
2136 if (!iommu)
2137 return -EINVAL;
2138
2139 old_domain = domain_for_device(devid);
2140 if (old_domain)
Joerg Roedel71ff3bc2009-06-08 13:47:33 -07002141 detach_device(old_domain, devid);
Joerg Roedel01106062008-12-02 19:34:11 +01002142
2143 attach_device(iommu, domain, devid);
2144
2145 iommu_completion_wait(iommu);
2146
2147 return 0;
2148}
2149
Joerg Roedelc6229ca2008-12-02 19:48:43 +01002150static int amd_iommu_map_range(struct iommu_domain *dom,
2151 unsigned long iova, phys_addr_t paddr,
2152 size_t size, int iommu_prot)
2153{
2154 struct protection_domain *domain = dom->priv;
2155 unsigned long i, npages = iommu_num_pages(paddr, size, PAGE_SIZE);
2156 int prot = 0;
2157 int ret;
2158
2159 if (iommu_prot & IOMMU_READ)
2160 prot |= IOMMU_PROT_IR;
2161 if (iommu_prot & IOMMU_WRITE)
2162 prot |= IOMMU_PROT_IW;
2163
2164 iova &= PAGE_MASK;
2165 paddr &= PAGE_MASK;
2166
2167 for (i = 0; i < npages; ++i) {
2168 ret = iommu_map_page(domain, iova, paddr, prot);
2169 if (ret)
2170 return ret;
2171
2172 iova += PAGE_SIZE;
2173 paddr += PAGE_SIZE;
2174 }
2175
2176 return 0;
2177}
2178
Joerg Roedeleb74ff62008-12-02 19:59:10 +01002179static void amd_iommu_unmap_range(struct iommu_domain *dom,
2180 unsigned long iova, size_t size)
2181{
2182
2183 struct protection_domain *domain = dom->priv;
2184 unsigned long i, npages = iommu_num_pages(iova, size, PAGE_SIZE);
2185
2186 iova &= PAGE_MASK;
2187
2188 for (i = 0; i < npages; ++i) {
2189 iommu_unmap_page(domain, iova);
2190 iova += PAGE_SIZE;
2191 }
2192
2193 iommu_flush_domain(domain->id);
2194}
2195
Joerg Roedel645c4c82008-12-02 20:05:50 +01002196static phys_addr_t amd_iommu_iova_to_phys(struct iommu_domain *dom,
2197 unsigned long iova)
2198{
2199 struct protection_domain *domain = dom->priv;
2200 unsigned long offset = iova & ~PAGE_MASK;
2201 phys_addr_t paddr;
2202 u64 *pte;
2203
2204 pte = &domain->pt_root[IOMMU_PTE_L2_INDEX(iova)];
2205
2206 if (!IOMMU_PTE_PRESENT(*pte))
2207 return 0;
2208
2209 pte = IOMMU_PTE_PAGE(*pte);
2210 pte = &pte[IOMMU_PTE_L1_INDEX(iova)];
2211
2212 if (!IOMMU_PTE_PRESENT(*pte))
2213 return 0;
2214
2215 pte = IOMMU_PTE_PAGE(*pte);
2216 pte = &pte[IOMMU_PTE_L0_INDEX(iova)];
2217
2218 if (!IOMMU_PTE_PRESENT(*pte))
2219 return 0;
2220
2221 paddr = *pte & IOMMU_PAGE_MASK;
2222 paddr |= offset;
2223
2224 return paddr;
2225}
2226
Sheng Yangdbb9fd82009-03-18 15:33:06 +08002227static int amd_iommu_domain_has_cap(struct iommu_domain *domain,
2228 unsigned long cap)
2229{
2230 return 0;
2231}
2232
Joerg Roedel26961ef2008-12-03 17:00:17 +01002233static struct iommu_ops amd_iommu_ops = {
2234 .domain_init = amd_iommu_domain_init,
2235 .domain_destroy = amd_iommu_domain_destroy,
2236 .attach_dev = amd_iommu_attach_device,
2237 .detach_dev = amd_iommu_detach_device,
2238 .map = amd_iommu_map_range,
2239 .unmap = amd_iommu_unmap_range,
2240 .iova_to_phys = amd_iommu_iova_to_phys,
Sheng Yangdbb9fd82009-03-18 15:33:06 +08002241 .domain_has_cap = amd_iommu_domain_has_cap,
Joerg Roedel26961ef2008-12-03 17:00:17 +01002242};
2243
Joerg Roedel0feae532009-08-26 15:26:30 +02002244/*****************************************************************************
2245 *
2246 * The next functions do a basic initialization of IOMMU for pass through
2247 * mode
2248 *
2249 * In passthrough mode the IOMMU is initialized and enabled but not used for
2250 * DMA-API translation.
2251 *
2252 *****************************************************************************/
2253
2254int __init amd_iommu_init_passthrough(void)
2255{
2256 struct pci_dev *dev = NULL;
2257 u16 devid, devid2;
2258
2259 /* allocate passthroug domain */
2260 pt_domain = protection_domain_alloc();
2261 if (!pt_domain)
2262 return -ENOMEM;
2263
2264 pt_domain->mode |= PAGE_MODE_NONE;
2265
2266 while ((dev = pci_get_device(PCI_ANY_ID, PCI_ANY_ID, dev)) != NULL) {
2267 struct amd_iommu *iommu;
2268
2269 devid = calc_devid(dev->bus->number, dev->devfn);
2270 if (devid > amd_iommu_last_bdf)
2271 continue;
2272
2273 devid2 = amd_iommu_alias_table[devid];
2274
2275 iommu = amd_iommu_rlookup_table[devid2];
2276 if (!iommu)
2277 continue;
2278
2279 __attach_device(iommu, pt_domain, devid);
2280 __attach_device(iommu, pt_domain, devid2);
2281 }
2282
2283 pr_info("AMD-Vi: Initialized for Passthrough Mode\n");
2284
2285 return 0;
2286}