blob: 2d923fe7c2a18ec03a81dbec243d325473c012eb [file] [log] [blame]
Joerg Roedelf6e2e6b2008-06-26 21:27:39 +02001/*
Joerg Roedel5d0d7152010-10-13 11:13:21 +02002 * Copyright (C) 2007-2010 Advanced Micro Devices, Inc.
Joerg Roedelf6e2e6b2008-06-26 21:27:39 +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/acpi.h>
Joerg Roedelf6e2e6b2008-06-26 21:27:39 +020022#include <linux/list.h>
Tejun Heo5a0e3ad2010-03-24 17:04:11 +090023#include <linux/slab.h>
Rafael J. Wysockif3c6ea12011-03-23 22:15:54 +010024#include <linux/syscore_ops.h>
Joerg Roedela80dc3e2008-09-11 16:51:41 +020025#include <linux/interrupt.h>
26#include <linux/msi.h>
Joerg Roedel403f81d2011-06-14 16:44:25 +020027#include <linux/amd-iommu.h>
Joerg Roedel400a28a2011-11-28 15:11:02 +010028#include <linux/export.h>
Joerg Roedel02f3b3f2012-06-11 17:45:25 +020029#include <linux/acpi.h>
30#include <acpi/acpi.h>
Joerg Roedelf6e2e6b2008-06-26 21:27:39 +020031#include <asm/pci-direct.h>
FUJITA Tomonori46a7fa22008-07-11 10:23:42 +090032#include <asm/iommu.h>
Joerg Roedel1d9b16d2008-11-27 18:39:15 +010033#include <asm/gart.h>
FUJITA Tomonoriea1b0d32009-11-10 19:46:15 +090034#include <asm/x86_init.h>
Konrad Rzeszutek Wilk22e6daf2010-08-26 13:58:03 -040035#include <asm/iommu_table.h>
Joerg Roedel403f81d2011-06-14 16:44:25 +020036
37#include "amd_iommu_proto.h"
38#include "amd_iommu_types.h"
Joerg Roedel05152a02012-06-15 16:53:51 +020039#include "irq_remapping.h"
Joerg Roedel403f81d2011-06-14 16:44:25 +020040
Joerg Roedelf6e2e6b2008-06-26 21:27:39 +020041/*
42 * definitions for the ACPI scanning code
43 */
Joerg Roedelf6e2e6b2008-06-26 21:27:39 +020044#define IVRS_HEADER_LENGTH 48
Joerg Roedelf6e2e6b2008-06-26 21:27:39 +020045
46#define ACPI_IVHD_TYPE 0x10
47#define ACPI_IVMD_TYPE_ALL 0x20
48#define ACPI_IVMD_TYPE 0x21
49#define ACPI_IVMD_TYPE_RANGE 0x22
50
51#define IVHD_DEV_ALL 0x01
52#define IVHD_DEV_SELECT 0x02
53#define IVHD_DEV_SELECT_RANGE_START 0x03
54#define IVHD_DEV_RANGE_END 0x04
55#define IVHD_DEV_ALIAS 0x42
56#define IVHD_DEV_ALIAS_RANGE 0x43
57#define IVHD_DEV_EXT_SELECT 0x46
58#define IVHD_DEV_EXT_SELECT_RANGE 0x47
Joerg Roedel6efed632012-06-14 15:52:58 +020059#define IVHD_DEV_SPECIAL 0x48
60
61#define IVHD_SPECIAL_IOAPIC 1
62#define IVHD_SPECIAL_HPET 2
Joerg Roedelf6e2e6b2008-06-26 21:27:39 +020063
Joerg Roedel6da73422009-05-04 11:44:38 +020064#define IVHD_FLAG_HT_TUN_EN_MASK 0x01
65#define IVHD_FLAG_PASSPW_EN_MASK 0x02
66#define IVHD_FLAG_RESPASSPW_EN_MASK 0x04
67#define IVHD_FLAG_ISOC_EN_MASK 0x08
Joerg Roedelf6e2e6b2008-06-26 21:27:39 +020068
69#define IVMD_FLAG_EXCL_RANGE 0x08
70#define IVMD_FLAG_UNITY_MAP 0x01
71
72#define ACPI_DEVFLAG_INITPASS 0x01
73#define ACPI_DEVFLAG_EXTINT 0x02
74#define ACPI_DEVFLAG_NMI 0x04
75#define ACPI_DEVFLAG_SYSMGT1 0x10
76#define ACPI_DEVFLAG_SYSMGT2 0x20
77#define ACPI_DEVFLAG_LINT0 0x40
78#define ACPI_DEVFLAG_LINT1 0x80
79#define ACPI_DEVFLAG_ATSDIS 0x10000000
80
Joerg Roedelb65233a2008-07-11 17:14:21 +020081/*
82 * ACPI table definitions
83 *
84 * These data structures are laid over the table to parse the important values
85 * out of it.
86 */
87
88/*
89 * structure describing one IOMMU in the ACPI table. Typically followed by one
90 * or more ivhd_entrys.
91 */
Joerg Roedelf6e2e6b2008-06-26 21:27:39 +020092struct ivhd_header {
93 u8 type;
94 u8 flags;
95 u16 length;
96 u16 devid;
97 u16 cap_ptr;
98 u64 mmio_phys;
99 u16 pci_seg;
100 u16 info;
101 u32 reserved;
102} __attribute__((packed));
103
Joerg Roedelb65233a2008-07-11 17:14:21 +0200104/*
105 * A device entry describing which devices a specific IOMMU translates and
106 * which requestor ids they use.
107 */
Joerg Roedelf6e2e6b2008-06-26 21:27:39 +0200108struct ivhd_entry {
109 u8 type;
110 u16 devid;
111 u8 flags;
112 u32 ext;
113} __attribute__((packed));
114
Joerg Roedelb65233a2008-07-11 17:14:21 +0200115/*
116 * An AMD IOMMU memory definition structure. It defines things like exclusion
117 * ranges for devices and regions that should be unity mapped.
118 */
Joerg Roedelf6e2e6b2008-06-26 21:27:39 +0200119struct ivmd_header {
120 u8 type;
121 u8 flags;
122 u16 length;
123 u16 devid;
124 u16 aux;
125 u64 resv;
126 u64 range_start;
127 u64 range_length;
128} __attribute__((packed));
129
Joerg Roedelfefda112009-05-20 12:21:42 +0200130bool amd_iommu_dump;
Joerg Roedel05152a02012-06-15 16:53:51 +0200131bool amd_iommu_irq_remap __read_mostly;
Joerg Roedelfefda112009-05-20 12:21:42 +0200132
Joerg Roedel02f3b3f2012-06-11 17:45:25 +0200133static bool amd_iommu_detected;
Joerg Roedela5235722010-05-11 17:12:33 +0200134static bool __initdata amd_iommu_disabled;
Joerg Roedelc1cbebe2008-07-03 19:35:10 +0200135
Joerg Roedelb65233a2008-07-11 17:14:21 +0200136u16 amd_iommu_last_bdf; /* largest PCI device id we have
137 to handle */
Joerg Roedel2e228472008-07-11 17:14:31 +0200138LIST_HEAD(amd_iommu_unity_map); /* a list of required unity mappings
Joerg Roedelb65233a2008-07-11 17:14:21 +0200139 we find in ACPI */
Dan Carpenter3775d482012-06-27 12:09:18 +0300140u32 amd_iommu_unmap_flush; /* if true, flush on every unmap */
Joerg Roedel928abd22008-06-26 21:27:40 +0200141
Joerg Roedel2e228472008-07-11 17:14:31 +0200142LIST_HEAD(amd_iommu_list); /* list of all AMD IOMMUs in the
Joerg Roedelb65233a2008-07-11 17:14:21 +0200143 system */
144
Joerg Roedelbb527772009-11-20 14:31:51 +0100145/* Array to assign indices to IOMMUs*/
146struct amd_iommu *amd_iommus[MAX_IOMMUS];
147int amd_iommus_present;
148
Joerg Roedel318afd42009-11-23 18:32:38 +0100149/* IOMMUs have a non-present cache? */
150bool amd_iommu_np_cache __read_mostly;
Joerg Roedel60f723b2011-04-05 12:50:24 +0200151bool amd_iommu_iotlb_sup __read_mostly = true;
Joerg Roedel318afd42009-11-23 18:32:38 +0100152
Joerg Roedel62f71ab2011-11-10 14:41:57 +0100153u32 amd_iommu_max_pasids __read_mostly = ~0;
154
Joerg Roedel400a28a2011-11-28 15:11:02 +0100155bool amd_iommu_v2_present __read_mostly;
156
Joerg Roedel5abcdba2011-12-01 15:49:45 +0100157bool amd_iommu_force_isolation __read_mostly;
158
Joerg Roedelb65233a2008-07-11 17:14:21 +0200159/*
Joerg Roedelaeb26f52009-11-20 16:44:01 +0100160 * List of protection domains - used during resume
161 */
162LIST_HEAD(amd_iommu_pd_list);
163spinlock_t amd_iommu_pd_lock;
164
165/*
Joerg Roedelb65233a2008-07-11 17:14:21 +0200166 * Pointer to the device table which is shared by all AMD IOMMUs
167 * it is indexed by the PCI device id or the HT unit id and contains
168 * information about the domain the device belongs to as well as the
169 * page table root pointer.
170 */
Joerg Roedel928abd22008-06-26 21:27:40 +0200171struct dev_table_entry *amd_iommu_dev_table;
Joerg Roedelb65233a2008-07-11 17:14:21 +0200172
173/*
174 * The alias table is a driver specific data structure which contains the
175 * mappings of the PCI device ids to the actual requestor ids on the IOMMU.
176 * More than one device can share the same requestor id.
177 */
Joerg Roedel928abd22008-06-26 21:27:40 +0200178u16 *amd_iommu_alias_table;
Joerg Roedelb65233a2008-07-11 17:14:21 +0200179
180/*
181 * The rlookup table is used to find the IOMMU which is responsible
182 * for a specific device. It is also indexed by the PCI device id.
183 */
Joerg Roedel928abd22008-06-26 21:27:40 +0200184struct amd_iommu **amd_iommu_rlookup_table;
Joerg Roedelb65233a2008-07-11 17:14:21 +0200185
186/*
Joerg Roedel0ea2c422012-06-15 18:05:20 +0200187 * This table is used to find the irq remapping table for a given device id
188 * quickly.
189 */
190struct irq_remap_table **irq_lookup_table;
191
192/*
Joerg Roedelb65233a2008-07-11 17:14:21 +0200193 * AMD IOMMU allows up to 2^16 differend protection domains. This is a bitmap
194 * to know which ones are already in use.
195 */
Joerg Roedel928abd22008-06-26 21:27:40 +0200196unsigned long *amd_iommu_pd_alloc_bitmap;
197
Joerg Roedelb65233a2008-07-11 17:14:21 +0200198static u32 dev_table_size; /* size of the device table */
199static u32 alias_table_size; /* size of the alias table */
200static u32 rlookup_table_size; /* size if the rlookup table */
Joerg Roedel3e8064b2008-06-26 21:27:41 +0200201
Joerg Roedel2c0ae172012-06-12 15:59:30 +0200202enum iommu_init_state {
203 IOMMU_START_STATE,
204 IOMMU_IVRS_DETECTED,
205 IOMMU_ACPI_FINISHED,
206 IOMMU_ENABLED,
207 IOMMU_PCI_INIT,
208 IOMMU_INTERRUPTS_EN,
209 IOMMU_DMA_OPS,
210 IOMMU_INITIALIZED,
211 IOMMU_NOT_FOUND,
212 IOMMU_INIT_ERROR,
213};
214
215static enum iommu_init_state init_state = IOMMU_START_STATE;
216
Gerard Snitselaarae295142012-03-16 11:38:22 -0700217static int amd_iommu_enable_interrupts(void);
Joerg Roedel2c0ae172012-06-12 15:59:30 +0200218static int __init iommu_go_to_state(enum iommu_init_state state);
Joerg Roedel3d9761e2012-03-15 16:39:21 +0100219
Joerg Roedel208ec8c2008-07-11 17:14:24 +0200220static inline void update_last_devid(u16 devid)
221{
222 if (devid > amd_iommu_last_bdf)
223 amd_iommu_last_bdf = devid;
224}
225
Joerg Roedelc5714842008-07-11 17:14:25 +0200226static inline unsigned long tbl_size(int entry_size)
227{
228 unsigned shift = PAGE_SHIFT +
Neil Turton421f9092009-05-14 14:00:35 +0100229 get_order(((int)amd_iommu_last_bdf + 1) * entry_size);
Joerg Roedelc5714842008-07-11 17:14:25 +0200230
231 return 1UL << shift;
232}
233
Matthew Garrett5bcd7572010-10-04 14:59:31 -0400234/* Access to l1 and l2 indexed register spaces */
235
236static u32 iommu_read_l1(struct amd_iommu *iommu, u16 l1, u8 address)
237{
238 u32 val;
239
240 pci_write_config_dword(iommu->dev, 0xf8, (address | l1 << 16));
241 pci_read_config_dword(iommu->dev, 0xfc, &val);
242 return val;
243}
244
245static void iommu_write_l1(struct amd_iommu *iommu, u16 l1, u8 address, u32 val)
246{
247 pci_write_config_dword(iommu->dev, 0xf8, (address | l1 << 16 | 1 << 31));
248 pci_write_config_dword(iommu->dev, 0xfc, val);
249 pci_write_config_dword(iommu->dev, 0xf8, (address | l1 << 16));
250}
251
252static u32 iommu_read_l2(struct amd_iommu *iommu, u8 address)
253{
254 u32 val;
255
256 pci_write_config_dword(iommu->dev, 0xf0, address);
257 pci_read_config_dword(iommu->dev, 0xf4, &val);
258 return val;
259}
260
261static void iommu_write_l2(struct amd_iommu *iommu, u8 address, u32 val)
262{
263 pci_write_config_dword(iommu->dev, 0xf0, (address | 1 << 8));
264 pci_write_config_dword(iommu->dev, 0xf4, val);
265}
266
Joerg Roedelb65233a2008-07-11 17:14:21 +0200267/****************************************************************************
268 *
269 * AMD IOMMU MMIO register space handling functions
270 *
271 * These functions are used to program the IOMMU device registers in
272 * MMIO space required for that driver.
273 *
274 ****************************************************************************/
275
276/*
277 * This function set the exclusion range in the IOMMU. DMA accesses to the
278 * exclusion range are passed through untranslated
279 */
Joerg Roedel05f92db2009-05-12 09:52:46 +0200280static void iommu_set_exclusion_range(struct amd_iommu *iommu)
Joerg Roedelb2026aa2008-06-26 21:27:44 +0200281{
282 u64 start = iommu->exclusion_start & PAGE_MASK;
283 u64 limit = (start + iommu->exclusion_length) & PAGE_MASK;
284 u64 entry;
285
286 if (!iommu->exclusion_start)
287 return;
288
289 entry = start | MMIO_EXCL_ENABLE_MASK;
290 memcpy_toio(iommu->mmio_base + MMIO_EXCL_BASE_OFFSET,
291 &entry, sizeof(entry));
292
293 entry = limit;
294 memcpy_toio(iommu->mmio_base + MMIO_EXCL_LIMIT_OFFSET,
295 &entry, sizeof(entry));
296}
297
Joerg Roedelb65233a2008-07-11 17:14:21 +0200298/* Programs the physical address of the device table into the IOMMU hardware */
Jan Beulich6b7f0002012-03-08 08:58:13 +0000299static void iommu_set_device_table(struct amd_iommu *iommu)
Joerg Roedelb2026aa2008-06-26 21:27:44 +0200300{
Andreas Herrmannf6098912008-10-16 16:27:36 +0200301 u64 entry;
Joerg Roedelb2026aa2008-06-26 21:27:44 +0200302
303 BUG_ON(iommu->mmio_base == NULL);
304
305 entry = virt_to_phys(amd_iommu_dev_table);
306 entry |= (dev_table_size >> 12) - 1;
307 memcpy_toio(iommu->mmio_base + MMIO_DEV_TABLE_OFFSET,
308 &entry, sizeof(entry));
309}
310
Joerg Roedelb65233a2008-07-11 17:14:21 +0200311/* Generic functions to enable/disable certain features of the IOMMU. */
Joerg Roedel05f92db2009-05-12 09:52:46 +0200312static void iommu_feature_enable(struct amd_iommu *iommu, u8 bit)
Joerg Roedelb2026aa2008-06-26 21:27:44 +0200313{
314 u32 ctrl;
315
316 ctrl = readl(iommu->mmio_base + MMIO_CONTROL_OFFSET);
317 ctrl |= (1 << bit);
318 writel(ctrl, iommu->mmio_base + MMIO_CONTROL_OFFSET);
319}
320
Joerg Roedelca0207112009-10-28 18:02:26 +0100321static void iommu_feature_disable(struct amd_iommu *iommu, u8 bit)
Joerg Roedelb2026aa2008-06-26 21:27:44 +0200322{
323 u32 ctrl;
324
Joerg Roedel199d0d52008-09-17 16:45:59 +0200325 ctrl = readl(iommu->mmio_base + MMIO_CONTROL_OFFSET);
Joerg Roedelb2026aa2008-06-26 21:27:44 +0200326 ctrl &= ~(1 << bit);
327 writel(ctrl, iommu->mmio_base + MMIO_CONTROL_OFFSET);
328}
329
Joerg Roedel1456e9d2011-12-22 14:51:53 +0100330static void iommu_set_inv_tlb_timeout(struct amd_iommu *iommu, int timeout)
331{
332 u32 ctrl;
333
334 ctrl = readl(iommu->mmio_base + MMIO_CONTROL_OFFSET);
335 ctrl &= ~CTRL_INV_TO_MASK;
336 ctrl |= (timeout << CONTROL_INV_TIMEOUT) & CTRL_INV_TO_MASK;
337 writel(ctrl, iommu->mmio_base + MMIO_CONTROL_OFFSET);
338}
339
Joerg Roedelb65233a2008-07-11 17:14:21 +0200340/* Function to enable the hardware */
Joerg Roedel05f92db2009-05-12 09:52:46 +0200341static void iommu_enable(struct amd_iommu *iommu)
Joerg Roedelb2026aa2008-06-26 21:27:44 +0200342{
Joerg Roedelb2026aa2008-06-26 21:27:44 +0200343 iommu_feature_enable(iommu, CONTROL_IOMMU_EN);
Joerg Roedelb2026aa2008-06-26 21:27:44 +0200344}
345
Joerg Roedel92ac4322009-05-19 19:06:27 +0200346static void iommu_disable(struct amd_iommu *iommu)
Joerg Roedel126c52b2008-09-09 16:47:35 +0200347{
Chris Wrighta8c485b2009-06-15 15:53:45 +0200348 /* Disable command buffer */
349 iommu_feature_disable(iommu, CONTROL_CMDBUF_EN);
350
351 /* Disable event logging and event interrupts */
352 iommu_feature_disable(iommu, CONTROL_EVT_INT_EN);
353 iommu_feature_disable(iommu, CONTROL_EVT_LOG_EN);
354
355 /* Disable IOMMU hardware itself */
Joerg Roedel92ac4322009-05-19 19:06:27 +0200356 iommu_feature_disable(iommu, CONTROL_IOMMU_EN);
Joerg Roedel126c52b2008-09-09 16:47:35 +0200357}
358
Joerg Roedelb65233a2008-07-11 17:14:21 +0200359/*
360 * mapping and unmapping functions for the IOMMU MMIO space. Each AMD IOMMU in
361 * the system has one.
362 */
Joerg Roedel98f1ad22012-07-06 13:28:37 +0200363static u8 __iomem * __init iommu_map_mmio_space(u64 address)
Joerg Roedel6c567472008-06-26 21:27:43 +0200364{
Joerg Roedele82752d2010-05-28 14:26:48 +0200365 if (!request_mem_region(address, MMIO_REGION_LENGTH, "amd_iommu")) {
366 pr_err("AMD-Vi: Can not reserve memory region %llx for mmio\n",
367 address);
368 pr_err("AMD-Vi: This is a BIOS bug. Please contact your hardware vendor\n");
Joerg Roedel6c567472008-06-26 21:27:43 +0200369 return NULL;
Joerg Roedele82752d2010-05-28 14:26:48 +0200370 }
Joerg Roedel6c567472008-06-26 21:27:43 +0200371
Joerg Roedel98f1ad22012-07-06 13:28:37 +0200372 return (u8 __iomem *)ioremap_nocache(address, MMIO_REGION_LENGTH);
Joerg Roedel6c567472008-06-26 21:27:43 +0200373}
374
375static void __init iommu_unmap_mmio_space(struct amd_iommu *iommu)
376{
377 if (iommu->mmio_base)
378 iounmap(iommu->mmio_base);
379 release_mem_region(iommu->mmio_phys, MMIO_REGION_LENGTH);
380}
381
Joerg Roedelb65233a2008-07-11 17:14:21 +0200382/****************************************************************************
383 *
384 * The functions below belong to the first pass of AMD IOMMU ACPI table
385 * parsing. In this pass we try to find out the highest device id this
386 * code has to handle. Upon this information the size of the shared data
387 * structures is determined later.
388 *
389 ****************************************************************************/
390
391/*
Joerg Roedelb514e552008-09-17 17:14:27 +0200392 * This function calculates the length of a given IVHD entry
393 */
394static inline int ivhd_entry_length(u8 *ivhd)
395{
396 return 0x04 << (*ivhd >> 6);
397}
398
399/*
Joerg Roedelb65233a2008-07-11 17:14:21 +0200400 * This function reads the last device id the IOMMU has to handle from the PCI
401 * capability header for this IOMMU
402 */
Joerg Roedel3e8064b2008-06-26 21:27:41 +0200403static int __init find_last_devid_on_pci(int bus, int dev, int fn, int cap_ptr)
404{
405 u32 cap;
406
407 cap = read_pci_config(bus, dev, fn, cap_ptr+MMIO_RANGE_OFFSET);
Joerg Roedeld591b0a2008-07-11 17:14:35 +0200408 update_last_devid(calc_devid(MMIO_GET_BUS(cap), MMIO_GET_LD(cap)));
Joerg Roedel3e8064b2008-06-26 21:27:41 +0200409
410 return 0;
411}
412
Joerg Roedelb65233a2008-07-11 17:14:21 +0200413/*
414 * After reading the highest device id from the IOMMU PCI capability header
415 * this function looks if there is a higher device id defined in the ACPI table
416 */
Joerg Roedel3e8064b2008-06-26 21:27:41 +0200417static int __init find_last_devid_from_ivhd(struct ivhd_header *h)
418{
419 u8 *p = (void *)h, *end = (void *)h;
420 struct ivhd_entry *dev;
421
422 p += sizeof(*h);
423 end += h->length;
424
425 find_last_devid_on_pci(PCI_BUS(h->devid),
426 PCI_SLOT(h->devid),
427 PCI_FUNC(h->devid),
428 h->cap_ptr);
429
430 while (p < end) {
431 dev = (struct ivhd_entry *)p;
432 switch (dev->type) {
433 case IVHD_DEV_SELECT:
434 case IVHD_DEV_RANGE_END:
435 case IVHD_DEV_ALIAS:
436 case IVHD_DEV_EXT_SELECT:
Joerg Roedelb65233a2008-07-11 17:14:21 +0200437 /* all the above subfield types refer to device ids */
Joerg Roedel208ec8c2008-07-11 17:14:24 +0200438 update_last_devid(dev->devid);
Joerg Roedel3e8064b2008-06-26 21:27:41 +0200439 break;
440 default:
441 break;
442 }
Joerg Roedelb514e552008-09-17 17:14:27 +0200443 p += ivhd_entry_length(p);
Joerg Roedel3e8064b2008-06-26 21:27:41 +0200444 }
445
446 WARN_ON(p != end);
447
448 return 0;
449}
450
Joerg Roedelb65233a2008-07-11 17:14:21 +0200451/*
452 * Iterate over all IVHD entries in the ACPI table and find the highest device
453 * id which we need to handle. This is the first of three functions which parse
454 * the ACPI table. So we check the checksum here.
455 */
Joerg Roedel3e8064b2008-06-26 21:27:41 +0200456static int __init find_last_devid_acpi(struct acpi_table_header *table)
457{
458 int i;
459 u8 checksum = 0, *p = (u8 *)table, *end = (u8 *)table;
460 struct ivhd_header *h;
461
462 /*
463 * Validate checksum here so we don't need to do it when
464 * we actually parse the table
465 */
466 for (i = 0; i < table->length; ++i)
467 checksum += p[i];
Joerg Roedel02f3b3f2012-06-11 17:45:25 +0200468 if (checksum != 0)
Joerg Roedel3e8064b2008-06-26 21:27:41 +0200469 /* ACPI table corrupt */
Joerg Roedel02f3b3f2012-06-11 17:45:25 +0200470 return -ENODEV;
Joerg Roedel3e8064b2008-06-26 21:27:41 +0200471
472 p += IVRS_HEADER_LENGTH;
473
474 end += table->length;
475 while (p < end) {
476 h = (struct ivhd_header *)p;
477 switch (h->type) {
478 case ACPI_IVHD_TYPE:
479 find_last_devid_from_ivhd(h);
480 break;
481 default:
482 break;
483 }
484 p += h->length;
485 }
486 WARN_ON(p != end);
487
488 return 0;
489}
490
Joerg Roedelb65233a2008-07-11 17:14:21 +0200491/****************************************************************************
492 *
493 * The following functions belong the the code path which parses the ACPI table
494 * the second time. In this ACPI parsing iteration we allocate IOMMU specific
495 * data structures, initialize the device/alias/rlookup table and also
496 * basically initialize the hardware.
497 *
498 ****************************************************************************/
499
500/*
501 * Allocates the command buffer. This buffer is per AMD IOMMU. We can
502 * write commands to that buffer later and the IOMMU will execute them
503 * asynchronously
504 */
Joerg Roedelb36ca912008-06-26 21:27:45 +0200505static u8 * __init alloc_command_buffer(struct amd_iommu *iommu)
506{
Joerg Roedeld0312b22008-07-11 17:14:29 +0200507 u8 *cmd_buf = (u8 *)__get_free_pages(GFP_KERNEL | __GFP_ZERO,
Joerg Roedelb36ca912008-06-26 21:27:45 +0200508 get_order(CMD_BUFFER_SIZE));
Joerg Roedelb36ca912008-06-26 21:27:45 +0200509
510 if (cmd_buf == NULL)
511 return NULL;
512
Chris Wright549c90d2010-04-02 18:27:53 -0700513 iommu->cmd_buf_size = CMD_BUFFER_SIZE | CMD_BUFFER_UNINITIALIZED;
Joerg Roedelb36ca912008-06-26 21:27:45 +0200514
Joerg Roedel58492e12009-05-04 18:41:16 +0200515 return cmd_buf;
516}
517
518/*
Joerg Roedel93f1cc672009-09-03 14:50:20 +0200519 * This function resets the command buffer if the IOMMU stopped fetching
520 * commands from it.
521 */
522void amd_iommu_reset_cmd_buffer(struct amd_iommu *iommu)
523{
524 iommu_feature_disable(iommu, CONTROL_CMDBUF_EN);
525
526 writel(0x00, iommu->mmio_base + MMIO_CMD_HEAD_OFFSET);
527 writel(0x00, iommu->mmio_base + MMIO_CMD_TAIL_OFFSET);
528
529 iommu_feature_enable(iommu, CONTROL_CMDBUF_EN);
530}
531
532/*
Joerg Roedel58492e12009-05-04 18:41:16 +0200533 * This function writes the command buffer address to the hardware and
534 * enables it.
535 */
536static void iommu_enable_command_buffer(struct amd_iommu *iommu)
537{
538 u64 entry;
539
540 BUG_ON(iommu->cmd_buf == NULL);
541
542 entry = (u64)virt_to_phys(iommu->cmd_buf);
Joerg Roedelb36ca912008-06-26 21:27:45 +0200543 entry |= MMIO_CMD_SIZE_512;
Joerg Roedel58492e12009-05-04 18:41:16 +0200544
Joerg Roedelb36ca912008-06-26 21:27:45 +0200545 memcpy_toio(iommu->mmio_base + MMIO_CMD_BUF_OFFSET,
Joerg Roedel58492e12009-05-04 18:41:16 +0200546 &entry, sizeof(entry));
Joerg Roedelb36ca912008-06-26 21:27:45 +0200547
Joerg Roedel93f1cc672009-09-03 14:50:20 +0200548 amd_iommu_reset_cmd_buffer(iommu);
Chris Wright549c90d2010-04-02 18:27:53 -0700549 iommu->cmd_buf_size &= ~(CMD_BUFFER_UNINITIALIZED);
Joerg Roedelb36ca912008-06-26 21:27:45 +0200550}
551
552static void __init free_command_buffer(struct amd_iommu *iommu)
553{
Joerg Roedel23c17132008-09-17 17:18:17 +0200554 free_pages((unsigned long)iommu->cmd_buf,
Chris Wright549c90d2010-04-02 18:27:53 -0700555 get_order(iommu->cmd_buf_size & ~(CMD_BUFFER_UNINITIALIZED)));
Joerg Roedelb36ca912008-06-26 21:27:45 +0200556}
557
Joerg Roedel335503e2008-09-05 14:29:07 +0200558/* allocates the memory where the IOMMU will log its events to */
559static u8 * __init alloc_event_buffer(struct amd_iommu *iommu)
560{
Joerg Roedel335503e2008-09-05 14:29:07 +0200561 iommu->evt_buf = (u8 *)__get_free_pages(GFP_KERNEL | __GFP_ZERO,
562 get_order(EVT_BUFFER_SIZE));
563
564 if (iommu->evt_buf == NULL)
565 return NULL;
566
Joerg Roedel1bc6f832009-07-02 18:32:05 +0200567 iommu->evt_buf_size = EVT_BUFFER_SIZE;
568
Joerg Roedel58492e12009-05-04 18:41:16 +0200569 return iommu->evt_buf;
570}
571
572static void iommu_enable_event_buffer(struct amd_iommu *iommu)
573{
574 u64 entry;
575
576 BUG_ON(iommu->evt_buf == NULL);
577
Joerg Roedel335503e2008-09-05 14:29:07 +0200578 entry = (u64)virt_to_phys(iommu->evt_buf) | EVT_LEN_MASK;
Joerg Roedel58492e12009-05-04 18:41:16 +0200579
Joerg Roedel335503e2008-09-05 14:29:07 +0200580 memcpy_toio(iommu->mmio_base + MMIO_EVT_BUF_OFFSET,
581 &entry, sizeof(entry));
582
Joerg Roedel090672072009-06-15 16:06:48 +0200583 /* set head and tail to zero manually */
584 writel(0x00, iommu->mmio_base + MMIO_EVT_HEAD_OFFSET);
585 writel(0x00, iommu->mmio_base + MMIO_EVT_TAIL_OFFSET);
586
Joerg Roedel58492e12009-05-04 18:41:16 +0200587 iommu_feature_enable(iommu, CONTROL_EVT_LOG_EN);
Joerg Roedel335503e2008-09-05 14:29:07 +0200588}
589
590static void __init free_event_buffer(struct amd_iommu *iommu)
591{
592 free_pages((unsigned long)iommu->evt_buf, get_order(EVT_BUFFER_SIZE));
593}
594
Joerg Roedel1a29ac02011-11-10 15:41:40 +0100595/* allocates the memory where the IOMMU will log its events to */
596static u8 * __init alloc_ppr_log(struct amd_iommu *iommu)
597{
598 iommu->ppr_log = (u8 *)__get_free_pages(GFP_KERNEL | __GFP_ZERO,
599 get_order(PPR_LOG_SIZE));
600
601 if (iommu->ppr_log == NULL)
602 return NULL;
603
604 return iommu->ppr_log;
605}
606
607static void iommu_enable_ppr_log(struct amd_iommu *iommu)
608{
609 u64 entry;
610
611 if (iommu->ppr_log == NULL)
612 return;
613
614 entry = (u64)virt_to_phys(iommu->ppr_log) | PPR_LOG_SIZE_512;
615
616 memcpy_toio(iommu->mmio_base + MMIO_PPR_LOG_OFFSET,
617 &entry, sizeof(entry));
618
619 /* set head and tail to zero manually */
620 writel(0x00, iommu->mmio_base + MMIO_PPR_HEAD_OFFSET);
621 writel(0x00, iommu->mmio_base + MMIO_PPR_TAIL_OFFSET);
622
623 iommu_feature_enable(iommu, CONTROL_PPFLOG_EN);
624 iommu_feature_enable(iommu, CONTROL_PPR_EN);
625}
626
627static void __init free_ppr_log(struct amd_iommu *iommu)
628{
629 if (iommu->ppr_log == NULL)
630 return;
631
632 free_pages((unsigned long)iommu->ppr_log, get_order(PPR_LOG_SIZE));
633}
634
Joerg Roedelcbc33a92011-11-25 11:41:31 +0100635static void iommu_enable_gt(struct amd_iommu *iommu)
636{
637 if (!iommu_feature(iommu, FEATURE_GT))
638 return;
639
640 iommu_feature_enable(iommu, CONTROL_GT_EN);
641}
642
Joerg Roedelb65233a2008-07-11 17:14:21 +0200643/* sets a specific bit in the device table entry. */
Joerg Roedel3566b772008-06-26 21:27:46 +0200644static void set_dev_entry_bit(u16 devid, u8 bit)
645{
Joerg Roedelee6c2862011-11-09 12:06:03 +0100646 int i = (bit >> 6) & 0x03;
647 int _bit = bit & 0x3f;
Joerg Roedel3566b772008-06-26 21:27:46 +0200648
Joerg Roedelee6c2862011-11-09 12:06:03 +0100649 amd_iommu_dev_table[devid].data[i] |= (1UL << _bit);
Joerg Roedel3566b772008-06-26 21:27:46 +0200650}
651
Joerg Roedelc5cca142009-10-09 18:31:20 +0200652static int get_dev_entry_bit(u16 devid, u8 bit)
653{
Joerg Roedelee6c2862011-11-09 12:06:03 +0100654 int i = (bit >> 6) & 0x03;
655 int _bit = bit & 0x3f;
Joerg Roedelc5cca142009-10-09 18:31:20 +0200656
Joerg Roedelee6c2862011-11-09 12:06:03 +0100657 return (amd_iommu_dev_table[devid].data[i] & (1UL << _bit)) >> _bit;
Joerg Roedelc5cca142009-10-09 18:31:20 +0200658}
659
660
661void amd_iommu_apply_erratum_63(u16 devid)
662{
663 int sysmgt;
664
665 sysmgt = get_dev_entry_bit(devid, DEV_ENTRY_SYSMGT1) |
666 (get_dev_entry_bit(devid, DEV_ENTRY_SYSMGT2) << 1);
667
668 if (sysmgt == 0x01)
669 set_dev_entry_bit(devid, DEV_ENTRY_IW);
670}
671
Joerg Roedel5ff47892008-07-14 20:11:18 +0200672/* Writes the specific IOMMU for a device into the rlookup table */
673static void __init set_iommu_for_device(struct amd_iommu *iommu, u16 devid)
674{
675 amd_iommu_rlookup_table[devid] = iommu;
676}
677
Joerg Roedelb65233a2008-07-11 17:14:21 +0200678/*
679 * This function takes the device specific flags read from the ACPI
680 * table and sets up the device table entry with that information
681 */
Joerg Roedel5ff47892008-07-14 20:11:18 +0200682static void __init set_dev_entry_from_acpi(struct amd_iommu *iommu,
683 u16 devid, u32 flags, u32 ext_flags)
Joerg Roedel3566b772008-06-26 21:27:46 +0200684{
685 if (flags & ACPI_DEVFLAG_INITPASS)
686 set_dev_entry_bit(devid, DEV_ENTRY_INIT_PASS);
687 if (flags & ACPI_DEVFLAG_EXTINT)
688 set_dev_entry_bit(devid, DEV_ENTRY_EINT_PASS);
689 if (flags & ACPI_DEVFLAG_NMI)
690 set_dev_entry_bit(devid, DEV_ENTRY_NMI_PASS);
691 if (flags & ACPI_DEVFLAG_SYSMGT1)
692 set_dev_entry_bit(devid, DEV_ENTRY_SYSMGT1);
693 if (flags & ACPI_DEVFLAG_SYSMGT2)
694 set_dev_entry_bit(devid, DEV_ENTRY_SYSMGT2);
695 if (flags & ACPI_DEVFLAG_LINT0)
696 set_dev_entry_bit(devid, DEV_ENTRY_LINT0_PASS);
697 if (flags & ACPI_DEVFLAG_LINT1)
698 set_dev_entry_bit(devid, DEV_ENTRY_LINT1_PASS);
Joerg Roedel3566b772008-06-26 21:27:46 +0200699
Joerg Roedelc5cca142009-10-09 18:31:20 +0200700 amd_iommu_apply_erratum_63(devid);
701
Joerg Roedel5ff47892008-07-14 20:11:18 +0200702 set_iommu_for_device(iommu, devid);
Joerg Roedel3566b772008-06-26 21:27:46 +0200703}
704
Joerg Roedel6efed632012-06-14 15:52:58 +0200705static int add_special_device(u8 type, u8 id, u16 devid)
706{
707 struct devid_map *entry;
708 struct list_head *list;
709
710 if (type != IVHD_SPECIAL_IOAPIC && type != IVHD_SPECIAL_HPET)
711 return -EINVAL;
712
713 entry = kzalloc(sizeof(*entry), GFP_KERNEL);
714 if (!entry)
715 return -ENOMEM;
716
717 entry->id = id;
718 entry->devid = devid;
719
720 if (type == IVHD_SPECIAL_IOAPIC)
721 list = &ioapic_map;
722 else
723 list = &hpet_map;
724
725 list_add_tail(&entry->list, list);
726
727 return 0;
728}
729
Joerg Roedelb65233a2008-07-11 17:14:21 +0200730/*
731 * Reads the device exclusion range from ACPI and initialize IOMMU with
732 * it
733 */
Joerg Roedel3566b772008-06-26 21:27:46 +0200734static void __init set_device_exclusion_range(u16 devid, struct ivmd_header *m)
735{
736 struct amd_iommu *iommu = amd_iommu_rlookup_table[devid];
737
738 if (!(m->flags & IVMD_FLAG_EXCL_RANGE))
739 return;
740
741 if (iommu) {
Joerg Roedelb65233a2008-07-11 17:14:21 +0200742 /*
743 * We only can configure exclusion ranges per IOMMU, not
744 * per device. But we can enable the exclusion range per
745 * device. This is done here
746 */
Joerg Roedel3566b772008-06-26 21:27:46 +0200747 set_dev_entry_bit(m->devid, DEV_ENTRY_EX);
748 iommu->exclusion_start = m->range_start;
749 iommu->exclusion_length = m->range_length;
750 }
751}
752
Joerg Roedelb65233a2008-07-11 17:14:21 +0200753/*
Joerg Roedelb65233a2008-07-11 17:14:21 +0200754 * Takes a pointer to an AMD IOMMU entry in the ACPI table and
755 * initializes the hardware and our data structures with it.
756 */
Joerg Roedel6efed632012-06-14 15:52:58 +0200757static int __init init_iommu_from_acpi(struct amd_iommu *iommu,
Joerg Roedel5d0c8e42008-06-26 21:27:47 +0200758 struct ivhd_header *h)
759{
760 u8 *p = (u8 *)h;
761 u8 *end = p, flags = 0;
Joerg Roedel0de66d52011-06-06 16:04:02 +0200762 u16 devid = 0, devid_start = 0, devid_to = 0;
763 u32 dev_i, ext_flags = 0;
Joerg Roedel58a3bee2008-07-11 17:14:30 +0200764 bool alias = false;
Joerg Roedel5d0c8e42008-06-26 21:27:47 +0200765 struct ivhd_entry *e;
766
767 /*
Joerg Roedele9bf5192010-09-20 14:33:07 +0200768 * First save the recommended feature enable bits from ACPI
Joerg Roedel5d0c8e42008-06-26 21:27:47 +0200769 */
Joerg Roedele9bf5192010-09-20 14:33:07 +0200770 iommu->acpi_flags = h->flags;
Joerg Roedel5d0c8e42008-06-26 21:27:47 +0200771
772 /*
773 * Done. Now parse the device entries
774 */
775 p += sizeof(struct ivhd_header);
776 end += h->length;
777
Joerg Roedel42a698f2009-05-20 15:41:28 +0200778
Joerg Roedel5d0c8e42008-06-26 21:27:47 +0200779 while (p < end) {
780 e = (struct ivhd_entry *)p;
781 switch (e->type) {
782 case IVHD_DEV_ALL:
Joerg Roedel42a698f2009-05-20 15:41:28 +0200783
784 DUMP_printk(" DEV_ALL\t\t\t first devid: %02x:%02x.%x"
785 " last device %02x:%02x.%x flags: %02x\n",
786 PCI_BUS(iommu->first_device),
787 PCI_SLOT(iommu->first_device),
788 PCI_FUNC(iommu->first_device),
789 PCI_BUS(iommu->last_device),
790 PCI_SLOT(iommu->last_device),
791 PCI_FUNC(iommu->last_device),
792 e->flags);
793
Joerg Roedel5d0c8e42008-06-26 21:27:47 +0200794 for (dev_i = iommu->first_device;
795 dev_i <= iommu->last_device; ++dev_i)
Joerg Roedel5ff47892008-07-14 20:11:18 +0200796 set_dev_entry_from_acpi(iommu, dev_i,
797 e->flags, 0);
Joerg Roedel5d0c8e42008-06-26 21:27:47 +0200798 break;
799 case IVHD_DEV_SELECT:
Joerg Roedel42a698f2009-05-20 15:41:28 +0200800
801 DUMP_printk(" DEV_SELECT\t\t\t devid: %02x:%02x.%x "
802 "flags: %02x\n",
803 PCI_BUS(e->devid),
804 PCI_SLOT(e->devid),
805 PCI_FUNC(e->devid),
806 e->flags);
807
Joerg Roedel5d0c8e42008-06-26 21:27:47 +0200808 devid = e->devid;
Joerg Roedel5ff47892008-07-14 20:11:18 +0200809 set_dev_entry_from_acpi(iommu, devid, e->flags, 0);
Joerg Roedel5d0c8e42008-06-26 21:27:47 +0200810 break;
811 case IVHD_DEV_SELECT_RANGE_START:
Joerg Roedel42a698f2009-05-20 15:41:28 +0200812
813 DUMP_printk(" DEV_SELECT_RANGE_START\t "
814 "devid: %02x:%02x.%x flags: %02x\n",
815 PCI_BUS(e->devid),
816 PCI_SLOT(e->devid),
817 PCI_FUNC(e->devid),
818 e->flags);
819
Joerg Roedel5d0c8e42008-06-26 21:27:47 +0200820 devid_start = e->devid;
821 flags = e->flags;
822 ext_flags = 0;
Joerg Roedel58a3bee2008-07-11 17:14:30 +0200823 alias = false;
Joerg Roedel5d0c8e42008-06-26 21:27:47 +0200824 break;
825 case IVHD_DEV_ALIAS:
Joerg Roedel42a698f2009-05-20 15:41:28 +0200826
827 DUMP_printk(" DEV_ALIAS\t\t\t devid: %02x:%02x.%x "
828 "flags: %02x devid_to: %02x:%02x.%x\n",
829 PCI_BUS(e->devid),
830 PCI_SLOT(e->devid),
831 PCI_FUNC(e->devid),
832 e->flags,
833 PCI_BUS(e->ext >> 8),
834 PCI_SLOT(e->ext >> 8),
835 PCI_FUNC(e->ext >> 8));
836
Joerg Roedel5d0c8e42008-06-26 21:27:47 +0200837 devid = e->devid;
838 devid_to = e->ext >> 8;
Joerg Roedel7a6a3a02009-07-02 12:23:23 +0200839 set_dev_entry_from_acpi(iommu, devid , e->flags, 0);
Neil Turton7455aab2009-05-14 14:08:11 +0100840 set_dev_entry_from_acpi(iommu, devid_to, e->flags, 0);
Joerg Roedel5d0c8e42008-06-26 21:27:47 +0200841 amd_iommu_alias_table[devid] = devid_to;
842 break;
843 case IVHD_DEV_ALIAS_RANGE:
Joerg Roedel42a698f2009-05-20 15:41:28 +0200844
845 DUMP_printk(" DEV_ALIAS_RANGE\t\t "
846 "devid: %02x:%02x.%x flags: %02x "
847 "devid_to: %02x:%02x.%x\n",
848 PCI_BUS(e->devid),
849 PCI_SLOT(e->devid),
850 PCI_FUNC(e->devid),
851 e->flags,
852 PCI_BUS(e->ext >> 8),
853 PCI_SLOT(e->ext >> 8),
854 PCI_FUNC(e->ext >> 8));
855
Joerg Roedel5d0c8e42008-06-26 21:27:47 +0200856 devid_start = e->devid;
857 flags = e->flags;
858 devid_to = e->ext >> 8;
859 ext_flags = 0;
Joerg Roedel58a3bee2008-07-11 17:14:30 +0200860 alias = true;
Joerg Roedel5d0c8e42008-06-26 21:27:47 +0200861 break;
862 case IVHD_DEV_EXT_SELECT:
Joerg Roedel42a698f2009-05-20 15:41:28 +0200863
864 DUMP_printk(" DEV_EXT_SELECT\t\t devid: %02x:%02x.%x "
865 "flags: %02x ext: %08x\n",
866 PCI_BUS(e->devid),
867 PCI_SLOT(e->devid),
868 PCI_FUNC(e->devid),
869 e->flags, e->ext);
870
Joerg Roedel5d0c8e42008-06-26 21:27:47 +0200871 devid = e->devid;
Joerg Roedel5ff47892008-07-14 20:11:18 +0200872 set_dev_entry_from_acpi(iommu, devid, e->flags,
873 e->ext);
Joerg Roedel5d0c8e42008-06-26 21:27:47 +0200874 break;
875 case IVHD_DEV_EXT_SELECT_RANGE:
Joerg Roedel42a698f2009-05-20 15:41:28 +0200876
877 DUMP_printk(" DEV_EXT_SELECT_RANGE\t devid: "
878 "%02x:%02x.%x flags: %02x ext: %08x\n",
879 PCI_BUS(e->devid),
880 PCI_SLOT(e->devid),
881 PCI_FUNC(e->devid),
882 e->flags, e->ext);
883
Joerg Roedel5d0c8e42008-06-26 21:27:47 +0200884 devid_start = e->devid;
885 flags = e->flags;
886 ext_flags = e->ext;
Joerg Roedel58a3bee2008-07-11 17:14:30 +0200887 alias = false;
Joerg Roedel5d0c8e42008-06-26 21:27:47 +0200888 break;
889 case IVHD_DEV_RANGE_END:
Joerg Roedel42a698f2009-05-20 15:41:28 +0200890
891 DUMP_printk(" DEV_RANGE_END\t\t devid: %02x:%02x.%x\n",
892 PCI_BUS(e->devid),
893 PCI_SLOT(e->devid),
894 PCI_FUNC(e->devid));
895
Joerg Roedel5d0c8e42008-06-26 21:27:47 +0200896 devid = e->devid;
897 for (dev_i = devid_start; dev_i <= devid; ++dev_i) {
Joerg Roedel7a6a3a02009-07-02 12:23:23 +0200898 if (alias) {
Joerg Roedel5d0c8e42008-06-26 21:27:47 +0200899 amd_iommu_alias_table[dev_i] = devid_to;
Joerg Roedel7a6a3a02009-07-02 12:23:23 +0200900 set_dev_entry_from_acpi(iommu,
901 devid_to, flags, ext_flags);
902 }
903 set_dev_entry_from_acpi(iommu, dev_i,
904 flags, ext_flags);
Joerg Roedel5d0c8e42008-06-26 21:27:47 +0200905 }
906 break;
Joerg Roedel6efed632012-06-14 15:52:58 +0200907 case IVHD_DEV_SPECIAL: {
908 u8 handle, type;
909 const char *var;
910 u16 devid;
911 int ret;
912
913 handle = e->ext & 0xff;
914 devid = (e->ext >> 8) & 0xffff;
915 type = (e->ext >> 24) & 0xff;
916
917 if (type == IVHD_SPECIAL_IOAPIC)
918 var = "IOAPIC";
919 else if (type == IVHD_SPECIAL_HPET)
920 var = "HPET";
921 else
922 var = "UNKNOWN";
923
924 DUMP_printk(" DEV_SPECIAL(%s[%d])\t\tdevid: %02x:%02x.%x\n",
925 var, (int)handle,
926 PCI_BUS(devid),
927 PCI_SLOT(devid),
928 PCI_FUNC(devid));
929
930 set_dev_entry_from_acpi(iommu, devid, e->flags, 0);
931 ret = add_special_device(type, handle, devid);
932 if (ret)
933 return ret;
934 break;
935 }
Joerg Roedel5d0c8e42008-06-26 21:27:47 +0200936 default:
937 break;
938 }
939
Joerg Roedelb514e552008-09-17 17:14:27 +0200940 p += ivhd_entry_length(p);
Joerg Roedel5d0c8e42008-06-26 21:27:47 +0200941 }
Joerg Roedel6efed632012-06-14 15:52:58 +0200942
943 return 0;
Joerg Roedel5d0c8e42008-06-26 21:27:47 +0200944}
945
Joerg Roedelb65233a2008-07-11 17:14:21 +0200946/* Initializes the device->iommu mapping for the driver */
Joerg Roedel5d0c8e42008-06-26 21:27:47 +0200947static int __init init_iommu_devices(struct amd_iommu *iommu)
948{
Joerg Roedel0de66d52011-06-06 16:04:02 +0200949 u32 i;
Joerg Roedel5d0c8e42008-06-26 21:27:47 +0200950
951 for (i = iommu->first_device; i <= iommu->last_device; ++i)
952 set_iommu_for_device(iommu, i);
953
954 return 0;
955}
956
Joerg Roedele47d4022008-06-26 21:27:48 +0200957static void __init free_iommu_one(struct amd_iommu *iommu)
958{
959 free_command_buffer(iommu);
Joerg Roedel335503e2008-09-05 14:29:07 +0200960 free_event_buffer(iommu);
Joerg Roedel1a29ac02011-11-10 15:41:40 +0100961 free_ppr_log(iommu);
Joerg Roedele47d4022008-06-26 21:27:48 +0200962 iommu_unmap_mmio_space(iommu);
963}
964
965static void __init free_iommu_all(void)
966{
967 struct amd_iommu *iommu, *next;
968
Joerg Roedel3bd22172009-05-04 15:06:20 +0200969 for_each_iommu_safe(iommu, next) {
Joerg Roedele47d4022008-06-26 21:27:48 +0200970 list_del(&iommu->list);
971 free_iommu_one(iommu);
972 kfree(iommu);
973 }
974}
975
Joerg Roedelb65233a2008-07-11 17:14:21 +0200976/*
977 * This function clues the initialization function for one IOMMU
978 * together and also allocates the command buffer and programs the
979 * hardware. It does NOT enable the IOMMU. This is done afterwards.
980 */
Joerg Roedele47d4022008-06-26 21:27:48 +0200981static int __init init_iommu_one(struct amd_iommu *iommu, struct ivhd_header *h)
982{
Joerg Roedel6efed632012-06-14 15:52:58 +0200983 int ret;
984
Joerg Roedele47d4022008-06-26 21:27:48 +0200985 spin_lock_init(&iommu->lock);
Joerg Roedelbb527772009-11-20 14:31:51 +0100986
987 /* Add IOMMU to internal data structures */
Joerg Roedele47d4022008-06-26 21:27:48 +0200988 list_add_tail(&iommu->list, &amd_iommu_list);
Joerg Roedelbb527772009-11-20 14:31:51 +0100989 iommu->index = amd_iommus_present++;
990
991 if (unlikely(iommu->index >= MAX_IOMMUS)) {
992 WARN(1, "AMD-Vi: System has more IOMMUs than supported by this driver\n");
993 return -ENOSYS;
994 }
995
996 /* Index is fine - add IOMMU to the array */
997 amd_iommus[iommu->index] = iommu;
Joerg Roedele47d4022008-06-26 21:27:48 +0200998
999 /*
1000 * Copy data from ACPI table entry to the iommu struct
1001 */
Joerg Roedel23c742d2012-06-12 11:47:34 +02001002 iommu->devid = h->devid;
Joerg Roedele47d4022008-06-26 21:27:48 +02001003 iommu->cap_ptr = h->cap_ptr;
Joerg Roedelee893c22008-09-08 14:48:04 +02001004 iommu->pci_seg = h->pci_seg;
Joerg Roedele47d4022008-06-26 21:27:48 +02001005 iommu->mmio_phys = h->mmio_phys;
1006 iommu->mmio_base = iommu_map_mmio_space(h->mmio_phys);
1007 if (!iommu->mmio_base)
1008 return -ENOMEM;
1009
Joerg Roedele47d4022008-06-26 21:27:48 +02001010 iommu->cmd_buf = alloc_command_buffer(iommu);
1011 if (!iommu->cmd_buf)
1012 return -ENOMEM;
1013
Joerg Roedel335503e2008-09-05 14:29:07 +02001014 iommu->evt_buf = alloc_event_buffer(iommu);
1015 if (!iommu->evt_buf)
1016 return -ENOMEM;
1017
Joerg Roedela80dc3e2008-09-11 16:51:41 +02001018 iommu->int_enabled = false;
1019
Joerg Roedel6efed632012-06-14 15:52:58 +02001020 ret = init_iommu_from_acpi(iommu, h);
1021 if (ret)
1022 return ret;
Joerg Roedele47d4022008-06-26 21:27:48 +02001023 init_iommu_devices(iommu);
1024
Joerg Roedel23c742d2012-06-12 11:47:34 +02001025 return 0;
Joerg Roedele47d4022008-06-26 21:27:48 +02001026}
1027
Joerg Roedelb65233a2008-07-11 17:14:21 +02001028/*
1029 * Iterates over all IOMMU entries in the ACPI table, allocates the
1030 * IOMMU structure and initializes it with init_iommu_one()
1031 */
Joerg Roedele47d4022008-06-26 21:27:48 +02001032static int __init init_iommu_all(struct acpi_table_header *table)
1033{
1034 u8 *p = (u8 *)table, *end = (u8 *)table;
1035 struct ivhd_header *h;
1036 struct amd_iommu *iommu;
1037 int ret;
1038
Joerg Roedele47d4022008-06-26 21:27:48 +02001039 end += table->length;
1040 p += IVRS_HEADER_LENGTH;
1041
1042 while (p < end) {
1043 h = (struct ivhd_header *)p;
1044 switch (*p) {
1045 case ACPI_IVHD_TYPE:
Joerg Roedel9c720412009-05-20 13:53:57 +02001046
Joerg Roedelae908c22009-09-01 16:52:16 +02001047 DUMP_printk("device: %02x:%02x.%01x cap: %04x "
Joerg Roedel9c720412009-05-20 13:53:57 +02001048 "seg: %d flags: %01x info %04x\n",
1049 PCI_BUS(h->devid), PCI_SLOT(h->devid),
1050 PCI_FUNC(h->devid), h->cap_ptr,
1051 h->pci_seg, h->flags, h->info);
1052 DUMP_printk(" mmio-addr: %016llx\n",
1053 h->mmio_phys);
1054
Joerg Roedele47d4022008-06-26 21:27:48 +02001055 iommu = kzalloc(sizeof(struct amd_iommu), GFP_KERNEL);
Joerg Roedel02f3b3f2012-06-11 17:45:25 +02001056 if (iommu == NULL)
1057 return -ENOMEM;
Joerg Roedel3551a702010-03-01 13:52:19 +01001058
Joerg Roedele47d4022008-06-26 21:27:48 +02001059 ret = init_iommu_one(iommu, h);
Joerg Roedel02f3b3f2012-06-11 17:45:25 +02001060 if (ret)
1061 return ret;
Joerg Roedele47d4022008-06-26 21:27:48 +02001062 break;
1063 default:
1064 break;
1065 }
1066 p += h->length;
1067
1068 }
1069 WARN_ON(p != end);
1070
1071 return 0;
1072}
1073
Joerg Roedel23c742d2012-06-12 11:47:34 +02001074static int iommu_init_pci(struct amd_iommu *iommu)
1075{
1076 int cap_ptr = iommu->cap_ptr;
1077 u32 range, misc, low, high;
1078
1079 iommu->dev = pci_get_bus_and_slot(PCI_BUS(iommu->devid),
1080 iommu->devid & 0xff);
1081 if (!iommu->dev)
1082 return -ENODEV;
1083
1084 pci_read_config_dword(iommu->dev, cap_ptr + MMIO_CAP_HDR_OFFSET,
1085 &iommu->cap);
1086 pci_read_config_dword(iommu->dev, cap_ptr + MMIO_RANGE_OFFSET,
1087 &range);
1088 pci_read_config_dword(iommu->dev, cap_ptr + MMIO_MISC_OFFSET,
1089 &misc);
1090
1091 iommu->first_device = calc_devid(MMIO_GET_BUS(range),
1092 MMIO_GET_FD(range));
1093 iommu->last_device = calc_devid(MMIO_GET_BUS(range),
1094 MMIO_GET_LD(range));
1095
1096 if (!(iommu->cap & (1 << IOMMU_CAP_IOTLB)))
1097 amd_iommu_iotlb_sup = false;
1098
1099 /* read extended feature bits */
1100 low = readl(iommu->mmio_base + MMIO_EXT_FEATURES);
1101 high = readl(iommu->mmio_base + MMIO_EXT_FEATURES + 4);
1102
1103 iommu->features = ((u64)high << 32) | low;
1104
1105 if (iommu_feature(iommu, FEATURE_GT)) {
1106 int glxval;
1107 u32 pasids;
1108 u64 shift;
1109
1110 shift = iommu->features & FEATURE_PASID_MASK;
1111 shift >>= FEATURE_PASID_SHIFT;
1112 pasids = (1 << shift);
1113
1114 amd_iommu_max_pasids = min(amd_iommu_max_pasids, pasids);
1115
1116 glxval = iommu->features & FEATURE_GLXVAL_MASK;
1117 glxval >>= FEATURE_GLXVAL_SHIFT;
1118
1119 if (amd_iommu_max_glx_val == -1)
1120 amd_iommu_max_glx_val = glxval;
1121 else
1122 amd_iommu_max_glx_val = min(amd_iommu_max_glx_val, glxval);
1123 }
1124
1125 if (iommu_feature(iommu, FEATURE_GT) &&
1126 iommu_feature(iommu, FEATURE_PPR)) {
1127 iommu->is_iommu_v2 = true;
1128 amd_iommu_v2_present = true;
1129 }
1130
1131 if (iommu_feature(iommu, FEATURE_PPR)) {
1132 iommu->ppr_log = alloc_ppr_log(iommu);
1133 if (!iommu->ppr_log)
1134 return -ENOMEM;
1135 }
1136
1137 if (iommu->cap & (1UL << IOMMU_CAP_NPCACHE))
1138 amd_iommu_np_cache = true;
1139
1140 if (is_rd890_iommu(iommu->dev)) {
1141 int i, j;
1142
1143 iommu->root_pdev = pci_get_bus_and_slot(iommu->dev->bus->number,
1144 PCI_DEVFN(0, 0));
1145
1146 /*
1147 * Some rd890 systems may not be fully reconfigured by the
1148 * BIOS, so it's necessary for us to store this information so
1149 * it can be reprogrammed on resume
1150 */
1151 pci_read_config_dword(iommu->dev, iommu->cap_ptr + 4,
1152 &iommu->stored_addr_lo);
1153 pci_read_config_dword(iommu->dev, iommu->cap_ptr + 8,
1154 &iommu->stored_addr_hi);
1155
1156 /* Low bit locks writes to configuration space */
1157 iommu->stored_addr_lo &= ~1;
1158
1159 for (i = 0; i < 6; i++)
1160 for (j = 0; j < 0x12; j++)
1161 iommu->stored_l1[i][j] = iommu_read_l1(iommu, i, j);
1162
1163 for (i = 0; i < 0x83; i++)
1164 iommu->stored_l2[i] = iommu_read_l2(iommu, i);
1165 }
1166
1167 return pci_enable_device(iommu->dev);
1168}
1169
Joerg Roedel4d121c32012-06-14 12:21:55 +02001170static void print_iommu_info(void)
1171{
1172 static const char * const feat_str[] = {
1173 "PreF", "PPR", "X2APIC", "NX", "GT", "[5]",
1174 "IA", "GA", "HE", "PC"
1175 };
1176 struct amd_iommu *iommu;
1177
1178 for_each_iommu(iommu) {
1179 int i;
1180
1181 pr_info("AMD-Vi: Found IOMMU at %s cap 0x%hx\n",
1182 dev_name(&iommu->dev->dev), iommu->cap_ptr);
1183
1184 if (iommu->cap & (1 << IOMMU_CAP_EFR)) {
1185 pr_info("AMD-Vi: Extended features: ");
Joerg Roedel2bd5ed02012-08-10 11:34:08 +02001186 for (i = 0; i < ARRAY_SIZE(feat_str); ++i) {
Joerg Roedel4d121c32012-06-14 12:21:55 +02001187 if (iommu_feature(iommu, (1ULL << i)))
1188 pr_cont(" %s", feat_str[i]);
1189 }
1190 }
1191 pr_cont("\n");
1192 }
1193}
1194
Joerg Roedel2c0ae172012-06-12 15:59:30 +02001195static int __init amd_iommu_init_pci(void)
Joerg Roedel23c742d2012-06-12 11:47:34 +02001196{
1197 struct amd_iommu *iommu;
1198 int ret = 0;
1199
1200 for_each_iommu(iommu) {
1201 ret = iommu_init_pci(iommu);
1202 if (ret)
1203 break;
1204 }
1205
Joerg Roedel23c742d2012-06-12 11:47:34 +02001206 ret = amd_iommu_init_devices();
1207
Joerg Roedel4d121c32012-06-14 12:21:55 +02001208 print_iommu_info();
1209
Joerg Roedel23c742d2012-06-12 11:47:34 +02001210 return ret;
1211}
1212
Joerg Roedelb65233a2008-07-11 17:14:21 +02001213/****************************************************************************
1214 *
Joerg Roedela80dc3e2008-09-11 16:51:41 +02001215 * The following functions initialize the MSI interrupts for all IOMMUs
1216 * in the system. Its a bit challenging because there could be multiple
1217 * IOMMUs per PCI BDF but we can call pci_enable_msi(x) only once per
1218 * pci_dev.
1219 *
1220 ****************************************************************************/
1221
Joerg Roedel9f800de2009-11-23 12:45:25 +01001222static int iommu_setup_msi(struct amd_iommu *iommu)
Joerg Roedela80dc3e2008-09-11 16:51:41 +02001223{
1224 int r;
Joerg Roedela80dc3e2008-09-11 16:51:41 +02001225
Joerg Roedel9ddd5922012-03-15 16:29:47 +01001226 r = pci_enable_msi(iommu->dev);
1227 if (r)
1228 return r;
Joerg Roedela80dc3e2008-09-11 16:51:41 +02001229
Joerg Roedel72fe00f2011-05-10 10:50:42 +02001230 r = request_threaded_irq(iommu->dev->irq,
1231 amd_iommu_int_handler,
1232 amd_iommu_int_thread,
1233 0, "AMD-Vi",
1234 iommu->dev);
Joerg Roedela80dc3e2008-09-11 16:51:41 +02001235
1236 if (r) {
1237 pci_disable_msi(iommu->dev);
Joerg Roedel9ddd5922012-03-15 16:29:47 +01001238 return r;
Joerg Roedela80dc3e2008-09-11 16:51:41 +02001239 }
1240
Joerg Roedelfab6afa2009-05-04 18:46:34 +02001241 iommu->int_enabled = true;
Joerg Roedel1a29ac02011-11-10 15:41:40 +01001242
Joerg Roedela80dc3e2008-09-11 16:51:41 +02001243 return 0;
1244}
1245
Joerg Roedel05f92db2009-05-12 09:52:46 +02001246static int iommu_init_msi(struct amd_iommu *iommu)
Joerg Roedela80dc3e2008-09-11 16:51:41 +02001247{
Joerg Roedel9ddd5922012-03-15 16:29:47 +01001248 int ret;
1249
Joerg Roedela80dc3e2008-09-11 16:51:41 +02001250 if (iommu->int_enabled)
Joerg Roedel9ddd5922012-03-15 16:29:47 +01001251 goto enable_faults;
Joerg Roedela80dc3e2008-09-11 16:51:41 +02001252
Joerg Roedeld91cecd2009-05-04 18:51:00 +02001253 if (pci_find_capability(iommu->dev, PCI_CAP_ID_MSI))
Joerg Roedel9ddd5922012-03-15 16:29:47 +01001254 ret = iommu_setup_msi(iommu);
1255 else
1256 ret = -ENODEV;
Joerg Roedela80dc3e2008-09-11 16:51:41 +02001257
Joerg Roedel9ddd5922012-03-15 16:29:47 +01001258 if (ret)
1259 return ret;
1260
1261enable_faults:
1262 iommu_feature_enable(iommu, CONTROL_EVT_INT_EN);
1263
1264 if (iommu->ppr_log != NULL)
1265 iommu_feature_enable(iommu, CONTROL_PPFINT_EN);
1266
1267 return 0;
Joerg Roedela80dc3e2008-09-11 16:51:41 +02001268}
1269
1270/****************************************************************************
1271 *
Joerg Roedelb65233a2008-07-11 17:14:21 +02001272 * The next functions belong to the third pass of parsing the ACPI
1273 * table. In this last pass the memory mapping requirements are
1274 * gathered (like exclusion and unity mapping reanges).
1275 *
1276 ****************************************************************************/
1277
Joerg Roedelbe2a0222008-06-26 21:27:49 +02001278static void __init free_unity_maps(void)
1279{
1280 struct unity_map_entry *entry, *next;
1281
1282 list_for_each_entry_safe(entry, next, &amd_iommu_unity_map, list) {
1283 list_del(&entry->list);
1284 kfree(entry);
1285 }
1286}
1287
Joerg Roedelb65233a2008-07-11 17:14:21 +02001288/* called when we find an exclusion range definition in ACPI */
Joerg Roedelbe2a0222008-06-26 21:27:49 +02001289static int __init init_exclusion_range(struct ivmd_header *m)
1290{
1291 int i;
1292
1293 switch (m->type) {
1294 case ACPI_IVMD_TYPE:
1295 set_device_exclusion_range(m->devid, m);
1296 break;
1297 case ACPI_IVMD_TYPE_ALL:
Joerg Roedel3a61ec32008-07-25 13:07:50 +02001298 for (i = 0; i <= amd_iommu_last_bdf; ++i)
Joerg Roedelbe2a0222008-06-26 21:27:49 +02001299 set_device_exclusion_range(i, m);
1300 break;
1301 case ACPI_IVMD_TYPE_RANGE:
1302 for (i = m->devid; i <= m->aux; ++i)
1303 set_device_exclusion_range(i, m);
1304 break;
1305 default:
1306 break;
1307 }
1308
1309 return 0;
1310}
1311
Joerg Roedelb65233a2008-07-11 17:14:21 +02001312/* called for unity map ACPI definition */
Joerg Roedelbe2a0222008-06-26 21:27:49 +02001313static int __init init_unity_map_range(struct ivmd_header *m)
1314{
Joerg Roedel98f1ad22012-07-06 13:28:37 +02001315 struct unity_map_entry *e = NULL;
Joerg Roedel02acc432009-05-20 16:24:21 +02001316 char *s;
Joerg Roedelbe2a0222008-06-26 21:27:49 +02001317
1318 e = kzalloc(sizeof(*e), GFP_KERNEL);
1319 if (e == NULL)
1320 return -ENOMEM;
1321
1322 switch (m->type) {
1323 default:
Joerg Roedel0bc252f2009-05-22 12:48:05 +02001324 kfree(e);
1325 return 0;
Joerg Roedelbe2a0222008-06-26 21:27:49 +02001326 case ACPI_IVMD_TYPE:
Joerg Roedel02acc432009-05-20 16:24:21 +02001327 s = "IVMD_TYPEi\t\t\t";
Joerg Roedelbe2a0222008-06-26 21:27:49 +02001328 e->devid_start = e->devid_end = m->devid;
1329 break;
1330 case ACPI_IVMD_TYPE_ALL:
Joerg Roedel02acc432009-05-20 16:24:21 +02001331 s = "IVMD_TYPE_ALL\t\t";
Joerg Roedelbe2a0222008-06-26 21:27:49 +02001332 e->devid_start = 0;
1333 e->devid_end = amd_iommu_last_bdf;
1334 break;
1335 case ACPI_IVMD_TYPE_RANGE:
Joerg Roedel02acc432009-05-20 16:24:21 +02001336 s = "IVMD_TYPE_RANGE\t\t";
Joerg Roedelbe2a0222008-06-26 21:27:49 +02001337 e->devid_start = m->devid;
1338 e->devid_end = m->aux;
1339 break;
1340 }
1341 e->address_start = PAGE_ALIGN(m->range_start);
1342 e->address_end = e->address_start + PAGE_ALIGN(m->range_length);
1343 e->prot = m->flags >> 1;
1344
Joerg Roedel02acc432009-05-20 16:24:21 +02001345 DUMP_printk("%s devid_start: %02x:%02x.%x devid_end: %02x:%02x.%x"
1346 " range_start: %016llx range_end: %016llx flags: %x\n", s,
1347 PCI_BUS(e->devid_start), PCI_SLOT(e->devid_start),
1348 PCI_FUNC(e->devid_start), PCI_BUS(e->devid_end),
1349 PCI_SLOT(e->devid_end), PCI_FUNC(e->devid_end),
1350 e->address_start, e->address_end, m->flags);
1351
Joerg Roedelbe2a0222008-06-26 21:27:49 +02001352 list_add_tail(&e->list, &amd_iommu_unity_map);
1353
1354 return 0;
1355}
1356
Joerg Roedelb65233a2008-07-11 17:14:21 +02001357/* iterates over all memory definitions we find in the ACPI table */
Joerg Roedelbe2a0222008-06-26 21:27:49 +02001358static int __init init_memory_definitions(struct acpi_table_header *table)
1359{
1360 u8 *p = (u8 *)table, *end = (u8 *)table;
1361 struct ivmd_header *m;
1362
Joerg Roedelbe2a0222008-06-26 21:27:49 +02001363 end += table->length;
1364 p += IVRS_HEADER_LENGTH;
1365
1366 while (p < end) {
1367 m = (struct ivmd_header *)p;
1368 if (m->flags & IVMD_FLAG_EXCL_RANGE)
1369 init_exclusion_range(m);
1370 else if (m->flags & IVMD_FLAG_UNITY_MAP)
1371 init_unity_map_range(m);
1372
1373 p += m->length;
1374 }
1375
1376 return 0;
1377}
1378
Joerg Roedelb65233a2008-07-11 17:14:21 +02001379/*
Joerg Roedel9f5f5fb2008-08-14 19:55:16 +02001380 * Init the device table to not allow DMA access for devices and
1381 * suppress all page faults
1382 */
1383static void init_device_table(void)
1384{
Joerg Roedel0de66d52011-06-06 16:04:02 +02001385 u32 devid;
Joerg Roedel9f5f5fb2008-08-14 19:55:16 +02001386
1387 for (devid = 0; devid <= amd_iommu_last_bdf; ++devid) {
1388 set_dev_entry_bit(devid, DEV_ENTRY_VALID);
1389 set_dev_entry_bit(devid, DEV_ENTRY_TRANSLATION);
Joerg Roedel9f5f5fb2008-08-14 19:55:16 +02001390 }
1391}
1392
Joerg Roedele9bf5192010-09-20 14:33:07 +02001393static void iommu_init_flags(struct amd_iommu *iommu)
1394{
1395 iommu->acpi_flags & IVHD_FLAG_HT_TUN_EN_MASK ?
1396 iommu_feature_enable(iommu, CONTROL_HT_TUN_EN) :
1397 iommu_feature_disable(iommu, CONTROL_HT_TUN_EN);
1398
1399 iommu->acpi_flags & IVHD_FLAG_PASSPW_EN_MASK ?
1400 iommu_feature_enable(iommu, CONTROL_PASSPW_EN) :
1401 iommu_feature_disable(iommu, CONTROL_PASSPW_EN);
1402
1403 iommu->acpi_flags & IVHD_FLAG_RESPASSPW_EN_MASK ?
1404 iommu_feature_enable(iommu, CONTROL_RESPASSPW_EN) :
1405 iommu_feature_disable(iommu, CONTROL_RESPASSPW_EN);
1406
1407 iommu->acpi_flags & IVHD_FLAG_ISOC_EN_MASK ?
1408 iommu_feature_enable(iommu, CONTROL_ISOC_EN) :
1409 iommu_feature_disable(iommu, CONTROL_ISOC_EN);
1410
1411 /*
1412 * make IOMMU memory accesses cache coherent
1413 */
1414 iommu_feature_enable(iommu, CONTROL_COHERENT_EN);
Joerg Roedel1456e9d2011-12-22 14:51:53 +01001415
1416 /* Set IOTLB invalidation timeout to 1s */
1417 iommu_set_inv_tlb_timeout(iommu, CTRL_INV_TO_1S);
Joerg Roedele9bf5192010-09-20 14:33:07 +02001418}
1419
Matthew Garrett5bcd7572010-10-04 14:59:31 -04001420static void iommu_apply_resume_quirks(struct amd_iommu *iommu)
Joerg Roedel4c894f42010-09-23 15:15:19 +02001421{
Matthew Garrett5bcd7572010-10-04 14:59:31 -04001422 int i, j;
1423 u32 ioc_feature_control;
Joerg Roedelc1bf94e2012-05-31 17:38:11 +02001424 struct pci_dev *pdev = iommu->root_pdev;
Matthew Garrett5bcd7572010-10-04 14:59:31 -04001425
1426 /* RD890 BIOSes may not have completely reconfigured the iommu */
Joerg Roedelc1bf94e2012-05-31 17:38:11 +02001427 if (!is_rd890_iommu(iommu->dev) || !pdev)
Matthew Garrett5bcd7572010-10-04 14:59:31 -04001428 return;
1429
1430 /*
1431 * First, we need to ensure that the iommu is enabled. This is
1432 * controlled by a register in the northbridge
1433 */
Matthew Garrett5bcd7572010-10-04 14:59:31 -04001434
1435 /* Select Northbridge indirect register 0x75 and enable writing */
1436 pci_write_config_dword(pdev, 0x60, 0x75 | (1 << 7));
1437 pci_read_config_dword(pdev, 0x64, &ioc_feature_control);
1438
1439 /* Enable the iommu */
1440 if (!(ioc_feature_control & 0x1))
1441 pci_write_config_dword(pdev, 0x64, ioc_feature_control | 1);
1442
Matthew Garrett5bcd7572010-10-04 14:59:31 -04001443 /* Restore the iommu BAR */
1444 pci_write_config_dword(iommu->dev, iommu->cap_ptr + 4,
1445 iommu->stored_addr_lo);
1446 pci_write_config_dword(iommu->dev, iommu->cap_ptr + 8,
1447 iommu->stored_addr_hi);
1448
1449 /* Restore the l1 indirect regs for each of the 6 l1s */
1450 for (i = 0; i < 6; i++)
1451 for (j = 0; j < 0x12; j++)
1452 iommu_write_l1(iommu, i, j, iommu->stored_l1[i][j]);
1453
1454 /* Restore the l2 indirect regs */
1455 for (i = 0; i < 0x83; i++)
1456 iommu_write_l2(iommu, i, iommu->stored_l2[i]);
1457
1458 /* Lock PCI setup registers */
1459 pci_write_config_dword(iommu->dev, iommu->cap_ptr + 4,
1460 iommu->stored_addr_lo | 1);
Joerg Roedel4c894f42010-09-23 15:15:19 +02001461}
1462
Joerg Roedel9f5f5fb2008-08-14 19:55:16 +02001463/*
Joerg Roedelb65233a2008-07-11 17:14:21 +02001464 * This function finally enables all IOMMUs found in the system after
1465 * they have been initialized
1466 */
Joerg Roedel11ee5ac2012-06-12 16:30:06 +02001467static void early_enable_iommus(void)
Joerg Roedel87361972008-06-26 21:28:07 +02001468{
1469 struct amd_iommu *iommu;
1470
Joerg Roedel3bd22172009-05-04 15:06:20 +02001471 for_each_iommu(iommu) {
Chris Wrighta8c485b2009-06-15 15:53:45 +02001472 iommu_disable(iommu);
Joerg Roedele9bf5192010-09-20 14:33:07 +02001473 iommu_init_flags(iommu);
Joerg Roedel58492e12009-05-04 18:41:16 +02001474 iommu_set_device_table(iommu);
1475 iommu_enable_command_buffer(iommu);
1476 iommu_enable_event_buffer(iommu);
Joerg Roedel87361972008-06-26 21:28:07 +02001477 iommu_set_exclusion_range(iommu);
1478 iommu_enable(iommu);
Joerg Roedel7d0c5cc2011-04-07 08:16:10 +02001479 iommu_flush_all_caches(iommu);
Joerg Roedel87361972008-06-26 21:28:07 +02001480 }
1481}
1482
Joerg Roedel11ee5ac2012-06-12 16:30:06 +02001483static void enable_iommus_v2(void)
1484{
1485 struct amd_iommu *iommu;
1486
1487 for_each_iommu(iommu) {
1488 iommu_enable_ppr_log(iommu);
1489 iommu_enable_gt(iommu);
1490 }
1491}
1492
1493static void enable_iommus(void)
1494{
1495 early_enable_iommus();
1496
1497 enable_iommus_v2();
1498}
1499
Joerg Roedel92ac4322009-05-19 19:06:27 +02001500static void disable_iommus(void)
1501{
1502 struct amd_iommu *iommu;
1503
1504 for_each_iommu(iommu)
1505 iommu_disable(iommu);
1506}
1507
Joerg Roedel7441e9c2008-06-30 20:18:02 +02001508/*
1509 * Suspend/Resume support
1510 * disable suspend until real resume implemented
1511 */
1512
Rafael J. Wysockif3c6ea12011-03-23 22:15:54 +01001513static void amd_iommu_resume(void)
Joerg Roedel7441e9c2008-06-30 20:18:02 +02001514{
Matthew Garrett5bcd7572010-10-04 14:59:31 -04001515 struct amd_iommu *iommu;
1516
1517 for_each_iommu(iommu)
1518 iommu_apply_resume_quirks(iommu);
1519
Joerg Roedel736501e2009-05-12 09:56:12 +02001520 /* re-load the hardware */
1521 enable_iommus();
Joerg Roedel3d9761e2012-03-15 16:39:21 +01001522
1523 amd_iommu_enable_interrupts();
Joerg Roedel7441e9c2008-06-30 20:18:02 +02001524}
1525
Rafael J. Wysockif3c6ea12011-03-23 22:15:54 +01001526static int amd_iommu_suspend(void)
Joerg Roedel7441e9c2008-06-30 20:18:02 +02001527{
Joerg Roedel736501e2009-05-12 09:56:12 +02001528 /* disable IOMMUs to go out of the way for BIOS */
1529 disable_iommus();
1530
1531 return 0;
Joerg Roedel7441e9c2008-06-30 20:18:02 +02001532}
1533
Rafael J. Wysockif3c6ea12011-03-23 22:15:54 +01001534static struct syscore_ops amd_iommu_syscore_ops = {
Joerg Roedel7441e9c2008-06-30 20:18:02 +02001535 .suspend = amd_iommu_suspend,
1536 .resume = amd_iommu_resume,
1537};
1538
Joerg Roedel8704a1b2012-03-01 15:57:53 +01001539static void __init free_on_init_error(void)
1540{
Joerg Roedel0ea2c422012-06-15 18:05:20 +02001541 free_pages((unsigned long)irq_lookup_table,
1542 get_order(rlookup_table_size));
1543
Joerg Roedel05152a02012-06-15 16:53:51 +02001544 if (amd_iommu_irq_cache) {
1545 kmem_cache_destroy(amd_iommu_irq_cache);
1546 amd_iommu_irq_cache = NULL;
Joerg Roedel0ea2c422012-06-15 18:05:20 +02001547
Joerg Roedel05152a02012-06-15 16:53:51 +02001548 }
1549
Joerg Roedel8704a1b2012-03-01 15:57:53 +01001550 amd_iommu_uninit_devices();
1551
1552 free_pages((unsigned long)amd_iommu_pd_alloc_bitmap,
1553 get_order(MAX_DOMAIN_ID/8));
1554
1555 free_pages((unsigned long)amd_iommu_rlookup_table,
1556 get_order(rlookup_table_size));
1557
1558 free_pages((unsigned long)amd_iommu_alias_table,
1559 get_order(alias_table_size));
1560
1561 free_pages((unsigned long)amd_iommu_dev_table,
1562 get_order(dev_table_size));
1563
1564 free_iommu_all();
1565
1566 free_unity_maps();
1567
1568#ifdef CONFIG_GART_IOMMU
1569 /*
1570 * We failed to initialize the AMD IOMMU - try fallback to GART
1571 * if possible.
1572 */
1573 gart_iommu_init();
1574
1575#endif
1576}
1577
Joerg Roedelb65233a2008-07-11 17:14:21 +02001578/*
Joerg Roedel8704a1b2012-03-01 15:57:53 +01001579 * This is the hardware init function for AMD IOMMU in the system.
1580 * This function is called either from amd_iommu_init or from the interrupt
1581 * remapping setup code.
Joerg Roedelb65233a2008-07-11 17:14:21 +02001582 *
1583 * This function basically parses the ACPI table for AMD IOMMU (IVRS)
1584 * three times:
1585 *
1586 * 1 pass) Find the highest PCI device id the driver has to handle.
1587 * Upon this information the size of the data structures is
1588 * determined that needs to be allocated.
1589 *
1590 * 2 pass) Initialize the data structures just allocated with the
1591 * information in the ACPI table about available AMD IOMMUs
1592 * in the system. It also maps the PCI devices in the
1593 * system to specific IOMMUs
1594 *
1595 * 3 pass) After the basic data structures are allocated and
1596 * initialized we update them with information about memory
1597 * remapping requirements parsed out of the ACPI table in
1598 * this last pass.
1599 *
Joerg Roedel8704a1b2012-03-01 15:57:53 +01001600 * After everything is set up the IOMMUs are enabled and the necessary
1601 * hotplug and suspend notifiers are registered.
Joerg Roedelb65233a2008-07-11 17:14:21 +02001602 */
Joerg Roedel643511b2012-06-12 12:09:35 +02001603static int __init early_amd_iommu_init(void)
Joerg Roedelfe74c9c2008-06-26 21:27:50 +02001604{
Joerg Roedel02f3b3f2012-06-11 17:45:25 +02001605 struct acpi_table_header *ivrs_base;
1606 acpi_size ivrs_size;
1607 acpi_status status;
Joerg Roedelfe74c9c2008-06-26 21:27:50 +02001608 int i, ret = 0;
1609
Joerg Roedel643511b2012-06-12 12:09:35 +02001610 if (!amd_iommu_detected)
Joerg Roedel8704a1b2012-03-01 15:57:53 +01001611 return -ENODEV;
1612
Joerg Roedel02f3b3f2012-06-11 17:45:25 +02001613 status = acpi_get_table_with_size("IVRS", 0, &ivrs_base, &ivrs_size);
1614 if (status == AE_NOT_FOUND)
1615 return -ENODEV;
1616 else if (ACPI_FAILURE(status)) {
1617 const char *err = acpi_format_exception(status);
1618 pr_err("AMD-Vi: IVRS table error: %s\n", err);
1619 return -EINVAL;
1620 }
1621
Joerg Roedelfe74c9c2008-06-26 21:27:50 +02001622 /*
1623 * First parse ACPI tables to find the largest Bus/Dev/Func
1624 * we need to handle. Upon this information the shared data
1625 * structures for the IOMMUs in the system will be allocated
1626 */
Joerg Roedel2c0ae172012-06-12 15:59:30 +02001627 ret = find_last_devid_acpi(ivrs_base);
1628 if (ret)
Joerg Roedel3551a702010-03-01 13:52:19 +01001629 goto out;
1630
Joerg Roedelc5714842008-07-11 17:14:25 +02001631 dev_table_size = tbl_size(DEV_TABLE_ENTRY_SIZE);
1632 alias_table_size = tbl_size(ALIAS_TABLE_ENTRY_SIZE);
1633 rlookup_table_size = tbl_size(RLOOKUP_TABLE_ENTRY_SIZE);
Joerg Roedelfe74c9c2008-06-26 21:27:50 +02001634
Joerg Roedelfe74c9c2008-06-26 21:27:50 +02001635 /* Device table - directly used by all IOMMUs */
Joerg Roedel8704a1b2012-03-01 15:57:53 +01001636 ret = -ENOMEM;
Joerg Roedel5dc8bff2008-07-11 17:14:32 +02001637 amd_iommu_dev_table = (void *)__get_free_pages(GFP_KERNEL | __GFP_ZERO,
Joerg Roedelfe74c9c2008-06-26 21:27:50 +02001638 get_order(dev_table_size));
1639 if (amd_iommu_dev_table == NULL)
1640 goto out;
1641
1642 /*
1643 * Alias table - map PCI Bus/Dev/Func to Bus/Dev/Func the
1644 * IOMMU see for that device
1645 */
1646 amd_iommu_alias_table = (void *)__get_free_pages(GFP_KERNEL,
1647 get_order(alias_table_size));
1648 if (amd_iommu_alias_table == NULL)
Joerg Roedel2c0ae172012-06-12 15:59:30 +02001649 goto out;
Joerg Roedelfe74c9c2008-06-26 21:27:50 +02001650
1651 /* IOMMU rlookup table - find the IOMMU for a specific device */
Joerg Roedel83fd5cc2008-12-16 19:17:11 +01001652 amd_iommu_rlookup_table = (void *)__get_free_pages(
1653 GFP_KERNEL | __GFP_ZERO,
Joerg Roedelfe74c9c2008-06-26 21:27:50 +02001654 get_order(rlookup_table_size));
1655 if (amd_iommu_rlookup_table == NULL)
Joerg Roedel2c0ae172012-06-12 15:59:30 +02001656 goto out;
Joerg Roedelfe74c9c2008-06-26 21:27:50 +02001657
Joerg Roedel5dc8bff2008-07-11 17:14:32 +02001658 amd_iommu_pd_alloc_bitmap = (void *)__get_free_pages(
1659 GFP_KERNEL | __GFP_ZERO,
Joerg Roedelfe74c9c2008-06-26 21:27:50 +02001660 get_order(MAX_DOMAIN_ID/8));
1661 if (amd_iommu_pd_alloc_bitmap == NULL)
Joerg Roedel2c0ae172012-06-12 15:59:30 +02001662 goto out;
Joerg Roedelfe74c9c2008-06-26 21:27:50 +02001663
Joerg Roedel9f5f5fb2008-08-14 19:55:16 +02001664 /* init the device table */
1665 init_device_table();
1666
Joerg Roedelfe74c9c2008-06-26 21:27:50 +02001667 /*
Joerg Roedel5dc8bff2008-07-11 17:14:32 +02001668 * let all alias entries point to itself
Joerg Roedelfe74c9c2008-06-26 21:27:50 +02001669 */
Joerg Roedel3a61ec32008-07-25 13:07:50 +02001670 for (i = 0; i <= amd_iommu_last_bdf; ++i)
Joerg Roedelfe74c9c2008-06-26 21:27:50 +02001671 amd_iommu_alias_table[i] = i;
1672
Joerg Roedelfe74c9c2008-06-26 21:27:50 +02001673 /*
1674 * never allocate domain 0 because its used as the non-allocated and
1675 * error value placeholder
1676 */
1677 amd_iommu_pd_alloc_bitmap[0] = 1;
1678
Joerg Roedelaeb26f52009-11-20 16:44:01 +01001679 spin_lock_init(&amd_iommu_pd_lock);
1680
Joerg Roedelfe74c9c2008-06-26 21:27:50 +02001681 /*
1682 * now the data structures are allocated and basically initialized
1683 * start the real acpi table scan
1684 */
Joerg Roedel02f3b3f2012-06-11 17:45:25 +02001685 ret = init_iommu_all(ivrs_base);
1686 if (ret)
Joerg Roedel2c0ae172012-06-12 15:59:30 +02001687 goto out;
Joerg Roedelfe74c9c2008-06-26 21:27:50 +02001688
Joerg Roedel05152a02012-06-15 16:53:51 +02001689 if (amd_iommu_irq_remap) {
1690 /*
1691 * Interrupt remapping enabled, create kmem_cache for the
1692 * remapping tables.
1693 */
1694 amd_iommu_irq_cache = kmem_cache_create("irq_remap_cache",
1695 MAX_IRQS_PER_TABLE * sizeof(u32),
1696 IRQ_TABLE_ALIGNMENT,
1697 0, NULL);
1698 if (!amd_iommu_irq_cache)
1699 goto out;
Joerg Roedel0ea2c422012-06-15 18:05:20 +02001700
1701 irq_lookup_table = (void *)__get_free_pages(
1702 GFP_KERNEL | __GFP_ZERO,
1703 get_order(rlookup_table_size));
1704 if (!irq_lookup_table)
1705 goto out;
Joerg Roedel05152a02012-06-15 16:53:51 +02001706 }
1707
Joerg Roedel02f3b3f2012-06-11 17:45:25 +02001708 ret = init_memory_definitions(ivrs_base);
1709 if (ret)
Joerg Roedel2c0ae172012-06-12 15:59:30 +02001710 goto out;
Joerg Roedel3551a702010-03-01 13:52:19 +01001711
Joerg Roedel8704a1b2012-03-01 15:57:53 +01001712out:
Joerg Roedel02f3b3f2012-06-11 17:45:25 +02001713 /* Don't leak any ACPI memory */
1714 early_acpi_os_unmap_memory((char __iomem *)ivrs_base, ivrs_size);
1715 ivrs_base = NULL;
1716
Joerg Roedel8704a1b2012-03-01 15:57:53 +01001717 return ret;
Joerg Roedel643511b2012-06-12 12:09:35 +02001718}
1719
Gerard Snitselaarae295142012-03-16 11:38:22 -07001720static int amd_iommu_enable_interrupts(void)
Joerg Roedel3d9761e2012-03-15 16:39:21 +01001721{
1722 struct amd_iommu *iommu;
1723 int ret = 0;
1724
1725 for_each_iommu(iommu) {
1726 ret = iommu_init_msi(iommu);
1727 if (ret)
1728 goto out;
1729 }
1730
1731out:
1732 return ret;
1733}
1734
Joerg Roedel02f3b3f2012-06-11 17:45:25 +02001735static bool detect_ivrs(void)
1736{
1737 struct acpi_table_header *ivrs_base;
1738 acpi_size ivrs_size;
1739 acpi_status status;
1740
1741 status = acpi_get_table_with_size("IVRS", 0, &ivrs_base, &ivrs_size);
1742 if (status == AE_NOT_FOUND)
1743 return false;
1744 else if (ACPI_FAILURE(status)) {
1745 const char *err = acpi_format_exception(status);
1746 pr_err("AMD-Vi: IVRS table error: %s\n", err);
1747 return false;
1748 }
1749
1750 early_acpi_os_unmap_memory((char __iomem *)ivrs_base, ivrs_size);
1751
Joerg Roedel1adb7d32012-08-06 14:18:42 +02001752 /* Make sure ACS will be enabled during PCI probe */
1753 pci_request_acs();
1754
Joerg Roedel05152a02012-06-15 16:53:51 +02001755 if (!disable_irq_remap)
1756 amd_iommu_irq_remap = true;
1757
Joerg Roedel02f3b3f2012-06-11 17:45:25 +02001758 return true;
1759}
1760
Joerg Roedelb9b1ce702012-06-12 16:51:12 +02001761static int amd_iommu_init_dma(void)
1762{
1763 int ret;
1764
1765 if (iommu_pass_through)
1766 ret = amd_iommu_init_passthrough();
1767 else
1768 ret = amd_iommu_init_dma_ops();
1769
1770 if (ret)
1771 return ret;
1772
1773 amd_iommu_init_api();
1774
1775 amd_iommu_init_notifier();
1776
1777 return 0;
1778}
1779
Joerg Roedel2c0ae172012-06-12 15:59:30 +02001780/****************************************************************************
1781 *
1782 * AMD IOMMU Initialization State Machine
1783 *
1784 ****************************************************************************/
1785
1786static int __init state_next(void)
1787{
1788 int ret = 0;
1789
1790 switch (init_state) {
1791 case IOMMU_START_STATE:
1792 if (!detect_ivrs()) {
1793 init_state = IOMMU_NOT_FOUND;
1794 ret = -ENODEV;
1795 } else {
1796 init_state = IOMMU_IVRS_DETECTED;
1797 }
1798 break;
1799 case IOMMU_IVRS_DETECTED:
1800 ret = early_amd_iommu_init();
1801 init_state = ret ? IOMMU_INIT_ERROR : IOMMU_ACPI_FINISHED;
1802 break;
1803 case IOMMU_ACPI_FINISHED:
1804 early_enable_iommus();
1805 register_syscore_ops(&amd_iommu_syscore_ops);
1806 x86_platform.iommu_shutdown = disable_iommus;
1807 init_state = IOMMU_ENABLED;
1808 break;
1809 case IOMMU_ENABLED:
1810 ret = amd_iommu_init_pci();
1811 init_state = ret ? IOMMU_INIT_ERROR : IOMMU_PCI_INIT;
1812 enable_iommus_v2();
1813 break;
1814 case IOMMU_PCI_INIT:
1815 ret = amd_iommu_enable_interrupts();
1816 init_state = ret ? IOMMU_INIT_ERROR : IOMMU_INTERRUPTS_EN;
1817 break;
1818 case IOMMU_INTERRUPTS_EN:
1819 ret = amd_iommu_init_dma();
1820 init_state = ret ? IOMMU_INIT_ERROR : IOMMU_DMA_OPS;
1821 break;
1822 case IOMMU_DMA_OPS:
1823 init_state = IOMMU_INITIALIZED;
1824 break;
1825 case IOMMU_INITIALIZED:
1826 /* Nothing to do */
1827 break;
1828 case IOMMU_NOT_FOUND:
1829 case IOMMU_INIT_ERROR:
1830 /* Error states => do nothing */
1831 ret = -EINVAL;
1832 break;
1833 default:
1834 /* Unknown state */
1835 BUG();
1836 }
1837
1838 return ret;
1839}
1840
1841static int __init iommu_go_to_state(enum iommu_init_state state)
1842{
1843 int ret = 0;
1844
1845 while (init_state != state) {
1846 ret = state_next();
1847 if (init_state == IOMMU_NOT_FOUND ||
1848 init_state == IOMMU_INIT_ERROR)
1849 break;
1850 }
1851
1852 return ret;
1853}
1854
1855
1856
Joerg Roedel8704a1b2012-03-01 15:57:53 +01001857/*
1858 * This is the core init function for AMD IOMMU hardware in the system.
1859 * This function is called from the generic x86 DMA layer initialization
1860 * code.
Joerg Roedel8704a1b2012-03-01 15:57:53 +01001861 */
1862static int __init amd_iommu_init(void)
1863{
Joerg Roedel2c0ae172012-06-12 15:59:30 +02001864 int ret;
Joerg Roedel8704a1b2012-03-01 15:57:53 +01001865
Joerg Roedel2c0ae172012-06-12 15:59:30 +02001866 ret = iommu_go_to_state(IOMMU_INITIALIZED);
1867 if (ret) {
1868 disable_iommus();
1869 free_on_init_error();
1870 }
Joerg Roedel8704a1b2012-03-01 15:57:53 +01001871
Joerg Roedelfe74c9c2008-06-26 21:27:50 +02001872 return ret;
Joerg Roedelfe74c9c2008-06-26 21:27:50 +02001873}
1874
Joerg Roedelb65233a2008-07-11 17:14:21 +02001875/****************************************************************************
1876 *
1877 * Early detect code. This code runs at IOMMU detection time in the DMA
1878 * layer. It just looks if there is an IVRS ACPI table to detect AMD
1879 * IOMMUs
1880 *
1881 ****************************************************************************/
Konrad Rzeszutek Wilk480125b2010-08-26 13:57:57 -04001882int __init amd_iommu_detect(void)
Joerg Roedelae7877d2008-06-26 21:27:51 +02001883{
Joerg Roedel2c0ae172012-06-12 15:59:30 +02001884 int ret;
Joerg Roedel02f3b3f2012-06-11 17:45:25 +02001885
FUJITA Tomonori75f1cdf2009-11-10 19:46:20 +09001886 if (no_iommu || (iommu_detected && !gart_iommu_aperture))
Konrad Rzeszutek Wilk480125b2010-08-26 13:57:57 -04001887 return -ENODEV;
Joerg Roedelae7877d2008-06-26 21:27:51 +02001888
Joerg Roedela5235722010-05-11 17:12:33 +02001889 if (amd_iommu_disabled)
Konrad Rzeszutek Wilk480125b2010-08-26 13:57:57 -04001890 return -ENODEV;
Joerg Roedela5235722010-05-11 17:12:33 +02001891
Joerg Roedel2c0ae172012-06-12 15:59:30 +02001892 ret = iommu_go_to_state(IOMMU_IVRS_DETECTED);
1893 if (ret)
1894 return ret;
Linus Torvalds11bd04f2009-12-11 12:18:16 -08001895
Joerg Roedel02f3b3f2012-06-11 17:45:25 +02001896 amd_iommu_detected = true;
1897 iommu_detected = 1;
1898 x86_init.iommu.iommu_init = amd_iommu_init;
1899
Joerg Roedel02f3b3f2012-06-11 17:45:25 +02001900 return 0;
Joerg Roedelae7877d2008-06-26 21:27:51 +02001901}
1902
Joerg Roedelb65233a2008-07-11 17:14:21 +02001903/****************************************************************************
1904 *
1905 * Parsing functions for the AMD IOMMU specific kernel command line
1906 * options.
1907 *
1908 ****************************************************************************/
1909
Joerg Roedelfefda112009-05-20 12:21:42 +02001910static int __init parse_amd_iommu_dump(char *str)
1911{
1912 amd_iommu_dump = true;
1913
1914 return 1;
1915}
1916
Joerg Roedel918ad6c2008-06-26 21:27:52 +02001917static int __init parse_amd_iommu_options(char *str)
1918{
1919 for (; *str; ++str) {
Joerg Roedel695b5672008-11-17 15:16:43 +01001920 if (strncmp(str, "fullflush", 9) == 0)
FUJITA Tomonoriafa9fdc2008-09-20 01:23:30 +09001921 amd_iommu_unmap_flush = true;
Joerg Roedela5235722010-05-11 17:12:33 +02001922 if (strncmp(str, "off", 3) == 0)
1923 amd_iommu_disabled = true;
Joerg Roedel5abcdba2011-12-01 15:49:45 +01001924 if (strncmp(str, "force_isolation", 15) == 0)
1925 amd_iommu_force_isolation = true;
Joerg Roedel918ad6c2008-06-26 21:27:52 +02001926 }
1927
1928 return 1;
1929}
1930
Joerg Roedelfefda112009-05-20 12:21:42 +02001931__setup("amd_iommu_dump", parse_amd_iommu_dump);
Joerg Roedel918ad6c2008-06-26 21:27:52 +02001932__setup("amd_iommu=", parse_amd_iommu_options);
Konrad Rzeszutek Wilk22e6daf2010-08-26 13:58:03 -04001933
1934IOMMU_INIT_FINISH(amd_iommu_detect,
1935 gart_iommu_hole_init,
Joerg Roedel98f1ad22012-07-06 13:28:37 +02001936 NULL,
1937 NULL);
Joerg Roedel400a28a2011-11-28 15:11:02 +01001938
1939bool amd_iommu_v2_supported(void)
1940{
1941 return amd_iommu_v2_present;
1942}
1943EXPORT_SYMBOL(amd_iommu_v2_supported);