blob: 013bdfff2d4d023c30a57baf4c833788bfd7dbee [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 */
Viresh Kumar621a5f72015-09-26 15:04:07 -0700141bool 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 * After reading the highest device id from the IOMMU PCI capability header
412 * this function looks if there is a higher device id defined in the ACPI table
413 */
Joerg Roedel3e8064b2008-06-26 21:27:41 +0200414static int __init find_last_devid_from_ivhd(struct ivhd_header *h)
415{
416 u8 *p = (void *)h, *end = (void *)h;
417 struct ivhd_entry *dev;
418
419 p += sizeof(*h);
420 end += h->length;
421
Joerg Roedel3e8064b2008-06-26 21:27:41 +0200422 while (p < end) {
423 dev = (struct ivhd_entry *)p;
424 switch (dev->type) {
Joerg Roedeld1259412015-10-20 17:33:43 +0200425 case IVHD_DEV_ALL:
426 /* Use maximum BDF value for DEV_ALL */
427 update_last_devid(0xffff);
428 break;
Joerg Roedel3e8064b2008-06-26 21:27:41 +0200429 case IVHD_DEV_SELECT:
430 case IVHD_DEV_RANGE_END:
431 case IVHD_DEV_ALIAS:
432 case IVHD_DEV_EXT_SELECT:
Joerg Roedelb65233a2008-07-11 17:14:21 +0200433 /* all the above subfield types refer to device ids */
Joerg Roedel208ec8c2008-07-11 17:14:24 +0200434 update_last_devid(dev->devid);
Joerg Roedel3e8064b2008-06-26 21:27:41 +0200435 break;
436 default:
437 break;
438 }
Joerg Roedelb514e552008-09-17 17:14:27 +0200439 p += ivhd_entry_length(p);
Joerg Roedel3e8064b2008-06-26 21:27:41 +0200440 }
441
442 WARN_ON(p != end);
443
444 return 0;
445}
446
Joerg Roedelb65233a2008-07-11 17:14:21 +0200447/*
448 * Iterate over all IVHD entries in the ACPI table and find the highest device
449 * id which we need to handle. This is the first of three functions which parse
450 * the ACPI table. So we check the checksum here.
451 */
Joerg Roedel3e8064b2008-06-26 21:27:41 +0200452static int __init find_last_devid_acpi(struct acpi_table_header *table)
453{
454 int i;
455 u8 checksum = 0, *p = (u8 *)table, *end = (u8 *)table;
456 struct ivhd_header *h;
457
458 /*
459 * Validate checksum here so we don't need to do it when
460 * we actually parse the table
461 */
462 for (i = 0; i < table->length; ++i)
463 checksum += p[i];
Joerg Roedel02f3b3f2012-06-11 17:45:25 +0200464 if (checksum != 0)
Joerg Roedel3e8064b2008-06-26 21:27:41 +0200465 /* ACPI table corrupt */
Joerg Roedel02f3b3f2012-06-11 17:45:25 +0200466 return -ENODEV;
Joerg Roedel3e8064b2008-06-26 21:27:41 +0200467
468 p += IVRS_HEADER_LENGTH;
469
470 end += table->length;
471 while (p < end) {
472 h = (struct ivhd_header *)p;
473 switch (h->type) {
474 case ACPI_IVHD_TYPE:
475 find_last_devid_from_ivhd(h);
476 break;
477 default:
478 break;
479 }
480 p += h->length;
481 }
482 WARN_ON(p != end);
483
484 return 0;
485}
486
Joerg Roedelb65233a2008-07-11 17:14:21 +0200487/****************************************************************************
488 *
Frank Arnolddf805ab2012-08-27 19:21:04 +0200489 * The following functions belong to the code path which parses the ACPI table
Joerg Roedelb65233a2008-07-11 17:14:21 +0200490 * the second time. In this ACPI parsing iteration we allocate IOMMU specific
491 * data structures, initialize the device/alias/rlookup table and also
492 * basically initialize the hardware.
493 *
494 ****************************************************************************/
495
496/*
497 * Allocates the command buffer. This buffer is per AMD IOMMU. We can
498 * write commands to that buffer later and the IOMMU will execute them
499 * asynchronously
500 */
Joerg Roedelf2c2db52015-10-20 17:33:42 +0200501static int __init alloc_command_buffer(struct amd_iommu *iommu)
Joerg Roedelb36ca912008-06-26 21:27:45 +0200502{
Joerg Roedelf2c2db52015-10-20 17:33:42 +0200503 iommu->cmd_buf = (void *)__get_free_pages(GFP_KERNEL | __GFP_ZERO,
504 get_order(CMD_BUFFER_SIZE));
Joerg Roedelb36ca912008-06-26 21:27:45 +0200505
Joerg Roedelf2c2db52015-10-20 17:33:42 +0200506 return iommu->cmd_buf ? 0 : -ENOMEM;
Joerg Roedel58492e12009-05-04 18:41:16 +0200507}
508
509/*
Joerg Roedel93f1cc672009-09-03 14:50:20 +0200510 * This function resets the command buffer if the IOMMU stopped fetching
511 * commands from it.
512 */
513void amd_iommu_reset_cmd_buffer(struct amd_iommu *iommu)
514{
515 iommu_feature_disable(iommu, CONTROL_CMDBUF_EN);
516
517 writel(0x00, iommu->mmio_base + MMIO_CMD_HEAD_OFFSET);
518 writel(0x00, iommu->mmio_base + MMIO_CMD_TAIL_OFFSET);
519
520 iommu_feature_enable(iommu, CONTROL_CMDBUF_EN);
521}
522
523/*
Joerg Roedel58492e12009-05-04 18:41:16 +0200524 * This function writes the command buffer address to the hardware and
525 * enables it.
526 */
527static void iommu_enable_command_buffer(struct amd_iommu *iommu)
528{
529 u64 entry;
530
531 BUG_ON(iommu->cmd_buf == NULL);
532
533 entry = (u64)virt_to_phys(iommu->cmd_buf);
Joerg Roedelb36ca912008-06-26 21:27:45 +0200534 entry |= MMIO_CMD_SIZE_512;
Joerg Roedel58492e12009-05-04 18:41:16 +0200535
Joerg Roedelb36ca912008-06-26 21:27:45 +0200536 memcpy_toio(iommu->mmio_base + MMIO_CMD_BUF_OFFSET,
Joerg Roedel58492e12009-05-04 18:41:16 +0200537 &entry, sizeof(entry));
Joerg Roedelb36ca912008-06-26 21:27:45 +0200538
Joerg Roedel93f1cc672009-09-03 14:50:20 +0200539 amd_iommu_reset_cmd_buffer(iommu);
Joerg Roedelb36ca912008-06-26 21:27:45 +0200540}
541
542static void __init free_command_buffer(struct amd_iommu *iommu)
543{
Joerg Roedeldeba4bc2015-10-20 17:33:41 +0200544 free_pages((unsigned long)iommu->cmd_buf, get_order(CMD_BUFFER_SIZE));
Joerg Roedelb36ca912008-06-26 21:27:45 +0200545}
546
Joerg Roedel335503e2008-09-05 14:29:07 +0200547/* allocates the memory where the IOMMU will log its events to */
Joerg Roedelf2c2db52015-10-20 17:33:42 +0200548static int __init alloc_event_buffer(struct amd_iommu *iommu)
Joerg Roedel335503e2008-09-05 14:29:07 +0200549{
Joerg Roedelf2c2db52015-10-20 17:33:42 +0200550 iommu->evt_buf = (void *)__get_free_pages(GFP_KERNEL | __GFP_ZERO,
551 get_order(EVT_BUFFER_SIZE));
Joerg Roedel335503e2008-09-05 14:29:07 +0200552
Joerg Roedelf2c2db52015-10-20 17:33:42 +0200553 return iommu->evt_buf ? 0 : -ENOMEM;
Joerg Roedel58492e12009-05-04 18:41:16 +0200554}
555
556static void iommu_enable_event_buffer(struct amd_iommu *iommu)
557{
558 u64 entry;
559
560 BUG_ON(iommu->evt_buf == NULL);
561
Joerg Roedel335503e2008-09-05 14:29:07 +0200562 entry = (u64)virt_to_phys(iommu->evt_buf) | EVT_LEN_MASK;
Joerg Roedel58492e12009-05-04 18:41:16 +0200563
Joerg Roedel335503e2008-09-05 14:29:07 +0200564 memcpy_toio(iommu->mmio_base + MMIO_EVT_BUF_OFFSET,
565 &entry, sizeof(entry));
566
Joerg Roedel090672072009-06-15 16:06:48 +0200567 /* set head and tail to zero manually */
568 writel(0x00, iommu->mmio_base + MMIO_EVT_HEAD_OFFSET);
569 writel(0x00, iommu->mmio_base + MMIO_EVT_TAIL_OFFSET);
570
Joerg Roedel58492e12009-05-04 18:41:16 +0200571 iommu_feature_enable(iommu, CONTROL_EVT_LOG_EN);
Joerg Roedel335503e2008-09-05 14:29:07 +0200572}
573
574static void __init free_event_buffer(struct amd_iommu *iommu)
575{
576 free_pages((unsigned long)iommu->evt_buf, get_order(EVT_BUFFER_SIZE));
577}
578
Joerg Roedel1a29ac02011-11-10 15:41:40 +0100579/* allocates the memory where the IOMMU will log its events to */
Joerg Roedelf2c2db52015-10-20 17:33:42 +0200580static int __init alloc_ppr_log(struct amd_iommu *iommu)
Joerg Roedel1a29ac02011-11-10 15:41:40 +0100581{
Joerg Roedelf2c2db52015-10-20 17:33:42 +0200582 iommu->ppr_log = (void *)__get_free_pages(GFP_KERNEL | __GFP_ZERO,
583 get_order(PPR_LOG_SIZE));
Joerg Roedel1a29ac02011-11-10 15:41:40 +0100584
Joerg Roedelf2c2db52015-10-20 17:33:42 +0200585 return iommu->ppr_log ? 0 : -ENOMEM;
Joerg Roedel1a29ac02011-11-10 15:41:40 +0100586}
587
588static void iommu_enable_ppr_log(struct amd_iommu *iommu)
589{
590 u64 entry;
591
592 if (iommu->ppr_log == NULL)
593 return;
594
595 entry = (u64)virt_to_phys(iommu->ppr_log) | PPR_LOG_SIZE_512;
596
597 memcpy_toio(iommu->mmio_base + MMIO_PPR_LOG_OFFSET,
598 &entry, sizeof(entry));
599
600 /* set head and tail to zero manually */
601 writel(0x00, iommu->mmio_base + MMIO_PPR_HEAD_OFFSET);
602 writel(0x00, iommu->mmio_base + MMIO_PPR_TAIL_OFFSET);
603
604 iommu_feature_enable(iommu, CONTROL_PPFLOG_EN);
605 iommu_feature_enable(iommu, CONTROL_PPR_EN);
606}
607
608static void __init free_ppr_log(struct amd_iommu *iommu)
609{
610 if (iommu->ppr_log == NULL)
611 return;
612
613 free_pages((unsigned long)iommu->ppr_log, get_order(PPR_LOG_SIZE));
614}
615
Joerg Roedelcbc33a92011-11-25 11:41:31 +0100616static void iommu_enable_gt(struct amd_iommu *iommu)
617{
618 if (!iommu_feature(iommu, FEATURE_GT))
619 return;
620
621 iommu_feature_enable(iommu, CONTROL_GT_EN);
622}
623
Joerg Roedelb65233a2008-07-11 17:14:21 +0200624/* sets a specific bit in the device table entry. */
Joerg Roedel3566b772008-06-26 21:27:46 +0200625static void set_dev_entry_bit(u16 devid, u8 bit)
626{
Joerg Roedelee6c2862011-11-09 12:06:03 +0100627 int i = (bit >> 6) & 0x03;
628 int _bit = bit & 0x3f;
Joerg Roedel3566b772008-06-26 21:27:46 +0200629
Joerg Roedelee6c2862011-11-09 12:06:03 +0100630 amd_iommu_dev_table[devid].data[i] |= (1UL << _bit);
Joerg Roedel3566b772008-06-26 21:27:46 +0200631}
632
Joerg Roedelc5cca142009-10-09 18:31:20 +0200633static int get_dev_entry_bit(u16 devid, u8 bit)
634{
Joerg Roedelee6c2862011-11-09 12:06:03 +0100635 int i = (bit >> 6) & 0x03;
636 int _bit = bit & 0x3f;
Joerg Roedelc5cca142009-10-09 18:31:20 +0200637
Joerg Roedelee6c2862011-11-09 12:06:03 +0100638 return (amd_iommu_dev_table[devid].data[i] & (1UL << _bit)) >> _bit;
Joerg Roedelc5cca142009-10-09 18:31:20 +0200639}
640
641
642void amd_iommu_apply_erratum_63(u16 devid)
643{
644 int sysmgt;
645
646 sysmgt = get_dev_entry_bit(devid, DEV_ENTRY_SYSMGT1) |
647 (get_dev_entry_bit(devid, DEV_ENTRY_SYSMGT2) << 1);
648
649 if (sysmgt == 0x01)
650 set_dev_entry_bit(devid, DEV_ENTRY_IW);
651}
652
Joerg Roedel5ff47892008-07-14 20:11:18 +0200653/* Writes the specific IOMMU for a device into the rlookup table */
654static void __init set_iommu_for_device(struct amd_iommu *iommu, u16 devid)
655{
656 amd_iommu_rlookup_table[devid] = iommu;
657}
658
Joerg Roedelb65233a2008-07-11 17:14:21 +0200659/*
660 * This function takes the device specific flags read from the ACPI
661 * table and sets up the device table entry with that information
662 */
Joerg Roedel5ff47892008-07-14 20:11:18 +0200663static void __init set_dev_entry_from_acpi(struct amd_iommu *iommu,
664 u16 devid, u32 flags, u32 ext_flags)
Joerg Roedel3566b772008-06-26 21:27:46 +0200665{
666 if (flags & ACPI_DEVFLAG_INITPASS)
667 set_dev_entry_bit(devid, DEV_ENTRY_INIT_PASS);
668 if (flags & ACPI_DEVFLAG_EXTINT)
669 set_dev_entry_bit(devid, DEV_ENTRY_EINT_PASS);
670 if (flags & ACPI_DEVFLAG_NMI)
671 set_dev_entry_bit(devid, DEV_ENTRY_NMI_PASS);
672 if (flags & ACPI_DEVFLAG_SYSMGT1)
673 set_dev_entry_bit(devid, DEV_ENTRY_SYSMGT1);
674 if (flags & ACPI_DEVFLAG_SYSMGT2)
675 set_dev_entry_bit(devid, DEV_ENTRY_SYSMGT2);
676 if (flags & ACPI_DEVFLAG_LINT0)
677 set_dev_entry_bit(devid, DEV_ENTRY_LINT0_PASS);
678 if (flags & ACPI_DEVFLAG_LINT1)
679 set_dev_entry_bit(devid, DEV_ENTRY_LINT1_PASS);
Joerg Roedel3566b772008-06-26 21:27:46 +0200680
Joerg Roedelc5cca142009-10-09 18:31:20 +0200681 amd_iommu_apply_erratum_63(devid);
682
Joerg Roedel5ff47892008-07-14 20:11:18 +0200683 set_iommu_for_device(iommu, devid);
Joerg Roedel3566b772008-06-26 21:27:46 +0200684}
685
Joerg Roedelc50e3242014-09-09 15:59:37 +0200686static int __init add_special_device(u8 type, u8 id, u16 *devid, bool cmd_line)
Joerg Roedel6efed632012-06-14 15:52:58 +0200687{
688 struct devid_map *entry;
689 struct list_head *list;
690
Joerg Roedel31cff672013-04-09 16:53:58 +0200691 if (type == IVHD_SPECIAL_IOAPIC)
692 list = &ioapic_map;
693 else if (type == IVHD_SPECIAL_HPET)
694 list = &hpet_map;
695 else
Joerg Roedel6efed632012-06-14 15:52:58 +0200696 return -EINVAL;
697
Joerg Roedel31cff672013-04-09 16:53:58 +0200698 list_for_each_entry(entry, list, list) {
699 if (!(entry->id == id && entry->cmd_line))
700 continue;
701
702 pr_info("AMD-Vi: Command-line override present for %s id %d - ignoring\n",
703 type == IVHD_SPECIAL_IOAPIC ? "IOAPIC" : "HPET", id);
704
Joerg Roedelc50e3242014-09-09 15:59:37 +0200705 *devid = entry->devid;
706
Joerg Roedel31cff672013-04-09 16:53:58 +0200707 return 0;
708 }
709
Joerg Roedel6efed632012-06-14 15:52:58 +0200710 entry = kzalloc(sizeof(*entry), GFP_KERNEL);
711 if (!entry)
712 return -ENOMEM;
713
Joerg Roedel31cff672013-04-09 16:53:58 +0200714 entry->id = id;
Joerg Roedelc50e3242014-09-09 15:59:37 +0200715 entry->devid = *devid;
Joerg Roedel31cff672013-04-09 16:53:58 +0200716 entry->cmd_line = cmd_line;
Joerg Roedel6efed632012-06-14 15:52:58 +0200717
718 list_add_tail(&entry->list, list);
719
720 return 0;
721}
722
Joerg Roedel235dacb2013-04-09 17:53:14 +0200723static int __init add_early_maps(void)
724{
725 int i, ret;
726
727 for (i = 0; i < early_ioapic_map_size; ++i) {
728 ret = add_special_device(IVHD_SPECIAL_IOAPIC,
729 early_ioapic_map[i].id,
Joerg Roedelc50e3242014-09-09 15:59:37 +0200730 &early_ioapic_map[i].devid,
Joerg Roedel235dacb2013-04-09 17:53:14 +0200731 early_ioapic_map[i].cmd_line);
732 if (ret)
733 return ret;
734 }
735
736 for (i = 0; i < early_hpet_map_size; ++i) {
737 ret = add_special_device(IVHD_SPECIAL_HPET,
738 early_hpet_map[i].id,
Joerg Roedelc50e3242014-09-09 15:59:37 +0200739 &early_hpet_map[i].devid,
Joerg Roedel235dacb2013-04-09 17:53:14 +0200740 early_hpet_map[i].cmd_line);
741 if (ret)
742 return ret;
743 }
744
745 return 0;
746}
747
Joerg Roedelb65233a2008-07-11 17:14:21 +0200748/*
Frank Arnolddf805ab2012-08-27 19:21:04 +0200749 * Reads the device exclusion range from ACPI and initializes the IOMMU with
Joerg Roedelb65233a2008-07-11 17:14:21 +0200750 * it
751 */
Joerg Roedel3566b772008-06-26 21:27:46 +0200752static void __init set_device_exclusion_range(u16 devid, struct ivmd_header *m)
753{
754 struct amd_iommu *iommu = amd_iommu_rlookup_table[devid];
755
756 if (!(m->flags & IVMD_FLAG_EXCL_RANGE))
757 return;
758
759 if (iommu) {
Joerg Roedelb65233a2008-07-11 17:14:21 +0200760 /*
761 * We only can configure exclusion ranges per IOMMU, not
762 * per device. But we can enable the exclusion range per
763 * device. This is done here
764 */
Su Friendy2c16c9f2014-05-07 13:54:52 +0800765 set_dev_entry_bit(devid, DEV_ENTRY_EX);
Joerg Roedel3566b772008-06-26 21:27:46 +0200766 iommu->exclusion_start = m->range_start;
767 iommu->exclusion_length = m->range_length;
768 }
769}
770
Joerg Roedelb65233a2008-07-11 17:14:21 +0200771/*
Joerg Roedelb65233a2008-07-11 17:14:21 +0200772 * Takes a pointer to an AMD IOMMU entry in the ACPI table and
773 * initializes the hardware and our data structures with it.
774 */
Joerg Roedel6efed632012-06-14 15:52:58 +0200775static int __init init_iommu_from_acpi(struct amd_iommu *iommu,
Joerg Roedel5d0c8e42008-06-26 21:27:47 +0200776 struct ivhd_header *h)
777{
778 u8 *p = (u8 *)h;
779 u8 *end = p, flags = 0;
Joerg Roedel0de66d52011-06-06 16:04:02 +0200780 u16 devid = 0, devid_start = 0, devid_to = 0;
781 u32 dev_i, ext_flags = 0;
Joerg Roedel58a3bee2008-07-11 17:14:30 +0200782 bool alias = false;
Joerg Roedel5d0c8e42008-06-26 21:27:47 +0200783 struct ivhd_entry *e;
Joerg Roedel235dacb2013-04-09 17:53:14 +0200784 int ret;
785
786
787 ret = add_early_maps();
788 if (ret)
789 return ret;
Joerg Roedel5d0c8e42008-06-26 21:27:47 +0200790
791 /*
Joerg Roedele9bf5192010-09-20 14:33:07 +0200792 * First save the recommended feature enable bits from ACPI
Joerg Roedel5d0c8e42008-06-26 21:27:47 +0200793 */
Joerg Roedele9bf5192010-09-20 14:33:07 +0200794 iommu->acpi_flags = h->flags;
Joerg Roedel5d0c8e42008-06-26 21:27:47 +0200795
796 /*
797 * Done. Now parse the device entries
798 */
799 p += sizeof(struct ivhd_header);
800 end += h->length;
801
Joerg Roedel42a698f2009-05-20 15:41:28 +0200802
Joerg Roedel5d0c8e42008-06-26 21:27:47 +0200803 while (p < end) {
804 e = (struct ivhd_entry *)p;
805 switch (e->type) {
806 case IVHD_DEV_ALL:
Joerg Roedel42a698f2009-05-20 15:41:28 +0200807
Joerg Roedel226e8892015-10-20 17:33:44 +0200808 DUMP_printk(" DEV_ALL\t\t\tflags: %02x\n", e->flags);
Joerg Roedel42a698f2009-05-20 15:41:28 +0200809
Joerg Roedel226e8892015-10-20 17:33:44 +0200810 for (dev_i = 0; dev_i <= amd_iommu_last_bdf; ++dev_i)
811 set_dev_entry_from_acpi(iommu, dev_i, e->flags, 0);
Joerg Roedel5d0c8e42008-06-26 21:27:47 +0200812 break;
813 case IVHD_DEV_SELECT:
Joerg Roedel42a698f2009-05-20 15:41:28 +0200814
815 DUMP_printk(" DEV_SELECT\t\t\t devid: %02x:%02x.%x "
816 "flags: %02x\n",
Shuah Khanc5081cd2013-02-27 17:07:19 -0700817 PCI_BUS_NUM(e->devid),
Joerg Roedel42a698f2009-05-20 15:41:28 +0200818 PCI_SLOT(e->devid),
819 PCI_FUNC(e->devid),
820 e->flags);
821
Joerg Roedel5d0c8e42008-06-26 21:27:47 +0200822 devid = e->devid;
Joerg Roedel5ff47892008-07-14 20:11:18 +0200823 set_dev_entry_from_acpi(iommu, devid, e->flags, 0);
Joerg Roedel5d0c8e42008-06-26 21:27:47 +0200824 break;
825 case IVHD_DEV_SELECT_RANGE_START:
Joerg Roedel42a698f2009-05-20 15:41:28 +0200826
827 DUMP_printk(" DEV_SELECT_RANGE_START\t "
828 "devid: %02x:%02x.%x flags: %02x\n",
Shuah Khanc5081cd2013-02-27 17:07:19 -0700829 PCI_BUS_NUM(e->devid),
Joerg Roedel42a698f2009-05-20 15:41:28 +0200830 PCI_SLOT(e->devid),
831 PCI_FUNC(e->devid),
832 e->flags);
833
Joerg Roedel5d0c8e42008-06-26 21:27:47 +0200834 devid_start = e->devid;
835 flags = e->flags;
836 ext_flags = 0;
Joerg Roedel58a3bee2008-07-11 17:14:30 +0200837 alias = false;
Joerg Roedel5d0c8e42008-06-26 21:27:47 +0200838 break;
839 case IVHD_DEV_ALIAS:
Joerg Roedel42a698f2009-05-20 15:41:28 +0200840
841 DUMP_printk(" DEV_ALIAS\t\t\t devid: %02x:%02x.%x "
842 "flags: %02x devid_to: %02x:%02x.%x\n",
Shuah Khanc5081cd2013-02-27 17:07:19 -0700843 PCI_BUS_NUM(e->devid),
Joerg Roedel42a698f2009-05-20 15:41:28 +0200844 PCI_SLOT(e->devid),
845 PCI_FUNC(e->devid),
846 e->flags,
Shuah Khanc5081cd2013-02-27 17:07:19 -0700847 PCI_BUS_NUM(e->ext >> 8),
Joerg Roedel42a698f2009-05-20 15:41:28 +0200848 PCI_SLOT(e->ext >> 8),
849 PCI_FUNC(e->ext >> 8));
850
Joerg Roedel5d0c8e42008-06-26 21:27:47 +0200851 devid = e->devid;
852 devid_to = e->ext >> 8;
Joerg Roedel7a6a3a02009-07-02 12:23:23 +0200853 set_dev_entry_from_acpi(iommu, devid , e->flags, 0);
Neil Turton7455aab2009-05-14 14:08:11 +0100854 set_dev_entry_from_acpi(iommu, devid_to, e->flags, 0);
Joerg Roedel5d0c8e42008-06-26 21:27:47 +0200855 amd_iommu_alias_table[devid] = devid_to;
856 break;
857 case IVHD_DEV_ALIAS_RANGE:
Joerg Roedel42a698f2009-05-20 15:41:28 +0200858
859 DUMP_printk(" DEV_ALIAS_RANGE\t\t "
860 "devid: %02x:%02x.%x flags: %02x "
861 "devid_to: %02x:%02x.%x\n",
Shuah Khanc5081cd2013-02-27 17:07:19 -0700862 PCI_BUS_NUM(e->devid),
Joerg Roedel42a698f2009-05-20 15:41:28 +0200863 PCI_SLOT(e->devid),
864 PCI_FUNC(e->devid),
865 e->flags,
Shuah Khanc5081cd2013-02-27 17:07:19 -0700866 PCI_BUS_NUM(e->ext >> 8),
Joerg Roedel42a698f2009-05-20 15:41:28 +0200867 PCI_SLOT(e->ext >> 8),
868 PCI_FUNC(e->ext >> 8));
869
Joerg Roedel5d0c8e42008-06-26 21:27:47 +0200870 devid_start = e->devid;
871 flags = e->flags;
872 devid_to = e->ext >> 8;
873 ext_flags = 0;
Joerg Roedel58a3bee2008-07-11 17:14:30 +0200874 alias = true;
Joerg Roedel5d0c8e42008-06-26 21:27:47 +0200875 break;
876 case IVHD_DEV_EXT_SELECT:
Joerg Roedel42a698f2009-05-20 15:41:28 +0200877
878 DUMP_printk(" DEV_EXT_SELECT\t\t devid: %02x:%02x.%x "
879 "flags: %02x ext: %08x\n",
Shuah Khanc5081cd2013-02-27 17:07:19 -0700880 PCI_BUS_NUM(e->devid),
Joerg Roedel42a698f2009-05-20 15:41:28 +0200881 PCI_SLOT(e->devid),
882 PCI_FUNC(e->devid),
883 e->flags, e->ext);
884
Joerg Roedel5d0c8e42008-06-26 21:27:47 +0200885 devid = e->devid;
Joerg Roedel5ff47892008-07-14 20:11:18 +0200886 set_dev_entry_from_acpi(iommu, devid, e->flags,
887 e->ext);
Joerg Roedel5d0c8e42008-06-26 21:27:47 +0200888 break;
889 case IVHD_DEV_EXT_SELECT_RANGE:
Joerg Roedel42a698f2009-05-20 15:41:28 +0200890
891 DUMP_printk(" DEV_EXT_SELECT_RANGE\t devid: "
892 "%02x:%02x.%x flags: %02x ext: %08x\n",
Shuah Khanc5081cd2013-02-27 17:07:19 -0700893 PCI_BUS_NUM(e->devid),
Joerg Roedel42a698f2009-05-20 15:41:28 +0200894 PCI_SLOT(e->devid),
895 PCI_FUNC(e->devid),
896 e->flags, e->ext);
897
Joerg Roedel5d0c8e42008-06-26 21:27:47 +0200898 devid_start = e->devid;
899 flags = e->flags;
900 ext_flags = e->ext;
Joerg Roedel58a3bee2008-07-11 17:14:30 +0200901 alias = false;
Joerg Roedel5d0c8e42008-06-26 21:27:47 +0200902 break;
903 case IVHD_DEV_RANGE_END:
Joerg Roedel42a698f2009-05-20 15:41:28 +0200904
905 DUMP_printk(" DEV_RANGE_END\t\t devid: %02x:%02x.%x\n",
Shuah Khanc5081cd2013-02-27 17:07:19 -0700906 PCI_BUS_NUM(e->devid),
Joerg Roedel42a698f2009-05-20 15:41:28 +0200907 PCI_SLOT(e->devid),
908 PCI_FUNC(e->devid));
909
Joerg Roedel5d0c8e42008-06-26 21:27:47 +0200910 devid = e->devid;
911 for (dev_i = devid_start; dev_i <= devid; ++dev_i) {
Joerg Roedel7a6a3a02009-07-02 12:23:23 +0200912 if (alias) {
Joerg Roedel5d0c8e42008-06-26 21:27:47 +0200913 amd_iommu_alias_table[dev_i] = devid_to;
Joerg Roedel7a6a3a02009-07-02 12:23:23 +0200914 set_dev_entry_from_acpi(iommu,
915 devid_to, flags, ext_flags);
916 }
917 set_dev_entry_from_acpi(iommu, dev_i,
918 flags, ext_flags);
Joerg Roedel5d0c8e42008-06-26 21:27:47 +0200919 }
920 break;
Joerg Roedel6efed632012-06-14 15:52:58 +0200921 case IVHD_DEV_SPECIAL: {
922 u8 handle, type;
923 const char *var;
924 u16 devid;
925 int ret;
926
927 handle = e->ext & 0xff;
928 devid = (e->ext >> 8) & 0xffff;
929 type = (e->ext >> 24) & 0xff;
930
931 if (type == IVHD_SPECIAL_IOAPIC)
932 var = "IOAPIC";
933 else if (type == IVHD_SPECIAL_HPET)
934 var = "HPET";
935 else
936 var = "UNKNOWN";
937
938 DUMP_printk(" DEV_SPECIAL(%s[%d])\t\tdevid: %02x:%02x.%x\n",
939 var, (int)handle,
Shuah Khanc5081cd2013-02-27 17:07:19 -0700940 PCI_BUS_NUM(devid),
Joerg Roedel6efed632012-06-14 15:52:58 +0200941 PCI_SLOT(devid),
942 PCI_FUNC(devid));
943
Joerg Roedelc50e3242014-09-09 15:59:37 +0200944 ret = add_special_device(type, handle, &devid, false);
Joerg Roedel6efed632012-06-14 15:52:58 +0200945 if (ret)
946 return ret;
Joerg Roedelc50e3242014-09-09 15:59:37 +0200947
948 /*
949 * add_special_device might update the devid in case a
950 * command-line override is present. So call
951 * set_dev_entry_from_acpi after add_special_device.
952 */
953 set_dev_entry_from_acpi(iommu, devid, e->flags, 0);
954
Joerg Roedel6efed632012-06-14 15:52:58 +0200955 break;
956 }
Joerg Roedel5d0c8e42008-06-26 21:27:47 +0200957 default:
958 break;
959 }
960
Joerg Roedelb514e552008-09-17 17:14:27 +0200961 p += ivhd_entry_length(p);
Joerg Roedel5d0c8e42008-06-26 21:27:47 +0200962 }
Joerg Roedel6efed632012-06-14 15:52:58 +0200963
964 return 0;
Joerg Roedel5d0c8e42008-06-26 21:27:47 +0200965}
966
Joerg Roedele47d4022008-06-26 21:27:48 +0200967static void __init free_iommu_one(struct amd_iommu *iommu)
968{
969 free_command_buffer(iommu);
Joerg Roedel335503e2008-09-05 14:29:07 +0200970 free_event_buffer(iommu);
Joerg Roedel1a29ac02011-11-10 15:41:40 +0100971 free_ppr_log(iommu);
Joerg Roedele47d4022008-06-26 21:27:48 +0200972 iommu_unmap_mmio_space(iommu);
973}
974
975static void __init free_iommu_all(void)
976{
977 struct amd_iommu *iommu, *next;
978
Joerg Roedel3bd22172009-05-04 15:06:20 +0200979 for_each_iommu_safe(iommu, next) {
Joerg Roedele47d4022008-06-26 21:27:48 +0200980 list_del(&iommu->list);
981 free_iommu_one(iommu);
982 kfree(iommu);
983 }
984}
985
Joerg Roedelb65233a2008-07-11 17:14:21 +0200986/*
Suravee Suthikulpanit318fe782013-01-24 13:17:53 -0600987 * Family15h Model 10h-1fh erratum 746 (IOMMU Logging May Stall Translations)
988 * Workaround:
989 * BIOS should disable L2B micellaneous clock gating by setting
990 * L2_L2B_CK_GATE_CONTROL[CKGateL2BMiscDisable](D0F2xF4_x90[2]) = 1b
991 */
Nikola Pajkovskye2f1a3b2013-02-26 16:12:05 +0100992static void amd_iommu_erratum_746_workaround(struct amd_iommu *iommu)
Suravee Suthikulpanit318fe782013-01-24 13:17:53 -0600993{
994 u32 value;
995
996 if ((boot_cpu_data.x86 != 0x15) ||
997 (boot_cpu_data.x86_model < 0x10) ||
998 (boot_cpu_data.x86_model > 0x1f))
999 return;
1000
1001 pci_write_config_dword(iommu->dev, 0xf0, 0x90);
1002 pci_read_config_dword(iommu->dev, 0xf4, &value);
1003
1004 if (value & BIT(2))
1005 return;
1006
1007 /* Select NB indirect register 0x90 and enable writing */
1008 pci_write_config_dword(iommu->dev, 0xf0, 0x90 | (1 << 8));
1009
1010 pci_write_config_dword(iommu->dev, 0xf4, value | 0x4);
1011 pr_info("AMD-Vi: Applying erratum 746 workaround for IOMMU at %s\n",
1012 dev_name(&iommu->dev->dev));
1013
1014 /* Clear the enable writing bit */
1015 pci_write_config_dword(iommu->dev, 0xf0, 0x90);
1016}
1017
1018/*
Joerg Roedelb65233a2008-07-11 17:14:21 +02001019 * This function clues the initialization function for one IOMMU
1020 * together and also allocates the command buffer and programs the
1021 * hardware. It does NOT enable the IOMMU. This is done afterwards.
1022 */
Joerg Roedele47d4022008-06-26 21:27:48 +02001023static int __init init_iommu_one(struct amd_iommu *iommu, struct ivhd_header *h)
1024{
Joerg Roedel6efed632012-06-14 15:52:58 +02001025 int ret;
1026
Joerg Roedele47d4022008-06-26 21:27:48 +02001027 spin_lock_init(&iommu->lock);
Joerg Roedelbb527772009-11-20 14:31:51 +01001028
1029 /* Add IOMMU to internal data structures */
Joerg Roedele47d4022008-06-26 21:27:48 +02001030 list_add_tail(&iommu->list, &amd_iommu_list);
Joerg Roedelbb527772009-11-20 14:31:51 +01001031 iommu->index = amd_iommus_present++;
1032
1033 if (unlikely(iommu->index >= MAX_IOMMUS)) {
1034 WARN(1, "AMD-Vi: System has more IOMMUs than supported by this driver\n");
1035 return -ENOSYS;
1036 }
1037
1038 /* Index is fine - add IOMMU to the array */
1039 amd_iommus[iommu->index] = iommu;
Joerg Roedele47d4022008-06-26 21:27:48 +02001040
1041 /*
1042 * Copy data from ACPI table entry to the iommu struct
1043 */
Joerg Roedel23c742d2012-06-12 11:47:34 +02001044 iommu->devid = h->devid;
Joerg Roedele47d4022008-06-26 21:27:48 +02001045 iommu->cap_ptr = h->cap_ptr;
Joerg Roedelee893c22008-09-08 14:48:04 +02001046 iommu->pci_seg = h->pci_seg;
Joerg Roedele47d4022008-06-26 21:27:48 +02001047 iommu->mmio_phys = h->mmio_phys;
Steven L Kinney30861dd2013-06-05 16:11:48 -05001048
1049 /* Check if IVHD EFR contains proper max banks/counters */
1050 if ((h->efr != 0) &&
1051 ((h->efr & (0xF << 13)) != 0) &&
1052 ((h->efr & (0x3F << 17)) != 0)) {
1053 iommu->mmio_phys_end = MMIO_REG_END_OFFSET;
1054 } else {
1055 iommu->mmio_phys_end = MMIO_CNTR_CONF_OFFSET;
1056 }
1057
1058 iommu->mmio_base = iommu_map_mmio_space(iommu->mmio_phys,
1059 iommu->mmio_phys_end);
Joerg Roedele47d4022008-06-26 21:27:48 +02001060 if (!iommu->mmio_base)
1061 return -ENOMEM;
1062
Joerg Roedelf2c2db52015-10-20 17:33:42 +02001063 if (alloc_command_buffer(iommu))
Joerg Roedele47d4022008-06-26 21:27:48 +02001064 return -ENOMEM;
1065
Joerg Roedelf2c2db52015-10-20 17:33:42 +02001066 if (alloc_event_buffer(iommu))
Joerg Roedel335503e2008-09-05 14:29:07 +02001067 return -ENOMEM;
1068
Joerg Roedela80dc3e2008-09-11 16:51:41 +02001069 iommu->int_enabled = false;
1070
Joerg Roedel6efed632012-06-14 15:52:58 +02001071 ret = init_iommu_from_acpi(iommu, h);
1072 if (ret)
1073 return ret;
Joerg Roedelf6fec002012-06-21 16:51:25 +02001074
Jiang Liu7c71d302015-04-13 14:11:33 +08001075 ret = amd_iommu_create_irq_domain(iommu);
1076 if (ret)
1077 return ret;
1078
Joerg Roedelf6fec002012-06-21 16:51:25 +02001079 /*
1080 * Make sure IOMMU is not considered to translate itself. The IVRS
1081 * table tells us so, but this is a lie!
1082 */
1083 amd_iommu_rlookup_table[iommu->devid] = NULL;
1084
Joerg Roedel23c742d2012-06-12 11:47:34 +02001085 return 0;
Joerg Roedele47d4022008-06-26 21:27:48 +02001086}
1087
Joerg Roedelb65233a2008-07-11 17:14:21 +02001088/*
1089 * Iterates over all IOMMU entries in the ACPI table, allocates the
1090 * IOMMU structure and initializes it with init_iommu_one()
1091 */
Joerg Roedele47d4022008-06-26 21:27:48 +02001092static int __init init_iommu_all(struct acpi_table_header *table)
1093{
1094 u8 *p = (u8 *)table, *end = (u8 *)table;
1095 struct ivhd_header *h;
1096 struct amd_iommu *iommu;
1097 int ret;
1098
Joerg Roedele47d4022008-06-26 21:27:48 +02001099 end += table->length;
1100 p += IVRS_HEADER_LENGTH;
1101
1102 while (p < end) {
1103 h = (struct ivhd_header *)p;
1104 switch (*p) {
1105 case ACPI_IVHD_TYPE:
Joerg Roedel9c720412009-05-20 13:53:57 +02001106
Joerg Roedelae908c22009-09-01 16:52:16 +02001107 DUMP_printk("device: %02x:%02x.%01x cap: %04x "
Joerg Roedel9c720412009-05-20 13:53:57 +02001108 "seg: %d flags: %01x info %04x\n",
Shuah Khanc5081cd2013-02-27 17:07:19 -07001109 PCI_BUS_NUM(h->devid), PCI_SLOT(h->devid),
Joerg Roedel9c720412009-05-20 13:53:57 +02001110 PCI_FUNC(h->devid), h->cap_ptr,
1111 h->pci_seg, h->flags, h->info);
1112 DUMP_printk(" mmio-addr: %016llx\n",
1113 h->mmio_phys);
1114
Joerg Roedele47d4022008-06-26 21:27:48 +02001115 iommu = kzalloc(sizeof(struct amd_iommu), GFP_KERNEL);
Joerg Roedel02f3b3f2012-06-11 17:45:25 +02001116 if (iommu == NULL)
1117 return -ENOMEM;
Joerg Roedel3551a702010-03-01 13:52:19 +01001118
Joerg Roedele47d4022008-06-26 21:27:48 +02001119 ret = init_iommu_one(iommu, h);
Joerg Roedel02f3b3f2012-06-11 17:45:25 +02001120 if (ret)
1121 return ret;
Joerg Roedele47d4022008-06-26 21:27:48 +02001122 break;
1123 default:
1124 break;
1125 }
1126 p += h->length;
1127
1128 }
1129 WARN_ON(p != end);
1130
1131 return 0;
1132}
1133
Steven L Kinney30861dd2013-06-05 16:11:48 -05001134
1135static void init_iommu_perf_ctr(struct amd_iommu *iommu)
1136{
1137 u64 val = 0xabcd, val2 = 0;
1138
1139 if (!iommu_feature(iommu, FEATURE_PC))
1140 return;
1141
1142 amd_iommu_pc_present = true;
1143
1144 /* Check if the performance counters can be written to */
1145 if ((0 != amd_iommu_pc_get_set_reg_val(0, 0, 0, 0, &val, true)) ||
1146 (0 != amd_iommu_pc_get_set_reg_val(0, 0, 0, 0, &val2, false)) ||
1147 (val != val2)) {
1148 pr_err("AMD-Vi: Unable to write to IOMMU perf counter.\n");
1149 amd_iommu_pc_present = false;
1150 return;
1151 }
1152
1153 pr_info("AMD-Vi: IOMMU performance counters supported\n");
1154
1155 val = readl(iommu->mmio_base + MMIO_CNTR_CONF_OFFSET);
1156 iommu->max_banks = (u8) ((val >> 12) & 0x3f);
1157 iommu->max_counters = (u8) ((val >> 7) & 0xf);
1158}
1159
Alex Williamson066f2e92014-06-12 16:12:37 -06001160static ssize_t amd_iommu_show_cap(struct device *dev,
1161 struct device_attribute *attr,
1162 char *buf)
1163{
1164 struct amd_iommu *iommu = dev_get_drvdata(dev);
1165 return sprintf(buf, "%x\n", iommu->cap);
1166}
1167static DEVICE_ATTR(cap, S_IRUGO, amd_iommu_show_cap, NULL);
1168
1169static ssize_t amd_iommu_show_features(struct device *dev,
1170 struct device_attribute *attr,
1171 char *buf)
1172{
1173 struct amd_iommu *iommu = dev_get_drvdata(dev);
1174 return sprintf(buf, "%llx\n", iommu->features);
1175}
1176static DEVICE_ATTR(features, S_IRUGO, amd_iommu_show_features, NULL);
1177
1178static struct attribute *amd_iommu_attrs[] = {
1179 &dev_attr_cap.attr,
1180 &dev_attr_features.attr,
1181 NULL,
1182};
1183
1184static struct attribute_group amd_iommu_group = {
1185 .name = "amd-iommu",
1186 .attrs = amd_iommu_attrs,
1187};
1188
1189static const struct attribute_group *amd_iommu_groups[] = {
1190 &amd_iommu_group,
1191 NULL,
1192};
Steven L Kinney30861dd2013-06-05 16:11:48 -05001193
Joerg Roedel23c742d2012-06-12 11:47:34 +02001194static int iommu_init_pci(struct amd_iommu *iommu)
1195{
1196 int cap_ptr = iommu->cap_ptr;
1197 u32 range, misc, low, high;
1198
Shuah Khanc5081cd2013-02-27 17:07:19 -07001199 iommu->dev = pci_get_bus_and_slot(PCI_BUS_NUM(iommu->devid),
Joerg Roedel23c742d2012-06-12 11:47:34 +02001200 iommu->devid & 0xff);
1201 if (!iommu->dev)
1202 return -ENODEV;
1203
Jiang Liucbbc00b2015-10-09 22:07:31 +08001204 /* Prevent binding other PCI device drivers to IOMMU devices */
1205 iommu->dev->match_driver = false;
1206
Joerg Roedel23c742d2012-06-12 11:47:34 +02001207 pci_read_config_dword(iommu->dev, cap_ptr + MMIO_CAP_HDR_OFFSET,
1208 &iommu->cap);
1209 pci_read_config_dword(iommu->dev, cap_ptr + MMIO_RANGE_OFFSET,
1210 &range);
1211 pci_read_config_dword(iommu->dev, cap_ptr + MMIO_MISC_OFFSET,
1212 &misc);
1213
Joerg Roedel23c742d2012-06-12 11:47:34 +02001214 if (!(iommu->cap & (1 << IOMMU_CAP_IOTLB)))
1215 amd_iommu_iotlb_sup = false;
1216
1217 /* read extended feature bits */
1218 low = readl(iommu->mmio_base + MMIO_EXT_FEATURES);
1219 high = readl(iommu->mmio_base + MMIO_EXT_FEATURES + 4);
1220
1221 iommu->features = ((u64)high << 32) | low;
1222
1223 if (iommu_feature(iommu, FEATURE_GT)) {
1224 int glxval;
Suravee Suthikulpanita919a012014-03-05 18:54:18 -06001225 u32 max_pasid;
1226 u64 pasmax;
Joerg Roedel23c742d2012-06-12 11:47:34 +02001227
Suravee Suthikulpanita919a012014-03-05 18:54:18 -06001228 pasmax = iommu->features & FEATURE_PASID_MASK;
1229 pasmax >>= FEATURE_PASID_SHIFT;
1230 max_pasid = (1 << (pasmax + 1)) - 1;
Joerg Roedel23c742d2012-06-12 11:47:34 +02001231
Suravee Suthikulpanita919a012014-03-05 18:54:18 -06001232 amd_iommu_max_pasid = min(amd_iommu_max_pasid, max_pasid);
1233
1234 BUG_ON(amd_iommu_max_pasid & ~PASID_MASK);
Joerg Roedel23c742d2012-06-12 11:47:34 +02001235
1236 glxval = iommu->features & FEATURE_GLXVAL_MASK;
1237 glxval >>= FEATURE_GLXVAL_SHIFT;
1238
1239 if (amd_iommu_max_glx_val == -1)
1240 amd_iommu_max_glx_val = glxval;
1241 else
1242 amd_iommu_max_glx_val = min(amd_iommu_max_glx_val, glxval);
1243 }
1244
1245 if (iommu_feature(iommu, FEATURE_GT) &&
1246 iommu_feature(iommu, FEATURE_PPR)) {
1247 iommu->is_iommu_v2 = true;
1248 amd_iommu_v2_present = true;
1249 }
1250
Joerg Roedelf2c2db52015-10-20 17:33:42 +02001251 if (iommu_feature(iommu, FEATURE_PPR) && alloc_ppr_log(iommu))
1252 return -ENOMEM;
Joerg Roedel23c742d2012-06-12 11:47:34 +02001253
1254 if (iommu->cap & (1UL << IOMMU_CAP_NPCACHE))
1255 amd_iommu_np_cache = true;
1256
Steven L Kinney30861dd2013-06-05 16:11:48 -05001257 init_iommu_perf_ctr(iommu);
1258
Joerg Roedel23c742d2012-06-12 11:47:34 +02001259 if (is_rd890_iommu(iommu->dev)) {
1260 int i, j;
1261
1262 iommu->root_pdev = pci_get_bus_and_slot(iommu->dev->bus->number,
1263 PCI_DEVFN(0, 0));
1264
1265 /*
1266 * Some rd890 systems may not be fully reconfigured by the
1267 * BIOS, so it's necessary for us to store this information so
1268 * it can be reprogrammed on resume
1269 */
1270 pci_read_config_dword(iommu->dev, iommu->cap_ptr + 4,
1271 &iommu->stored_addr_lo);
1272 pci_read_config_dword(iommu->dev, iommu->cap_ptr + 8,
1273 &iommu->stored_addr_hi);
1274
1275 /* Low bit locks writes to configuration space */
1276 iommu->stored_addr_lo &= ~1;
1277
1278 for (i = 0; i < 6; i++)
1279 for (j = 0; j < 0x12; j++)
1280 iommu->stored_l1[i][j] = iommu_read_l1(iommu, i, j);
1281
1282 for (i = 0; i < 0x83; i++)
1283 iommu->stored_l2[i] = iommu_read_l2(iommu, i);
1284 }
1285
Suravee Suthikulpanit318fe782013-01-24 13:17:53 -06001286 amd_iommu_erratum_746_workaround(iommu);
1287
Alex Williamson066f2e92014-06-12 16:12:37 -06001288 iommu->iommu_dev = iommu_device_create(&iommu->dev->dev, iommu,
1289 amd_iommu_groups, "ivhd%d",
1290 iommu->index);
1291
Joerg Roedel23c742d2012-06-12 11:47:34 +02001292 return pci_enable_device(iommu->dev);
1293}
1294
Joerg Roedel4d121c32012-06-14 12:21:55 +02001295static void print_iommu_info(void)
1296{
1297 static const char * const feat_str[] = {
1298 "PreF", "PPR", "X2APIC", "NX", "GT", "[5]",
1299 "IA", "GA", "HE", "PC"
1300 };
1301 struct amd_iommu *iommu;
1302
1303 for_each_iommu(iommu) {
1304 int i;
1305
1306 pr_info("AMD-Vi: Found IOMMU at %s cap 0x%hx\n",
1307 dev_name(&iommu->dev->dev), iommu->cap_ptr);
1308
1309 if (iommu->cap & (1 << IOMMU_CAP_EFR)) {
1310 pr_info("AMD-Vi: Extended features: ");
Joerg Roedel2bd5ed02012-08-10 11:34:08 +02001311 for (i = 0; i < ARRAY_SIZE(feat_str); ++i) {
Joerg Roedel4d121c32012-06-14 12:21:55 +02001312 if (iommu_feature(iommu, (1ULL << i)))
1313 pr_cont(" %s", feat_str[i]);
1314 }
Steven L Kinney30861dd2013-06-05 16:11:48 -05001315 pr_cont("\n");
Borislav Petkov500c25e2012-09-28 16:22:26 +02001316 }
Joerg Roedel4d121c32012-06-14 12:21:55 +02001317 }
Joerg Roedelebe60bb2012-07-02 18:36:03 +02001318 if (irq_remapping_enabled)
1319 pr_info("AMD-Vi: Interrupt remapping enabled\n");
Joerg Roedel4d121c32012-06-14 12:21:55 +02001320}
1321
Joerg Roedel2c0ae172012-06-12 15:59:30 +02001322static int __init amd_iommu_init_pci(void)
Joerg Roedel23c742d2012-06-12 11:47:34 +02001323{
1324 struct amd_iommu *iommu;
1325 int ret = 0;
1326
1327 for_each_iommu(iommu) {
1328 ret = iommu_init_pci(iommu);
1329 if (ret)
1330 break;
1331 }
1332
Joerg Roedelaafd8ba2015-05-28 18:41:39 +02001333 init_device_table_dma();
Joerg Roedel23c742d2012-06-12 11:47:34 +02001334
Joerg Roedelaafd8ba2015-05-28 18:41:39 +02001335 for_each_iommu(iommu)
1336 iommu_flush_all_caches(iommu);
1337
Joerg Roedel3a18404c2015-05-28 18:41:45 +02001338 ret = amd_iommu_init_api();
Joerg Roedel23c742d2012-06-12 11:47:34 +02001339
Joerg Roedel3a18404c2015-05-28 18:41:45 +02001340 if (!ret)
1341 print_iommu_info();
Joerg Roedel4d121c32012-06-14 12:21:55 +02001342
Joerg Roedel23c742d2012-06-12 11:47:34 +02001343 return ret;
1344}
1345
Joerg Roedelb65233a2008-07-11 17:14:21 +02001346/****************************************************************************
1347 *
Joerg Roedela80dc3e2008-09-11 16:51:41 +02001348 * The following functions initialize the MSI interrupts for all IOMMUs
Frank Arnolddf805ab2012-08-27 19:21:04 +02001349 * in the system. It's a bit challenging because there could be multiple
Joerg Roedela80dc3e2008-09-11 16:51:41 +02001350 * IOMMUs per PCI BDF but we can call pci_enable_msi(x) only once per
1351 * pci_dev.
1352 *
1353 ****************************************************************************/
1354
Joerg Roedel9f800de2009-11-23 12:45:25 +01001355static int iommu_setup_msi(struct amd_iommu *iommu)
Joerg Roedela80dc3e2008-09-11 16:51:41 +02001356{
1357 int r;
Joerg Roedela80dc3e2008-09-11 16:51:41 +02001358
Joerg Roedel9ddd5922012-03-15 16:29:47 +01001359 r = pci_enable_msi(iommu->dev);
1360 if (r)
1361 return r;
Joerg Roedela80dc3e2008-09-11 16:51:41 +02001362
Joerg Roedel72fe00f2011-05-10 10:50:42 +02001363 r = request_threaded_irq(iommu->dev->irq,
1364 amd_iommu_int_handler,
1365 amd_iommu_int_thread,
1366 0, "AMD-Vi",
Suravee Suthikulpanit3f398bc2013-04-22 16:32:34 -05001367 iommu);
Joerg Roedela80dc3e2008-09-11 16:51:41 +02001368
1369 if (r) {
1370 pci_disable_msi(iommu->dev);
Joerg Roedel9ddd5922012-03-15 16:29:47 +01001371 return r;
Joerg Roedela80dc3e2008-09-11 16:51:41 +02001372 }
1373
Joerg Roedelfab6afa2009-05-04 18:46:34 +02001374 iommu->int_enabled = true;
Joerg Roedel1a29ac02011-11-10 15:41:40 +01001375
Joerg Roedela80dc3e2008-09-11 16:51:41 +02001376 return 0;
1377}
1378
Joerg Roedel05f92db2009-05-12 09:52:46 +02001379static int iommu_init_msi(struct amd_iommu *iommu)
Joerg Roedela80dc3e2008-09-11 16:51:41 +02001380{
Joerg Roedel9ddd5922012-03-15 16:29:47 +01001381 int ret;
1382
Joerg Roedela80dc3e2008-09-11 16:51:41 +02001383 if (iommu->int_enabled)
Joerg Roedel9ddd5922012-03-15 16:29:47 +01001384 goto enable_faults;
Joerg Roedela80dc3e2008-09-11 16:51:41 +02001385
Yijing Wang82fcfc62013-08-08 21:12:36 +08001386 if (iommu->dev->msi_cap)
Joerg Roedel9ddd5922012-03-15 16:29:47 +01001387 ret = iommu_setup_msi(iommu);
1388 else
1389 ret = -ENODEV;
Joerg Roedela80dc3e2008-09-11 16:51:41 +02001390
Joerg Roedel9ddd5922012-03-15 16:29:47 +01001391 if (ret)
1392 return ret;
1393
1394enable_faults:
1395 iommu_feature_enable(iommu, CONTROL_EVT_INT_EN);
1396
1397 if (iommu->ppr_log != NULL)
1398 iommu_feature_enable(iommu, CONTROL_PPFINT_EN);
1399
1400 return 0;
Joerg Roedela80dc3e2008-09-11 16:51:41 +02001401}
1402
1403/****************************************************************************
1404 *
Joerg Roedelb65233a2008-07-11 17:14:21 +02001405 * The next functions belong to the third pass of parsing the ACPI
1406 * table. In this last pass the memory mapping requirements are
Frank Arnolddf805ab2012-08-27 19:21:04 +02001407 * gathered (like exclusion and unity mapping ranges).
Joerg Roedelb65233a2008-07-11 17:14:21 +02001408 *
1409 ****************************************************************************/
1410
Joerg Roedelbe2a0222008-06-26 21:27:49 +02001411static void __init free_unity_maps(void)
1412{
1413 struct unity_map_entry *entry, *next;
1414
1415 list_for_each_entry_safe(entry, next, &amd_iommu_unity_map, list) {
1416 list_del(&entry->list);
1417 kfree(entry);
1418 }
1419}
1420
Joerg Roedelb65233a2008-07-11 17:14:21 +02001421/* called when we find an exclusion range definition in ACPI */
Joerg Roedelbe2a0222008-06-26 21:27:49 +02001422static int __init init_exclusion_range(struct ivmd_header *m)
1423{
1424 int i;
1425
1426 switch (m->type) {
1427 case ACPI_IVMD_TYPE:
1428 set_device_exclusion_range(m->devid, m);
1429 break;
1430 case ACPI_IVMD_TYPE_ALL:
Joerg Roedel3a61ec32008-07-25 13:07:50 +02001431 for (i = 0; i <= amd_iommu_last_bdf; ++i)
Joerg Roedelbe2a0222008-06-26 21:27:49 +02001432 set_device_exclusion_range(i, m);
1433 break;
1434 case ACPI_IVMD_TYPE_RANGE:
1435 for (i = m->devid; i <= m->aux; ++i)
1436 set_device_exclusion_range(i, m);
1437 break;
1438 default:
1439 break;
1440 }
1441
1442 return 0;
1443}
1444
Joerg Roedelb65233a2008-07-11 17:14:21 +02001445/* called for unity map ACPI definition */
Joerg Roedelbe2a0222008-06-26 21:27:49 +02001446static int __init init_unity_map_range(struct ivmd_header *m)
1447{
Joerg Roedel98f1ad22012-07-06 13:28:37 +02001448 struct unity_map_entry *e = NULL;
Joerg Roedel02acc432009-05-20 16:24:21 +02001449 char *s;
Joerg Roedelbe2a0222008-06-26 21:27:49 +02001450
1451 e = kzalloc(sizeof(*e), GFP_KERNEL);
1452 if (e == NULL)
1453 return -ENOMEM;
1454
1455 switch (m->type) {
1456 default:
Joerg Roedel0bc252f2009-05-22 12:48:05 +02001457 kfree(e);
1458 return 0;
Joerg Roedelbe2a0222008-06-26 21:27:49 +02001459 case ACPI_IVMD_TYPE:
Joerg Roedel02acc432009-05-20 16:24:21 +02001460 s = "IVMD_TYPEi\t\t\t";
Joerg Roedelbe2a0222008-06-26 21:27:49 +02001461 e->devid_start = e->devid_end = m->devid;
1462 break;
1463 case ACPI_IVMD_TYPE_ALL:
Joerg Roedel02acc432009-05-20 16:24:21 +02001464 s = "IVMD_TYPE_ALL\t\t";
Joerg Roedelbe2a0222008-06-26 21:27:49 +02001465 e->devid_start = 0;
1466 e->devid_end = amd_iommu_last_bdf;
1467 break;
1468 case ACPI_IVMD_TYPE_RANGE:
Joerg Roedel02acc432009-05-20 16:24:21 +02001469 s = "IVMD_TYPE_RANGE\t\t";
Joerg Roedelbe2a0222008-06-26 21:27:49 +02001470 e->devid_start = m->devid;
1471 e->devid_end = m->aux;
1472 break;
1473 }
1474 e->address_start = PAGE_ALIGN(m->range_start);
1475 e->address_end = e->address_start + PAGE_ALIGN(m->range_length);
1476 e->prot = m->flags >> 1;
1477
Joerg Roedel02acc432009-05-20 16:24:21 +02001478 DUMP_printk("%s devid_start: %02x:%02x.%x devid_end: %02x:%02x.%x"
1479 " range_start: %016llx range_end: %016llx flags: %x\n", s,
Shuah Khanc5081cd2013-02-27 17:07:19 -07001480 PCI_BUS_NUM(e->devid_start), PCI_SLOT(e->devid_start),
1481 PCI_FUNC(e->devid_start), PCI_BUS_NUM(e->devid_end),
Joerg Roedel02acc432009-05-20 16:24:21 +02001482 PCI_SLOT(e->devid_end), PCI_FUNC(e->devid_end),
1483 e->address_start, e->address_end, m->flags);
1484
Joerg Roedelbe2a0222008-06-26 21:27:49 +02001485 list_add_tail(&e->list, &amd_iommu_unity_map);
1486
1487 return 0;
1488}
1489
Joerg Roedelb65233a2008-07-11 17:14:21 +02001490/* iterates over all memory definitions we find in the ACPI table */
Joerg Roedelbe2a0222008-06-26 21:27:49 +02001491static int __init init_memory_definitions(struct acpi_table_header *table)
1492{
1493 u8 *p = (u8 *)table, *end = (u8 *)table;
1494 struct ivmd_header *m;
1495
Joerg Roedelbe2a0222008-06-26 21:27:49 +02001496 end += table->length;
1497 p += IVRS_HEADER_LENGTH;
1498
1499 while (p < end) {
1500 m = (struct ivmd_header *)p;
1501 if (m->flags & IVMD_FLAG_EXCL_RANGE)
1502 init_exclusion_range(m);
1503 else if (m->flags & IVMD_FLAG_UNITY_MAP)
1504 init_unity_map_range(m);
1505
1506 p += m->length;
1507 }
1508
1509 return 0;
1510}
1511
Joerg Roedelb65233a2008-07-11 17:14:21 +02001512/*
Joerg Roedel9f5f5fb2008-08-14 19:55:16 +02001513 * Init the device table to not allow DMA access for devices and
1514 * suppress all page faults
1515 */
Joerg Roedel33f28c52012-06-15 18:03:31 +02001516static void init_device_table_dma(void)
Joerg Roedel9f5f5fb2008-08-14 19:55:16 +02001517{
Joerg Roedel0de66d52011-06-06 16:04:02 +02001518 u32 devid;
Joerg Roedel9f5f5fb2008-08-14 19:55:16 +02001519
1520 for (devid = 0; devid <= amd_iommu_last_bdf; ++devid) {
1521 set_dev_entry_bit(devid, DEV_ENTRY_VALID);
1522 set_dev_entry_bit(devid, DEV_ENTRY_TRANSLATION);
Joerg Roedel9f5f5fb2008-08-14 19:55:16 +02001523 }
1524}
1525
Joerg Roedeld04e0ba2012-07-02 16:02:20 +02001526static void __init uninit_device_table_dma(void)
1527{
1528 u32 devid;
1529
1530 for (devid = 0; devid <= amd_iommu_last_bdf; ++devid) {
1531 amd_iommu_dev_table[devid].data[0] = 0ULL;
1532 amd_iommu_dev_table[devid].data[1] = 0ULL;
1533 }
1534}
1535
Joerg Roedel33f28c52012-06-15 18:03:31 +02001536static void init_device_table(void)
1537{
1538 u32 devid;
1539
1540 if (!amd_iommu_irq_remap)
1541 return;
1542
1543 for (devid = 0; devid <= amd_iommu_last_bdf; ++devid)
1544 set_dev_entry_bit(devid, DEV_ENTRY_IRQ_TBL_EN);
1545}
1546
Joerg Roedele9bf5192010-09-20 14:33:07 +02001547static void iommu_init_flags(struct amd_iommu *iommu)
1548{
1549 iommu->acpi_flags & IVHD_FLAG_HT_TUN_EN_MASK ?
1550 iommu_feature_enable(iommu, CONTROL_HT_TUN_EN) :
1551 iommu_feature_disable(iommu, CONTROL_HT_TUN_EN);
1552
1553 iommu->acpi_flags & IVHD_FLAG_PASSPW_EN_MASK ?
1554 iommu_feature_enable(iommu, CONTROL_PASSPW_EN) :
1555 iommu_feature_disable(iommu, CONTROL_PASSPW_EN);
1556
1557 iommu->acpi_flags & IVHD_FLAG_RESPASSPW_EN_MASK ?
1558 iommu_feature_enable(iommu, CONTROL_RESPASSPW_EN) :
1559 iommu_feature_disable(iommu, CONTROL_RESPASSPW_EN);
1560
1561 iommu->acpi_flags & IVHD_FLAG_ISOC_EN_MASK ?
1562 iommu_feature_enable(iommu, CONTROL_ISOC_EN) :
1563 iommu_feature_disable(iommu, CONTROL_ISOC_EN);
1564
1565 /*
1566 * make IOMMU memory accesses cache coherent
1567 */
1568 iommu_feature_enable(iommu, CONTROL_COHERENT_EN);
Joerg Roedel1456e9d2011-12-22 14:51:53 +01001569
1570 /* Set IOTLB invalidation timeout to 1s */
1571 iommu_set_inv_tlb_timeout(iommu, CTRL_INV_TO_1S);
Joerg Roedele9bf5192010-09-20 14:33:07 +02001572}
1573
Matthew Garrett5bcd7572010-10-04 14:59:31 -04001574static void iommu_apply_resume_quirks(struct amd_iommu *iommu)
Joerg Roedel4c894f42010-09-23 15:15:19 +02001575{
Matthew Garrett5bcd7572010-10-04 14:59:31 -04001576 int i, j;
1577 u32 ioc_feature_control;
Joerg Roedelc1bf94e2012-05-31 17:38:11 +02001578 struct pci_dev *pdev = iommu->root_pdev;
Matthew Garrett5bcd7572010-10-04 14:59:31 -04001579
1580 /* RD890 BIOSes may not have completely reconfigured the iommu */
Joerg Roedelc1bf94e2012-05-31 17:38:11 +02001581 if (!is_rd890_iommu(iommu->dev) || !pdev)
Matthew Garrett5bcd7572010-10-04 14:59:31 -04001582 return;
1583
1584 /*
1585 * First, we need to ensure that the iommu is enabled. This is
1586 * controlled by a register in the northbridge
1587 */
Matthew Garrett5bcd7572010-10-04 14:59:31 -04001588
1589 /* Select Northbridge indirect register 0x75 and enable writing */
1590 pci_write_config_dword(pdev, 0x60, 0x75 | (1 << 7));
1591 pci_read_config_dword(pdev, 0x64, &ioc_feature_control);
1592
1593 /* Enable the iommu */
1594 if (!(ioc_feature_control & 0x1))
1595 pci_write_config_dword(pdev, 0x64, ioc_feature_control | 1);
1596
Matthew Garrett5bcd7572010-10-04 14:59:31 -04001597 /* Restore the iommu BAR */
1598 pci_write_config_dword(iommu->dev, iommu->cap_ptr + 4,
1599 iommu->stored_addr_lo);
1600 pci_write_config_dword(iommu->dev, iommu->cap_ptr + 8,
1601 iommu->stored_addr_hi);
1602
1603 /* Restore the l1 indirect regs for each of the 6 l1s */
1604 for (i = 0; i < 6; i++)
1605 for (j = 0; j < 0x12; j++)
1606 iommu_write_l1(iommu, i, j, iommu->stored_l1[i][j]);
1607
1608 /* Restore the l2 indirect regs */
1609 for (i = 0; i < 0x83; i++)
1610 iommu_write_l2(iommu, i, iommu->stored_l2[i]);
1611
1612 /* Lock PCI setup registers */
1613 pci_write_config_dword(iommu->dev, iommu->cap_ptr + 4,
1614 iommu->stored_addr_lo | 1);
Joerg Roedel4c894f42010-09-23 15:15:19 +02001615}
1616
Joerg Roedel9f5f5fb2008-08-14 19:55:16 +02001617/*
Joerg Roedelb65233a2008-07-11 17:14:21 +02001618 * This function finally enables all IOMMUs found in the system after
1619 * they have been initialized
1620 */
Joerg Roedel11ee5ac2012-06-12 16:30:06 +02001621static void early_enable_iommus(void)
Joerg Roedel87361972008-06-26 21:28:07 +02001622{
1623 struct amd_iommu *iommu;
1624
Joerg Roedel3bd22172009-05-04 15:06:20 +02001625 for_each_iommu(iommu) {
Chris Wrighta8c485b2009-06-15 15:53:45 +02001626 iommu_disable(iommu);
Joerg Roedele9bf5192010-09-20 14:33:07 +02001627 iommu_init_flags(iommu);
Joerg Roedel58492e12009-05-04 18:41:16 +02001628 iommu_set_device_table(iommu);
1629 iommu_enable_command_buffer(iommu);
1630 iommu_enable_event_buffer(iommu);
Joerg Roedel87361972008-06-26 21:28:07 +02001631 iommu_set_exclusion_range(iommu);
1632 iommu_enable(iommu);
Joerg Roedel7d0c5cc2011-04-07 08:16:10 +02001633 iommu_flush_all_caches(iommu);
Joerg Roedel87361972008-06-26 21:28:07 +02001634 }
1635}
1636
Joerg Roedel11ee5ac2012-06-12 16:30:06 +02001637static void enable_iommus_v2(void)
1638{
1639 struct amd_iommu *iommu;
1640
1641 for_each_iommu(iommu) {
1642 iommu_enable_ppr_log(iommu);
1643 iommu_enable_gt(iommu);
1644 }
1645}
1646
1647static void enable_iommus(void)
1648{
1649 early_enable_iommus();
1650
1651 enable_iommus_v2();
1652}
1653
Joerg Roedel92ac4322009-05-19 19:06:27 +02001654static void disable_iommus(void)
1655{
1656 struct amd_iommu *iommu;
1657
1658 for_each_iommu(iommu)
1659 iommu_disable(iommu);
1660}
1661
Joerg Roedel7441e9c2008-06-30 20:18:02 +02001662/*
1663 * Suspend/Resume support
1664 * disable suspend until real resume implemented
1665 */
1666
Rafael J. Wysockif3c6ea12011-03-23 22:15:54 +01001667static void amd_iommu_resume(void)
Joerg Roedel7441e9c2008-06-30 20:18:02 +02001668{
Matthew Garrett5bcd7572010-10-04 14:59:31 -04001669 struct amd_iommu *iommu;
1670
1671 for_each_iommu(iommu)
1672 iommu_apply_resume_quirks(iommu);
1673
Joerg Roedel736501e2009-05-12 09:56:12 +02001674 /* re-load the hardware */
1675 enable_iommus();
Joerg Roedel3d9761e2012-03-15 16:39:21 +01001676
1677 amd_iommu_enable_interrupts();
Joerg Roedel7441e9c2008-06-30 20:18:02 +02001678}
1679
Rafael J. Wysockif3c6ea12011-03-23 22:15:54 +01001680static int amd_iommu_suspend(void)
Joerg Roedel7441e9c2008-06-30 20:18:02 +02001681{
Joerg Roedel736501e2009-05-12 09:56:12 +02001682 /* disable IOMMUs to go out of the way for BIOS */
1683 disable_iommus();
1684
1685 return 0;
Joerg Roedel7441e9c2008-06-30 20:18:02 +02001686}
1687
Rafael J. Wysockif3c6ea12011-03-23 22:15:54 +01001688static struct syscore_ops amd_iommu_syscore_ops = {
Joerg Roedel7441e9c2008-06-30 20:18:02 +02001689 .suspend = amd_iommu_suspend,
1690 .resume = amd_iommu_resume,
1691};
1692
Joerg Roedel8704a1b2012-03-01 15:57:53 +01001693static void __init free_on_init_error(void)
1694{
Joerg Roedel0ea2c422012-06-15 18:05:20 +02001695 free_pages((unsigned long)irq_lookup_table,
1696 get_order(rlookup_table_size));
Joerg Roedel8704a1b2012-03-01 15:57:53 +01001697
Julia Lawalla5919892015-09-13 14:15:31 +02001698 kmem_cache_destroy(amd_iommu_irq_cache);
1699 amd_iommu_irq_cache = NULL;
Joerg Roedel8704a1b2012-03-01 15:57:53 +01001700
1701 free_pages((unsigned long)amd_iommu_rlookup_table,
1702 get_order(rlookup_table_size));
1703
1704 free_pages((unsigned long)amd_iommu_alias_table,
1705 get_order(alias_table_size));
1706
1707 free_pages((unsigned long)amd_iommu_dev_table,
1708 get_order(dev_table_size));
1709
1710 free_iommu_all();
1711
Joerg Roedel8704a1b2012-03-01 15:57:53 +01001712#ifdef CONFIG_GART_IOMMU
1713 /*
1714 * We failed to initialize the AMD IOMMU - try fallback to GART
1715 * if possible.
1716 */
1717 gart_iommu_init();
1718
1719#endif
1720}
1721
Joerg Roedelc2ff5cf52012-10-16 14:52:51 +02001722/* SB IOAPIC is always on this device in AMD systems */
1723#define IOAPIC_SB_DEVID ((0x00 << 8) | PCI_DEVFN(0x14, 0))
1724
Joerg Roedeleb1eb7a2012-07-05 11:58:02 +02001725static bool __init check_ioapic_information(void)
1726{
Joerg Roedeldfbb6d42013-04-09 19:06:18 +02001727 const char *fw_bug = FW_BUG;
Joerg Roedelc2ff5cf52012-10-16 14:52:51 +02001728 bool ret, has_sb_ioapic;
Joerg Roedeleb1eb7a2012-07-05 11:58:02 +02001729 int idx;
1730
Joerg Roedelc2ff5cf52012-10-16 14:52:51 +02001731 has_sb_ioapic = false;
1732 ret = false;
Joerg Roedeleb1eb7a2012-07-05 11:58:02 +02001733
Joerg Roedeldfbb6d42013-04-09 19:06:18 +02001734 /*
1735 * If we have map overrides on the kernel command line the
1736 * messages in this function might not describe firmware bugs
1737 * anymore - so be careful
1738 */
1739 if (cmdline_maps)
1740 fw_bug = "";
1741
Joerg Roedelc2ff5cf52012-10-16 14:52:51 +02001742 for (idx = 0; idx < nr_ioapics; idx++) {
1743 int devid, id = mpc_ioapic_id(idx);
1744
1745 devid = get_ioapic_devid(id);
1746 if (devid < 0) {
Joerg Roedeldfbb6d42013-04-09 19:06:18 +02001747 pr_err("%sAMD-Vi: IOAPIC[%d] not in IVRS table\n",
1748 fw_bug, id);
Joerg Roedelc2ff5cf52012-10-16 14:52:51 +02001749 ret = false;
1750 } else if (devid == IOAPIC_SB_DEVID) {
1751 has_sb_ioapic = true;
1752 ret = true;
Joerg Roedeleb1eb7a2012-07-05 11:58:02 +02001753 }
1754 }
1755
Joerg Roedelc2ff5cf52012-10-16 14:52:51 +02001756 if (!has_sb_ioapic) {
1757 /*
1758 * We expect the SB IOAPIC to be listed in the IVRS
1759 * table. The system timer is connected to the SB IOAPIC
1760 * and if we don't have it in the list the system will
1761 * panic at boot time. This situation usually happens
1762 * when the BIOS is buggy and provides us the wrong
1763 * device id for the IOAPIC in the system.
1764 */
Joerg Roedeldfbb6d42013-04-09 19:06:18 +02001765 pr_err("%sAMD-Vi: No southbridge IOAPIC found\n", fw_bug);
Joerg Roedelc2ff5cf52012-10-16 14:52:51 +02001766 }
1767
1768 if (!ret)
Joerg Roedeldfbb6d42013-04-09 19:06:18 +02001769 pr_err("AMD-Vi: Disabling interrupt remapping\n");
Joerg Roedelc2ff5cf52012-10-16 14:52:51 +02001770
1771 return ret;
Joerg Roedeleb1eb7a2012-07-05 11:58:02 +02001772}
1773
Joerg Roedeld04e0ba2012-07-02 16:02:20 +02001774static void __init free_dma_resources(void)
1775{
Joerg Roedeld04e0ba2012-07-02 16:02:20 +02001776 free_pages((unsigned long)amd_iommu_pd_alloc_bitmap,
1777 get_order(MAX_DOMAIN_ID/8));
1778
1779 free_unity_maps();
1780}
1781
Joerg Roedelb65233a2008-07-11 17:14:21 +02001782/*
Joerg Roedel8704a1b2012-03-01 15:57:53 +01001783 * This is the hardware init function for AMD IOMMU in the system.
1784 * This function is called either from amd_iommu_init or from the interrupt
1785 * remapping setup code.
Joerg Roedelb65233a2008-07-11 17:14:21 +02001786 *
1787 * This function basically parses the ACPI table for AMD IOMMU (IVRS)
1788 * three times:
1789 *
1790 * 1 pass) Find the highest PCI device id the driver has to handle.
1791 * Upon this information the size of the data structures is
1792 * determined that needs to be allocated.
1793 *
1794 * 2 pass) Initialize the data structures just allocated with the
1795 * information in the ACPI table about available AMD IOMMUs
1796 * in the system. It also maps the PCI devices in the
1797 * system to specific IOMMUs
1798 *
1799 * 3 pass) After the basic data structures are allocated and
1800 * initialized we update them with information about memory
1801 * remapping requirements parsed out of the ACPI table in
1802 * this last pass.
1803 *
Joerg Roedel8704a1b2012-03-01 15:57:53 +01001804 * After everything is set up the IOMMUs are enabled and the necessary
1805 * hotplug and suspend notifiers are registered.
Joerg Roedelb65233a2008-07-11 17:14:21 +02001806 */
Joerg Roedel643511b2012-06-12 12:09:35 +02001807static int __init early_amd_iommu_init(void)
Joerg Roedelfe74c9c2008-06-26 21:27:50 +02001808{
Joerg Roedel02f3b3f2012-06-11 17:45:25 +02001809 struct acpi_table_header *ivrs_base;
1810 acpi_size ivrs_size;
1811 acpi_status status;
Joerg Roedelfe74c9c2008-06-26 21:27:50 +02001812 int i, ret = 0;
1813
Joerg Roedel643511b2012-06-12 12:09:35 +02001814 if (!amd_iommu_detected)
Joerg Roedel8704a1b2012-03-01 15:57:53 +01001815 return -ENODEV;
1816
Joerg Roedel02f3b3f2012-06-11 17:45:25 +02001817 status = acpi_get_table_with_size("IVRS", 0, &ivrs_base, &ivrs_size);
1818 if (status == AE_NOT_FOUND)
1819 return -ENODEV;
1820 else if (ACPI_FAILURE(status)) {
1821 const char *err = acpi_format_exception(status);
1822 pr_err("AMD-Vi: IVRS table error: %s\n", err);
1823 return -EINVAL;
1824 }
1825
Joerg Roedelfe74c9c2008-06-26 21:27:50 +02001826 /*
1827 * First parse ACPI tables to find the largest Bus/Dev/Func
1828 * we need to handle. Upon this information the shared data
1829 * structures for the IOMMUs in the system will be allocated
1830 */
Joerg Roedel2c0ae172012-06-12 15:59:30 +02001831 ret = find_last_devid_acpi(ivrs_base);
1832 if (ret)
Joerg Roedel3551a702010-03-01 13:52:19 +01001833 goto out;
1834
Joerg Roedelc5714842008-07-11 17:14:25 +02001835 dev_table_size = tbl_size(DEV_TABLE_ENTRY_SIZE);
1836 alias_table_size = tbl_size(ALIAS_TABLE_ENTRY_SIZE);
1837 rlookup_table_size = tbl_size(RLOOKUP_TABLE_ENTRY_SIZE);
Joerg Roedelfe74c9c2008-06-26 21:27:50 +02001838
Joerg Roedelfe74c9c2008-06-26 21:27:50 +02001839 /* Device table - directly used by all IOMMUs */
Joerg Roedel8704a1b2012-03-01 15:57:53 +01001840 ret = -ENOMEM;
Joerg Roedel5dc8bff2008-07-11 17:14:32 +02001841 amd_iommu_dev_table = (void *)__get_free_pages(GFP_KERNEL | __GFP_ZERO,
Joerg Roedelfe74c9c2008-06-26 21:27:50 +02001842 get_order(dev_table_size));
1843 if (amd_iommu_dev_table == NULL)
1844 goto out;
1845
1846 /*
1847 * Alias table - map PCI Bus/Dev/Func to Bus/Dev/Func the
1848 * IOMMU see for that device
1849 */
1850 amd_iommu_alias_table = (void *)__get_free_pages(GFP_KERNEL,
1851 get_order(alias_table_size));
1852 if (amd_iommu_alias_table == NULL)
Joerg Roedel2c0ae172012-06-12 15:59:30 +02001853 goto out;
Joerg Roedelfe74c9c2008-06-26 21:27:50 +02001854
1855 /* IOMMU rlookup table - find the IOMMU for a specific device */
Joerg Roedel83fd5cc2008-12-16 19:17:11 +01001856 amd_iommu_rlookup_table = (void *)__get_free_pages(
1857 GFP_KERNEL | __GFP_ZERO,
Joerg Roedelfe74c9c2008-06-26 21:27:50 +02001858 get_order(rlookup_table_size));
1859 if (amd_iommu_rlookup_table == NULL)
Joerg Roedel2c0ae172012-06-12 15:59:30 +02001860 goto out;
Joerg Roedelfe74c9c2008-06-26 21:27:50 +02001861
Joerg Roedel5dc8bff2008-07-11 17:14:32 +02001862 amd_iommu_pd_alloc_bitmap = (void *)__get_free_pages(
1863 GFP_KERNEL | __GFP_ZERO,
Joerg Roedelfe74c9c2008-06-26 21:27:50 +02001864 get_order(MAX_DOMAIN_ID/8));
1865 if (amd_iommu_pd_alloc_bitmap == NULL)
Joerg Roedel2c0ae172012-06-12 15:59:30 +02001866 goto out;
Joerg Roedelfe74c9c2008-06-26 21:27:50 +02001867
1868 /*
Joerg Roedel5dc8bff2008-07-11 17:14:32 +02001869 * let all alias entries point to itself
Joerg Roedelfe74c9c2008-06-26 21:27:50 +02001870 */
Joerg Roedel3a61ec32008-07-25 13:07:50 +02001871 for (i = 0; i <= amd_iommu_last_bdf; ++i)
Joerg Roedelfe74c9c2008-06-26 21:27:50 +02001872 amd_iommu_alias_table[i] = i;
1873
Joerg Roedelfe74c9c2008-06-26 21:27:50 +02001874 /*
1875 * never allocate domain 0 because its used as the non-allocated and
1876 * error value placeholder
1877 */
1878 amd_iommu_pd_alloc_bitmap[0] = 1;
1879
Joerg Roedelaeb26f52009-11-20 16:44:01 +01001880 spin_lock_init(&amd_iommu_pd_lock);
1881
Joerg Roedelfe74c9c2008-06-26 21:27:50 +02001882 /*
1883 * now the data structures are allocated and basically initialized
1884 * start the real acpi table scan
1885 */
Joerg Roedel02f3b3f2012-06-11 17:45:25 +02001886 ret = init_iommu_all(ivrs_base);
1887 if (ret)
Joerg Roedel2c0ae172012-06-12 15:59:30 +02001888 goto out;
Joerg Roedelfe74c9c2008-06-26 21:27:50 +02001889
Joerg Roedeleb1eb7a2012-07-05 11:58:02 +02001890 if (amd_iommu_irq_remap)
1891 amd_iommu_irq_remap = check_ioapic_information();
1892
Joerg Roedel05152a02012-06-15 16:53:51 +02001893 if (amd_iommu_irq_remap) {
1894 /*
1895 * Interrupt remapping enabled, create kmem_cache for the
1896 * remapping tables.
1897 */
Wei Yongjun83ed9c12013-04-23 10:47:44 +08001898 ret = -ENOMEM;
Joerg Roedel05152a02012-06-15 16:53:51 +02001899 amd_iommu_irq_cache = kmem_cache_create("irq_remap_cache",
1900 MAX_IRQS_PER_TABLE * sizeof(u32),
1901 IRQ_TABLE_ALIGNMENT,
1902 0, NULL);
1903 if (!amd_iommu_irq_cache)
1904 goto out;
Joerg Roedel0ea2c422012-06-15 18:05:20 +02001905
1906 irq_lookup_table = (void *)__get_free_pages(
1907 GFP_KERNEL | __GFP_ZERO,
1908 get_order(rlookup_table_size));
1909 if (!irq_lookup_table)
1910 goto out;
Joerg Roedel05152a02012-06-15 16:53:51 +02001911 }
1912
Joerg Roedel02f3b3f2012-06-11 17:45:25 +02001913 ret = init_memory_definitions(ivrs_base);
1914 if (ret)
Joerg Roedel2c0ae172012-06-12 15:59:30 +02001915 goto out;
Joerg Roedel3551a702010-03-01 13:52:19 +01001916
Joerg Roedeleb1eb7a2012-07-05 11:58:02 +02001917 /* init the device table */
1918 init_device_table();
1919
Joerg Roedel8704a1b2012-03-01 15:57:53 +01001920out:
Joerg Roedel02f3b3f2012-06-11 17:45:25 +02001921 /* Don't leak any ACPI memory */
1922 early_acpi_os_unmap_memory((char __iomem *)ivrs_base, ivrs_size);
1923 ivrs_base = NULL;
1924
Joerg Roedel8704a1b2012-03-01 15:57:53 +01001925 return ret;
Joerg Roedel643511b2012-06-12 12:09:35 +02001926}
1927
Gerard Snitselaarae295142012-03-16 11:38:22 -07001928static int amd_iommu_enable_interrupts(void)
Joerg Roedel3d9761e2012-03-15 16:39:21 +01001929{
1930 struct amd_iommu *iommu;
1931 int ret = 0;
1932
1933 for_each_iommu(iommu) {
1934 ret = iommu_init_msi(iommu);
1935 if (ret)
1936 goto out;
1937 }
1938
1939out:
1940 return ret;
1941}
1942
Joerg Roedel02f3b3f2012-06-11 17:45:25 +02001943static bool detect_ivrs(void)
1944{
1945 struct acpi_table_header *ivrs_base;
1946 acpi_size ivrs_size;
1947 acpi_status status;
1948
1949 status = acpi_get_table_with_size("IVRS", 0, &ivrs_base, &ivrs_size);
1950 if (status == AE_NOT_FOUND)
1951 return false;
1952 else if (ACPI_FAILURE(status)) {
1953 const char *err = acpi_format_exception(status);
1954 pr_err("AMD-Vi: IVRS table error: %s\n", err);
1955 return false;
1956 }
1957
1958 early_acpi_os_unmap_memory((char __iomem *)ivrs_base, ivrs_size);
1959
Joerg Roedel1adb7d32012-08-06 14:18:42 +02001960 /* Make sure ACS will be enabled during PCI probe */
1961 pci_request_acs();
1962
Joerg Roedel02f3b3f2012-06-11 17:45:25 +02001963 return true;
1964}
1965
Joerg Roedel2c0ae172012-06-12 15:59:30 +02001966/****************************************************************************
1967 *
1968 * AMD IOMMU Initialization State Machine
1969 *
1970 ****************************************************************************/
1971
1972static int __init state_next(void)
1973{
1974 int ret = 0;
1975
1976 switch (init_state) {
1977 case IOMMU_START_STATE:
1978 if (!detect_ivrs()) {
1979 init_state = IOMMU_NOT_FOUND;
1980 ret = -ENODEV;
1981 } else {
1982 init_state = IOMMU_IVRS_DETECTED;
1983 }
1984 break;
1985 case IOMMU_IVRS_DETECTED:
1986 ret = early_amd_iommu_init();
1987 init_state = ret ? IOMMU_INIT_ERROR : IOMMU_ACPI_FINISHED;
1988 break;
1989 case IOMMU_ACPI_FINISHED:
1990 early_enable_iommus();
1991 register_syscore_ops(&amd_iommu_syscore_ops);
1992 x86_platform.iommu_shutdown = disable_iommus;
1993 init_state = IOMMU_ENABLED;
1994 break;
1995 case IOMMU_ENABLED:
1996 ret = amd_iommu_init_pci();
1997 init_state = ret ? IOMMU_INIT_ERROR : IOMMU_PCI_INIT;
1998 enable_iommus_v2();
1999 break;
2000 case IOMMU_PCI_INIT:
2001 ret = amd_iommu_enable_interrupts();
2002 init_state = ret ? IOMMU_INIT_ERROR : IOMMU_INTERRUPTS_EN;
2003 break;
2004 case IOMMU_INTERRUPTS_EN:
Joerg Roedel1e6a7b02015-07-28 16:58:48 +02002005 ret = amd_iommu_init_dma_ops();
Joerg Roedel2c0ae172012-06-12 15:59:30 +02002006 init_state = ret ? IOMMU_INIT_ERROR : IOMMU_DMA_OPS;
2007 break;
2008 case IOMMU_DMA_OPS:
2009 init_state = IOMMU_INITIALIZED;
2010 break;
2011 case IOMMU_INITIALIZED:
2012 /* Nothing to do */
2013 break;
2014 case IOMMU_NOT_FOUND:
2015 case IOMMU_INIT_ERROR:
2016 /* Error states => do nothing */
2017 ret = -EINVAL;
2018 break;
2019 default:
2020 /* Unknown state */
2021 BUG();
2022 }
2023
2024 return ret;
2025}
2026
2027static int __init iommu_go_to_state(enum iommu_init_state state)
2028{
2029 int ret = 0;
2030
2031 while (init_state != state) {
2032 ret = state_next();
2033 if (init_state == IOMMU_NOT_FOUND ||
2034 init_state == IOMMU_INIT_ERROR)
2035 break;
2036 }
2037
2038 return ret;
2039}
2040
Joerg Roedel6b474b82012-06-26 16:46:04 +02002041#ifdef CONFIG_IRQ_REMAP
2042int __init amd_iommu_prepare(void)
2043{
Thomas Gleixner3f4cb7c2015-01-23 14:32:46 +01002044 int ret;
2045
Jiang Liu7fa1c842015-01-07 15:31:42 +08002046 amd_iommu_irq_remap = true;
Joerg Roedel84d07792015-01-07 15:31:39 +08002047
Thomas Gleixner3f4cb7c2015-01-23 14:32:46 +01002048 ret = iommu_go_to_state(IOMMU_ACPI_FINISHED);
2049 if (ret)
2050 return ret;
2051 return amd_iommu_irq_remap ? 0 : -ENODEV;
Joerg Roedel6b474b82012-06-26 16:46:04 +02002052}
Joerg Roedel2c0ae172012-06-12 15:59:30 +02002053
Joerg Roedel6b474b82012-06-26 16:46:04 +02002054int __init amd_iommu_enable(void)
2055{
2056 int ret;
2057
2058 ret = iommu_go_to_state(IOMMU_ENABLED);
2059 if (ret)
2060 return ret;
2061
2062 irq_remapping_enabled = 1;
2063
2064 return 0;
2065}
2066
2067void amd_iommu_disable(void)
2068{
2069 amd_iommu_suspend();
2070}
2071
2072int amd_iommu_reenable(int mode)
2073{
2074 amd_iommu_resume();
2075
2076 return 0;
2077}
2078
2079int __init amd_iommu_enable_faulting(void)
2080{
2081 /* We enable MSI later when PCI is initialized */
2082 return 0;
2083}
2084#endif
Joerg Roedel2c0ae172012-06-12 15:59:30 +02002085
Joerg Roedel8704a1b2012-03-01 15:57:53 +01002086/*
2087 * This is the core init function for AMD IOMMU hardware in the system.
2088 * This function is called from the generic x86 DMA layer initialization
2089 * code.
Joerg Roedel8704a1b2012-03-01 15:57:53 +01002090 */
2091static int __init amd_iommu_init(void)
2092{
Joerg Roedel2c0ae172012-06-12 15:59:30 +02002093 int ret;
Joerg Roedel8704a1b2012-03-01 15:57:53 +01002094
Joerg Roedel2c0ae172012-06-12 15:59:30 +02002095 ret = iommu_go_to_state(IOMMU_INITIALIZED);
2096 if (ret) {
Joerg Roedeld04e0ba2012-07-02 16:02:20 +02002097 free_dma_resources();
2098 if (!irq_remapping_enabled) {
2099 disable_iommus();
2100 free_on_init_error();
2101 } else {
2102 struct amd_iommu *iommu;
2103
2104 uninit_device_table_dma();
2105 for_each_iommu(iommu)
2106 iommu_flush_all_caches(iommu);
2107 }
Joerg Roedel2c0ae172012-06-12 15:59:30 +02002108 }
Joerg Roedel8704a1b2012-03-01 15:57:53 +01002109
Joerg Roedelfe74c9c2008-06-26 21:27:50 +02002110 return ret;
Joerg Roedelfe74c9c2008-06-26 21:27:50 +02002111}
2112
Joerg Roedelb65233a2008-07-11 17:14:21 +02002113/****************************************************************************
2114 *
2115 * Early detect code. This code runs at IOMMU detection time in the DMA
2116 * layer. It just looks if there is an IVRS ACPI table to detect AMD
2117 * IOMMUs
2118 *
2119 ****************************************************************************/
Konrad Rzeszutek Wilk480125b2010-08-26 13:57:57 -04002120int __init amd_iommu_detect(void)
Joerg Roedelae7877d2008-06-26 21:27:51 +02002121{
Joerg Roedel2c0ae172012-06-12 15:59:30 +02002122 int ret;
Joerg Roedel02f3b3f2012-06-11 17:45:25 +02002123
FUJITA Tomonori75f1cdf2009-11-10 19:46:20 +09002124 if (no_iommu || (iommu_detected && !gart_iommu_aperture))
Konrad Rzeszutek Wilk480125b2010-08-26 13:57:57 -04002125 return -ENODEV;
Joerg Roedelae7877d2008-06-26 21:27:51 +02002126
Joerg Roedela5235722010-05-11 17:12:33 +02002127 if (amd_iommu_disabled)
Konrad Rzeszutek Wilk480125b2010-08-26 13:57:57 -04002128 return -ENODEV;
Joerg Roedela5235722010-05-11 17:12:33 +02002129
Joerg Roedel2c0ae172012-06-12 15:59:30 +02002130 ret = iommu_go_to_state(IOMMU_IVRS_DETECTED);
2131 if (ret)
2132 return ret;
Linus Torvalds11bd04f2009-12-11 12:18:16 -08002133
Joerg Roedel02f3b3f2012-06-11 17:45:25 +02002134 amd_iommu_detected = true;
2135 iommu_detected = 1;
2136 x86_init.iommu.iommu_init = amd_iommu_init;
2137
Jérôme Glisse4781bc42015-08-31 18:13:03 -04002138 return 1;
Joerg Roedelae7877d2008-06-26 21:27:51 +02002139}
2140
Joerg Roedelb65233a2008-07-11 17:14:21 +02002141/****************************************************************************
2142 *
2143 * Parsing functions for the AMD IOMMU specific kernel command line
2144 * options.
2145 *
2146 ****************************************************************************/
2147
Joerg Roedelfefda112009-05-20 12:21:42 +02002148static int __init parse_amd_iommu_dump(char *str)
2149{
2150 amd_iommu_dump = true;
2151
2152 return 1;
2153}
2154
Joerg Roedel918ad6c2008-06-26 21:27:52 +02002155static int __init parse_amd_iommu_options(char *str)
2156{
2157 for (; *str; ++str) {
Joerg Roedel695b5672008-11-17 15:16:43 +01002158 if (strncmp(str, "fullflush", 9) == 0)
FUJITA Tomonoriafa9fdc2008-09-20 01:23:30 +09002159 amd_iommu_unmap_flush = true;
Joerg Roedela5235722010-05-11 17:12:33 +02002160 if (strncmp(str, "off", 3) == 0)
2161 amd_iommu_disabled = true;
Joerg Roedel5abcdba2011-12-01 15:49:45 +01002162 if (strncmp(str, "force_isolation", 15) == 0)
2163 amd_iommu_force_isolation = true;
Joerg Roedel918ad6c2008-06-26 21:27:52 +02002164 }
2165
2166 return 1;
2167}
2168
Joerg Roedel440e89982013-04-09 16:35:28 +02002169static int __init parse_ivrs_ioapic(char *str)
2170{
2171 unsigned int bus, dev, fn;
2172 int ret, id, i;
2173 u16 devid;
2174
2175 ret = sscanf(str, "[%d]=%x:%x.%x", &id, &bus, &dev, &fn);
2176
2177 if (ret != 4) {
2178 pr_err("AMD-Vi: Invalid command line: ivrs_ioapic%s\n", str);
2179 return 1;
2180 }
2181
2182 if (early_ioapic_map_size == EARLY_MAP_SIZE) {
2183 pr_err("AMD-Vi: Early IOAPIC map overflow - ignoring ivrs_ioapic%s\n",
2184 str);
2185 return 1;
2186 }
2187
2188 devid = ((bus & 0xff) << 8) | ((dev & 0x1f) << 3) | (fn & 0x7);
2189
Joerg Roedeldfbb6d42013-04-09 19:06:18 +02002190 cmdline_maps = true;
Joerg Roedel440e89982013-04-09 16:35:28 +02002191 i = early_ioapic_map_size++;
2192 early_ioapic_map[i].id = id;
2193 early_ioapic_map[i].devid = devid;
2194 early_ioapic_map[i].cmd_line = true;
2195
2196 return 1;
2197}
2198
2199static int __init parse_ivrs_hpet(char *str)
2200{
2201 unsigned int bus, dev, fn;
2202 int ret, id, i;
2203 u16 devid;
2204
2205 ret = sscanf(str, "[%d]=%x:%x.%x", &id, &bus, &dev, &fn);
2206
2207 if (ret != 4) {
2208 pr_err("AMD-Vi: Invalid command line: ivrs_hpet%s\n", str);
2209 return 1;
2210 }
2211
2212 if (early_hpet_map_size == EARLY_MAP_SIZE) {
2213 pr_err("AMD-Vi: Early HPET map overflow - ignoring ivrs_hpet%s\n",
2214 str);
2215 return 1;
2216 }
2217
2218 devid = ((bus & 0xff) << 8) | ((dev & 0x1f) << 3) | (fn & 0x7);
2219
Joerg Roedeldfbb6d42013-04-09 19:06:18 +02002220 cmdline_maps = true;
Joerg Roedel440e89982013-04-09 16:35:28 +02002221 i = early_hpet_map_size++;
2222 early_hpet_map[i].id = id;
2223 early_hpet_map[i].devid = devid;
2224 early_hpet_map[i].cmd_line = true;
2225
2226 return 1;
2227}
2228
2229__setup("amd_iommu_dump", parse_amd_iommu_dump);
2230__setup("amd_iommu=", parse_amd_iommu_options);
2231__setup("ivrs_ioapic", parse_ivrs_ioapic);
2232__setup("ivrs_hpet", parse_ivrs_hpet);
Konrad Rzeszutek Wilk22e6daf2010-08-26 13:58:03 -04002233
2234IOMMU_INIT_FINISH(amd_iommu_detect,
2235 gart_iommu_hole_init,
Joerg Roedel98f1ad22012-07-06 13:28:37 +02002236 NULL,
2237 NULL);
Joerg Roedel400a28a2011-11-28 15:11:02 +01002238
2239bool amd_iommu_v2_supported(void)
2240{
2241 return amd_iommu_v2_present;
2242}
2243EXPORT_SYMBOL(amd_iommu_v2_supported);
Steven L Kinney30861dd2013-06-05 16:11:48 -05002244
2245/****************************************************************************
2246 *
2247 * IOMMU EFR Performance Counter support functionality. This code allows
2248 * access to the IOMMU PC functionality.
2249 *
2250 ****************************************************************************/
2251
2252u8 amd_iommu_pc_get_max_banks(u16 devid)
2253{
2254 struct amd_iommu *iommu;
2255 u8 ret = 0;
2256
2257 /* locate the iommu governing the devid */
2258 iommu = amd_iommu_rlookup_table[devid];
2259 if (iommu)
2260 ret = iommu->max_banks;
2261
2262 return ret;
2263}
2264EXPORT_SYMBOL(amd_iommu_pc_get_max_banks);
2265
2266bool amd_iommu_pc_supported(void)
2267{
2268 return amd_iommu_pc_present;
2269}
2270EXPORT_SYMBOL(amd_iommu_pc_supported);
2271
2272u8 amd_iommu_pc_get_max_counters(u16 devid)
2273{
2274 struct amd_iommu *iommu;
2275 u8 ret = 0;
2276
2277 /* locate the iommu governing the devid */
2278 iommu = amd_iommu_rlookup_table[devid];
2279 if (iommu)
2280 ret = iommu->max_counters;
2281
2282 return ret;
2283}
2284EXPORT_SYMBOL(amd_iommu_pc_get_max_counters);
2285
2286int amd_iommu_pc_get_set_reg_val(u16 devid, u8 bank, u8 cntr, u8 fxn,
2287 u64 *value, bool is_write)
2288{
2289 struct amd_iommu *iommu;
2290 u32 offset;
2291 u32 max_offset_lim;
2292
2293 /* Make sure the IOMMU PC resource is available */
2294 if (!amd_iommu_pc_present)
2295 return -ENODEV;
2296
2297 /* Locate the iommu associated with the device ID */
2298 iommu = amd_iommu_rlookup_table[devid];
2299
2300 /* Check for valid iommu and pc register indexing */
2301 if (WARN_ON((iommu == NULL) || (fxn > 0x28) || (fxn & 7)))
2302 return -ENODEV;
2303
2304 offset = (u32)(((0x40|bank) << 12) | (cntr << 8) | fxn);
2305
2306 /* Limit the offset to the hw defined mmio region aperture */
2307 max_offset_lim = (u32)(((0x40|iommu->max_banks) << 12) |
2308 (iommu->max_counters << 8) | 0x28);
2309 if ((offset < MMIO_CNTR_REG_OFFSET) ||
2310 (offset > max_offset_lim))
2311 return -EINVAL;
2312
2313 if (is_write) {
2314 writel((u32)*value, iommu->mmio_base + offset);
2315 writel((*value >> 32), iommu->mmio_base + offset + 4);
2316 } else {
2317 *value = readl(iommu->mmio_base + offset + 4);
2318 *value <<= 32;
2319 *value = readl(iommu->mmio_base + offset);
2320 }
2321
2322 return 0;
2323}
2324EXPORT_SYMBOL(amd_iommu_pc_get_set_reg_val);