blob: 1b066e7d144d6fdc0043cfbfa340ce2e7a209c50 [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 Roedel63ce3ae2015-02-04 16:12:55 +01003 * Author: Joerg Roedel <jroedel@suse.de>
Joerg Roedelf6e2e6b2008-06-26 21:27:39 +02004 * 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>
Alex Williamson066f2e92014-06-12 16:12:37 -060029#include <linux/iommu.h>
Joerg Roedelf6e2e6b2008-06-26 21:27:39 +020030#include <asm/pci-direct.h>
FUJITA Tomonori46a7fa22008-07-11 10:23:42 +090031#include <asm/iommu.h>
Joerg Roedel1d9b16d2008-11-27 18:39:15 +010032#include <asm/gart.h>
FUJITA Tomonoriea1b0d32009-11-10 19:46:15 +090033#include <asm/x86_init.h>
Konrad Rzeszutek Wilk22e6daf2010-08-26 13:58:03 -040034#include <asm/iommu_table.h>
Joerg Roedeleb1eb7a2012-07-05 11:58:02 +020035#include <asm/io_apic.h>
Joerg Roedel6b474b82012-06-26 16:46:04 +020036#include <asm/irq_remapping.h>
Joerg Roedel403f81d2011-06-14 16:44:25 +020037
38#include "amd_iommu_proto.h"
39#include "amd_iommu_types.h"
Joerg Roedel05152a02012-06-15 16:53:51 +020040#include "irq_remapping.h"
Joerg Roedel403f81d2011-06-14 16:44:25 +020041
Joerg Roedelf6e2e6b2008-06-26 21:27:39 +020042/*
43 * definitions for the ACPI scanning code
44 */
Joerg Roedelf6e2e6b2008-06-26 21:27:39 +020045#define IVRS_HEADER_LENGTH 48
Joerg Roedelf6e2e6b2008-06-26 21:27:39 +020046
47#define ACPI_IVHD_TYPE 0x10
48#define ACPI_IVMD_TYPE_ALL 0x20
49#define ACPI_IVMD_TYPE 0x21
50#define ACPI_IVMD_TYPE_RANGE 0x22
51
52#define IVHD_DEV_ALL 0x01
53#define IVHD_DEV_SELECT 0x02
54#define IVHD_DEV_SELECT_RANGE_START 0x03
55#define IVHD_DEV_RANGE_END 0x04
56#define IVHD_DEV_ALIAS 0x42
57#define IVHD_DEV_ALIAS_RANGE 0x43
58#define IVHD_DEV_EXT_SELECT 0x46
59#define IVHD_DEV_EXT_SELECT_RANGE 0x47
Joerg Roedel6efed632012-06-14 15:52:58 +020060#define IVHD_DEV_SPECIAL 0x48
61
62#define IVHD_SPECIAL_IOAPIC 1
63#define IVHD_SPECIAL_HPET 2
Joerg Roedelf6e2e6b2008-06-26 21:27:39 +020064
Joerg Roedel6da73422009-05-04 11:44:38 +020065#define IVHD_FLAG_HT_TUN_EN_MASK 0x01
66#define IVHD_FLAG_PASSPW_EN_MASK 0x02
67#define IVHD_FLAG_RESPASSPW_EN_MASK 0x04
68#define IVHD_FLAG_ISOC_EN_MASK 0x08
Joerg Roedelf6e2e6b2008-06-26 21:27:39 +020069
70#define IVMD_FLAG_EXCL_RANGE 0x08
71#define IVMD_FLAG_UNITY_MAP 0x01
72
73#define ACPI_DEVFLAG_INITPASS 0x01
74#define ACPI_DEVFLAG_EXTINT 0x02
75#define ACPI_DEVFLAG_NMI 0x04
76#define ACPI_DEVFLAG_SYSMGT1 0x10
77#define ACPI_DEVFLAG_SYSMGT2 0x20
78#define ACPI_DEVFLAG_LINT0 0x40
79#define ACPI_DEVFLAG_LINT1 0x80
80#define ACPI_DEVFLAG_ATSDIS 0x10000000
81
Joerg Roedelb65233a2008-07-11 17:14:21 +020082/*
83 * ACPI table definitions
84 *
85 * These data structures are laid over the table to parse the important values
86 * out of it.
87 */
88
89/*
90 * structure describing one IOMMU in the ACPI table. Typically followed by one
91 * or more ivhd_entrys.
92 */
Joerg Roedelf6e2e6b2008-06-26 21:27:39 +020093struct ivhd_header {
94 u8 type;
95 u8 flags;
96 u16 length;
97 u16 devid;
98 u16 cap_ptr;
99 u64 mmio_phys;
100 u16 pci_seg;
101 u16 info;
Steven L Kinney30861dd2013-06-05 16:11:48 -0500102 u32 efr;
Joerg Roedelf6e2e6b2008-06-26 21:27:39 +0200103} __attribute__((packed));
104
Joerg Roedelb65233a2008-07-11 17:14:21 +0200105/*
106 * A device entry describing which devices a specific IOMMU translates and
107 * which requestor ids they use.
108 */
Joerg Roedelf6e2e6b2008-06-26 21:27:39 +0200109struct ivhd_entry {
110 u8 type;
111 u16 devid;
112 u8 flags;
113 u32 ext;
114} __attribute__((packed));
115
Joerg Roedelb65233a2008-07-11 17:14:21 +0200116/*
117 * An AMD IOMMU memory definition structure. It defines things like exclusion
118 * ranges for devices and regions that should be unity mapped.
119 */
Joerg Roedelf6e2e6b2008-06-26 21:27:39 +0200120struct ivmd_header {
121 u8 type;
122 u8 flags;
123 u16 length;
124 u16 devid;
125 u16 aux;
126 u64 resv;
127 u64 range_start;
128 u64 range_length;
129} __attribute__((packed));
130
Joerg Roedelfefda112009-05-20 12:21:42 +0200131bool amd_iommu_dump;
Joerg Roedel05152a02012-06-15 16:53:51 +0200132bool amd_iommu_irq_remap __read_mostly;
Joerg Roedelfefda112009-05-20 12:21:42 +0200133
Joerg Roedel02f3b3f2012-06-11 17:45:25 +0200134static bool amd_iommu_detected;
Joerg Roedela5235722010-05-11 17:12:33 +0200135static bool __initdata amd_iommu_disabled;
Joerg Roedelc1cbebe2008-07-03 19:35:10 +0200136
Joerg Roedelb65233a2008-07-11 17:14:21 +0200137u16 amd_iommu_last_bdf; /* largest PCI device id we have
138 to handle */
Joerg Roedel2e228472008-07-11 17:14:31 +0200139LIST_HEAD(amd_iommu_unity_map); /* a list of required unity mappings
Joerg Roedelb65233a2008-07-11 17:14:21 +0200140 we find in ACPI */
Dan Carpenter3775d482012-06-27 12:09:18 +0300141u32 amd_iommu_unmap_flush; /* if true, flush on every unmap */
Joerg Roedel928abd22008-06-26 21:27:40 +0200142
Joerg Roedel2e228472008-07-11 17:14:31 +0200143LIST_HEAD(amd_iommu_list); /* list of all AMD IOMMUs in the
Joerg Roedelb65233a2008-07-11 17:14:21 +0200144 system */
145
Joerg Roedelbb527772009-11-20 14:31:51 +0100146/* Array to assign indices to IOMMUs*/
147struct amd_iommu *amd_iommus[MAX_IOMMUS];
148int amd_iommus_present;
149
Joerg Roedel318afd42009-11-23 18:32:38 +0100150/* IOMMUs have a non-present cache? */
151bool amd_iommu_np_cache __read_mostly;
Joerg Roedel60f723b2011-04-05 12:50:24 +0200152bool amd_iommu_iotlb_sup __read_mostly = true;
Joerg Roedel318afd42009-11-23 18:32:38 +0100153
Suravee Suthikulpanita919a012014-03-05 18:54:18 -0600154u32 amd_iommu_max_pasid __read_mostly = ~0;
Joerg Roedel62f71ab2011-11-10 14:41:57 +0100155
Joerg Roedel400a28a2011-11-28 15:11:02 +0100156bool amd_iommu_v2_present __read_mostly;
Joerg Roedel4160cd92015-08-13 11:31:48 +0200157static bool amd_iommu_pc_present __read_mostly;
Joerg Roedel400a28a2011-11-28 15:11:02 +0100158
Joerg Roedel5abcdba2011-12-01 15:49:45 +0100159bool amd_iommu_force_isolation __read_mostly;
160
Joerg Roedelb65233a2008-07-11 17:14:21 +0200161/*
Joerg Roedelaeb26f52009-11-20 16:44:01 +0100162 * List of protection domains - used during resume
163 */
164LIST_HEAD(amd_iommu_pd_list);
165spinlock_t amd_iommu_pd_lock;
166
167/*
Joerg Roedelb65233a2008-07-11 17:14:21 +0200168 * Pointer to the device table which is shared by all AMD IOMMUs
169 * it is indexed by the PCI device id or the HT unit id and contains
170 * information about the domain the device belongs to as well as the
171 * page table root pointer.
172 */
Joerg Roedel928abd22008-06-26 21:27:40 +0200173struct dev_table_entry *amd_iommu_dev_table;
Joerg Roedelb65233a2008-07-11 17:14:21 +0200174
175/*
176 * The alias table is a driver specific data structure which contains the
177 * mappings of the PCI device ids to the actual requestor ids on the IOMMU.
178 * More than one device can share the same requestor id.
179 */
Joerg Roedel928abd22008-06-26 21:27:40 +0200180u16 *amd_iommu_alias_table;
Joerg Roedelb65233a2008-07-11 17:14:21 +0200181
182/*
183 * The rlookup table is used to find the IOMMU which is responsible
184 * for a specific device. It is also indexed by the PCI device id.
185 */
Joerg Roedel928abd22008-06-26 21:27:40 +0200186struct amd_iommu **amd_iommu_rlookup_table;
Joerg Roedelb65233a2008-07-11 17:14:21 +0200187
188/*
Joerg Roedel0ea2c422012-06-15 18:05:20 +0200189 * This table is used to find the irq remapping table for a given device id
190 * quickly.
191 */
192struct irq_remap_table **irq_lookup_table;
193
194/*
Frank Arnolddf805ab2012-08-27 19:21:04 +0200195 * AMD IOMMU allows up to 2^16 different protection domains. This is a bitmap
Joerg Roedelb65233a2008-07-11 17:14:21 +0200196 * to know which ones are already in use.
197 */
Joerg Roedel928abd22008-06-26 21:27:40 +0200198unsigned long *amd_iommu_pd_alloc_bitmap;
199
Joerg Roedelb65233a2008-07-11 17:14:21 +0200200static u32 dev_table_size; /* size of the device table */
201static u32 alias_table_size; /* size of the alias table */
202static u32 rlookup_table_size; /* size if the rlookup table */
Joerg Roedel3e8064b2008-06-26 21:27:41 +0200203
Joerg Roedel2c0ae172012-06-12 15:59:30 +0200204enum iommu_init_state {
205 IOMMU_START_STATE,
206 IOMMU_IVRS_DETECTED,
207 IOMMU_ACPI_FINISHED,
208 IOMMU_ENABLED,
209 IOMMU_PCI_INIT,
210 IOMMU_INTERRUPTS_EN,
211 IOMMU_DMA_OPS,
212 IOMMU_INITIALIZED,
213 IOMMU_NOT_FOUND,
214 IOMMU_INIT_ERROR,
215};
216
Joerg Roedel235dacb2013-04-09 17:53:14 +0200217/* Early ioapic and hpet maps from kernel command line */
218#define EARLY_MAP_SIZE 4
219static struct devid_map __initdata early_ioapic_map[EARLY_MAP_SIZE];
220static struct devid_map __initdata early_hpet_map[EARLY_MAP_SIZE];
221static int __initdata early_ioapic_map_size;
222static int __initdata early_hpet_map_size;
Joerg Roedeldfbb6d42013-04-09 19:06:18 +0200223static bool __initdata cmdline_maps;
Joerg Roedel235dacb2013-04-09 17:53:14 +0200224
Joerg Roedel2c0ae172012-06-12 15:59:30 +0200225static enum iommu_init_state init_state = IOMMU_START_STATE;
226
Gerard Snitselaarae295142012-03-16 11:38:22 -0700227static int amd_iommu_enable_interrupts(void);
Joerg Roedel2c0ae172012-06-12 15:59:30 +0200228static int __init iommu_go_to_state(enum iommu_init_state state);
Joerg Roedelaafd8ba2015-05-28 18:41:39 +0200229static void init_device_table_dma(void);
Joerg Roedel3d9761e2012-03-15 16:39:21 +0100230
Joerg Roedel208ec8c2008-07-11 17:14:24 +0200231static inline void update_last_devid(u16 devid)
232{
233 if (devid > amd_iommu_last_bdf)
234 amd_iommu_last_bdf = devid;
235}
236
Joerg Roedelc5714842008-07-11 17:14:25 +0200237static inline unsigned long tbl_size(int entry_size)
238{
239 unsigned shift = PAGE_SHIFT +
Neil Turton421f9092009-05-14 14:00:35 +0100240 get_order(((int)amd_iommu_last_bdf + 1) * entry_size);
Joerg Roedelc5714842008-07-11 17:14:25 +0200241
242 return 1UL << shift;
243}
244
Matthew Garrett5bcd7572010-10-04 14:59:31 -0400245/* Access to l1 and l2 indexed register spaces */
246
247static u32 iommu_read_l1(struct amd_iommu *iommu, u16 l1, u8 address)
248{
249 u32 val;
250
251 pci_write_config_dword(iommu->dev, 0xf8, (address | l1 << 16));
252 pci_read_config_dword(iommu->dev, 0xfc, &val);
253 return val;
254}
255
256static void iommu_write_l1(struct amd_iommu *iommu, u16 l1, u8 address, u32 val)
257{
258 pci_write_config_dword(iommu->dev, 0xf8, (address | l1 << 16 | 1 << 31));
259 pci_write_config_dword(iommu->dev, 0xfc, val);
260 pci_write_config_dword(iommu->dev, 0xf8, (address | l1 << 16));
261}
262
263static u32 iommu_read_l2(struct amd_iommu *iommu, u8 address)
264{
265 u32 val;
266
267 pci_write_config_dword(iommu->dev, 0xf0, address);
268 pci_read_config_dword(iommu->dev, 0xf4, &val);
269 return val;
270}
271
272static void iommu_write_l2(struct amd_iommu *iommu, u8 address, u32 val)
273{
274 pci_write_config_dword(iommu->dev, 0xf0, (address | 1 << 8));
275 pci_write_config_dword(iommu->dev, 0xf4, val);
276}
277
Joerg Roedelb65233a2008-07-11 17:14:21 +0200278/****************************************************************************
279 *
280 * AMD IOMMU MMIO register space handling functions
281 *
282 * These functions are used to program the IOMMU device registers in
283 * MMIO space required for that driver.
284 *
285 ****************************************************************************/
286
287/*
288 * This function set the exclusion range in the IOMMU. DMA accesses to the
289 * exclusion range are passed through untranslated
290 */
Joerg Roedel05f92db2009-05-12 09:52:46 +0200291static void iommu_set_exclusion_range(struct amd_iommu *iommu)
Joerg Roedelb2026aa2008-06-26 21:27:44 +0200292{
293 u64 start = iommu->exclusion_start & PAGE_MASK;
294 u64 limit = (start + iommu->exclusion_length) & PAGE_MASK;
295 u64 entry;
296
297 if (!iommu->exclusion_start)
298 return;
299
300 entry = start | MMIO_EXCL_ENABLE_MASK;
301 memcpy_toio(iommu->mmio_base + MMIO_EXCL_BASE_OFFSET,
302 &entry, sizeof(entry));
303
304 entry = limit;
305 memcpy_toio(iommu->mmio_base + MMIO_EXCL_LIMIT_OFFSET,
306 &entry, sizeof(entry));
307}
308
Joerg Roedelb65233a2008-07-11 17:14:21 +0200309/* Programs the physical address of the device table into the IOMMU hardware */
Jan Beulich6b7f0002012-03-08 08:58:13 +0000310static void iommu_set_device_table(struct amd_iommu *iommu)
Joerg Roedelb2026aa2008-06-26 21:27:44 +0200311{
Andreas Herrmannf6098912008-10-16 16:27:36 +0200312 u64 entry;
Joerg Roedelb2026aa2008-06-26 21:27:44 +0200313
314 BUG_ON(iommu->mmio_base == NULL);
315
316 entry = virt_to_phys(amd_iommu_dev_table);
317 entry |= (dev_table_size >> 12) - 1;
318 memcpy_toio(iommu->mmio_base + MMIO_DEV_TABLE_OFFSET,
319 &entry, sizeof(entry));
320}
321
Joerg Roedelb65233a2008-07-11 17:14:21 +0200322/* Generic functions to enable/disable certain features of the IOMMU. */
Joerg Roedel05f92db2009-05-12 09:52:46 +0200323static void iommu_feature_enable(struct amd_iommu *iommu, u8 bit)
Joerg Roedelb2026aa2008-06-26 21:27:44 +0200324{
325 u32 ctrl;
326
327 ctrl = readl(iommu->mmio_base + MMIO_CONTROL_OFFSET);
328 ctrl |= (1 << bit);
329 writel(ctrl, iommu->mmio_base + MMIO_CONTROL_OFFSET);
330}
331
Joerg Roedelca0207112009-10-28 18:02:26 +0100332static void iommu_feature_disable(struct amd_iommu *iommu, u8 bit)
Joerg Roedelb2026aa2008-06-26 21:27:44 +0200333{
334 u32 ctrl;
335
Joerg Roedel199d0d52008-09-17 16:45:59 +0200336 ctrl = readl(iommu->mmio_base + MMIO_CONTROL_OFFSET);
Joerg Roedelb2026aa2008-06-26 21:27:44 +0200337 ctrl &= ~(1 << bit);
338 writel(ctrl, iommu->mmio_base + MMIO_CONTROL_OFFSET);
339}
340
Joerg Roedel1456e9d2011-12-22 14:51:53 +0100341static void iommu_set_inv_tlb_timeout(struct amd_iommu *iommu, int timeout)
342{
343 u32 ctrl;
344
345 ctrl = readl(iommu->mmio_base + MMIO_CONTROL_OFFSET);
346 ctrl &= ~CTRL_INV_TO_MASK;
347 ctrl |= (timeout << CONTROL_INV_TIMEOUT) & CTRL_INV_TO_MASK;
348 writel(ctrl, iommu->mmio_base + MMIO_CONTROL_OFFSET);
349}
350
Joerg Roedelb65233a2008-07-11 17:14:21 +0200351/* Function to enable the hardware */
Joerg Roedel05f92db2009-05-12 09:52:46 +0200352static void iommu_enable(struct amd_iommu *iommu)
Joerg Roedelb2026aa2008-06-26 21:27:44 +0200353{
Joerg Roedelb2026aa2008-06-26 21:27:44 +0200354 iommu_feature_enable(iommu, CONTROL_IOMMU_EN);
Joerg Roedelb2026aa2008-06-26 21:27:44 +0200355}
356
Joerg Roedel92ac4322009-05-19 19:06:27 +0200357static void iommu_disable(struct amd_iommu *iommu)
Joerg Roedel126c52b2008-09-09 16:47:35 +0200358{
Chris Wrighta8c485b2009-06-15 15:53:45 +0200359 /* Disable command buffer */
360 iommu_feature_disable(iommu, CONTROL_CMDBUF_EN);
361
362 /* Disable event logging and event interrupts */
363 iommu_feature_disable(iommu, CONTROL_EVT_INT_EN);
364 iommu_feature_disable(iommu, CONTROL_EVT_LOG_EN);
365
366 /* Disable IOMMU hardware itself */
Joerg Roedel92ac4322009-05-19 19:06:27 +0200367 iommu_feature_disable(iommu, CONTROL_IOMMU_EN);
Joerg Roedel126c52b2008-09-09 16:47:35 +0200368}
369
Joerg Roedelb65233a2008-07-11 17:14:21 +0200370/*
371 * mapping and unmapping functions for the IOMMU MMIO space. Each AMD IOMMU in
372 * the system has one.
373 */
Steven L Kinney30861dd2013-06-05 16:11:48 -0500374static u8 __iomem * __init iommu_map_mmio_space(u64 address, u64 end)
Joerg Roedel6c567472008-06-26 21:27:43 +0200375{
Steven L Kinney30861dd2013-06-05 16:11:48 -0500376 if (!request_mem_region(address, end, "amd_iommu")) {
377 pr_err("AMD-Vi: Can not reserve memory region %llx-%llx for mmio\n",
378 address, end);
Joerg Roedele82752d2010-05-28 14:26:48 +0200379 pr_err("AMD-Vi: This is a BIOS bug. Please contact your hardware vendor\n");
Joerg Roedel6c567472008-06-26 21:27:43 +0200380 return NULL;
Joerg Roedele82752d2010-05-28 14:26:48 +0200381 }
Joerg Roedel6c567472008-06-26 21:27:43 +0200382
Steven L Kinney30861dd2013-06-05 16:11:48 -0500383 return (u8 __iomem *)ioremap_nocache(address, end);
Joerg Roedel6c567472008-06-26 21:27:43 +0200384}
385
386static void __init iommu_unmap_mmio_space(struct amd_iommu *iommu)
387{
388 if (iommu->mmio_base)
389 iounmap(iommu->mmio_base);
Steven L Kinney30861dd2013-06-05 16:11:48 -0500390 release_mem_region(iommu->mmio_phys, iommu->mmio_phys_end);
Joerg Roedel6c567472008-06-26 21:27:43 +0200391}
392
Joerg Roedelb65233a2008-07-11 17:14:21 +0200393/****************************************************************************
394 *
395 * The functions below belong to the first pass of AMD IOMMU ACPI table
396 * parsing. In this pass we try to find out the highest device id this
397 * code has to handle. Upon this information the size of the shared data
398 * structures is determined later.
399 *
400 ****************************************************************************/
401
402/*
Joerg Roedelb514e552008-09-17 17:14:27 +0200403 * This function calculates the length of a given IVHD entry
404 */
405static inline int ivhd_entry_length(u8 *ivhd)
406{
407 return 0x04 << (*ivhd >> 6);
408}
409
410/*
Joerg Roedelb65233a2008-07-11 17:14:21 +0200411 * This function reads the last device id the IOMMU has to handle from the PCI
412 * capability header for this IOMMU
413 */
Joerg Roedel3e8064b2008-06-26 21:27:41 +0200414static int __init find_last_devid_on_pci(int bus, int dev, int fn, int cap_ptr)
415{
416 u32 cap;
417
418 cap = read_pci_config(bus, dev, fn, cap_ptr+MMIO_RANGE_OFFSET);
Shuah Khan6f2729b2013-02-27 17:07:30 -0700419 update_last_devid(PCI_DEVID(MMIO_GET_BUS(cap), MMIO_GET_LD(cap)));
Joerg Roedel3e8064b2008-06-26 21:27:41 +0200420
421 return 0;
422}
423
Joerg Roedelb65233a2008-07-11 17:14:21 +0200424/*
425 * After reading the highest device id from the IOMMU PCI capability header
426 * this function looks if there is a higher device id defined in the ACPI table
427 */
Joerg Roedel3e8064b2008-06-26 21:27:41 +0200428static int __init find_last_devid_from_ivhd(struct ivhd_header *h)
429{
430 u8 *p = (void *)h, *end = (void *)h;
431 struct ivhd_entry *dev;
432
433 p += sizeof(*h);
434 end += h->length;
435
Shuah Khanc5081cd2013-02-27 17:07:19 -0700436 find_last_devid_on_pci(PCI_BUS_NUM(h->devid),
Joerg Roedel3e8064b2008-06-26 21:27:41 +0200437 PCI_SLOT(h->devid),
438 PCI_FUNC(h->devid),
439 h->cap_ptr);
440
441 while (p < end) {
442 dev = (struct ivhd_entry *)p;
443 switch (dev->type) {
444 case IVHD_DEV_SELECT:
445 case IVHD_DEV_RANGE_END:
446 case IVHD_DEV_ALIAS:
447 case IVHD_DEV_EXT_SELECT:
Joerg Roedelb65233a2008-07-11 17:14:21 +0200448 /* all the above subfield types refer to device ids */
Joerg Roedel208ec8c2008-07-11 17:14:24 +0200449 update_last_devid(dev->devid);
Joerg Roedel3e8064b2008-06-26 21:27:41 +0200450 break;
451 default:
452 break;
453 }
Joerg Roedelb514e552008-09-17 17:14:27 +0200454 p += ivhd_entry_length(p);
Joerg Roedel3e8064b2008-06-26 21:27:41 +0200455 }
456
457 WARN_ON(p != end);
458
459 return 0;
460}
461
Joerg Roedelb65233a2008-07-11 17:14:21 +0200462/*
463 * Iterate over all IVHD entries in the ACPI table and find the highest device
464 * id which we need to handle. This is the first of three functions which parse
465 * the ACPI table. So we check the checksum here.
466 */
Joerg Roedel3e8064b2008-06-26 21:27:41 +0200467static int __init find_last_devid_acpi(struct acpi_table_header *table)
468{
469 int i;
470 u8 checksum = 0, *p = (u8 *)table, *end = (u8 *)table;
471 struct ivhd_header *h;
472
473 /*
474 * Validate checksum here so we don't need to do it when
475 * we actually parse the table
476 */
477 for (i = 0; i < table->length; ++i)
478 checksum += p[i];
Joerg Roedel02f3b3f2012-06-11 17:45:25 +0200479 if (checksum != 0)
Joerg Roedel3e8064b2008-06-26 21:27:41 +0200480 /* ACPI table corrupt */
Joerg Roedel02f3b3f2012-06-11 17:45:25 +0200481 return -ENODEV;
Joerg Roedel3e8064b2008-06-26 21:27:41 +0200482
483 p += IVRS_HEADER_LENGTH;
484
485 end += table->length;
486 while (p < end) {
487 h = (struct ivhd_header *)p;
488 switch (h->type) {
489 case ACPI_IVHD_TYPE:
490 find_last_devid_from_ivhd(h);
491 break;
492 default:
493 break;
494 }
495 p += h->length;
496 }
497 WARN_ON(p != end);
498
499 return 0;
500}
501
Joerg Roedelb65233a2008-07-11 17:14:21 +0200502/****************************************************************************
503 *
Frank Arnolddf805ab2012-08-27 19:21:04 +0200504 * The following functions belong to the code path which parses the ACPI table
Joerg Roedelb65233a2008-07-11 17:14:21 +0200505 * the second time. In this ACPI parsing iteration we allocate IOMMU specific
506 * data structures, initialize the device/alias/rlookup table and also
507 * basically initialize the hardware.
508 *
509 ****************************************************************************/
510
511/*
512 * Allocates the command buffer. This buffer is per AMD IOMMU. We can
513 * write commands to that buffer later and the IOMMU will execute them
514 * asynchronously
515 */
Joerg Roedelb36ca912008-06-26 21:27:45 +0200516static u8 * __init alloc_command_buffer(struct amd_iommu *iommu)
517{
Joerg Roedeld0312b212008-07-11 17:14:29 +0200518 u8 *cmd_buf = (u8 *)__get_free_pages(GFP_KERNEL | __GFP_ZERO,
Joerg Roedelb36ca912008-06-26 21:27:45 +0200519 get_order(CMD_BUFFER_SIZE));
Joerg Roedelb36ca912008-06-26 21:27:45 +0200520
521 if (cmd_buf == NULL)
522 return NULL;
523
Chris Wright549c90dc2010-04-02 18:27:53 -0700524 iommu->cmd_buf_size = CMD_BUFFER_SIZE | CMD_BUFFER_UNINITIALIZED;
Joerg Roedelb36ca912008-06-26 21:27:45 +0200525
Joerg Roedel58492e12009-05-04 18:41:16 +0200526 return cmd_buf;
527}
528
529/*
Joerg Roedel93f1cc672009-09-03 14:50:20 +0200530 * This function resets the command buffer if the IOMMU stopped fetching
531 * commands from it.
532 */
533void amd_iommu_reset_cmd_buffer(struct amd_iommu *iommu)
534{
535 iommu_feature_disable(iommu, CONTROL_CMDBUF_EN);
536
537 writel(0x00, iommu->mmio_base + MMIO_CMD_HEAD_OFFSET);
538 writel(0x00, iommu->mmio_base + MMIO_CMD_TAIL_OFFSET);
539
540 iommu_feature_enable(iommu, CONTROL_CMDBUF_EN);
541}
542
543/*
Joerg Roedel58492e12009-05-04 18:41:16 +0200544 * This function writes the command buffer address to the hardware and
545 * enables it.
546 */
547static void iommu_enable_command_buffer(struct amd_iommu *iommu)
548{
549 u64 entry;
550
551 BUG_ON(iommu->cmd_buf == NULL);
552
553 entry = (u64)virt_to_phys(iommu->cmd_buf);
Joerg Roedelb36ca912008-06-26 21:27:45 +0200554 entry |= MMIO_CMD_SIZE_512;
Joerg Roedel58492e12009-05-04 18:41:16 +0200555
Joerg Roedelb36ca912008-06-26 21:27:45 +0200556 memcpy_toio(iommu->mmio_base + MMIO_CMD_BUF_OFFSET,
Joerg Roedel58492e12009-05-04 18:41:16 +0200557 &entry, sizeof(entry));
Joerg Roedelb36ca912008-06-26 21:27:45 +0200558
Joerg Roedel93f1cc672009-09-03 14:50:20 +0200559 amd_iommu_reset_cmd_buffer(iommu);
Chris Wright549c90dc2010-04-02 18:27:53 -0700560 iommu->cmd_buf_size &= ~(CMD_BUFFER_UNINITIALIZED);
Joerg Roedelb36ca912008-06-26 21:27:45 +0200561}
562
563static void __init free_command_buffer(struct amd_iommu *iommu)
564{
Joerg Roedel23c17132008-09-17 17:18:17 +0200565 free_pages((unsigned long)iommu->cmd_buf,
Chris Wright549c90dc2010-04-02 18:27:53 -0700566 get_order(iommu->cmd_buf_size & ~(CMD_BUFFER_UNINITIALIZED)));
Joerg Roedelb36ca912008-06-26 21:27:45 +0200567}
568
Joerg Roedel335503e2008-09-05 14:29:07 +0200569/* allocates the memory where the IOMMU will log its events to */
570static u8 * __init alloc_event_buffer(struct amd_iommu *iommu)
571{
Joerg Roedel335503e2008-09-05 14:29:07 +0200572 iommu->evt_buf = (u8 *)__get_free_pages(GFP_KERNEL | __GFP_ZERO,
573 get_order(EVT_BUFFER_SIZE));
574
575 if (iommu->evt_buf == NULL)
576 return NULL;
577
Joerg Roedel1bc6f832009-07-02 18:32:05 +0200578 iommu->evt_buf_size = EVT_BUFFER_SIZE;
579
Joerg Roedel58492e12009-05-04 18:41:16 +0200580 return iommu->evt_buf;
581}
582
583static void iommu_enable_event_buffer(struct amd_iommu *iommu)
584{
585 u64 entry;
586
587 BUG_ON(iommu->evt_buf == NULL);
588
Joerg Roedel335503e2008-09-05 14:29:07 +0200589 entry = (u64)virt_to_phys(iommu->evt_buf) | EVT_LEN_MASK;
Joerg Roedel58492e12009-05-04 18:41:16 +0200590
Joerg Roedel335503e2008-09-05 14:29:07 +0200591 memcpy_toio(iommu->mmio_base + MMIO_EVT_BUF_OFFSET,
592 &entry, sizeof(entry));
593
Joerg Roedel090672072009-06-15 16:06:48 +0200594 /* set head and tail to zero manually */
595 writel(0x00, iommu->mmio_base + MMIO_EVT_HEAD_OFFSET);
596 writel(0x00, iommu->mmio_base + MMIO_EVT_TAIL_OFFSET);
597
Joerg Roedel58492e12009-05-04 18:41:16 +0200598 iommu_feature_enable(iommu, CONTROL_EVT_LOG_EN);
Joerg Roedel335503e2008-09-05 14:29:07 +0200599}
600
601static void __init free_event_buffer(struct amd_iommu *iommu)
602{
603 free_pages((unsigned long)iommu->evt_buf, get_order(EVT_BUFFER_SIZE));
604}
605
Joerg Roedel1a29ac02011-11-10 15:41:40 +0100606/* allocates the memory where the IOMMU will log its events to */
607static u8 * __init alloc_ppr_log(struct amd_iommu *iommu)
608{
609 iommu->ppr_log = (u8 *)__get_free_pages(GFP_KERNEL | __GFP_ZERO,
610 get_order(PPR_LOG_SIZE));
611
612 if (iommu->ppr_log == NULL)
613 return NULL;
614
615 return iommu->ppr_log;
616}
617
618static void iommu_enable_ppr_log(struct amd_iommu *iommu)
619{
620 u64 entry;
621
622 if (iommu->ppr_log == NULL)
623 return;
624
625 entry = (u64)virt_to_phys(iommu->ppr_log) | PPR_LOG_SIZE_512;
626
627 memcpy_toio(iommu->mmio_base + MMIO_PPR_LOG_OFFSET,
628 &entry, sizeof(entry));
629
630 /* set head and tail to zero manually */
631 writel(0x00, iommu->mmio_base + MMIO_PPR_HEAD_OFFSET);
632 writel(0x00, iommu->mmio_base + MMIO_PPR_TAIL_OFFSET);
633
634 iommu_feature_enable(iommu, CONTROL_PPFLOG_EN);
635 iommu_feature_enable(iommu, CONTROL_PPR_EN);
636}
637
638static void __init free_ppr_log(struct amd_iommu *iommu)
639{
640 if (iommu->ppr_log == NULL)
641 return;
642
643 free_pages((unsigned long)iommu->ppr_log, get_order(PPR_LOG_SIZE));
644}
645
Joerg Roedelcbc33a92011-11-25 11:41:31 +0100646static void iommu_enable_gt(struct amd_iommu *iommu)
647{
648 if (!iommu_feature(iommu, FEATURE_GT))
649 return;
650
651 iommu_feature_enable(iommu, CONTROL_GT_EN);
652}
653
Joerg Roedelb65233a2008-07-11 17:14:21 +0200654/* sets a specific bit in the device table entry. */
Joerg Roedel3566b772008-06-26 21:27:46 +0200655static void set_dev_entry_bit(u16 devid, u8 bit)
656{
Joerg Roedelee6c2862011-11-09 12:06:03 +0100657 int i = (bit >> 6) & 0x03;
658 int _bit = bit & 0x3f;
Joerg Roedel3566b772008-06-26 21:27:46 +0200659
Joerg Roedelee6c2862011-11-09 12:06:03 +0100660 amd_iommu_dev_table[devid].data[i] |= (1UL << _bit);
Joerg Roedel3566b772008-06-26 21:27:46 +0200661}
662
Joerg Roedelc5cca142009-10-09 18:31:20 +0200663static int get_dev_entry_bit(u16 devid, u8 bit)
664{
Joerg Roedelee6c2862011-11-09 12:06:03 +0100665 int i = (bit >> 6) & 0x03;
666 int _bit = bit & 0x3f;
Joerg Roedelc5cca142009-10-09 18:31:20 +0200667
Joerg Roedelee6c2862011-11-09 12:06:03 +0100668 return (amd_iommu_dev_table[devid].data[i] & (1UL << _bit)) >> _bit;
Joerg Roedelc5cca142009-10-09 18:31:20 +0200669}
670
671
672void amd_iommu_apply_erratum_63(u16 devid)
673{
674 int sysmgt;
675
676 sysmgt = get_dev_entry_bit(devid, DEV_ENTRY_SYSMGT1) |
677 (get_dev_entry_bit(devid, DEV_ENTRY_SYSMGT2) << 1);
678
679 if (sysmgt == 0x01)
680 set_dev_entry_bit(devid, DEV_ENTRY_IW);
681}
682
Joerg Roedel5ff47892008-07-14 20:11:18 +0200683/* Writes the specific IOMMU for a device into the rlookup table */
684static void __init set_iommu_for_device(struct amd_iommu *iommu, u16 devid)
685{
686 amd_iommu_rlookup_table[devid] = iommu;
687}
688
Joerg Roedelb65233a2008-07-11 17:14:21 +0200689/*
690 * This function takes the device specific flags read from the ACPI
691 * table and sets up the device table entry with that information
692 */
Joerg Roedel5ff47892008-07-14 20:11:18 +0200693static void __init set_dev_entry_from_acpi(struct amd_iommu *iommu,
694 u16 devid, u32 flags, u32 ext_flags)
Joerg Roedel3566b772008-06-26 21:27:46 +0200695{
696 if (flags & ACPI_DEVFLAG_INITPASS)
697 set_dev_entry_bit(devid, DEV_ENTRY_INIT_PASS);
698 if (flags & ACPI_DEVFLAG_EXTINT)
699 set_dev_entry_bit(devid, DEV_ENTRY_EINT_PASS);
700 if (flags & ACPI_DEVFLAG_NMI)
701 set_dev_entry_bit(devid, DEV_ENTRY_NMI_PASS);
702 if (flags & ACPI_DEVFLAG_SYSMGT1)
703 set_dev_entry_bit(devid, DEV_ENTRY_SYSMGT1);
704 if (flags & ACPI_DEVFLAG_SYSMGT2)
705 set_dev_entry_bit(devid, DEV_ENTRY_SYSMGT2);
706 if (flags & ACPI_DEVFLAG_LINT0)
707 set_dev_entry_bit(devid, DEV_ENTRY_LINT0_PASS);
708 if (flags & ACPI_DEVFLAG_LINT1)
709 set_dev_entry_bit(devid, DEV_ENTRY_LINT1_PASS);
Joerg Roedel3566b772008-06-26 21:27:46 +0200710
Joerg Roedelc5cca142009-10-09 18:31:20 +0200711 amd_iommu_apply_erratum_63(devid);
712
Joerg Roedel5ff47892008-07-14 20:11:18 +0200713 set_iommu_for_device(iommu, devid);
Joerg Roedel3566b772008-06-26 21:27:46 +0200714}
715
Joerg Roedelc50e3242014-09-09 15:59:37 +0200716static int __init add_special_device(u8 type, u8 id, u16 *devid, bool cmd_line)
Joerg Roedel6efed632012-06-14 15:52:58 +0200717{
718 struct devid_map *entry;
719 struct list_head *list;
720
Joerg Roedel31cff672013-04-09 16:53:58 +0200721 if (type == IVHD_SPECIAL_IOAPIC)
722 list = &ioapic_map;
723 else if (type == IVHD_SPECIAL_HPET)
724 list = &hpet_map;
725 else
Joerg Roedel6efed632012-06-14 15:52:58 +0200726 return -EINVAL;
727
Joerg Roedel31cff672013-04-09 16:53:58 +0200728 list_for_each_entry(entry, list, list) {
729 if (!(entry->id == id && entry->cmd_line))
730 continue;
731
732 pr_info("AMD-Vi: Command-line override present for %s id %d - ignoring\n",
733 type == IVHD_SPECIAL_IOAPIC ? "IOAPIC" : "HPET", id);
734
Joerg Roedelc50e3242014-09-09 15:59:37 +0200735 *devid = entry->devid;
736
Joerg Roedel31cff672013-04-09 16:53:58 +0200737 return 0;
738 }
739
Joerg Roedel6efed632012-06-14 15:52:58 +0200740 entry = kzalloc(sizeof(*entry), GFP_KERNEL);
741 if (!entry)
742 return -ENOMEM;
743
Joerg Roedel31cff672013-04-09 16:53:58 +0200744 entry->id = id;
Joerg Roedelc50e3242014-09-09 15:59:37 +0200745 entry->devid = *devid;
Joerg Roedel31cff672013-04-09 16:53:58 +0200746 entry->cmd_line = cmd_line;
Joerg Roedel6efed632012-06-14 15:52:58 +0200747
748 list_add_tail(&entry->list, list);
749
750 return 0;
751}
752
Joerg Roedel235dacb2013-04-09 17:53:14 +0200753static int __init add_early_maps(void)
754{
755 int i, ret;
756
757 for (i = 0; i < early_ioapic_map_size; ++i) {
758 ret = add_special_device(IVHD_SPECIAL_IOAPIC,
759 early_ioapic_map[i].id,
Joerg Roedelc50e3242014-09-09 15:59:37 +0200760 &early_ioapic_map[i].devid,
Joerg Roedel235dacb2013-04-09 17:53:14 +0200761 early_ioapic_map[i].cmd_line);
762 if (ret)
763 return ret;
764 }
765
766 for (i = 0; i < early_hpet_map_size; ++i) {
767 ret = add_special_device(IVHD_SPECIAL_HPET,
768 early_hpet_map[i].id,
Joerg Roedelc50e3242014-09-09 15:59:37 +0200769 &early_hpet_map[i].devid,
Joerg Roedel235dacb2013-04-09 17:53:14 +0200770 early_hpet_map[i].cmd_line);
771 if (ret)
772 return ret;
773 }
774
775 return 0;
776}
777
Joerg Roedelb65233a2008-07-11 17:14:21 +0200778/*
Frank Arnolddf805ab2012-08-27 19:21:04 +0200779 * Reads the device exclusion range from ACPI and initializes the IOMMU with
Joerg Roedelb65233a2008-07-11 17:14:21 +0200780 * it
781 */
Joerg Roedel3566b772008-06-26 21:27:46 +0200782static void __init set_device_exclusion_range(u16 devid, struct ivmd_header *m)
783{
784 struct amd_iommu *iommu = amd_iommu_rlookup_table[devid];
785
786 if (!(m->flags & IVMD_FLAG_EXCL_RANGE))
787 return;
788
789 if (iommu) {
Joerg Roedelb65233a2008-07-11 17:14:21 +0200790 /*
791 * We only can configure exclusion ranges per IOMMU, not
792 * per device. But we can enable the exclusion range per
793 * device. This is done here
794 */
Su Friendy2c16c9f2014-05-07 13:54:52 +0800795 set_dev_entry_bit(devid, DEV_ENTRY_EX);
Joerg Roedel3566b772008-06-26 21:27:46 +0200796 iommu->exclusion_start = m->range_start;
797 iommu->exclusion_length = m->range_length;
798 }
799}
800
Joerg Roedelb65233a2008-07-11 17:14:21 +0200801/*
Joerg Roedelb65233a2008-07-11 17:14:21 +0200802 * Takes a pointer to an AMD IOMMU entry in the ACPI table and
803 * initializes the hardware and our data structures with it.
804 */
Joerg Roedel6efed632012-06-14 15:52:58 +0200805static int __init init_iommu_from_acpi(struct amd_iommu *iommu,
Joerg Roedel5d0c8e42008-06-26 21:27:47 +0200806 struct ivhd_header *h)
807{
808 u8 *p = (u8 *)h;
809 u8 *end = p, flags = 0;
Joerg Roedel0de66d52011-06-06 16:04:02 +0200810 u16 devid = 0, devid_start = 0, devid_to = 0;
811 u32 dev_i, ext_flags = 0;
Joerg Roedel58a3bee2008-07-11 17:14:30 +0200812 bool alias = false;
Joerg Roedel5d0c8e42008-06-26 21:27:47 +0200813 struct ivhd_entry *e;
Joerg Roedel235dacb2013-04-09 17:53:14 +0200814 int ret;
815
816
817 ret = add_early_maps();
818 if (ret)
819 return ret;
Joerg Roedel5d0c8e42008-06-26 21:27:47 +0200820
821 /*
Joerg Roedele9bf5192010-09-20 14:33:07 +0200822 * First save the recommended feature enable bits from ACPI
Joerg Roedel5d0c8e42008-06-26 21:27:47 +0200823 */
Joerg Roedele9bf5192010-09-20 14:33:07 +0200824 iommu->acpi_flags = h->flags;
Joerg Roedel5d0c8e42008-06-26 21:27:47 +0200825
826 /*
827 * Done. Now parse the device entries
828 */
829 p += sizeof(struct ivhd_header);
830 end += h->length;
831
Joerg Roedel42a698f2009-05-20 15:41:28 +0200832
Joerg Roedel5d0c8e42008-06-26 21:27:47 +0200833 while (p < end) {
834 e = (struct ivhd_entry *)p;
835 switch (e->type) {
836 case IVHD_DEV_ALL:
Joerg Roedel42a698f2009-05-20 15:41:28 +0200837
838 DUMP_printk(" DEV_ALL\t\t\t first devid: %02x:%02x.%x"
839 " last device %02x:%02x.%x flags: %02x\n",
Shuah Khanc5081cd2013-02-27 17:07:19 -0700840 PCI_BUS_NUM(iommu->first_device),
Joerg Roedel42a698f2009-05-20 15:41:28 +0200841 PCI_SLOT(iommu->first_device),
842 PCI_FUNC(iommu->first_device),
Shuah Khanc5081cd2013-02-27 17:07:19 -0700843 PCI_BUS_NUM(iommu->last_device),
Joerg Roedel42a698f2009-05-20 15:41:28 +0200844 PCI_SLOT(iommu->last_device),
845 PCI_FUNC(iommu->last_device),
846 e->flags);
847
Joerg Roedel5d0c8e42008-06-26 21:27:47 +0200848 for (dev_i = iommu->first_device;
849 dev_i <= iommu->last_device; ++dev_i)
Joerg Roedel5ff47892008-07-14 20:11:18 +0200850 set_dev_entry_from_acpi(iommu, dev_i,
851 e->flags, 0);
Joerg Roedel5d0c8e42008-06-26 21:27:47 +0200852 break;
853 case IVHD_DEV_SELECT:
Joerg Roedel42a698f2009-05-20 15:41:28 +0200854
855 DUMP_printk(" DEV_SELECT\t\t\t devid: %02x:%02x.%x "
856 "flags: %02x\n",
Shuah Khanc5081cd2013-02-27 17:07:19 -0700857 PCI_BUS_NUM(e->devid),
Joerg Roedel42a698f2009-05-20 15:41:28 +0200858 PCI_SLOT(e->devid),
859 PCI_FUNC(e->devid),
860 e->flags);
861
Joerg Roedel5d0c8e42008-06-26 21:27:47 +0200862 devid = e->devid;
Joerg Roedel5ff47892008-07-14 20:11:18 +0200863 set_dev_entry_from_acpi(iommu, devid, e->flags, 0);
Joerg Roedel5d0c8e42008-06-26 21:27:47 +0200864 break;
865 case IVHD_DEV_SELECT_RANGE_START:
Joerg Roedel42a698f2009-05-20 15:41:28 +0200866
867 DUMP_printk(" DEV_SELECT_RANGE_START\t "
868 "devid: %02x:%02x.%x flags: %02x\n",
Shuah Khanc5081cd2013-02-27 17:07:19 -0700869 PCI_BUS_NUM(e->devid),
Joerg Roedel42a698f2009-05-20 15:41:28 +0200870 PCI_SLOT(e->devid),
871 PCI_FUNC(e->devid),
872 e->flags);
873
Joerg Roedel5d0c8e42008-06-26 21:27:47 +0200874 devid_start = e->devid;
875 flags = e->flags;
876 ext_flags = 0;
Joerg Roedel58a3bee2008-07-11 17:14:30 +0200877 alias = false;
Joerg Roedel5d0c8e42008-06-26 21:27:47 +0200878 break;
879 case IVHD_DEV_ALIAS:
Joerg Roedel42a698f2009-05-20 15:41:28 +0200880
881 DUMP_printk(" DEV_ALIAS\t\t\t devid: %02x:%02x.%x "
882 "flags: %02x devid_to: %02x:%02x.%x\n",
Shuah Khanc5081cd2013-02-27 17:07:19 -0700883 PCI_BUS_NUM(e->devid),
Joerg Roedel42a698f2009-05-20 15:41:28 +0200884 PCI_SLOT(e->devid),
885 PCI_FUNC(e->devid),
886 e->flags,
Shuah Khanc5081cd2013-02-27 17:07:19 -0700887 PCI_BUS_NUM(e->ext >> 8),
Joerg Roedel42a698f2009-05-20 15:41:28 +0200888 PCI_SLOT(e->ext >> 8),
889 PCI_FUNC(e->ext >> 8));
890
Joerg Roedel5d0c8e42008-06-26 21:27:47 +0200891 devid = e->devid;
892 devid_to = e->ext >> 8;
Joerg Roedel7a6a3a02009-07-02 12:23:23 +0200893 set_dev_entry_from_acpi(iommu, devid , e->flags, 0);
Neil Turton7455aab2009-05-14 14:08:11 +0100894 set_dev_entry_from_acpi(iommu, devid_to, e->flags, 0);
Joerg Roedel5d0c8e42008-06-26 21:27:47 +0200895 amd_iommu_alias_table[devid] = devid_to;
896 break;
897 case IVHD_DEV_ALIAS_RANGE:
Joerg Roedel42a698f2009-05-20 15:41:28 +0200898
899 DUMP_printk(" DEV_ALIAS_RANGE\t\t "
900 "devid: %02x:%02x.%x flags: %02x "
901 "devid_to: %02x:%02x.%x\n",
Shuah Khanc5081cd2013-02-27 17:07:19 -0700902 PCI_BUS_NUM(e->devid),
Joerg Roedel42a698f2009-05-20 15:41:28 +0200903 PCI_SLOT(e->devid),
904 PCI_FUNC(e->devid),
905 e->flags,
Shuah Khanc5081cd2013-02-27 17:07:19 -0700906 PCI_BUS_NUM(e->ext >> 8),
Joerg Roedel42a698f2009-05-20 15:41:28 +0200907 PCI_SLOT(e->ext >> 8),
908 PCI_FUNC(e->ext >> 8));
909
Joerg Roedel5d0c8e42008-06-26 21:27:47 +0200910 devid_start = e->devid;
911 flags = e->flags;
912 devid_to = e->ext >> 8;
913 ext_flags = 0;
Joerg Roedel58a3bee2008-07-11 17:14:30 +0200914 alias = true;
Joerg Roedel5d0c8e42008-06-26 21:27:47 +0200915 break;
916 case IVHD_DEV_EXT_SELECT:
Joerg Roedel42a698f2009-05-20 15:41:28 +0200917
918 DUMP_printk(" DEV_EXT_SELECT\t\t devid: %02x:%02x.%x "
919 "flags: %02x ext: %08x\n",
Shuah Khanc5081cd2013-02-27 17:07:19 -0700920 PCI_BUS_NUM(e->devid),
Joerg Roedel42a698f2009-05-20 15:41:28 +0200921 PCI_SLOT(e->devid),
922 PCI_FUNC(e->devid),
923 e->flags, e->ext);
924
Joerg Roedel5d0c8e42008-06-26 21:27:47 +0200925 devid = e->devid;
Joerg Roedel5ff47892008-07-14 20:11:18 +0200926 set_dev_entry_from_acpi(iommu, devid, e->flags,
927 e->ext);
Joerg Roedel5d0c8e42008-06-26 21:27:47 +0200928 break;
929 case IVHD_DEV_EXT_SELECT_RANGE:
Joerg Roedel42a698f2009-05-20 15:41:28 +0200930
931 DUMP_printk(" DEV_EXT_SELECT_RANGE\t devid: "
932 "%02x:%02x.%x flags: %02x ext: %08x\n",
Shuah Khanc5081cd2013-02-27 17:07:19 -0700933 PCI_BUS_NUM(e->devid),
Joerg Roedel42a698f2009-05-20 15:41:28 +0200934 PCI_SLOT(e->devid),
935 PCI_FUNC(e->devid),
936 e->flags, e->ext);
937
Joerg Roedel5d0c8e42008-06-26 21:27:47 +0200938 devid_start = e->devid;
939 flags = e->flags;
940 ext_flags = e->ext;
Joerg Roedel58a3bee2008-07-11 17:14:30 +0200941 alias = false;
Joerg Roedel5d0c8e42008-06-26 21:27:47 +0200942 break;
943 case IVHD_DEV_RANGE_END:
Joerg Roedel42a698f2009-05-20 15:41:28 +0200944
945 DUMP_printk(" DEV_RANGE_END\t\t devid: %02x:%02x.%x\n",
Shuah Khanc5081cd2013-02-27 17:07:19 -0700946 PCI_BUS_NUM(e->devid),
Joerg Roedel42a698f2009-05-20 15:41:28 +0200947 PCI_SLOT(e->devid),
948 PCI_FUNC(e->devid));
949
Joerg Roedel5d0c8e42008-06-26 21:27:47 +0200950 devid = e->devid;
951 for (dev_i = devid_start; dev_i <= devid; ++dev_i) {
Joerg Roedel7a6a3a02009-07-02 12:23:23 +0200952 if (alias) {
Joerg Roedel5d0c8e42008-06-26 21:27:47 +0200953 amd_iommu_alias_table[dev_i] = devid_to;
Joerg Roedel7a6a3a02009-07-02 12:23:23 +0200954 set_dev_entry_from_acpi(iommu,
955 devid_to, flags, ext_flags);
956 }
957 set_dev_entry_from_acpi(iommu, dev_i,
958 flags, ext_flags);
Joerg Roedel5d0c8e42008-06-26 21:27:47 +0200959 }
960 break;
Joerg Roedel6efed632012-06-14 15:52:58 +0200961 case IVHD_DEV_SPECIAL: {
962 u8 handle, type;
963 const char *var;
964 u16 devid;
965 int ret;
966
967 handle = e->ext & 0xff;
968 devid = (e->ext >> 8) & 0xffff;
969 type = (e->ext >> 24) & 0xff;
970
971 if (type == IVHD_SPECIAL_IOAPIC)
972 var = "IOAPIC";
973 else if (type == IVHD_SPECIAL_HPET)
974 var = "HPET";
975 else
976 var = "UNKNOWN";
977
978 DUMP_printk(" DEV_SPECIAL(%s[%d])\t\tdevid: %02x:%02x.%x\n",
979 var, (int)handle,
Shuah Khanc5081cd2013-02-27 17:07:19 -0700980 PCI_BUS_NUM(devid),
Joerg Roedel6efed632012-06-14 15:52:58 +0200981 PCI_SLOT(devid),
982 PCI_FUNC(devid));
983
Joerg Roedelc50e3242014-09-09 15:59:37 +0200984 ret = add_special_device(type, handle, &devid, false);
Joerg Roedel6efed632012-06-14 15:52:58 +0200985 if (ret)
986 return ret;
Joerg Roedelc50e3242014-09-09 15:59:37 +0200987
988 /*
989 * add_special_device might update the devid in case a
990 * command-line override is present. So call
991 * set_dev_entry_from_acpi after add_special_device.
992 */
993 set_dev_entry_from_acpi(iommu, devid, e->flags, 0);
994
Joerg Roedel6efed632012-06-14 15:52:58 +0200995 break;
996 }
Joerg Roedel5d0c8e42008-06-26 21:27:47 +0200997 default:
998 break;
999 }
1000
Joerg Roedelb514e552008-09-17 17:14:27 +02001001 p += ivhd_entry_length(p);
Joerg Roedel5d0c8e42008-06-26 21:27:47 +02001002 }
Joerg Roedel6efed632012-06-14 15:52:58 +02001003
1004 return 0;
Joerg Roedel5d0c8e42008-06-26 21:27:47 +02001005}
1006
Joerg Roedelb65233a2008-07-11 17:14:21 +02001007/* Initializes the device->iommu mapping for the driver */
Joerg Roedel5d0c8e42008-06-26 21:27:47 +02001008static int __init init_iommu_devices(struct amd_iommu *iommu)
1009{
Joerg Roedel0de66d52011-06-06 16:04:02 +02001010 u32 i;
Joerg Roedel5d0c8e42008-06-26 21:27:47 +02001011
1012 for (i = iommu->first_device; i <= iommu->last_device; ++i)
1013 set_iommu_for_device(iommu, i);
1014
1015 return 0;
1016}
1017
Joerg Roedele47d4022008-06-26 21:27:48 +02001018static void __init free_iommu_one(struct amd_iommu *iommu)
1019{
1020 free_command_buffer(iommu);
Joerg Roedel335503e2008-09-05 14:29:07 +02001021 free_event_buffer(iommu);
Joerg Roedel1a29ac02011-11-10 15:41:40 +01001022 free_ppr_log(iommu);
Joerg Roedele47d4022008-06-26 21:27:48 +02001023 iommu_unmap_mmio_space(iommu);
1024}
1025
1026static void __init free_iommu_all(void)
1027{
1028 struct amd_iommu *iommu, *next;
1029
Joerg Roedel3bd22172009-05-04 15:06:20 +02001030 for_each_iommu_safe(iommu, next) {
Joerg Roedele47d4022008-06-26 21:27:48 +02001031 list_del(&iommu->list);
1032 free_iommu_one(iommu);
1033 kfree(iommu);
1034 }
1035}
1036
Joerg Roedelb65233a2008-07-11 17:14:21 +02001037/*
Suravee Suthikulpanit318fe782013-01-24 13:17:53 -06001038 * Family15h Model 10h-1fh erratum 746 (IOMMU Logging May Stall Translations)
1039 * Workaround:
1040 * BIOS should disable L2B micellaneous clock gating by setting
1041 * L2_L2B_CK_GATE_CONTROL[CKGateL2BMiscDisable](D0F2xF4_x90[2]) = 1b
1042 */
Nikola Pajkovskye2f1a3b2013-02-26 16:12:05 +01001043static void amd_iommu_erratum_746_workaround(struct amd_iommu *iommu)
Suravee Suthikulpanit318fe782013-01-24 13:17:53 -06001044{
1045 u32 value;
1046
1047 if ((boot_cpu_data.x86 != 0x15) ||
1048 (boot_cpu_data.x86_model < 0x10) ||
1049 (boot_cpu_data.x86_model > 0x1f))
1050 return;
1051
1052 pci_write_config_dword(iommu->dev, 0xf0, 0x90);
1053 pci_read_config_dword(iommu->dev, 0xf4, &value);
1054
1055 if (value & BIT(2))
1056 return;
1057
1058 /* Select NB indirect register 0x90 and enable writing */
1059 pci_write_config_dword(iommu->dev, 0xf0, 0x90 | (1 << 8));
1060
1061 pci_write_config_dword(iommu->dev, 0xf4, value | 0x4);
1062 pr_info("AMD-Vi: Applying erratum 746 workaround for IOMMU at %s\n",
1063 dev_name(&iommu->dev->dev));
1064
1065 /* Clear the enable writing bit */
1066 pci_write_config_dword(iommu->dev, 0xf0, 0x90);
1067}
1068
1069/*
Joerg Roedelb65233a2008-07-11 17:14:21 +02001070 * This function clues the initialization function for one IOMMU
1071 * together and also allocates the command buffer and programs the
1072 * hardware. It does NOT enable the IOMMU. This is done afterwards.
1073 */
Joerg Roedele47d4022008-06-26 21:27:48 +02001074static int __init init_iommu_one(struct amd_iommu *iommu, struct ivhd_header *h)
1075{
Joerg Roedel6efed632012-06-14 15:52:58 +02001076 int ret;
1077
Joerg Roedele47d4022008-06-26 21:27:48 +02001078 spin_lock_init(&iommu->lock);
Joerg Roedelbb527772009-11-20 14:31:51 +01001079
1080 /* Add IOMMU to internal data structures */
Joerg Roedele47d4022008-06-26 21:27:48 +02001081 list_add_tail(&iommu->list, &amd_iommu_list);
Joerg Roedelbb527772009-11-20 14:31:51 +01001082 iommu->index = amd_iommus_present++;
1083
1084 if (unlikely(iommu->index >= MAX_IOMMUS)) {
1085 WARN(1, "AMD-Vi: System has more IOMMUs than supported by this driver\n");
1086 return -ENOSYS;
1087 }
1088
1089 /* Index is fine - add IOMMU to the array */
1090 amd_iommus[iommu->index] = iommu;
Joerg Roedele47d4022008-06-26 21:27:48 +02001091
1092 /*
1093 * Copy data from ACPI table entry to the iommu struct
1094 */
Joerg Roedel23c742d2012-06-12 11:47:34 +02001095 iommu->devid = h->devid;
Joerg Roedele47d4022008-06-26 21:27:48 +02001096 iommu->cap_ptr = h->cap_ptr;
Joerg Roedelee893c22008-09-08 14:48:04 +02001097 iommu->pci_seg = h->pci_seg;
Joerg Roedele47d4022008-06-26 21:27:48 +02001098 iommu->mmio_phys = h->mmio_phys;
Steven L Kinney30861dd2013-06-05 16:11:48 -05001099
1100 /* Check if IVHD EFR contains proper max banks/counters */
1101 if ((h->efr != 0) &&
1102 ((h->efr & (0xF << 13)) != 0) &&
1103 ((h->efr & (0x3F << 17)) != 0)) {
1104 iommu->mmio_phys_end = MMIO_REG_END_OFFSET;
1105 } else {
1106 iommu->mmio_phys_end = MMIO_CNTR_CONF_OFFSET;
1107 }
1108
1109 iommu->mmio_base = iommu_map_mmio_space(iommu->mmio_phys,
1110 iommu->mmio_phys_end);
Joerg Roedele47d4022008-06-26 21:27:48 +02001111 if (!iommu->mmio_base)
1112 return -ENOMEM;
1113
Joerg Roedele47d4022008-06-26 21:27:48 +02001114 iommu->cmd_buf = alloc_command_buffer(iommu);
1115 if (!iommu->cmd_buf)
1116 return -ENOMEM;
1117
Joerg Roedel335503e2008-09-05 14:29:07 +02001118 iommu->evt_buf = alloc_event_buffer(iommu);
1119 if (!iommu->evt_buf)
1120 return -ENOMEM;
1121
Joerg Roedela80dc3e2008-09-11 16:51:41 +02001122 iommu->int_enabled = false;
1123
Joerg Roedel6efed632012-06-14 15:52:58 +02001124 ret = init_iommu_from_acpi(iommu, h);
1125 if (ret)
1126 return ret;
Joerg Roedelf6fec002012-06-21 16:51:25 +02001127
Jiang Liu7c71d302015-04-13 14:11:33 +08001128 ret = amd_iommu_create_irq_domain(iommu);
1129 if (ret)
1130 return ret;
1131
Joerg Roedelf6fec002012-06-21 16:51:25 +02001132 /*
1133 * Make sure IOMMU is not considered to translate itself. The IVRS
1134 * table tells us so, but this is a lie!
1135 */
1136 amd_iommu_rlookup_table[iommu->devid] = NULL;
1137
Joerg Roedele47d4022008-06-26 21:27:48 +02001138 init_iommu_devices(iommu);
1139
Joerg Roedel23c742d2012-06-12 11:47:34 +02001140 return 0;
Joerg Roedele47d4022008-06-26 21:27:48 +02001141}
1142
Joerg Roedelb65233a2008-07-11 17:14:21 +02001143/*
1144 * Iterates over all IOMMU entries in the ACPI table, allocates the
1145 * IOMMU structure and initializes it with init_iommu_one()
1146 */
Joerg Roedele47d4022008-06-26 21:27:48 +02001147static int __init init_iommu_all(struct acpi_table_header *table)
1148{
1149 u8 *p = (u8 *)table, *end = (u8 *)table;
1150 struct ivhd_header *h;
1151 struct amd_iommu *iommu;
1152 int ret;
1153
Joerg Roedele47d4022008-06-26 21:27:48 +02001154 end += table->length;
1155 p += IVRS_HEADER_LENGTH;
1156
1157 while (p < end) {
1158 h = (struct ivhd_header *)p;
1159 switch (*p) {
1160 case ACPI_IVHD_TYPE:
Joerg Roedel9c720412009-05-20 13:53:57 +02001161
Joerg Roedelae908c22009-09-01 16:52:16 +02001162 DUMP_printk("device: %02x:%02x.%01x cap: %04x "
Joerg Roedel9c720412009-05-20 13:53:57 +02001163 "seg: %d flags: %01x info %04x\n",
Shuah Khanc5081cd2013-02-27 17:07:19 -07001164 PCI_BUS_NUM(h->devid), PCI_SLOT(h->devid),
Joerg Roedel9c720412009-05-20 13:53:57 +02001165 PCI_FUNC(h->devid), h->cap_ptr,
1166 h->pci_seg, h->flags, h->info);
1167 DUMP_printk(" mmio-addr: %016llx\n",
1168 h->mmio_phys);
1169
Joerg Roedele47d4022008-06-26 21:27:48 +02001170 iommu = kzalloc(sizeof(struct amd_iommu), GFP_KERNEL);
Joerg Roedel02f3b3f2012-06-11 17:45:25 +02001171 if (iommu == NULL)
1172 return -ENOMEM;
Joerg Roedel3551a702010-03-01 13:52:19 +01001173
Joerg Roedele47d4022008-06-26 21:27:48 +02001174 ret = init_iommu_one(iommu, h);
Joerg Roedel02f3b3f2012-06-11 17:45:25 +02001175 if (ret)
1176 return ret;
Joerg Roedele47d4022008-06-26 21:27:48 +02001177 break;
1178 default:
1179 break;
1180 }
1181 p += h->length;
1182
1183 }
1184 WARN_ON(p != end);
1185
1186 return 0;
1187}
1188
Steven L Kinney30861dd2013-06-05 16:11:48 -05001189
1190static void init_iommu_perf_ctr(struct amd_iommu *iommu)
1191{
1192 u64 val = 0xabcd, val2 = 0;
1193
1194 if (!iommu_feature(iommu, FEATURE_PC))
1195 return;
1196
1197 amd_iommu_pc_present = true;
1198
1199 /* Check if the performance counters can be written to */
1200 if ((0 != amd_iommu_pc_get_set_reg_val(0, 0, 0, 0, &val, true)) ||
1201 (0 != amd_iommu_pc_get_set_reg_val(0, 0, 0, 0, &val2, false)) ||
1202 (val != val2)) {
1203 pr_err("AMD-Vi: Unable to write to IOMMU perf counter.\n");
1204 amd_iommu_pc_present = false;
1205 return;
1206 }
1207
1208 pr_info("AMD-Vi: IOMMU performance counters supported\n");
1209
1210 val = readl(iommu->mmio_base + MMIO_CNTR_CONF_OFFSET);
1211 iommu->max_banks = (u8) ((val >> 12) & 0x3f);
1212 iommu->max_counters = (u8) ((val >> 7) & 0xf);
1213}
1214
Alex Williamson066f2e92014-06-12 16:12:37 -06001215static ssize_t amd_iommu_show_cap(struct device *dev,
1216 struct device_attribute *attr,
1217 char *buf)
1218{
1219 struct amd_iommu *iommu = dev_get_drvdata(dev);
1220 return sprintf(buf, "%x\n", iommu->cap);
1221}
1222static DEVICE_ATTR(cap, S_IRUGO, amd_iommu_show_cap, NULL);
1223
1224static ssize_t amd_iommu_show_features(struct device *dev,
1225 struct device_attribute *attr,
1226 char *buf)
1227{
1228 struct amd_iommu *iommu = dev_get_drvdata(dev);
1229 return sprintf(buf, "%llx\n", iommu->features);
1230}
1231static DEVICE_ATTR(features, S_IRUGO, amd_iommu_show_features, NULL);
1232
1233static struct attribute *amd_iommu_attrs[] = {
1234 &dev_attr_cap.attr,
1235 &dev_attr_features.attr,
1236 NULL,
1237};
1238
1239static struct attribute_group amd_iommu_group = {
1240 .name = "amd-iommu",
1241 .attrs = amd_iommu_attrs,
1242};
1243
1244static const struct attribute_group *amd_iommu_groups[] = {
1245 &amd_iommu_group,
1246 NULL,
1247};
Steven L Kinney30861dd2013-06-05 16:11:48 -05001248
Joerg Roedel23c742d2012-06-12 11:47:34 +02001249static int iommu_init_pci(struct amd_iommu *iommu)
1250{
1251 int cap_ptr = iommu->cap_ptr;
1252 u32 range, misc, low, high;
1253
Shuah Khanc5081cd2013-02-27 17:07:19 -07001254 iommu->dev = pci_get_bus_and_slot(PCI_BUS_NUM(iommu->devid),
Joerg Roedel23c742d2012-06-12 11:47:34 +02001255 iommu->devid & 0xff);
1256 if (!iommu->dev)
1257 return -ENODEV;
1258
Jiang Liucbbc00b2015-10-09 22:07:31 +08001259 /* Prevent binding other PCI device drivers to IOMMU devices */
1260 iommu->dev->match_driver = false;
1261
Joerg Roedel23c742d2012-06-12 11:47:34 +02001262 pci_read_config_dword(iommu->dev, cap_ptr + MMIO_CAP_HDR_OFFSET,
1263 &iommu->cap);
1264 pci_read_config_dword(iommu->dev, cap_ptr + MMIO_RANGE_OFFSET,
1265 &range);
1266 pci_read_config_dword(iommu->dev, cap_ptr + MMIO_MISC_OFFSET,
1267 &misc);
1268
Shuah Khan6f2729b2013-02-27 17:07:30 -07001269 iommu->first_device = PCI_DEVID(MMIO_GET_BUS(range),
Joerg Roedel23c742d2012-06-12 11:47:34 +02001270 MMIO_GET_FD(range));
Shuah Khan6f2729b2013-02-27 17:07:30 -07001271 iommu->last_device = PCI_DEVID(MMIO_GET_BUS(range),
Joerg Roedel23c742d2012-06-12 11:47:34 +02001272 MMIO_GET_LD(range));
1273
1274 if (!(iommu->cap & (1 << IOMMU_CAP_IOTLB)))
1275 amd_iommu_iotlb_sup = false;
1276
1277 /* read extended feature bits */
1278 low = readl(iommu->mmio_base + MMIO_EXT_FEATURES);
1279 high = readl(iommu->mmio_base + MMIO_EXT_FEATURES + 4);
1280
1281 iommu->features = ((u64)high << 32) | low;
1282
1283 if (iommu_feature(iommu, FEATURE_GT)) {
1284 int glxval;
Suravee Suthikulpanita919a012014-03-05 18:54:18 -06001285 u32 max_pasid;
1286 u64 pasmax;
Joerg Roedel23c742d2012-06-12 11:47:34 +02001287
Suravee Suthikulpanita919a012014-03-05 18:54:18 -06001288 pasmax = iommu->features & FEATURE_PASID_MASK;
1289 pasmax >>= FEATURE_PASID_SHIFT;
1290 max_pasid = (1 << (pasmax + 1)) - 1;
Joerg Roedel23c742d2012-06-12 11:47:34 +02001291
Suravee Suthikulpanita919a012014-03-05 18:54:18 -06001292 amd_iommu_max_pasid = min(amd_iommu_max_pasid, max_pasid);
1293
1294 BUG_ON(amd_iommu_max_pasid & ~PASID_MASK);
Joerg Roedel23c742d2012-06-12 11:47:34 +02001295
1296 glxval = iommu->features & FEATURE_GLXVAL_MASK;
1297 glxval >>= FEATURE_GLXVAL_SHIFT;
1298
1299 if (amd_iommu_max_glx_val == -1)
1300 amd_iommu_max_glx_val = glxval;
1301 else
1302 amd_iommu_max_glx_val = min(amd_iommu_max_glx_val, glxval);
1303 }
1304
1305 if (iommu_feature(iommu, FEATURE_GT) &&
1306 iommu_feature(iommu, FEATURE_PPR)) {
1307 iommu->is_iommu_v2 = true;
1308 amd_iommu_v2_present = true;
1309 }
1310
1311 if (iommu_feature(iommu, FEATURE_PPR)) {
1312 iommu->ppr_log = alloc_ppr_log(iommu);
1313 if (!iommu->ppr_log)
1314 return -ENOMEM;
1315 }
1316
1317 if (iommu->cap & (1UL << IOMMU_CAP_NPCACHE))
1318 amd_iommu_np_cache = true;
1319
Steven L Kinney30861dd2013-06-05 16:11:48 -05001320 init_iommu_perf_ctr(iommu);
1321
Joerg Roedel23c742d2012-06-12 11:47:34 +02001322 if (is_rd890_iommu(iommu->dev)) {
1323 int i, j;
1324
1325 iommu->root_pdev = pci_get_bus_and_slot(iommu->dev->bus->number,
1326 PCI_DEVFN(0, 0));
1327
1328 /*
1329 * Some rd890 systems may not be fully reconfigured by the
1330 * BIOS, so it's necessary for us to store this information so
1331 * it can be reprogrammed on resume
1332 */
1333 pci_read_config_dword(iommu->dev, iommu->cap_ptr + 4,
1334 &iommu->stored_addr_lo);
1335 pci_read_config_dword(iommu->dev, iommu->cap_ptr + 8,
1336 &iommu->stored_addr_hi);
1337
1338 /* Low bit locks writes to configuration space */
1339 iommu->stored_addr_lo &= ~1;
1340
1341 for (i = 0; i < 6; i++)
1342 for (j = 0; j < 0x12; j++)
1343 iommu->stored_l1[i][j] = iommu_read_l1(iommu, i, j);
1344
1345 for (i = 0; i < 0x83; i++)
1346 iommu->stored_l2[i] = iommu_read_l2(iommu, i);
1347 }
1348
Suravee Suthikulpanit318fe782013-01-24 13:17:53 -06001349 amd_iommu_erratum_746_workaround(iommu);
1350
Alex Williamson066f2e92014-06-12 16:12:37 -06001351 iommu->iommu_dev = iommu_device_create(&iommu->dev->dev, iommu,
1352 amd_iommu_groups, "ivhd%d",
1353 iommu->index);
1354
Joerg Roedel23c742d2012-06-12 11:47:34 +02001355 return pci_enable_device(iommu->dev);
1356}
1357
Joerg Roedel4d121c32012-06-14 12:21:55 +02001358static void print_iommu_info(void)
1359{
1360 static const char * const feat_str[] = {
1361 "PreF", "PPR", "X2APIC", "NX", "GT", "[5]",
1362 "IA", "GA", "HE", "PC"
1363 };
1364 struct amd_iommu *iommu;
1365
1366 for_each_iommu(iommu) {
1367 int i;
1368
1369 pr_info("AMD-Vi: Found IOMMU at %s cap 0x%hx\n",
1370 dev_name(&iommu->dev->dev), iommu->cap_ptr);
1371
1372 if (iommu->cap & (1 << IOMMU_CAP_EFR)) {
1373 pr_info("AMD-Vi: Extended features: ");
Joerg Roedel2bd5ed02012-08-10 11:34:08 +02001374 for (i = 0; i < ARRAY_SIZE(feat_str); ++i) {
Joerg Roedel4d121c32012-06-14 12:21:55 +02001375 if (iommu_feature(iommu, (1ULL << i)))
1376 pr_cont(" %s", feat_str[i]);
1377 }
Steven L Kinney30861dd2013-06-05 16:11:48 -05001378 pr_cont("\n");
Borislav Petkov500c25e2012-09-28 16:22:26 +02001379 }
Joerg Roedel4d121c32012-06-14 12:21:55 +02001380 }
Joerg Roedelebe60bb2012-07-02 18:36:03 +02001381 if (irq_remapping_enabled)
1382 pr_info("AMD-Vi: Interrupt remapping enabled\n");
Joerg Roedel4d121c32012-06-14 12:21:55 +02001383}
1384
Joerg Roedel2c0ae172012-06-12 15:59:30 +02001385static int __init amd_iommu_init_pci(void)
Joerg Roedel23c742d2012-06-12 11:47:34 +02001386{
1387 struct amd_iommu *iommu;
1388 int ret = 0;
1389
1390 for_each_iommu(iommu) {
1391 ret = iommu_init_pci(iommu);
1392 if (ret)
1393 break;
1394 }
1395
Joerg Roedelaafd8ba2015-05-28 18:41:39 +02001396 init_device_table_dma();
Joerg Roedel23c742d2012-06-12 11:47:34 +02001397
Joerg Roedelaafd8ba2015-05-28 18:41:39 +02001398 for_each_iommu(iommu)
1399 iommu_flush_all_caches(iommu);
1400
Joerg Roedel3a18404c2015-05-28 18:41:45 +02001401 ret = amd_iommu_init_api();
Joerg Roedel23c742d2012-06-12 11:47:34 +02001402
Joerg Roedel3a18404c2015-05-28 18:41:45 +02001403 if (!ret)
1404 print_iommu_info();
Joerg Roedel4d121c32012-06-14 12:21:55 +02001405
Joerg Roedel23c742d2012-06-12 11:47:34 +02001406 return ret;
1407}
1408
Joerg Roedelb65233a2008-07-11 17:14:21 +02001409/****************************************************************************
1410 *
Joerg Roedela80dc3e2008-09-11 16:51:41 +02001411 * The following functions initialize the MSI interrupts for all IOMMUs
Frank Arnolddf805ab2012-08-27 19:21:04 +02001412 * in the system. It's a bit challenging because there could be multiple
Joerg Roedela80dc3e2008-09-11 16:51:41 +02001413 * IOMMUs per PCI BDF but we can call pci_enable_msi(x) only once per
1414 * pci_dev.
1415 *
1416 ****************************************************************************/
1417
Joerg Roedel9f800de2009-11-23 12:45:25 +01001418static int iommu_setup_msi(struct amd_iommu *iommu)
Joerg Roedela80dc3e2008-09-11 16:51:41 +02001419{
1420 int r;
Joerg Roedela80dc3e2008-09-11 16:51:41 +02001421
Joerg Roedel9ddd5922012-03-15 16:29:47 +01001422 r = pci_enable_msi(iommu->dev);
1423 if (r)
1424 return r;
Joerg Roedela80dc3e2008-09-11 16:51:41 +02001425
Joerg Roedel72fe00f2011-05-10 10:50:42 +02001426 r = request_threaded_irq(iommu->dev->irq,
1427 amd_iommu_int_handler,
1428 amd_iommu_int_thread,
1429 0, "AMD-Vi",
Suravee Suthikulpanit3f398bc2013-04-22 16:32:34 -05001430 iommu);
Joerg Roedela80dc3e2008-09-11 16:51:41 +02001431
1432 if (r) {
1433 pci_disable_msi(iommu->dev);
Joerg Roedel9ddd5922012-03-15 16:29:47 +01001434 return r;
Joerg Roedela80dc3e2008-09-11 16:51:41 +02001435 }
1436
Joerg Roedelfab6afa2009-05-04 18:46:34 +02001437 iommu->int_enabled = true;
Joerg Roedel1a29ac02011-11-10 15:41:40 +01001438
Joerg Roedela80dc3e2008-09-11 16:51:41 +02001439 return 0;
1440}
1441
Joerg Roedel05f92db2009-05-12 09:52:46 +02001442static int iommu_init_msi(struct amd_iommu *iommu)
Joerg Roedela80dc3e2008-09-11 16:51:41 +02001443{
Joerg Roedel9ddd5922012-03-15 16:29:47 +01001444 int ret;
1445
Joerg Roedela80dc3e2008-09-11 16:51:41 +02001446 if (iommu->int_enabled)
Joerg Roedel9ddd5922012-03-15 16:29:47 +01001447 goto enable_faults;
Joerg Roedela80dc3e2008-09-11 16:51:41 +02001448
Yijing Wang82fcfc62013-08-08 21:12:36 +08001449 if (iommu->dev->msi_cap)
Joerg Roedel9ddd5922012-03-15 16:29:47 +01001450 ret = iommu_setup_msi(iommu);
1451 else
1452 ret = -ENODEV;
Joerg Roedela80dc3e2008-09-11 16:51:41 +02001453
Joerg Roedel9ddd5922012-03-15 16:29:47 +01001454 if (ret)
1455 return ret;
1456
1457enable_faults:
1458 iommu_feature_enable(iommu, CONTROL_EVT_INT_EN);
1459
1460 if (iommu->ppr_log != NULL)
1461 iommu_feature_enable(iommu, CONTROL_PPFINT_EN);
1462
1463 return 0;
Joerg Roedela80dc3e2008-09-11 16:51:41 +02001464}
1465
1466/****************************************************************************
1467 *
Joerg Roedelb65233a2008-07-11 17:14:21 +02001468 * The next functions belong to the third pass of parsing the ACPI
1469 * table. In this last pass the memory mapping requirements are
Frank Arnolddf805ab2012-08-27 19:21:04 +02001470 * gathered (like exclusion and unity mapping ranges).
Joerg Roedelb65233a2008-07-11 17:14:21 +02001471 *
1472 ****************************************************************************/
1473
Joerg Roedelbe2a0222008-06-26 21:27:49 +02001474static void __init free_unity_maps(void)
1475{
1476 struct unity_map_entry *entry, *next;
1477
1478 list_for_each_entry_safe(entry, next, &amd_iommu_unity_map, list) {
1479 list_del(&entry->list);
1480 kfree(entry);
1481 }
1482}
1483
Joerg Roedelb65233a2008-07-11 17:14:21 +02001484/* called when we find an exclusion range definition in ACPI */
Joerg Roedelbe2a0222008-06-26 21:27:49 +02001485static int __init init_exclusion_range(struct ivmd_header *m)
1486{
1487 int i;
1488
1489 switch (m->type) {
1490 case ACPI_IVMD_TYPE:
1491 set_device_exclusion_range(m->devid, m);
1492 break;
1493 case ACPI_IVMD_TYPE_ALL:
Joerg Roedel3a61ec32008-07-25 13:07:50 +02001494 for (i = 0; i <= amd_iommu_last_bdf; ++i)
Joerg Roedelbe2a0222008-06-26 21:27:49 +02001495 set_device_exclusion_range(i, m);
1496 break;
1497 case ACPI_IVMD_TYPE_RANGE:
1498 for (i = m->devid; i <= m->aux; ++i)
1499 set_device_exclusion_range(i, m);
1500 break;
1501 default:
1502 break;
1503 }
1504
1505 return 0;
1506}
1507
Joerg Roedelb65233a2008-07-11 17:14:21 +02001508/* called for unity map ACPI definition */
Joerg Roedelbe2a0222008-06-26 21:27:49 +02001509static int __init init_unity_map_range(struct ivmd_header *m)
1510{
Joerg Roedel98f1ad22012-07-06 13:28:37 +02001511 struct unity_map_entry *e = NULL;
Joerg Roedel02acc432009-05-20 16:24:21 +02001512 char *s;
Joerg Roedelbe2a0222008-06-26 21:27:49 +02001513
1514 e = kzalloc(sizeof(*e), GFP_KERNEL);
1515 if (e == NULL)
1516 return -ENOMEM;
1517
1518 switch (m->type) {
1519 default:
Joerg Roedel0bc252f2009-05-22 12:48:05 +02001520 kfree(e);
1521 return 0;
Joerg Roedelbe2a0222008-06-26 21:27:49 +02001522 case ACPI_IVMD_TYPE:
Joerg Roedel02acc432009-05-20 16:24:21 +02001523 s = "IVMD_TYPEi\t\t\t";
Joerg Roedelbe2a0222008-06-26 21:27:49 +02001524 e->devid_start = e->devid_end = m->devid;
1525 break;
1526 case ACPI_IVMD_TYPE_ALL:
Joerg Roedel02acc432009-05-20 16:24:21 +02001527 s = "IVMD_TYPE_ALL\t\t";
Joerg Roedelbe2a0222008-06-26 21:27:49 +02001528 e->devid_start = 0;
1529 e->devid_end = amd_iommu_last_bdf;
1530 break;
1531 case ACPI_IVMD_TYPE_RANGE:
Joerg Roedel02acc432009-05-20 16:24:21 +02001532 s = "IVMD_TYPE_RANGE\t\t";
Joerg Roedelbe2a0222008-06-26 21:27:49 +02001533 e->devid_start = m->devid;
1534 e->devid_end = m->aux;
1535 break;
1536 }
1537 e->address_start = PAGE_ALIGN(m->range_start);
1538 e->address_end = e->address_start + PAGE_ALIGN(m->range_length);
1539 e->prot = m->flags >> 1;
1540
Joerg Roedel02acc432009-05-20 16:24:21 +02001541 DUMP_printk("%s devid_start: %02x:%02x.%x devid_end: %02x:%02x.%x"
1542 " range_start: %016llx range_end: %016llx flags: %x\n", s,
Shuah Khanc5081cd2013-02-27 17:07:19 -07001543 PCI_BUS_NUM(e->devid_start), PCI_SLOT(e->devid_start),
1544 PCI_FUNC(e->devid_start), PCI_BUS_NUM(e->devid_end),
Joerg Roedel02acc432009-05-20 16:24:21 +02001545 PCI_SLOT(e->devid_end), PCI_FUNC(e->devid_end),
1546 e->address_start, e->address_end, m->flags);
1547
Joerg Roedelbe2a0222008-06-26 21:27:49 +02001548 list_add_tail(&e->list, &amd_iommu_unity_map);
1549
1550 return 0;
1551}
1552
Joerg Roedelb65233a2008-07-11 17:14:21 +02001553/* iterates over all memory definitions we find in the ACPI table */
Joerg Roedelbe2a0222008-06-26 21:27:49 +02001554static int __init init_memory_definitions(struct acpi_table_header *table)
1555{
1556 u8 *p = (u8 *)table, *end = (u8 *)table;
1557 struct ivmd_header *m;
1558
Joerg Roedelbe2a0222008-06-26 21:27:49 +02001559 end += table->length;
1560 p += IVRS_HEADER_LENGTH;
1561
1562 while (p < end) {
1563 m = (struct ivmd_header *)p;
1564 if (m->flags & IVMD_FLAG_EXCL_RANGE)
1565 init_exclusion_range(m);
1566 else if (m->flags & IVMD_FLAG_UNITY_MAP)
1567 init_unity_map_range(m);
1568
1569 p += m->length;
1570 }
1571
1572 return 0;
1573}
1574
Joerg Roedelb65233a2008-07-11 17:14:21 +02001575/*
Joerg Roedel9f5f5fb2008-08-14 19:55:16 +02001576 * Init the device table to not allow DMA access for devices and
1577 * suppress all page faults
1578 */
Joerg Roedel33f28c52012-06-15 18:03:31 +02001579static void init_device_table_dma(void)
Joerg Roedel9f5f5fb2008-08-14 19:55:16 +02001580{
Joerg Roedel0de66d52011-06-06 16:04:02 +02001581 u32 devid;
Joerg Roedel9f5f5fb2008-08-14 19:55:16 +02001582
1583 for (devid = 0; devid <= amd_iommu_last_bdf; ++devid) {
1584 set_dev_entry_bit(devid, DEV_ENTRY_VALID);
1585 set_dev_entry_bit(devid, DEV_ENTRY_TRANSLATION);
Joerg Roedel9f5f5fb2008-08-14 19:55:16 +02001586 }
1587}
1588
Joerg Roedeld04e0ba2012-07-02 16:02:20 +02001589static void __init uninit_device_table_dma(void)
1590{
1591 u32 devid;
1592
1593 for (devid = 0; devid <= amd_iommu_last_bdf; ++devid) {
1594 amd_iommu_dev_table[devid].data[0] = 0ULL;
1595 amd_iommu_dev_table[devid].data[1] = 0ULL;
1596 }
1597}
1598
Joerg Roedel33f28c52012-06-15 18:03:31 +02001599static void init_device_table(void)
1600{
1601 u32 devid;
1602
1603 if (!amd_iommu_irq_remap)
1604 return;
1605
1606 for (devid = 0; devid <= amd_iommu_last_bdf; ++devid)
1607 set_dev_entry_bit(devid, DEV_ENTRY_IRQ_TBL_EN);
1608}
1609
Joerg Roedele9bf5192010-09-20 14:33:07 +02001610static void iommu_init_flags(struct amd_iommu *iommu)
1611{
1612 iommu->acpi_flags & IVHD_FLAG_HT_TUN_EN_MASK ?
1613 iommu_feature_enable(iommu, CONTROL_HT_TUN_EN) :
1614 iommu_feature_disable(iommu, CONTROL_HT_TUN_EN);
1615
1616 iommu->acpi_flags & IVHD_FLAG_PASSPW_EN_MASK ?
1617 iommu_feature_enable(iommu, CONTROL_PASSPW_EN) :
1618 iommu_feature_disable(iommu, CONTROL_PASSPW_EN);
1619
1620 iommu->acpi_flags & IVHD_FLAG_RESPASSPW_EN_MASK ?
1621 iommu_feature_enable(iommu, CONTROL_RESPASSPW_EN) :
1622 iommu_feature_disable(iommu, CONTROL_RESPASSPW_EN);
1623
1624 iommu->acpi_flags & IVHD_FLAG_ISOC_EN_MASK ?
1625 iommu_feature_enable(iommu, CONTROL_ISOC_EN) :
1626 iommu_feature_disable(iommu, CONTROL_ISOC_EN);
1627
1628 /*
1629 * make IOMMU memory accesses cache coherent
1630 */
1631 iommu_feature_enable(iommu, CONTROL_COHERENT_EN);
Joerg Roedel1456e9d2011-12-22 14:51:53 +01001632
1633 /* Set IOTLB invalidation timeout to 1s */
1634 iommu_set_inv_tlb_timeout(iommu, CTRL_INV_TO_1S);
Joerg Roedele9bf5192010-09-20 14:33:07 +02001635}
1636
Matthew Garrett5bcd7572010-10-04 14:59:31 -04001637static void iommu_apply_resume_quirks(struct amd_iommu *iommu)
Joerg Roedel4c894f42010-09-23 15:15:19 +02001638{
Matthew Garrett5bcd7572010-10-04 14:59:31 -04001639 int i, j;
1640 u32 ioc_feature_control;
Joerg Roedelc1bf94e2012-05-31 17:38:11 +02001641 struct pci_dev *pdev = iommu->root_pdev;
Matthew Garrett5bcd7572010-10-04 14:59:31 -04001642
1643 /* RD890 BIOSes may not have completely reconfigured the iommu */
Joerg Roedelc1bf94e2012-05-31 17:38:11 +02001644 if (!is_rd890_iommu(iommu->dev) || !pdev)
Matthew Garrett5bcd7572010-10-04 14:59:31 -04001645 return;
1646
1647 /*
1648 * First, we need to ensure that the iommu is enabled. This is
1649 * controlled by a register in the northbridge
1650 */
Matthew Garrett5bcd7572010-10-04 14:59:31 -04001651
1652 /* Select Northbridge indirect register 0x75 and enable writing */
1653 pci_write_config_dword(pdev, 0x60, 0x75 | (1 << 7));
1654 pci_read_config_dword(pdev, 0x64, &ioc_feature_control);
1655
1656 /* Enable the iommu */
1657 if (!(ioc_feature_control & 0x1))
1658 pci_write_config_dword(pdev, 0x64, ioc_feature_control | 1);
1659
Matthew Garrett5bcd7572010-10-04 14:59:31 -04001660 /* Restore the iommu BAR */
1661 pci_write_config_dword(iommu->dev, iommu->cap_ptr + 4,
1662 iommu->stored_addr_lo);
1663 pci_write_config_dword(iommu->dev, iommu->cap_ptr + 8,
1664 iommu->stored_addr_hi);
1665
1666 /* Restore the l1 indirect regs for each of the 6 l1s */
1667 for (i = 0; i < 6; i++)
1668 for (j = 0; j < 0x12; j++)
1669 iommu_write_l1(iommu, i, j, iommu->stored_l1[i][j]);
1670
1671 /* Restore the l2 indirect regs */
1672 for (i = 0; i < 0x83; i++)
1673 iommu_write_l2(iommu, i, iommu->stored_l2[i]);
1674
1675 /* Lock PCI setup registers */
1676 pci_write_config_dword(iommu->dev, iommu->cap_ptr + 4,
1677 iommu->stored_addr_lo | 1);
Joerg Roedel4c894f42010-09-23 15:15:19 +02001678}
1679
Joerg Roedel9f5f5fb2008-08-14 19:55:16 +02001680/*
Joerg Roedelb65233a2008-07-11 17:14:21 +02001681 * This function finally enables all IOMMUs found in the system after
1682 * they have been initialized
1683 */
Joerg Roedel11ee5ac2012-06-12 16:30:06 +02001684static void early_enable_iommus(void)
Joerg Roedel87361972008-06-26 21:28:07 +02001685{
1686 struct amd_iommu *iommu;
1687
Joerg Roedel3bd22172009-05-04 15:06:20 +02001688 for_each_iommu(iommu) {
Chris Wrighta8c485b2009-06-15 15:53:45 +02001689 iommu_disable(iommu);
Joerg Roedele9bf5192010-09-20 14:33:07 +02001690 iommu_init_flags(iommu);
Joerg Roedel58492e12009-05-04 18:41:16 +02001691 iommu_set_device_table(iommu);
1692 iommu_enable_command_buffer(iommu);
1693 iommu_enable_event_buffer(iommu);
Joerg Roedel87361972008-06-26 21:28:07 +02001694 iommu_set_exclusion_range(iommu);
1695 iommu_enable(iommu);
Joerg Roedel7d0c5cc2011-04-07 08:16:10 +02001696 iommu_flush_all_caches(iommu);
Joerg Roedel87361972008-06-26 21:28:07 +02001697 }
1698}
1699
Joerg Roedel11ee5ac2012-06-12 16:30:06 +02001700static void enable_iommus_v2(void)
1701{
1702 struct amd_iommu *iommu;
1703
1704 for_each_iommu(iommu) {
1705 iommu_enable_ppr_log(iommu);
1706 iommu_enable_gt(iommu);
1707 }
1708}
1709
1710static void enable_iommus(void)
1711{
1712 early_enable_iommus();
1713
1714 enable_iommus_v2();
1715}
1716
Joerg Roedel92ac4322009-05-19 19:06:27 +02001717static void disable_iommus(void)
1718{
1719 struct amd_iommu *iommu;
1720
1721 for_each_iommu(iommu)
1722 iommu_disable(iommu);
1723}
1724
Joerg Roedel7441e9c2008-06-30 20:18:02 +02001725/*
1726 * Suspend/Resume support
1727 * disable suspend until real resume implemented
1728 */
1729
Rafael J. Wysockif3c6ea12011-03-23 22:15:54 +01001730static void amd_iommu_resume(void)
Joerg Roedel7441e9c2008-06-30 20:18:02 +02001731{
Matthew Garrett5bcd7572010-10-04 14:59:31 -04001732 struct amd_iommu *iommu;
1733
1734 for_each_iommu(iommu)
1735 iommu_apply_resume_quirks(iommu);
1736
Joerg Roedel736501e2009-05-12 09:56:12 +02001737 /* re-load the hardware */
1738 enable_iommus();
Joerg Roedel3d9761e2012-03-15 16:39:21 +01001739
1740 amd_iommu_enable_interrupts();
Joerg Roedel7441e9c2008-06-30 20:18:02 +02001741}
1742
Rafael J. Wysockif3c6ea12011-03-23 22:15:54 +01001743static int amd_iommu_suspend(void)
Joerg Roedel7441e9c2008-06-30 20:18:02 +02001744{
Joerg Roedel736501e2009-05-12 09:56:12 +02001745 /* disable IOMMUs to go out of the way for BIOS */
1746 disable_iommus();
1747
1748 return 0;
Joerg Roedel7441e9c2008-06-30 20:18:02 +02001749}
1750
Rafael J. Wysockif3c6ea12011-03-23 22:15:54 +01001751static struct syscore_ops amd_iommu_syscore_ops = {
Joerg Roedel7441e9c2008-06-30 20:18:02 +02001752 .suspend = amd_iommu_suspend,
1753 .resume = amd_iommu_resume,
1754};
1755
Joerg Roedel8704a1b2012-03-01 15:57:53 +01001756static void __init free_on_init_error(void)
1757{
Joerg Roedel0ea2c422012-06-15 18:05:20 +02001758 free_pages((unsigned long)irq_lookup_table,
1759 get_order(rlookup_table_size));
Joerg Roedel8704a1b2012-03-01 15:57:53 +01001760
Joerg Roedel05152a02012-06-15 16:53:51 +02001761 if (amd_iommu_irq_cache) {
1762 kmem_cache_destroy(amd_iommu_irq_cache);
1763 amd_iommu_irq_cache = NULL;
Joerg Roedel0ea2c422012-06-15 18:05:20 +02001764
Joerg Roedel05152a02012-06-15 16:53:51 +02001765 }
Joerg Roedel8704a1b2012-03-01 15:57:53 +01001766
1767 free_pages((unsigned long)amd_iommu_rlookup_table,
1768 get_order(rlookup_table_size));
1769
1770 free_pages((unsigned long)amd_iommu_alias_table,
1771 get_order(alias_table_size));
1772
1773 free_pages((unsigned long)amd_iommu_dev_table,
1774 get_order(dev_table_size));
1775
1776 free_iommu_all();
1777
Joerg Roedel8704a1b2012-03-01 15:57:53 +01001778#ifdef CONFIG_GART_IOMMU
1779 /*
1780 * We failed to initialize the AMD IOMMU - try fallback to GART
1781 * if possible.
1782 */
1783 gart_iommu_init();
1784
1785#endif
1786}
1787
Joerg Roedelc2ff5cf52012-10-16 14:52:51 +02001788/* SB IOAPIC is always on this device in AMD systems */
1789#define IOAPIC_SB_DEVID ((0x00 << 8) | PCI_DEVFN(0x14, 0))
1790
Joerg Roedeleb1eb7a2012-07-05 11:58:02 +02001791static bool __init check_ioapic_information(void)
1792{
Joerg Roedeldfbb6d42013-04-09 19:06:18 +02001793 const char *fw_bug = FW_BUG;
Joerg Roedelc2ff5cf52012-10-16 14:52:51 +02001794 bool ret, has_sb_ioapic;
Joerg Roedeleb1eb7a2012-07-05 11:58:02 +02001795 int idx;
1796
Joerg Roedelc2ff5cf52012-10-16 14:52:51 +02001797 has_sb_ioapic = false;
1798 ret = false;
Joerg Roedeleb1eb7a2012-07-05 11:58:02 +02001799
Joerg Roedeldfbb6d42013-04-09 19:06:18 +02001800 /*
1801 * If we have map overrides on the kernel command line the
1802 * messages in this function might not describe firmware bugs
1803 * anymore - so be careful
1804 */
1805 if (cmdline_maps)
1806 fw_bug = "";
1807
Joerg Roedelc2ff5cf52012-10-16 14:52:51 +02001808 for (idx = 0; idx < nr_ioapics; idx++) {
1809 int devid, id = mpc_ioapic_id(idx);
1810
1811 devid = get_ioapic_devid(id);
1812 if (devid < 0) {
Joerg Roedeldfbb6d42013-04-09 19:06:18 +02001813 pr_err("%sAMD-Vi: IOAPIC[%d] not in IVRS table\n",
1814 fw_bug, id);
Joerg Roedelc2ff5cf52012-10-16 14:52:51 +02001815 ret = false;
1816 } else if (devid == IOAPIC_SB_DEVID) {
1817 has_sb_ioapic = true;
1818 ret = true;
Joerg Roedeleb1eb7a2012-07-05 11:58:02 +02001819 }
1820 }
1821
Joerg Roedelc2ff5cf52012-10-16 14:52:51 +02001822 if (!has_sb_ioapic) {
1823 /*
1824 * We expect the SB IOAPIC to be listed in the IVRS
1825 * table. The system timer is connected to the SB IOAPIC
1826 * and if we don't have it in the list the system will
1827 * panic at boot time. This situation usually happens
1828 * when the BIOS is buggy and provides us the wrong
1829 * device id for the IOAPIC in the system.
1830 */
Joerg Roedeldfbb6d42013-04-09 19:06:18 +02001831 pr_err("%sAMD-Vi: No southbridge IOAPIC found\n", fw_bug);
Joerg Roedelc2ff5cf52012-10-16 14:52:51 +02001832 }
1833
1834 if (!ret)
Joerg Roedeldfbb6d42013-04-09 19:06:18 +02001835 pr_err("AMD-Vi: Disabling interrupt remapping\n");
Joerg Roedelc2ff5cf52012-10-16 14:52:51 +02001836
1837 return ret;
Joerg Roedeleb1eb7a2012-07-05 11:58:02 +02001838}
1839
Joerg Roedeld04e0ba2012-07-02 16:02:20 +02001840static void __init free_dma_resources(void)
1841{
Joerg Roedeld04e0ba2012-07-02 16:02:20 +02001842 free_pages((unsigned long)amd_iommu_pd_alloc_bitmap,
1843 get_order(MAX_DOMAIN_ID/8));
1844
1845 free_unity_maps();
1846}
1847
Joerg Roedelb65233a2008-07-11 17:14:21 +02001848/*
Joerg Roedel8704a1b2012-03-01 15:57:53 +01001849 * This is the hardware init function for AMD IOMMU in the system.
1850 * This function is called either from amd_iommu_init or from the interrupt
1851 * remapping setup code.
Joerg Roedelb65233a2008-07-11 17:14:21 +02001852 *
1853 * This function basically parses the ACPI table for AMD IOMMU (IVRS)
1854 * three times:
1855 *
1856 * 1 pass) Find the highest PCI device id the driver has to handle.
1857 * Upon this information the size of the data structures is
1858 * determined that needs to be allocated.
1859 *
1860 * 2 pass) Initialize the data structures just allocated with the
1861 * information in the ACPI table about available AMD IOMMUs
1862 * in the system. It also maps the PCI devices in the
1863 * system to specific IOMMUs
1864 *
1865 * 3 pass) After the basic data structures are allocated and
1866 * initialized we update them with information about memory
1867 * remapping requirements parsed out of the ACPI table in
1868 * this last pass.
1869 *
Joerg Roedel8704a1b2012-03-01 15:57:53 +01001870 * After everything is set up the IOMMUs are enabled and the necessary
1871 * hotplug and suspend notifiers are registered.
Joerg Roedelb65233a2008-07-11 17:14:21 +02001872 */
Joerg Roedel643511b2012-06-12 12:09:35 +02001873static int __init early_amd_iommu_init(void)
Joerg Roedelfe74c9c2008-06-26 21:27:50 +02001874{
Joerg Roedel02f3b3f2012-06-11 17:45:25 +02001875 struct acpi_table_header *ivrs_base;
1876 acpi_size ivrs_size;
1877 acpi_status status;
Joerg Roedelfe74c9c2008-06-26 21:27:50 +02001878 int i, ret = 0;
1879
Joerg Roedel643511b2012-06-12 12:09:35 +02001880 if (!amd_iommu_detected)
Joerg Roedel8704a1b2012-03-01 15:57:53 +01001881 return -ENODEV;
1882
Joerg Roedel02f3b3f2012-06-11 17:45:25 +02001883 status = acpi_get_table_with_size("IVRS", 0, &ivrs_base, &ivrs_size);
1884 if (status == AE_NOT_FOUND)
1885 return -ENODEV;
1886 else if (ACPI_FAILURE(status)) {
1887 const char *err = acpi_format_exception(status);
1888 pr_err("AMD-Vi: IVRS table error: %s\n", err);
1889 return -EINVAL;
1890 }
1891
Joerg Roedelfe74c9c2008-06-26 21:27:50 +02001892 /*
1893 * First parse ACPI tables to find the largest Bus/Dev/Func
1894 * we need to handle. Upon this information the shared data
1895 * structures for the IOMMUs in the system will be allocated
1896 */
Joerg Roedel2c0ae172012-06-12 15:59:30 +02001897 ret = find_last_devid_acpi(ivrs_base);
1898 if (ret)
Joerg Roedel3551a702010-03-01 13:52:19 +01001899 goto out;
1900
Joerg Roedelc5714842008-07-11 17:14:25 +02001901 dev_table_size = tbl_size(DEV_TABLE_ENTRY_SIZE);
1902 alias_table_size = tbl_size(ALIAS_TABLE_ENTRY_SIZE);
1903 rlookup_table_size = tbl_size(RLOOKUP_TABLE_ENTRY_SIZE);
Joerg Roedelfe74c9c2008-06-26 21:27:50 +02001904
Joerg Roedelfe74c9c2008-06-26 21:27:50 +02001905 /* Device table - directly used by all IOMMUs */
Joerg Roedel8704a1b2012-03-01 15:57:53 +01001906 ret = -ENOMEM;
Joerg Roedel5dc8bff2008-07-11 17:14:32 +02001907 amd_iommu_dev_table = (void *)__get_free_pages(GFP_KERNEL | __GFP_ZERO,
Joerg Roedelfe74c9c2008-06-26 21:27:50 +02001908 get_order(dev_table_size));
1909 if (amd_iommu_dev_table == NULL)
1910 goto out;
1911
1912 /*
1913 * Alias table - map PCI Bus/Dev/Func to Bus/Dev/Func the
1914 * IOMMU see for that device
1915 */
1916 amd_iommu_alias_table = (void *)__get_free_pages(GFP_KERNEL,
1917 get_order(alias_table_size));
1918 if (amd_iommu_alias_table == NULL)
Joerg Roedel2c0ae172012-06-12 15:59:30 +02001919 goto out;
Joerg Roedelfe74c9c2008-06-26 21:27:50 +02001920
1921 /* IOMMU rlookup table - find the IOMMU for a specific device */
Joerg Roedel83fd5cc2008-12-16 19:17:11 +01001922 amd_iommu_rlookup_table = (void *)__get_free_pages(
1923 GFP_KERNEL | __GFP_ZERO,
Joerg Roedelfe74c9c2008-06-26 21:27:50 +02001924 get_order(rlookup_table_size));
1925 if (amd_iommu_rlookup_table == NULL)
Joerg Roedel2c0ae172012-06-12 15:59:30 +02001926 goto out;
Joerg Roedelfe74c9c2008-06-26 21:27:50 +02001927
Joerg Roedel5dc8bff2008-07-11 17:14:32 +02001928 amd_iommu_pd_alloc_bitmap = (void *)__get_free_pages(
1929 GFP_KERNEL | __GFP_ZERO,
Joerg Roedelfe74c9c2008-06-26 21:27:50 +02001930 get_order(MAX_DOMAIN_ID/8));
1931 if (amd_iommu_pd_alloc_bitmap == NULL)
Joerg Roedel2c0ae172012-06-12 15:59:30 +02001932 goto out;
Joerg Roedelfe74c9c2008-06-26 21:27:50 +02001933
1934 /*
Joerg Roedel5dc8bff2008-07-11 17:14:32 +02001935 * let all alias entries point to itself
Joerg Roedelfe74c9c2008-06-26 21:27:50 +02001936 */
Joerg Roedel3a61ec32008-07-25 13:07:50 +02001937 for (i = 0; i <= amd_iommu_last_bdf; ++i)
Joerg Roedelfe74c9c2008-06-26 21:27:50 +02001938 amd_iommu_alias_table[i] = i;
1939
Joerg Roedelfe74c9c2008-06-26 21:27:50 +02001940 /*
1941 * never allocate domain 0 because its used as the non-allocated and
1942 * error value placeholder
1943 */
1944 amd_iommu_pd_alloc_bitmap[0] = 1;
1945
Joerg Roedelaeb26f52009-11-20 16:44:01 +01001946 spin_lock_init(&amd_iommu_pd_lock);
1947
Joerg Roedelfe74c9c2008-06-26 21:27:50 +02001948 /*
1949 * now the data structures are allocated and basically initialized
1950 * start the real acpi table scan
1951 */
Joerg Roedel02f3b3f2012-06-11 17:45:25 +02001952 ret = init_iommu_all(ivrs_base);
1953 if (ret)
Joerg Roedel2c0ae172012-06-12 15:59:30 +02001954 goto out;
Joerg Roedelfe74c9c2008-06-26 21:27:50 +02001955
Joerg Roedeleb1eb7a2012-07-05 11:58:02 +02001956 if (amd_iommu_irq_remap)
1957 amd_iommu_irq_remap = check_ioapic_information();
1958
Joerg Roedel05152a02012-06-15 16:53:51 +02001959 if (amd_iommu_irq_remap) {
1960 /*
1961 * Interrupt remapping enabled, create kmem_cache for the
1962 * remapping tables.
1963 */
Wei Yongjun83ed9c12013-04-23 10:47:44 +08001964 ret = -ENOMEM;
Joerg Roedel05152a02012-06-15 16:53:51 +02001965 amd_iommu_irq_cache = kmem_cache_create("irq_remap_cache",
1966 MAX_IRQS_PER_TABLE * sizeof(u32),
1967 IRQ_TABLE_ALIGNMENT,
1968 0, NULL);
1969 if (!amd_iommu_irq_cache)
1970 goto out;
Joerg Roedel0ea2c422012-06-15 18:05:20 +02001971
1972 irq_lookup_table = (void *)__get_free_pages(
1973 GFP_KERNEL | __GFP_ZERO,
1974 get_order(rlookup_table_size));
1975 if (!irq_lookup_table)
1976 goto out;
Joerg Roedel05152a02012-06-15 16:53:51 +02001977 }
1978
Joerg Roedel02f3b3f2012-06-11 17:45:25 +02001979 ret = init_memory_definitions(ivrs_base);
1980 if (ret)
Joerg Roedel2c0ae172012-06-12 15:59:30 +02001981 goto out;
Joerg Roedel3551a702010-03-01 13:52:19 +01001982
Joerg Roedeleb1eb7a2012-07-05 11:58:02 +02001983 /* init the device table */
1984 init_device_table();
1985
Joerg Roedel8704a1b2012-03-01 15:57:53 +01001986out:
Joerg Roedel02f3b3f2012-06-11 17:45:25 +02001987 /* Don't leak any ACPI memory */
1988 early_acpi_os_unmap_memory((char __iomem *)ivrs_base, ivrs_size);
1989 ivrs_base = NULL;
1990
Joerg Roedel8704a1b2012-03-01 15:57:53 +01001991 return ret;
Joerg Roedel643511b2012-06-12 12:09:35 +02001992}
1993
Gerard Snitselaarae295142012-03-16 11:38:22 -07001994static int amd_iommu_enable_interrupts(void)
Joerg Roedel3d9761e2012-03-15 16:39:21 +01001995{
1996 struct amd_iommu *iommu;
1997 int ret = 0;
1998
1999 for_each_iommu(iommu) {
2000 ret = iommu_init_msi(iommu);
2001 if (ret)
2002 goto out;
2003 }
2004
2005out:
2006 return ret;
2007}
2008
Joerg Roedel02f3b3f2012-06-11 17:45:25 +02002009static bool detect_ivrs(void)
2010{
2011 struct acpi_table_header *ivrs_base;
2012 acpi_size ivrs_size;
2013 acpi_status status;
2014
2015 status = acpi_get_table_with_size("IVRS", 0, &ivrs_base, &ivrs_size);
2016 if (status == AE_NOT_FOUND)
2017 return false;
2018 else if (ACPI_FAILURE(status)) {
2019 const char *err = acpi_format_exception(status);
2020 pr_err("AMD-Vi: IVRS table error: %s\n", err);
2021 return false;
2022 }
2023
2024 early_acpi_os_unmap_memory((char __iomem *)ivrs_base, ivrs_size);
2025
Joerg Roedel1adb7d32012-08-06 14:18:42 +02002026 /* Make sure ACS will be enabled during PCI probe */
2027 pci_request_acs();
2028
Joerg Roedel02f3b3f2012-06-11 17:45:25 +02002029 return true;
2030}
2031
Joerg Roedel2c0ae172012-06-12 15:59:30 +02002032/****************************************************************************
2033 *
2034 * AMD IOMMU Initialization State Machine
2035 *
2036 ****************************************************************************/
2037
2038static int __init state_next(void)
2039{
2040 int ret = 0;
2041
2042 switch (init_state) {
2043 case IOMMU_START_STATE:
2044 if (!detect_ivrs()) {
2045 init_state = IOMMU_NOT_FOUND;
2046 ret = -ENODEV;
2047 } else {
2048 init_state = IOMMU_IVRS_DETECTED;
2049 }
2050 break;
2051 case IOMMU_IVRS_DETECTED:
2052 ret = early_amd_iommu_init();
2053 init_state = ret ? IOMMU_INIT_ERROR : IOMMU_ACPI_FINISHED;
2054 break;
2055 case IOMMU_ACPI_FINISHED:
2056 early_enable_iommus();
2057 register_syscore_ops(&amd_iommu_syscore_ops);
2058 x86_platform.iommu_shutdown = disable_iommus;
2059 init_state = IOMMU_ENABLED;
2060 break;
2061 case IOMMU_ENABLED:
2062 ret = amd_iommu_init_pci();
2063 init_state = ret ? IOMMU_INIT_ERROR : IOMMU_PCI_INIT;
2064 enable_iommus_v2();
2065 break;
2066 case IOMMU_PCI_INIT:
2067 ret = amd_iommu_enable_interrupts();
2068 init_state = ret ? IOMMU_INIT_ERROR : IOMMU_INTERRUPTS_EN;
2069 break;
2070 case IOMMU_INTERRUPTS_EN:
Joerg Roedel1e6a7b02015-07-28 16:58:48 +02002071 ret = amd_iommu_init_dma_ops();
Joerg Roedel2c0ae172012-06-12 15:59:30 +02002072 init_state = ret ? IOMMU_INIT_ERROR : IOMMU_DMA_OPS;
2073 break;
2074 case IOMMU_DMA_OPS:
2075 init_state = IOMMU_INITIALIZED;
2076 break;
2077 case IOMMU_INITIALIZED:
2078 /* Nothing to do */
2079 break;
2080 case IOMMU_NOT_FOUND:
2081 case IOMMU_INIT_ERROR:
2082 /* Error states => do nothing */
2083 ret = -EINVAL;
2084 break;
2085 default:
2086 /* Unknown state */
2087 BUG();
2088 }
2089
2090 return ret;
2091}
2092
2093static int __init iommu_go_to_state(enum iommu_init_state state)
2094{
2095 int ret = 0;
2096
2097 while (init_state != state) {
2098 ret = state_next();
2099 if (init_state == IOMMU_NOT_FOUND ||
2100 init_state == IOMMU_INIT_ERROR)
2101 break;
2102 }
2103
2104 return ret;
2105}
2106
Joerg Roedel6b474b82012-06-26 16:46:04 +02002107#ifdef CONFIG_IRQ_REMAP
2108int __init amd_iommu_prepare(void)
2109{
Thomas Gleixner3f4cb7c2015-01-23 14:32:46 +01002110 int ret;
2111
Jiang Liu7fa1c842015-01-07 15:31:42 +08002112 amd_iommu_irq_remap = true;
Joerg Roedel84d07792015-01-07 15:31:39 +08002113
Thomas Gleixner3f4cb7c2015-01-23 14:32:46 +01002114 ret = iommu_go_to_state(IOMMU_ACPI_FINISHED);
2115 if (ret)
2116 return ret;
2117 return amd_iommu_irq_remap ? 0 : -ENODEV;
Joerg Roedel6b474b82012-06-26 16:46:04 +02002118}
Joerg Roedel2c0ae172012-06-12 15:59:30 +02002119
Joerg Roedel6b474b82012-06-26 16:46:04 +02002120int __init amd_iommu_enable(void)
2121{
2122 int ret;
2123
2124 ret = iommu_go_to_state(IOMMU_ENABLED);
2125 if (ret)
2126 return ret;
2127
2128 irq_remapping_enabled = 1;
2129
2130 return 0;
2131}
2132
2133void amd_iommu_disable(void)
2134{
2135 amd_iommu_suspend();
2136}
2137
2138int amd_iommu_reenable(int mode)
2139{
2140 amd_iommu_resume();
2141
2142 return 0;
2143}
2144
2145int __init amd_iommu_enable_faulting(void)
2146{
2147 /* We enable MSI later when PCI is initialized */
2148 return 0;
2149}
2150#endif
Joerg Roedel2c0ae172012-06-12 15:59:30 +02002151
Joerg Roedel8704a1b2012-03-01 15:57:53 +01002152/*
2153 * This is the core init function for AMD IOMMU hardware in the system.
2154 * This function is called from the generic x86 DMA layer initialization
2155 * code.
Joerg Roedel8704a1b2012-03-01 15:57:53 +01002156 */
2157static int __init amd_iommu_init(void)
2158{
Joerg Roedel2c0ae172012-06-12 15:59:30 +02002159 int ret;
Joerg Roedel8704a1b2012-03-01 15:57:53 +01002160
Joerg Roedel2c0ae172012-06-12 15:59:30 +02002161 ret = iommu_go_to_state(IOMMU_INITIALIZED);
2162 if (ret) {
Joerg Roedeld04e0ba2012-07-02 16:02:20 +02002163 free_dma_resources();
2164 if (!irq_remapping_enabled) {
2165 disable_iommus();
2166 free_on_init_error();
2167 } else {
2168 struct amd_iommu *iommu;
2169
2170 uninit_device_table_dma();
2171 for_each_iommu(iommu)
2172 iommu_flush_all_caches(iommu);
2173 }
Joerg Roedel2c0ae172012-06-12 15:59:30 +02002174 }
Joerg Roedel8704a1b2012-03-01 15:57:53 +01002175
Joerg Roedelfe74c9c2008-06-26 21:27:50 +02002176 return ret;
Joerg Roedelfe74c9c2008-06-26 21:27:50 +02002177}
2178
Joerg Roedelb65233a2008-07-11 17:14:21 +02002179/****************************************************************************
2180 *
2181 * Early detect code. This code runs at IOMMU detection time in the DMA
2182 * layer. It just looks if there is an IVRS ACPI table to detect AMD
2183 * IOMMUs
2184 *
2185 ****************************************************************************/
Konrad Rzeszutek Wilk480125b2010-08-26 13:57:57 -04002186int __init amd_iommu_detect(void)
Joerg Roedelae7877d2008-06-26 21:27:51 +02002187{
Joerg Roedel2c0ae172012-06-12 15:59:30 +02002188 int ret;
Joerg Roedel02f3b3f2012-06-11 17:45:25 +02002189
FUJITA Tomonori75f1cdf2009-11-10 19:46:20 +09002190 if (no_iommu || (iommu_detected && !gart_iommu_aperture))
Konrad Rzeszutek Wilk480125b2010-08-26 13:57:57 -04002191 return -ENODEV;
Joerg Roedelae7877d2008-06-26 21:27:51 +02002192
Joerg Roedela5235722010-05-11 17:12:33 +02002193 if (amd_iommu_disabled)
Konrad Rzeszutek Wilk480125b2010-08-26 13:57:57 -04002194 return -ENODEV;
Joerg Roedela5235722010-05-11 17:12:33 +02002195
Joerg Roedel2c0ae172012-06-12 15:59:30 +02002196 ret = iommu_go_to_state(IOMMU_IVRS_DETECTED);
2197 if (ret)
2198 return ret;
Linus Torvalds11bd04f2009-12-11 12:18:16 -08002199
Joerg Roedel02f3b3f2012-06-11 17:45:25 +02002200 amd_iommu_detected = true;
2201 iommu_detected = 1;
2202 x86_init.iommu.iommu_init = amd_iommu_init;
2203
Joerg Roedel02f3b3f2012-06-11 17:45:25 +02002204 return 0;
Joerg Roedelae7877d2008-06-26 21:27:51 +02002205}
2206
Joerg Roedelb65233a2008-07-11 17:14:21 +02002207/****************************************************************************
2208 *
2209 * Parsing functions for the AMD IOMMU specific kernel command line
2210 * options.
2211 *
2212 ****************************************************************************/
2213
Joerg Roedelfefda112009-05-20 12:21:42 +02002214static int __init parse_amd_iommu_dump(char *str)
2215{
2216 amd_iommu_dump = true;
2217
2218 return 1;
2219}
2220
Joerg Roedel918ad6c2008-06-26 21:27:52 +02002221static int __init parse_amd_iommu_options(char *str)
2222{
2223 for (; *str; ++str) {
Joerg Roedel695b5672008-11-17 15:16:43 +01002224 if (strncmp(str, "fullflush", 9) == 0)
FUJITA Tomonoriafa9fdc2008-09-20 01:23:30 +09002225 amd_iommu_unmap_flush = true;
Joerg Roedela5235722010-05-11 17:12:33 +02002226 if (strncmp(str, "off", 3) == 0)
2227 amd_iommu_disabled = true;
Joerg Roedel5abcdba2011-12-01 15:49:45 +01002228 if (strncmp(str, "force_isolation", 15) == 0)
2229 amd_iommu_force_isolation = true;
Joerg Roedel918ad6c2008-06-26 21:27:52 +02002230 }
2231
2232 return 1;
2233}
2234
Joerg Roedel440e89982013-04-09 16:35:28 +02002235static int __init parse_ivrs_ioapic(char *str)
2236{
2237 unsigned int bus, dev, fn;
2238 int ret, id, i;
2239 u16 devid;
2240
2241 ret = sscanf(str, "[%d]=%x:%x.%x", &id, &bus, &dev, &fn);
2242
2243 if (ret != 4) {
2244 pr_err("AMD-Vi: Invalid command line: ivrs_ioapic%s\n", str);
2245 return 1;
2246 }
2247
2248 if (early_ioapic_map_size == EARLY_MAP_SIZE) {
2249 pr_err("AMD-Vi: Early IOAPIC map overflow - ignoring ivrs_ioapic%s\n",
2250 str);
2251 return 1;
2252 }
2253
2254 devid = ((bus & 0xff) << 8) | ((dev & 0x1f) << 3) | (fn & 0x7);
2255
Joerg Roedeldfbb6d42013-04-09 19:06:18 +02002256 cmdline_maps = true;
Joerg Roedel440e89982013-04-09 16:35:28 +02002257 i = early_ioapic_map_size++;
2258 early_ioapic_map[i].id = id;
2259 early_ioapic_map[i].devid = devid;
2260 early_ioapic_map[i].cmd_line = true;
2261
2262 return 1;
2263}
2264
2265static int __init parse_ivrs_hpet(char *str)
2266{
2267 unsigned int bus, dev, fn;
2268 int ret, id, i;
2269 u16 devid;
2270
2271 ret = sscanf(str, "[%d]=%x:%x.%x", &id, &bus, &dev, &fn);
2272
2273 if (ret != 4) {
2274 pr_err("AMD-Vi: Invalid command line: ivrs_hpet%s\n", str);
2275 return 1;
2276 }
2277
2278 if (early_hpet_map_size == EARLY_MAP_SIZE) {
2279 pr_err("AMD-Vi: Early HPET map overflow - ignoring ivrs_hpet%s\n",
2280 str);
2281 return 1;
2282 }
2283
2284 devid = ((bus & 0xff) << 8) | ((dev & 0x1f) << 3) | (fn & 0x7);
2285
Joerg Roedeldfbb6d42013-04-09 19:06:18 +02002286 cmdline_maps = true;
Joerg Roedel440e89982013-04-09 16:35:28 +02002287 i = early_hpet_map_size++;
2288 early_hpet_map[i].id = id;
2289 early_hpet_map[i].devid = devid;
2290 early_hpet_map[i].cmd_line = true;
2291
2292 return 1;
2293}
2294
2295__setup("amd_iommu_dump", parse_amd_iommu_dump);
2296__setup("amd_iommu=", parse_amd_iommu_options);
2297__setup("ivrs_ioapic", parse_ivrs_ioapic);
2298__setup("ivrs_hpet", parse_ivrs_hpet);
Konrad Rzeszutek Wilk22e6daf2010-08-26 13:58:03 -04002299
2300IOMMU_INIT_FINISH(amd_iommu_detect,
2301 gart_iommu_hole_init,
Joerg Roedel98f1ad22012-07-06 13:28:37 +02002302 NULL,
2303 NULL);
Joerg Roedel400a28a2011-11-28 15:11:02 +01002304
2305bool amd_iommu_v2_supported(void)
2306{
2307 return amd_iommu_v2_present;
2308}
2309EXPORT_SYMBOL(amd_iommu_v2_supported);
Steven L Kinney30861dd2013-06-05 16:11:48 -05002310
2311/****************************************************************************
2312 *
2313 * IOMMU EFR Performance Counter support functionality. This code allows
2314 * access to the IOMMU PC functionality.
2315 *
2316 ****************************************************************************/
2317
2318u8 amd_iommu_pc_get_max_banks(u16 devid)
2319{
2320 struct amd_iommu *iommu;
2321 u8 ret = 0;
2322
2323 /* locate the iommu governing the devid */
2324 iommu = amd_iommu_rlookup_table[devid];
2325 if (iommu)
2326 ret = iommu->max_banks;
2327
2328 return ret;
2329}
2330EXPORT_SYMBOL(amd_iommu_pc_get_max_banks);
2331
2332bool amd_iommu_pc_supported(void)
2333{
2334 return amd_iommu_pc_present;
2335}
2336EXPORT_SYMBOL(amd_iommu_pc_supported);
2337
2338u8 amd_iommu_pc_get_max_counters(u16 devid)
2339{
2340 struct amd_iommu *iommu;
2341 u8 ret = 0;
2342
2343 /* locate the iommu governing the devid */
2344 iommu = amd_iommu_rlookup_table[devid];
2345 if (iommu)
2346 ret = iommu->max_counters;
2347
2348 return ret;
2349}
2350EXPORT_SYMBOL(amd_iommu_pc_get_max_counters);
2351
2352int amd_iommu_pc_get_set_reg_val(u16 devid, u8 bank, u8 cntr, u8 fxn,
2353 u64 *value, bool is_write)
2354{
2355 struct amd_iommu *iommu;
2356 u32 offset;
2357 u32 max_offset_lim;
2358
2359 /* Make sure the IOMMU PC resource is available */
2360 if (!amd_iommu_pc_present)
2361 return -ENODEV;
2362
2363 /* Locate the iommu associated with the device ID */
2364 iommu = amd_iommu_rlookup_table[devid];
2365
2366 /* Check for valid iommu and pc register indexing */
2367 if (WARN_ON((iommu == NULL) || (fxn > 0x28) || (fxn & 7)))
2368 return -ENODEV;
2369
2370 offset = (u32)(((0x40|bank) << 12) | (cntr << 8) | fxn);
2371
2372 /* Limit the offset to the hw defined mmio region aperture */
2373 max_offset_lim = (u32)(((0x40|iommu->max_banks) << 12) |
2374 (iommu->max_counters << 8) | 0x28);
2375 if ((offset < MMIO_CNTR_REG_OFFSET) ||
2376 (offset > max_offset_lim))
2377 return -EINVAL;
2378
2379 if (is_write) {
2380 writel((u32)*value, iommu->mmio_base + offset);
2381 writel((*value >> 32), iommu->mmio_base + offset + 4);
2382 } else {
2383 *value = readl(iommu->mmio_base + offset + 4);
2384 *value <<= 32;
2385 *value = readl(iommu->mmio_base + offset);
2386 }
2387
2388 return 0;
2389}
2390EXPORT_SYMBOL(amd_iommu_pc_get_set_reg_val);