blob: b90a78cfdcb8e1f7eb6d93b185aa904c25cbad5f [file] [log] [blame]
Joerg Roedelf6e2e6b2008-06-26 21:27:39 +02001/*
2 * Copyright (C) 2007-2008 Advanced Micro Devices, Inc.
3 * Author: Joerg Roedel <joerg.roedel@amd.com>
4 * Leo Duran <leo.duran@amd.com>
5 *
6 * This program is free software; you can redistribute it and/or modify it
7 * under the terms of the GNU General Public License version 2 as published
8 * by the Free Software Foundation.
9 *
10 * This program is distributed in the hope that it will be useful,
11 * but WITHOUT ANY WARRANTY; without even the implied warranty of
12 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
13 * GNU General Public License for more details.
14 *
15 * You should have received a copy of the GNU General Public License
16 * along with this program; if not, write to the Free Software
17 * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
18 */
19
20#include <linux/pci.h>
21#include <linux/acpi.h>
22#include <linux/gfp.h>
23#include <linux/list.h>
Joerg Roedel7441e9c2008-06-30 20:18:02 +020024#include <linux/sysdev.h>
Joerg Roedela80dc3e2008-09-11 16:51:41 +020025#include <linux/interrupt.h>
26#include <linux/msi.h>
Joerg Roedelf6e2e6b2008-06-26 21:27:39 +020027#include <asm/pci-direct.h>
28#include <asm/amd_iommu_types.h>
Joerg Roedelc6da9922008-06-26 21:28:06 +020029#include <asm/amd_iommu.h>
FUJITA Tomonori46a7fa22008-07-11 10:23:42 +090030#include <asm/iommu.h>
Joerg Roedel1d9b16d2008-11-27 18:39:15 +010031#include <asm/gart.h>
Joerg Roedelf6e2e6b2008-06-26 21:27:39 +020032
33/*
34 * definitions for the ACPI scanning code
35 */
Joerg Roedelf6e2e6b2008-06-26 21:27:39 +020036#define IVRS_HEADER_LENGTH 48
Joerg Roedelf6e2e6b2008-06-26 21:27:39 +020037
38#define ACPI_IVHD_TYPE 0x10
39#define ACPI_IVMD_TYPE_ALL 0x20
40#define ACPI_IVMD_TYPE 0x21
41#define ACPI_IVMD_TYPE_RANGE 0x22
42
43#define IVHD_DEV_ALL 0x01
44#define IVHD_DEV_SELECT 0x02
45#define IVHD_DEV_SELECT_RANGE_START 0x03
46#define IVHD_DEV_RANGE_END 0x04
47#define IVHD_DEV_ALIAS 0x42
48#define IVHD_DEV_ALIAS_RANGE 0x43
49#define IVHD_DEV_EXT_SELECT 0x46
50#define IVHD_DEV_EXT_SELECT_RANGE 0x47
51
Joerg Roedel6da73422009-05-04 11:44:38 +020052#define IVHD_FLAG_HT_TUN_EN_MASK 0x01
53#define IVHD_FLAG_PASSPW_EN_MASK 0x02
54#define IVHD_FLAG_RESPASSPW_EN_MASK 0x04
55#define IVHD_FLAG_ISOC_EN_MASK 0x08
Joerg Roedelf6e2e6b2008-06-26 21:27:39 +020056
57#define IVMD_FLAG_EXCL_RANGE 0x08
58#define IVMD_FLAG_UNITY_MAP 0x01
59
60#define ACPI_DEVFLAG_INITPASS 0x01
61#define ACPI_DEVFLAG_EXTINT 0x02
62#define ACPI_DEVFLAG_NMI 0x04
63#define ACPI_DEVFLAG_SYSMGT1 0x10
64#define ACPI_DEVFLAG_SYSMGT2 0x20
65#define ACPI_DEVFLAG_LINT0 0x40
66#define ACPI_DEVFLAG_LINT1 0x80
67#define ACPI_DEVFLAG_ATSDIS 0x10000000
68
Joerg Roedelb65233a2008-07-11 17:14:21 +020069/*
70 * ACPI table definitions
71 *
72 * These data structures are laid over the table to parse the important values
73 * out of it.
74 */
75
76/*
77 * structure describing one IOMMU in the ACPI table. Typically followed by one
78 * or more ivhd_entrys.
79 */
Joerg Roedelf6e2e6b2008-06-26 21:27:39 +020080struct ivhd_header {
81 u8 type;
82 u8 flags;
83 u16 length;
84 u16 devid;
85 u16 cap_ptr;
86 u64 mmio_phys;
87 u16 pci_seg;
88 u16 info;
89 u32 reserved;
90} __attribute__((packed));
91
Joerg Roedelb65233a2008-07-11 17:14:21 +020092/*
93 * A device entry describing which devices a specific IOMMU translates and
94 * which requestor ids they use.
95 */
Joerg Roedelf6e2e6b2008-06-26 21:27:39 +020096struct ivhd_entry {
97 u8 type;
98 u16 devid;
99 u8 flags;
100 u32 ext;
101} __attribute__((packed));
102
Joerg Roedelb65233a2008-07-11 17:14:21 +0200103/*
104 * An AMD IOMMU memory definition structure. It defines things like exclusion
105 * ranges for devices and regions that should be unity mapped.
106 */
Joerg Roedelf6e2e6b2008-06-26 21:27:39 +0200107struct ivmd_header {
108 u8 type;
109 u8 flags;
110 u16 length;
111 u16 devid;
112 u16 aux;
113 u64 resv;
114 u64 range_start;
115 u64 range_length;
116} __attribute__((packed));
117
Joerg Roedelfefda112009-05-20 12:21:42 +0200118bool amd_iommu_dump;
119
Joerg Roedelc1cbebe2008-07-03 19:35:10 +0200120static int __initdata amd_iommu_detected;
121
Joerg Roedelb65233a2008-07-11 17:14:21 +0200122u16 amd_iommu_last_bdf; /* largest PCI device id we have
123 to handle */
Joerg Roedel2e228472008-07-11 17:14:31 +0200124LIST_HEAD(amd_iommu_unity_map); /* a list of required unity mappings
Joerg Roedelb65233a2008-07-11 17:14:21 +0200125 we find in ACPI */
126unsigned amd_iommu_aperture_order = 26; /* size of aperture in power of 2 */
Joerg Roedelc226f852008-12-12 13:53:54 +0100127bool amd_iommu_isolate = true; /* if true, device isolation is
128 enabled */
FUJITA Tomonoriafa9fdc2008-09-20 01:23:30 +0900129bool amd_iommu_unmap_flush; /* if true, flush on every unmap */
Joerg Roedel928abd22008-06-26 21:27:40 +0200130
Joerg Roedel2e228472008-07-11 17:14:31 +0200131LIST_HEAD(amd_iommu_list); /* list of all AMD IOMMUs in the
Joerg Roedelb65233a2008-07-11 17:14:21 +0200132 system */
133
134/*
135 * Pointer to the device table which is shared by all AMD IOMMUs
136 * it is indexed by the PCI device id or the HT unit id and contains
137 * information about the domain the device belongs to as well as the
138 * page table root pointer.
139 */
Joerg Roedel928abd22008-06-26 21:27:40 +0200140struct dev_table_entry *amd_iommu_dev_table;
Joerg Roedelb65233a2008-07-11 17:14:21 +0200141
142/*
143 * The alias table is a driver specific data structure which contains the
144 * mappings of the PCI device ids to the actual requestor ids on the IOMMU.
145 * More than one device can share the same requestor id.
146 */
Joerg Roedel928abd22008-06-26 21:27:40 +0200147u16 *amd_iommu_alias_table;
Joerg Roedelb65233a2008-07-11 17:14:21 +0200148
149/*
150 * The rlookup table is used to find the IOMMU which is responsible
151 * for a specific device. It is also indexed by the PCI device id.
152 */
Joerg Roedel928abd22008-06-26 21:27:40 +0200153struct amd_iommu **amd_iommu_rlookup_table;
Joerg Roedelb65233a2008-07-11 17:14:21 +0200154
155/*
156 * The pd table (protection domain table) is used to find the protection domain
157 * data structure a device belongs to. Indexed with the PCI device id too.
158 */
Joerg Roedel928abd22008-06-26 21:27:40 +0200159struct protection_domain **amd_iommu_pd_table;
Joerg Roedelb65233a2008-07-11 17:14:21 +0200160
161/*
162 * AMD IOMMU allows up to 2^16 differend protection domains. This is a bitmap
163 * to know which ones are already in use.
164 */
Joerg Roedel928abd22008-06-26 21:27:40 +0200165unsigned long *amd_iommu_pd_alloc_bitmap;
166
Joerg Roedelb65233a2008-07-11 17:14:21 +0200167static u32 dev_table_size; /* size of the device table */
168static u32 alias_table_size; /* size of the alias table */
169static u32 rlookup_table_size; /* size if the rlookup table */
Joerg Roedel3e8064b2008-06-26 21:27:41 +0200170
Joerg Roedel208ec8c2008-07-11 17:14:24 +0200171static inline void update_last_devid(u16 devid)
172{
173 if (devid > amd_iommu_last_bdf)
174 amd_iommu_last_bdf = devid;
175}
176
Joerg Roedelc5714842008-07-11 17:14:25 +0200177static inline unsigned long tbl_size(int entry_size)
178{
179 unsigned shift = PAGE_SHIFT +
180 get_order(amd_iommu_last_bdf * entry_size);
181
182 return 1UL << shift;
183}
184
Joerg Roedelb65233a2008-07-11 17:14:21 +0200185/****************************************************************************
186 *
187 * AMD IOMMU MMIO register space handling functions
188 *
189 * These functions are used to program the IOMMU device registers in
190 * MMIO space required for that driver.
191 *
192 ****************************************************************************/
193
194/*
195 * This function set the exclusion range in the IOMMU. DMA accesses to the
196 * exclusion range are passed through untranslated
197 */
Joerg Roedelb2026aa2008-06-26 21:27:44 +0200198static void __init iommu_set_exclusion_range(struct amd_iommu *iommu)
199{
200 u64 start = iommu->exclusion_start & PAGE_MASK;
201 u64 limit = (start + iommu->exclusion_length) & PAGE_MASK;
202 u64 entry;
203
204 if (!iommu->exclusion_start)
205 return;
206
207 entry = start | MMIO_EXCL_ENABLE_MASK;
208 memcpy_toio(iommu->mmio_base + MMIO_EXCL_BASE_OFFSET,
209 &entry, sizeof(entry));
210
211 entry = limit;
212 memcpy_toio(iommu->mmio_base + MMIO_EXCL_LIMIT_OFFSET,
213 &entry, sizeof(entry));
214}
215
Joerg Roedelb65233a2008-07-11 17:14:21 +0200216/* Programs the physical address of the device table into the IOMMU hardware */
Joerg Roedelb2026aa2008-06-26 21:27:44 +0200217static void __init iommu_set_device_table(struct amd_iommu *iommu)
218{
Andreas Herrmannf6098912008-10-16 16:27:36 +0200219 u64 entry;
Joerg Roedelb2026aa2008-06-26 21:27:44 +0200220
221 BUG_ON(iommu->mmio_base == NULL);
222
223 entry = virt_to_phys(amd_iommu_dev_table);
224 entry |= (dev_table_size >> 12) - 1;
225 memcpy_toio(iommu->mmio_base + MMIO_DEV_TABLE_OFFSET,
226 &entry, sizeof(entry));
227}
228
Joerg Roedelb65233a2008-07-11 17:14:21 +0200229/* Generic functions to enable/disable certain features of the IOMMU. */
Joerg Roedelb2026aa2008-06-26 21:27:44 +0200230static void __init iommu_feature_enable(struct amd_iommu *iommu, u8 bit)
231{
232 u32 ctrl;
233
234 ctrl = readl(iommu->mmio_base + MMIO_CONTROL_OFFSET);
235 ctrl |= (1 << bit);
236 writel(ctrl, iommu->mmio_base + MMIO_CONTROL_OFFSET);
237}
238
239static void __init iommu_feature_disable(struct amd_iommu *iommu, u8 bit)
240{
241 u32 ctrl;
242
Joerg Roedel199d0d52008-09-17 16:45:59 +0200243 ctrl = readl(iommu->mmio_base + MMIO_CONTROL_OFFSET);
Joerg Roedelb2026aa2008-06-26 21:27:44 +0200244 ctrl &= ~(1 << bit);
245 writel(ctrl, iommu->mmio_base + MMIO_CONTROL_OFFSET);
246}
247
Joerg Roedelb65233a2008-07-11 17:14:21 +0200248/* Function to enable the hardware */
Jaswinder Singh Rajput412a1be2008-12-29 21:44:12 +0530249static void __init iommu_enable(struct amd_iommu *iommu)
Joerg Roedelb2026aa2008-06-26 21:27:44 +0200250{
Joerg Roedela4e267c2008-12-10 20:04:18 +0100251 printk(KERN_INFO "AMD IOMMU: Enabling IOMMU at %s cap 0x%hx\n",
252 dev_name(&iommu->dev->dev), iommu->cap_ptr);
Joerg Roedelb2026aa2008-06-26 21:27:44 +0200253
254 iommu_feature_enable(iommu, CONTROL_IOMMU_EN);
Joerg Roedelb2026aa2008-06-26 21:27:44 +0200255}
256
Joerg Roedel126c52b2008-09-09 16:47:35 +0200257/* Function to enable IOMMU event logging and event interrupts */
Jaswinder Singh Rajput412a1be2008-12-29 21:44:12 +0530258static void __init iommu_enable_event_logging(struct amd_iommu *iommu)
Joerg Roedel126c52b2008-09-09 16:47:35 +0200259{
260 iommu_feature_enable(iommu, CONTROL_EVT_LOG_EN);
261 iommu_feature_enable(iommu, CONTROL_EVT_INT_EN);
262}
263
Joerg Roedelb65233a2008-07-11 17:14:21 +0200264/*
265 * mapping and unmapping functions for the IOMMU MMIO space. Each AMD IOMMU in
266 * the system has one.
267 */
Joerg Roedel6c567472008-06-26 21:27:43 +0200268static u8 * __init iommu_map_mmio_space(u64 address)
269{
270 u8 *ret;
271
272 if (!request_mem_region(address, MMIO_REGION_LENGTH, "amd_iommu"))
273 return NULL;
274
275 ret = ioremap_nocache(address, MMIO_REGION_LENGTH);
276 if (ret != NULL)
277 return ret;
278
279 release_mem_region(address, MMIO_REGION_LENGTH);
280
281 return NULL;
282}
283
284static void __init iommu_unmap_mmio_space(struct amd_iommu *iommu)
285{
286 if (iommu->mmio_base)
287 iounmap(iommu->mmio_base);
288 release_mem_region(iommu->mmio_phys, MMIO_REGION_LENGTH);
289}
290
Joerg Roedelb65233a2008-07-11 17:14:21 +0200291/****************************************************************************
292 *
293 * The functions below belong to the first pass of AMD IOMMU ACPI table
294 * parsing. In this pass we try to find out the highest device id this
295 * code has to handle. Upon this information the size of the shared data
296 * structures is determined later.
297 *
298 ****************************************************************************/
299
300/*
Joerg Roedelb514e552008-09-17 17:14:27 +0200301 * This function calculates the length of a given IVHD entry
302 */
303static inline int ivhd_entry_length(u8 *ivhd)
304{
305 return 0x04 << (*ivhd >> 6);
306}
307
308/*
Joerg Roedelb65233a2008-07-11 17:14:21 +0200309 * This function reads the last device id the IOMMU has to handle from the PCI
310 * capability header for this IOMMU
311 */
Joerg Roedel3e8064b2008-06-26 21:27:41 +0200312static int __init find_last_devid_on_pci(int bus, int dev, int fn, int cap_ptr)
313{
314 u32 cap;
315
316 cap = read_pci_config(bus, dev, fn, cap_ptr+MMIO_RANGE_OFFSET);
Joerg Roedeld591b0a2008-07-11 17:14:35 +0200317 update_last_devid(calc_devid(MMIO_GET_BUS(cap), MMIO_GET_LD(cap)));
Joerg Roedel3e8064b2008-06-26 21:27:41 +0200318
319 return 0;
320}
321
Joerg Roedelb65233a2008-07-11 17:14:21 +0200322/*
323 * After reading the highest device id from the IOMMU PCI capability header
324 * this function looks if there is a higher device id defined in the ACPI table
325 */
Joerg Roedel3e8064b2008-06-26 21:27:41 +0200326static int __init find_last_devid_from_ivhd(struct ivhd_header *h)
327{
328 u8 *p = (void *)h, *end = (void *)h;
329 struct ivhd_entry *dev;
330
331 p += sizeof(*h);
332 end += h->length;
333
334 find_last_devid_on_pci(PCI_BUS(h->devid),
335 PCI_SLOT(h->devid),
336 PCI_FUNC(h->devid),
337 h->cap_ptr);
338
339 while (p < end) {
340 dev = (struct ivhd_entry *)p;
341 switch (dev->type) {
342 case IVHD_DEV_SELECT:
343 case IVHD_DEV_RANGE_END:
344 case IVHD_DEV_ALIAS:
345 case IVHD_DEV_EXT_SELECT:
Joerg Roedelb65233a2008-07-11 17:14:21 +0200346 /* all the above subfield types refer to device ids */
Joerg Roedel208ec8c2008-07-11 17:14:24 +0200347 update_last_devid(dev->devid);
Joerg Roedel3e8064b2008-06-26 21:27:41 +0200348 break;
349 default:
350 break;
351 }
Joerg Roedelb514e552008-09-17 17:14:27 +0200352 p += ivhd_entry_length(p);
Joerg Roedel3e8064b2008-06-26 21:27:41 +0200353 }
354
355 WARN_ON(p != end);
356
357 return 0;
358}
359
Joerg Roedelb65233a2008-07-11 17:14:21 +0200360/*
361 * Iterate over all IVHD entries in the ACPI table and find the highest device
362 * id which we need to handle. This is the first of three functions which parse
363 * the ACPI table. So we check the checksum here.
364 */
Joerg Roedel3e8064b2008-06-26 21:27:41 +0200365static int __init find_last_devid_acpi(struct acpi_table_header *table)
366{
367 int i;
368 u8 checksum = 0, *p = (u8 *)table, *end = (u8 *)table;
369 struct ivhd_header *h;
370
371 /*
372 * Validate checksum here so we don't need to do it when
373 * we actually parse the table
374 */
375 for (i = 0; i < table->length; ++i)
376 checksum += p[i];
377 if (checksum != 0)
378 /* ACPI table corrupt */
379 return -ENODEV;
380
381 p += IVRS_HEADER_LENGTH;
382
383 end += table->length;
384 while (p < end) {
385 h = (struct ivhd_header *)p;
386 switch (h->type) {
387 case ACPI_IVHD_TYPE:
388 find_last_devid_from_ivhd(h);
389 break;
390 default:
391 break;
392 }
393 p += h->length;
394 }
395 WARN_ON(p != end);
396
397 return 0;
398}
399
Joerg Roedelb65233a2008-07-11 17:14:21 +0200400/****************************************************************************
401 *
402 * The following functions belong the the code path which parses the ACPI table
403 * the second time. In this ACPI parsing iteration we allocate IOMMU specific
404 * data structures, initialize the device/alias/rlookup table and also
405 * basically initialize the hardware.
406 *
407 ****************************************************************************/
408
409/*
410 * Allocates the command buffer. This buffer is per AMD IOMMU. We can
411 * write commands to that buffer later and the IOMMU will execute them
412 * asynchronously
413 */
Joerg Roedelb36ca912008-06-26 21:27:45 +0200414static u8 * __init alloc_command_buffer(struct amd_iommu *iommu)
415{
Joerg Roedeld0312b212008-07-11 17:14:29 +0200416 u8 *cmd_buf = (u8 *)__get_free_pages(GFP_KERNEL | __GFP_ZERO,
Joerg Roedelb36ca912008-06-26 21:27:45 +0200417 get_order(CMD_BUFFER_SIZE));
Joerg Roedeld0312b212008-07-11 17:14:29 +0200418 u64 entry;
Joerg Roedelb36ca912008-06-26 21:27:45 +0200419
420 if (cmd_buf == NULL)
421 return NULL;
422
423 iommu->cmd_buf_size = CMD_BUFFER_SIZE;
424
Joerg Roedelb36ca912008-06-26 21:27:45 +0200425 entry = (u64)virt_to_phys(cmd_buf);
426 entry |= MMIO_CMD_SIZE_512;
427 memcpy_toio(iommu->mmio_base + MMIO_CMD_BUF_OFFSET,
428 &entry, sizeof(entry));
429
Joerg Roedelcf558d22008-12-17 15:06:01 +0100430 /* set head and tail to zero manually */
431 writel(0x00, iommu->mmio_base + MMIO_CMD_HEAD_OFFSET);
432 writel(0x00, iommu->mmio_base + MMIO_CMD_TAIL_OFFSET);
433
Joerg Roedelb36ca912008-06-26 21:27:45 +0200434 iommu_feature_enable(iommu, CONTROL_CMDBUF_EN);
435
436 return cmd_buf;
437}
438
439static void __init free_command_buffer(struct amd_iommu *iommu)
440{
Joerg Roedel23c17132008-09-17 17:18:17 +0200441 free_pages((unsigned long)iommu->cmd_buf,
442 get_order(iommu->cmd_buf_size));
Joerg Roedelb36ca912008-06-26 21:27:45 +0200443}
444
Joerg Roedel335503e2008-09-05 14:29:07 +0200445/* allocates the memory where the IOMMU will log its events to */
446static u8 * __init alloc_event_buffer(struct amd_iommu *iommu)
447{
448 u64 entry;
449 iommu->evt_buf = (u8 *)__get_free_pages(GFP_KERNEL | __GFP_ZERO,
450 get_order(EVT_BUFFER_SIZE));
451
452 if (iommu->evt_buf == NULL)
453 return NULL;
454
455 entry = (u64)virt_to_phys(iommu->evt_buf) | EVT_LEN_MASK;
456 memcpy_toio(iommu->mmio_base + MMIO_EVT_BUF_OFFSET,
457 &entry, sizeof(entry));
458
459 iommu->evt_buf_size = EVT_BUFFER_SIZE;
460
461 return iommu->evt_buf;
462}
463
464static void __init free_event_buffer(struct amd_iommu *iommu)
465{
466 free_pages((unsigned long)iommu->evt_buf, get_order(EVT_BUFFER_SIZE));
467}
468
Joerg Roedelb65233a2008-07-11 17:14:21 +0200469/* sets a specific bit in the device table entry. */
Joerg Roedel3566b772008-06-26 21:27:46 +0200470static void set_dev_entry_bit(u16 devid, u8 bit)
471{
472 int i = (bit >> 5) & 0x07;
473 int _bit = bit & 0x1f;
474
475 amd_iommu_dev_table[devid].data[i] |= (1 << _bit);
476}
477
Joerg Roedel5ff47892008-07-14 20:11:18 +0200478/* Writes the specific IOMMU for a device into the rlookup table */
479static void __init set_iommu_for_device(struct amd_iommu *iommu, u16 devid)
480{
481 amd_iommu_rlookup_table[devid] = iommu;
482}
483
Joerg Roedelb65233a2008-07-11 17:14:21 +0200484/*
485 * This function takes the device specific flags read from the ACPI
486 * table and sets up the device table entry with that information
487 */
Joerg Roedel5ff47892008-07-14 20:11:18 +0200488static void __init set_dev_entry_from_acpi(struct amd_iommu *iommu,
489 u16 devid, u32 flags, u32 ext_flags)
Joerg Roedel3566b772008-06-26 21:27:46 +0200490{
491 if (flags & ACPI_DEVFLAG_INITPASS)
492 set_dev_entry_bit(devid, DEV_ENTRY_INIT_PASS);
493 if (flags & ACPI_DEVFLAG_EXTINT)
494 set_dev_entry_bit(devid, DEV_ENTRY_EINT_PASS);
495 if (flags & ACPI_DEVFLAG_NMI)
496 set_dev_entry_bit(devid, DEV_ENTRY_NMI_PASS);
497 if (flags & ACPI_DEVFLAG_SYSMGT1)
498 set_dev_entry_bit(devid, DEV_ENTRY_SYSMGT1);
499 if (flags & ACPI_DEVFLAG_SYSMGT2)
500 set_dev_entry_bit(devid, DEV_ENTRY_SYSMGT2);
501 if (flags & ACPI_DEVFLAG_LINT0)
502 set_dev_entry_bit(devid, DEV_ENTRY_LINT0_PASS);
503 if (flags & ACPI_DEVFLAG_LINT1)
504 set_dev_entry_bit(devid, DEV_ENTRY_LINT1_PASS);
Joerg Roedel3566b772008-06-26 21:27:46 +0200505
Joerg Roedel5ff47892008-07-14 20:11:18 +0200506 set_iommu_for_device(iommu, devid);
Joerg Roedel3566b772008-06-26 21:27:46 +0200507}
508
Joerg Roedelb65233a2008-07-11 17:14:21 +0200509/*
510 * Reads the device exclusion range from ACPI and initialize IOMMU with
511 * it
512 */
Joerg Roedel3566b772008-06-26 21:27:46 +0200513static void __init set_device_exclusion_range(u16 devid, struct ivmd_header *m)
514{
515 struct amd_iommu *iommu = amd_iommu_rlookup_table[devid];
516
517 if (!(m->flags & IVMD_FLAG_EXCL_RANGE))
518 return;
519
520 if (iommu) {
Joerg Roedelb65233a2008-07-11 17:14:21 +0200521 /*
522 * We only can configure exclusion ranges per IOMMU, not
523 * per device. But we can enable the exclusion range per
524 * device. This is done here
525 */
Joerg Roedel3566b772008-06-26 21:27:46 +0200526 set_dev_entry_bit(m->devid, DEV_ENTRY_EX);
527 iommu->exclusion_start = m->range_start;
528 iommu->exclusion_length = m->range_length;
529 }
530}
531
Joerg Roedelb65233a2008-07-11 17:14:21 +0200532/*
533 * This function reads some important data from the IOMMU PCI space and
534 * initializes the driver data structure with it. It reads the hardware
535 * capabilities and the first/last device entries
536 */
Joerg Roedel5d0c8e42008-06-26 21:27:47 +0200537static void __init init_iommu_from_pci(struct amd_iommu *iommu)
538{
Joerg Roedel5d0c8e42008-06-26 21:27:47 +0200539 int cap_ptr = iommu->cap_ptr;
Joerg Roedela80dc3e2008-09-11 16:51:41 +0200540 u32 range, misc;
Joerg Roedel5d0c8e42008-06-26 21:27:47 +0200541
Joerg Roedel3eaf28a2008-09-08 15:55:10 +0200542 pci_read_config_dword(iommu->dev, cap_ptr + MMIO_CAP_HDR_OFFSET,
543 &iommu->cap);
544 pci_read_config_dword(iommu->dev, cap_ptr + MMIO_RANGE_OFFSET,
545 &range);
Joerg Roedela80dc3e2008-09-11 16:51:41 +0200546 pci_read_config_dword(iommu->dev, cap_ptr + MMIO_MISC_OFFSET,
547 &misc);
Joerg Roedel5d0c8e42008-06-26 21:27:47 +0200548
Joerg Roedeld591b0a2008-07-11 17:14:35 +0200549 iommu->first_device = calc_devid(MMIO_GET_BUS(range),
550 MMIO_GET_FD(range));
551 iommu->last_device = calc_devid(MMIO_GET_BUS(range),
552 MMIO_GET_LD(range));
Joerg Roedela80dc3e2008-09-11 16:51:41 +0200553 iommu->evt_msi_num = MMIO_MSI_NUM(misc);
Joerg Roedel5d0c8e42008-06-26 21:27:47 +0200554}
555
Joerg Roedelb65233a2008-07-11 17:14:21 +0200556/*
557 * Takes a pointer to an AMD IOMMU entry in the ACPI table and
558 * initializes the hardware and our data structures with it.
559 */
Joerg Roedel5d0c8e42008-06-26 21:27:47 +0200560static void __init init_iommu_from_acpi(struct amd_iommu *iommu,
561 struct ivhd_header *h)
562{
563 u8 *p = (u8 *)h;
564 u8 *end = p, flags = 0;
565 u16 dev_i, devid = 0, devid_start = 0, devid_to = 0;
566 u32 ext_flags = 0;
Joerg Roedel58a3bee2008-07-11 17:14:30 +0200567 bool alias = false;
Joerg Roedel5d0c8e42008-06-26 21:27:47 +0200568 struct ivhd_entry *e;
569
570 /*
571 * First set the recommended feature enable bits from ACPI
572 * into the IOMMU control registers
573 */
Joerg Roedel6da73422009-05-04 11:44:38 +0200574 h->flags & IVHD_FLAG_HT_TUN_EN_MASK ?
Joerg Roedel5d0c8e42008-06-26 21:27:47 +0200575 iommu_feature_enable(iommu, CONTROL_HT_TUN_EN) :
576 iommu_feature_disable(iommu, CONTROL_HT_TUN_EN);
577
Joerg Roedel6da73422009-05-04 11:44:38 +0200578 h->flags & IVHD_FLAG_PASSPW_EN_MASK ?
Joerg Roedel5d0c8e42008-06-26 21:27:47 +0200579 iommu_feature_enable(iommu, CONTROL_PASSPW_EN) :
580 iommu_feature_disable(iommu, CONTROL_PASSPW_EN);
581
Joerg Roedel6da73422009-05-04 11:44:38 +0200582 h->flags & IVHD_FLAG_RESPASSPW_EN_MASK ?
Joerg Roedel5d0c8e42008-06-26 21:27:47 +0200583 iommu_feature_enable(iommu, CONTROL_RESPASSPW_EN) :
584 iommu_feature_disable(iommu, CONTROL_RESPASSPW_EN);
585
Joerg Roedel6da73422009-05-04 11:44:38 +0200586 h->flags & IVHD_FLAG_ISOC_EN_MASK ?
Joerg Roedel5d0c8e42008-06-26 21:27:47 +0200587 iommu_feature_enable(iommu, CONTROL_ISOC_EN) :
588 iommu_feature_disable(iommu, CONTROL_ISOC_EN);
589
590 /*
591 * make IOMMU memory accesses cache coherent
592 */
593 iommu_feature_enable(iommu, CONTROL_COHERENT_EN);
594
595 /*
596 * Done. Now parse the device entries
597 */
598 p += sizeof(struct ivhd_header);
599 end += h->length;
600
Joerg Roedel42a698f2009-05-20 15:41:28 +0200601
Joerg Roedel5d0c8e42008-06-26 21:27:47 +0200602 while (p < end) {
603 e = (struct ivhd_entry *)p;
604 switch (e->type) {
605 case IVHD_DEV_ALL:
Joerg Roedel42a698f2009-05-20 15:41:28 +0200606
607 DUMP_printk(" DEV_ALL\t\t\t first devid: %02x:%02x.%x"
608 " last device %02x:%02x.%x flags: %02x\n",
609 PCI_BUS(iommu->first_device),
610 PCI_SLOT(iommu->first_device),
611 PCI_FUNC(iommu->first_device),
612 PCI_BUS(iommu->last_device),
613 PCI_SLOT(iommu->last_device),
614 PCI_FUNC(iommu->last_device),
615 e->flags);
616
Joerg Roedel5d0c8e42008-06-26 21:27:47 +0200617 for (dev_i = iommu->first_device;
618 dev_i <= iommu->last_device; ++dev_i)
Joerg Roedel5ff47892008-07-14 20:11:18 +0200619 set_dev_entry_from_acpi(iommu, dev_i,
620 e->flags, 0);
Joerg Roedel5d0c8e42008-06-26 21:27:47 +0200621 break;
622 case IVHD_DEV_SELECT:
Joerg Roedel42a698f2009-05-20 15:41:28 +0200623
624 DUMP_printk(" DEV_SELECT\t\t\t devid: %02x:%02x.%x "
625 "flags: %02x\n",
626 PCI_BUS(e->devid),
627 PCI_SLOT(e->devid),
628 PCI_FUNC(e->devid),
629 e->flags);
630
Joerg Roedel5d0c8e42008-06-26 21:27:47 +0200631 devid = e->devid;
Joerg Roedel5ff47892008-07-14 20:11:18 +0200632 set_dev_entry_from_acpi(iommu, devid, e->flags, 0);
Joerg Roedel5d0c8e42008-06-26 21:27:47 +0200633 break;
634 case IVHD_DEV_SELECT_RANGE_START:
Joerg Roedel42a698f2009-05-20 15:41:28 +0200635
636 DUMP_printk(" DEV_SELECT_RANGE_START\t "
637 "devid: %02x:%02x.%x flags: %02x\n",
638 PCI_BUS(e->devid),
639 PCI_SLOT(e->devid),
640 PCI_FUNC(e->devid),
641 e->flags);
642
Joerg Roedel5d0c8e42008-06-26 21:27:47 +0200643 devid_start = e->devid;
644 flags = e->flags;
645 ext_flags = 0;
Joerg Roedel58a3bee2008-07-11 17:14:30 +0200646 alias = false;
Joerg Roedel5d0c8e42008-06-26 21:27:47 +0200647 break;
648 case IVHD_DEV_ALIAS:
Joerg Roedel42a698f2009-05-20 15:41:28 +0200649
650 DUMP_printk(" DEV_ALIAS\t\t\t devid: %02x:%02x.%x "
651 "flags: %02x devid_to: %02x:%02x.%x\n",
652 PCI_BUS(e->devid),
653 PCI_SLOT(e->devid),
654 PCI_FUNC(e->devid),
655 e->flags,
656 PCI_BUS(e->ext >> 8),
657 PCI_SLOT(e->ext >> 8),
658 PCI_FUNC(e->ext >> 8));
659
Joerg Roedel5d0c8e42008-06-26 21:27:47 +0200660 devid = e->devid;
661 devid_to = e->ext >> 8;
Joerg Roedel5ff47892008-07-14 20:11:18 +0200662 set_dev_entry_from_acpi(iommu, devid, e->flags, 0);
Joerg Roedel5d0c8e42008-06-26 21:27:47 +0200663 amd_iommu_alias_table[devid] = devid_to;
664 break;
665 case IVHD_DEV_ALIAS_RANGE:
Joerg Roedel42a698f2009-05-20 15:41:28 +0200666
667 DUMP_printk(" DEV_ALIAS_RANGE\t\t "
668 "devid: %02x:%02x.%x flags: %02x "
669 "devid_to: %02x:%02x.%x\n",
670 PCI_BUS(e->devid),
671 PCI_SLOT(e->devid),
672 PCI_FUNC(e->devid),
673 e->flags,
674 PCI_BUS(e->ext >> 8),
675 PCI_SLOT(e->ext >> 8),
676 PCI_FUNC(e->ext >> 8));
677
Joerg Roedel5d0c8e42008-06-26 21:27:47 +0200678 devid_start = e->devid;
679 flags = e->flags;
680 devid_to = e->ext >> 8;
681 ext_flags = 0;
Joerg Roedel58a3bee2008-07-11 17:14:30 +0200682 alias = true;
Joerg Roedel5d0c8e42008-06-26 21:27:47 +0200683 break;
684 case IVHD_DEV_EXT_SELECT:
Joerg Roedel42a698f2009-05-20 15:41:28 +0200685
686 DUMP_printk(" DEV_EXT_SELECT\t\t devid: %02x:%02x.%x "
687 "flags: %02x ext: %08x\n",
688 PCI_BUS(e->devid),
689 PCI_SLOT(e->devid),
690 PCI_FUNC(e->devid),
691 e->flags, e->ext);
692
Joerg Roedel5d0c8e42008-06-26 21:27:47 +0200693 devid = e->devid;
Joerg Roedel5ff47892008-07-14 20:11:18 +0200694 set_dev_entry_from_acpi(iommu, devid, e->flags,
695 e->ext);
Joerg Roedel5d0c8e42008-06-26 21:27:47 +0200696 break;
697 case IVHD_DEV_EXT_SELECT_RANGE:
Joerg Roedel42a698f2009-05-20 15:41:28 +0200698
699 DUMP_printk(" DEV_EXT_SELECT_RANGE\t devid: "
700 "%02x:%02x.%x flags: %02x ext: %08x\n",
701 PCI_BUS(e->devid),
702 PCI_SLOT(e->devid),
703 PCI_FUNC(e->devid),
704 e->flags, e->ext);
705
Joerg Roedel5d0c8e42008-06-26 21:27:47 +0200706 devid_start = e->devid;
707 flags = e->flags;
708 ext_flags = e->ext;
Joerg Roedel58a3bee2008-07-11 17:14:30 +0200709 alias = false;
Joerg Roedel5d0c8e42008-06-26 21:27:47 +0200710 break;
711 case IVHD_DEV_RANGE_END:
Joerg Roedel42a698f2009-05-20 15:41:28 +0200712
713 DUMP_printk(" DEV_RANGE_END\t\t devid: %02x:%02x.%x\n",
714 PCI_BUS(e->devid),
715 PCI_SLOT(e->devid),
716 PCI_FUNC(e->devid));
717
Joerg Roedel5d0c8e42008-06-26 21:27:47 +0200718 devid = e->devid;
719 for (dev_i = devid_start; dev_i <= devid; ++dev_i) {
720 if (alias)
721 amd_iommu_alias_table[dev_i] = devid_to;
Joerg Roedel5ff47892008-07-14 20:11:18 +0200722 set_dev_entry_from_acpi(iommu,
Joerg Roedel5d0c8e42008-06-26 21:27:47 +0200723 amd_iommu_alias_table[dev_i],
724 flags, ext_flags);
725 }
726 break;
727 default:
728 break;
729 }
730
Joerg Roedelb514e552008-09-17 17:14:27 +0200731 p += ivhd_entry_length(p);
Joerg Roedel5d0c8e42008-06-26 21:27:47 +0200732 }
733}
734
Joerg Roedelb65233a2008-07-11 17:14:21 +0200735/* Initializes the device->iommu mapping for the driver */
Joerg Roedel5d0c8e42008-06-26 21:27:47 +0200736static int __init init_iommu_devices(struct amd_iommu *iommu)
737{
738 u16 i;
739
740 for (i = iommu->first_device; i <= iommu->last_device; ++i)
741 set_iommu_for_device(iommu, i);
742
743 return 0;
744}
745
Joerg Roedele47d4022008-06-26 21:27:48 +0200746static void __init free_iommu_one(struct amd_iommu *iommu)
747{
748 free_command_buffer(iommu);
Joerg Roedel335503e2008-09-05 14:29:07 +0200749 free_event_buffer(iommu);
Joerg Roedele47d4022008-06-26 21:27:48 +0200750 iommu_unmap_mmio_space(iommu);
751}
752
753static void __init free_iommu_all(void)
754{
755 struct amd_iommu *iommu, *next;
756
757 list_for_each_entry_safe(iommu, next, &amd_iommu_list, list) {
758 list_del(&iommu->list);
759 free_iommu_one(iommu);
760 kfree(iommu);
761 }
762}
763
Joerg Roedelb65233a2008-07-11 17:14:21 +0200764/*
765 * This function clues the initialization function for one IOMMU
766 * together and also allocates the command buffer and programs the
767 * hardware. It does NOT enable the IOMMU. This is done afterwards.
768 */
Joerg Roedele47d4022008-06-26 21:27:48 +0200769static int __init init_iommu_one(struct amd_iommu *iommu, struct ivhd_header *h)
770{
771 spin_lock_init(&iommu->lock);
772 list_add_tail(&iommu->list, &amd_iommu_list);
773
774 /*
775 * Copy data from ACPI table entry to the iommu struct
776 */
Joerg Roedel3eaf28a2008-09-08 15:55:10 +0200777 iommu->dev = pci_get_bus_and_slot(PCI_BUS(h->devid), h->devid & 0xff);
778 if (!iommu->dev)
779 return 1;
780
Joerg Roedele47d4022008-06-26 21:27:48 +0200781 iommu->cap_ptr = h->cap_ptr;
Joerg Roedelee893c22008-09-08 14:48:04 +0200782 iommu->pci_seg = h->pci_seg;
Joerg Roedele47d4022008-06-26 21:27:48 +0200783 iommu->mmio_phys = h->mmio_phys;
784 iommu->mmio_base = iommu_map_mmio_space(h->mmio_phys);
785 if (!iommu->mmio_base)
786 return -ENOMEM;
787
788 iommu_set_device_table(iommu);
789 iommu->cmd_buf = alloc_command_buffer(iommu);
790 if (!iommu->cmd_buf)
791 return -ENOMEM;
792
Joerg Roedel335503e2008-09-05 14:29:07 +0200793 iommu->evt_buf = alloc_event_buffer(iommu);
794 if (!iommu->evt_buf)
795 return -ENOMEM;
796
Joerg Roedela80dc3e2008-09-11 16:51:41 +0200797 iommu->int_enabled = false;
798
Joerg Roedele47d4022008-06-26 21:27:48 +0200799 init_iommu_from_pci(iommu);
800 init_iommu_from_acpi(iommu, h);
801 init_iommu_devices(iommu);
802
Ingo Molnar8a667122008-10-12 15:24:53 +0200803 return pci_enable_device(iommu->dev);
Joerg Roedele47d4022008-06-26 21:27:48 +0200804}
805
Joerg Roedelb65233a2008-07-11 17:14:21 +0200806/*
807 * Iterates over all IOMMU entries in the ACPI table, allocates the
808 * IOMMU structure and initializes it with init_iommu_one()
809 */
Joerg Roedele47d4022008-06-26 21:27:48 +0200810static int __init init_iommu_all(struct acpi_table_header *table)
811{
812 u8 *p = (u8 *)table, *end = (u8 *)table;
813 struct ivhd_header *h;
814 struct amd_iommu *iommu;
815 int ret;
816
Joerg Roedele47d4022008-06-26 21:27:48 +0200817 end += table->length;
818 p += IVRS_HEADER_LENGTH;
819
820 while (p < end) {
821 h = (struct ivhd_header *)p;
822 switch (*p) {
823 case ACPI_IVHD_TYPE:
Joerg Roedel9c720412009-05-20 13:53:57 +0200824
825 DUMP_printk("IOMMU: device: %02x:%02x.%01x cap: %04x "
826 "seg: %d flags: %01x info %04x\n",
827 PCI_BUS(h->devid), PCI_SLOT(h->devid),
828 PCI_FUNC(h->devid), h->cap_ptr,
829 h->pci_seg, h->flags, h->info);
830 DUMP_printk(" mmio-addr: %016llx\n",
831 h->mmio_phys);
832
Joerg Roedele47d4022008-06-26 21:27:48 +0200833 iommu = kzalloc(sizeof(struct amd_iommu), GFP_KERNEL);
834 if (iommu == NULL)
835 return -ENOMEM;
836 ret = init_iommu_one(iommu, h);
837 if (ret)
838 return ret;
839 break;
840 default:
841 break;
842 }
843 p += h->length;
844
845 }
846 WARN_ON(p != end);
847
848 return 0;
849}
850
Joerg Roedelb65233a2008-07-11 17:14:21 +0200851/****************************************************************************
852 *
Joerg Roedela80dc3e2008-09-11 16:51:41 +0200853 * The following functions initialize the MSI interrupts for all IOMMUs
854 * in the system. Its a bit challenging because there could be multiple
855 * IOMMUs per PCI BDF but we can call pci_enable_msi(x) only once per
856 * pci_dev.
857 *
858 ****************************************************************************/
859
860static int __init iommu_setup_msix(struct amd_iommu *iommu)
861{
862 struct amd_iommu *curr;
863 struct msix_entry entries[32]; /* only 32 supported by AMD IOMMU */
864 int nvec = 0, i;
865
866 list_for_each_entry(curr, &amd_iommu_list, list) {
867 if (curr->dev == iommu->dev) {
868 entries[nvec].entry = curr->evt_msi_num;
869 entries[nvec].vector = 0;
870 curr->int_enabled = true;
871 nvec++;
872 }
873 }
874
875 if (pci_enable_msix(iommu->dev, entries, nvec)) {
876 pci_disable_msix(iommu->dev);
877 return 1;
878 }
879
880 for (i = 0; i < nvec; ++i) {
881 int r = request_irq(entries->vector, amd_iommu_int_handler,
882 IRQF_SAMPLE_RANDOM,
883 "AMD IOMMU",
884 NULL);
885 if (r)
886 goto out_free;
887 }
888
889 return 0;
890
891out_free:
892 for (i -= 1; i >= 0; --i)
893 free_irq(entries->vector, NULL);
894
895 pci_disable_msix(iommu->dev);
896
897 return 1;
898}
899
900static int __init iommu_setup_msi(struct amd_iommu *iommu)
901{
902 int r;
903 struct amd_iommu *curr;
904
905 list_for_each_entry(curr, &amd_iommu_list, list) {
906 if (curr->dev == iommu->dev)
907 curr->int_enabled = true;
908 }
909
910
911 if (pci_enable_msi(iommu->dev))
912 return 1;
913
914 r = request_irq(iommu->dev->irq, amd_iommu_int_handler,
915 IRQF_SAMPLE_RANDOM,
916 "AMD IOMMU",
917 NULL);
918
919 if (r) {
920 pci_disable_msi(iommu->dev);
921 return 1;
922 }
923
924 return 0;
925}
926
927static int __init iommu_init_msi(struct amd_iommu *iommu)
928{
929 if (iommu->int_enabled)
930 return 0;
931
932 if (pci_find_capability(iommu->dev, PCI_CAP_ID_MSIX))
933 return iommu_setup_msix(iommu);
934 else if (pci_find_capability(iommu->dev, PCI_CAP_ID_MSI))
935 return iommu_setup_msi(iommu);
936
937 return 1;
938}
939
940/****************************************************************************
941 *
Joerg Roedelb65233a2008-07-11 17:14:21 +0200942 * The next functions belong to the third pass of parsing the ACPI
943 * table. In this last pass the memory mapping requirements are
944 * gathered (like exclusion and unity mapping reanges).
945 *
946 ****************************************************************************/
947
Joerg Roedelbe2a0222008-06-26 21:27:49 +0200948static void __init free_unity_maps(void)
949{
950 struct unity_map_entry *entry, *next;
951
952 list_for_each_entry_safe(entry, next, &amd_iommu_unity_map, list) {
953 list_del(&entry->list);
954 kfree(entry);
955 }
956}
957
Joerg Roedelb65233a2008-07-11 17:14:21 +0200958/* called when we find an exclusion range definition in ACPI */
Joerg Roedelbe2a0222008-06-26 21:27:49 +0200959static int __init init_exclusion_range(struct ivmd_header *m)
960{
961 int i;
962
963 switch (m->type) {
964 case ACPI_IVMD_TYPE:
965 set_device_exclusion_range(m->devid, m);
966 break;
967 case ACPI_IVMD_TYPE_ALL:
Joerg Roedel3a61ec32008-07-25 13:07:50 +0200968 for (i = 0; i <= amd_iommu_last_bdf; ++i)
Joerg Roedelbe2a0222008-06-26 21:27:49 +0200969 set_device_exclusion_range(i, m);
970 break;
971 case ACPI_IVMD_TYPE_RANGE:
972 for (i = m->devid; i <= m->aux; ++i)
973 set_device_exclusion_range(i, m);
974 break;
975 default:
976 break;
977 }
978
979 return 0;
980}
981
Joerg Roedelb65233a2008-07-11 17:14:21 +0200982/* called for unity map ACPI definition */
Joerg Roedelbe2a0222008-06-26 21:27:49 +0200983static int __init init_unity_map_range(struct ivmd_header *m)
984{
985 struct unity_map_entry *e = 0;
Joerg Roedel02acc432009-05-20 16:24:21 +0200986 char *s;
Joerg Roedelbe2a0222008-06-26 21:27:49 +0200987
988 e = kzalloc(sizeof(*e), GFP_KERNEL);
989 if (e == NULL)
990 return -ENOMEM;
991
992 switch (m->type) {
993 default:
994 case ACPI_IVMD_TYPE:
Joerg Roedel02acc432009-05-20 16:24:21 +0200995 s = "IVMD_TYPEi\t\t\t";
Joerg Roedelbe2a0222008-06-26 21:27:49 +0200996 e->devid_start = e->devid_end = m->devid;
997 break;
998 case ACPI_IVMD_TYPE_ALL:
Joerg Roedel02acc432009-05-20 16:24:21 +0200999 s = "IVMD_TYPE_ALL\t\t";
Joerg Roedelbe2a0222008-06-26 21:27:49 +02001000 e->devid_start = 0;
1001 e->devid_end = amd_iommu_last_bdf;
1002 break;
1003 case ACPI_IVMD_TYPE_RANGE:
Joerg Roedel02acc432009-05-20 16:24:21 +02001004 s = "IVMD_TYPE_RANGE\t\t";
Joerg Roedelbe2a0222008-06-26 21:27:49 +02001005 e->devid_start = m->devid;
1006 e->devid_end = m->aux;
1007 break;
1008 }
1009 e->address_start = PAGE_ALIGN(m->range_start);
1010 e->address_end = e->address_start + PAGE_ALIGN(m->range_length);
1011 e->prot = m->flags >> 1;
1012
Joerg Roedel02acc432009-05-20 16:24:21 +02001013 DUMP_printk("%s devid_start: %02x:%02x.%x devid_end: %02x:%02x.%x"
1014 " range_start: %016llx range_end: %016llx flags: %x\n", s,
1015 PCI_BUS(e->devid_start), PCI_SLOT(e->devid_start),
1016 PCI_FUNC(e->devid_start), PCI_BUS(e->devid_end),
1017 PCI_SLOT(e->devid_end), PCI_FUNC(e->devid_end),
1018 e->address_start, e->address_end, m->flags);
1019
Joerg Roedelbe2a0222008-06-26 21:27:49 +02001020 list_add_tail(&e->list, &amd_iommu_unity_map);
1021
1022 return 0;
1023}
1024
Joerg Roedelb65233a2008-07-11 17:14:21 +02001025/* iterates over all memory definitions we find in the ACPI table */
Joerg Roedelbe2a0222008-06-26 21:27:49 +02001026static int __init init_memory_definitions(struct acpi_table_header *table)
1027{
1028 u8 *p = (u8 *)table, *end = (u8 *)table;
1029 struct ivmd_header *m;
1030
Joerg Roedelbe2a0222008-06-26 21:27:49 +02001031 end += table->length;
1032 p += IVRS_HEADER_LENGTH;
1033
1034 while (p < end) {
1035 m = (struct ivmd_header *)p;
1036 if (m->flags & IVMD_FLAG_EXCL_RANGE)
1037 init_exclusion_range(m);
1038 else if (m->flags & IVMD_FLAG_UNITY_MAP)
1039 init_unity_map_range(m);
1040
1041 p += m->length;
1042 }
1043
1044 return 0;
1045}
1046
Joerg Roedelb65233a2008-07-11 17:14:21 +02001047/*
Joerg Roedel9f5f5fb2008-08-14 19:55:16 +02001048 * Init the device table to not allow DMA access for devices and
1049 * suppress all page faults
1050 */
1051static void init_device_table(void)
1052{
1053 u16 devid;
1054
1055 for (devid = 0; devid <= amd_iommu_last_bdf; ++devid) {
1056 set_dev_entry_bit(devid, DEV_ENTRY_VALID);
1057 set_dev_entry_bit(devid, DEV_ENTRY_TRANSLATION);
Joerg Roedel9f5f5fb2008-08-14 19:55:16 +02001058 }
1059}
1060
1061/*
Joerg Roedelb65233a2008-07-11 17:14:21 +02001062 * This function finally enables all IOMMUs found in the system after
1063 * they have been initialized
1064 */
Joerg Roedel87361972008-06-26 21:28:07 +02001065static void __init enable_iommus(void)
1066{
1067 struct amd_iommu *iommu;
1068
1069 list_for_each_entry(iommu, &amd_iommu_list, list) {
1070 iommu_set_exclusion_range(iommu);
Joerg Roedela80dc3e2008-09-11 16:51:41 +02001071 iommu_init_msi(iommu);
Joerg Roedel126c52b2008-09-09 16:47:35 +02001072 iommu_enable_event_logging(iommu);
Joerg Roedel87361972008-06-26 21:28:07 +02001073 iommu_enable(iommu);
1074 }
1075}
1076
Joerg Roedel7441e9c2008-06-30 20:18:02 +02001077/*
1078 * Suspend/Resume support
1079 * disable suspend until real resume implemented
1080 */
1081
1082static int amd_iommu_resume(struct sys_device *dev)
1083{
1084 return 0;
1085}
1086
1087static int amd_iommu_suspend(struct sys_device *dev, pm_message_t state)
1088{
1089 return -EINVAL;
1090}
1091
1092static struct sysdev_class amd_iommu_sysdev_class = {
1093 .name = "amd_iommu",
1094 .suspend = amd_iommu_suspend,
1095 .resume = amd_iommu_resume,
1096};
1097
1098static struct sys_device device_amd_iommu = {
1099 .id = 0,
1100 .cls = &amd_iommu_sysdev_class,
1101};
1102
Joerg Roedelb65233a2008-07-11 17:14:21 +02001103/*
1104 * This is the core init function for AMD IOMMU hardware in the system.
1105 * This function is called from the generic x86 DMA layer initialization
1106 * code.
1107 *
1108 * This function basically parses the ACPI table for AMD IOMMU (IVRS)
1109 * three times:
1110 *
1111 * 1 pass) Find the highest PCI device id the driver has to handle.
1112 * Upon this information the size of the data structures is
1113 * determined that needs to be allocated.
1114 *
1115 * 2 pass) Initialize the data structures just allocated with the
1116 * information in the ACPI table about available AMD IOMMUs
1117 * in the system. It also maps the PCI devices in the
1118 * system to specific IOMMUs
1119 *
1120 * 3 pass) After the basic data structures are allocated and
1121 * initialized we update them with information about memory
1122 * remapping requirements parsed out of the ACPI table in
1123 * this last pass.
1124 *
1125 * After that the hardware is initialized and ready to go. In the last
1126 * step we do some Linux specific things like registering the driver in
1127 * the dma_ops interface and initializing the suspend/resume support
1128 * functions. Finally it prints some information about AMD IOMMUs and
1129 * the driver state and enables the hardware.
1130 */
Joerg Roedelfe74c9c2008-06-26 21:27:50 +02001131int __init amd_iommu_init(void)
1132{
1133 int i, ret = 0;
1134
1135
Joerg Roedel8b145182008-07-03 19:35:09 +02001136 if (no_iommu) {
Joerg Roedelfe74c9c2008-06-26 21:27:50 +02001137 printk(KERN_INFO "AMD IOMMU disabled by kernel command line\n");
1138 return 0;
1139 }
1140
Joerg Roedelc1cbebe2008-07-03 19:35:10 +02001141 if (!amd_iommu_detected)
1142 return -ENODEV;
1143
Joerg Roedelfe74c9c2008-06-26 21:27:50 +02001144 /*
1145 * First parse ACPI tables to find the largest Bus/Dev/Func
1146 * we need to handle. Upon this information the shared data
1147 * structures for the IOMMUs in the system will be allocated
1148 */
1149 if (acpi_table_parse("IVRS", find_last_devid_acpi) != 0)
1150 return -ENODEV;
1151
Joerg Roedelc5714842008-07-11 17:14:25 +02001152 dev_table_size = tbl_size(DEV_TABLE_ENTRY_SIZE);
1153 alias_table_size = tbl_size(ALIAS_TABLE_ENTRY_SIZE);
1154 rlookup_table_size = tbl_size(RLOOKUP_TABLE_ENTRY_SIZE);
Joerg Roedelfe74c9c2008-06-26 21:27:50 +02001155
1156 ret = -ENOMEM;
1157
1158 /* Device table - directly used by all IOMMUs */
Joerg Roedel5dc8bff2008-07-11 17:14:32 +02001159 amd_iommu_dev_table = (void *)__get_free_pages(GFP_KERNEL | __GFP_ZERO,
Joerg Roedelfe74c9c2008-06-26 21:27:50 +02001160 get_order(dev_table_size));
1161 if (amd_iommu_dev_table == NULL)
1162 goto out;
1163
1164 /*
1165 * Alias table - map PCI Bus/Dev/Func to Bus/Dev/Func the
1166 * IOMMU see for that device
1167 */
1168 amd_iommu_alias_table = (void *)__get_free_pages(GFP_KERNEL,
1169 get_order(alias_table_size));
1170 if (amd_iommu_alias_table == NULL)
1171 goto free;
1172
1173 /* IOMMU rlookup table - find the IOMMU for a specific device */
Joerg Roedel83fd5cc2008-12-16 19:17:11 +01001174 amd_iommu_rlookup_table = (void *)__get_free_pages(
1175 GFP_KERNEL | __GFP_ZERO,
Joerg Roedelfe74c9c2008-06-26 21:27:50 +02001176 get_order(rlookup_table_size));
1177 if (amd_iommu_rlookup_table == NULL)
1178 goto free;
1179
1180 /*
1181 * Protection Domain table - maps devices to protection domains
1182 * This table has the same size as the rlookup_table
1183 */
Joerg Roedel5dc8bff2008-07-11 17:14:32 +02001184 amd_iommu_pd_table = (void *)__get_free_pages(GFP_KERNEL | __GFP_ZERO,
Joerg Roedelfe74c9c2008-06-26 21:27:50 +02001185 get_order(rlookup_table_size));
1186 if (amd_iommu_pd_table == NULL)
1187 goto free;
1188
Joerg Roedel5dc8bff2008-07-11 17:14:32 +02001189 amd_iommu_pd_alloc_bitmap = (void *)__get_free_pages(
1190 GFP_KERNEL | __GFP_ZERO,
Joerg Roedelfe74c9c2008-06-26 21:27:50 +02001191 get_order(MAX_DOMAIN_ID/8));
1192 if (amd_iommu_pd_alloc_bitmap == NULL)
1193 goto free;
1194
Joerg Roedel9f5f5fb2008-08-14 19:55:16 +02001195 /* init the device table */
1196 init_device_table();
1197
Joerg Roedelfe74c9c2008-06-26 21:27:50 +02001198 /*
Joerg Roedel5dc8bff2008-07-11 17:14:32 +02001199 * let all alias entries point to itself
Joerg Roedelfe74c9c2008-06-26 21:27:50 +02001200 */
Joerg Roedel3a61ec32008-07-25 13:07:50 +02001201 for (i = 0; i <= amd_iommu_last_bdf; ++i)
Joerg Roedelfe74c9c2008-06-26 21:27:50 +02001202 amd_iommu_alias_table[i] = i;
1203
Joerg Roedelfe74c9c2008-06-26 21:27:50 +02001204 /*
1205 * never allocate domain 0 because its used as the non-allocated and
1206 * error value placeholder
1207 */
1208 amd_iommu_pd_alloc_bitmap[0] = 1;
1209
1210 /*
1211 * now the data structures are allocated and basically initialized
1212 * start the real acpi table scan
1213 */
1214 ret = -ENODEV;
1215 if (acpi_table_parse("IVRS", init_iommu_all) != 0)
1216 goto free;
1217
1218 if (acpi_table_parse("IVRS", init_memory_definitions) != 0)
1219 goto free;
1220
Joerg Roedel7441e9c2008-06-30 20:18:02 +02001221 ret = sysdev_class_register(&amd_iommu_sysdev_class);
1222 if (ret)
1223 goto free;
1224
1225 ret = sysdev_register(&device_amd_iommu);
1226 if (ret)
1227 goto free;
1228
Joerg Roedel129d6ab2008-08-14 19:55:18 +02001229 ret = amd_iommu_init_dma_ops();
1230 if (ret)
1231 goto free;
1232
Joerg Roedel87361972008-06-26 21:28:07 +02001233 enable_iommus();
1234
Joerg Roedelfe74c9c2008-06-26 21:27:50 +02001235 printk(KERN_INFO "AMD IOMMU: aperture size is %d MB\n",
1236 (1 << (amd_iommu_aperture_order-20)));
1237
1238 printk(KERN_INFO "AMD IOMMU: device isolation ");
1239 if (amd_iommu_isolate)
1240 printk("enabled\n");
1241 else
1242 printk("disabled\n");
1243
FUJITA Tomonoriafa9fdc2008-09-20 01:23:30 +09001244 if (amd_iommu_unmap_flush)
Joerg Roedel1c655772008-09-04 18:40:05 +02001245 printk(KERN_INFO "AMD IOMMU: IO/TLB flush on unmap enabled\n");
1246 else
1247 printk(KERN_INFO "AMD IOMMU: Lazy IO/TLB flushing enabled\n");
1248
Joerg Roedelfe74c9c2008-06-26 21:27:50 +02001249out:
1250 return ret;
1251
1252free:
Joerg Roedeld58befd2008-09-17 12:19:58 +02001253 free_pages((unsigned long)amd_iommu_pd_alloc_bitmap,
1254 get_order(MAX_DOMAIN_ID/8));
Joerg Roedelfe74c9c2008-06-26 21:27:50 +02001255
Joerg Roedel9a836de2008-07-11 17:14:26 +02001256 free_pages((unsigned long)amd_iommu_pd_table,
1257 get_order(rlookup_table_size));
Joerg Roedelfe74c9c2008-06-26 21:27:50 +02001258
Joerg Roedel9a836de2008-07-11 17:14:26 +02001259 free_pages((unsigned long)amd_iommu_rlookup_table,
1260 get_order(rlookup_table_size));
Joerg Roedelfe74c9c2008-06-26 21:27:50 +02001261
Joerg Roedel9a836de2008-07-11 17:14:26 +02001262 free_pages((unsigned long)amd_iommu_alias_table,
1263 get_order(alias_table_size));
Joerg Roedelfe74c9c2008-06-26 21:27:50 +02001264
Joerg Roedel9a836de2008-07-11 17:14:26 +02001265 free_pages((unsigned long)amd_iommu_dev_table,
1266 get_order(dev_table_size));
Joerg Roedelfe74c9c2008-06-26 21:27:50 +02001267
1268 free_iommu_all();
1269
1270 free_unity_maps();
1271
1272 goto out;
1273}
1274
Joerg Roedelb65233a2008-07-11 17:14:21 +02001275/****************************************************************************
1276 *
1277 * Early detect code. This code runs at IOMMU detection time in the DMA
1278 * layer. It just looks if there is an IVRS ACPI table to detect AMD
1279 * IOMMUs
1280 *
1281 ****************************************************************************/
Joerg Roedelae7877d2008-06-26 21:27:51 +02001282static int __init early_amd_iommu_detect(struct acpi_table_header *table)
1283{
1284 return 0;
1285}
1286
1287void __init amd_iommu_detect(void)
1288{
Joerg Roedel299a1402008-07-08 14:47:16 +02001289 if (swiotlb || no_iommu || (iommu_detected && !gart_iommu_aperture))
Joerg Roedelae7877d2008-06-26 21:27:51 +02001290 return;
1291
Joerg Roedelae7877d2008-06-26 21:27:51 +02001292 if (acpi_table_parse("IVRS", early_amd_iommu_detect) == 0) {
1293 iommu_detected = 1;
Joerg Roedelc1cbebe2008-07-03 19:35:10 +02001294 amd_iommu_detected = 1;
Ingo Molnar92af4e22008-06-27 10:48:16 +02001295#ifdef CONFIG_GART_IOMMU
Joerg Roedelae7877d2008-06-26 21:27:51 +02001296 gart_iommu_aperture_disabled = 1;
1297 gart_iommu_aperture = 0;
Ingo Molnar92af4e22008-06-27 10:48:16 +02001298#endif
Joerg Roedelae7877d2008-06-26 21:27:51 +02001299 }
1300}
1301
Joerg Roedelb65233a2008-07-11 17:14:21 +02001302/****************************************************************************
1303 *
1304 * Parsing functions for the AMD IOMMU specific kernel command line
1305 * options.
1306 *
1307 ****************************************************************************/
1308
Joerg Roedelfefda112009-05-20 12:21:42 +02001309static int __init parse_amd_iommu_dump(char *str)
1310{
1311 amd_iommu_dump = true;
1312
1313 return 1;
1314}
1315
Joerg Roedel918ad6c2008-06-26 21:27:52 +02001316static int __init parse_amd_iommu_options(char *str)
1317{
1318 for (; *str; ++str) {
Joerg Roedel1c655772008-09-04 18:40:05 +02001319 if (strncmp(str, "isolate", 7) == 0)
Joerg Roedelc226f852008-12-12 13:53:54 +01001320 amd_iommu_isolate = true;
Joerg Roedele5e1f602008-11-17 15:07:17 +01001321 if (strncmp(str, "share", 5) == 0)
Joerg Roedelc226f852008-12-12 13:53:54 +01001322 amd_iommu_isolate = false;
Joerg Roedel695b5672008-11-17 15:16:43 +01001323 if (strncmp(str, "fullflush", 9) == 0)
FUJITA Tomonoriafa9fdc2008-09-20 01:23:30 +09001324 amd_iommu_unmap_flush = true;
Joerg Roedel918ad6c2008-06-26 21:27:52 +02001325 }
1326
1327 return 1;
1328}
1329
1330static int __init parse_amd_iommu_size_options(char *str)
1331{
Joerg Roedel09063722008-07-11 17:14:33 +02001332 unsigned order = PAGE_SHIFT + get_order(memparse(str, &str));
1333
1334 if ((order > 24) && (order < 31))
1335 amd_iommu_aperture_order = order;
Joerg Roedel918ad6c2008-06-26 21:27:52 +02001336
1337 return 1;
1338}
1339
Joerg Roedelfefda112009-05-20 12:21:42 +02001340__setup("amd_iommu_dump", parse_amd_iommu_dump);
Joerg Roedel918ad6c2008-06-26 21:27:52 +02001341__setup("amd_iommu=", parse_amd_iommu_options);
1342__setup("amd_iommu_size=", parse_amd_iommu_size_options);