blob: 45be9499c973bad5fd7eb54d4a90c528357e61a6 [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 Roedel8bc3e122009-09-02 16:48:40 +020058static u64 *alloc_pte(struct protection_domain *domain,
Joerg Roedelabdc5eb2009-09-03 11:33:51 +020059 unsigned long address, int end_lvl,
60 u64 **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 Roedel9355a082009-09-02 14:24:08 +020064static u64 *fetch_pte(struct protection_domain *domain,
Joerg Roedela6b256b2009-09-03 12:21:31 +020065 unsigned long address, int map_size);
Joerg Roedel04bfdd82009-09-02 16:00:23 +020066static void update_domain(struct protection_domain *domain);
Joerg Roedelbd0e5212008-06-26 21:27:56 +020067
Chris Wrightc1eee672009-05-21 00:56:58 -070068#ifndef BUS_NOTIFY_UNBOUND_DRIVER
69#define BUS_NOTIFY_UNBOUND_DRIVER 0x0005
70#endif
71
Joerg Roedel7f265082008-12-12 13:50:21 +010072#ifdef CONFIG_AMD_IOMMU_STATS
73
74/*
75 * Initialization code for statistics collection
76 */
77
Joerg Roedelda49f6d2008-12-12 14:59:58 +010078DECLARE_STATS_COUNTER(compl_wait);
Joerg Roedel0f2a86f2008-12-12 15:05:16 +010079DECLARE_STATS_COUNTER(cnt_map_single);
Joerg Roedel146a6912008-12-12 15:07:12 +010080DECLARE_STATS_COUNTER(cnt_unmap_single);
Joerg Roedeld03f067a2008-12-12 15:09:48 +010081DECLARE_STATS_COUNTER(cnt_map_sg);
Joerg Roedel55877a62008-12-12 15:12:14 +010082DECLARE_STATS_COUNTER(cnt_unmap_sg);
Joerg Roedelc8f0fb32008-12-12 15:14:21 +010083DECLARE_STATS_COUNTER(cnt_alloc_coherent);
Joerg Roedel5d31ee72008-12-12 15:16:38 +010084DECLARE_STATS_COUNTER(cnt_free_coherent);
Joerg Roedelc1858972008-12-12 15:42:39 +010085DECLARE_STATS_COUNTER(cross_page);
Joerg Roedelf57d98a2008-12-12 15:46:29 +010086DECLARE_STATS_COUNTER(domain_flush_single);
Joerg Roedel18811f52008-12-12 15:48:28 +010087DECLARE_STATS_COUNTER(domain_flush_all);
Joerg Roedel5774f7c2008-12-12 15:57:30 +010088DECLARE_STATS_COUNTER(alloced_io_mem);
Joerg Roedel8ecaf8f2008-12-12 16:13:04 +010089DECLARE_STATS_COUNTER(total_map_requests);
Joerg Roedelda49f6d2008-12-12 14:59:58 +010090
Joerg Roedel7f265082008-12-12 13:50:21 +010091static struct dentry *stats_dir;
92static struct dentry *de_isolate;
93static struct dentry *de_fflush;
94
95static void amd_iommu_stats_add(struct __iommu_counter *cnt)
96{
97 if (stats_dir == NULL)
98 return;
99
100 cnt->dent = debugfs_create_u64(cnt->name, 0444, stats_dir,
101 &cnt->value);
102}
103
104static void amd_iommu_stats_init(void)
105{
106 stats_dir = debugfs_create_dir("amd-iommu", NULL);
107 if (stats_dir == NULL)
108 return;
109
110 de_isolate = debugfs_create_bool("isolation", 0444, stats_dir,
111 (u32 *)&amd_iommu_isolate);
112
113 de_fflush = debugfs_create_bool("fullflush", 0444, stats_dir,
114 (u32 *)&amd_iommu_unmap_flush);
Joerg Roedelda49f6d2008-12-12 14:59:58 +0100115
116 amd_iommu_stats_add(&compl_wait);
Joerg Roedel0f2a86f2008-12-12 15:05:16 +0100117 amd_iommu_stats_add(&cnt_map_single);
Joerg Roedel146a6912008-12-12 15:07:12 +0100118 amd_iommu_stats_add(&cnt_unmap_single);
Joerg Roedeld03f067a2008-12-12 15:09:48 +0100119 amd_iommu_stats_add(&cnt_map_sg);
Joerg Roedel55877a62008-12-12 15:12:14 +0100120 amd_iommu_stats_add(&cnt_unmap_sg);
Joerg Roedelc8f0fb32008-12-12 15:14:21 +0100121 amd_iommu_stats_add(&cnt_alloc_coherent);
Joerg Roedel5d31ee72008-12-12 15:16:38 +0100122 amd_iommu_stats_add(&cnt_free_coherent);
Joerg Roedelc1858972008-12-12 15:42:39 +0100123 amd_iommu_stats_add(&cross_page);
Joerg Roedelf57d98a2008-12-12 15:46:29 +0100124 amd_iommu_stats_add(&domain_flush_single);
Joerg Roedel18811f52008-12-12 15:48:28 +0100125 amd_iommu_stats_add(&domain_flush_all);
Joerg Roedel5774f7c2008-12-12 15:57:30 +0100126 amd_iommu_stats_add(&alloced_io_mem);
Joerg Roedel8ecaf8f2008-12-12 16:13:04 +0100127 amd_iommu_stats_add(&total_map_requests);
Joerg Roedel7f265082008-12-12 13:50:21 +0100128}
129
130#endif
131
Joerg Roedel431b2a22008-07-11 17:14:22 +0200132/* returns !0 if the IOMMU is caching non-present entries in its TLB */
Joerg Roedel4da70b92008-06-26 21:28:01 +0200133static int iommu_has_npcache(struct amd_iommu *iommu)
134{
Joerg Roedelae9b9402008-10-30 17:43:57 +0100135 return iommu->cap & (1UL << IOMMU_CAP_NPCACHE);
Joerg Roedel4da70b92008-06-26 21:28:01 +0200136}
137
Joerg Roedel431b2a22008-07-11 17:14:22 +0200138/****************************************************************************
139 *
Joerg Roedela80dc3e2008-09-11 16:51:41 +0200140 * Interrupt handling functions
141 *
142 ****************************************************************************/
143
Joerg Roedel90008ee2008-09-09 16:41:05 +0200144static void iommu_print_event(void *__evt)
145{
146 u32 *event = __evt;
147 int type = (event[1] >> EVENT_TYPE_SHIFT) & EVENT_TYPE_MASK;
148 int devid = (event[0] >> EVENT_DEVID_SHIFT) & EVENT_DEVID_MASK;
149 int domid = (event[1] >> EVENT_DOMID_SHIFT) & EVENT_DOMID_MASK;
150 int flags = (event[1] >> EVENT_FLAGS_SHIFT) & EVENT_FLAGS_MASK;
151 u64 address = (u64)(((u64)event[3]) << 32) | event[2];
152
153 printk(KERN_ERR "AMD IOMMU: Event logged [");
154
155 switch (type) {
156 case EVENT_TYPE_ILL_DEV:
157 printk("ILLEGAL_DEV_TABLE_ENTRY device=%02x:%02x.%x "
158 "address=0x%016llx flags=0x%04x]\n",
159 PCI_BUS(devid), PCI_SLOT(devid), PCI_FUNC(devid),
160 address, flags);
161 break;
162 case EVENT_TYPE_IO_FAULT:
163 printk("IO_PAGE_FAULT device=%02x:%02x.%x "
164 "domain=0x%04x address=0x%016llx flags=0x%04x]\n",
165 PCI_BUS(devid), PCI_SLOT(devid), PCI_FUNC(devid),
166 domid, address, flags);
167 break;
168 case EVENT_TYPE_DEV_TAB_ERR:
169 printk("DEV_TAB_HARDWARE_ERROR device=%02x:%02x.%x "
170 "address=0x%016llx flags=0x%04x]\n",
171 PCI_BUS(devid), PCI_SLOT(devid), PCI_FUNC(devid),
172 address, flags);
173 break;
174 case EVENT_TYPE_PAGE_TAB_ERR:
175 printk("PAGE_TAB_HARDWARE_ERROR device=%02x:%02x.%x "
176 "domain=0x%04x address=0x%016llx flags=0x%04x]\n",
177 PCI_BUS(devid), PCI_SLOT(devid), PCI_FUNC(devid),
178 domid, address, flags);
179 break;
180 case EVENT_TYPE_ILL_CMD:
181 printk("ILLEGAL_COMMAND_ERROR address=0x%016llx]\n", address);
182 break;
183 case EVENT_TYPE_CMD_HARD_ERR:
184 printk("COMMAND_HARDWARE_ERROR address=0x%016llx "
185 "flags=0x%04x]\n", address, flags);
186 break;
187 case EVENT_TYPE_IOTLB_INV_TO:
188 printk("IOTLB_INV_TIMEOUT device=%02x:%02x.%x "
189 "address=0x%016llx]\n",
190 PCI_BUS(devid), PCI_SLOT(devid), PCI_FUNC(devid),
191 address);
192 break;
193 case EVENT_TYPE_INV_DEV_REQ:
194 printk("INVALID_DEVICE_REQUEST device=%02x:%02x.%x "
195 "address=0x%016llx flags=0x%04x]\n",
196 PCI_BUS(devid), PCI_SLOT(devid), PCI_FUNC(devid),
197 address, flags);
198 break;
199 default:
200 printk(KERN_ERR "UNKNOWN type=0x%02x]\n", type);
201 }
202}
203
204static void iommu_poll_events(struct amd_iommu *iommu)
205{
206 u32 head, tail;
207 unsigned long flags;
208
209 spin_lock_irqsave(&iommu->lock, flags);
210
211 head = readl(iommu->mmio_base + MMIO_EVT_HEAD_OFFSET);
212 tail = readl(iommu->mmio_base + MMIO_EVT_TAIL_OFFSET);
213
214 while (head != tail) {
215 iommu_print_event(iommu->evt_buf + head);
216 head = (head + EVENT_ENTRY_SIZE) % iommu->evt_buf_size;
217 }
218
219 writel(head, iommu->mmio_base + MMIO_EVT_HEAD_OFFSET);
220
221 spin_unlock_irqrestore(&iommu->lock, flags);
222}
223
Joerg Roedela80dc3e2008-09-11 16:51:41 +0200224irqreturn_t amd_iommu_int_handler(int irq, void *data)
225{
Joerg Roedel90008ee2008-09-09 16:41:05 +0200226 struct amd_iommu *iommu;
227
Joerg Roedel3bd22172009-05-04 15:06:20 +0200228 for_each_iommu(iommu)
Joerg Roedel90008ee2008-09-09 16:41:05 +0200229 iommu_poll_events(iommu);
230
231 return IRQ_HANDLED;
Joerg Roedela80dc3e2008-09-11 16:51:41 +0200232}
233
234/****************************************************************************
235 *
Joerg Roedel431b2a22008-07-11 17:14:22 +0200236 * IOMMU command queuing functions
237 *
238 ****************************************************************************/
239
240/*
241 * Writes the command to the IOMMUs command buffer and informs the
242 * hardware about the new command. Must be called with iommu->lock held.
243 */
Joerg Roedeld6449532008-07-11 17:14:28 +0200244static int __iommu_queue_command(struct amd_iommu *iommu, struct iommu_cmd *cmd)
Joerg Roedela19ae1e2008-06-26 21:27:55 +0200245{
246 u32 tail, head;
247 u8 *target;
248
249 tail = readl(iommu->mmio_base + MMIO_CMD_TAIL_OFFSET);
Jiri Kosina8a7c5ef2008-08-19 02:13:55 +0200250 target = iommu->cmd_buf + tail;
Joerg Roedela19ae1e2008-06-26 21:27:55 +0200251 memcpy_toio(target, cmd, sizeof(*cmd));
252 tail = (tail + sizeof(*cmd)) % iommu->cmd_buf_size;
253 head = readl(iommu->mmio_base + MMIO_CMD_HEAD_OFFSET);
254 if (tail == head)
255 return -ENOMEM;
256 writel(tail, iommu->mmio_base + MMIO_CMD_TAIL_OFFSET);
257
258 return 0;
259}
260
Joerg Roedel431b2a22008-07-11 17:14:22 +0200261/*
262 * General queuing function for commands. Takes iommu->lock and calls
263 * __iommu_queue_command().
264 */
Joerg Roedeld6449532008-07-11 17:14:28 +0200265static int iommu_queue_command(struct amd_iommu *iommu, struct iommu_cmd *cmd)
Joerg Roedela19ae1e2008-06-26 21:27:55 +0200266{
267 unsigned long flags;
268 int ret;
269
270 spin_lock_irqsave(&iommu->lock, flags);
271 ret = __iommu_queue_command(iommu, cmd);
Joerg Roedel09ee17e2008-12-03 12:19:27 +0100272 if (!ret)
Joerg Roedel0cfd7aa2008-12-10 19:58:00 +0100273 iommu->need_sync = true;
Joerg Roedela19ae1e2008-06-26 21:27:55 +0200274 spin_unlock_irqrestore(&iommu->lock, flags);
275
276 return ret;
277}
278
Joerg Roedel431b2a22008-07-11 17:14:22 +0200279/*
Joerg Roedel8d201962008-12-02 20:34:41 +0100280 * This function waits until an IOMMU has completed a completion
281 * wait command
Joerg Roedel431b2a22008-07-11 17:14:22 +0200282 */
Joerg Roedel8d201962008-12-02 20:34:41 +0100283static void __iommu_wait_for_completion(struct amd_iommu *iommu)
Joerg Roedela19ae1e2008-06-26 21:27:55 +0200284{
Joerg Roedel8d201962008-12-02 20:34:41 +0100285 int ready = 0;
Joerg Roedel519c31b2008-08-14 19:55:15 +0200286 unsigned status = 0;
Joerg Roedel8d201962008-12-02 20:34:41 +0100287 unsigned long i = 0;
Joerg Roedela19ae1e2008-06-26 21:27:55 +0200288
Joerg Roedelda49f6d2008-12-12 14:59:58 +0100289 INC_STATS_COUNTER(compl_wait);
290
Joerg Roedel136f78a2008-07-11 17:14:27 +0200291 while (!ready && (i < EXIT_LOOP_COUNT)) {
292 ++i;
Joerg Roedel519c31b2008-08-14 19:55:15 +0200293 /* wait for the bit to become one */
294 status = readl(iommu->mmio_base + MMIO_STATUS_OFFSET);
295 ready = status & MMIO_STATUS_COM_WAIT_INT_MASK;
Joerg Roedel136f78a2008-07-11 17:14:27 +0200296 }
297
Joerg Roedel519c31b2008-08-14 19:55:15 +0200298 /* set bit back to zero */
299 status &= ~MMIO_STATUS_COM_WAIT_INT_MASK;
300 writel(status, iommu->mmio_base + MMIO_STATUS_OFFSET);
301
Joerg Roedel84df8172008-12-17 16:36:44 +0100302 if (unlikely(i == EXIT_LOOP_COUNT))
303 panic("AMD IOMMU: Completion wait loop failed\n");
Joerg Roedel8d201962008-12-02 20:34:41 +0100304}
305
306/*
307 * This function queues a completion wait command into the command
308 * buffer of an IOMMU
309 */
310static int __iommu_completion_wait(struct amd_iommu *iommu)
311{
312 struct iommu_cmd cmd;
313
314 memset(&cmd, 0, sizeof(cmd));
315 cmd.data[0] = CMD_COMPL_WAIT_INT_MASK;
316 CMD_SET_TYPE(&cmd, CMD_COMPL_WAIT);
317
318 return __iommu_queue_command(iommu, &cmd);
319}
320
321/*
322 * This function is called whenever we need to ensure that the IOMMU has
323 * completed execution of all commands we sent. It sends a
324 * COMPLETION_WAIT command and waits for it to finish. The IOMMU informs
325 * us about that by writing a value to a physical address we pass with
326 * the command.
327 */
328static int iommu_completion_wait(struct amd_iommu *iommu)
329{
330 int ret = 0;
331 unsigned long flags;
332
333 spin_lock_irqsave(&iommu->lock, flags);
334
335 if (!iommu->need_sync)
336 goto out;
337
338 ret = __iommu_completion_wait(iommu);
339
Joerg Roedel0cfd7aa2008-12-10 19:58:00 +0100340 iommu->need_sync = false;
Joerg Roedel8d201962008-12-02 20:34:41 +0100341
342 if (ret)
343 goto out;
344
345 __iommu_wait_for_completion(iommu);
Joerg Roedel84df8172008-12-17 16:36:44 +0100346
Joerg Roedel7e4f88d2008-09-17 14:19:15 +0200347out:
348 spin_unlock_irqrestore(&iommu->lock, flags);
Joerg Roedela19ae1e2008-06-26 21:27:55 +0200349
350 return 0;
351}
352
Joerg Roedel431b2a22008-07-11 17:14:22 +0200353/*
354 * Command send function for invalidating a device table entry
355 */
Joerg Roedela19ae1e2008-06-26 21:27:55 +0200356static int iommu_queue_inv_dev_entry(struct amd_iommu *iommu, u16 devid)
357{
Joerg Roedeld6449532008-07-11 17:14:28 +0200358 struct iommu_cmd cmd;
Joerg Roedelee2fa742008-09-17 13:47:25 +0200359 int ret;
Joerg Roedela19ae1e2008-06-26 21:27:55 +0200360
361 BUG_ON(iommu == NULL);
362
363 memset(&cmd, 0, sizeof(cmd));
364 CMD_SET_TYPE(&cmd, CMD_INV_DEV_ENTRY);
365 cmd.data[0] = devid;
366
Joerg Roedelee2fa742008-09-17 13:47:25 +0200367 ret = iommu_queue_command(iommu, &cmd);
368
Joerg Roedelee2fa742008-09-17 13:47:25 +0200369 return ret;
Joerg Roedela19ae1e2008-06-26 21:27:55 +0200370}
371
Joerg Roedel237b6f32008-12-02 20:54:37 +0100372static void __iommu_build_inv_iommu_pages(struct iommu_cmd *cmd, u64 address,
373 u16 domid, int pde, int s)
374{
375 memset(cmd, 0, sizeof(*cmd));
376 address &= PAGE_MASK;
377 CMD_SET_TYPE(cmd, CMD_INV_IOMMU_PAGES);
378 cmd->data[1] |= domid;
379 cmd->data[2] = lower_32_bits(address);
380 cmd->data[3] = upper_32_bits(address);
381 if (s) /* size bit - we flush more than one 4kb page */
382 cmd->data[2] |= CMD_INV_IOMMU_PAGES_SIZE_MASK;
383 if (pde) /* PDE bit - we wan't flush everything not only the PTEs */
384 cmd->data[2] |= CMD_INV_IOMMU_PAGES_PDE_MASK;
385}
386
Joerg Roedel431b2a22008-07-11 17:14:22 +0200387/*
388 * Generic command send function for invalidaing TLB entries
389 */
Joerg Roedela19ae1e2008-06-26 21:27:55 +0200390static int iommu_queue_inv_iommu_pages(struct amd_iommu *iommu,
391 u64 address, u16 domid, int pde, int s)
392{
Joerg Roedeld6449532008-07-11 17:14:28 +0200393 struct iommu_cmd cmd;
Joerg Roedelee2fa742008-09-17 13:47:25 +0200394 int ret;
Joerg Roedela19ae1e2008-06-26 21:27:55 +0200395
Joerg Roedel237b6f32008-12-02 20:54:37 +0100396 __iommu_build_inv_iommu_pages(&cmd, address, domid, pde, s);
Joerg Roedela19ae1e2008-06-26 21:27:55 +0200397
Joerg Roedelee2fa742008-09-17 13:47:25 +0200398 ret = iommu_queue_command(iommu, &cmd);
399
Joerg Roedelee2fa742008-09-17 13:47:25 +0200400 return ret;
Joerg Roedela19ae1e2008-06-26 21:27:55 +0200401}
402
Joerg Roedel431b2a22008-07-11 17:14:22 +0200403/*
404 * TLB invalidation function which is called from the mapping functions.
405 * It invalidates a single PTE if the range to flush is within a single
406 * page. Otherwise it flushes the whole TLB of the IOMMU.
407 */
Joerg Roedela19ae1e2008-06-26 21:27:55 +0200408static int iommu_flush_pages(struct amd_iommu *iommu, u16 domid,
409 u64 address, size_t size)
410{
Joerg Roedel999ba412008-07-03 19:35:08 +0200411 int s = 0;
Joerg Roedele3c449f2008-10-15 22:02:11 -0700412 unsigned pages = iommu_num_pages(address, size, PAGE_SIZE);
Joerg Roedela19ae1e2008-06-26 21:27:55 +0200413
414 address &= PAGE_MASK;
415
Joerg Roedel999ba412008-07-03 19:35:08 +0200416 if (pages > 1) {
417 /*
418 * If we have to flush more than one page, flush all
419 * TLB entries for this domain
420 */
421 address = CMD_INV_IOMMU_ALL_PAGES_ADDRESS;
422 s = 1;
Joerg Roedela19ae1e2008-06-26 21:27:55 +0200423 }
424
Joerg Roedel999ba412008-07-03 19:35:08 +0200425 iommu_queue_inv_iommu_pages(iommu, address, domid, 0, s);
426
Joerg Roedela19ae1e2008-06-26 21:27:55 +0200427 return 0;
428}
Joerg Roedelb6c02712008-06-26 21:27:53 +0200429
Joerg Roedel1c655772008-09-04 18:40:05 +0200430/* Flush the whole IO/TLB for a given protection domain */
431static void iommu_flush_tlb(struct amd_iommu *iommu, u16 domid)
432{
433 u64 address = CMD_INV_IOMMU_ALL_PAGES_ADDRESS;
434
Joerg Roedelf57d98a2008-12-12 15:46:29 +0100435 INC_STATS_COUNTER(domain_flush_single);
436
Joerg Roedel1c655772008-09-04 18:40:05 +0200437 iommu_queue_inv_iommu_pages(iommu, address, domid, 0, 1);
438}
439
Chris Wright42a49f92009-06-15 15:42:00 +0200440/* Flush the whole IO/TLB for a given protection domain - including PDE */
441static void iommu_flush_tlb_pde(struct amd_iommu *iommu, u16 domid)
442{
443 u64 address = CMD_INV_IOMMU_ALL_PAGES_ADDRESS;
444
445 INC_STATS_COUNTER(domain_flush_single);
446
447 iommu_queue_inv_iommu_pages(iommu, address, domid, 1, 1);
448}
449
Joerg Roedel43f49602008-12-02 21:01:12 +0100450/*
451 * This function is used to flush the IO/TLB for a given protection domain
452 * on every IOMMU in the system
453 */
454static void iommu_flush_domain(u16 domid)
455{
456 unsigned long flags;
457 struct amd_iommu *iommu;
458 struct iommu_cmd cmd;
459
Joerg Roedel18811f52008-12-12 15:48:28 +0100460 INC_STATS_COUNTER(domain_flush_all);
461
Joerg Roedel43f49602008-12-02 21:01:12 +0100462 __iommu_build_inv_iommu_pages(&cmd, CMD_INV_IOMMU_ALL_PAGES_ADDRESS,
463 domid, 1, 1);
464
Joerg Roedel3bd22172009-05-04 15:06:20 +0200465 for_each_iommu(iommu) {
Joerg Roedel43f49602008-12-02 21:01:12 +0100466 spin_lock_irqsave(&iommu->lock, flags);
467 __iommu_queue_command(iommu, &cmd);
468 __iommu_completion_wait(iommu);
469 __iommu_wait_for_completion(iommu);
470 spin_unlock_irqrestore(&iommu->lock, flags);
471 }
472}
Joerg Roedel43f49602008-12-02 21:01:12 +0100473
Joerg Roedelbfd1be12009-05-05 15:33:57 +0200474void amd_iommu_flush_all_domains(void)
475{
476 int i;
477
478 for (i = 1; i < MAX_DOMAIN_ID; ++i) {
479 if (!test_bit(i, amd_iommu_pd_alloc_bitmap))
480 continue;
481 iommu_flush_domain(i);
482 }
483}
484
Joerg Roedel6a0dbcb2009-09-02 15:41:59 +0200485static void flush_devices_by_domain(struct protection_domain *domain)
Joerg Roedel7d7a1102009-05-05 15:48:10 +0200486{
487 struct amd_iommu *iommu;
488 int i;
489
490 for (i = 0; i <= amd_iommu_last_bdf; ++i) {
Joerg Roedel6a0dbcb2009-09-02 15:41:59 +0200491 if ((domain == NULL && amd_iommu_pd_table[i] == NULL) ||
492 (amd_iommu_pd_table[i] != domain))
Joerg Roedel7d7a1102009-05-05 15:48:10 +0200493 continue;
494
495 iommu = amd_iommu_rlookup_table[i];
496 if (!iommu)
497 continue;
498
499 iommu_queue_inv_dev_entry(iommu, i);
500 iommu_completion_wait(iommu);
501 }
502}
503
Joerg Roedel6a0dbcb2009-09-02 15:41:59 +0200504void amd_iommu_flush_all_devices(void)
505{
506 flush_devices_by_domain(NULL);
507}
508
Joerg Roedel431b2a22008-07-11 17:14:22 +0200509/****************************************************************************
510 *
511 * The functions below are used the create the page table mappings for
512 * unity mapped regions.
513 *
514 ****************************************************************************/
515
516/*
517 * Generic mapping functions. It maps a physical address into a DMA
518 * address space. It allocates the page table pages if necessary.
519 * In the future it can be extended to a generic mapping function
520 * supporting all features of AMD IOMMU page tables like level skipping
521 * and full 64 bit address spaces.
522 */
Joerg Roedel38e817f2008-12-02 17:27:52 +0100523static int iommu_map_page(struct protection_domain *dom,
524 unsigned long bus_addr,
525 unsigned long phys_addr,
Joerg Roedelabdc5eb2009-09-03 11:33:51 +0200526 int prot,
527 int map_size)
Joerg Roedelbd0e5212008-06-26 21:27:56 +0200528{
Joerg Roedel8bda3092009-05-12 12:02:46 +0200529 u64 __pte, *pte;
Joerg Roedelbd0e5212008-06-26 21:27:56 +0200530
531 bus_addr = PAGE_ALIGN(bus_addr);
Joerg Roedelbb9d4ff2008-12-04 15:59:48 +0100532 phys_addr = PAGE_ALIGN(phys_addr);
Joerg Roedelbd0e5212008-06-26 21:27:56 +0200533
Joerg Roedelabdc5eb2009-09-03 11:33:51 +0200534 BUG_ON(!PM_ALIGNED(map_size, bus_addr));
535 BUG_ON(!PM_ALIGNED(map_size, phys_addr));
536
Joerg Roedelbad1cac2009-09-02 16:52:23 +0200537 if (!(prot & IOMMU_PROT_MASK))
Joerg Roedelbd0e5212008-06-26 21:27:56 +0200538 return -EINVAL;
539
Joerg Roedelabdc5eb2009-09-03 11:33:51 +0200540 pte = alloc_pte(dom, bus_addr, map_size, NULL, GFP_KERNEL);
Joerg Roedelbd0e5212008-06-26 21:27:56 +0200541
542 if (IOMMU_PTE_PRESENT(*pte))
543 return -EBUSY;
544
545 __pte = phys_addr | IOMMU_PTE_P;
546 if (prot & IOMMU_PROT_IR)
547 __pte |= IOMMU_PTE_IR;
548 if (prot & IOMMU_PROT_IW)
549 __pte |= IOMMU_PTE_IW;
550
551 *pte = __pte;
552
Joerg Roedel04bfdd82009-09-02 16:00:23 +0200553 update_domain(dom);
554
Joerg Roedelbd0e5212008-06-26 21:27:56 +0200555 return 0;
556}
557
Joerg Roedeleb74ff62008-12-02 19:59:10 +0100558static void iommu_unmap_page(struct protection_domain *dom,
Joerg Roedela6b256b2009-09-03 12:21:31 +0200559 unsigned long bus_addr, int map_size)
Joerg Roedeleb74ff62008-12-02 19:59:10 +0100560{
Joerg Roedela6b256b2009-09-03 12:21:31 +0200561 u64 *pte = fetch_pte(dom, bus_addr, map_size);
Joerg Roedeleb74ff62008-12-02 19:59:10 +0100562
Joerg Roedel38a76ee2009-09-02 17:02:47 +0200563 if (pte)
564 *pte = 0;
Joerg Roedeleb74ff62008-12-02 19:59:10 +0100565}
Joerg Roedeleb74ff62008-12-02 19:59:10 +0100566
Joerg Roedel431b2a22008-07-11 17:14:22 +0200567/*
568 * This function checks if a specific unity mapping entry is needed for
569 * this specific IOMMU.
570 */
Joerg Roedelbd0e5212008-06-26 21:27:56 +0200571static int iommu_for_unity_map(struct amd_iommu *iommu,
572 struct unity_map_entry *entry)
573{
574 u16 bdf, i;
575
576 for (i = entry->devid_start; i <= entry->devid_end; ++i) {
577 bdf = amd_iommu_alias_table[i];
578 if (amd_iommu_rlookup_table[bdf] == iommu)
579 return 1;
580 }
581
582 return 0;
583}
584
Joerg Roedel431b2a22008-07-11 17:14:22 +0200585/*
586 * Init the unity mappings for a specific IOMMU in the system
587 *
588 * Basically iterates over all unity mapping entries and applies them to
589 * the default domain DMA of that IOMMU if necessary.
590 */
Joerg Roedelbd0e5212008-06-26 21:27:56 +0200591static int iommu_init_unity_mappings(struct amd_iommu *iommu)
592{
593 struct unity_map_entry *entry;
594 int ret;
595
596 list_for_each_entry(entry, &amd_iommu_unity_map, list) {
597 if (!iommu_for_unity_map(iommu, entry))
598 continue;
599 ret = dma_ops_unity_map(iommu->default_dom, entry);
600 if (ret)
601 return ret;
602 }
603
604 return 0;
605}
606
Joerg Roedel431b2a22008-07-11 17:14:22 +0200607/*
608 * This function actually applies the mapping to the page table of the
609 * dma_ops domain.
610 */
Joerg Roedelbd0e5212008-06-26 21:27:56 +0200611static int dma_ops_unity_map(struct dma_ops_domain *dma_dom,
612 struct unity_map_entry *e)
613{
614 u64 addr;
615 int ret;
616
617 for (addr = e->address_start; addr < e->address_end;
618 addr += PAGE_SIZE) {
Joerg Roedelabdc5eb2009-09-03 11:33:51 +0200619 ret = iommu_map_page(&dma_dom->domain, addr, addr, e->prot,
620 PM_MAP_4k);
Joerg Roedelbd0e5212008-06-26 21:27:56 +0200621 if (ret)
622 return ret;
623 /*
624 * if unity mapping is in aperture range mark the page
625 * as allocated in the aperture
626 */
627 if (addr < dma_dom->aperture_size)
Joerg Roedelc3239562009-05-12 10:56:44 +0200628 __set_bit(addr >> PAGE_SHIFT,
Joerg Roedel384de722009-05-15 12:30:05 +0200629 dma_dom->aperture[0]->bitmap);
Joerg Roedelbd0e5212008-06-26 21:27:56 +0200630 }
631
632 return 0;
633}
634
Joerg Roedel431b2a22008-07-11 17:14:22 +0200635/*
636 * Inits the unity mappings required for a specific device
637 */
Joerg Roedelbd0e5212008-06-26 21:27:56 +0200638static int init_unity_mappings_for_device(struct dma_ops_domain *dma_dom,
639 u16 devid)
640{
641 struct unity_map_entry *e;
642 int ret;
643
644 list_for_each_entry(e, &amd_iommu_unity_map, list) {
645 if (!(devid >= e->devid_start && devid <= e->devid_end))
646 continue;
647 ret = dma_ops_unity_map(dma_dom, e);
648 if (ret)
649 return ret;
650 }
651
652 return 0;
653}
654
Joerg Roedel431b2a22008-07-11 17:14:22 +0200655/****************************************************************************
656 *
657 * The next functions belong to the address allocator for the dma_ops
658 * interface functions. They work like the allocators in the other IOMMU
659 * drivers. Its basically a bitmap which marks the allocated pages in
660 * the aperture. Maybe it could be enhanced in the future to a more
661 * efficient allocator.
662 *
663 ****************************************************************************/
Joerg Roedeld3086442008-06-26 21:27:57 +0200664
Joerg Roedel431b2a22008-07-11 17:14:22 +0200665/*
Joerg Roedel384de722009-05-15 12:30:05 +0200666 * The address allocator core functions.
Joerg Roedel431b2a22008-07-11 17:14:22 +0200667 *
668 * called with domain->lock held
669 */
Joerg Roedel384de722009-05-15 12:30:05 +0200670
Joerg Roedel9cabe892009-05-18 16:38:55 +0200671/*
Joerg Roedel00cd1222009-05-19 09:52:40 +0200672 * This function checks if there is a PTE for a given dma address. If
673 * there is one, it returns the pointer to it.
674 */
Joerg Roedel9355a082009-09-02 14:24:08 +0200675static u64 *fetch_pte(struct protection_domain *domain,
Joerg Roedela6b256b2009-09-03 12:21:31 +0200676 unsigned long address, int map_size)
Joerg Roedel00cd1222009-05-19 09:52:40 +0200677{
Joerg Roedel9355a082009-09-02 14:24:08 +0200678 int level;
Joerg Roedel00cd1222009-05-19 09:52:40 +0200679 u64 *pte;
680
Joerg Roedel9355a082009-09-02 14:24:08 +0200681 level = domain->mode - 1;
682 pte = &domain->pt_root[PM_LEVEL_INDEX(level, address)];
Joerg Roedel00cd1222009-05-19 09:52:40 +0200683
Joerg Roedela6b256b2009-09-03 12:21:31 +0200684 while (level > map_size) {
Joerg Roedel9355a082009-09-02 14:24:08 +0200685 if (!IOMMU_PTE_PRESENT(*pte))
686 return NULL;
Joerg Roedel00cd1222009-05-19 09:52:40 +0200687
Joerg Roedel9355a082009-09-02 14:24:08 +0200688 level -= 1;
Joerg Roedel00cd1222009-05-19 09:52:40 +0200689
Joerg Roedel9355a082009-09-02 14:24:08 +0200690 pte = IOMMU_PTE_PAGE(*pte);
691 pte = &pte[PM_LEVEL_INDEX(level, address)];
Joerg Roedela6b256b2009-09-03 12:21:31 +0200692
693 if ((PM_PTE_LEVEL(*pte) == 0) && level != map_size) {
694 pte = NULL;
695 break;
696 }
Joerg Roedel9355a082009-09-02 14:24:08 +0200697 }
Joerg Roedel00cd1222009-05-19 09:52:40 +0200698
699 return pte;
700}
701
702/*
Joerg Roedel9cabe892009-05-18 16:38:55 +0200703 * This function is used to add a new aperture range to an existing
704 * aperture in case of dma_ops domain allocation or address allocation
705 * failure.
706 */
Joerg Roedel00cd1222009-05-19 09:52:40 +0200707static int alloc_new_range(struct amd_iommu *iommu,
708 struct dma_ops_domain *dma_dom,
Joerg Roedel9cabe892009-05-18 16:38:55 +0200709 bool populate, gfp_t gfp)
710{
711 int index = dma_dom->aperture_size >> APERTURE_RANGE_SHIFT;
Joerg Roedel00cd1222009-05-19 09:52:40 +0200712 int i;
Joerg Roedel9cabe892009-05-18 16:38:55 +0200713
Joerg Roedelf5e97052009-05-22 12:31:53 +0200714#ifdef CONFIG_IOMMU_STRESS
715 populate = false;
716#endif
717
Joerg Roedel9cabe892009-05-18 16:38:55 +0200718 if (index >= APERTURE_MAX_RANGES)
719 return -ENOMEM;
720
721 dma_dom->aperture[index] = kzalloc(sizeof(struct aperture_range), gfp);
722 if (!dma_dom->aperture[index])
723 return -ENOMEM;
724
725 dma_dom->aperture[index]->bitmap = (void *)get_zeroed_page(gfp);
726 if (!dma_dom->aperture[index]->bitmap)
727 goto out_free;
728
729 dma_dom->aperture[index]->offset = dma_dom->aperture_size;
730
731 if (populate) {
732 unsigned long address = dma_dom->aperture_size;
733 int i, num_ptes = APERTURE_RANGE_PAGES / 512;
734 u64 *pte, *pte_page;
735
736 for (i = 0; i < num_ptes; ++i) {
Joerg Roedelabdc5eb2009-09-03 11:33:51 +0200737 pte = alloc_pte(&dma_dom->domain, address, PM_MAP_4k,
Joerg Roedel9cabe892009-05-18 16:38:55 +0200738 &pte_page, gfp);
739 if (!pte)
740 goto out_free;
741
742 dma_dom->aperture[index]->pte_pages[i] = pte_page;
743
744 address += APERTURE_RANGE_SIZE / 64;
745 }
746 }
747
748 dma_dom->aperture_size += APERTURE_RANGE_SIZE;
749
Joerg Roedel00cd1222009-05-19 09:52:40 +0200750 /* Intialize the exclusion range if necessary */
751 if (iommu->exclusion_start &&
752 iommu->exclusion_start >= dma_dom->aperture[index]->offset &&
753 iommu->exclusion_start < dma_dom->aperture_size) {
754 unsigned long startpage = iommu->exclusion_start >> PAGE_SHIFT;
755 int pages = iommu_num_pages(iommu->exclusion_start,
756 iommu->exclusion_length,
757 PAGE_SIZE);
758 dma_ops_reserve_addresses(dma_dom, startpage, pages);
759 }
760
761 /*
762 * Check for areas already mapped as present in the new aperture
763 * range and mark those pages as reserved in the allocator. Such
764 * mappings may already exist as a result of requested unity
765 * mappings for devices.
766 */
767 for (i = dma_dom->aperture[index]->offset;
768 i < dma_dom->aperture_size;
769 i += PAGE_SIZE) {
Joerg Roedela6b256b2009-09-03 12:21:31 +0200770 u64 *pte = fetch_pte(&dma_dom->domain, i, PM_MAP_4k);
Joerg Roedel00cd1222009-05-19 09:52:40 +0200771 if (!pte || !IOMMU_PTE_PRESENT(*pte))
772 continue;
773
774 dma_ops_reserve_addresses(dma_dom, i << PAGE_SHIFT, 1);
775 }
776
Joerg Roedel04bfdd82009-09-02 16:00:23 +0200777 update_domain(&dma_dom->domain);
778
Joerg Roedel9cabe892009-05-18 16:38:55 +0200779 return 0;
780
781out_free:
Joerg Roedel04bfdd82009-09-02 16:00:23 +0200782 update_domain(&dma_dom->domain);
783
Joerg Roedel9cabe892009-05-18 16:38:55 +0200784 free_page((unsigned long)dma_dom->aperture[index]->bitmap);
785
786 kfree(dma_dom->aperture[index]);
787 dma_dom->aperture[index] = NULL;
788
789 return -ENOMEM;
790}
791
Joerg Roedel384de722009-05-15 12:30:05 +0200792static unsigned long dma_ops_area_alloc(struct device *dev,
793 struct dma_ops_domain *dom,
794 unsigned int pages,
795 unsigned long align_mask,
796 u64 dma_mask,
797 unsigned long start)
798{
Joerg Roedel803b8cb42009-05-18 15:32:48 +0200799 unsigned long next_bit = dom->next_address % APERTURE_RANGE_SIZE;
Joerg Roedel384de722009-05-15 12:30:05 +0200800 int max_index = dom->aperture_size >> APERTURE_RANGE_SHIFT;
801 int i = start >> APERTURE_RANGE_SHIFT;
802 unsigned long boundary_size;
803 unsigned long address = -1;
804 unsigned long limit;
805
Joerg Roedel803b8cb42009-05-18 15:32:48 +0200806 next_bit >>= PAGE_SHIFT;
807
Joerg Roedel384de722009-05-15 12:30:05 +0200808 boundary_size = ALIGN(dma_get_seg_boundary(dev) + 1,
809 PAGE_SIZE) >> PAGE_SHIFT;
810
811 for (;i < max_index; ++i) {
812 unsigned long offset = dom->aperture[i]->offset >> PAGE_SHIFT;
813
814 if (dom->aperture[i]->offset >= dma_mask)
815 break;
816
817 limit = iommu_device_max_index(APERTURE_RANGE_PAGES, offset,
818 dma_mask >> PAGE_SHIFT);
819
820 address = iommu_area_alloc(dom->aperture[i]->bitmap,
821 limit, next_bit, pages, 0,
822 boundary_size, align_mask);
823 if (address != -1) {
824 address = dom->aperture[i]->offset +
825 (address << PAGE_SHIFT);
Joerg Roedel803b8cb42009-05-18 15:32:48 +0200826 dom->next_address = address + (pages << PAGE_SHIFT);
Joerg Roedel384de722009-05-15 12:30:05 +0200827 break;
828 }
829
830 next_bit = 0;
831 }
832
833 return address;
834}
835
Joerg Roedeld3086442008-06-26 21:27:57 +0200836static unsigned long dma_ops_alloc_addresses(struct device *dev,
837 struct dma_ops_domain *dom,
Joerg Roedel6d4f3432008-09-04 19:18:02 +0200838 unsigned int pages,
Joerg Roedel832a90c2008-09-18 15:54:23 +0200839 unsigned long align_mask,
840 u64 dma_mask)
Joerg Roedeld3086442008-06-26 21:27:57 +0200841{
Joerg Roedeld3086442008-06-26 21:27:57 +0200842 unsigned long address;
Joerg Roedeld3086442008-06-26 21:27:57 +0200843
Joerg Roedelfe16f082009-05-22 12:27:53 +0200844#ifdef CONFIG_IOMMU_STRESS
845 dom->next_address = 0;
846 dom->need_flush = true;
847#endif
Joerg Roedeld3086442008-06-26 21:27:57 +0200848
Joerg Roedel384de722009-05-15 12:30:05 +0200849 address = dma_ops_area_alloc(dev, dom, pages, align_mask,
Joerg Roedel803b8cb42009-05-18 15:32:48 +0200850 dma_mask, dom->next_address);
Joerg Roedeld3086442008-06-26 21:27:57 +0200851
Joerg Roedel1c655772008-09-04 18:40:05 +0200852 if (address == -1) {
Joerg Roedel803b8cb42009-05-18 15:32:48 +0200853 dom->next_address = 0;
Joerg Roedel384de722009-05-15 12:30:05 +0200854 address = dma_ops_area_alloc(dev, dom, pages, align_mask,
855 dma_mask, 0);
Joerg Roedel1c655772008-09-04 18:40:05 +0200856 dom->need_flush = true;
857 }
Joerg Roedeld3086442008-06-26 21:27:57 +0200858
Joerg Roedel384de722009-05-15 12:30:05 +0200859 if (unlikely(address == -1))
Joerg Roedeld3086442008-06-26 21:27:57 +0200860 address = bad_dma_address;
861
862 WARN_ON((address + (PAGE_SIZE*pages)) > dom->aperture_size);
863
864 return address;
865}
866
Joerg Roedel431b2a22008-07-11 17:14:22 +0200867/*
868 * The address free function.
869 *
870 * called with domain->lock held
871 */
Joerg Roedeld3086442008-06-26 21:27:57 +0200872static void dma_ops_free_addresses(struct dma_ops_domain *dom,
873 unsigned long address,
874 unsigned int pages)
875{
Joerg Roedel384de722009-05-15 12:30:05 +0200876 unsigned i = address >> APERTURE_RANGE_SHIFT;
877 struct aperture_range *range = dom->aperture[i];
Joerg Roedel80be3082008-11-06 14:59:05 +0100878
Joerg Roedel384de722009-05-15 12:30:05 +0200879 BUG_ON(i >= APERTURE_MAX_RANGES || range == NULL);
880
Joerg Roedel47bccd62009-05-22 12:40:54 +0200881#ifdef CONFIG_IOMMU_STRESS
882 if (i < 4)
883 return;
884#endif
885
Joerg Roedel803b8cb42009-05-18 15:32:48 +0200886 if (address >= dom->next_address)
Joerg Roedel80be3082008-11-06 14:59:05 +0100887 dom->need_flush = true;
Joerg Roedel384de722009-05-15 12:30:05 +0200888
889 address = (address % APERTURE_RANGE_SIZE) >> PAGE_SHIFT;
Joerg Roedel803b8cb42009-05-18 15:32:48 +0200890
Joerg Roedel384de722009-05-15 12:30:05 +0200891 iommu_area_free(range->bitmap, address, pages);
892
Joerg Roedeld3086442008-06-26 21:27:57 +0200893}
894
Joerg Roedel431b2a22008-07-11 17:14:22 +0200895/****************************************************************************
896 *
897 * The next functions belong to the domain allocation. A domain is
898 * allocated for every IOMMU as the default domain. If device isolation
899 * is enabled, every device get its own domain. The most important thing
900 * about domains is the page table mapping the DMA address space they
901 * contain.
902 *
903 ****************************************************************************/
904
Joerg Roedelec487d12008-06-26 21:27:58 +0200905static u16 domain_id_alloc(void)
906{
907 unsigned long flags;
908 int id;
909
910 write_lock_irqsave(&amd_iommu_devtable_lock, flags);
911 id = find_first_zero_bit(amd_iommu_pd_alloc_bitmap, MAX_DOMAIN_ID);
912 BUG_ON(id == 0);
913 if (id > 0 && id < MAX_DOMAIN_ID)
914 __set_bit(id, amd_iommu_pd_alloc_bitmap);
915 else
916 id = 0;
917 write_unlock_irqrestore(&amd_iommu_devtable_lock, flags);
918
919 return id;
920}
921
Joerg Roedela2acfb72008-12-02 18:28:53 +0100922static void domain_id_free(int id)
923{
924 unsigned long flags;
925
926 write_lock_irqsave(&amd_iommu_devtable_lock, flags);
927 if (id > 0 && id < MAX_DOMAIN_ID)
928 __clear_bit(id, amd_iommu_pd_alloc_bitmap);
929 write_unlock_irqrestore(&amd_iommu_devtable_lock, flags);
930}
Joerg Roedela2acfb72008-12-02 18:28:53 +0100931
Joerg Roedel431b2a22008-07-11 17:14:22 +0200932/*
933 * Used to reserve address ranges in the aperture (e.g. for exclusion
934 * ranges.
935 */
Joerg Roedelec487d12008-06-26 21:27:58 +0200936static void dma_ops_reserve_addresses(struct dma_ops_domain *dom,
937 unsigned long start_page,
938 unsigned int pages)
939{
Joerg Roedel384de722009-05-15 12:30:05 +0200940 unsigned int i, last_page = dom->aperture_size >> PAGE_SHIFT;
Joerg Roedelec487d12008-06-26 21:27:58 +0200941
942 if (start_page + pages > last_page)
943 pages = last_page - start_page;
944
Joerg Roedel384de722009-05-15 12:30:05 +0200945 for (i = start_page; i < start_page + pages; ++i) {
946 int index = i / APERTURE_RANGE_PAGES;
947 int page = i % APERTURE_RANGE_PAGES;
948 __set_bit(page, dom->aperture[index]->bitmap);
949 }
Joerg Roedelec487d12008-06-26 21:27:58 +0200950}
951
Joerg Roedel86db2e52008-12-02 18:20:21 +0100952static void free_pagetable(struct protection_domain *domain)
Joerg Roedelec487d12008-06-26 21:27:58 +0200953{
954 int i, j;
955 u64 *p1, *p2, *p3;
956
Joerg Roedel86db2e52008-12-02 18:20:21 +0100957 p1 = domain->pt_root;
Joerg Roedelec487d12008-06-26 21:27:58 +0200958
959 if (!p1)
960 return;
961
962 for (i = 0; i < 512; ++i) {
963 if (!IOMMU_PTE_PRESENT(p1[i]))
964 continue;
965
966 p2 = IOMMU_PTE_PAGE(p1[i]);
Joerg Roedel3cc3d842008-12-04 16:44:31 +0100967 for (j = 0; j < 512; ++j) {
Joerg Roedelec487d12008-06-26 21:27:58 +0200968 if (!IOMMU_PTE_PRESENT(p2[j]))
969 continue;
970 p3 = IOMMU_PTE_PAGE(p2[j]);
971 free_page((unsigned long)p3);
972 }
973
974 free_page((unsigned long)p2);
975 }
976
977 free_page((unsigned long)p1);
Joerg Roedel86db2e52008-12-02 18:20:21 +0100978
979 domain->pt_root = NULL;
Joerg Roedelec487d12008-06-26 21:27:58 +0200980}
981
Joerg Roedel431b2a22008-07-11 17:14:22 +0200982/*
983 * Free a domain, only used if something went wrong in the
984 * allocation path and we need to free an already allocated page table
985 */
Joerg Roedelec487d12008-06-26 21:27:58 +0200986static void dma_ops_domain_free(struct dma_ops_domain *dom)
987{
Joerg Roedel384de722009-05-15 12:30:05 +0200988 int i;
989
Joerg Roedelec487d12008-06-26 21:27:58 +0200990 if (!dom)
991 return;
992
Joerg Roedel86db2e52008-12-02 18:20:21 +0100993 free_pagetable(&dom->domain);
Joerg Roedelec487d12008-06-26 21:27:58 +0200994
Joerg Roedel384de722009-05-15 12:30:05 +0200995 for (i = 0; i < APERTURE_MAX_RANGES; ++i) {
996 if (!dom->aperture[i])
997 continue;
998 free_page((unsigned long)dom->aperture[i]->bitmap);
999 kfree(dom->aperture[i]);
1000 }
Joerg Roedelec487d12008-06-26 21:27:58 +02001001
1002 kfree(dom);
1003}
1004
Joerg Roedel431b2a22008-07-11 17:14:22 +02001005/*
1006 * Allocates a new protection domain usable for the dma_ops functions.
1007 * It also intializes the page table and the address allocator data
1008 * structures required for the dma_ops interface
1009 */
Joerg Roedeld9cfed92009-05-19 12:16:29 +02001010static struct dma_ops_domain *dma_ops_domain_alloc(struct amd_iommu *iommu)
Joerg Roedelec487d12008-06-26 21:27:58 +02001011{
1012 struct dma_ops_domain *dma_dom;
Joerg Roedelec487d12008-06-26 21:27:58 +02001013
1014 dma_dom = kzalloc(sizeof(struct dma_ops_domain), GFP_KERNEL);
1015 if (!dma_dom)
1016 return NULL;
1017
1018 spin_lock_init(&dma_dom->domain.lock);
1019
1020 dma_dom->domain.id = domain_id_alloc();
1021 if (dma_dom->domain.id == 0)
1022 goto free_dma_dom;
Joerg Roedel8f7a0172009-09-02 16:55:24 +02001023 dma_dom->domain.mode = PAGE_MODE_2_LEVEL;
Joerg Roedelec487d12008-06-26 21:27:58 +02001024 dma_dom->domain.pt_root = (void *)get_zeroed_page(GFP_KERNEL);
Joerg Roedel9fdb19d2008-12-02 17:46:25 +01001025 dma_dom->domain.flags = PD_DMA_OPS_MASK;
Joerg Roedelec487d12008-06-26 21:27:58 +02001026 dma_dom->domain.priv = dma_dom;
1027 if (!dma_dom->domain.pt_root)
1028 goto free_dma_dom;
Joerg Roedelec487d12008-06-26 21:27:58 +02001029
Joerg Roedel1c655772008-09-04 18:40:05 +02001030 dma_dom->need_flush = false;
Joerg Roedelbd60b732008-09-11 10:24:48 +02001031 dma_dom->target_dev = 0xffff;
Joerg Roedel1c655772008-09-04 18:40:05 +02001032
Joerg Roedel00cd1222009-05-19 09:52:40 +02001033 if (alloc_new_range(iommu, dma_dom, true, GFP_KERNEL))
Joerg Roedelec487d12008-06-26 21:27:58 +02001034 goto free_dma_dom;
Joerg Roedelec487d12008-06-26 21:27:58 +02001035
Joerg Roedel431b2a22008-07-11 17:14:22 +02001036 /*
Joerg Roedelec487d12008-06-26 21:27:58 +02001037 * mark the first page as allocated so we never return 0 as
1038 * a valid dma-address. So we can use 0 as error value
Joerg Roedel431b2a22008-07-11 17:14:22 +02001039 */
Joerg Roedel384de722009-05-15 12:30:05 +02001040 dma_dom->aperture[0]->bitmap[0] = 1;
Joerg Roedel803b8cb42009-05-18 15:32:48 +02001041 dma_dom->next_address = 0;
Joerg Roedelec487d12008-06-26 21:27:58 +02001042
Joerg Roedelec487d12008-06-26 21:27:58 +02001043
1044 return dma_dom;
1045
1046free_dma_dom:
1047 dma_ops_domain_free(dma_dom);
1048
1049 return NULL;
1050}
1051
Joerg Roedel431b2a22008-07-11 17:14:22 +02001052/*
Joerg Roedel5b28df62008-12-02 17:49:42 +01001053 * little helper function to check whether a given protection domain is a
1054 * dma_ops domain
1055 */
1056static bool dma_ops_domain(struct protection_domain *domain)
1057{
1058 return domain->flags & PD_DMA_OPS_MASK;
1059}
1060
1061/*
Joerg Roedel431b2a22008-07-11 17:14:22 +02001062 * Find out the protection domain structure for a given PCI device. This
1063 * will give us the pointer to the page table root for example.
1064 */
Joerg Roedelb20ac0d2008-06-26 21:27:59 +02001065static struct protection_domain *domain_for_device(u16 devid)
1066{
1067 struct protection_domain *dom;
1068 unsigned long flags;
1069
1070 read_lock_irqsave(&amd_iommu_devtable_lock, flags);
1071 dom = amd_iommu_pd_table[devid];
1072 read_unlock_irqrestore(&amd_iommu_devtable_lock, flags);
1073
1074 return dom;
1075}
1076
Joerg Roedel407d7332009-09-02 16:07:00 +02001077static void set_dte_entry(u16 devid, struct protection_domain *domain)
Joerg Roedelb20ac0d2008-06-26 21:27:59 +02001078{
Joerg Roedelb20ac0d2008-06-26 21:27:59 +02001079 u64 pte_root = virt_to_phys(domain->pt_root);
Joerg Roedel407d7332009-09-02 16:07:00 +02001080 unsigned long flags;
Joerg Roedel863c74e2008-12-02 17:56:36 +01001081
Joerg Roedel38ddf412008-09-11 10:38:32 +02001082 pte_root |= (domain->mode & DEV_ENTRY_MODE_MASK)
1083 << DEV_ENTRY_MODE_SHIFT;
1084 pte_root |= IOMMU_PTE_IR | IOMMU_PTE_IW | IOMMU_PTE_P | IOMMU_PTE_TV;
Joerg Roedelb20ac0d2008-06-26 21:27:59 +02001085
1086 write_lock_irqsave(&amd_iommu_devtable_lock, flags);
Joerg Roedel38ddf412008-09-11 10:38:32 +02001087 amd_iommu_dev_table[devid].data[0] = lower_32_bits(pte_root);
1088 amd_iommu_dev_table[devid].data[1] = upper_32_bits(pte_root);
Joerg Roedelb20ac0d2008-06-26 21:27:59 +02001089 amd_iommu_dev_table[devid].data[2] = domain->id;
1090
1091 amd_iommu_pd_table[devid] = domain;
1092 write_unlock_irqrestore(&amd_iommu_devtable_lock, flags);
Joerg Roedel407d7332009-09-02 16:07:00 +02001093}
1094
1095/*
1096 * If a device is not yet associated with a domain, this function does
1097 * assigns it visible for the hardware
1098 */
1099static void attach_device(struct amd_iommu *iommu,
1100 struct protection_domain *domain,
1101 u16 devid)
1102{
1103 /* set the DTE entry */
1104 set_dte_entry(devid, domain);
1105
1106 /* increase reference counter */
1107 domain->dev_cnt += 1;
Joerg Roedelb20ac0d2008-06-26 21:27:59 +02001108
Chris Wright42a49f92009-06-15 15:42:00 +02001109 /*
1110 * We might boot into a crash-kernel here. The crashed kernel
1111 * left the caches in the IOMMU dirty. So we have to flush
1112 * here to evict all dirty stuff.
1113 */
Joerg Roedelb20ac0d2008-06-26 21:27:59 +02001114 iommu_queue_inv_dev_entry(iommu, devid);
Chris Wright42a49f92009-06-15 15:42:00 +02001115 iommu_flush_tlb_pde(iommu, domain->id);
Joerg Roedelb20ac0d2008-06-26 21:27:59 +02001116}
1117
Joerg Roedel355bf552008-12-08 12:02:41 +01001118/*
1119 * Removes a device from a protection domain (unlocked)
1120 */
1121static void __detach_device(struct protection_domain *domain, u16 devid)
1122{
1123
1124 /* lock domain */
1125 spin_lock(&domain->lock);
1126
1127 /* remove domain from the lookup table */
1128 amd_iommu_pd_table[devid] = NULL;
1129
1130 /* remove entry from the device table seen by the hardware */
1131 amd_iommu_dev_table[devid].data[0] = IOMMU_PTE_P | IOMMU_PTE_TV;
1132 amd_iommu_dev_table[devid].data[1] = 0;
1133 amd_iommu_dev_table[devid].data[2] = 0;
1134
1135 /* decrease reference counter */
1136 domain->dev_cnt -= 1;
1137
1138 /* ready */
1139 spin_unlock(&domain->lock);
1140}
1141
1142/*
1143 * Removes a device from a protection domain (with devtable_lock held)
1144 */
1145static void detach_device(struct protection_domain *domain, u16 devid)
1146{
1147 unsigned long flags;
1148
1149 /* lock device table */
1150 write_lock_irqsave(&amd_iommu_devtable_lock, flags);
1151 __detach_device(domain, devid);
1152 write_unlock_irqrestore(&amd_iommu_devtable_lock, flags);
1153}
Joerg Roedele275a2a2008-12-10 18:27:25 +01001154
1155static int device_change_notifier(struct notifier_block *nb,
1156 unsigned long action, void *data)
1157{
1158 struct device *dev = data;
1159 struct pci_dev *pdev = to_pci_dev(dev);
1160 u16 devid = calc_devid(pdev->bus->number, pdev->devfn);
1161 struct protection_domain *domain;
1162 struct dma_ops_domain *dma_domain;
1163 struct amd_iommu *iommu;
Joerg Roedel1ac4cbb2008-12-10 19:33:26 +01001164 unsigned long flags;
Joerg Roedele275a2a2008-12-10 18:27:25 +01001165
1166 if (devid > amd_iommu_last_bdf)
1167 goto out;
1168
1169 devid = amd_iommu_alias_table[devid];
1170
1171 iommu = amd_iommu_rlookup_table[devid];
1172 if (iommu == NULL)
1173 goto out;
1174
1175 domain = domain_for_device(devid);
1176
1177 if (domain && !dma_ops_domain(domain))
1178 WARN_ONCE(1, "AMD IOMMU WARNING: device %s already bound "
1179 "to a non-dma-ops domain\n", dev_name(dev));
1180
1181 switch (action) {
Chris Wrightc1eee672009-05-21 00:56:58 -07001182 case BUS_NOTIFY_UNBOUND_DRIVER:
Joerg Roedele275a2a2008-12-10 18:27:25 +01001183 if (!domain)
1184 goto out;
1185 detach_device(domain, devid);
1186 break;
Joerg Roedel1ac4cbb2008-12-10 19:33:26 +01001187 case BUS_NOTIFY_ADD_DEVICE:
1188 /* allocate a protection domain if a device is added */
1189 dma_domain = find_protection_domain(devid);
1190 if (dma_domain)
1191 goto out;
Joerg Roedeld9cfed92009-05-19 12:16:29 +02001192 dma_domain = dma_ops_domain_alloc(iommu);
Joerg Roedel1ac4cbb2008-12-10 19:33:26 +01001193 if (!dma_domain)
1194 goto out;
1195 dma_domain->target_dev = devid;
1196
1197 spin_lock_irqsave(&iommu_pd_list_lock, flags);
1198 list_add_tail(&dma_domain->list, &iommu_pd_list);
1199 spin_unlock_irqrestore(&iommu_pd_list_lock, flags);
1200
1201 break;
Joerg Roedele275a2a2008-12-10 18:27:25 +01001202 default:
1203 goto out;
1204 }
1205
1206 iommu_queue_inv_dev_entry(iommu, devid);
1207 iommu_completion_wait(iommu);
1208
1209out:
1210 return 0;
1211}
1212
Jaswinder Singh Rajputb25ae672009-07-01 19:53:14 +05301213static struct notifier_block device_nb = {
Joerg Roedele275a2a2008-12-10 18:27:25 +01001214 .notifier_call = device_change_notifier,
1215};
Joerg Roedel355bf552008-12-08 12:02:41 +01001216
Joerg Roedel431b2a22008-07-11 17:14:22 +02001217/*****************************************************************************
1218 *
1219 * The next functions belong to the dma_ops mapping/unmapping code.
1220 *
1221 *****************************************************************************/
1222
1223/*
Joerg Roedeldbcc1122008-09-04 15:04:26 +02001224 * This function checks if the driver got a valid device from the caller to
1225 * avoid dereferencing invalid pointers.
1226 */
1227static bool check_device(struct device *dev)
1228{
1229 if (!dev || !dev->dma_mask)
1230 return false;
1231
1232 return true;
1233}
1234
1235/*
Joerg Roedelbd60b732008-09-11 10:24:48 +02001236 * In this function the list of preallocated protection domains is traversed to
1237 * find the domain for a specific device
1238 */
1239static struct dma_ops_domain *find_protection_domain(u16 devid)
1240{
1241 struct dma_ops_domain *entry, *ret = NULL;
1242 unsigned long flags;
1243
1244 if (list_empty(&iommu_pd_list))
1245 return NULL;
1246
1247 spin_lock_irqsave(&iommu_pd_list_lock, flags);
1248
1249 list_for_each_entry(entry, &iommu_pd_list, list) {
1250 if (entry->target_dev == devid) {
1251 ret = entry;
Joerg Roedelbd60b732008-09-11 10:24:48 +02001252 break;
1253 }
1254 }
1255
1256 spin_unlock_irqrestore(&iommu_pd_list_lock, flags);
1257
1258 return ret;
1259}
1260
1261/*
Joerg Roedel431b2a22008-07-11 17:14:22 +02001262 * In the dma_ops path we only have the struct device. This function
1263 * finds the corresponding IOMMU, the protection domain and the
1264 * requestor id for a given device.
1265 * If the device is not yet associated with a domain this is also done
1266 * in this function.
1267 */
Joerg Roedelb20ac0d2008-06-26 21:27:59 +02001268static int get_device_resources(struct device *dev,
1269 struct amd_iommu **iommu,
1270 struct protection_domain **domain,
1271 u16 *bdf)
1272{
1273 struct dma_ops_domain *dma_dom;
1274 struct pci_dev *pcidev;
1275 u16 _bdf;
1276
Joerg Roedeldbcc1122008-09-04 15:04:26 +02001277 *iommu = NULL;
1278 *domain = NULL;
1279 *bdf = 0xffff;
1280
1281 if (dev->bus != &pci_bus_type)
1282 return 0;
Joerg Roedelb20ac0d2008-06-26 21:27:59 +02001283
1284 pcidev = to_pci_dev(dev);
Joerg Roedeld591b0a2008-07-11 17:14:35 +02001285 _bdf = calc_devid(pcidev->bus->number, pcidev->devfn);
Joerg Roedelb20ac0d2008-06-26 21:27:59 +02001286
Joerg Roedel431b2a22008-07-11 17:14:22 +02001287 /* device not translated by any IOMMU in the system? */
Joerg Roedeldbcc1122008-09-04 15:04:26 +02001288 if (_bdf > amd_iommu_last_bdf)
Joerg Roedelb20ac0d2008-06-26 21:27:59 +02001289 return 0;
Joerg Roedelb20ac0d2008-06-26 21:27:59 +02001290
1291 *bdf = amd_iommu_alias_table[_bdf];
1292
1293 *iommu = amd_iommu_rlookup_table[*bdf];
1294 if (*iommu == NULL)
1295 return 0;
Joerg Roedelb20ac0d2008-06-26 21:27:59 +02001296 *domain = domain_for_device(*bdf);
1297 if (*domain == NULL) {
Joerg Roedelbd60b732008-09-11 10:24:48 +02001298 dma_dom = find_protection_domain(*bdf);
1299 if (!dma_dom)
1300 dma_dom = (*iommu)->default_dom;
Joerg Roedelb20ac0d2008-06-26 21:27:59 +02001301 *domain = &dma_dom->domain;
Joerg Roedelf1179dc2008-12-10 14:39:51 +01001302 attach_device(*iommu, *domain, *bdf);
Joerg Roedele9a22a12009-06-09 12:00:37 +02001303 DUMP_printk("Using protection domain %d for device %s\n",
1304 (*domain)->id, dev_name(dev));
Joerg Roedelb20ac0d2008-06-26 21:27:59 +02001305 }
1306
Joerg Roedelf91ba192008-11-25 12:56:12 +01001307 if (domain_for_device(_bdf) == NULL)
Joerg Roedelf1179dc2008-12-10 14:39:51 +01001308 attach_device(*iommu, *domain, _bdf);
Joerg Roedelf91ba192008-11-25 12:56:12 +01001309
Joerg Roedelb20ac0d2008-06-26 21:27:59 +02001310 return 1;
1311}
1312
Joerg Roedel04bfdd82009-09-02 16:00:23 +02001313static void update_device_table(struct protection_domain *domain)
1314{
1315 int i;
1316
1317 for (i = 0; i <= amd_iommu_last_bdf; ++i) {
1318 if (amd_iommu_pd_table[i] != domain)
1319 continue;
1320 set_dte_entry(i, domain);
1321 }
1322}
1323
1324static void update_domain(struct protection_domain *domain)
1325{
1326 if (!domain->updated)
1327 return;
1328
1329 update_device_table(domain);
1330 flush_devices_by_domain(domain);
1331 iommu_flush_domain(domain->id);
1332
1333 domain->updated = false;
1334}
1335
Joerg Roedel431b2a22008-07-11 17:14:22 +02001336/*
Joerg Roedel50020fb2009-09-02 15:38:40 +02001337 * This function is used to add another level to an IO page table. Adding
1338 * another level increases the size of the address space by 9 bits to a size up
1339 * to 64 bits.
1340 */
1341static bool increase_address_space(struct protection_domain *domain,
1342 gfp_t gfp)
1343{
1344 u64 *pte;
1345
1346 if (domain->mode == PAGE_MODE_6_LEVEL)
1347 /* address space already 64 bit large */
1348 return false;
1349
1350 pte = (void *)get_zeroed_page(gfp);
1351 if (!pte)
1352 return false;
1353
1354 *pte = PM_LEVEL_PDE(domain->mode,
1355 virt_to_phys(domain->pt_root));
1356 domain->pt_root = pte;
1357 domain->mode += 1;
1358 domain->updated = true;
1359
1360 return true;
1361}
1362
Joerg Roedel8bc3e122009-09-02 16:48:40 +02001363static u64 *alloc_pte(struct protection_domain *domain,
Joerg Roedelabdc5eb2009-09-03 11:33:51 +02001364 unsigned long address,
1365 int end_lvl,
1366 u64 **pte_page,
1367 gfp_t gfp)
Joerg Roedel8bda3092009-05-12 12:02:46 +02001368{
1369 u64 *pte, *page;
Joerg Roedel8bc3e122009-09-02 16:48:40 +02001370 int level;
Joerg Roedel8bda3092009-05-12 12:02:46 +02001371
Joerg Roedel8bc3e122009-09-02 16:48:40 +02001372 while (address > PM_LEVEL_SIZE(domain->mode))
1373 increase_address_space(domain, gfp);
Joerg Roedel8bda3092009-05-12 12:02:46 +02001374
Joerg Roedel8bc3e122009-09-02 16:48:40 +02001375 level = domain->mode - 1;
1376 pte = &domain->pt_root[PM_LEVEL_INDEX(level, address)];
1377
Joerg Roedelabdc5eb2009-09-03 11:33:51 +02001378 while (level > end_lvl) {
Joerg Roedel8bc3e122009-09-02 16:48:40 +02001379 if (!IOMMU_PTE_PRESENT(*pte)) {
1380 page = (u64 *)get_zeroed_page(gfp);
1381 if (!page)
1382 return NULL;
1383 *pte = PM_LEVEL_PDE(level, virt_to_phys(page));
1384 }
1385
1386 level -= 1;
1387
1388 pte = IOMMU_PTE_PAGE(*pte);
1389
Joerg Roedelabdc5eb2009-09-03 11:33:51 +02001390 if (pte_page && level == end_lvl)
Joerg Roedel8bc3e122009-09-02 16:48:40 +02001391 *pte_page = pte;
1392
1393 pte = &pte[PM_LEVEL_INDEX(level, address)];
Joerg Roedel8bda3092009-05-12 12:02:46 +02001394 }
1395
Joerg Roedel8bda3092009-05-12 12:02:46 +02001396 return pte;
1397}
1398
1399/*
1400 * This function fetches the PTE for a given address in the aperture
1401 */
1402static u64* dma_ops_get_pte(struct dma_ops_domain *dom,
1403 unsigned long address)
1404{
Joerg Roedel384de722009-05-15 12:30:05 +02001405 struct aperture_range *aperture;
Joerg Roedel8bda3092009-05-12 12:02:46 +02001406 u64 *pte, *pte_page;
1407
Joerg Roedel384de722009-05-15 12:30:05 +02001408 aperture = dom->aperture[APERTURE_RANGE_INDEX(address)];
1409 if (!aperture)
1410 return NULL;
1411
1412 pte = aperture->pte_pages[APERTURE_PAGE_INDEX(address)];
Joerg Roedel8bda3092009-05-12 12:02:46 +02001413 if (!pte) {
Joerg Roedelabdc5eb2009-09-03 11:33:51 +02001414 pte = alloc_pte(&dom->domain, address, PM_MAP_4k, &pte_page,
1415 GFP_ATOMIC);
Joerg Roedel384de722009-05-15 12:30:05 +02001416 aperture->pte_pages[APERTURE_PAGE_INDEX(address)] = pte_page;
1417 } else
Joerg Roedel8c8c1432009-09-02 17:30:00 +02001418 pte += PM_LEVEL_INDEX(0, address);
Joerg Roedel8bda3092009-05-12 12:02:46 +02001419
Joerg Roedel04bfdd82009-09-02 16:00:23 +02001420 update_domain(&dom->domain);
1421
Joerg Roedel8bda3092009-05-12 12:02:46 +02001422 return pte;
1423}
1424
1425/*
Joerg Roedel431b2a22008-07-11 17:14:22 +02001426 * This is the generic map function. It maps one 4kb page at paddr to
1427 * the given address in the DMA address space for the domain.
1428 */
Joerg Roedelcb76c322008-06-26 21:28:00 +02001429static dma_addr_t dma_ops_domain_map(struct amd_iommu *iommu,
1430 struct dma_ops_domain *dom,
1431 unsigned long address,
1432 phys_addr_t paddr,
1433 int direction)
1434{
1435 u64 *pte, __pte;
1436
1437 WARN_ON(address > dom->aperture_size);
1438
1439 paddr &= PAGE_MASK;
1440
Joerg Roedel8bda3092009-05-12 12:02:46 +02001441 pte = dma_ops_get_pte(dom, address);
Joerg Roedel53812c12009-05-12 12:17:38 +02001442 if (!pte)
1443 return bad_dma_address;
Joerg Roedelcb76c322008-06-26 21:28:00 +02001444
1445 __pte = paddr | IOMMU_PTE_P | IOMMU_PTE_FC;
1446
1447 if (direction == DMA_TO_DEVICE)
1448 __pte |= IOMMU_PTE_IR;
1449 else if (direction == DMA_FROM_DEVICE)
1450 __pte |= IOMMU_PTE_IW;
1451 else if (direction == DMA_BIDIRECTIONAL)
1452 __pte |= IOMMU_PTE_IR | IOMMU_PTE_IW;
1453
1454 WARN_ON(*pte);
1455
1456 *pte = __pte;
1457
1458 return (dma_addr_t)address;
1459}
1460
Joerg Roedel431b2a22008-07-11 17:14:22 +02001461/*
1462 * The generic unmapping function for on page in the DMA address space.
1463 */
Joerg Roedelcb76c322008-06-26 21:28:00 +02001464static void dma_ops_domain_unmap(struct amd_iommu *iommu,
1465 struct dma_ops_domain *dom,
1466 unsigned long address)
1467{
Joerg Roedel384de722009-05-15 12:30:05 +02001468 struct aperture_range *aperture;
Joerg Roedelcb76c322008-06-26 21:28:00 +02001469 u64 *pte;
1470
1471 if (address >= dom->aperture_size)
1472 return;
1473
Joerg Roedel384de722009-05-15 12:30:05 +02001474 aperture = dom->aperture[APERTURE_RANGE_INDEX(address)];
1475 if (!aperture)
1476 return;
Joerg Roedelcb76c322008-06-26 21:28:00 +02001477
Joerg Roedel384de722009-05-15 12:30:05 +02001478 pte = aperture->pte_pages[APERTURE_PAGE_INDEX(address)];
1479 if (!pte)
1480 return;
1481
Joerg Roedel8c8c1432009-09-02 17:30:00 +02001482 pte += PM_LEVEL_INDEX(0, address);
Joerg Roedelcb76c322008-06-26 21:28:00 +02001483
1484 WARN_ON(!*pte);
1485
1486 *pte = 0ULL;
1487}
1488
Joerg Roedel431b2a22008-07-11 17:14:22 +02001489/*
1490 * This function contains common code for mapping of a physically
Joerg Roedel24f81162008-12-08 14:25:39 +01001491 * contiguous memory region into DMA address space. It is used by all
1492 * mapping functions provided with this IOMMU driver.
Joerg Roedel431b2a22008-07-11 17:14:22 +02001493 * Must be called with the domain lock held.
1494 */
Joerg Roedelcb76c322008-06-26 21:28:00 +02001495static dma_addr_t __map_single(struct device *dev,
1496 struct amd_iommu *iommu,
1497 struct dma_ops_domain *dma_dom,
1498 phys_addr_t paddr,
1499 size_t size,
Joerg Roedel6d4f3432008-09-04 19:18:02 +02001500 int dir,
Joerg Roedel832a90c2008-09-18 15:54:23 +02001501 bool align,
1502 u64 dma_mask)
Joerg Roedelcb76c322008-06-26 21:28:00 +02001503{
1504 dma_addr_t offset = paddr & ~PAGE_MASK;
Joerg Roedel53812c12009-05-12 12:17:38 +02001505 dma_addr_t address, start, ret;
Joerg Roedelcb76c322008-06-26 21:28:00 +02001506 unsigned int pages;
Joerg Roedel6d4f3432008-09-04 19:18:02 +02001507 unsigned long align_mask = 0;
Joerg Roedelcb76c322008-06-26 21:28:00 +02001508 int i;
1509
Joerg Roedele3c449f2008-10-15 22:02:11 -07001510 pages = iommu_num_pages(paddr, size, PAGE_SIZE);
Joerg Roedelcb76c322008-06-26 21:28:00 +02001511 paddr &= PAGE_MASK;
1512
Joerg Roedel8ecaf8f2008-12-12 16:13:04 +01001513 INC_STATS_COUNTER(total_map_requests);
1514
Joerg Roedelc1858972008-12-12 15:42:39 +01001515 if (pages > 1)
1516 INC_STATS_COUNTER(cross_page);
1517
Joerg Roedel6d4f3432008-09-04 19:18:02 +02001518 if (align)
1519 align_mask = (1UL << get_order(size)) - 1;
1520
Joerg Roedel11b83882009-05-19 10:23:15 +02001521retry:
Joerg Roedel832a90c2008-09-18 15:54:23 +02001522 address = dma_ops_alloc_addresses(dev, dma_dom, pages, align_mask,
1523 dma_mask);
Joerg Roedel11b83882009-05-19 10:23:15 +02001524 if (unlikely(address == bad_dma_address)) {
1525 /*
1526 * setting next_address here will let the address
1527 * allocator only scan the new allocated range in the
1528 * first run. This is a small optimization.
1529 */
1530 dma_dom->next_address = dma_dom->aperture_size;
1531
1532 if (alloc_new_range(iommu, dma_dom, false, GFP_ATOMIC))
1533 goto out;
1534
1535 /*
1536 * aperture was sucessfully enlarged by 128 MB, try
1537 * allocation again
1538 */
1539 goto retry;
1540 }
Joerg Roedelcb76c322008-06-26 21:28:00 +02001541
1542 start = address;
1543 for (i = 0; i < pages; ++i) {
Joerg Roedel53812c12009-05-12 12:17:38 +02001544 ret = dma_ops_domain_map(iommu, dma_dom, start, paddr, dir);
1545 if (ret == bad_dma_address)
1546 goto out_unmap;
1547
Joerg Roedelcb76c322008-06-26 21:28:00 +02001548 paddr += PAGE_SIZE;
1549 start += PAGE_SIZE;
1550 }
1551 address += offset;
1552
Joerg Roedel5774f7c2008-12-12 15:57:30 +01001553 ADD_STATS_COUNTER(alloced_io_mem, size);
1554
FUJITA Tomonoriafa9fdc2008-09-20 01:23:30 +09001555 if (unlikely(dma_dom->need_flush && !amd_iommu_unmap_flush)) {
Joerg Roedel1c655772008-09-04 18:40:05 +02001556 iommu_flush_tlb(iommu, dma_dom->domain.id);
1557 dma_dom->need_flush = false;
1558 } else if (unlikely(iommu_has_npcache(iommu)))
Joerg Roedel270cab242008-09-04 15:49:46 +02001559 iommu_flush_pages(iommu, dma_dom->domain.id, address, size);
1560
Joerg Roedelcb76c322008-06-26 21:28:00 +02001561out:
1562 return address;
Joerg Roedel53812c12009-05-12 12:17:38 +02001563
1564out_unmap:
1565
1566 for (--i; i >= 0; --i) {
1567 start -= PAGE_SIZE;
1568 dma_ops_domain_unmap(iommu, dma_dom, start);
1569 }
1570
1571 dma_ops_free_addresses(dma_dom, address, pages);
1572
1573 return bad_dma_address;
Joerg Roedelcb76c322008-06-26 21:28:00 +02001574}
1575
Joerg Roedel431b2a22008-07-11 17:14:22 +02001576/*
1577 * Does the reverse of the __map_single function. Must be called with
1578 * the domain lock held too
1579 */
Joerg Roedelcb76c322008-06-26 21:28:00 +02001580static void __unmap_single(struct amd_iommu *iommu,
1581 struct dma_ops_domain *dma_dom,
1582 dma_addr_t dma_addr,
1583 size_t size,
1584 int dir)
1585{
1586 dma_addr_t i, start;
1587 unsigned int pages;
1588
Joerg Roedelb8d99052008-12-08 14:40:26 +01001589 if ((dma_addr == bad_dma_address) ||
1590 (dma_addr + size > dma_dom->aperture_size))
Joerg Roedelcb76c322008-06-26 21:28:00 +02001591 return;
1592
Joerg Roedele3c449f2008-10-15 22:02:11 -07001593 pages = iommu_num_pages(dma_addr, size, PAGE_SIZE);
Joerg Roedelcb76c322008-06-26 21:28:00 +02001594 dma_addr &= PAGE_MASK;
1595 start = dma_addr;
1596
1597 for (i = 0; i < pages; ++i) {
1598 dma_ops_domain_unmap(iommu, dma_dom, start);
1599 start += PAGE_SIZE;
1600 }
1601
Joerg Roedel5774f7c2008-12-12 15:57:30 +01001602 SUB_STATS_COUNTER(alloced_io_mem, size);
1603
Joerg Roedelcb76c322008-06-26 21:28:00 +02001604 dma_ops_free_addresses(dma_dom, dma_addr, pages);
Joerg Roedel270cab242008-09-04 15:49:46 +02001605
Joerg Roedel80be3082008-11-06 14:59:05 +01001606 if (amd_iommu_unmap_flush || dma_dom->need_flush) {
Joerg Roedel1c655772008-09-04 18:40:05 +02001607 iommu_flush_pages(iommu, dma_dom->domain.id, dma_addr, size);
Joerg Roedel80be3082008-11-06 14:59:05 +01001608 dma_dom->need_flush = false;
1609 }
Joerg Roedelcb76c322008-06-26 21:28:00 +02001610}
1611
Joerg Roedel431b2a22008-07-11 17:14:22 +02001612/*
1613 * The exported map_single function for dma_ops.
1614 */
FUJITA Tomonori51491362009-01-05 23:47:25 +09001615static dma_addr_t map_page(struct device *dev, struct page *page,
1616 unsigned long offset, size_t size,
1617 enum dma_data_direction dir,
1618 struct dma_attrs *attrs)
Joerg Roedel4da70b92008-06-26 21:28:01 +02001619{
1620 unsigned long flags;
1621 struct amd_iommu *iommu;
1622 struct protection_domain *domain;
1623 u16 devid;
1624 dma_addr_t addr;
Joerg Roedel832a90c2008-09-18 15:54:23 +02001625 u64 dma_mask;
FUJITA Tomonori51491362009-01-05 23:47:25 +09001626 phys_addr_t paddr = page_to_phys(page) + offset;
Joerg Roedel4da70b92008-06-26 21:28:01 +02001627
Joerg Roedel0f2a86f2008-12-12 15:05:16 +01001628 INC_STATS_COUNTER(cnt_map_single);
1629
Joerg Roedeldbcc1122008-09-04 15:04:26 +02001630 if (!check_device(dev))
1631 return bad_dma_address;
1632
Joerg Roedel832a90c2008-09-18 15:54:23 +02001633 dma_mask = *dev->dma_mask;
Joerg Roedel4da70b92008-06-26 21:28:01 +02001634
1635 get_device_resources(dev, &iommu, &domain, &devid);
1636
1637 if (iommu == NULL || domain == NULL)
Joerg Roedel431b2a22008-07-11 17:14:22 +02001638 /* device not handled by any AMD IOMMU */
Joerg Roedel4da70b92008-06-26 21:28:01 +02001639 return (dma_addr_t)paddr;
1640
Joerg Roedel5b28df62008-12-02 17:49:42 +01001641 if (!dma_ops_domain(domain))
1642 return bad_dma_address;
1643
Joerg Roedel4da70b92008-06-26 21:28:01 +02001644 spin_lock_irqsave(&domain->lock, flags);
Joerg Roedel832a90c2008-09-18 15:54:23 +02001645 addr = __map_single(dev, iommu, domain->priv, paddr, size, dir, false,
1646 dma_mask);
Joerg Roedel4da70b92008-06-26 21:28:01 +02001647 if (addr == bad_dma_address)
1648 goto out;
1649
Joerg Roedel09ee17e2008-12-03 12:19:27 +01001650 iommu_completion_wait(iommu);
Joerg Roedel4da70b92008-06-26 21:28:01 +02001651
1652out:
1653 spin_unlock_irqrestore(&domain->lock, flags);
1654
1655 return addr;
1656}
1657
Joerg Roedel431b2a22008-07-11 17:14:22 +02001658/*
1659 * The exported unmap_single function for dma_ops.
1660 */
FUJITA Tomonori51491362009-01-05 23:47:25 +09001661static void unmap_page(struct device *dev, dma_addr_t dma_addr, size_t size,
1662 enum dma_data_direction dir, struct dma_attrs *attrs)
Joerg Roedel4da70b92008-06-26 21:28:01 +02001663{
1664 unsigned long flags;
1665 struct amd_iommu *iommu;
1666 struct protection_domain *domain;
1667 u16 devid;
1668
Joerg Roedel146a6912008-12-12 15:07:12 +01001669 INC_STATS_COUNTER(cnt_unmap_single);
1670
Joerg Roedeldbcc1122008-09-04 15:04:26 +02001671 if (!check_device(dev) ||
1672 !get_device_resources(dev, &iommu, &domain, &devid))
Joerg Roedel431b2a22008-07-11 17:14:22 +02001673 /* device not handled by any AMD IOMMU */
Joerg Roedel4da70b92008-06-26 21:28:01 +02001674 return;
1675
Joerg Roedel5b28df62008-12-02 17:49:42 +01001676 if (!dma_ops_domain(domain))
1677 return;
1678
Joerg Roedel4da70b92008-06-26 21:28:01 +02001679 spin_lock_irqsave(&domain->lock, flags);
1680
1681 __unmap_single(iommu, domain->priv, dma_addr, size, dir);
1682
Joerg Roedel09ee17e2008-12-03 12:19:27 +01001683 iommu_completion_wait(iommu);
Joerg Roedel4da70b92008-06-26 21:28:01 +02001684
1685 spin_unlock_irqrestore(&domain->lock, flags);
1686}
1687
Joerg Roedel431b2a22008-07-11 17:14:22 +02001688/*
1689 * This is a special map_sg function which is used if we should map a
1690 * device which is not handled by an AMD IOMMU in the system.
1691 */
Joerg Roedel65b050a2008-06-26 21:28:02 +02001692static int map_sg_no_iommu(struct device *dev, struct scatterlist *sglist,
1693 int nelems, int dir)
1694{
1695 struct scatterlist *s;
1696 int i;
1697
1698 for_each_sg(sglist, s, nelems, i) {
1699 s->dma_address = (dma_addr_t)sg_phys(s);
1700 s->dma_length = s->length;
1701 }
1702
1703 return nelems;
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 int map_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 u16 devid;
1718 int i;
1719 struct scatterlist *s;
1720 phys_addr_t paddr;
1721 int mapped_elems = 0;
Joerg Roedel832a90c2008-09-18 15:54:23 +02001722 u64 dma_mask;
Joerg Roedel65b050a2008-06-26 21:28:02 +02001723
Joerg Roedeld03f067a2008-12-12 15:09:48 +01001724 INC_STATS_COUNTER(cnt_map_sg);
1725
Joerg Roedeldbcc1122008-09-04 15:04:26 +02001726 if (!check_device(dev))
1727 return 0;
1728
Joerg Roedel832a90c2008-09-18 15:54:23 +02001729 dma_mask = *dev->dma_mask;
Joerg Roedel65b050a2008-06-26 21:28:02 +02001730
1731 get_device_resources(dev, &iommu, &domain, &devid);
1732
1733 if (!iommu || !domain)
1734 return map_sg_no_iommu(dev, sglist, nelems, dir);
1735
Joerg Roedel5b28df62008-12-02 17:49:42 +01001736 if (!dma_ops_domain(domain))
1737 return 0;
1738
Joerg Roedel65b050a2008-06-26 21:28:02 +02001739 spin_lock_irqsave(&domain->lock, flags);
1740
1741 for_each_sg(sglist, s, nelems, i) {
1742 paddr = sg_phys(s);
1743
1744 s->dma_address = __map_single(dev, iommu, domain->priv,
Joerg Roedel832a90c2008-09-18 15:54:23 +02001745 paddr, s->length, dir, false,
1746 dma_mask);
Joerg Roedel65b050a2008-06-26 21:28:02 +02001747
1748 if (s->dma_address) {
1749 s->dma_length = s->length;
1750 mapped_elems++;
1751 } else
1752 goto unmap;
Joerg Roedel65b050a2008-06-26 21:28:02 +02001753 }
1754
Joerg Roedel09ee17e2008-12-03 12:19:27 +01001755 iommu_completion_wait(iommu);
Joerg Roedel65b050a2008-06-26 21:28:02 +02001756
1757out:
1758 spin_unlock_irqrestore(&domain->lock, flags);
1759
1760 return mapped_elems;
1761unmap:
1762 for_each_sg(sglist, s, mapped_elems, i) {
1763 if (s->dma_address)
1764 __unmap_single(iommu, domain->priv, s->dma_address,
1765 s->dma_length, dir);
1766 s->dma_address = s->dma_length = 0;
1767 }
1768
1769 mapped_elems = 0;
1770
1771 goto out;
1772}
1773
Joerg Roedel431b2a22008-07-11 17:14:22 +02001774/*
1775 * The exported map_sg function for dma_ops (handles scatter-gather
1776 * lists).
1777 */
Joerg Roedel65b050a2008-06-26 21:28:02 +02001778static void unmap_sg(struct device *dev, struct scatterlist *sglist,
FUJITA Tomonori160c1d82009-01-05 23:59:02 +09001779 int nelems, enum dma_data_direction dir,
1780 struct dma_attrs *attrs)
Joerg Roedel65b050a2008-06-26 21:28:02 +02001781{
1782 unsigned long flags;
1783 struct amd_iommu *iommu;
1784 struct protection_domain *domain;
1785 struct scatterlist *s;
1786 u16 devid;
1787 int i;
1788
Joerg Roedel55877a62008-12-12 15:12:14 +01001789 INC_STATS_COUNTER(cnt_unmap_sg);
1790
Joerg Roedeldbcc1122008-09-04 15:04:26 +02001791 if (!check_device(dev) ||
1792 !get_device_resources(dev, &iommu, &domain, &devid))
Joerg Roedel65b050a2008-06-26 21:28:02 +02001793 return;
1794
Joerg Roedel5b28df62008-12-02 17:49:42 +01001795 if (!dma_ops_domain(domain))
1796 return;
1797
Joerg Roedel65b050a2008-06-26 21:28:02 +02001798 spin_lock_irqsave(&domain->lock, flags);
1799
1800 for_each_sg(sglist, s, nelems, i) {
1801 __unmap_single(iommu, domain->priv, s->dma_address,
1802 s->dma_length, dir);
Joerg Roedel65b050a2008-06-26 21:28:02 +02001803 s->dma_address = s->dma_length = 0;
1804 }
1805
Joerg Roedel09ee17e2008-12-03 12:19:27 +01001806 iommu_completion_wait(iommu);
Joerg Roedel65b050a2008-06-26 21:28:02 +02001807
1808 spin_unlock_irqrestore(&domain->lock, flags);
1809}
1810
Joerg Roedel431b2a22008-07-11 17:14:22 +02001811/*
1812 * The exported alloc_coherent function for dma_ops.
1813 */
Joerg Roedel5d8b53c2008-06-26 21:28:03 +02001814static void *alloc_coherent(struct device *dev, size_t size,
1815 dma_addr_t *dma_addr, gfp_t flag)
1816{
1817 unsigned long flags;
1818 void *virt_addr;
1819 struct amd_iommu *iommu;
1820 struct protection_domain *domain;
1821 u16 devid;
1822 phys_addr_t paddr;
Joerg Roedel832a90c2008-09-18 15:54:23 +02001823 u64 dma_mask = dev->coherent_dma_mask;
Joerg Roedel5d8b53c2008-06-26 21:28:03 +02001824
Joerg Roedelc8f0fb32008-12-12 15:14:21 +01001825 INC_STATS_COUNTER(cnt_alloc_coherent);
1826
Joerg Roedeldbcc1122008-09-04 15:04:26 +02001827 if (!check_device(dev))
1828 return NULL;
1829
FUJITA Tomonori13d9fea2008-09-10 20:19:40 +09001830 if (!get_device_resources(dev, &iommu, &domain, &devid))
1831 flag &= ~(__GFP_DMA | __GFP_HIGHMEM | __GFP_DMA32);
1832
Joerg Roedelc97ac532008-09-11 10:59:15 +02001833 flag |= __GFP_ZERO;
Joerg Roedel5d8b53c2008-06-26 21:28:03 +02001834 virt_addr = (void *)__get_free_pages(flag, get_order(size));
1835 if (!virt_addr)
Jaswinder Singh Rajputb25ae672009-07-01 19:53:14 +05301836 return NULL;
Joerg Roedel5d8b53c2008-06-26 21:28:03 +02001837
Joerg Roedel5d8b53c2008-06-26 21:28:03 +02001838 paddr = virt_to_phys(virt_addr);
1839
Joerg Roedel5d8b53c2008-06-26 21:28:03 +02001840 if (!iommu || !domain) {
1841 *dma_addr = (dma_addr_t)paddr;
1842 return virt_addr;
1843 }
1844
Joerg Roedel5b28df62008-12-02 17:49:42 +01001845 if (!dma_ops_domain(domain))
1846 goto out_free;
1847
Joerg Roedel832a90c2008-09-18 15:54:23 +02001848 if (!dma_mask)
1849 dma_mask = *dev->dma_mask;
1850
Joerg Roedel5d8b53c2008-06-26 21:28:03 +02001851 spin_lock_irqsave(&domain->lock, flags);
1852
1853 *dma_addr = __map_single(dev, iommu, domain->priv, paddr,
Joerg Roedel832a90c2008-09-18 15:54:23 +02001854 size, DMA_BIDIRECTIONAL, true, dma_mask);
Joerg Roedel5d8b53c2008-06-26 21:28:03 +02001855
Jiri Slaby367d04c2009-05-28 09:54:48 +02001856 if (*dma_addr == bad_dma_address) {
1857 spin_unlock_irqrestore(&domain->lock, flags);
Joerg Roedel5b28df62008-12-02 17:49:42 +01001858 goto out_free;
Jiri Slaby367d04c2009-05-28 09:54:48 +02001859 }
Joerg Roedel5d8b53c2008-06-26 21:28:03 +02001860
Joerg Roedel09ee17e2008-12-03 12:19:27 +01001861 iommu_completion_wait(iommu);
Joerg Roedel5d8b53c2008-06-26 21:28:03 +02001862
Joerg Roedel5d8b53c2008-06-26 21:28:03 +02001863 spin_unlock_irqrestore(&domain->lock, flags);
1864
1865 return virt_addr;
Joerg Roedel5b28df62008-12-02 17:49:42 +01001866
1867out_free:
1868
1869 free_pages((unsigned long)virt_addr, get_order(size));
1870
1871 return NULL;
Joerg Roedel5d8b53c2008-06-26 21:28:03 +02001872}
1873
Joerg Roedel431b2a22008-07-11 17:14:22 +02001874/*
1875 * The exported free_coherent function for dma_ops.
Joerg Roedel431b2a22008-07-11 17:14:22 +02001876 */
Joerg Roedel5d8b53c2008-06-26 21:28:03 +02001877static void free_coherent(struct device *dev, size_t size,
1878 void *virt_addr, dma_addr_t dma_addr)
1879{
1880 unsigned long flags;
1881 struct amd_iommu *iommu;
1882 struct protection_domain *domain;
1883 u16 devid;
1884
Joerg Roedel5d31ee72008-12-12 15:16:38 +01001885 INC_STATS_COUNTER(cnt_free_coherent);
1886
Joerg Roedeldbcc1122008-09-04 15:04:26 +02001887 if (!check_device(dev))
1888 return;
1889
Joerg Roedel5d8b53c2008-06-26 21:28:03 +02001890 get_device_resources(dev, &iommu, &domain, &devid);
1891
1892 if (!iommu || !domain)
1893 goto free_mem;
1894
Joerg Roedel5b28df62008-12-02 17:49:42 +01001895 if (!dma_ops_domain(domain))
1896 goto free_mem;
1897
Joerg Roedel5d8b53c2008-06-26 21:28:03 +02001898 spin_lock_irqsave(&domain->lock, flags);
1899
1900 __unmap_single(iommu, domain->priv, dma_addr, size, DMA_BIDIRECTIONAL);
Joerg Roedel5d8b53c2008-06-26 21:28:03 +02001901
Joerg Roedel09ee17e2008-12-03 12:19:27 +01001902 iommu_completion_wait(iommu);
Joerg Roedel5d8b53c2008-06-26 21:28:03 +02001903
1904 spin_unlock_irqrestore(&domain->lock, flags);
1905
1906free_mem:
1907 free_pages((unsigned long)virt_addr, get_order(size));
1908}
1909
Joerg Roedelc432f3d2008-06-26 21:28:04 +02001910/*
Joerg Roedelb39ba6a2008-09-09 18:40:46 +02001911 * This function is called by the DMA layer to find out if we can handle a
1912 * particular device. It is part of the dma_ops.
1913 */
1914static int amd_iommu_dma_supported(struct device *dev, u64 mask)
1915{
1916 u16 bdf;
1917 struct pci_dev *pcidev;
1918
1919 /* No device or no PCI device */
1920 if (!dev || dev->bus != &pci_bus_type)
1921 return 0;
1922
1923 pcidev = to_pci_dev(dev);
1924
1925 bdf = calc_devid(pcidev->bus->number, pcidev->devfn);
1926
1927 /* Out of our scope? */
1928 if (bdf > amd_iommu_last_bdf)
1929 return 0;
1930
1931 return 1;
1932}
1933
1934/*
Joerg Roedel431b2a22008-07-11 17:14:22 +02001935 * The function for pre-allocating protection domains.
1936 *
Joerg Roedelc432f3d2008-06-26 21:28:04 +02001937 * If the driver core informs the DMA layer if a driver grabs a device
1938 * we don't need to preallocate the protection domains anymore.
1939 * For now we have to.
1940 */
Jaswinder Singh Rajput0e93dd82008-12-29 21:45:22 +05301941static void prealloc_protection_domains(void)
Joerg Roedelc432f3d2008-06-26 21:28:04 +02001942{
1943 struct pci_dev *dev = NULL;
1944 struct dma_ops_domain *dma_dom;
1945 struct amd_iommu *iommu;
Joerg Roedelc432f3d2008-06-26 21:28:04 +02001946 u16 devid;
1947
1948 while ((dev = pci_get_device(PCI_ANY_ID, PCI_ANY_ID, dev)) != NULL) {
Joerg Roedeledcb34d2008-12-10 20:01:45 +01001949 devid = calc_devid(dev->bus->number, dev->devfn);
Joerg Roedel3a61ec32008-07-25 13:07:50 +02001950 if (devid > amd_iommu_last_bdf)
Joerg Roedelc432f3d2008-06-26 21:28:04 +02001951 continue;
1952 devid = amd_iommu_alias_table[devid];
1953 if (domain_for_device(devid))
1954 continue;
1955 iommu = amd_iommu_rlookup_table[devid];
1956 if (!iommu)
1957 continue;
Joerg Roedeld9cfed92009-05-19 12:16:29 +02001958 dma_dom = dma_ops_domain_alloc(iommu);
Joerg Roedelc432f3d2008-06-26 21:28:04 +02001959 if (!dma_dom)
1960 continue;
1961 init_unity_mappings_for_device(dma_dom, devid);
Joerg Roedelbd60b732008-09-11 10:24:48 +02001962 dma_dom->target_dev = devid;
1963
1964 list_add_tail(&dma_dom->list, &iommu_pd_list);
Joerg Roedelc432f3d2008-06-26 21:28:04 +02001965 }
1966}
1967
FUJITA Tomonori160c1d82009-01-05 23:59:02 +09001968static struct dma_map_ops amd_iommu_dma_ops = {
Joerg Roedel6631ee92008-06-26 21:28:05 +02001969 .alloc_coherent = alloc_coherent,
1970 .free_coherent = free_coherent,
FUJITA Tomonori51491362009-01-05 23:47:25 +09001971 .map_page = map_page,
1972 .unmap_page = unmap_page,
Joerg Roedel6631ee92008-06-26 21:28:05 +02001973 .map_sg = map_sg,
1974 .unmap_sg = unmap_sg,
Joerg Roedelb39ba6a2008-09-09 18:40:46 +02001975 .dma_supported = amd_iommu_dma_supported,
Joerg Roedel6631ee92008-06-26 21:28:05 +02001976};
1977
Joerg Roedel431b2a22008-07-11 17:14:22 +02001978/*
1979 * The function which clues the AMD IOMMU driver into dma_ops.
1980 */
Joerg Roedel6631ee92008-06-26 21:28:05 +02001981int __init amd_iommu_init_dma_ops(void)
1982{
1983 struct amd_iommu *iommu;
Joerg Roedel6631ee92008-06-26 21:28:05 +02001984 int ret;
1985
Joerg Roedel431b2a22008-07-11 17:14:22 +02001986 /*
1987 * first allocate a default protection domain for every IOMMU we
1988 * found in the system. Devices not assigned to any other
1989 * protection domain will be assigned to the default one.
1990 */
Joerg Roedel3bd22172009-05-04 15:06:20 +02001991 for_each_iommu(iommu) {
Joerg Roedeld9cfed92009-05-19 12:16:29 +02001992 iommu->default_dom = dma_ops_domain_alloc(iommu);
Joerg Roedel6631ee92008-06-26 21:28:05 +02001993 if (iommu->default_dom == NULL)
1994 return -ENOMEM;
Joerg Roedele2dc14a2008-12-10 18:48:59 +01001995 iommu->default_dom->domain.flags |= PD_DEFAULT_MASK;
Joerg Roedel6631ee92008-06-26 21:28:05 +02001996 ret = iommu_init_unity_mappings(iommu);
1997 if (ret)
1998 goto free_domains;
1999 }
2000
Joerg Roedel431b2a22008-07-11 17:14:22 +02002001 /*
2002 * If device isolation is enabled, pre-allocate the protection
2003 * domains for each device.
2004 */
Joerg Roedel6631ee92008-06-26 21:28:05 +02002005 if (amd_iommu_isolate)
2006 prealloc_protection_domains();
2007
2008 iommu_detected = 1;
2009 force_iommu = 1;
2010 bad_dma_address = 0;
Ingo Molnar92af4e22008-06-27 10:48:16 +02002011#ifdef CONFIG_GART_IOMMU
Joerg Roedel6631ee92008-06-26 21:28:05 +02002012 gart_iommu_aperture_disabled = 1;
2013 gart_iommu_aperture = 0;
Ingo Molnar92af4e22008-06-27 10:48:16 +02002014#endif
Joerg Roedel6631ee92008-06-26 21:28:05 +02002015
Joerg Roedel431b2a22008-07-11 17:14:22 +02002016 /* Make the driver finally visible to the drivers */
Joerg Roedel6631ee92008-06-26 21:28:05 +02002017 dma_ops = &amd_iommu_dma_ops;
2018
Joerg Roedel26961ef2008-12-03 17:00:17 +01002019 register_iommu(&amd_iommu_ops);
Joerg Roedel26961ef2008-12-03 17:00:17 +01002020
Joerg Roedele275a2a2008-12-10 18:27:25 +01002021 bus_register_notifier(&pci_bus_type, &device_nb);
2022
Joerg Roedel7f265082008-12-12 13:50:21 +01002023 amd_iommu_stats_init();
2024
Joerg Roedel6631ee92008-06-26 21:28:05 +02002025 return 0;
2026
2027free_domains:
2028
Joerg Roedel3bd22172009-05-04 15:06:20 +02002029 for_each_iommu(iommu) {
Joerg Roedel6631ee92008-06-26 21:28:05 +02002030 if (iommu->default_dom)
2031 dma_ops_domain_free(iommu->default_dom);
2032 }
2033
2034 return ret;
2035}
Joerg Roedel6d98cd82008-12-08 12:05:55 +01002036
2037/*****************************************************************************
2038 *
2039 * The following functions belong to the exported interface of AMD IOMMU
2040 *
2041 * This interface allows access to lower level functions of the IOMMU
2042 * like protection domain handling and assignement of devices to domains
2043 * which is not possible with the dma_ops interface.
2044 *
2045 *****************************************************************************/
2046
Joerg Roedel6d98cd82008-12-08 12:05:55 +01002047static void cleanup_domain(struct protection_domain *domain)
2048{
2049 unsigned long flags;
2050 u16 devid;
2051
2052 write_lock_irqsave(&amd_iommu_devtable_lock, flags);
2053
2054 for (devid = 0; devid <= amd_iommu_last_bdf; ++devid)
2055 if (amd_iommu_pd_table[devid] == domain)
2056 __detach_device(domain, devid);
2057
2058 write_unlock_irqrestore(&amd_iommu_devtable_lock, flags);
2059}
2060
Joerg Roedelc156e342008-12-02 18:13:27 +01002061static int amd_iommu_domain_init(struct iommu_domain *dom)
2062{
2063 struct protection_domain *domain;
2064
2065 domain = kzalloc(sizeof(*domain), GFP_KERNEL);
2066 if (!domain)
2067 return -ENOMEM;
2068
2069 spin_lock_init(&domain->lock);
2070 domain->mode = PAGE_MODE_3_LEVEL;
2071 domain->id = domain_id_alloc();
2072 if (!domain->id)
2073 goto out_free;
2074 domain->pt_root = (void *)get_zeroed_page(GFP_KERNEL);
2075 if (!domain->pt_root)
2076 goto out_free;
2077
2078 dom->priv = domain;
2079
2080 return 0;
2081
2082out_free:
2083 kfree(domain);
2084
2085 return -ENOMEM;
2086}
2087
Joerg Roedel98383fc2008-12-02 18:34:12 +01002088static void amd_iommu_domain_destroy(struct iommu_domain *dom)
2089{
2090 struct protection_domain *domain = dom->priv;
2091
2092 if (!domain)
2093 return;
2094
2095 if (domain->dev_cnt > 0)
2096 cleanup_domain(domain);
2097
2098 BUG_ON(domain->dev_cnt != 0);
2099
2100 free_pagetable(domain);
2101
2102 domain_id_free(domain->id);
2103
2104 kfree(domain);
2105
2106 dom->priv = NULL;
2107}
2108
Joerg Roedel684f2882008-12-08 12:07:44 +01002109static void amd_iommu_detach_device(struct iommu_domain *dom,
2110 struct device *dev)
2111{
2112 struct protection_domain *domain = dom->priv;
2113 struct amd_iommu *iommu;
2114 struct pci_dev *pdev;
2115 u16 devid;
2116
2117 if (dev->bus != &pci_bus_type)
2118 return;
2119
2120 pdev = to_pci_dev(dev);
2121
2122 devid = calc_devid(pdev->bus->number, pdev->devfn);
2123
2124 if (devid > 0)
2125 detach_device(domain, devid);
2126
2127 iommu = amd_iommu_rlookup_table[devid];
2128 if (!iommu)
2129 return;
2130
2131 iommu_queue_inv_dev_entry(iommu, devid);
2132 iommu_completion_wait(iommu);
2133}
2134
Joerg Roedel01106062008-12-02 19:34:11 +01002135static int amd_iommu_attach_device(struct iommu_domain *dom,
2136 struct device *dev)
2137{
2138 struct protection_domain *domain = dom->priv;
2139 struct protection_domain *old_domain;
2140 struct amd_iommu *iommu;
2141 struct pci_dev *pdev;
2142 u16 devid;
2143
2144 if (dev->bus != &pci_bus_type)
2145 return -EINVAL;
2146
2147 pdev = to_pci_dev(dev);
2148
2149 devid = calc_devid(pdev->bus->number, pdev->devfn);
2150
2151 if (devid >= amd_iommu_last_bdf ||
2152 devid != amd_iommu_alias_table[devid])
2153 return -EINVAL;
2154
2155 iommu = amd_iommu_rlookup_table[devid];
2156 if (!iommu)
2157 return -EINVAL;
2158
2159 old_domain = domain_for_device(devid);
2160 if (old_domain)
Joerg Roedel71ff3bc2009-06-08 13:47:33 -07002161 detach_device(old_domain, devid);
Joerg Roedel01106062008-12-02 19:34:11 +01002162
2163 attach_device(iommu, domain, devid);
2164
2165 iommu_completion_wait(iommu);
2166
2167 return 0;
2168}
2169
Joerg Roedelc6229ca2008-12-02 19:48:43 +01002170static int amd_iommu_map_range(struct iommu_domain *dom,
2171 unsigned long iova, phys_addr_t paddr,
2172 size_t size, int iommu_prot)
2173{
2174 struct protection_domain *domain = dom->priv;
2175 unsigned long i, npages = iommu_num_pages(paddr, size, PAGE_SIZE);
2176 int prot = 0;
2177 int ret;
2178
2179 if (iommu_prot & IOMMU_READ)
2180 prot |= IOMMU_PROT_IR;
2181 if (iommu_prot & IOMMU_WRITE)
2182 prot |= IOMMU_PROT_IW;
2183
2184 iova &= PAGE_MASK;
2185 paddr &= PAGE_MASK;
2186
2187 for (i = 0; i < npages; ++i) {
Joerg Roedelabdc5eb2009-09-03 11:33:51 +02002188 ret = iommu_map_page(domain, iova, paddr, prot, PM_MAP_4k);
Joerg Roedelc6229ca2008-12-02 19:48:43 +01002189 if (ret)
2190 return ret;
2191
2192 iova += PAGE_SIZE;
2193 paddr += PAGE_SIZE;
2194 }
2195
2196 return 0;
2197}
2198
Joerg Roedeleb74ff62008-12-02 19:59:10 +01002199static void amd_iommu_unmap_range(struct iommu_domain *dom,
2200 unsigned long iova, size_t size)
2201{
2202
2203 struct protection_domain *domain = dom->priv;
2204 unsigned long i, npages = iommu_num_pages(iova, size, PAGE_SIZE);
2205
2206 iova &= PAGE_MASK;
2207
2208 for (i = 0; i < npages; ++i) {
Joerg Roedela6b256b2009-09-03 12:21:31 +02002209 iommu_unmap_page(domain, iova, PM_MAP_4k);
Joerg Roedeleb74ff62008-12-02 19:59:10 +01002210 iova += PAGE_SIZE;
2211 }
2212
2213 iommu_flush_domain(domain->id);
2214}
2215
Joerg Roedel645c4c82008-12-02 20:05:50 +01002216static phys_addr_t amd_iommu_iova_to_phys(struct iommu_domain *dom,
2217 unsigned long iova)
2218{
2219 struct protection_domain *domain = dom->priv;
2220 unsigned long offset = iova & ~PAGE_MASK;
2221 phys_addr_t paddr;
2222 u64 *pte;
2223
Joerg Roedela6b256b2009-09-03 12:21:31 +02002224 pte = fetch_pte(domain, iova, PM_MAP_4k);
Joerg Roedel645c4c82008-12-02 20:05:50 +01002225
Joerg Roedela6d41a42009-09-02 17:08:55 +02002226 if (!pte || !IOMMU_PTE_PRESENT(*pte))
Joerg Roedel645c4c82008-12-02 20:05:50 +01002227 return 0;
2228
2229 paddr = *pte & IOMMU_PAGE_MASK;
2230 paddr |= offset;
2231
2232 return paddr;
2233}
2234
Sheng Yangdbb9fd82009-03-18 15:33:06 +08002235static int amd_iommu_domain_has_cap(struct iommu_domain *domain,
2236 unsigned long cap)
2237{
2238 return 0;
2239}
2240
Joerg Roedel26961ef2008-12-03 17:00:17 +01002241static struct iommu_ops amd_iommu_ops = {
2242 .domain_init = amd_iommu_domain_init,
2243 .domain_destroy = amd_iommu_domain_destroy,
2244 .attach_dev = amd_iommu_attach_device,
2245 .detach_dev = amd_iommu_detach_device,
2246 .map = amd_iommu_map_range,
2247 .unmap = amd_iommu_unmap_range,
2248 .iova_to_phys = amd_iommu_iova_to_phys,
Sheng Yangdbb9fd82009-03-18 15:33:06 +08002249 .domain_has_cap = amd_iommu_domain_has_cap,
Joerg Roedel26961ef2008-12-03 17:00:17 +01002250};
2251