blob: ed58a16883911459b27efe214385ecdff701f598 [file] [log] [blame]
Joerg Roedelb6c02712008-06-26 21:27:53 +02001/*
Joerg Roedelbf3118c2009-11-20 13:39:19 +01002 * Copyright (C) 2007-2009 Advanced Micro Devices, Inc.
Joerg Roedelb6c02712008-06-26 21:27:53 +02003 * 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 Roedel6a9401a2009-11-20 13:22:21 +010031#include <asm/amd_iommu_proto.h>
Joerg Roedelb6c02712008-06-26 21:27:53 +020032#include <asm/amd_iommu_types.h>
Joerg Roedelc6da9922008-06-26 21:28:06 +020033#include <asm/amd_iommu.h>
Joerg Roedelb6c02712008-06-26 21:27:53 +020034
35#define CMD_SET_TYPE(cmd, t) ((cmd)->data[1] |= ((t) << 28))
36
Joerg Roedel136f78a2008-07-11 17:14:27 +020037#define EXIT_LOOP_COUNT 10000000
38
Joerg Roedelb6c02712008-06-26 21:27:53 +020039static DEFINE_RWLOCK(amd_iommu_devtable_lock);
40
Joerg Roedelbd60b732008-09-11 10:24:48 +020041/* A list of preallocated protection domains */
42static LIST_HEAD(iommu_pd_list);
43static DEFINE_SPINLOCK(iommu_pd_list_lock);
44
Joerg Roedel0feae532009-08-26 15:26:30 +020045/*
46 * Domain for untranslated devices - only allocated
47 * if iommu=pt passed on kernel cmd line.
48 */
49static struct protection_domain *pt_domain;
50
Joerg Roedel26961ef2008-12-03 17:00:17 +010051static struct iommu_ops amd_iommu_ops;
Joerg Roedel26961ef2008-12-03 17:00:17 +010052
Joerg Roedel431b2a22008-07-11 17:14:22 +020053/*
54 * general struct to manage commands send to an IOMMU
55 */
Joerg Roedeld6449532008-07-11 17:14:28 +020056struct iommu_cmd {
Joerg Roedelb6c02712008-06-26 21:27:53 +020057 u32 data[4];
58};
59
Joerg Roedela345b232009-09-03 15:01:43 +020060static void reset_iommu_command_buffer(struct amd_iommu *iommu);
Joerg Roedel04bfdd82009-09-02 16:00:23 +020061static void update_domain(struct protection_domain *domain);
Chris Wrightc1eee672009-05-21 00:56:58 -070062
Joerg Roedel15898bb2009-11-24 15:39:42 +010063/****************************************************************************
64 *
65 * Helper functions
66 *
67 ****************************************************************************/
68
69static inline u16 get_device_id(struct device *dev)
70{
71 struct pci_dev *pdev = to_pci_dev(dev);
72
73 return calc_devid(pdev->bus->number, pdev->devfn);
74}
75
Joerg Roedel71c70982009-11-24 16:43:06 +010076/*
77 * In this function the list of preallocated protection domains is traversed to
78 * find the domain for a specific device
79 */
80static struct dma_ops_domain *find_protection_domain(u16 devid)
81{
82 struct dma_ops_domain *entry, *ret = NULL;
83 unsigned long flags;
84 u16 alias = amd_iommu_alias_table[devid];
85
86 if (list_empty(&iommu_pd_list))
87 return NULL;
88
89 spin_lock_irqsave(&iommu_pd_list_lock, flags);
90
91 list_for_each_entry(entry, &iommu_pd_list, list) {
92 if (entry->target_dev == devid ||
93 entry->target_dev == alias) {
94 ret = entry;
95 break;
96 }
97 }
98
99 spin_unlock_irqrestore(&iommu_pd_list_lock, flags);
100
101 return ret;
102}
103
Joerg Roedel98fc5a62009-11-24 17:19:23 +0100104/*
105 * This function checks if the driver got a valid device from the caller to
106 * avoid dereferencing invalid pointers.
107 */
108static bool check_device(struct device *dev)
109{
110 u16 devid;
111
112 if (!dev || !dev->dma_mask)
113 return false;
114
115 /* No device or no PCI device */
116 if (!dev || dev->bus != &pci_bus_type)
117 return false;
118
119 devid = get_device_id(dev);
120
121 /* Out of our scope? */
122 if (devid > amd_iommu_last_bdf)
123 return false;
124
125 if (amd_iommu_rlookup_table[devid] == NULL)
126 return false;
127
128 return true;
129}
130
Joerg Roedel7f265082008-12-12 13:50:21 +0100131#ifdef CONFIG_AMD_IOMMU_STATS
132
133/*
134 * Initialization code for statistics collection
135 */
136
Joerg Roedelda49f6d2008-12-12 14:59:58 +0100137DECLARE_STATS_COUNTER(compl_wait);
Joerg Roedel0f2a86f2008-12-12 15:05:16 +0100138DECLARE_STATS_COUNTER(cnt_map_single);
Joerg Roedel146a6912008-12-12 15:07:12 +0100139DECLARE_STATS_COUNTER(cnt_unmap_single);
Joerg Roedeld03f0672008-12-12 15:09:48 +0100140DECLARE_STATS_COUNTER(cnt_map_sg);
Joerg Roedel55877a62008-12-12 15:12:14 +0100141DECLARE_STATS_COUNTER(cnt_unmap_sg);
Joerg Roedelc8f0fb32008-12-12 15:14:21 +0100142DECLARE_STATS_COUNTER(cnt_alloc_coherent);
Joerg Roedel5d31ee72008-12-12 15:16:38 +0100143DECLARE_STATS_COUNTER(cnt_free_coherent);
Joerg Roedelc1858972008-12-12 15:42:39 +0100144DECLARE_STATS_COUNTER(cross_page);
Joerg Roedelf57d98a2008-12-12 15:46:29 +0100145DECLARE_STATS_COUNTER(domain_flush_single);
Joerg Roedel18811f52008-12-12 15:48:28 +0100146DECLARE_STATS_COUNTER(domain_flush_all);
Joerg Roedel5774f7c2008-12-12 15:57:30 +0100147DECLARE_STATS_COUNTER(alloced_io_mem);
Joerg Roedel8ecaf8f2008-12-12 16:13:04 +0100148DECLARE_STATS_COUNTER(total_map_requests);
Joerg Roedelda49f6d2008-12-12 14:59:58 +0100149
Joerg Roedel7f265082008-12-12 13:50:21 +0100150static struct dentry *stats_dir;
Joerg Roedel7f265082008-12-12 13:50:21 +0100151static struct dentry *de_fflush;
152
153static void amd_iommu_stats_add(struct __iommu_counter *cnt)
154{
155 if (stats_dir == NULL)
156 return;
157
158 cnt->dent = debugfs_create_u64(cnt->name, 0444, stats_dir,
159 &cnt->value);
160}
161
162static void amd_iommu_stats_init(void)
163{
164 stats_dir = debugfs_create_dir("amd-iommu", NULL);
165 if (stats_dir == NULL)
166 return;
167
Joerg Roedel7f265082008-12-12 13:50:21 +0100168 de_fflush = debugfs_create_bool("fullflush", 0444, stats_dir,
169 (u32 *)&amd_iommu_unmap_flush);
Joerg Roedelda49f6d2008-12-12 14:59:58 +0100170
171 amd_iommu_stats_add(&compl_wait);
Joerg Roedel0f2a86f2008-12-12 15:05:16 +0100172 amd_iommu_stats_add(&cnt_map_single);
Joerg Roedel146a6912008-12-12 15:07:12 +0100173 amd_iommu_stats_add(&cnt_unmap_single);
Joerg Roedeld03f0672008-12-12 15:09:48 +0100174 amd_iommu_stats_add(&cnt_map_sg);
Joerg Roedel55877a62008-12-12 15:12:14 +0100175 amd_iommu_stats_add(&cnt_unmap_sg);
Joerg Roedelc8f0fb32008-12-12 15:14:21 +0100176 amd_iommu_stats_add(&cnt_alloc_coherent);
Joerg Roedel5d31ee72008-12-12 15:16:38 +0100177 amd_iommu_stats_add(&cnt_free_coherent);
Joerg Roedelc1858972008-12-12 15:42:39 +0100178 amd_iommu_stats_add(&cross_page);
Joerg Roedelf57d98a2008-12-12 15:46:29 +0100179 amd_iommu_stats_add(&domain_flush_single);
Joerg Roedel18811f52008-12-12 15:48:28 +0100180 amd_iommu_stats_add(&domain_flush_all);
Joerg Roedel5774f7c2008-12-12 15:57:30 +0100181 amd_iommu_stats_add(&alloced_io_mem);
Joerg Roedel8ecaf8f2008-12-12 16:13:04 +0100182 amd_iommu_stats_add(&total_map_requests);
Joerg Roedel7f265082008-12-12 13:50:21 +0100183}
184
185#endif
186
Joerg Roedel431b2a22008-07-11 17:14:22 +0200187/****************************************************************************
188 *
Joerg Roedela80dc3e2008-09-11 16:51:41 +0200189 * Interrupt handling functions
190 *
191 ****************************************************************************/
192
Joerg Roedele3e59872009-09-03 14:02:10 +0200193static void dump_dte_entry(u16 devid)
194{
195 int i;
196
197 for (i = 0; i < 8; ++i)
198 pr_err("AMD-Vi: DTE[%d]: %08x\n", i,
199 amd_iommu_dev_table[devid].data[i]);
200}
201
Joerg Roedel945b4ac2009-09-03 14:25:02 +0200202static void dump_command(unsigned long phys_addr)
203{
204 struct iommu_cmd *cmd = phys_to_virt(phys_addr);
205 int i;
206
207 for (i = 0; i < 4; ++i)
208 pr_err("AMD-Vi: CMD[%d]: %08x\n", i, cmd->data[i]);
209}
210
Joerg Roedela345b232009-09-03 15:01:43 +0200211static void iommu_print_event(struct amd_iommu *iommu, void *__evt)
Joerg Roedel90008ee2008-09-09 16:41:05 +0200212{
213 u32 *event = __evt;
214 int type = (event[1] >> EVENT_TYPE_SHIFT) & EVENT_TYPE_MASK;
215 int devid = (event[0] >> EVENT_DEVID_SHIFT) & EVENT_DEVID_MASK;
216 int domid = (event[1] >> EVENT_DOMID_SHIFT) & EVENT_DOMID_MASK;
217 int flags = (event[1] >> EVENT_FLAGS_SHIFT) & EVENT_FLAGS_MASK;
218 u64 address = (u64)(((u64)event[3]) << 32) | event[2];
219
Joerg Roedel4c6f40d2009-09-01 16:43:58 +0200220 printk(KERN_ERR "AMD-Vi: Event logged [");
Joerg Roedel90008ee2008-09-09 16:41:05 +0200221
222 switch (type) {
223 case EVENT_TYPE_ILL_DEV:
224 printk("ILLEGAL_DEV_TABLE_ENTRY device=%02x:%02x.%x "
225 "address=0x%016llx flags=0x%04x]\n",
226 PCI_BUS(devid), PCI_SLOT(devid), PCI_FUNC(devid),
227 address, flags);
Joerg Roedele3e59872009-09-03 14:02:10 +0200228 dump_dte_entry(devid);
Joerg Roedel90008ee2008-09-09 16:41:05 +0200229 break;
230 case EVENT_TYPE_IO_FAULT:
231 printk("IO_PAGE_FAULT device=%02x:%02x.%x "
232 "domain=0x%04x address=0x%016llx flags=0x%04x]\n",
233 PCI_BUS(devid), PCI_SLOT(devid), PCI_FUNC(devid),
234 domid, address, flags);
235 break;
236 case EVENT_TYPE_DEV_TAB_ERR:
237 printk("DEV_TAB_HARDWARE_ERROR device=%02x:%02x.%x "
238 "address=0x%016llx flags=0x%04x]\n",
239 PCI_BUS(devid), PCI_SLOT(devid), PCI_FUNC(devid),
240 address, flags);
241 break;
242 case EVENT_TYPE_PAGE_TAB_ERR:
243 printk("PAGE_TAB_HARDWARE_ERROR device=%02x:%02x.%x "
244 "domain=0x%04x address=0x%016llx flags=0x%04x]\n",
245 PCI_BUS(devid), PCI_SLOT(devid), PCI_FUNC(devid),
246 domid, address, flags);
247 break;
248 case EVENT_TYPE_ILL_CMD:
249 printk("ILLEGAL_COMMAND_ERROR address=0x%016llx]\n", address);
Joerg Roedela345b232009-09-03 15:01:43 +0200250 reset_iommu_command_buffer(iommu);
Joerg Roedel945b4ac2009-09-03 14:25:02 +0200251 dump_command(address);
Joerg Roedel90008ee2008-09-09 16:41:05 +0200252 break;
253 case EVENT_TYPE_CMD_HARD_ERR:
254 printk("COMMAND_HARDWARE_ERROR address=0x%016llx "
255 "flags=0x%04x]\n", address, flags);
256 break;
257 case EVENT_TYPE_IOTLB_INV_TO:
258 printk("IOTLB_INV_TIMEOUT device=%02x:%02x.%x "
259 "address=0x%016llx]\n",
260 PCI_BUS(devid), PCI_SLOT(devid), PCI_FUNC(devid),
261 address);
262 break;
263 case EVENT_TYPE_INV_DEV_REQ:
264 printk("INVALID_DEVICE_REQUEST device=%02x:%02x.%x "
265 "address=0x%016llx flags=0x%04x]\n",
266 PCI_BUS(devid), PCI_SLOT(devid), PCI_FUNC(devid),
267 address, flags);
268 break;
269 default:
270 printk(KERN_ERR "UNKNOWN type=0x%02x]\n", type);
271 }
272}
273
274static void iommu_poll_events(struct amd_iommu *iommu)
275{
276 u32 head, tail;
277 unsigned long flags;
278
279 spin_lock_irqsave(&iommu->lock, flags);
280
281 head = readl(iommu->mmio_base + MMIO_EVT_HEAD_OFFSET);
282 tail = readl(iommu->mmio_base + MMIO_EVT_TAIL_OFFSET);
283
284 while (head != tail) {
Joerg Roedela345b232009-09-03 15:01:43 +0200285 iommu_print_event(iommu, iommu->evt_buf + head);
Joerg Roedel90008ee2008-09-09 16:41:05 +0200286 head = (head + EVENT_ENTRY_SIZE) % iommu->evt_buf_size;
287 }
288
289 writel(head, iommu->mmio_base + MMIO_EVT_HEAD_OFFSET);
290
291 spin_unlock_irqrestore(&iommu->lock, flags);
292}
293
Joerg Roedela80dc3e2008-09-11 16:51:41 +0200294irqreturn_t amd_iommu_int_handler(int irq, void *data)
295{
Joerg Roedel90008ee2008-09-09 16:41:05 +0200296 struct amd_iommu *iommu;
297
Joerg Roedel3bd22172009-05-04 15:06:20 +0200298 for_each_iommu(iommu)
Joerg Roedel90008ee2008-09-09 16:41:05 +0200299 iommu_poll_events(iommu);
300
301 return IRQ_HANDLED;
Joerg Roedela80dc3e2008-09-11 16:51:41 +0200302}
303
304/****************************************************************************
305 *
Joerg Roedel431b2a22008-07-11 17:14:22 +0200306 * IOMMU command queuing functions
307 *
308 ****************************************************************************/
309
310/*
311 * Writes the command to the IOMMUs command buffer and informs the
312 * hardware about the new command. Must be called with iommu->lock held.
313 */
Joerg Roedeld6449532008-07-11 17:14:28 +0200314static int __iommu_queue_command(struct amd_iommu *iommu, struct iommu_cmd *cmd)
Joerg Roedela19ae1e2008-06-26 21:27:55 +0200315{
316 u32 tail, head;
317 u8 *target;
318
319 tail = readl(iommu->mmio_base + MMIO_CMD_TAIL_OFFSET);
Jiri Kosina8a7c5ef2008-08-19 02:13:55 +0200320 target = iommu->cmd_buf + tail;
Joerg Roedela19ae1e2008-06-26 21:27:55 +0200321 memcpy_toio(target, cmd, sizeof(*cmd));
322 tail = (tail + sizeof(*cmd)) % iommu->cmd_buf_size;
323 head = readl(iommu->mmio_base + MMIO_CMD_HEAD_OFFSET);
324 if (tail == head)
325 return -ENOMEM;
326 writel(tail, iommu->mmio_base + MMIO_CMD_TAIL_OFFSET);
327
328 return 0;
329}
330
Joerg Roedel431b2a22008-07-11 17:14:22 +0200331/*
332 * General queuing function for commands. Takes iommu->lock and calls
333 * __iommu_queue_command().
334 */
Joerg Roedeld6449532008-07-11 17:14:28 +0200335static int iommu_queue_command(struct amd_iommu *iommu, struct iommu_cmd *cmd)
Joerg Roedela19ae1e2008-06-26 21:27:55 +0200336{
337 unsigned long flags;
338 int ret;
339
340 spin_lock_irqsave(&iommu->lock, flags);
341 ret = __iommu_queue_command(iommu, cmd);
Joerg Roedel09ee17e2008-12-03 12:19:27 +0100342 if (!ret)
Joerg Roedel0cfd7aa2008-12-10 19:58:00 +0100343 iommu->need_sync = true;
Joerg Roedela19ae1e2008-06-26 21:27:55 +0200344 spin_unlock_irqrestore(&iommu->lock, flags);
345
346 return ret;
347}
348
Joerg Roedel431b2a22008-07-11 17:14:22 +0200349/*
Joerg Roedel8d201962008-12-02 20:34:41 +0100350 * This function waits until an IOMMU has completed a completion
351 * wait command
Joerg Roedel431b2a22008-07-11 17:14:22 +0200352 */
Joerg Roedel8d201962008-12-02 20:34:41 +0100353static void __iommu_wait_for_completion(struct amd_iommu *iommu)
Joerg Roedela19ae1e2008-06-26 21:27:55 +0200354{
Joerg Roedel8d201962008-12-02 20:34:41 +0100355 int ready = 0;
Joerg Roedel519c31b2008-08-14 19:55:15 +0200356 unsigned status = 0;
Joerg Roedel8d201962008-12-02 20:34:41 +0100357 unsigned long i = 0;
Joerg Roedela19ae1e2008-06-26 21:27:55 +0200358
Joerg Roedelda49f6d2008-12-12 14:59:58 +0100359 INC_STATS_COUNTER(compl_wait);
360
Joerg Roedel136f78a2008-07-11 17:14:27 +0200361 while (!ready && (i < EXIT_LOOP_COUNT)) {
362 ++i;
Joerg Roedel519c31b2008-08-14 19:55:15 +0200363 /* wait for the bit to become one */
364 status = readl(iommu->mmio_base + MMIO_STATUS_OFFSET);
365 ready = status & MMIO_STATUS_COM_WAIT_INT_MASK;
Joerg Roedel136f78a2008-07-11 17:14:27 +0200366 }
367
Joerg Roedel519c31b2008-08-14 19:55:15 +0200368 /* set bit back to zero */
369 status &= ~MMIO_STATUS_COM_WAIT_INT_MASK;
370 writel(status, iommu->mmio_base + MMIO_STATUS_OFFSET);
371
Joerg Roedel6a1eddd2009-09-03 15:15:10 +0200372 if (unlikely(i == EXIT_LOOP_COUNT)) {
373 spin_unlock(&iommu->lock);
374 reset_iommu_command_buffer(iommu);
375 spin_lock(&iommu->lock);
376 }
Joerg Roedel8d201962008-12-02 20:34:41 +0100377}
378
379/*
380 * This function queues a completion wait command into the command
381 * buffer of an IOMMU
382 */
383static int __iommu_completion_wait(struct amd_iommu *iommu)
384{
385 struct iommu_cmd cmd;
386
387 memset(&cmd, 0, sizeof(cmd));
388 cmd.data[0] = CMD_COMPL_WAIT_INT_MASK;
389 CMD_SET_TYPE(&cmd, CMD_COMPL_WAIT);
390
391 return __iommu_queue_command(iommu, &cmd);
392}
393
394/*
395 * This function is called whenever we need to ensure that the IOMMU has
396 * completed execution of all commands we sent. It sends a
397 * COMPLETION_WAIT command and waits for it to finish. The IOMMU informs
398 * us about that by writing a value to a physical address we pass with
399 * the command.
400 */
401static int iommu_completion_wait(struct amd_iommu *iommu)
402{
403 int ret = 0;
404 unsigned long flags;
405
406 spin_lock_irqsave(&iommu->lock, flags);
407
408 if (!iommu->need_sync)
409 goto out;
410
411 ret = __iommu_completion_wait(iommu);
412
Joerg Roedel0cfd7aa2008-12-10 19:58:00 +0100413 iommu->need_sync = false;
Joerg Roedel8d201962008-12-02 20:34:41 +0100414
415 if (ret)
416 goto out;
417
418 __iommu_wait_for_completion(iommu);
Joerg Roedel84df8172008-12-17 16:36:44 +0100419
Joerg Roedel7e4f88d2008-09-17 14:19:15 +0200420out:
421 spin_unlock_irqrestore(&iommu->lock, flags);
Joerg Roedela19ae1e2008-06-26 21:27:55 +0200422
423 return 0;
424}
425
Joerg Roedel0518a3a2009-11-20 16:00:05 +0100426static void iommu_flush_complete(struct protection_domain *domain)
427{
428 int i;
429
430 for (i = 0; i < amd_iommus_present; ++i) {
431 if (!domain->dev_iommu[i])
432 continue;
433
434 /*
435 * Devices of this domain are behind this IOMMU
436 * We need to wait for completion of all commands.
437 */
438 iommu_completion_wait(amd_iommus[i]);
439 }
440}
441
Joerg Roedel431b2a22008-07-11 17:14:22 +0200442/*
443 * Command send function for invalidating a device table entry
444 */
Joerg Roedela19ae1e2008-06-26 21:27:55 +0200445static int iommu_queue_inv_dev_entry(struct amd_iommu *iommu, u16 devid)
446{
Joerg Roedeld6449532008-07-11 17:14:28 +0200447 struct iommu_cmd cmd;
Joerg Roedelee2fa742008-09-17 13:47:25 +0200448 int ret;
Joerg Roedela19ae1e2008-06-26 21:27:55 +0200449
450 BUG_ON(iommu == NULL);
451
452 memset(&cmd, 0, sizeof(cmd));
453 CMD_SET_TYPE(&cmd, CMD_INV_DEV_ENTRY);
454 cmd.data[0] = devid;
455
Joerg Roedelee2fa742008-09-17 13:47:25 +0200456 ret = iommu_queue_command(iommu, &cmd);
457
Joerg Roedelee2fa742008-09-17 13:47:25 +0200458 return ret;
Joerg Roedela19ae1e2008-06-26 21:27:55 +0200459}
460
Joerg Roedel237b6f32008-12-02 20:54:37 +0100461static void __iommu_build_inv_iommu_pages(struct iommu_cmd *cmd, u64 address,
462 u16 domid, int pde, int s)
463{
464 memset(cmd, 0, sizeof(*cmd));
465 address &= PAGE_MASK;
466 CMD_SET_TYPE(cmd, CMD_INV_IOMMU_PAGES);
467 cmd->data[1] |= domid;
468 cmd->data[2] = lower_32_bits(address);
469 cmd->data[3] = upper_32_bits(address);
470 if (s) /* size bit - we flush more than one 4kb page */
471 cmd->data[2] |= CMD_INV_IOMMU_PAGES_SIZE_MASK;
472 if (pde) /* PDE bit - we wan't flush everything not only the PTEs */
473 cmd->data[2] |= CMD_INV_IOMMU_PAGES_PDE_MASK;
474}
475
Joerg Roedel431b2a22008-07-11 17:14:22 +0200476/*
477 * Generic command send function for invalidaing TLB entries
478 */
Joerg Roedela19ae1e2008-06-26 21:27:55 +0200479static int iommu_queue_inv_iommu_pages(struct amd_iommu *iommu,
480 u64 address, u16 domid, int pde, int s)
481{
Joerg Roedeld6449532008-07-11 17:14:28 +0200482 struct iommu_cmd cmd;
Joerg Roedelee2fa742008-09-17 13:47:25 +0200483 int ret;
Joerg Roedela19ae1e2008-06-26 21:27:55 +0200484
Joerg Roedel237b6f32008-12-02 20:54:37 +0100485 __iommu_build_inv_iommu_pages(&cmd, address, domid, pde, s);
Joerg Roedela19ae1e2008-06-26 21:27:55 +0200486
Joerg Roedelee2fa742008-09-17 13:47:25 +0200487 ret = iommu_queue_command(iommu, &cmd);
488
Joerg Roedelee2fa742008-09-17 13:47:25 +0200489 return ret;
Joerg Roedela19ae1e2008-06-26 21:27:55 +0200490}
491
Joerg Roedel431b2a22008-07-11 17:14:22 +0200492/*
493 * TLB invalidation function which is called from the mapping functions.
494 * It invalidates a single PTE if the range to flush is within a single
495 * page. Otherwise it flushes the whole TLB of the IOMMU.
496 */
Joerg Roedel6de8ad92009-11-23 18:30:32 +0100497static void __iommu_flush_pages(struct protection_domain *domain,
498 u64 address, size_t size, int pde)
Joerg Roedela19ae1e2008-06-26 21:27:55 +0200499{
Joerg Roedel6de8ad92009-11-23 18:30:32 +0100500 int s = 0, i;
Joerg Roedeldcd1e922009-11-20 15:30:58 +0100501 unsigned long pages = iommu_num_pages(address, size, PAGE_SIZE);
Joerg Roedela19ae1e2008-06-26 21:27:55 +0200502
503 address &= PAGE_MASK;
504
Joerg Roedel999ba412008-07-03 19:35:08 +0200505 if (pages > 1) {
506 /*
507 * If we have to flush more than one page, flush all
508 * TLB entries for this domain
509 */
510 address = CMD_INV_IOMMU_ALL_PAGES_ADDRESS;
511 s = 1;
Joerg Roedela19ae1e2008-06-26 21:27:55 +0200512 }
513
Joerg Roedel999ba412008-07-03 19:35:08 +0200514
Joerg Roedel6de8ad92009-11-23 18:30:32 +0100515 for (i = 0; i < amd_iommus_present; ++i) {
516 if (!domain->dev_iommu[i])
517 continue;
518
519 /*
520 * Devices of this domain are behind this IOMMU
521 * We need a TLB flush
522 */
523 iommu_queue_inv_iommu_pages(amd_iommus[i], address,
524 domain->id, pde, s);
525 }
526
527 return;
528}
529
530static void iommu_flush_pages(struct protection_domain *domain,
531 u64 address, size_t size)
532{
533 __iommu_flush_pages(domain, address, size, 0);
Joerg Roedela19ae1e2008-06-26 21:27:55 +0200534}
Joerg Roedelb6c02712008-06-26 21:27:53 +0200535
Joerg Roedel1c655772008-09-04 18:40:05 +0200536/* Flush the whole IO/TLB for a given protection domain */
Joerg Roedeldcd1e922009-11-20 15:30:58 +0100537static void iommu_flush_tlb(struct protection_domain *domain)
Joerg Roedel1c655772008-09-04 18:40:05 +0200538{
Joerg Roedeldcd1e922009-11-20 15:30:58 +0100539 __iommu_flush_pages(domain, 0, CMD_INV_IOMMU_ALL_PAGES_ADDRESS, 0);
Joerg Roedel1c655772008-09-04 18:40:05 +0200540}
541
Chris Wright42a49f92009-06-15 15:42:00 +0200542/* Flush the whole IO/TLB for a given protection domain - including PDE */
Joerg Roedeldcd1e922009-11-20 15:30:58 +0100543static void iommu_flush_tlb_pde(struct protection_domain *domain)
Chris Wright42a49f92009-06-15 15:42:00 +0200544{
Joerg Roedeldcd1e922009-11-20 15:30:58 +0100545 __iommu_flush_pages(domain, 0, CMD_INV_IOMMU_ALL_PAGES_ADDRESS, 1);
Chris Wright42a49f92009-06-15 15:42:00 +0200546}
547
Joerg Roedel43f49602008-12-02 21:01:12 +0100548/*
Joerg Roedel09b42802009-11-20 17:02:44 +0100549 * This function flushes all domains that have devices on the given IOMMU
Joerg Roedel43f49602008-12-02 21:01:12 +0100550 */
Joerg Roedele394d722009-09-03 15:28:33 +0200551static void flush_all_domains_on_iommu(struct amd_iommu *iommu)
Joerg Roedelbfd1be12009-05-05 15:33:57 +0200552{
Joerg Roedel09b42802009-11-20 17:02:44 +0100553 u64 address = CMD_INV_IOMMU_ALL_PAGES_ADDRESS;
554 struct protection_domain *domain;
555 unsigned long flags;
Joerg Roedelbfd1be12009-05-05 15:33:57 +0200556
Joerg Roedel09b42802009-11-20 17:02:44 +0100557 spin_lock_irqsave(&amd_iommu_pd_lock, flags);
558
559 list_for_each_entry(domain, &amd_iommu_pd_list, list) {
560 if (domain->dev_iommu[iommu->index] == 0)
Joerg Roedelbfd1be12009-05-05 15:33:57 +0200561 continue;
Joerg Roedel09b42802009-11-20 17:02:44 +0100562
563 spin_lock(&domain->lock);
564 iommu_queue_inv_iommu_pages(iommu, address, domain->id, 1, 1);
565 iommu_flush_complete(domain);
566 spin_unlock(&domain->lock);
Joerg Roedelbfd1be12009-05-05 15:33:57 +0200567 }
Joerg Roedele394d722009-09-03 15:28:33 +0200568
Joerg Roedel09b42802009-11-20 17:02:44 +0100569 spin_unlock_irqrestore(&amd_iommu_pd_lock, flags);
Joerg Roedele394d722009-09-03 15:28:33 +0200570}
571
Joerg Roedel09b42802009-11-20 17:02:44 +0100572/*
573 * This function uses heavy locking and may disable irqs for some time. But
574 * this is no issue because it is only called during resume.
575 */
Joerg Roedele394d722009-09-03 15:28:33 +0200576void amd_iommu_flush_all_domains(void)
577{
Joerg Roedele3306662009-11-20 16:48:58 +0100578 struct protection_domain *domain;
Joerg Roedel09b42802009-11-20 17:02:44 +0100579 unsigned long flags;
580
581 spin_lock_irqsave(&amd_iommu_pd_lock, flags);
Joerg Roedele394d722009-09-03 15:28:33 +0200582
Joerg Roedele3306662009-11-20 16:48:58 +0100583 list_for_each_entry(domain, &amd_iommu_pd_list, list) {
Joerg Roedel09b42802009-11-20 17:02:44 +0100584 spin_lock(&domain->lock);
Joerg Roedele3306662009-11-20 16:48:58 +0100585 iommu_flush_tlb_pde(domain);
586 iommu_flush_complete(domain);
Joerg Roedel09b42802009-11-20 17:02:44 +0100587 spin_unlock(&domain->lock);
Joerg Roedele3306662009-11-20 16:48:58 +0100588 }
Joerg Roedel09b42802009-11-20 17:02:44 +0100589
590 spin_unlock_irqrestore(&amd_iommu_pd_lock, flags);
Joerg Roedelbfd1be12009-05-05 15:33:57 +0200591}
592
Joerg Roedeld586d782009-09-03 15:39:23 +0200593static void flush_all_devices_for_iommu(struct amd_iommu *iommu)
594{
595 int i;
596
597 for (i = 0; i <= amd_iommu_last_bdf; ++i) {
598 if (iommu != amd_iommu_rlookup_table[i])
599 continue;
600
601 iommu_queue_inv_dev_entry(iommu, i);
602 iommu_completion_wait(iommu);
Joerg Roedel431b2a22008-07-11 17:14:22 +0200603 }
604}
605
Joerg Roedel6a0dbcb2009-09-02 15:41:59 +0200606static void flush_devices_by_domain(struct protection_domain *domain)
Joerg Roedel7d7a1102009-05-05 15:48:10 +0200607{
608 struct amd_iommu *iommu;
609 int i;
610
611 for (i = 0; i <= amd_iommu_last_bdf; ++i) {
Joerg Roedel6a0dbcb2009-09-02 15:41:59 +0200612 if ((domain == NULL && amd_iommu_pd_table[i] == NULL) ||
613 (amd_iommu_pd_table[i] != domain))
Joerg Roedel7d7a1102009-05-05 15:48:10 +0200614 continue;
615
616 iommu = amd_iommu_rlookup_table[i];
617 if (!iommu)
618 continue;
619
620 iommu_queue_inv_dev_entry(iommu, i);
621 iommu_completion_wait(iommu);
622 }
623}
624
Joerg Roedela345b232009-09-03 15:01:43 +0200625static void reset_iommu_command_buffer(struct amd_iommu *iommu)
626{
627 pr_err("AMD-Vi: Resetting IOMMU command buffer\n");
628
Joerg Roedelb26e81b2009-09-03 15:08:09 +0200629 if (iommu->reset_in_progress)
630 panic("AMD-Vi: ILLEGAL_COMMAND_ERROR while resetting command buffer\n");
631
632 iommu->reset_in_progress = true;
633
Joerg Roedela345b232009-09-03 15:01:43 +0200634 amd_iommu_reset_cmd_buffer(iommu);
635 flush_all_devices_for_iommu(iommu);
636 flush_all_domains_on_iommu(iommu);
Joerg Roedelb26e81b2009-09-03 15:08:09 +0200637
638 iommu->reset_in_progress = false;
Joerg Roedela345b232009-09-03 15:01:43 +0200639}
640
Joerg Roedel6a0dbcb2009-09-02 15:41:59 +0200641void amd_iommu_flush_all_devices(void)
642{
643 flush_devices_by_domain(NULL);
644}
645
Joerg Roedel431b2a22008-07-11 17:14:22 +0200646/****************************************************************************
647 *
648 * The functions below are used the create the page table mappings for
649 * unity mapped regions.
650 *
651 ****************************************************************************/
652
653/*
Joerg Roedel308973d2009-11-24 17:43:32 +0100654 * This function is used to add another level to an IO page table. Adding
655 * another level increases the size of the address space by 9 bits to a size up
656 * to 64 bits.
657 */
658static bool increase_address_space(struct protection_domain *domain,
659 gfp_t gfp)
660{
661 u64 *pte;
662
663 if (domain->mode == PAGE_MODE_6_LEVEL)
664 /* address space already 64 bit large */
665 return false;
666
667 pte = (void *)get_zeroed_page(gfp);
668 if (!pte)
669 return false;
670
671 *pte = PM_LEVEL_PDE(domain->mode,
672 virt_to_phys(domain->pt_root));
673 domain->pt_root = pte;
674 domain->mode += 1;
675 domain->updated = true;
676
677 return true;
678}
679
680static u64 *alloc_pte(struct protection_domain *domain,
681 unsigned long address,
682 int end_lvl,
683 u64 **pte_page,
684 gfp_t gfp)
685{
686 u64 *pte, *page;
687 int level;
688
689 while (address > PM_LEVEL_SIZE(domain->mode))
690 increase_address_space(domain, gfp);
691
692 level = domain->mode - 1;
693 pte = &domain->pt_root[PM_LEVEL_INDEX(level, address)];
694
695 while (level > end_lvl) {
696 if (!IOMMU_PTE_PRESENT(*pte)) {
697 page = (u64 *)get_zeroed_page(gfp);
698 if (!page)
699 return NULL;
700 *pte = PM_LEVEL_PDE(level, virt_to_phys(page));
701 }
702
703 level -= 1;
704
705 pte = IOMMU_PTE_PAGE(*pte);
706
707 if (pte_page && level == end_lvl)
708 *pte_page = pte;
709
710 pte = &pte[PM_LEVEL_INDEX(level, address)];
711 }
712
713 return pte;
714}
715
716/*
717 * This function checks if there is a PTE for a given dma address. If
718 * there is one, it returns the pointer to it.
719 */
720static u64 *fetch_pte(struct protection_domain *domain,
721 unsigned long address, int map_size)
722{
723 int level;
724 u64 *pte;
725
726 level = domain->mode - 1;
727 pte = &domain->pt_root[PM_LEVEL_INDEX(level, address)];
728
729 while (level > map_size) {
730 if (!IOMMU_PTE_PRESENT(*pte))
731 return NULL;
732
733 level -= 1;
734
735 pte = IOMMU_PTE_PAGE(*pte);
736 pte = &pte[PM_LEVEL_INDEX(level, address)];
737
738 if ((PM_PTE_LEVEL(*pte) == 0) && level != map_size) {
739 pte = NULL;
740 break;
741 }
742 }
743
744 return pte;
745}
746
747/*
Joerg Roedel431b2a22008-07-11 17:14:22 +0200748 * Generic mapping functions. It maps a physical address into a DMA
749 * address space. It allocates the page table pages if necessary.
750 * In the future it can be extended to a generic mapping function
751 * supporting all features of AMD IOMMU page tables like level skipping
752 * and full 64 bit address spaces.
753 */
Joerg Roedel38e817f2008-12-02 17:27:52 +0100754static int iommu_map_page(struct protection_domain *dom,
755 unsigned long bus_addr,
756 unsigned long phys_addr,
Joerg Roedelabdc5eb2009-09-03 11:33:51 +0200757 int prot,
758 int map_size)
Joerg Roedelbd0e5212008-06-26 21:27:56 +0200759{
Joerg Roedel8bda3092009-05-12 12:02:46 +0200760 u64 __pte, *pte;
Joerg Roedelbd0e5212008-06-26 21:27:56 +0200761
762 bus_addr = PAGE_ALIGN(bus_addr);
Joerg Roedelbb9d4ff2008-12-04 15:59:48 +0100763 phys_addr = PAGE_ALIGN(phys_addr);
Joerg Roedelbd0e5212008-06-26 21:27:56 +0200764
Joerg Roedelabdc5eb2009-09-03 11:33:51 +0200765 BUG_ON(!PM_ALIGNED(map_size, bus_addr));
766 BUG_ON(!PM_ALIGNED(map_size, phys_addr));
767
Joerg Roedelbad1cac2009-09-02 16:52:23 +0200768 if (!(prot & IOMMU_PROT_MASK))
Joerg Roedelbd0e5212008-06-26 21:27:56 +0200769 return -EINVAL;
770
Joerg Roedelabdc5eb2009-09-03 11:33:51 +0200771 pte = alloc_pte(dom, bus_addr, map_size, NULL, GFP_KERNEL);
Joerg Roedelbd0e5212008-06-26 21:27:56 +0200772
773 if (IOMMU_PTE_PRESENT(*pte))
774 return -EBUSY;
775
776 __pte = phys_addr | IOMMU_PTE_P;
777 if (prot & IOMMU_PROT_IR)
778 __pte |= IOMMU_PTE_IR;
779 if (prot & IOMMU_PROT_IW)
780 __pte |= IOMMU_PTE_IW;
781
782 *pte = __pte;
783
Joerg Roedel04bfdd82009-09-02 16:00:23 +0200784 update_domain(dom);
785
Joerg Roedelbd0e5212008-06-26 21:27:56 +0200786 return 0;
787}
788
Joerg Roedeleb74ff62008-12-02 19:59:10 +0100789static void iommu_unmap_page(struct protection_domain *dom,
Joerg Roedela6b256b2009-09-03 12:21:31 +0200790 unsigned long bus_addr, int map_size)
Joerg Roedeleb74ff62008-12-02 19:59:10 +0100791{
Joerg Roedela6b256b2009-09-03 12:21:31 +0200792 u64 *pte = fetch_pte(dom, bus_addr, map_size);
Joerg Roedeleb74ff62008-12-02 19:59:10 +0100793
Joerg Roedel38a76ee2009-09-02 17:02:47 +0200794 if (pte)
795 *pte = 0;
Joerg Roedeleb74ff62008-12-02 19:59:10 +0100796}
Joerg Roedeleb74ff62008-12-02 19:59:10 +0100797
Joerg Roedel431b2a22008-07-11 17:14:22 +0200798/*
799 * This function checks if a specific unity mapping entry is needed for
800 * this specific IOMMU.
801 */
Joerg Roedelbd0e5212008-06-26 21:27:56 +0200802static int iommu_for_unity_map(struct amd_iommu *iommu,
803 struct unity_map_entry *entry)
804{
805 u16 bdf, i;
806
807 for (i = entry->devid_start; i <= entry->devid_end; ++i) {
808 bdf = amd_iommu_alias_table[i];
809 if (amd_iommu_rlookup_table[bdf] == iommu)
810 return 1;
811 }
812
813 return 0;
814}
815
Joerg Roedel431b2a22008-07-11 17:14:22 +0200816/*
Joerg Roedel431b2a22008-07-11 17:14:22 +0200817 * This function actually applies the mapping to the page table of the
818 * dma_ops domain.
819 */
Joerg Roedelbd0e5212008-06-26 21:27:56 +0200820static int dma_ops_unity_map(struct dma_ops_domain *dma_dom,
821 struct unity_map_entry *e)
822{
823 u64 addr;
824 int ret;
825
826 for (addr = e->address_start; addr < e->address_end;
827 addr += PAGE_SIZE) {
Joerg Roedelabdc5eb2009-09-03 11:33:51 +0200828 ret = iommu_map_page(&dma_dom->domain, addr, addr, e->prot,
829 PM_MAP_4k);
Joerg Roedelbd0e5212008-06-26 21:27:56 +0200830 if (ret)
831 return ret;
832 /*
833 * if unity mapping is in aperture range mark the page
834 * as allocated in the aperture
835 */
836 if (addr < dma_dom->aperture_size)
Joerg Roedelc3239562009-05-12 10:56:44 +0200837 __set_bit(addr >> PAGE_SHIFT,
Joerg Roedel384de722009-05-15 12:30:05 +0200838 dma_dom->aperture[0]->bitmap);
Joerg Roedelbd0e5212008-06-26 21:27:56 +0200839 }
840
841 return 0;
842}
843
Joerg Roedel431b2a22008-07-11 17:14:22 +0200844/*
Joerg Roedel171e7b32009-11-24 17:47:56 +0100845 * Init the unity mappings for a specific IOMMU in the system
846 *
847 * Basically iterates over all unity mapping entries and applies them to
848 * the default domain DMA of that IOMMU if necessary.
849 */
850static int iommu_init_unity_mappings(struct amd_iommu *iommu)
851{
852 struct unity_map_entry *entry;
853 int ret;
854
855 list_for_each_entry(entry, &amd_iommu_unity_map, list) {
856 if (!iommu_for_unity_map(iommu, entry))
857 continue;
858 ret = dma_ops_unity_map(iommu->default_dom, entry);
859 if (ret)
860 return ret;
861 }
862
863 return 0;
864}
865
866/*
Joerg Roedel431b2a22008-07-11 17:14:22 +0200867 * Inits the unity mappings required for a specific device
868 */
Joerg Roedelbd0e5212008-06-26 21:27:56 +0200869static int init_unity_mappings_for_device(struct dma_ops_domain *dma_dom,
870 u16 devid)
871{
872 struct unity_map_entry *e;
873 int ret;
874
875 list_for_each_entry(e, &amd_iommu_unity_map, list) {
876 if (!(devid >= e->devid_start && devid <= e->devid_end))
877 continue;
878 ret = dma_ops_unity_map(dma_dom, e);
879 if (ret)
880 return ret;
881 }
882
883 return 0;
884}
885
Joerg Roedel431b2a22008-07-11 17:14:22 +0200886/****************************************************************************
887 *
888 * The next functions belong to the address allocator for the dma_ops
889 * interface functions. They work like the allocators in the other IOMMU
890 * drivers. Its basically a bitmap which marks the allocated pages in
891 * the aperture. Maybe it could be enhanced in the future to a more
892 * efficient allocator.
893 *
894 ****************************************************************************/
Joerg Roedeld3086442008-06-26 21:27:57 +0200895
Joerg Roedel431b2a22008-07-11 17:14:22 +0200896/*
Joerg Roedel384de722009-05-15 12:30:05 +0200897 * The address allocator core functions.
Joerg Roedel431b2a22008-07-11 17:14:22 +0200898 *
899 * called with domain->lock held
900 */
Joerg Roedel384de722009-05-15 12:30:05 +0200901
Joerg Roedel9cabe892009-05-18 16:38:55 +0200902/*
Joerg Roedel171e7b32009-11-24 17:47:56 +0100903 * Used to reserve address ranges in the aperture (e.g. for exclusion
904 * ranges.
905 */
906static void dma_ops_reserve_addresses(struct dma_ops_domain *dom,
907 unsigned long start_page,
908 unsigned int pages)
909{
910 unsigned int i, last_page = dom->aperture_size >> PAGE_SHIFT;
911
912 if (start_page + pages > last_page)
913 pages = last_page - start_page;
914
915 for (i = start_page; i < start_page + pages; ++i) {
916 int index = i / APERTURE_RANGE_PAGES;
917 int page = i % APERTURE_RANGE_PAGES;
918 __set_bit(page, dom->aperture[index]->bitmap);
919 }
920}
921
922/*
Joerg Roedel9cabe892009-05-18 16:38:55 +0200923 * This function is used to add a new aperture range to an existing
924 * aperture in case of dma_ops domain allocation or address allocation
925 * failure.
926 */
Joerg Roedel576175c2009-11-23 19:08:46 +0100927static int alloc_new_range(struct dma_ops_domain *dma_dom,
Joerg Roedel9cabe892009-05-18 16:38:55 +0200928 bool populate, gfp_t gfp)
929{
930 int index = dma_dom->aperture_size >> APERTURE_RANGE_SHIFT;
Joerg Roedel576175c2009-11-23 19:08:46 +0100931 struct amd_iommu *iommu;
Joerg Roedel00cd1222009-05-19 09:52:40 +0200932 int i;
Joerg Roedel9cabe892009-05-18 16:38:55 +0200933
Joerg Roedelf5e97052009-05-22 12:31:53 +0200934#ifdef CONFIG_IOMMU_STRESS
935 populate = false;
936#endif
937
Joerg Roedel9cabe892009-05-18 16:38:55 +0200938 if (index >= APERTURE_MAX_RANGES)
939 return -ENOMEM;
940
941 dma_dom->aperture[index] = kzalloc(sizeof(struct aperture_range), gfp);
942 if (!dma_dom->aperture[index])
943 return -ENOMEM;
944
945 dma_dom->aperture[index]->bitmap = (void *)get_zeroed_page(gfp);
946 if (!dma_dom->aperture[index]->bitmap)
947 goto out_free;
948
949 dma_dom->aperture[index]->offset = dma_dom->aperture_size;
950
951 if (populate) {
952 unsigned long address = dma_dom->aperture_size;
953 int i, num_ptes = APERTURE_RANGE_PAGES / 512;
954 u64 *pte, *pte_page;
955
956 for (i = 0; i < num_ptes; ++i) {
Joerg Roedelabdc5eb2009-09-03 11:33:51 +0200957 pte = alloc_pte(&dma_dom->domain, address, PM_MAP_4k,
Joerg Roedel9cabe892009-05-18 16:38:55 +0200958 &pte_page, gfp);
959 if (!pte)
960 goto out_free;
961
962 dma_dom->aperture[index]->pte_pages[i] = pte_page;
963
964 address += APERTURE_RANGE_SIZE / 64;
965 }
966 }
967
968 dma_dom->aperture_size += APERTURE_RANGE_SIZE;
969
Joerg Roedel00cd1222009-05-19 09:52:40 +0200970 /* Intialize the exclusion range if necessary */
Joerg Roedel576175c2009-11-23 19:08:46 +0100971 for_each_iommu(iommu) {
972 if (iommu->exclusion_start &&
973 iommu->exclusion_start >= dma_dom->aperture[index]->offset
974 && iommu->exclusion_start < dma_dom->aperture_size) {
975 unsigned long startpage;
976 int pages = iommu_num_pages(iommu->exclusion_start,
977 iommu->exclusion_length,
978 PAGE_SIZE);
979 startpage = iommu->exclusion_start >> PAGE_SHIFT;
980 dma_ops_reserve_addresses(dma_dom, startpage, pages);
981 }
Joerg Roedel00cd1222009-05-19 09:52:40 +0200982 }
983
984 /*
985 * Check for areas already mapped as present in the new aperture
986 * range and mark those pages as reserved in the allocator. Such
987 * mappings may already exist as a result of requested unity
988 * mappings for devices.
989 */
990 for (i = dma_dom->aperture[index]->offset;
991 i < dma_dom->aperture_size;
992 i += PAGE_SIZE) {
Joerg Roedela6b256b2009-09-03 12:21:31 +0200993 u64 *pte = fetch_pte(&dma_dom->domain, i, PM_MAP_4k);
Joerg Roedel00cd1222009-05-19 09:52:40 +0200994 if (!pte || !IOMMU_PTE_PRESENT(*pte))
995 continue;
996
997 dma_ops_reserve_addresses(dma_dom, i << PAGE_SHIFT, 1);
998 }
999
Joerg Roedel04bfdd82009-09-02 16:00:23 +02001000 update_domain(&dma_dom->domain);
1001
Joerg Roedel9cabe892009-05-18 16:38:55 +02001002 return 0;
1003
1004out_free:
Joerg Roedel04bfdd82009-09-02 16:00:23 +02001005 update_domain(&dma_dom->domain);
1006
Joerg Roedel9cabe892009-05-18 16:38:55 +02001007 free_page((unsigned long)dma_dom->aperture[index]->bitmap);
1008
1009 kfree(dma_dom->aperture[index]);
1010 dma_dom->aperture[index] = NULL;
1011
1012 return -ENOMEM;
1013}
1014
Joerg Roedel384de722009-05-15 12:30:05 +02001015static unsigned long dma_ops_area_alloc(struct device *dev,
1016 struct dma_ops_domain *dom,
1017 unsigned int pages,
1018 unsigned long align_mask,
1019 u64 dma_mask,
1020 unsigned long start)
1021{
Joerg Roedel803b8cb2009-05-18 15:32:48 +02001022 unsigned long next_bit = dom->next_address % APERTURE_RANGE_SIZE;
Joerg Roedel384de722009-05-15 12:30:05 +02001023 int max_index = dom->aperture_size >> APERTURE_RANGE_SHIFT;
1024 int i = start >> APERTURE_RANGE_SHIFT;
1025 unsigned long boundary_size;
1026 unsigned long address = -1;
1027 unsigned long limit;
1028
Joerg Roedel803b8cb2009-05-18 15:32:48 +02001029 next_bit >>= PAGE_SHIFT;
1030
Joerg Roedel384de722009-05-15 12:30:05 +02001031 boundary_size = ALIGN(dma_get_seg_boundary(dev) + 1,
1032 PAGE_SIZE) >> PAGE_SHIFT;
1033
1034 for (;i < max_index; ++i) {
1035 unsigned long offset = dom->aperture[i]->offset >> PAGE_SHIFT;
1036
1037 if (dom->aperture[i]->offset >= dma_mask)
1038 break;
1039
1040 limit = iommu_device_max_index(APERTURE_RANGE_PAGES, offset,
1041 dma_mask >> PAGE_SHIFT);
1042
1043 address = iommu_area_alloc(dom->aperture[i]->bitmap,
1044 limit, next_bit, pages, 0,
1045 boundary_size, align_mask);
1046 if (address != -1) {
1047 address = dom->aperture[i]->offset +
1048 (address << PAGE_SHIFT);
Joerg Roedel803b8cb2009-05-18 15:32:48 +02001049 dom->next_address = address + (pages << PAGE_SHIFT);
Joerg Roedel384de722009-05-15 12:30:05 +02001050 break;
1051 }
1052
1053 next_bit = 0;
1054 }
1055
1056 return address;
1057}
1058
Joerg Roedeld3086442008-06-26 21:27:57 +02001059static unsigned long dma_ops_alloc_addresses(struct device *dev,
1060 struct dma_ops_domain *dom,
Joerg Roedel6d4f3432008-09-04 19:18:02 +02001061 unsigned int pages,
Joerg Roedel832a90c2008-09-18 15:54:23 +02001062 unsigned long align_mask,
1063 u64 dma_mask)
Joerg Roedeld3086442008-06-26 21:27:57 +02001064{
Joerg Roedeld3086442008-06-26 21:27:57 +02001065 unsigned long address;
Joerg Roedeld3086442008-06-26 21:27:57 +02001066
Joerg Roedelfe16f082009-05-22 12:27:53 +02001067#ifdef CONFIG_IOMMU_STRESS
1068 dom->next_address = 0;
1069 dom->need_flush = true;
1070#endif
Joerg Roedeld3086442008-06-26 21:27:57 +02001071
Joerg Roedel384de722009-05-15 12:30:05 +02001072 address = dma_ops_area_alloc(dev, dom, pages, align_mask,
Joerg Roedel803b8cb2009-05-18 15:32:48 +02001073 dma_mask, dom->next_address);
Joerg Roedeld3086442008-06-26 21:27:57 +02001074
Joerg Roedel1c655772008-09-04 18:40:05 +02001075 if (address == -1) {
Joerg Roedel803b8cb2009-05-18 15:32:48 +02001076 dom->next_address = 0;
Joerg Roedel384de722009-05-15 12:30:05 +02001077 address = dma_ops_area_alloc(dev, dom, pages, align_mask,
1078 dma_mask, 0);
Joerg Roedel1c655772008-09-04 18:40:05 +02001079 dom->need_flush = true;
1080 }
Joerg Roedeld3086442008-06-26 21:27:57 +02001081
Joerg Roedel384de722009-05-15 12:30:05 +02001082 if (unlikely(address == -1))
FUJITA Tomonori8fd524b2009-11-15 21:19:53 +09001083 address = DMA_ERROR_CODE;
Joerg Roedeld3086442008-06-26 21:27:57 +02001084
1085 WARN_ON((address + (PAGE_SIZE*pages)) > dom->aperture_size);
1086
1087 return address;
1088}
1089
Joerg Roedel431b2a22008-07-11 17:14:22 +02001090/*
1091 * The address free function.
1092 *
1093 * called with domain->lock held
1094 */
Joerg Roedeld3086442008-06-26 21:27:57 +02001095static void dma_ops_free_addresses(struct dma_ops_domain *dom,
1096 unsigned long address,
1097 unsigned int pages)
1098{
Joerg Roedel384de722009-05-15 12:30:05 +02001099 unsigned i = address >> APERTURE_RANGE_SHIFT;
1100 struct aperture_range *range = dom->aperture[i];
Joerg Roedel80be3082008-11-06 14:59:05 +01001101
Joerg Roedel384de722009-05-15 12:30:05 +02001102 BUG_ON(i >= APERTURE_MAX_RANGES || range == NULL);
1103
Joerg Roedel47bccd62009-05-22 12:40:54 +02001104#ifdef CONFIG_IOMMU_STRESS
1105 if (i < 4)
1106 return;
1107#endif
1108
Joerg Roedel803b8cb2009-05-18 15:32:48 +02001109 if (address >= dom->next_address)
Joerg Roedel80be3082008-11-06 14:59:05 +01001110 dom->need_flush = true;
Joerg Roedel384de722009-05-15 12:30:05 +02001111
1112 address = (address % APERTURE_RANGE_SIZE) >> PAGE_SHIFT;
Joerg Roedel803b8cb2009-05-18 15:32:48 +02001113
Joerg Roedel384de722009-05-15 12:30:05 +02001114 iommu_area_free(range->bitmap, address, pages);
1115
Joerg Roedeld3086442008-06-26 21:27:57 +02001116}
1117
Joerg Roedel431b2a22008-07-11 17:14:22 +02001118/****************************************************************************
1119 *
1120 * The next functions belong to the domain allocation. A domain is
1121 * allocated for every IOMMU as the default domain. If device isolation
1122 * is enabled, every device get its own domain. The most important thing
1123 * about domains is the page table mapping the DMA address space they
1124 * contain.
1125 *
1126 ****************************************************************************/
1127
Joerg Roedelaeb26f52009-11-20 16:44:01 +01001128/*
1129 * This function adds a protection domain to the global protection domain list
1130 */
1131static void add_domain_to_list(struct protection_domain *domain)
1132{
1133 unsigned long flags;
1134
1135 spin_lock_irqsave(&amd_iommu_pd_lock, flags);
1136 list_add(&domain->list, &amd_iommu_pd_list);
1137 spin_unlock_irqrestore(&amd_iommu_pd_lock, flags);
1138}
1139
1140/*
1141 * This function removes a protection domain to the global
1142 * protection domain list
1143 */
1144static void del_domain_from_list(struct protection_domain *domain)
1145{
1146 unsigned long flags;
1147
1148 spin_lock_irqsave(&amd_iommu_pd_lock, flags);
1149 list_del(&domain->list);
1150 spin_unlock_irqrestore(&amd_iommu_pd_lock, flags);
1151}
1152
Joerg Roedelec487d12008-06-26 21:27:58 +02001153static u16 domain_id_alloc(void)
1154{
1155 unsigned long flags;
1156 int id;
1157
1158 write_lock_irqsave(&amd_iommu_devtable_lock, flags);
1159 id = find_first_zero_bit(amd_iommu_pd_alloc_bitmap, MAX_DOMAIN_ID);
1160 BUG_ON(id == 0);
1161 if (id > 0 && id < MAX_DOMAIN_ID)
1162 __set_bit(id, amd_iommu_pd_alloc_bitmap);
1163 else
1164 id = 0;
1165 write_unlock_irqrestore(&amd_iommu_devtable_lock, flags);
1166
1167 return id;
1168}
1169
Joerg Roedela2acfb72008-12-02 18:28:53 +01001170static void domain_id_free(int id)
1171{
1172 unsigned long flags;
1173
1174 write_lock_irqsave(&amd_iommu_devtable_lock, flags);
1175 if (id > 0 && id < MAX_DOMAIN_ID)
1176 __clear_bit(id, amd_iommu_pd_alloc_bitmap);
1177 write_unlock_irqrestore(&amd_iommu_devtable_lock, flags);
1178}
Joerg Roedela2acfb72008-12-02 18:28:53 +01001179
Joerg Roedel86db2e52008-12-02 18:20:21 +01001180static void free_pagetable(struct protection_domain *domain)
Joerg Roedelec487d12008-06-26 21:27:58 +02001181{
1182 int i, j;
1183 u64 *p1, *p2, *p3;
1184
Joerg Roedel86db2e52008-12-02 18:20:21 +01001185 p1 = domain->pt_root;
Joerg Roedelec487d12008-06-26 21:27:58 +02001186
1187 if (!p1)
1188 return;
1189
1190 for (i = 0; i < 512; ++i) {
1191 if (!IOMMU_PTE_PRESENT(p1[i]))
1192 continue;
1193
1194 p2 = IOMMU_PTE_PAGE(p1[i]);
Joerg Roedel3cc3d842008-12-04 16:44:31 +01001195 for (j = 0; j < 512; ++j) {
Joerg Roedelec487d12008-06-26 21:27:58 +02001196 if (!IOMMU_PTE_PRESENT(p2[j]))
1197 continue;
1198 p3 = IOMMU_PTE_PAGE(p2[j]);
1199 free_page((unsigned long)p3);
1200 }
1201
1202 free_page((unsigned long)p2);
1203 }
1204
1205 free_page((unsigned long)p1);
Joerg Roedel86db2e52008-12-02 18:20:21 +01001206
1207 domain->pt_root = NULL;
Joerg Roedelec487d12008-06-26 21:27:58 +02001208}
1209
Joerg Roedel431b2a22008-07-11 17:14:22 +02001210/*
1211 * Free a domain, only used if something went wrong in the
1212 * allocation path and we need to free an already allocated page table
1213 */
Joerg Roedelec487d12008-06-26 21:27:58 +02001214static void dma_ops_domain_free(struct dma_ops_domain *dom)
1215{
Joerg Roedel384de722009-05-15 12:30:05 +02001216 int i;
1217
Joerg Roedelec487d12008-06-26 21:27:58 +02001218 if (!dom)
1219 return;
1220
Joerg Roedelaeb26f52009-11-20 16:44:01 +01001221 del_domain_from_list(&dom->domain);
1222
Joerg Roedel86db2e52008-12-02 18:20:21 +01001223 free_pagetable(&dom->domain);
Joerg Roedelec487d12008-06-26 21:27:58 +02001224
Joerg Roedel384de722009-05-15 12:30:05 +02001225 for (i = 0; i < APERTURE_MAX_RANGES; ++i) {
1226 if (!dom->aperture[i])
1227 continue;
1228 free_page((unsigned long)dom->aperture[i]->bitmap);
1229 kfree(dom->aperture[i]);
1230 }
Joerg Roedelec487d12008-06-26 21:27:58 +02001231
1232 kfree(dom);
1233}
1234
Joerg Roedel431b2a22008-07-11 17:14:22 +02001235/*
1236 * Allocates a new protection domain usable for the dma_ops functions.
1237 * It also intializes the page table and the address allocator data
1238 * structures required for the dma_ops interface
1239 */
Joerg Roedel87a64d52009-11-24 17:26:43 +01001240static struct dma_ops_domain *dma_ops_domain_alloc(void)
Joerg Roedelec487d12008-06-26 21:27:58 +02001241{
1242 struct dma_ops_domain *dma_dom;
Joerg Roedelec487d12008-06-26 21:27:58 +02001243
1244 dma_dom = kzalloc(sizeof(struct dma_ops_domain), GFP_KERNEL);
1245 if (!dma_dom)
1246 return NULL;
1247
1248 spin_lock_init(&dma_dom->domain.lock);
1249
1250 dma_dom->domain.id = domain_id_alloc();
1251 if (dma_dom->domain.id == 0)
1252 goto free_dma_dom;
Joerg Roedel8f7a0172009-09-02 16:55:24 +02001253 dma_dom->domain.mode = PAGE_MODE_2_LEVEL;
Joerg Roedelec487d12008-06-26 21:27:58 +02001254 dma_dom->domain.pt_root = (void *)get_zeroed_page(GFP_KERNEL);
Joerg Roedel9fdb19d2008-12-02 17:46:25 +01001255 dma_dom->domain.flags = PD_DMA_OPS_MASK;
Joerg Roedelec487d12008-06-26 21:27:58 +02001256 dma_dom->domain.priv = dma_dom;
1257 if (!dma_dom->domain.pt_root)
1258 goto free_dma_dom;
Joerg Roedelec487d12008-06-26 21:27:58 +02001259
Joerg Roedel1c655772008-09-04 18:40:05 +02001260 dma_dom->need_flush = false;
Joerg Roedelbd60b732008-09-11 10:24:48 +02001261 dma_dom->target_dev = 0xffff;
Joerg Roedel1c655772008-09-04 18:40:05 +02001262
Joerg Roedelaeb26f52009-11-20 16:44:01 +01001263 add_domain_to_list(&dma_dom->domain);
1264
Joerg Roedel576175c2009-11-23 19:08:46 +01001265 if (alloc_new_range(dma_dom, true, GFP_KERNEL))
Joerg Roedelec487d12008-06-26 21:27:58 +02001266 goto free_dma_dom;
Joerg Roedelec487d12008-06-26 21:27:58 +02001267
Joerg Roedel431b2a22008-07-11 17:14:22 +02001268 /*
Joerg Roedelec487d12008-06-26 21:27:58 +02001269 * mark the first page as allocated so we never return 0 as
1270 * a valid dma-address. So we can use 0 as error value
Joerg Roedel431b2a22008-07-11 17:14:22 +02001271 */
Joerg Roedel384de722009-05-15 12:30:05 +02001272 dma_dom->aperture[0]->bitmap[0] = 1;
Joerg Roedel803b8cb2009-05-18 15:32:48 +02001273 dma_dom->next_address = 0;
Joerg Roedelec487d12008-06-26 21:27:58 +02001274
Joerg Roedelec487d12008-06-26 21:27:58 +02001275
1276 return dma_dom;
1277
1278free_dma_dom:
1279 dma_ops_domain_free(dma_dom);
1280
1281 return NULL;
1282}
1283
Joerg Roedel431b2a22008-07-11 17:14:22 +02001284/*
Joerg Roedel5b28df62008-12-02 17:49:42 +01001285 * little helper function to check whether a given protection domain is a
1286 * dma_ops domain
1287 */
1288static bool dma_ops_domain(struct protection_domain *domain)
1289{
1290 return domain->flags & PD_DMA_OPS_MASK;
1291}
1292
Joerg Roedel407d7332009-09-02 16:07:00 +02001293static void set_dte_entry(u16 devid, struct protection_domain *domain)
Joerg Roedelb20ac0d2008-06-26 21:27:59 +02001294{
Joerg Roedel15898bb2009-11-24 15:39:42 +01001295 struct amd_iommu *iommu = amd_iommu_rlookup_table[devid];
Joerg Roedelb20ac0d2008-06-26 21:27:59 +02001296 u64 pte_root = virt_to_phys(domain->pt_root);
Joerg Roedel863c74e2008-12-02 17:56:36 +01001297
Joerg Roedel15898bb2009-11-24 15:39:42 +01001298 BUG_ON(amd_iommu_pd_table[devid] != NULL);
1299
Joerg Roedel38ddf412008-09-11 10:38:32 +02001300 pte_root |= (domain->mode & DEV_ENTRY_MODE_MASK)
1301 << DEV_ENTRY_MODE_SHIFT;
1302 pte_root |= IOMMU_PTE_IR | IOMMU_PTE_IW | IOMMU_PTE_P | IOMMU_PTE_TV;
Joerg Roedelb20ac0d2008-06-26 21:27:59 +02001303
Joerg Roedelb20ac0d2008-06-26 21:27:59 +02001304 amd_iommu_dev_table[devid].data[2] = domain->id;
Joerg Roedelaa879ff2009-08-31 16:01:48 +02001305 amd_iommu_dev_table[devid].data[1] = upper_32_bits(pte_root);
1306 amd_iommu_dev_table[devid].data[0] = lower_32_bits(pte_root);
Joerg Roedelb20ac0d2008-06-26 21:27:59 +02001307
1308 amd_iommu_pd_table[devid] = domain;
Joerg Roedeleba6ac62009-09-01 12:07:08 +02001309
Joerg Roedelc4596112009-11-20 14:57:32 +01001310 /* Do reference counting */
1311 domain->dev_iommu[iommu->index] += 1;
1312 domain->dev_cnt += 1;
Joerg Roedeleba6ac62009-09-01 12:07:08 +02001313
Joerg Roedel15898bb2009-11-24 15:39:42 +01001314 /* Flush the changes DTE entry */
Joerg Roedelb20ac0d2008-06-26 21:27:59 +02001315 iommu_queue_inv_dev_entry(iommu, devid);
Joerg Roedelb20ac0d2008-06-26 21:27:59 +02001316}
1317
Joerg Roedel15898bb2009-11-24 15:39:42 +01001318static void clear_dte_entry(u16 devid)
Joerg Roedel355bf552008-12-08 12:02:41 +01001319{
Joerg Roedel15898bb2009-11-24 15:39:42 +01001320 struct protection_domain *domain = amd_iommu_pd_table[devid];
Joerg Roedelc4596112009-11-20 14:57:32 +01001321 struct amd_iommu *iommu = amd_iommu_rlookup_table[devid];
1322
Joerg Roedel15898bb2009-11-24 15:39:42 +01001323 BUG_ON(domain == NULL);
Joerg Roedel355bf552008-12-08 12:02:41 +01001324
1325 /* remove domain from the lookup table */
1326 amd_iommu_pd_table[devid] = NULL;
1327
1328 /* remove entry from the device table seen by the hardware */
1329 amd_iommu_dev_table[devid].data[0] = IOMMU_PTE_P | IOMMU_PTE_TV;
1330 amd_iommu_dev_table[devid].data[1] = 0;
1331 amd_iommu_dev_table[devid].data[2] = 0;
1332
Joerg Roedelc5cca142009-10-09 18:31:20 +02001333 amd_iommu_apply_erratum_63(devid);
1334
Joerg Roedelc4596112009-11-20 14:57:32 +01001335 /* decrease reference counters */
1336 domain->dev_iommu[iommu->index] -= 1;
1337 domain->dev_cnt -= 1;
Joerg Roedel355bf552008-12-08 12:02:41 +01001338
Joerg Roedel15898bb2009-11-24 15:39:42 +01001339 iommu_queue_inv_dev_entry(iommu, devid);
1340}
1341
1342/*
1343 * If a device is not yet associated with a domain, this function does
1344 * assigns it visible for the hardware
1345 */
1346static int __attach_device(struct device *dev,
1347 struct protection_domain *domain)
1348{
1349 u16 devid = get_device_id(dev);
1350 u16 alias = amd_iommu_alias_table[devid];
1351
1352 /* lock domain */
1353 spin_lock(&domain->lock);
1354
1355 /* Some sanity checks */
1356 if (amd_iommu_pd_table[alias] != NULL &&
1357 amd_iommu_pd_table[alias] != domain)
1358 return -EBUSY;
1359
1360 if (amd_iommu_pd_table[devid] != NULL &&
1361 amd_iommu_pd_table[devid] != domain)
1362 return -EBUSY;
1363
1364 /* Do real assignment */
1365 if (alias != devid &&
1366 amd_iommu_pd_table[alias] == NULL)
1367 set_dte_entry(alias, domain);
1368
1369 if (amd_iommu_pd_table[devid] == NULL)
1370 set_dte_entry(devid, domain);
1371
Joerg Roedel355bf552008-12-08 12:02:41 +01001372 /* ready */
1373 spin_unlock(&domain->lock);
Joerg Roedel21129f72009-09-01 11:59:42 +02001374
Joerg Roedel15898bb2009-11-24 15:39:42 +01001375 return 0;
1376}
1377
1378/*
1379 * If a device is not yet associated with a domain, this function does
1380 * assigns it visible for the hardware
1381 */
1382static int attach_device(struct device *dev,
1383 struct protection_domain *domain)
1384{
1385 unsigned long flags;
1386 int ret;
1387
1388 write_lock_irqsave(&amd_iommu_devtable_lock, flags);
1389 ret = __attach_device(dev, domain);
1390 write_unlock_irqrestore(&amd_iommu_devtable_lock, flags);
1391
1392 /*
1393 * We might boot into a crash-kernel here. The crashed kernel
1394 * left the caches in the IOMMU dirty. So we have to flush
1395 * here to evict all dirty stuff.
1396 */
1397 iommu_flush_tlb_pde(domain);
1398
1399 return ret;
1400}
1401
1402/*
1403 * Removes a device from a protection domain (unlocked)
1404 */
1405static void __detach_device(struct device *dev)
1406{
1407 u16 devid = get_device_id(dev);
1408 struct amd_iommu *iommu = amd_iommu_rlookup_table[devid];
1409
1410 BUG_ON(!iommu);
1411
1412 clear_dte_entry(devid);
1413
Joerg Roedel21129f72009-09-01 11:59:42 +02001414 /*
1415 * If we run in passthrough mode the device must be assigned to the
1416 * passthrough domain if it is detached from any other domain
1417 */
Joerg Roedel15898bb2009-11-24 15:39:42 +01001418 if (iommu_pass_through)
1419 __attach_device(dev, pt_domain);
Joerg Roedel355bf552008-12-08 12:02:41 +01001420}
1421
1422/*
1423 * Removes a device from a protection domain (with devtable_lock held)
1424 */
Joerg Roedel15898bb2009-11-24 15:39:42 +01001425static void detach_device(struct device *dev)
Joerg Roedel355bf552008-12-08 12:02:41 +01001426{
1427 unsigned long flags;
1428
1429 /* lock device table */
1430 write_lock_irqsave(&amd_iommu_devtable_lock, flags);
Joerg Roedel15898bb2009-11-24 15:39:42 +01001431 __detach_device(dev);
Joerg Roedel355bf552008-12-08 12:02:41 +01001432 write_unlock_irqrestore(&amd_iommu_devtable_lock, flags);
1433}
Joerg Roedele275a2a2008-12-10 18:27:25 +01001434
Joerg Roedel15898bb2009-11-24 15:39:42 +01001435/*
1436 * Find out the protection domain structure for a given PCI device. This
1437 * will give us the pointer to the page table root for example.
1438 */
1439static struct protection_domain *domain_for_device(struct device *dev)
1440{
1441 struct protection_domain *dom;
1442 unsigned long flags;
1443 u16 devid, alias;
1444
1445 devid = get_device_id(dev);
1446 alias = amd_iommu_alias_table[devid];
1447
1448 read_lock_irqsave(&amd_iommu_devtable_lock, flags);
1449 dom = amd_iommu_pd_table[devid];
1450 if (dom == NULL &&
1451 amd_iommu_pd_table[alias] != NULL) {
1452 __attach_device(dev, amd_iommu_pd_table[alias]);
1453 dom = amd_iommu_pd_table[devid];
1454 }
1455
1456 read_unlock_irqrestore(&amd_iommu_devtable_lock, flags);
1457
1458 return dom;
1459}
1460
Joerg Roedele275a2a2008-12-10 18:27:25 +01001461static int device_change_notifier(struct notifier_block *nb,
1462 unsigned long action, void *data)
1463{
1464 struct device *dev = data;
Joerg Roedel98fc5a62009-11-24 17:19:23 +01001465 u16 devid;
Joerg Roedele275a2a2008-12-10 18:27:25 +01001466 struct protection_domain *domain;
1467 struct dma_ops_domain *dma_domain;
1468 struct amd_iommu *iommu;
Joerg Roedel1ac4cbb2008-12-10 19:33:26 +01001469 unsigned long flags;
Joerg Roedele275a2a2008-12-10 18:27:25 +01001470
Joerg Roedel98fc5a62009-11-24 17:19:23 +01001471 if (!check_device(dev))
1472 return 0;
Joerg Roedele275a2a2008-12-10 18:27:25 +01001473
Joerg Roedel98fc5a62009-11-24 17:19:23 +01001474 devid = get_device_id(dev);
1475 iommu = amd_iommu_rlookup_table[devid];
Joerg Roedel15898bb2009-11-24 15:39:42 +01001476 domain = domain_for_device(dev);
Joerg Roedele275a2a2008-12-10 18:27:25 +01001477
1478 if (domain && !dma_ops_domain(domain))
1479 WARN_ONCE(1, "AMD IOMMU WARNING: device %s already bound "
1480 "to a non-dma-ops domain\n", dev_name(dev));
1481
1482 switch (action) {
Chris Wrightc1eee672009-05-21 00:56:58 -07001483 case BUS_NOTIFY_UNBOUND_DRIVER:
Joerg Roedele275a2a2008-12-10 18:27:25 +01001484 if (!domain)
1485 goto out;
Joerg Roedela1ca3312009-09-01 12:22:22 +02001486 if (iommu_pass_through)
1487 break;
Joerg Roedel15898bb2009-11-24 15:39:42 +01001488 detach_device(dev);
Joerg Roedele275a2a2008-12-10 18:27:25 +01001489 break;
Joerg Roedel1ac4cbb2008-12-10 19:33:26 +01001490 case BUS_NOTIFY_ADD_DEVICE:
1491 /* allocate a protection domain if a device is added */
1492 dma_domain = find_protection_domain(devid);
1493 if (dma_domain)
1494 goto out;
Joerg Roedel87a64d52009-11-24 17:26:43 +01001495 dma_domain = dma_ops_domain_alloc();
Joerg Roedel1ac4cbb2008-12-10 19:33:26 +01001496 if (!dma_domain)
1497 goto out;
1498 dma_domain->target_dev = devid;
1499
1500 spin_lock_irqsave(&iommu_pd_list_lock, flags);
1501 list_add_tail(&dma_domain->list, &iommu_pd_list);
1502 spin_unlock_irqrestore(&iommu_pd_list_lock, flags);
1503
1504 break;
Joerg Roedele275a2a2008-12-10 18:27:25 +01001505 default:
1506 goto out;
1507 }
1508
1509 iommu_queue_inv_dev_entry(iommu, devid);
1510 iommu_completion_wait(iommu);
1511
1512out:
1513 return 0;
1514}
1515
Jaswinder Singh Rajputb25ae672009-07-01 19:53:14 +05301516static struct notifier_block device_nb = {
Joerg Roedele275a2a2008-12-10 18:27:25 +01001517 .notifier_call = device_change_notifier,
1518};
Joerg Roedel355bf552008-12-08 12:02:41 +01001519
Joerg Roedel431b2a22008-07-11 17:14:22 +02001520/*****************************************************************************
1521 *
1522 * The next functions belong to the dma_ops mapping/unmapping code.
1523 *
1524 *****************************************************************************/
1525
1526/*
1527 * In the dma_ops path we only have the struct device. This function
1528 * finds the corresponding IOMMU, the protection domain and the
1529 * requestor id for a given device.
1530 * If the device is not yet associated with a domain this is also done
1531 * in this function.
1532 */
Joerg Roedel94f6d192009-11-24 16:40:02 +01001533static struct protection_domain *get_domain(struct device *dev)
Joerg Roedelb20ac0d2008-06-26 21:27:59 +02001534{
Joerg Roedel94f6d192009-11-24 16:40:02 +01001535 struct protection_domain *domain;
Joerg Roedelb20ac0d2008-06-26 21:27:59 +02001536 struct dma_ops_domain *dma_dom;
Joerg Roedel94f6d192009-11-24 16:40:02 +01001537 u16 devid = get_device_id(dev);
Joerg Roedelb20ac0d2008-06-26 21:27:59 +02001538
Joerg Roedelf99c0f12009-11-23 16:52:56 +01001539 if (!check_device(dev))
Joerg Roedel94f6d192009-11-24 16:40:02 +01001540 return ERR_PTR(-EINVAL);
Joerg Roedeldbcc1122008-09-04 15:04:26 +02001541
Joerg Roedel94f6d192009-11-24 16:40:02 +01001542 domain = domain_for_device(dev);
1543 if (domain != NULL && !dma_ops_domain(domain))
1544 return ERR_PTR(-EBUSY);
Joerg Roedelf99c0f12009-11-23 16:52:56 +01001545
Joerg Roedel94f6d192009-11-24 16:40:02 +01001546 if (domain != NULL)
1547 return domain;
Joerg Roedelb20ac0d2008-06-26 21:27:59 +02001548
Joerg Roedel15898bb2009-11-24 15:39:42 +01001549 /* Device not bount yet - bind it */
Joerg Roedel94f6d192009-11-24 16:40:02 +01001550 dma_dom = find_protection_domain(devid);
Joerg Roedel15898bb2009-11-24 15:39:42 +01001551 if (!dma_dom)
Joerg Roedel94f6d192009-11-24 16:40:02 +01001552 dma_dom = amd_iommu_rlookup_table[devid]->default_dom;
1553 attach_device(dev, &dma_dom->domain);
Joerg Roedel15898bb2009-11-24 15:39:42 +01001554 DUMP_printk("Using protection domain %d for device %s\n",
Joerg Roedel94f6d192009-11-24 16:40:02 +01001555 dma_dom->domain.id, dev_name(dev));
Joerg Roedelf91ba192008-11-25 12:56:12 +01001556
Joerg Roedel94f6d192009-11-24 16:40:02 +01001557 return &dma_dom->domain;
Joerg Roedelb20ac0d2008-06-26 21:27:59 +02001558}
1559
Joerg Roedel04bfdd82009-09-02 16:00:23 +02001560static void update_device_table(struct protection_domain *domain)
1561{
Joerg Roedel2b681fa2009-09-03 17:14:57 +02001562 unsigned long flags;
Joerg Roedel04bfdd82009-09-02 16:00:23 +02001563 int i;
1564
1565 for (i = 0; i <= amd_iommu_last_bdf; ++i) {
1566 if (amd_iommu_pd_table[i] != domain)
1567 continue;
Joerg Roedel2b681fa2009-09-03 17:14:57 +02001568 write_lock_irqsave(&amd_iommu_devtable_lock, flags);
Joerg Roedel04bfdd82009-09-02 16:00:23 +02001569 set_dte_entry(i, domain);
Joerg Roedel2b681fa2009-09-03 17:14:57 +02001570 write_unlock_irqrestore(&amd_iommu_devtable_lock, flags);
Joerg Roedel04bfdd82009-09-02 16:00:23 +02001571 }
1572}
1573
1574static void update_domain(struct protection_domain *domain)
1575{
1576 if (!domain->updated)
1577 return;
1578
1579 update_device_table(domain);
1580 flush_devices_by_domain(domain);
Joerg Roedel601367d2009-11-20 16:08:55 +01001581 iommu_flush_tlb_pde(domain);
Joerg Roedel04bfdd82009-09-02 16:00:23 +02001582
1583 domain->updated = false;
1584}
1585
Joerg Roedel431b2a22008-07-11 17:14:22 +02001586/*
Joerg Roedel8bda3092009-05-12 12:02:46 +02001587 * This function fetches the PTE for a given address in the aperture
1588 */
1589static u64* dma_ops_get_pte(struct dma_ops_domain *dom,
1590 unsigned long address)
1591{
Joerg Roedel384de722009-05-15 12:30:05 +02001592 struct aperture_range *aperture;
Joerg Roedel8bda3092009-05-12 12:02:46 +02001593 u64 *pte, *pte_page;
1594
Joerg Roedel384de722009-05-15 12:30:05 +02001595 aperture = dom->aperture[APERTURE_RANGE_INDEX(address)];
1596 if (!aperture)
1597 return NULL;
1598
1599 pte = aperture->pte_pages[APERTURE_PAGE_INDEX(address)];
Joerg Roedel8bda3092009-05-12 12:02:46 +02001600 if (!pte) {
Joerg Roedelabdc5eb2009-09-03 11:33:51 +02001601 pte = alloc_pte(&dom->domain, address, PM_MAP_4k, &pte_page,
1602 GFP_ATOMIC);
Joerg Roedel384de722009-05-15 12:30:05 +02001603 aperture->pte_pages[APERTURE_PAGE_INDEX(address)] = pte_page;
1604 } else
Joerg Roedel8c8c1432009-09-02 17:30:00 +02001605 pte += PM_LEVEL_INDEX(0, address);
Joerg Roedel8bda3092009-05-12 12:02:46 +02001606
Joerg Roedel04bfdd82009-09-02 16:00:23 +02001607 update_domain(&dom->domain);
Joerg Roedel8bda3092009-05-12 12:02:46 +02001608
1609 return pte;
1610}
1611
1612/*
Joerg Roedel431b2a22008-07-11 17:14:22 +02001613 * This is the generic map function. It maps one 4kb page at paddr to
1614 * the given address in the DMA address space for the domain.
1615 */
Joerg Roedel680525e2009-11-23 18:44:42 +01001616static dma_addr_t dma_ops_domain_map(struct dma_ops_domain *dom,
Joerg Roedelcb76c322008-06-26 21:28:00 +02001617 unsigned long address,
1618 phys_addr_t paddr,
1619 int direction)
1620{
1621 u64 *pte, __pte;
1622
1623 WARN_ON(address > dom->aperture_size);
1624
1625 paddr &= PAGE_MASK;
1626
Joerg Roedel8bda3092009-05-12 12:02:46 +02001627 pte = dma_ops_get_pte(dom, address);
Joerg Roedel53812c12009-05-12 12:17:38 +02001628 if (!pte)
FUJITA Tomonori8fd524b2009-11-15 21:19:53 +09001629 return DMA_ERROR_CODE;
Joerg Roedelcb76c322008-06-26 21:28:00 +02001630
1631 __pte = paddr | IOMMU_PTE_P | IOMMU_PTE_FC;
1632
1633 if (direction == DMA_TO_DEVICE)
1634 __pte |= IOMMU_PTE_IR;
1635 else if (direction == DMA_FROM_DEVICE)
1636 __pte |= IOMMU_PTE_IW;
1637 else if (direction == DMA_BIDIRECTIONAL)
1638 __pte |= IOMMU_PTE_IR | IOMMU_PTE_IW;
1639
1640 WARN_ON(*pte);
1641
1642 *pte = __pte;
1643
1644 return (dma_addr_t)address;
1645}
1646
Joerg Roedel431b2a22008-07-11 17:14:22 +02001647/*
1648 * The generic unmapping function for on page in the DMA address space.
1649 */
Joerg Roedel680525e2009-11-23 18:44:42 +01001650static void dma_ops_domain_unmap(struct dma_ops_domain *dom,
Joerg Roedelcb76c322008-06-26 21:28:00 +02001651 unsigned long address)
1652{
Joerg Roedel384de722009-05-15 12:30:05 +02001653 struct aperture_range *aperture;
Joerg Roedelcb76c322008-06-26 21:28:00 +02001654 u64 *pte;
1655
1656 if (address >= dom->aperture_size)
1657 return;
1658
Joerg Roedel384de722009-05-15 12:30:05 +02001659 aperture = dom->aperture[APERTURE_RANGE_INDEX(address)];
1660 if (!aperture)
1661 return;
Joerg Roedelcb76c322008-06-26 21:28:00 +02001662
Joerg Roedel384de722009-05-15 12:30:05 +02001663 pte = aperture->pte_pages[APERTURE_PAGE_INDEX(address)];
1664 if (!pte)
1665 return;
1666
Joerg Roedel8c8c1432009-09-02 17:30:00 +02001667 pte += PM_LEVEL_INDEX(0, address);
Joerg Roedelcb76c322008-06-26 21:28:00 +02001668
1669 WARN_ON(!*pte);
1670
1671 *pte = 0ULL;
1672}
1673
Joerg Roedel431b2a22008-07-11 17:14:22 +02001674/*
1675 * This function contains common code for mapping of a physically
Joerg Roedel24f81162008-12-08 14:25:39 +01001676 * contiguous memory region into DMA address space. It is used by all
1677 * mapping functions provided with this IOMMU driver.
Joerg Roedel431b2a22008-07-11 17:14:22 +02001678 * Must be called with the domain lock held.
1679 */
Joerg Roedelcb76c322008-06-26 21:28:00 +02001680static dma_addr_t __map_single(struct device *dev,
Joerg Roedelcb76c322008-06-26 21:28:00 +02001681 struct dma_ops_domain *dma_dom,
1682 phys_addr_t paddr,
1683 size_t size,
Joerg Roedel6d4f3432008-09-04 19:18:02 +02001684 int dir,
Joerg Roedel832a90c2008-09-18 15:54:23 +02001685 bool align,
1686 u64 dma_mask)
Joerg Roedelcb76c322008-06-26 21:28:00 +02001687{
1688 dma_addr_t offset = paddr & ~PAGE_MASK;
Joerg Roedel53812c12009-05-12 12:17:38 +02001689 dma_addr_t address, start, ret;
Joerg Roedelcb76c322008-06-26 21:28:00 +02001690 unsigned int pages;
Joerg Roedel6d4f3432008-09-04 19:18:02 +02001691 unsigned long align_mask = 0;
Joerg Roedelcb76c322008-06-26 21:28:00 +02001692 int i;
1693
Joerg Roedele3c449f2008-10-15 22:02:11 -07001694 pages = iommu_num_pages(paddr, size, PAGE_SIZE);
Joerg Roedelcb76c322008-06-26 21:28:00 +02001695 paddr &= PAGE_MASK;
1696
Joerg Roedel8ecaf8f2008-12-12 16:13:04 +01001697 INC_STATS_COUNTER(total_map_requests);
1698
Joerg Roedelc1858972008-12-12 15:42:39 +01001699 if (pages > 1)
1700 INC_STATS_COUNTER(cross_page);
1701
Joerg Roedel6d4f3432008-09-04 19:18:02 +02001702 if (align)
1703 align_mask = (1UL << get_order(size)) - 1;
1704
Joerg Roedel11b83882009-05-19 10:23:15 +02001705retry:
Joerg Roedel832a90c2008-09-18 15:54:23 +02001706 address = dma_ops_alloc_addresses(dev, dma_dom, pages, align_mask,
1707 dma_mask);
FUJITA Tomonori8fd524b2009-11-15 21:19:53 +09001708 if (unlikely(address == DMA_ERROR_CODE)) {
Joerg Roedel11b83882009-05-19 10:23:15 +02001709 /*
1710 * setting next_address here will let the address
1711 * allocator only scan the new allocated range in the
1712 * first run. This is a small optimization.
1713 */
1714 dma_dom->next_address = dma_dom->aperture_size;
1715
Joerg Roedel576175c2009-11-23 19:08:46 +01001716 if (alloc_new_range(dma_dom, false, GFP_ATOMIC))
Joerg Roedel11b83882009-05-19 10:23:15 +02001717 goto out;
1718
1719 /*
1720 * aperture was sucessfully enlarged by 128 MB, try
1721 * allocation again
1722 */
1723 goto retry;
1724 }
Joerg Roedelcb76c322008-06-26 21:28:00 +02001725
1726 start = address;
1727 for (i = 0; i < pages; ++i) {
Joerg Roedel680525e2009-11-23 18:44:42 +01001728 ret = dma_ops_domain_map(dma_dom, start, paddr, dir);
FUJITA Tomonori8fd524b2009-11-15 21:19:53 +09001729 if (ret == DMA_ERROR_CODE)
Joerg Roedel53812c12009-05-12 12:17:38 +02001730 goto out_unmap;
1731
Joerg Roedelcb76c322008-06-26 21:28:00 +02001732 paddr += PAGE_SIZE;
1733 start += PAGE_SIZE;
1734 }
1735 address += offset;
1736
Joerg Roedel5774f7c2008-12-12 15:57:30 +01001737 ADD_STATS_COUNTER(alloced_io_mem, size);
1738
FUJITA Tomonoriafa9fdc2008-09-20 01:23:30 +09001739 if (unlikely(dma_dom->need_flush && !amd_iommu_unmap_flush)) {
Joerg Roedeldcd1e922009-11-20 15:30:58 +01001740 iommu_flush_tlb(&dma_dom->domain);
Joerg Roedel1c655772008-09-04 18:40:05 +02001741 dma_dom->need_flush = false;
Joerg Roedel318afd42009-11-23 18:32:38 +01001742 } else if (unlikely(amd_iommu_np_cache))
Joerg Roedel6de8ad92009-11-23 18:30:32 +01001743 iommu_flush_pages(&dma_dom->domain, address, size);
Joerg Roedel270cab242008-09-04 15:49:46 +02001744
Joerg Roedelcb76c322008-06-26 21:28:00 +02001745out:
1746 return address;
Joerg Roedel53812c12009-05-12 12:17:38 +02001747
1748out_unmap:
1749
1750 for (--i; i >= 0; --i) {
1751 start -= PAGE_SIZE;
Joerg Roedel680525e2009-11-23 18:44:42 +01001752 dma_ops_domain_unmap(dma_dom, start);
Joerg Roedel53812c12009-05-12 12:17:38 +02001753 }
1754
1755 dma_ops_free_addresses(dma_dom, address, pages);
1756
FUJITA Tomonori8fd524b2009-11-15 21:19:53 +09001757 return DMA_ERROR_CODE;
Joerg Roedelcb76c322008-06-26 21:28:00 +02001758}
1759
Joerg Roedel431b2a22008-07-11 17:14:22 +02001760/*
1761 * Does the reverse of the __map_single function. Must be called with
1762 * the domain lock held too
1763 */
Joerg Roedelcd8c82e2009-11-23 19:33:56 +01001764static void __unmap_single(struct dma_ops_domain *dma_dom,
Joerg Roedelcb76c322008-06-26 21:28:00 +02001765 dma_addr_t dma_addr,
1766 size_t size,
1767 int dir)
1768{
1769 dma_addr_t i, start;
1770 unsigned int pages;
1771
FUJITA Tomonori8fd524b2009-11-15 21:19:53 +09001772 if ((dma_addr == DMA_ERROR_CODE) ||
Joerg Roedelb8d99052008-12-08 14:40:26 +01001773 (dma_addr + size > dma_dom->aperture_size))
Joerg Roedelcb76c322008-06-26 21:28:00 +02001774 return;
1775
Joerg Roedele3c449f2008-10-15 22:02:11 -07001776 pages = iommu_num_pages(dma_addr, size, PAGE_SIZE);
Joerg Roedelcb76c322008-06-26 21:28:00 +02001777 dma_addr &= PAGE_MASK;
1778 start = dma_addr;
1779
1780 for (i = 0; i < pages; ++i) {
Joerg Roedel680525e2009-11-23 18:44:42 +01001781 dma_ops_domain_unmap(dma_dom, start);
Joerg Roedelcb76c322008-06-26 21:28:00 +02001782 start += PAGE_SIZE;
1783 }
1784
Joerg Roedel5774f7c2008-12-12 15:57:30 +01001785 SUB_STATS_COUNTER(alloced_io_mem, size);
1786
Joerg Roedelcb76c322008-06-26 21:28:00 +02001787 dma_ops_free_addresses(dma_dom, dma_addr, pages);
Joerg Roedel270cab242008-09-04 15:49:46 +02001788
Joerg Roedel80be3082008-11-06 14:59:05 +01001789 if (amd_iommu_unmap_flush || dma_dom->need_flush) {
Joerg Roedel6de8ad92009-11-23 18:30:32 +01001790 iommu_flush_pages(&dma_dom->domain, dma_addr, size);
Joerg Roedel80be3082008-11-06 14:59:05 +01001791 dma_dom->need_flush = false;
1792 }
Joerg Roedelcb76c322008-06-26 21:28:00 +02001793}
1794
Joerg Roedel431b2a22008-07-11 17:14:22 +02001795/*
1796 * The exported map_single function for dma_ops.
1797 */
FUJITA Tomonori51491362009-01-05 23:47:25 +09001798static dma_addr_t map_page(struct device *dev, struct page *page,
1799 unsigned long offset, size_t size,
1800 enum dma_data_direction dir,
1801 struct dma_attrs *attrs)
Joerg Roedel4da70b92008-06-26 21:28:01 +02001802{
1803 unsigned long flags;
Joerg Roedel4da70b92008-06-26 21:28:01 +02001804 struct protection_domain *domain;
Joerg Roedel4da70b92008-06-26 21:28:01 +02001805 dma_addr_t addr;
Joerg Roedel832a90c2008-09-18 15:54:23 +02001806 u64 dma_mask;
FUJITA Tomonori51491362009-01-05 23:47:25 +09001807 phys_addr_t paddr = page_to_phys(page) + offset;
Joerg Roedel4da70b92008-06-26 21:28:01 +02001808
Joerg Roedel0f2a86f2008-12-12 15:05:16 +01001809 INC_STATS_COUNTER(cnt_map_single);
1810
Joerg Roedel94f6d192009-11-24 16:40:02 +01001811 domain = get_domain(dev);
1812 if (PTR_ERR(domain) == -EINVAL)
Joerg Roedel4da70b92008-06-26 21:28:01 +02001813 return (dma_addr_t)paddr;
Joerg Roedel94f6d192009-11-24 16:40:02 +01001814 else if (IS_ERR(domain))
1815 return DMA_ERROR_CODE;
Joerg Roedel4da70b92008-06-26 21:28:01 +02001816
Joerg Roedelf99c0f12009-11-23 16:52:56 +01001817 dma_mask = *dev->dma_mask;
1818
Joerg Roedel4da70b92008-06-26 21:28:01 +02001819 spin_lock_irqsave(&domain->lock, flags);
Joerg Roedel94f6d192009-11-24 16:40:02 +01001820
Joerg Roedelcd8c82e2009-11-23 19:33:56 +01001821 addr = __map_single(dev, domain->priv, paddr, size, dir, false,
Joerg Roedel832a90c2008-09-18 15:54:23 +02001822 dma_mask);
FUJITA Tomonori8fd524b2009-11-15 21:19:53 +09001823 if (addr == DMA_ERROR_CODE)
Joerg Roedel4da70b92008-06-26 21:28:01 +02001824 goto out;
1825
Joerg Roedel0518a3a2009-11-20 16:00:05 +01001826 iommu_flush_complete(domain);
Joerg Roedel4da70b92008-06-26 21:28:01 +02001827
1828out:
1829 spin_unlock_irqrestore(&domain->lock, flags);
1830
1831 return addr;
1832}
1833
Joerg Roedel431b2a22008-07-11 17:14:22 +02001834/*
1835 * The exported unmap_single function for dma_ops.
1836 */
FUJITA Tomonori51491362009-01-05 23:47:25 +09001837static void unmap_page(struct device *dev, dma_addr_t dma_addr, size_t size,
1838 enum dma_data_direction dir, struct dma_attrs *attrs)
Joerg Roedel4da70b92008-06-26 21:28:01 +02001839{
1840 unsigned long flags;
Joerg Roedel4da70b92008-06-26 21:28:01 +02001841 struct protection_domain *domain;
Joerg Roedel4da70b92008-06-26 21:28:01 +02001842
Joerg Roedel146a6912008-12-12 15:07:12 +01001843 INC_STATS_COUNTER(cnt_unmap_single);
1844
Joerg Roedel94f6d192009-11-24 16:40:02 +01001845 domain = get_domain(dev);
1846 if (IS_ERR(domain))
Joerg Roedel5b28df62008-12-02 17:49:42 +01001847 return;
1848
Joerg Roedel4da70b92008-06-26 21:28:01 +02001849 spin_lock_irqsave(&domain->lock, flags);
1850
Joerg Roedelcd8c82e2009-11-23 19:33:56 +01001851 __unmap_single(domain->priv, dma_addr, size, dir);
Joerg Roedel4da70b92008-06-26 21:28:01 +02001852
Joerg Roedel0518a3a2009-11-20 16:00:05 +01001853 iommu_flush_complete(domain);
Joerg Roedel4da70b92008-06-26 21:28:01 +02001854
1855 spin_unlock_irqrestore(&domain->lock, flags);
1856}
1857
Joerg Roedel431b2a22008-07-11 17:14:22 +02001858/*
1859 * This is a special map_sg function which is used if we should map a
1860 * device which is not handled by an AMD IOMMU in the system.
1861 */
Joerg Roedel65b050a2008-06-26 21:28:02 +02001862static int map_sg_no_iommu(struct device *dev, struct scatterlist *sglist,
1863 int nelems, int dir)
1864{
1865 struct scatterlist *s;
1866 int i;
1867
1868 for_each_sg(sglist, s, nelems, i) {
1869 s->dma_address = (dma_addr_t)sg_phys(s);
1870 s->dma_length = s->length;
1871 }
1872
1873 return nelems;
1874}
1875
Joerg Roedel431b2a22008-07-11 17:14:22 +02001876/*
1877 * The exported map_sg function for dma_ops (handles scatter-gather
1878 * lists).
1879 */
Joerg Roedel65b050a2008-06-26 21:28:02 +02001880static int map_sg(struct device *dev, struct scatterlist *sglist,
FUJITA Tomonori160c1d82009-01-05 23:59:02 +09001881 int nelems, enum dma_data_direction dir,
1882 struct dma_attrs *attrs)
Joerg Roedel65b050a2008-06-26 21:28:02 +02001883{
1884 unsigned long flags;
Joerg Roedel65b050a2008-06-26 21:28:02 +02001885 struct protection_domain *domain;
Joerg Roedel65b050a2008-06-26 21:28:02 +02001886 int i;
1887 struct scatterlist *s;
1888 phys_addr_t paddr;
1889 int mapped_elems = 0;
Joerg Roedel832a90c2008-09-18 15:54:23 +02001890 u64 dma_mask;
Joerg Roedel65b050a2008-06-26 21:28:02 +02001891
Joerg Roedeld03f0672008-12-12 15:09:48 +01001892 INC_STATS_COUNTER(cnt_map_sg);
1893
Joerg Roedel94f6d192009-11-24 16:40:02 +01001894 domain = get_domain(dev);
1895 if (PTR_ERR(domain) == -EINVAL)
Joerg Roedelf99c0f12009-11-23 16:52:56 +01001896 return map_sg_no_iommu(dev, sglist, nelems, dir);
Joerg Roedel94f6d192009-11-24 16:40:02 +01001897 else if (IS_ERR(domain))
1898 return 0;
Joerg Roedeldbcc1122008-09-04 15:04:26 +02001899
Joerg Roedel832a90c2008-09-18 15:54:23 +02001900 dma_mask = *dev->dma_mask;
Joerg Roedel65b050a2008-06-26 21:28:02 +02001901
Joerg Roedel65b050a2008-06-26 21:28:02 +02001902 spin_lock_irqsave(&domain->lock, flags);
1903
1904 for_each_sg(sglist, s, nelems, i) {
1905 paddr = sg_phys(s);
1906
Joerg Roedelcd8c82e2009-11-23 19:33:56 +01001907 s->dma_address = __map_single(dev, domain->priv,
Joerg Roedel832a90c2008-09-18 15:54:23 +02001908 paddr, s->length, dir, false,
1909 dma_mask);
Joerg Roedel65b050a2008-06-26 21:28:02 +02001910
1911 if (s->dma_address) {
1912 s->dma_length = s->length;
1913 mapped_elems++;
1914 } else
1915 goto unmap;
Joerg Roedel65b050a2008-06-26 21:28:02 +02001916 }
1917
Joerg Roedel0518a3a2009-11-20 16:00:05 +01001918 iommu_flush_complete(domain);
Joerg Roedel65b050a2008-06-26 21:28:02 +02001919
1920out:
1921 spin_unlock_irqrestore(&domain->lock, flags);
1922
1923 return mapped_elems;
1924unmap:
1925 for_each_sg(sglist, s, mapped_elems, i) {
1926 if (s->dma_address)
Joerg Roedelcd8c82e2009-11-23 19:33:56 +01001927 __unmap_single(domain->priv, s->dma_address,
Joerg Roedel65b050a2008-06-26 21:28:02 +02001928 s->dma_length, dir);
1929 s->dma_address = s->dma_length = 0;
1930 }
1931
1932 mapped_elems = 0;
1933
1934 goto out;
1935}
1936
Joerg Roedel431b2a22008-07-11 17:14:22 +02001937/*
1938 * The exported map_sg function for dma_ops (handles scatter-gather
1939 * lists).
1940 */
Joerg Roedel65b050a2008-06-26 21:28:02 +02001941static void unmap_sg(struct device *dev, struct scatterlist *sglist,
FUJITA Tomonori160c1d82009-01-05 23:59:02 +09001942 int nelems, enum dma_data_direction dir,
1943 struct dma_attrs *attrs)
Joerg Roedel65b050a2008-06-26 21:28:02 +02001944{
1945 unsigned long flags;
Joerg Roedel65b050a2008-06-26 21:28:02 +02001946 struct protection_domain *domain;
1947 struct scatterlist *s;
Joerg Roedel65b050a2008-06-26 21:28:02 +02001948 int i;
1949
Joerg Roedel55877a62008-12-12 15:12:14 +01001950 INC_STATS_COUNTER(cnt_unmap_sg);
1951
Joerg Roedel94f6d192009-11-24 16:40:02 +01001952 domain = get_domain(dev);
1953 if (IS_ERR(domain))
Joerg Roedel5b28df62008-12-02 17:49:42 +01001954 return;
1955
Joerg Roedel65b050a2008-06-26 21:28:02 +02001956 spin_lock_irqsave(&domain->lock, flags);
1957
1958 for_each_sg(sglist, s, nelems, i) {
Joerg Roedelcd8c82e2009-11-23 19:33:56 +01001959 __unmap_single(domain->priv, s->dma_address,
Joerg Roedel65b050a2008-06-26 21:28:02 +02001960 s->dma_length, dir);
Joerg Roedel65b050a2008-06-26 21:28:02 +02001961 s->dma_address = s->dma_length = 0;
1962 }
1963
Joerg Roedel0518a3a2009-11-20 16:00:05 +01001964 iommu_flush_complete(domain);
Joerg Roedel65b050a2008-06-26 21:28:02 +02001965
1966 spin_unlock_irqrestore(&domain->lock, flags);
1967}
1968
Joerg Roedel431b2a22008-07-11 17:14:22 +02001969/*
1970 * The exported alloc_coherent function for dma_ops.
1971 */
Joerg Roedel5d8b53c2008-06-26 21:28:03 +02001972static void *alloc_coherent(struct device *dev, size_t size,
1973 dma_addr_t *dma_addr, gfp_t flag)
1974{
1975 unsigned long flags;
1976 void *virt_addr;
Joerg Roedel5d8b53c2008-06-26 21:28:03 +02001977 struct protection_domain *domain;
Joerg Roedel5d8b53c2008-06-26 21:28:03 +02001978 phys_addr_t paddr;
Joerg Roedel832a90c2008-09-18 15:54:23 +02001979 u64 dma_mask = dev->coherent_dma_mask;
Joerg Roedel5d8b53c2008-06-26 21:28:03 +02001980
Joerg Roedelc8f0fb32008-12-12 15:14:21 +01001981 INC_STATS_COUNTER(cnt_alloc_coherent);
1982
Joerg Roedel94f6d192009-11-24 16:40:02 +01001983 domain = get_domain(dev);
1984 if (PTR_ERR(domain) == -EINVAL) {
Joerg Roedelf99c0f12009-11-23 16:52:56 +01001985 virt_addr = (void *)__get_free_pages(flag, get_order(size));
1986 *dma_addr = __pa(virt_addr);
1987 return virt_addr;
Joerg Roedel94f6d192009-11-24 16:40:02 +01001988 } else if (IS_ERR(domain))
1989 return NULL;
Joerg Roedeldbcc1122008-09-04 15:04:26 +02001990
Joerg Roedelf99c0f12009-11-23 16:52:56 +01001991 dma_mask = dev->coherent_dma_mask;
1992 flag &= ~(__GFP_DMA | __GFP_HIGHMEM | __GFP_DMA32);
1993 flag |= __GFP_ZERO;
FUJITA Tomonori13d9fea2008-09-10 20:19:40 +09001994
Joerg Roedel5d8b53c2008-06-26 21:28:03 +02001995 virt_addr = (void *)__get_free_pages(flag, get_order(size));
1996 if (!virt_addr)
Jaswinder Singh Rajputb25ae672009-07-01 19:53:14 +05301997 return NULL;
Joerg Roedel5d8b53c2008-06-26 21:28:03 +02001998
Joerg Roedel5d8b53c2008-06-26 21:28:03 +02001999 paddr = virt_to_phys(virt_addr);
2000
Joerg Roedel832a90c2008-09-18 15:54:23 +02002001 if (!dma_mask)
2002 dma_mask = *dev->dma_mask;
2003
Joerg Roedel5d8b53c2008-06-26 21:28:03 +02002004 spin_lock_irqsave(&domain->lock, flags);
2005
Joerg Roedelcd8c82e2009-11-23 19:33:56 +01002006 *dma_addr = __map_single(dev, domain->priv, paddr,
Joerg Roedel832a90c2008-09-18 15:54:23 +02002007 size, DMA_BIDIRECTIONAL, true, dma_mask);
Joerg Roedel5d8b53c2008-06-26 21:28:03 +02002008
FUJITA Tomonori8fd524b2009-11-15 21:19:53 +09002009 if (*dma_addr == DMA_ERROR_CODE) {
Jiri Slaby367d04c2009-05-28 09:54:48 +02002010 spin_unlock_irqrestore(&domain->lock, flags);
Joerg Roedel5b28df62008-12-02 17:49:42 +01002011 goto out_free;
Jiri Slaby367d04c2009-05-28 09:54:48 +02002012 }
Joerg Roedel5d8b53c2008-06-26 21:28:03 +02002013
Joerg Roedel0518a3a2009-11-20 16:00:05 +01002014 iommu_flush_complete(domain);
Joerg Roedel5d8b53c2008-06-26 21:28:03 +02002015
Joerg Roedel5d8b53c2008-06-26 21:28:03 +02002016 spin_unlock_irqrestore(&domain->lock, flags);
2017
2018 return virt_addr;
Joerg Roedel5b28df62008-12-02 17:49:42 +01002019
2020out_free:
2021
2022 free_pages((unsigned long)virt_addr, get_order(size));
2023
2024 return NULL;
Joerg Roedel5d8b53c2008-06-26 21:28:03 +02002025}
2026
Joerg Roedel431b2a22008-07-11 17:14:22 +02002027/*
2028 * The exported free_coherent function for dma_ops.
Joerg Roedel431b2a22008-07-11 17:14:22 +02002029 */
Joerg Roedel5d8b53c2008-06-26 21:28:03 +02002030static void free_coherent(struct device *dev, size_t size,
2031 void *virt_addr, dma_addr_t dma_addr)
2032{
2033 unsigned long flags;
Joerg Roedel5d8b53c2008-06-26 21:28:03 +02002034 struct protection_domain *domain;
Joerg Roedel5d8b53c2008-06-26 21:28:03 +02002035
Joerg Roedel5d31ee72008-12-12 15:16:38 +01002036 INC_STATS_COUNTER(cnt_free_coherent);
2037
Joerg Roedel94f6d192009-11-24 16:40:02 +01002038 domain = get_domain(dev);
2039 if (IS_ERR(domain))
Joerg Roedel5b28df62008-12-02 17:49:42 +01002040 goto free_mem;
2041
Joerg Roedel5d8b53c2008-06-26 21:28:03 +02002042 spin_lock_irqsave(&domain->lock, flags);
2043
Joerg Roedelcd8c82e2009-11-23 19:33:56 +01002044 __unmap_single(domain->priv, dma_addr, size, DMA_BIDIRECTIONAL);
Joerg Roedel5d8b53c2008-06-26 21:28:03 +02002045
Joerg Roedel0518a3a2009-11-20 16:00:05 +01002046 iommu_flush_complete(domain);
Joerg Roedel5d8b53c2008-06-26 21:28:03 +02002047
2048 spin_unlock_irqrestore(&domain->lock, flags);
2049
2050free_mem:
2051 free_pages((unsigned long)virt_addr, get_order(size));
2052}
2053
Joerg Roedelc432f3d2008-06-26 21:28:04 +02002054/*
Joerg Roedelb39ba6a2008-09-09 18:40:46 +02002055 * This function is called by the DMA layer to find out if we can handle a
2056 * particular device. It is part of the dma_ops.
2057 */
2058static int amd_iommu_dma_supported(struct device *dev, u64 mask)
2059{
Joerg Roedel420aef82009-11-23 16:14:57 +01002060 return check_device(dev);
Joerg Roedelb39ba6a2008-09-09 18:40:46 +02002061}
2062
2063/*
Joerg Roedel431b2a22008-07-11 17:14:22 +02002064 * The function for pre-allocating protection domains.
2065 *
Joerg Roedelc432f3d2008-06-26 21:28:04 +02002066 * If the driver core informs the DMA layer if a driver grabs a device
2067 * we don't need to preallocate the protection domains anymore.
2068 * For now we have to.
2069 */
Jaswinder Singh Rajput0e93dd82008-12-29 21:45:22 +05302070static void prealloc_protection_domains(void)
Joerg Roedelc432f3d2008-06-26 21:28:04 +02002071{
2072 struct pci_dev *dev = NULL;
2073 struct dma_ops_domain *dma_dom;
Joerg Roedel98fc5a62009-11-24 17:19:23 +01002074 u16 devid;
Joerg Roedelc432f3d2008-06-26 21:28:04 +02002075
2076 while ((dev = pci_get_device(PCI_ANY_ID, PCI_ANY_ID, dev)) != NULL) {
Joerg Roedel98fc5a62009-11-24 17:19:23 +01002077
2078 /* Do we handle this device? */
2079 if (!check_device(&dev->dev))
Joerg Roedelc432f3d2008-06-26 21:28:04 +02002080 continue;
Joerg Roedel98fc5a62009-11-24 17:19:23 +01002081
2082 /* Is there already any domain for it? */
Joerg Roedel15898bb2009-11-24 15:39:42 +01002083 if (domain_for_device(&dev->dev))
Joerg Roedelc432f3d2008-06-26 21:28:04 +02002084 continue;
Joerg Roedel98fc5a62009-11-24 17:19:23 +01002085
2086 devid = get_device_id(&dev->dev);
2087
Joerg Roedel87a64d52009-11-24 17:26:43 +01002088 dma_dom = dma_ops_domain_alloc();
Joerg Roedelc432f3d2008-06-26 21:28:04 +02002089 if (!dma_dom)
2090 continue;
2091 init_unity_mappings_for_device(dma_dom, devid);
Joerg Roedelbd60b732008-09-11 10:24:48 +02002092 dma_dom->target_dev = devid;
2093
Joerg Roedel15898bb2009-11-24 15:39:42 +01002094 attach_device(&dev->dev, &dma_dom->domain);
Joerg Roedelbe831292009-11-23 12:50:00 +01002095
Joerg Roedelbd60b732008-09-11 10:24:48 +02002096 list_add_tail(&dma_dom->list, &iommu_pd_list);
Joerg Roedelc432f3d2008-06-26 21:28:04 +02002097 }
2098}
2099
FUJITA Tomonori160c1d82009-01-05 23:59:02 +09002100static struct dma_map_ops amd_iommu_dma_ops = {
Joerg Roedel6631ee92008-06-26 21:28:05 +02002101 .alloc_coherent = alloc_coherent,
2102 .free_coherent = free_coherent,
FUJITA Tomonori51491362009-01-05 23:47:25 +09002103 .map_page = map_page,
2104 .unmap_page = unmap_page,
Joerg Roedel6631ee92008-06-26 21:28:05 +02002105 .map_sg = map_sg,
2106 .unmap_sg = unmap_sg,
Joerg Roedelb39ba6a2008-09-09 18:40:46 +02002107 .dma_supported = amd_iommu_dma_supported,
Joerg Roedel6631ee92008-06-26 21:28:05 +02002108};
2109
Joerg Roedel431b2a22008-07-11 17:14:22 +02002110/*
2111 * The function which clues the AMD IOMMU driver into dma_ops.
2112 */
Joerg Roedel6631ee92008-06-26 21:28:05 +02002113int __init amd_iommu_init_dma_ops(void)
2114{
2115 struct amd_iommu *iommu;
Joerg Roedel6631ee92008-06-26 21:28:05 +02002116 int ret;
2117
Joerg Roedel431b2a22008-07-11 17:14:22 +02002118 /*
2119 * first allocate a default protection domain for every IOMMU we
2120 * found in the system. Devices not assigned to any other
2121 * protection domain will be assigned to the default one.
2122 */
Joerg Roedel3bd22172009-05-04 15:06:20 +02002123 for_each_iommu(iommu) {
Joerg Roedel87a64d52009-11-24 17:26:43 +01002124 iommu->default_dom = dma_ops_domain_alloc();
Joerg Roedel6631ee92008-06-26 21:28:05 +02002125 if (iommu->default_dom == NULL)
2126 return -ENOMEM;
Joerg Roedele2dc14a2008-12-10 18:48:59 +01002127 iommu->default_dom->domain.flags |= PD_DEFAULT_MASK;
Joerg Roedel6631ee92008-06-26 21:28:05 +02002128 ret = iommu_init_unity_mappings(iommu);
2129 if (ret)
2130 goto free_domains;
2131 }
2132
Joerg Roedel431b2a22008-07-11 17:14:22 +02002133 /*
Joerg Roedel8793abe2009-11-27 11:40:33 +01002134 * Pre-allocate the protection domains for each device.
Joerg Roedel431b2a22008-07-11 17:14:22 +02002135 */
Joerg Roedel8793abe2009-11-27 11:40:33 +01002136 prealloc_protection_domains();
Joerg Roedel6631ee92008-06-26 21:28:05 +02002137
2138 iommu_detected = 1;
FUJITA Tomonori75f1cdf2009-11-10 19:46:20 +09002139 swiotlb = 0;
Ingo Molnar92af4e22008-06-27 10:48:16 +02002140#ifdef CONFIG_GART_IOMMU
Joerg Roedel6631ee92008-06-26 21:28:05 +02002141 gart_iommu_aperture_disabled = 1;
2142 gart_iommu_aperture = 0;
Ingo Molnar92af4e22008-06-27 10:48:16 +02002143#endif
Joerg Roedel6631ee92008-06-26 21:28:05 +02002144
Joerg Roedel431b2a22008-07-11 17:14:22 +02002145 /* Make the driver finally visible to the drivers */
Joerg Roedel6631ee92008-06-26 21:28:05 +02002146 dma_ops = &amd_iommu_dma_ops;
2147
Joerg Roedel26961ef2008-12-03 17:00:17 +01002148 register_iommu(&amd_iommu_ops);
Joerg Roedel26961ef2008-12-03 17:00:17 +01002149
Joerg Roedele275a2a2008-12-10 18:27:25 +01002150 bus_register_notifier(&pci_bus_type, &device_nb);
2151
Joerg Roedel7f265082008-12-12 13:50:21 +01002152 amd_iommu_stats_init();
2153
Joerg Roedel6631ee92008-06-26 21:28:05 +02002154 return 0;
2155
2156free_domains:
2157
Joerg Roedel3bd22172009-05-04 15:06:20 +02002158 for_each_iommu(iommu) {
Joerg Roedel6631ee92008-06-26 21:28:05 +02002159 if (iommu->default_dom)
2160 dma_ops_domain_free(iommu->default_dom);
2161 }
2162
2163 return ret;
2164}
Joerg Roedel6d98cd82008-12-08 12:05:55 +01002165
2166/*****************************************************************************
2167 *
2168 * The following functions belong to the exported interface of AMD IOMMU
2169 *
2170 * This interface allows access to lower level functions of the IOMMU
2171 * like protection domain handling and assignement of devices to domains
2172 * which is not possible with the dma_ops interface.
2173 *
2174 *****************************************************************************/
2175
Joerg Roedel6d98cd82008-12-08 12:05:55 +01002176static void cleanup_domain(struct protection_domain *domain)
2177{
2178 unsigned long flags;
2179 u16 devid;
2180
2181 write_lock_irqsave(&amd_iommu_devtable_lock, flags);
2182
2183 for (devid = 0; devid <= amd_iommu_last_bdf; ++devid)
2184 if (amd_iommu_pd_table[devid] == domain)
Joerg Roedel15898bb2009-11-24 15:39:42 +01002185 clear_dte_entry(devid);
Joerg Roedel6d98cd82008-12-08 12:05:55 +01002186
2187 write_unlock_irqrestore(&amd_iommu_devtable_lock, flags);
2188}
2189
Joerg Roedel26508152009-08-26 16:52:40 +02002190static void protection_domain_free(struct protection_domain *domain)
2191{
2192 if (!domain)
2193 return;
2194
Joerg Roedelaeb26f52009-11-20 16:44:01 +01002195 del_domain_from_list(domain);
2196
Joerg Roedel26508152009-08-26 16:52:40 +02002197 if (domain->id)
2198 domain_id_free(domain->id);
2199
2200 kfree(domain);
2201}
2202
2203static struct protection_domain *protection_domain_alloc(void)
Joerg Roedelc156e342008-12-02 18:13:27 +01002204{
2205 struct protection_domain *domain;
2206
2207 domain = kzalloc(sizeof(*domain), GFP_KERNEL);
2208 if (!domain)
Joerg Roedel26508152009-08-26 16:52:40 +02002209 return NULL;
Joerg Roedelc156e342008-12-02 18:13:27 +01002210
2211 spin_lock_init(&domain->lock);
Joerg Roedelc156e342008-12-02 18:13:27 +01002212 domain->id = domain_id_alloc();
2213 if (!domain->id)
Joerg Roedel26508152009-08-26 16:52:40 +02002214 goto out_err;
2215
Joerg Roedelaeb26f52009-11-20 16:44:01 +01002216 add_domain_to_list(domain);
2217
Joerg Roedel26508152009-08-26 16:52:40 +02002218 return domain;
2219
2220out_err:
2221 kfree(domain);
2222
2223 return NULL;
2224}
2225
2226static int amd_iommu_domain_init(struct iommu_domain *dom)
2227{
2228 struct protection_domain *domain;
2229
2230 domain = protection_domain_alloc();
2231 if (!domain)
Joerg Roedelc156e342008-12-02 18:13:27 +01002232 goto out_free;
Joerg Roedel26508152009-08-26 16:52:40 +02002233
2234 domain->mode = PAGE_MODE_3_LEVEL;
Joerg Roedelc156e342008-12-02 18:13:27 +01002235 domain->pt_root = (void *)get_zeroed_page(GFP_KERNEL);
2236 if (!domain->pt_root)
2237 goto out_free;
2238
2239 dom->priv = domain;
2240
2241 return 0;
2242
2243out_free:
Joerg Roedel26508152009-08-26 16:52:40 +02002244 protection_domain_free(domain);
Joerg Roedelc156e342008-12-02 18:13:27 +01002245
2246 return -ENOMEM;
2247}
2248
Joerg Roedel98383fc2008-12-02 18:34:12 +01002249static void amd_iommu_domain_destroy(struct iommu_domain *dom)
2250{
2251 struct protection_domain *domain = dom->priv;
2252
2253 if (!domain)
2254 return;
2255
2256 if (domain->dev_cnt > 0)
2257 cleanup_domain(domain);
2258
2259 BUG_ON(domain->dev_cnt != 0);
2260
2261 free_pagetable(domain);
2262
2263 domain_id_free(domain->id);
2264
2265 kfree(domain);
2266
2267 dom->priv = NULL;
2268}
2269
Joerg Roedel684f2882008-12-08 12:07:44 +01002270static void amd_iommu_detach_device(struct iommu_domain *dom,
2271 struct device *dev)
2272{
Joerg Roedel684f2882008-12-08 12:07:44 +01002273 struct amd_iommu *iommu;
Joerg Roedel684f2882008-12-08 12:07:44 +01002274 u16 devid;
2275
Joerg Roedel98fc5a62009-11-24 17:19:23 +01002276 if (!check_device(dev))
Joerg Roedel684f2882008-12-08 12:07:44 +01002277 return;
2278
Joerg Roedel98fc5a62009-11-24 17:19:23 +01002279 devid = get_device_id(dev);
Joerg Roedel684f2882008-12-08 12:07:44 +01002280
Joerg Roedel98fc5a62009-11-24 17:19:23 +01002281 if (amd_iommu_pd_table[devid] != NULL)
Joerg Roedel15898bb2009-11-24 15:39:42 +01002282 detach_device(dev);
Joerg Roedel684f2882008-12-08 12:07:44 +01002283
2284 iommu = amd_iommu_rlookup_table[devid];
2285 if (!iommu)
2286 return;
2287
2288 iommu_queue_inv_dev_entry(iommu, devid);
2289 iommu_completion_wait(iommu);
2290}
2291
Joerg Roedel01106062008-12-02 19:34:11 +01002292static int amd_iommu_attach_device(struct iommu_domain *dom,
2293 struct device *dev)
2294{
2295 struct protection_domain *domain = dom->priv;
2296 struct protection_domain *old_domain;
2297 struct amd_iommu *iommu;
Joerg Roedel15898bb2009-11-24 15:39:42 +01002298 int ret;
Joerg Roedel01106062008-12-02 19:34:11 +01002299 u16 devid;
2300
Joerg Roedel98fc5a62009-11-24 17:19:23 +01002301 if (!check_device(dev))
Joerg Roedel01106062008-12-02 19:34:11 +01002302 return -EINVAL;
2303
Joerg Roedel98fc5a62009-11-24 17:19:23 +01002304 devid = get_device_id(dev);
Joerg Roedel01106062008-12-02 19:34:11 +01002305
2306 iommu = amd_iommu_rlookup_table[devid];
2307 if (!iommu)
2308 return -EINVAL;
2309
Joerg Roedel15898bb2009-11-24 15:39:42 +01002310 old_domain = amd_iommu_pd_table[devid];
Joerg Roedel01106062008-12-02 19:34:11 +01002311 if (old_domain)
Joerg Roedel15898bb2009-11-24 15:39:42 +01002312 detach_device(dev);
Joerg Roedel01106062008-12-02 19:34:11 +01002313
Joerg Roedel15898bb2009-11-24 15:39:42 +01002314 ret = attach_device(dev, domain);
Joerg Roedel01106062008-12-02 19:34:11 +01002315
2316 iommu_completion_wait(iommu);
2317
Joerg Roedel15898bb2009-11-24 15:39:42 +01002318 return ret;
Joerg Roedel01106062008-12-02 19:34:11 +01002319}
2320
Joerg Roedelc6229ca2008-12-02 19:48:43 +01002321static int amd_iommu_map_range(struct iommu_domain *dom,
2322 unsigned long iova, phys_addr_t paddr,
2323 size_t size, int iommu_prot)
2324{
2325 struct protection_domain *domain = dom->priv;
2326 unsigned long i, npages = iommu_num_pages(paddr, size, PAGE_SIZE);
2327 int prot = 0;
2328 int ret;
2329
2330 if (iommu_prot & IOMMU_READ)
2331 prot |= IOMMU_PROT_IR;
2332 if (iommu_prot & IOMMU_WRITE)
2333 prot |= IOMMU_PROT_IW;
2334
2335 iova &= PAGE_MASK;
2336 paddr &= PAGE_MASK;
2337
2338 for (i = 0; i < npages; ++i) {
Joerg Roedelabdc5eb2009-09-03 11:33:51 +02002339 ret = iommu_map_page(domain, iova, paddr, prot, PM_MAP_4k);
Joerg Roedelc6229ca2008-12-02 19:48:43 +01002340 if (ret)
2341 return ret;
2342
2343 iova += PAGE_SIZE;
2344 paddr += PAGE_SIZE;
2345 }
2346
2347 return 0;
2348}
2349
Joerg Roedeleb74ff62008-12-02 19:59:10 +01002350static void amd_iommu_unmap_range(struct iommu_domain *dom,
2351 unsigned long iova, size_t size)
2352{
2353
2354 struct protection_domain *domain = dom->priv;
2355 unsigned long i, npages = iommu_num_pages(iova, size, PAGE_SIZE);
2356
2357 iova &= PAGE_MASK;
2358
2359 for (i = 0; i < npages; ++i) {
Joerg Roedela6b256b2009-09-03 12:21:31 +02002360 iommu_unmap_page(domain, iova, PM_MAP_4k);
Joerg Roedeleb74ff62008-12-02 19:59:10 +01002361 iova += PAGE_SIZE;
2362 }
2363
Joerg Roedel601367d2009-11-20 16:08:55 +01002364 iommu_flush_tlb_pde(domain);
Joerg Roedeleb74ff62008-12-02 19:59:10 +01002365}
2366
Joerg Roedel645c4c82008-12-02 20:05:50 +01002367static phys_addr_t amd_iommu_iova_to_phys(struct iommu_domain *dom,
2368 unsigned long iova)
2369{
2370 struct protection_domain *domain = dom->priv;
2371 unsigned long offset = iova & ~PAGE_MASK;
2372 phys_addr_t paddr;
2373 u64 *pte;
2374
Joerg Roedela6b256b2009-09-03 12:21:31 +02002375 pte = fetch_pte(domain, iova, PM_MAP_4k);
Joerg Roedel645c4c82008-12-02 20:05:50 +01002376
Joerg Roedela6d41a42009-09-02 17:08:55 +02002377 if (!pte || !IOMMU_PTE_PRESENT(*pte))
Joerg Roedel645c4c82008-12-02 20:05:50 +01002378 return 0;
2379
2380 paddr = *pte & IOMMU_PAGE_MASK;
2381 paddr |= offset;
2382
2383 return paddr;
2384}
2385
Sheng Yangdbb9fd82009-03-18 15:33:06 +08002386static int amd_iommu_domain_has_cap(struct iommu_domain *domain,
2387 unsigned long cap)
2388{
2389 return 0;
2390}
2391
Joerg Roedel26961ef2008-12-03 17:00:17 +01002392static struct iommu_ops amd_iommu_ops = {
2393 .domain_init = amd_iommu_domain_init,
2394 .domain_destroy = amd_iommu_domain_destroy,
2395 .attach_dev = amd_iommu_attach_device,
2396 .detach_dev = amd_iommu_detach_device,
2397 .map = amd_iommu_map_range,
2398 .unmap = amd_iommu_unmap_range,
2399 .iova_to_phys = amd_iommu_iova_to_phys,
Sheng Yangdbb9fd82009-03-18 15:33:06 +08002400 .domain_has_cap = amd_iommu_domain_has_cap,
Joerg Roedel26961ef2008-12-03 17:00:17 +01002401};
2402
Joerg Roedel0feae532009-08-26 15:26:30 +02002403/*****************************************************************************
2404 *
2405 * The next functions do a basic initialization of IOMMU for pass through
2406 * mode
2407 *
2408 * In passthrough mode the IOMMU is initialized and enabled but not used for
2409 * DMA-API translation.
2410 *
2411 *****************************************************************************/
2412
2413int __init amd_iommu_init_passthrough(void)
2414{
Joerg Roedel15898bb2009-11-24 15:39:42 +01002415 struct amd_iommu *iommu;
Joerg Roedel0feae532009-08-26 15:26:30 +02002416 struct pci_dev *dev = NULL;
Joerg Roedel15898bb2009-11-24 15:39:42 +01002417 u16 devid;
Joerg Roedel0feae532009-08-26 15:26:30 +02002418
2419 /* allocate passthroug domain */
2420 pt_domain = protection_domain_alloc();
2421 if (!pt_domain)
2422 return -ENOMEM;
2423
2424 pt_domain->mode |= PAGE_MODE_NONE;
2425
2426 while ((dev = pci_get_device(PCI_ANY_ID, PCI_ANY_ID, dev)) != NULL) {
Joerg Roedel0feae532009-08-26 15:26:30 +02002427
Joerg Roedel98fc5a62009-11-24 17:19:23 +01002428 if (!check_device(&dev->dev))
Joerg Roedel0feae532009-08-26 15:26:30 +02002429 continue;
2430
Joerg Roedel98fc5a62009-11-24 17:19:23 +01002431 devid = get_device_id(&dev->dev);
2432
Joerg Roedel15898bb2009-11-24 15:39:42 +01002433 iommu = amd_iommu_rlookup_table[devid];
Joerg Roedel0feae532009-08-26 15:26:30 +02002434 if (!iommu)
2435 continue;
2436
Joerg Roedel15898bb2009-11-24 15:39:42 +01002437 attach_device(&dev->dev, pt_domain);
Joerg Roedel0feae532009-08-26 15:26:30 +02002438 }
2439
2440 pr_info("AMD-Vi: Initialized for Passthrough Mode\n");
2441
2442 return 0;
2443}