blob: 157e93421fb81667c21acc43aaa790f092595395 [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>
Baoquan He5c87f622016-09-15 16:50:51 +080023#include <linux/bitmap.h>
Tejun Heo5a0e3ad2010-03-24 17:04:11 +090024#include <linux/slab.h>
Rafael J. Wysockif3c6ea12011-03-23 22:15:54 +010025#include <linux/syscore_ops.h>
Joerg Roedela80dc3e2008-09-11 16:51:41 +020026#include <linux/interrupt.h>
27#include <linux/msi.h>
Joerg Roedel403f81d2011-06-14 16:44:25 +020028#include <linux/amd-iommu.h>
Joerg Roedel400a28a2011-11-28 15:11:02 +010029#include <linux/export.h>
Alex Williamson066f2e92014-06-12 16:12:37 -060030#include <linux/iommu.h>
Joerg Roedelf6e2e6b2008-06-26 21:27:39 +020031#include <asm/pci-direct.h>
FUJITA Tomonori46a7fa22008-07-11 10:23:42 +090032#include <asm/iommu.h>
Joerg Roedel1d9b16d2008-11-27 18:39:15 +010033#include <asm/gart.h>
FUJITA Tomonoriea1b0d32009-11-10 19:46:15 +090034#include <asm/x86_init.h>
Konrad Rzeszutek Wilk22e6daf2010-08-26 13:58:03 -040035#include <asm/iommu_table.h>
Joerg Roedeleb1eb7a2012-07-05 11:58:02 +020036#include <asm/io_apic.h>
Joerg Roedel6b474b82012-06-26 16:46:04 +020037#include <asm/irq_remapping.h>
Joerg Roedel403f81d2011-06-14 16:44:25 +020038
39#include "amd_iommu_proto.h"
40#include "amd_iommu_types.h"
Joerg Roedel05152a02012-06-15 16:53:51 +020041#include "irq_remapping.h"
Joerg Roedel403f81d2011-06-14 16:44:25 +020042
Joerg Roedelf6e2e6b2008-06-26 21:27:39 +020043/*
44 * definitions for the ACPI scanning code
45 */
Joerg Roedelf6e2e6b2008-06-26 21:27:39 +020046#define IVRS_HEADER_LENGTH 48
Joerg Roedelf6e2e6b2008-06-26 21:27:39 +020047
Suravee Suthikulpanit8c7142f2016-04-01 09:05:59 -040048#define ACPI_IVHD_TYPE_MAX_SUPPORTED 0x40
Joerg Roedelf6e2e6b2008-06-26 21:27:39 +020049#define ACPI_IVMD_TYPE_ALL 0x20
50#define ACPI_IVMD_TYPE 0x21
51#define ACPI_IVMD_TYPE_RANGE 0x22
52
53#define IVHD_DEV_ALL 0x01
54#define IVHD_DEV_SELECT 0x02
55#define IVHD_DEV_SELECT_RANGE_START 0x03
56#define IVHD_DEV_RANGE_END 0x04
57#define IVHD_DEV_ALIAS 0x42
58#define IVHD_DEV_ALIAS_RANGE 0x43
59#define IVHD_DEV_EXT_SELECT 0x46
60#define IVHD_DEV_EXT_SELECT_RANGE 0x47
Joerg Roedel6efed632012-06-14 15:52:58 +020061#define IVHD_DEV_SPECIAL 0x48
Suravee Suthikulpanit8c7142f2016-04-01 09:05:59 -040062#define IVHD_DEV_ACPI_HID 0xf0
Joerg Roedel6efed632012-06-14 15:52:58 +020063
Wan Zongshun2a0cb4e2016-04-01 09:06:00 -040064#define UID_NOT_PRESENT 0
65#define UID_IS_INTEGER 1
66#define UID_IS_CHARACTER 2
67
Joerg Roedel6efed632012-06-14 15:52:58 +020068#define IVHD_SPECIAL_IOAPIC 1
69#define IVHD_SPECIAL_HPET 2
Joerg Roedelf6e2e6b2008-06-26 21:27:39 +020070
Joerg Roedel6da73422009-05-04 11:44:38 +020071#define IVHD_FLAG_HT_TUN_EN_MASK 0x01
72#define IVHD_FLAG_PASSPW_EN_MASK 0x02
73#define IVHD_FLAG_RESPASSPW_EN_MASK 0x04
74#define IVHD_FLAG_ISOC_EN_MASK 0x08
Joerg Roedelf6e2e6b2008-06-26 21:27:39 +020075
76#define IVMD_FLAG_EXCL_RANGE 0x08
77#define IVMD_FLAG_UNITY_MAP 0x01
78
79#define ACPI_DEVFLAG_INITPASS 0x01
80#define ACPI_DEVFLAG_EXTINT 0x02
81#define ACPI_DEVFLAG_NMI 0x04
82#define ACPI_DEVFLAG_SYSMGT1 0x10
83#define ACPI_DEVFLAG_SYSMGT2 0x20
84#define ACPI_DEVFLAG_LINT0 0x40
85#define ACPI_DEVFLAG_LINT1 0x80
86#define ACPI_DEVFLAG_ATSDIS 0x10000000
87
Suravee Suthikulpanit8bda0cf2016-08-23 13:52:36 -050088#define LOOP_TIMEOUT 100000
Joerg Roedelb65233a2008-07-11 17:14:21 +020089/*
90 * ACPI table definitions
91 *
92 * These data structures are laid over the table to parse the important values
93 * out of it.
94 */
95
96/*
97 * structure describing one IOMMU in the ACPI table. Typically followed by one
98 * or more ivhd_entrys.
99 */
Joerg Roedelf6e2e6b2008-06-26 21:27:39 +0200100struct ivhd_header {
101 u8 type;
102 u8 flags;
103 u16 length;
104 u16 devid;
105 u16 cap_ptr;
106 u64 mmio_phys;
107 u16 pci_seg;
108 u16 info;
Suravee Suthikulpanit7d7d38a2016-04-01 09:05:57 -0400109 u32 efr_attr;
110
111 /* Following only valid on IVHD type 11h and 40h */
112 u64 efr_reg; /* Exact copy of MMIO_EXT_FEATURES */
113 u64 res;
Joerg Roedelf6e2e6b2008-06-26 21:27:39 +0200114} __attribute__((packed));
115
Joerg Roedelb65233a2008-07-11 17:14:21 +0200116/*
117 * A device entry describing which devices a specific IOMMU translates and
118 * which requestor ids they use.
119 */
Joerg Roedelf6e2e6b2008-06-26 21:27:39 +0200120struct ivhd_entry {
121 u8 type;
122 u16 devid;
123 u8 flags;
124 u32 ext;
Wan Zongshun2a0cb4e2016-04-01 09:06:00 -0400125 u32 hidh;
126 u64 cid;
127 u8 uidf;
128 u8 uidl;
129 u8 uid;
Joerg Roedelf6e2e6b2008-06-26 21:27:39 +0200130} __attribute__((packed));
131
Joerg Roedelb65233a2008-07-11 17:14:21 +0200132/*
133 * An AMD IOMMU memory definition structure. It defines things like exclusion
134 * ranges for devices and regions that should be unity mapped.
135 */
Joerg Roedelf6e2e6b2008-06-26 21:27:39 +0200136struct ivmd_header {
137 u8 type;
138 u8 flags;
139 u16 length;
140 u16 devid;
141 u16 aux;
142 u64 resv;
143 u64 range_start;
144 u64 range_length;
145} __attribute__((packed));
146
Joerg Roedelfefda112009-05-20 12:21:42 +0200147bool amd_iommu_dump;
Joerg Roedel05152a02012-06-15 16:53:51 +0200148bool amd_iommu_irq_remap __read_mostly;
Joerg Roedelfefda112009-05-20 12:21:42 +0200149
Suravee Suthikulpanitd98de492016-08-23 13:52:40 -0500150int amd_iommu_guest_ir = AMD_IOMMU_GUEST_IR_VAPIC;
Suravee Suthikulpanit3928aa32016-08-23 13:52:32 -0500151
Joerg Roedel02f3b3f2012-06-11 17:45:25 +0200152static bool amd_iommu_detected;
Joerg Roedela5235722010-05-11 17:12:33 +0200153static bool __initdata amd_iommu_disabled;
Suravee Suthikulpanit8c7142f2016-04-01 09:05:59 -0400154static int amd_iommu_target_ivhd_type;
Joerg Roedelc1cbebe2008-07-03 19:35:10 +0200155
Joerg Roedelb65233a2008-07-11 17:14:21 +0200156u16 amd_iommu_last_bdf; /* largest PCI device id we have
157 to handle */
Joerg Roedel2e228472008-07-11 17:14:31 +0200158LIST_HEAD(amd_iommu_unity_map); /* a list of required unity mappings
Joerg Roedelb65233a2008-07-11 17:14:21 +0200159 we find in ACPI */
Viresh Kumar621a5f72015-09-26 15:04:07 -0700160bool amd_iommu_unmap_flush; /* if true, flush on every unmap */
Joerg Roedel928abd22008-06-26 21:27:40 +0200161
Joerg Roedel2e228472008-07-11 17:14:31 +0200162LIST_HEAD(amd_iommu_list); /* list of all AMD IOMMUs in the
Joerg Roedelb65233a2008-07-11 17:14:21 +0200163 system */
164
Joerg Roedelbb527772009-11-20 14:31:51 +0100165/* Array to assign indices to IOMMUs*/
166struct amd_iommu *amd_iommus[MAX_IOMMUS];
167int amd_iommus_present;
168
Joerg Roedel318afd42009-11-23 18:32:38 +0100169/* IOMMUs have a non-present cache? */
170bool amd_iommu_np_cache __read_mostly;
Joerg Roedel60f723b2011-04-05 12:50:24 +0200171bool amd_iommu_iotlb_sup __read_mostly = true;
Joerg Roedel318afd42009-11-23 18:32:38 +0100172
Suravee Suthikulpanita919a012014-03-05 18:54:18 -0600173u32 amd_iommu_max_pasid __read_mostly = ~0;
Joerg Roedel62f71ab2011-11-10 14:41:57 +0100174
Joerg Roedel400a28a2011-11-28 15:11:02 +0100175bool amd_iommu_v2_present __read_mostly;
Joerg Roedel4160cd92015-08-13 11:31:48 +0200176static bool amd_iommu_pc_present __read_mostly;
Joerg Roedel400a28a2011-11-28 15:11:02 +0100177
Joerg Roedel5abcdba2011-12-01 15:49:45 +0100178bool amd_iommu_force_isolation __read_mostly;
179
Joerg Roedelb65233a2008-07-11 17:14:21 +0200180/*
Joerg Roedelaeb26f52009-11-20 16:44:01 +0100181 * List of protection domains - used during resume
182 */
183LIST_HEAD(amd_iommu_pd_list);
184spinlock_t amd_iommu_pd_lock;
185
186/*
Joerg Roedelb65233a2008-07-11 17:14:21 +0200187 * Pointer to the device table which is shared by all AMD IOMMUs
188 * it is indexed by the PCI device id or the HT unit id and contains
189 * information about the domain the device belongs to as well as the
190 * page table root pointer.
191 */
Joerg Roedel928abd22008-06-26 21:27:40 +0200192struct dev_table_entry *amd_iommu_dev_table;
Joerg Roedelb65233a2008-07-11 17:14:21 +0200193
194/*
195 * The alias table is a driver specific data structure which contains the
196 * mappings of the PCI device ids to the actual requestor ids on the IOMMU.
197 * More than one device can share the same requestor id.
198 */
Joerg Roedel928abd22008-06-26 21:27:40 +0200199u16 *amd_iommu_alias_table;
Joerg Roedelb65233a2008-07-11 17:14:21 +0200200
201/*
202 * The rlookup table is used to find the IOMMU which is responsible
203 * for a specific device. It is also indexed by the PCI device id.
204 */
Joerg Roedel928abd22008-06-26 21:27:40 +0200205struct amd_iommu **amd_iommu_rlookup_table;
Joerg Roedelb65233a2008-07-11 17:14:21 +0200206
207/*
Joerg Roedel0ea2c422012-06-15 18:05:20 +0200208 * This table is used to find the irq remapping table for a given device id
209 * quickly.
210 */
211struct irq_remap_table **irq_lookup_table;
212
213/*
Frank Arnolddf805ab2012-08-27 19:21:04 +0200214 * AMD IOMMU allows up to 2^16 different protection domains. This is a bitmap
Joerg Roedelb65233a2008-07-11 17:14:21 +0200215 * to know which ones are already in use.
216 */
Joerg Roedel928abd22008-06-26 21:27:40 +0200217unsigned long *amd_iommu_pd_alloc_bitmap;
218
Joerg Roedelb65233a2008-07-11 17:14:21 +0200219static u32 dev_table_size; /* size of the device table */
220static u32 alias_table_size; /* size of the alias table */
221static u32 rlookup_table_size; /* size if the rlookup table */
Joerg Roedel3e8064b2008-06-26 21:27:41 +0200222
Joerg Roedel2c0ae172012-06-12 15:59:30 +0200223enum iommu_init_state {
224 IOMMU_START_STATE,
225 IOMMU_IVRS_DETECTED,
226 IOMMU_ACPI_FINISHED,
227 IOMMU_ENABLED,
228 IOMMU_PCI_INIT,
229 IOMMU_INTERRUPTS_EN,
230 IOMMU_DMA_OPS,
231 IOMMU_INITIALIZED,
232 IOMMU_NOT_FOUND,
233 IOMMU_INIT_ERROR,
234};
235
Joerg Roedel235dacb2013-04-09 17:53:14 +0200236/* Early ioapic and hpet maps from kernel command line */
237#define EARLY_MAP_SIZE 4
238static struct devid_map __initdata early_ioapic_map[EARLY_MAP_SIZE];
239static struct devid_map __initdata early_hpet_map[EARLY_MAP_SIZE];
Wan Zongshun2a0cb4e2016-04-01 09:06:00 -0400240static struct acpihid_map_entry __initdata early_acpihid_map[EARLY_MAP_SIZE];
241
Joerg Roedel235dacb2013-04-09 17:53:14 +0200242static int __initdata early_ioapic_map_size;
243static int __initdata early_hpet_map_size;
Wan Zongshun2a0cb4e2016-04-01 09:06:00 -0400244static int __initdata early_acpihid_map_size;
245
Joerg Roedeldfbb6d42013-04-09 19:06:18 +0200246static bool __initdata cmdline_maps;
Joerg Roedel235dacb2013-04-09 17:53:14 +0200247
Joerg Roedel2c0ae172012-06-12 15:59:30 +0200248static enum iommu_init_state init_state = IOMMU_START_STATE;
249
Gerard Snitselaarae295142012-03-16 11:38:22 -0700250static int amd_iommu_enable_interrupts(void);
Joerg Roedel2c0ae172012-06-12 15:59:30 +0200251static int __init iommu_go_to_state(enum iommu_init_state state);
Joerg Roedelaafd8ba2015-05-28 18:41:39 +0200252static void init_device_table_dma(void);
Joerg Roedel3d9761e2012-03-15 16:39:21 +0100253
Suravee Suthikulpanit38e45d022016-02-23 13:03:30 +0100254static int iommu_pc_get_set_reg_val(struct amd_iommu *iommu,
255 u8 bank, u8 cntr, u8 fxn,
256 u64 *value, bool is_write);
257
Joerg Roedel208ec8c2008-07-11 17:14:24 +0200258static inline void update_last_devid(u16 devid)
259{
260 if (devid > amd_iommu_last_bdf)
261 amd_iommu_last_bdf = devid;
262}
263
Joerg Roedelc5714842008-07-11 17:14:25 +0200264static inline unsigned long tbl_size(int entry_size)
265{
266 unsigned shift = PAGE_SHIFT +
Neil Turton421f9092009-05-14 14:00:35 +0100267 get_order(((int)amd_iommu_last_bdf + 1) * entry_size);
Joerg Roedelc5714842008-07-11 17:14:25 +0200268
269 return 1UL << shift;
270}
271
Matthew Garrett5bcd7572010-10-04 14:59:31 -0400272/* Access to l1 and l2 indexed register spaces */
273
274static u32 iommu_read_l1(struct amd_iommu *iommu, u16 l1, u8 address)
275{
276 u32 val;
277
278 pci_write_config_dword(iommu->dev, 0xf8, (address | l1 << 16));
279 pci_read_config_dword(iommu->dev, 0xfc, &val);
280 return val;
281}
282
283static void iommu_write_l1(struct amd_iommu *iommu, u16 l1, u8 address, u32 val)
284{
285 pci_write_config_dword(iommu->dev, 0xf8, (address | l1 << 16 | 1 << 31));
286 pci_write_config_dword(iommu->dev, 0xfc, val);
287 pci_write_config_dword(iommu->dev, 0xf8, (address | l1 << 16));
288}
289
290static u32 iommu_read_l2(struct amd_iommu *iommu, u8 address)
291{
292 u32 val;
293
294 pci_write_config_dword(iommu->dev, 0xf0, address);
295 pci_read_config_dword(iommu->dev, 0xf4, &val);
296 return val;
297}
298
299static void iommu_write_l2(struct amd_iommu *iommu, u8 address, u32 val)
300{
301 pci_write_config_dword(iommu->dev, 0xf0, (address | 1 << 8));
302 pci_write_config_dword(iommu->dev, 0xf4, val);
303}
304
Joerg Roedelb65233a2008-07-11 17:14:21 +0200305/****************************************************************************
306 *
307 * AMD IOMMU MMIO register space handling functions
308 *
309 * These functions are used to program the IOMMU device registers in
310 * MMIO space required for that driver.
311 *
312 ****************************************************************************/
313
314/*
315 * This function set the exclusion range in the IOMMU. DMA accesses to the
316 * exclusion range are passed through untranslated
317 */
Joerg Roedel05f92db2009-05-12 09:52:46 +0200318static void iommu_set_exclusion_range(struct amd_iommu *iommu)
Joerg Roedelb2026aa2008-06-26 21:27:44 +0200319{
320 u64 start = iommu->exclusion_start & PAGE_MASK;
321 u64 limit = (start + iommu->exclusion_length) & PAGE_MASK;
322 u64 entry;
323
324 if (!iommu->exclusion_start)
325 return;
326
327 entry = start | MMIO_EXCL_ENABLE_MASK;
328 memcpy_toio(iommu->mmio_base + MMIO_EXCL_BASE_OFFSET,
329 &entry, sizeof(entry));
330
331 entry = limit;
332 memcpy_toio(iommu->mmio_base + MMIO_EXCL_LIMIT_OFFSET,
333 &entry, sizeof(entry));
334}
335
Joerg Roedelb65233a2008-07-11 17:14:21 +0200336/* Programs the physical address of the device table into the IOMMU hardware */
Jan Beulich6b7f0002012-03-08 08:58:13 +0000337static void iommu_set_device_table(struct amd_iommu *iommu)
Joerg Roedelb2026aa2008-06-26 21:27:44 +0200338{
Andreas Herrmannf6098912008-10-16 16:27:36 +0200339 u64 entry;
Joerg Roedelb2026aa2008-06-26 21:27:44 +0200340
341 BUG_ON(iommu->mmio_base == NULL);
342
343 entry = virt_to_phys(amd_iommu_dev_table);
344 entry |= (dev_table_size >> 12) - 1;
345 memcpy_toio(iommu->mmio_base + MMIO_DEV_TABLE_OFFSET,
346 &entry, sizeof(entry));
347}
348
Joerg Roedelb65233a2008-07-11 17:14:21 +0200349/* Generic functions to enable/disable certain features of the IOMMU. */
Joerg Roedel05f92db2009-05-12 09:52:46 +0200350static void iommu_feature_enable(struct amd_iommu *iommu, u8 bit)
Joerg Roedelb2026aa2008-06-26 21:27:44 +0200351{
352 u32 ctrl;
353
354 ctrl = readl(iommu->mmio_base + MMIO_CONTROL_OFFSET);
355 ctrl |= (1 << bit);
356 writel(ctrl, iommu->mmio_base + MMIO_CONTROL_OFFSET);
357}
358
Joerg Roedelca0207112009-10-28 18:02:26 +0100359static void iommu_feature_disable(struct amd_iommu *iommu, u8 bit)
Joerg Roedelb2026aa2008-06-26 21:27:44 +0200360{
361 u32 ctrl;
362
Joerg Roedel199d0d52008-09-17 16:45:59 +0200363 ctrl = readl(iommu->mmio_base + MMIO_CONTROL_OFFSET);
Joerg Roedelb2026aa2008-06-26 21:27:44 +0200364 ctrl &= ~(1 << bit);
365 writel(ctrl, iommu->mmio_base + MMIO_CONTROL_OFFSET);
366}
367
Joerg Roedel1456e9d2011-12-22 14:51:53 +0100368static void iommu_set_inv_tlb_timeout(struct amd_iommu *iommu, int timeout)
369{
370 u32 ctrl;
371
372 ctrl = readl(iommu->mmio_base + MMIO_CONTROL_OFFSET);
373 ctrl &= ~CTRL_INV_TO_MASK;
374 ctrl |= (timeout << CONTROL_INV_TIMEOUT) & CTRL_INV_TO_MASK;
375 writel(ctrl, iommu->mmio_base + MMIO_CONTROL_OFFSET);
376}
377
Joerg Roedelb65233a2008-07-11 17:14:21 +0200378/* Function to enable the hardware */
Joerg Roedel05f92db2009-05-12 09:52:46 +0200379static void iommu_enable(struct amd_iommu *iommu)
Joerg Roedelb2026aa2008-06-26 21:27:44 +0200380{
Joerg Roedelb2026aa2008-06-26 21:27:44 +0200381 iommu_feature_enable(iommu, CONTROL_IOMMU_EN);
Joerg Roedelb2026aa2008-06-26 21:27:44 +0200382}
383
Joerg Roedel92ac4322009-05-19 19:06:27 +0200384static void iommu_disable(struct amd_iommu *iommu)
Joerg Roedel126c52b2008-09-09 16:47:35 +0200385{
Chris Wrighta8c485b2009-06-15 15:53:45 +0200386 /* Disable command buffer */
387 iommu_feature_disable(iommu, CONTROL_CMDBUF_EN);
388
389 /* Disable event logging and event interrupts */
390 iommu_feature_disable(iommu, CONTROL_EVT_INT_EN);
391 iommu_feature_disable(iommu, CONTROL_EVT_LOG_EN);
392
Suravee Suthikulpanit8bda0cf2016-08-23 13:52:36 -0500393 /* Disable IOMMU GA_LOG */
394 iommu_feature_disable(iommu, CONTROL_GALOG_EN);
395 iommu_feature_disable(iommu, CONTROL_GAINT_EN);
396
Chris Wrighta8c485b2009-06-15 15:53:45 +0200397 /* Disable IOMMU hardware itself */
Joerg Roedel92ac4322009-05-19 19:06:27 +0200398 iommu_feature_disable(iommu, CONTROL_IOMMU_EN);
Joerg Roedel126c52b2008-09-09 16:47:35 +0200399}
400
Joerg Roedelb65233a2008-07-11 17:14:21 +0200401/*
402 * mapping and unmapping functions for the IOMMU MMIO space. Each AMD IOMMU in
403 * the system has one.
404 */
Steven L Kinney30861dd2013-06-05 16:11:48 -0500405static u8 __iomem * __init iommu_map_mmio_space(u64 address, u64 end)
Joerg Roedel6c567472008-06-26 21:27:43 +0200406{
Steven L Kinney30861dd2013-06-05 16:11:48 -0500407 if (!request_mem_region(address, end, "amd_iommu")) {
408 pr_err("AMD-Vi: Can not reserve memory region %llx-%llx for mmio\n",
409 address, end);
Joerg Roedele82752d2010-05-28 14:26:48 +0200410 pr_err("AMD-Vi: This is a BIOS bug. Please contact your hardware vendor\n");
Joerg Roedel6c567472008-06-26 21:27:43 +0200411 return NULL;
Joerg Roedele82752d2010-05-28 14:26:48 +0200412 }
Joerg Roedel6c567472008-06-26 21:27:43 +0200413
Steven L Kinney30861dd2013-06-05 16:11:48 -0500414 return (u8 __iomem *)ioremap_nocache(address, end);
Joerg Roedel6c567472008-06-26 21:27:43 +0200415}
416
417static void __init iommu_unmap_mmio_space(struct amd_iommu *iommu)
418{
419 if (iommu->mmio_base)
420 iounmap(iommu->mmio_base);
Steven L Kinney30861dd2013-06-05 16:11:48 -0500421 release_mem_region(iommu->mmio_phys, iommu->mmio_phys_end);
Joerg Roedel6c567472008-06-26 21:27:43 +0200422}
423
Suravee Suthikulpanitac7ccf62016-04-01 09:05:58 -0400424static inline u32 get_ivhd_header_size(struct ivhd_header *h)
425{
426 u32 size = 0;
427
428 switch (h->type) {
429 case 0x10:
430 size = 24;
431 break;
432 case 0x11:
433 case 0x40:
434 size = 40;
435 break;
436 }
437 return size;
438}
439
Joerg Roedelb65233a2008-07-11 17:14:21 +0200440/****************************************************************************
441 *
442 * The functions below belong to the first pass of AMD IOMMU ACPI table
443 * parsing. In this pass we try to find out the highest device id this
444 * code has to handle. Upon this information the size of the shared data
445 * structures is determined later.
446 *
447 ****************************************************************************/
448
449/*
Joerg Roedelb514e552008-09-17 17:14:27 +0200450 * This function calculates the length of a given IVHD entry
451 */
452static inline int ivhd_entry_length(u8 *ivhd)
453{
Suravee Suthikulpanit8c7142f2016-04-01 09:05:59 -0400454 u32 type = ((struct ivhd_entry *)ivhd)->type;
455
456 if (type < 0x80) {
457 return 0x04 << (*ivhd >> 6);
458 } else if (type == IVHD_DEV_ACPI_HID) {
459 /* For ACPI_HID, offset 21 is uid len */
460 return *((u8 *)ivhd + 21) + 22;
461 }
462 return 0;
Joerg Roedelb514e552008-09-17 17:14:27 +0200463}
464
465/*
Joerg Roedelb65233a2008-07-11 17:14:21 +0200466 * After reading the highest device id from the IOMMU PCI capability header
467 * this function looks if there is a higher device id defined in the ACPI table
468 */
Joerg Roedel3e8064b2008-06-26 21:27:41 +0200469static int __init find_last_devid_from_ivhd(struct ivhd_header *h)
470{
471 u8 *p = (void *)h, *end = (void *)h;
472 struct ivhd_entry *dev;
473
Suravee Suthikulpanitac7ccf62016-04-01 09:05:58 -0400474 u32 ivhd_size = get_ivhd_header_size(h);
475
476 if (!ivhd_size) {
477 pr_err("AMD-Vi: Unsupported IVHD type %#x\n", h->type);
478 return -EINVAL;
479 }
480
481 p += ivhd_size;
Joerg Roedel3e8064b2008-06-26 21:27:41 +0200482 end += h->length;
483
Joerg Roedel3e8064b2008-06-26 21:27:41 +0200484 while (p < end) {
485 dev = (struct ivhd_entry *)p;
486 switch (dev->type) {
Joerg Roedeld1259412015-10-20 17:33:43 +0200487 case IVHD_DEV_ALL:
488 /* Use maximum BDF value for DEV_ALL */
489 update_last_devid(0xffff);
490 break;
Joerg Roedel3e8064b2008-06-26 21:27:41 +0200491 case IVHD_DEV_SELECT:
492 case IVHD_DEV_RANGE_END:
493 case IVHD_DEV_ALIAS:
494 case IVHD_DEV_EXT_SELECT:
Joerg Roedelb65233a2008-07-11 17:14:21 +0200495 /* all the above subfield types refer to device ids */
Joerg Roedel208ec8c2008-07-11 17:14:24 +0200496 update_last_devid(dev->devid);
Joerg Roedel3e8064b2008-06-26 21:27:41 +0200497 break;
498 default:
499 break;
500 }
Joerg Roedelb514e552008-09-17 17:14:27 +0200501 p += ivhd_entry_length(p);
Joerg Roedel3e8064b2008-06-26 21:27:41 +0200502 }
503
504 WARN_ON(p != end);
505
506 return 0;
507}
508
Suravee Suthikulpanit8c7142f2016-04-01 09:05:59 -0400509static int __init check_ivrs_checksum(struct acpi_table_header *table)
510{
511 int i;
512 u8 checksum = 0, *p = (u8 *)table;
513
514 for (i = 0; i < table->length; ++i)
515 checksum += p[i];
516 if (checksum != 0) {
517 /* ACPI table corrupt */
518 pr_err(FW_BUG "AMD-Vi: IVRS invalid checksum\n");
519 return -ENODEV;
520 }
521
522 return 0;
523}
524
Joerg Roedelb65233a2008-07-11 17:14:21 +0200525/*
526 * Iterate over all IVHD entries in the ACPI table and find the highest device
527 * id which we need to handle. This is the first of three functions which parse
528 * the ACPI table. So we check the checksum here.
529 */
Joerg Roedel3e8064b2008-06-26 21:27:41 +0200530static int __init find_last_devid_acpi(struct acpi_table_header *table)
531{
Suravee Suthikulpanit8c7142f2016-04-01 09:05:59 -0400532 u8 *p = (u8 *)table, *end = (u8 *)table;
Joerg Roedel3e8064b2008-06-26 21:27:41 +0200533 struct ivhd_header *h;
534
Joerg Roedel3e8064b2008-06-26 21:27:41 +0200535 p += IVRS_HEADER_LENGTH;
536
537 end += table->length;
538 while (p < end) {
539 h = (struct ivhd_header *)p;
Suravee Suthikulpanit8c7142f2016-04-01 09:05:59 -0400540 if (h->type == amd_iommu_target_ivhd_type) {
541 int ret = find_last_devid_from_ivhd(h);
542
543 if (ret)
544 return ret;
Joerg Roedel3e8064b2008-06-26 21:27:41 +0200545 }
546 p += h->length;
547 }
548 WARN_ON(p != end);
549
550 return 0;
551}
552
Joerg Roedelb65233a2008-07-11 17:14:21 +0200553/****************************************************************************
554 *
Frank Arnolddf805ab2012-08-27 19:21:04 +0200555 * The following functions belong to the code path which parses the ACPI table
Joerg Roedelb65233a2008-07-11 17:14:21 +0200556 * the second time. In this ACPI parsing iteration we allocate IOMMU specific
557 * data structures, initialize the device/alias/rlookup table and also
558 * basically initialize the hardware.
559 *
560 ****************************************************************************/
561
562/*
563 * Allocates the command buffer. This buffer is per AMD IOMMU. We can
564 * write commands to that buffer later and the IOMMU will execute them
565 * asynchronously
566 */
Joerg Roedelf2c2db52015-10-20 17:33:42 +0200567static int __init alloc_command_buffer(struct amd_iommu *iommu)
Joerg Roedelb36ca912008-06-26 21:27:45 +0200568{
Joerg Roedelf2c2db52015-10-20 17:33:42 +0200569 iommu->cmd_buf = (void *)__get_free_pages(GFP_KERNEL | __GFP_ZERO,
570 get_order(CMD_BUFFER_SIZE));
Joerg Roedelb36ca912008-06-26 21:27:45 +0200571
Joerg Roedelf2c2db52015-10-20 17:33:42 +0200572 return iommu->cmd_buf ? 0 : -ENOMEM;
Joerg Roedel58492e12009-05-04 18:41:16 +0200573}
574
575/*
Joerg Roedel93f1cc672009-09-03 14:50:20 +0200576 * This function resets the command buffer if the IOMMU stopped fetching
577 * commands from it.
578 */
579void amd_iommu_reset_cmd_buffer(struct amd_iommu *iommu)
580{
581 iommu_feature_disable(iommu, CONTROL_CMDBUF_EN);
582
583 writel(0x00, iommu->mmio_base + MMIO_CMD_HEAD_OFFSET);
584 writel(0x00, iommu->mmio_base + MMIO_CMD_TAIL_OFFSET);
585
586 iommu_feature_enable(iommu, CONTROL_CMDBUF_EN);
587}
588
589/*
Joerg Roedel58492e12009-05-04 18:41:16 +0200590 * This function writes the command buffer address to the hardware and
591 * enables it.
592 */
593static void iommu_enable_command_buffer(struct amd_iommu *iommu)
594{
595 u64 entry;
596
597 BUG_ON(iommu->cmd_buf == NULL);
598
599 entry = (u64)virt_to_phys(iommu->cmd_buf);
Joerg Roedelb36ca912008-06-26 21:27:45 +0200600 entry |= MMIO_CMD_SIZE_512;
Joerg Roedel58492e12009-05-04 18:41:16 +0200601
Joerg Roedelb36ca912008-06-26 21:27:45 +0200602 memcpy_toio(iommu->mmio_base + MMIO_CMD_BUF_OFFSET,
Joerg Roedel58492e12009-05-04 18:41:16 +0200603 &entry, sizeof(entry));
Joerg Roedelb36ca912008-06-26 21:27:45 +0200604
Joerg Roedel93f1cc672009-09-03 14:50:20 +0200605 amd_iommu_reset_cmd_buffer(iommu);
Joerg Roedelb36ca912008-06-26 21:27:45 +0200606}
607
608static void __init free_command_buffer(struct amd_iommu *iommu)
609{
Joerg Roedeldeba4bc2015-10-20 17:33:41 +0200610 free_pages((unsigned long)iommu->cmd_buf, get_order(CMD_BUFFER_SIZE));
Joerg Roedelb36ca912008-06-26 21:27:45 +0200611}
612
Joerg Roedel335503e2008-09-05 14:29:07 +0200613/* allocates the memory where the IOMMU will log its events to */
Joerg Roedelf2c2db52015-10-20 17:33:42 +0200614static int __init alloc_event_buffer(struct amd_iommu *iommu)
Joerg Roedel335503e2008-09-05 14:29:07 +0200615{
Joerg Roedelf2c2db52015-10-20 17:33:42 +0200616 iommu->evt_buf = (void *)__get_free_pages(GFP_KERNEL | __GFP_ZERO,
617 get_order(EVT_BUFFER_SIZE));
Joerg Roedel335503e2008-09-05 14:29:07 +0200618
Joerg Roedelf2c2db52015-10-20 17:33:42 +0200619 return iommu->evt_buf ? 0 : -ENOMEM;
Joerg Roedel58492e12009-05-04 18:41:16 +0200620}
621
622static void iommu_enable_event_buffer(struct amd_iommu *iommu)
623{
624 u64 entry;
625
626 BUG_ON(iommu->evt_buf == NULL);
627
Joerg Roedel335503e2008-09-05 14:29:07 +0200628 entry = (u64)virt_to_phys(iommu->evt_buf) | EVT_LEN_MASK;
Joerg Roedel58492e12009-05-04 18:41:16 +0200629
Joerg Roedel335503e2008-09-05 14:29:07 +0200630 memcpy_toio(iommu->mmio_base + MMIO_EVT_BUF_OFFSET,
631 &entry, sizeof(entry));
632
Joerg Roedel090672072009-06-15 16:06:48 +0200633 /* set head and tail to zero manually */
634 writel(0x00, iommu->mmio_base + MMIO_EVT_HEAD_OFFSET);
635 writel(0x00, iommu->mmio_base + MMIO_EVT_TAIL_OFFSET);
636
Joerg Roedel58492e12009-05-04 18:41:16 +0200637 iommu_feature_enable(iommu, CONTROL_EVT_LOG_EN);
Joerg Roedel335503e2008-09-05 14:29:07 +0200638}
639
640static void __init free_event_buffer(struct amd_iommu *iommu)
641{
642 free_pages((unsigned long)iommu->evt_buf, get_order(EVT_BUFFER_SIZE));
643}
644
Joerg Roedel1a29ac02011-11-10 15:41:40 +0100645/* allocates the memory where the IOMMU will log its events to */
Joerg Roedelf2c2db52015-10-20 17:33:42 +0200646static int __init alloc_ppr_log(struct amd_iommu *iommu)
Joerg Roedel1a29ac02011-11-10 15:41:40 +0100647{
Joerg Roedelf2c2db52015-10-20 17:33:42 +0200648 iommu->ppr_log = (void *)__get_free_pages(GFP_KERNEL | __GFP_ZERO,
649 get_order(PPR_LOG_SIZE));
Joerg Roedel1a29ac02011-11-10 15:41:40 +0100650
Joerg Roedelf2c2db52015-10-20 17:33:42 +0200651 return iommu->ppr_log ? 0 : -ENOMEM;
Joerg Roedel1a29ac02011-11-10 15:41:40 +0100652}
653
654static void iommu_enable_ppr_log(struct amd_iommu *iommu)
655{
656 u64 entry;
657
658 if (iommu->ppr_log == NULL)
659 return;
660
661 entry = (u64)virt_to_phys(iommu->ppr_log) | PPR_LOG_SIZE_512;
662
663 memcpy_toio(iommu->mmio_base + MMIO_PPR_LOG_OFFSET,
664 &entry, sizeof(entry));
665
666 /* set head and tail to zero manually */
667 writel(0x00, iommu->mmio_base + MMIO_PPR_HEAD_OFFSET);
668 writel(0x00, iommu->mmio_base + MMIO_PPR_TAIL_OFFSET);
669
670 iommu_feature_enable(iommu, CONTROL_PPFLOG_EN);
671 iommu_feature_enable(iommu, CONTROL_PPR_EN);
672}
673
674static void __init free_ppr_log(struct amd_iommu *iommu)
675{
676 if (iommu->ppr_log == NULL)
677 return;
678
679 free_pages((unsigned long)iommu->ppr_log, get_order(PPR_LOG_SIZE));
680}
681
Suravee Suthikulpanit8bda0cf2016-08-23 13:52:36 -0500682static void free_ga_log(struct amd_iommu *iommu)
683{
684#ifdef CONFIG_IRQ_REMAP
685 if (iommu->ga_log)
686 free_pages((unsigned long)iommu->ga_log,
687 get_order(GA_LOG_SIZE));
688 if (iommu->ga_log_tail)
689 free_pages((unsigned long)iommu->ga_log_tail,
690 get_order(8));
691#endif
692}
693
694static int iommu_ga_log_enable(struct amd_iommu *iommu)
695{
696#ifdef CONFIG_IRQ_REMAP
697 u32 status, i;
698
699 if (!iommu->ga_log)
700 return -EINVAL;
701
702 status = readl(iommu->mmio_base + MMIO_STATUS_OFFSET);
703
704 /* Check if already running */
705 if (status & (MMIO_STATUS_GALOG_RUN_MASK))
706 return 0;
707
708 iommu_feature_enable(iommu, CONTROL_GAINT_EN);
709 iommu_feature_enable(iommu, CONTROL_GALOG_EN);
710
711 for (i = 0; i < LOOP_TIMEOUT; ++i) {
712 status = readl(iommu->mmio_base + MMIO_STATUS_OFFSET);
713 if (status & (MMIO_STATUS_GALOG_RUN_MASK))
714 break;
715 }
716
717 if (i >= LOOP_TIMEOUT)
718 return -EINVAL;
719#endif /* CONFIG_IRQ_REMAP */
720 return 0;
721}
722
723#ifdef CONFIG_IRQ_REMAP
724static int iommu_init_ga_log(struct amd_iommu *iommu)
725{
726 u64 entry;
727
728 if (!AMD_IOMMU_GUEST_IR_VAPIC(amd_iommu_guest_ir))
729 return 0;
730
731 iommu->ga_log = (u8 *)__get_free_pages(GFP_KERNEL | __GFP_ZERO,
732 get_order(GA_LOG_SIZE));
733 if (!iommu->ga_log)
734 goto err_out;
735
736 iommu->ga_log_tail = (u8 *)__get_free_pages(GFP_KERNEL | __GFP_ZERO,
737 get_order(8));
738 if (!iommu->ga_log_tail)
739 goto err_out;
740
741 entry = (u64)virt_to_phys(iommu->ga_log) | GA_LOG_SIZE_512;
742 memcpy_toio(iommu->mmio_base + MMIO_GA_LOG_BASE_OFFSET,
743 &entry, sizeof(entry));
744 entry = ((u64)virt_to_phys(iommu->ga_log) & 0xFFFFFFFFFFFFFULL) & ~7ULL;
745 memcpy_toio(iommu->mmio_base + MMIO_GA_LOG_TAIL_OFFSET,
746 &entry, sizeof(entry));
747 writel(0x00, iommu->mmio_base + MMIO_GA_HEAD_OFFSET);
748 writel(0x00, iommu->mmio_base + MMIO_GA_TAIL_OFFSET);
749
750 return 0;
751err_out:
752 free_ga_log(iommu);
753 return -EINVAL;
754}
755#endif /* CONFIG_IRQ_REMAP */
756
757static int iommu_init_ga(struct amd_iommu *iommu)
758{
759 int ret = 0;
760
761#ifdef CONFIG_IRQ_REMAP
762 /* Note: We have already checked GASup from IVRS table.
763 * Now, we need to make sure that GAMSup is set.
764 */
765 if (AMD_IOMMU_GUEST_IR_VAPIC(amd_iommu_guest_ir) &&
766 !iommu_feature(iommu, FEATURE_GAM_VAPIC))
767 amd_iommu_guest_ir = AMD_IOMMU_GUEST_IR_LEGACY_GA;
768
769 ret = iommu_init_ga_log(iommu);
770#endif /* CONFIG_IRQ_REMAP */
771
772 return ret;
773}
774
Joerg Roedelcbc33a92011-11-25 11:41:31 +0100775static void iommu_enable_gt(struct amd_iommu *iommu)
776{
777 if (!iommu_feature(iommu, FEATURE_GT))
778 return;
779
780 iommu_feature_enable(iommu, CONTROL_GT_EN);
781}
782
Joerg Roedelb65233a2008-07-11 17:14:21 +0200783/* sets a specific bit in the device table entry. */
Joerg Roedel3566b772008-06-26 21:27:46 +0200784static void set_dev_entry_bit(u16 devid, u8 bit)
785{
Joerg Roedelee6c2862011-11-09 12:06:03 +0100786 int i = (bit >> 6) & 0x03;
787 int _bit = bit & 0x3f;
Joerg Roedel3566b772008-06-26 21:27:46 +0200788
Joerg Roedelee6c2862011-11-09 12:06:03 +0100789 amd_iommu_dev_table[devid].data[i] |= (1UL << _bit);
Joerg Roedel3566b772008-06-26 21:27:46 +0200790}
791
Joerg Roedelc5cca142009-10-09 18:31:20 +0200792static int get_dev_entry_bit(u16 devid, u8 bit)
793{
Joerg Roedelee6c2862011-11-09 12:06:03 +0100794 int i = (bit >> 6) & 0x03;
795 int _bit = bit & 0x3f;
Joerg Roedelc5cca142009-10-09 18:31:20 +0200796
Joerg Roedelee6c2862011-11-09 12:06:03 +0100797 return (amd_iommu_dev_table[devid].data[i] & (1UL << _bit)) >> _bit;
Joerg Roedelc5cca142009-10-09 18:31:20 +0200798}
799
800
801void amd_iommu_apply_erratum_63(u16 devid)
802{
803 int sysmgt;
804
805 sysmgt = get_dev_entry_bit(devid, DEV_ENTRY_SYSMGT1) |
806 (get_dev_entry_bit(devid, DEV_ENTRY_SYSMGT2) << 1);
807
808 if (sysmgt == 0x01)
809 set_dev_entry_bit(devid, DEV_ENTRY_IW);
810}
811
Joerg Roedel5ff47892008-07-14 20:11:18 +0200812/* Writes the specific IOMMU for a device into the rlookup table */
813static void __init set_iommu_for_device(struct amd_iommu *iommu, u16 devid)
814{
815 amd_iommu_rlookup_table[devid] = iommu;
816}
817
Joerg Roedelb65233a2008-07-11 17:14:21 +0200818/*
819 * This function takes the device specific flags read from the ACPI
820 * table and sets up the device table entry with that information
821 */
Joerg Roedel5ff47892008-07-14 20:11:18 +0200822static void __init set_dev_entry_from_acpi(struct amd_iommu *iommu,
823 u16 devid, u32 flags, u32 ext_flags)
Joerg Roedel3566b772008-06-26 21:27:46 +0200824{
825 if (flags & ACPI_DEVFLAG_INITPASS)
826 set_dev_entry_bit(devid, DEV_ENTRY_INIT_PASS);
827 if (flags & ACPI_DEVFLAG_EXTINT)
828 set_dev_entry_bit(devid, DEV_ENTRY_EINT_PASS);
829 if (flags & ACPI_DEVFLAG_NMI)
830 set_dev_entry_bit(devid, DEV_ENTRY_NMI_PASS);
831 if (flags & ACPI_DEVFLAG_SYSMGT1)
832 set_dev_entry_bit(devid, DEV_ENTRY_SYSMGT1);
833 if (flags & ACPI_DEVFLAG_SYSMGT2)
834 set_dev_entry_bit(devid, DEV_ENTRY_SYSMGT2);
835 if (flags & ACPI_DEVFLAG_LINT0)
836 set_dev_entry_bit(devid, DEV_ENTRY_LINT0_PASS);
837 if (flags & ACPI_DEVFLAG_LINT1)
838 set_dev_entry_bit(devid, DEV_ENTRY_LINT1_PASS);
Joerg Roedel3566b772008-06-26 21:27:46 +0200839
Joerg Roedelc5cca142009-10-09 18:31:20 +0200840 amd_iommu_apply_erratum_63(devid);
841
Joerg Roedel5ff47892008-07-14 20:11:18 +0200842 set_iommu_for_device(iommu, devid);
Joerg Roedel3566b772008-06-26 21:27:46 +0200843}
844
Joerg Roedelc50e3242014-09-09 15:59:37 +0200845static int __init add_special_device(u8 type, u8 id, u16 *devid, bool cmd_line)
Joerg Roedel6efed632012-06-14 15:52:58 +0200846{
847 struct devid_map *entry;
848 struct list_head *list;
849
Joerg Roedel31cff672013-04-09 16:53:58 +0200850 if (type == IVHD_SPECIAL_IOAPIC)
851 list = &ioapic_map;
852 else if (type == IVHD_SPECIAL_HPET)
853 list = &hpet_map;
854 else
Joerg Roedel6efed632012-06-14 15:52:58 +0200855 return -EINVAL;
856
Joerg Roedel31cff672013-04-09 16:53:58 +0200857 list_for_each_entry(entry, list, list) {
858 if (!(entry->id == id && entry->cmd_line))
859 continue;
860
861 pr_info("AMD-Vi: Command-line override present for %s id %d - ignoring\n",
862 type == IVHD_SPECIAL_IOAPIC ? "IOAPIC" : "HPET", id);
863
Joerg Roedelc50e3242014-09-09 15:59:37 +0200864 *devid = entry->devid;
865
Joerg Roedel31cff672013-04-09 16:53:58 +0200866 return 0;
867 }
868
Joerg Roedel6efed632012-06-14 15:52:58 +0200869 entry = kzalloc(sizeof(*entry), GFP_KERNEL);
870 if (!entry)
871 return -ENOMEM;
872
Joerg Roedel31cff672013-04-09 16:53:58 +0200873 entry->id = id;
Joerg Roedelc50e3242014-09-09 15:59:37 +0200874 entry->devid = *devid;
Joerg Roedel31cff672013-04-09 16:53:58 +0200875 entry->cmd_line = cmd_line;
Joerg Roedel6efed632012-06-14 15:52:58 +0200876
877 list_add_tail(&entry->list, list);
878
879 return 0;
880}
881
Wan Zongshun2a0cb4e2016-04-01 09:06:00 -0400882static int __init add_acpi_hid_device(u8 *hid, u8 *uid, u16 *devid,
883 bool cmd_line)
884{
885 struct acpihid_map_entry *entry;
886 struct list_head *list = &acpihid_map;
887
888 list_for_each_entry(entry, list, list) {
889 if (strcmp(entry->hid, hid) ||
890 (*uid && *entry->uid && strcmp(entry->uid, uid)) ||
891 !entry->cmd_line)
892 continue;
893
894 pr_info("AMD-Vi: Command-line override for hid:%s uid:%s\n",
895 hid, uid);
896 *devid = entry->devid;
897 return 0;
898 }
899
900 entry = kzalloc(sizeof(*entry), GFP_KERNEL);
901 if (!entry)
902 return -ENOMEM;
903
904 memcpy(entry->uid, uid, strlen(uid));
905 memcpy(entry->hid, hid, strlen(hid));
906 entry->devid = *devid;
907 entry->cmd_line = cmd_line;
908 entry->root_devid = (entry->devid & (~0x7));
909
910 pr_info("AMD-Vi:%s, add hid:%s, uid:%s, rdevid:%d\n",
911 entry->cmd_line ? "cmd" : "ivrs",
912 entry->hid, entry->uid, entry->root_devid);
913
914 list_add_tail(&entry->list, list);
915 return 0;
916}
917
Joerg Roedel235dacb2013-04-09 17:53:14 +0200918static int __init add_early_maps(void)
919{
920 int i, ret;
921
922 for (i = 0; i < early_ioapic_map_size; ++i) {
923 ret = add_special_device(IVHD_SPECIAL_IOAPIC,
924 early_ioapic_map[i].id,
Joerg Roedelc50e3242014-09-09 15:59:37 +0200925 &early_ioapic_map[i].devid,
Joerg Roedel235dacb2013-04-09 17:53:14 +0200926 early_ioapic_map[i].cmd_line);
927 if (ret)
928 return ret;
929 }
930
931 for (i = 0; i < early_hpet_map_size; ++i) {
932 ret = add_special_device(IVHD_SPECIAL_HPET,
933 early_hpet_map[i].id,
Joerg Roedelc50e3242014-09-09 15:59:37 +0200934 &early_hpet_map[i].devid,
Joerg Roedel235dacb2013-04-09 17:53:14 +0200935 early_hpet_map[i].cmd_line);
936 if (ret)
937 return ret;
938 }
939
Wan Zongshun2a0cb4e2016-04-01 09:06:00 -0400940 for (i = 0; i < early_acpihid_map_size; ++i) {
941 ret = add_acpi_hid_device(early_acpihid_map[i].hid,
942 early_acpihid_map[i].uid,
943 &early_acpihid_map[i].devid,
944 early_acpihid_map[i].cmd_line);
945 if (ret)
946 return ret;
947 }
948
Joerg Roedel235dacb2013-04-09 17:53:14 +0200949 return 0;
950}
951
Joerg Roedelb65233a2008-07-11 17:14:21 +0200952/*
Frank Arnolddf805ab2012-08-27 19:21:04 +0200953 * Reads the device exclusion range from ACPI and initializes the IOMMU with
Joerg Roedelb65233a2008-07-11 17:14:21 +0200954 * it
955 */
Joerg Roedel3566b772008-06-26 21:27:46 +0200956static void __init set_device_exclusion_range(u16 devid, struct ivmd_header *m)
957{
958 struct amd_iommu *iommu = amd_iommu_rlookup_table[devid];
959
960 if (!(m->flags & IVMD_FLAG_EXCL_RANGE))
961 return;
962
963 if (iommu) {
Joerg Roedelb65233a2008-07-11 17:14:21 +0200964 /*
965 * We only can configure exclusion ranges per IOMMU, not
966 * per device. But we can enable the exclusion range per
967 * device. This is done here
968 */
Su Friendy2c16c9f2014-05-07 13:54:52 +0800969 set_dev_entry_bit(devid, DEV_ENTRY_EX);
Joerg Roedel3566b772008-06-26 21:27:46 +0200970 iommu->exclusion_start = m->range_start;
971 iommu->exclusion_length = m->range_length;
972 }
973}
974
Joerg Roedelb65233a2008-07-11 17:14:21 +0200975/*
Joerg Roedelb65233a2008-07-11 17:14:21 +0200976 * Takes a pointer to an AMD IOMMU entry in the ACPI table and
977 * initializes the hardware and our data structures with it.
978 */
Joerg Roedel6efed632012-06-14 15:52:58 +0200979static int __init init_iommu_from_acpi(struct amd_iommu *iommu,
Joerg Roedel5d0c8e42008-06-26 21:27:47 +0200980 struct ivhd_header *h)
981{
982 u8 *p = (u8 *)h;
983 u8 *end = p, flags = 0;
Joerg Roedel0de66d52011-06-06 16:04:02 +0200984 u16 devid = 0, devid_start = 0, devid_to = 0;
985 u32 dev_i, ext_flags = 0;
Joerg Roedel58a3bee2008-07-11 17:14:30 +0200986 bool alias = false;
Joerg Roedel5d0c8e42008-06-26 21:27:47 +0200987 struct ivhd_entry *e;
Suravee Suthikulpanitac7ccf62016-04-01 09:05:58 -0400988 u32 ivhd_size;
Joerg Roedel235dacb2013-04-09 17:53:14 +0200989 int ret;
990
991
992 ret = add_early_maps();
993 if (ret)
994 return ret;
Joerg Roedel5d0c8e42008-06-26 21:27:47 +0200995
996 /*
Joerg Roedele9bf5192010-09-20 14:33:07 +0200997 * First save the recommended feature enable bits from ACPI
Joerg Roedel5d0c8e42008-06-26 21:27:47 +0200998 */
Joerg Roedele9bf5192010-09-20 14:33:07 +0200999 iommu->acpi_flags = h->flags;
Joerg Roedel5d0c8e42008-06-26 21:27:47 +02001000
1001 /*
1002 * Done. Now parse the device entries
1003 */
Suravee Suthikulpanitac7ccf62016-04-01 09:05:58 -04001004 ivhd_size = get_ivhd_header_size(h);
1005 if (!ivhd_size) {
1006 pr_err("AMD-Vi: Unsupported IVHD type %#x\n", h->type);
1007 return -EINVAL;
1008 }
1009
1010 p += ivhd_size;
1011
Joerg Roedel5d0c8e42008-06-26 21:27:47 +02001012 end += h->length;
1013
Joerg Roedel42a698f2009-05-20 15:41:28 +02001014
Joerg Roedel5d0c8e42008-06-26 21:27:47 +02001015 while (p < end) {
1016 e = (struct ivhd_entry *)p;
1017 switch (e->type) {
1018 case IVHD_DEV_ALL:
Joerg Roedel42a698f2009-05-20 15:41:28 +02001019
Joerg Roedel226e8892015-10-20 17:33:44 +02001020 DUMP_printk(" DEV_ALL\t\t\tflags: %02x\n", e->flags);
Joerg Roedel42a698f2009-05-20 15:41:28 +02001021
Joerg Roedel226e8892015-10-20 17:33:44 +02001022 for (dev_i = 0; dev_i <= amd_iommu_last_bdf; ++dev_i)
1023 set_dev_entry_from_acpi(iommu, dev_i, e->flags, 0);
Joerg Roedel5d0c8e42008-06-26 21:27:47 +02001024 break;
1025 case IVHD_DEV_SELECT:
Joerg Roedel42a698f2009-05-20 15:41:28 +02001026
1027 DUMP_printk(" DEV_SELECT\t\t\t devid: %02x:%02x.%x "
1028 "flags: %02x\n",
Shuah Khanc5081cd2013-02-27 17:07:19 -07001029 PCI_BUS_NUM(e->devid),
Joerg Roedel42a698f2009-05-20 15:41:28 +02001030 PCI_SLOT(e->devid),
1031 PCI_FUNC(e->devid),
1032 e->flags);
1033
Joerg Roedel5d0c8e42008-06-26 21:27:47 +02001034 devid = e->devid;
Joerg Roedel5ff47892008-07-14 20:11:18 +02001035 set_dev_entry_from_acpi(iommu, devid, e->flags, 0);
Joerg Roedel5d0c8e42008-06-26 21:27:47 +02001036 break;
1037 case IVHD_DEV_SELECT_RANGE_START:
Joerg Roedel42a698f2009-05-20 15:41:28 +02001038
1039 DUMP_printk(" DEV_SELECT_RANGE_START\t "
1040 "devid: %02x:%02x.%x flags: %02x\n",
Shuah Khanc5081cd2013-02-27 17:07:19 -07001041 PCI_BUS_NUM(e->devid),
Joerg Roedel42a698f2009-05-20 15:41:28 +02001042 PCI_SLOT(e->devid),
1043 PCI_FUNC(e->devid),
1044 e->flags);
1045
Joerg Roedel5d0c8e42008-06-26 21:27:47 +02001046 devid_start = e->devid;
1047 flags = e->flags;
1048 ext_flags = 0;
Joerg Roedel58a3bee2008-07-11 17:14:30 +02001049 alias = false;
Joerg Roedel5d0c8e42008-06-26 21:27:47 +02001050 break;
1051 case IVHD_DEV_ALIAS:
Joerg Roedel42a698f2009-05-20 15:41:28 +02001052
1053 DUMP_printk(" DEV_ALIAS\t\t\t devid: %02x:%02x.%x "
1054 "flags: %02x devid_to: %02x:%02x.%x\n",
Shuah Khanc5081cd2013-02-27 17:07:19 -07001055 PCI_BUS_NUM(e->devid),
Joerg Roedel42a698f2009-05-20 15:41:28 +02001056 PCI_SLOT(e->devid),
1057 PCI_FUNC(e->devid),
1058 e->flags,
Shuah Khanc5081cd2013-02-27 17:07:19 -07001059 PCI_BUS_NUM(e->ext >> 8),
Joerg Roedel42a698f2009-05-20 15:41:28 +02001060 PCI_SLOT(e->ext >> 8),
1061 PCI_FUNC(e->ext >> 8));
1062
Joerg Roedel5d0c8e42008-06-26 21:27:47 +02001063 devid = e->devid;
1064 devid_to = e->ext >> 8;
Joerg Roedel7a6a3a02009-07-02 12:23:23 +02001065 set_dev_entry_from_acpi(iommu, devid , e->flags, 0);
Neil Turton7455aab2009-05-14 14:08:11 +01001066 set_dev_entry_from_acpi(iommu, devid_to, e->flags, 0);
Joerg Roedel5d0c8e42008-06-26 21:27:47 +02001067 amd_iommu_alias_table[devid] = devid_to;
1068 break;
1069 case IVHD_DEV_ALIAS_RANGE:
Joerg Roedel42a698f2009-05-20 15:41:28 +02001070
1071 DUMP_printk(" DEV_ALIAS_RANGE\t\t "
1072 "devid: %02x:%02x.%x flags: %02x "
1073 "devid_to: %02x:%02x.%x\n",
Shuah Khanc5081cd2013-02-27 17:07:19 -07001074 PCI_BUS_NUM(e->devid),
Joerg Roedel42a698f2009-05-20 15:41:28 +02001075 PCI_SLOT(e->devid),
1076 PCI_FUNC(e->devid),
1077 e->flags,
Shuah Khanc5081cd2013-02-27 17:07:19 -07001078 PCI_BUS_NUM(e->ext >> 8),
Joerg Roedel42a698f2009-05-20 15:41:28 +02001079 PCI_SLOT(e->ext >> 8),
1080 PCI_FUNC(e->ext >> 8));
1081
Joerg Roedel5d0c8e42008-06-26 21:27:47 +02001082 devid_start = e->devid;
1083 flags = e->flags;
1084 devid_to = e->ext >> 8;
1085 ext_flags = 0;
Joerg Roedel58a3bee2008-07-11 17:14:30 +02001086 alias = true;
Joerg Roedel5d0c8e42008-06-26 21:27:47 +02001087 break;
1088 case IVHD_DEV_EXT_SELECT:
Joerg Roedel42a698f2009-05-20 15:41:28 +02001089
1090 DUMP_printk(" DEV_EXT_SELECT\t\t devid: %02x:%02x.%x "
1091 "flags: %02x ext: %08x\n",
Shuah Khanc5081cd2013-02-27 17:07:19 -07001092 PCI_BUS_NUM(e->devid),
Joerg Roedel42a698f2009-05-20 15:41:28 +02001093 PCI_SLOT(e->devid),
1094 PCI_FUNC(e->devid),
1095 e->flags, e->ext);
1096
Joerg Roedel5d0c8e42008-06-26 21:27:47 +02001097 devid = e->devid;
Joerg Roedel5ff47892008-07-14 20:11:18 +02001098 set_dev_entry_from_acpi(iommu, devid, e->flags,
1099 e->ext);
Joerg Roedel5d0c8e42008-06-26 21:27:47 +02001100 break;
1101 case IVHD_DEV_EXT_SELECT_RANGE:
Joerg Roedel42a698f2009-05-20 15:41:28 +02001102
1103 DUMP_printk(" DEV_EXT_SELECT_RANGE\t devid: "
1104 "%02x:%02x.%x flags: %02x ext: %08x\n",
Shuah Khanc5081cd2013-02-27 17:07:19 -07001105 PCI_BUS_NUM(e->devid),
Joerg Roedel42a698f2009-05-20 15:41:28 +02001106 PCI_SLOT(e->devid),
1107 PCI_FUNC(e->devid),
1108 e->flags, e->ext);
1109
Joerg Roedel5d0c8e42008-06-26 21:27:47 +02001110 devid_start = e->devid;
1111 flags = e->flags;
1112 ext_flags = e->ext;
Joerg Roedel58a3bee2008-07-11 17:14:30 +02001113 alias = false;
Joerg Roedel5d0c8e42008-06-26 21:27:47 +02001114 break;
1115 case IVHD_DEV_RANGE_END:
Joerg Roedel42a698f2009-05-20 15:41:28 +02001116
1117 DUMP_printk(" DEV_RANGE_END\t\t devid: %02x:%02x.%x\n",
Shuah Khanc5081cd2013-02-27 17:07:19 -07001118 PCI_BUS_NUM(e->devid),
Joerg Roedel42a698f2009-05-20 15:41:28 +02001119 PCI_SLOT(e->devid),
1120 PCI_FUNC(e->devid));
1121
Joerg Roedel5d0c8e42008-06-26 21:27:47 +02001122 devid = e->devid;
1123 for (dev_i = devid_start; dev_i <= devid; ++dev_i) {
Joerg Roedel7a6a3a02009-07-02 12:23:23 +02001124 if (alias) {
Joerg Roedel5d0c8e42008-06-26 21:27:47 +02001125 amd_iommu_alias_table[dev_i] = devid_to;
Joerg Roedel7a6a3a02009-07-02 12:23:23 +02001126 set_dev_entry_from_acpi(iommu,
1127 devid_to, flags, ext_flags);
1128 }
1129 set_dev_entry_from_acpi(iommu, dev_i,
1130 flags, ext_flags);
Joerg Roedel5d0c8e42008-06-26 21:27:47 +02001131 }
1132 break;
Joerg Roedel6efed632012-06-14 15:52:58 +02001133 case IVHD_DEV_SPECIAL: {
1134 u8 handle, type;
1135 const char *var;
1136 u16 devid;
1137 int ret;
1138
1139 handle = e->ext & 0xff;
1140 devid = (e->ext >> 8) & 0xffff;
1141 type = (e->ext >> 24) & 0xff;
1142
1143 if (type == IVHD_SPECIAL_IOAPIC)
1144 var = "IOAPIC";
1145 else if (type == IVHD_SPECIAL_HPET)
1146 var = "HPET";
1147 else
1148 var = "UNKNOWN";
1149
1150 DUMP_printk(" DEV_SPECIAL(%s[%d])\t\tdevid: %02x:%02x.%x\n",
1151 var, (int)handle,
Shuah Khanc5081cd2013-02-27 17:07:19 -07001152 PCI_BUS_NUM(devid),
Joerg Roedel6efed632012-06-14 15:52:58 +02001153 PCI_SLOT(devid),
1154 PCI_FUNC(devid));
1155
Joerg Roedelc50e3242014-09-09 15:59:37 +02001156 ret = add_special_device(type, handle, &devid, false);
Joerg Roedel6efed632012-06-14 15:52:58 +02001157 if (ret)
1158 return ret;
Joerg Roedelc50e3242014-09-09 15:59:37 +02001159
1160 /*
1161 * add_special_device might update the devid in case a
1162 * command-line override is present. So call
1163 * set_dev_entry_from_acpi after add_special_device.
1164 */
1165 set_dev_entry_from_acpi(iommu, devid, e->flags, 0);
1166
Joerg Roedel6efed632012-06-14 15:52:58 +02001167 break;
1168 }
Wan Zongshun2a0cb4e2016-04-01 09:06:00 -04001169 case IVHD_DEV_ACPI_HID: {
1170 u16 devid;
1171 u8 hid[ACPIHID_HID_LEN] = {0};
1172 u8 uid[ACPIHID_UID_LEN] = {0};
1173 int ret;
1174
1175 if (h->type != 0x40) {
1176 pr_err(FW_BUG "Invalid IVHD device type %#x\n",
1177 e->type);
1178 break;
1179 }
1180
1181 memcpy(hid, (u8 *)(&e->ext), ACPIHID_HID_LEN - 1);
1182 hid[ACPIHID_HID_LEN - 1] = '\0';
1183
1184 if (!(*hid)) {
1185 pr_err(FW_BUG "Invalid HID.\n");
1186 break;
1187 }
1188
1189 switch (e->uidf) {
1190 case UID_NOT_PRESENT:
1191
1192 if (e->uidl != 0)
1193 pr_warn(FW_BUG "Invalid UID length.\n");
1194
1195 break;
1196 case UID_IS_INTEGER:
1197
1198 sprintf(uid, "%d", e->uid);
1199
1200 break;
1201 case UID_IS_CHARACTER:
1202
1203 memcpy(uid, (u8 *)(&e->uid), ACPIHID_UID_LEN - 1);
1204 uid[ACPIHID_UID_LEN - 1] = '\0';
1205
1206 break;
1207 default:
1208 break;
1209 }
1210
Nicolas Iooss6082ee72016-06-26 10:33:29 +02001211 devid = e->devid;
Wan Zongshun2a0cb4e2016-04-01 09:06:00 -04001212 DUMP_printk(" DEV_ACPI_HID(%s[%s])\t\tdevid: %02x:%02x.%x\n",
1213 hid, uid,
1214 PCI_BUS_NUM(devid),
1215 PCI_SLOT(devid),
1216 PCI_FUNC(devid));
1217
Wan Zongshun2a0cb4e2016-04-01 09:06:00 -04001218 flags = e->flags;
1219
1220 ret = add_acpi_hid_device(hid, uid, &devid, false);
1221 if (ret)
1222 return ret;
1223
1224 /*
1225 * add_special_device might update the devid in case a
1226 * command-line override is present. So call
1227 * set_dev_entry_from_acpi after add_special_device.
1228 */
1229 set_dev_entry_from_acpi(iommu, devid, e->flags, 0);
1230
1231 break;
1232 }
Joerg Roedel5d0c8e42008-06-26 21:27:47 +02001233 default:
1234 break;
1235 }
1236
Joerg Roedelb514e552008-09-17 17:14:27 +02001237 p += ivhd_entry_length(p);
Joerg Roedel5d0c8e42008-06-26 21:27:47 +02001238 }
Joerg Roedel6efed632012-06-14 15:52:58 +02001239
1240 return 0;
Joerg Roedel5d0c8e42008-06-26 21:27:47 +02001241}
1242
Joerg Roedele47d4022008-06-26 21:27:48 +02001243static void __init free_iommu_one(struct amd_iommu *iommu)
1244{
1245 free_command_buffer(iommu);
Joerg Roedel335503e2008-09-05 14:29:07 +02001246 free_event_buffer(iommu);
Joerg Roedel1a29ac02011-11-10 15:41:40 +01001247 free_ppr_log(iommu);
Suravee Suthikulpanit8bda0cf2016-08-23 13:52:36 -05001248 free_ga_log(iommu);
Joerg Roedele47d4022008-06-26 21:27:48 +02001249 iommu_unmap_mmio_space(iommu);
1250}
1251
1252static void __init free_iommu_all(void)
1253{
1254 struct amd_iommu *iommu, *next;
1255
Joerg Roedel3bd22172009-05-04 15:06:20 +02001256 for_each_iommu_safe(iommu, next) {
Joerg Roedele47d4022008-06-26 21:27:48 +02001257 list_del(&iommu->list);
1258 free_iommu_one(iommu);
1259 kfree(iommu);
1260 }
1261}
1262
Joerg Roedelb65233a2008-07-11 17:14:21 +02001263/*
Suravee Suthikulpanit318fe782013-01-24 13:17:53 -06001264 * Family15h Model 10h-1fh erratum 746 (IOMMU Logging May Stall Translations)
1265 * Workaround:
1266 * BIOS should disable L2B micellaneous clock gating by setting
1267 * L2_L2B_CK_GATE_CONTROL[CKGateL2BMiscDisable](D0F2xF4_x90[2]) = 1b
1268 */
Nikola Pajkovskye2f1a3b2013-02-26 16:12:05 +01001269static void amd_iommu_erratum_746_workaround(struct amd_iommu *iommu)
Suravee Suthikulpanit318fe782013-01-24 13:17:53 -06001270{
1271 u32 value;
1272
1273 if ((boot_cpu_data.x86 != 0x15) ||
1274 (boot_cpu_data.x86_model < 0x10) ||
1275 (boot_cpu_data.x86_model > 0x1f))
1276 return;
1277
1278 pci_write_config_dword(iommu->dev, 0xf0, 0x90);
1279 pci_read_config_dword(iommu->dev, 0xf4, &value);
1280
1281 if (value & BIT(2))
1282 return;
1283
1284 /* Select NB indirect register 0x90 and enable writing */
1285 pci_write_config_dword(iommu->dev, 0xf0, 0x90 | (1 << 8));
1286
1287 pci_write_config_dword(iommu->dev, 0xf4, value | 0x4);
1288 pr_info("AMD-Vi: Applying erratum 746 workaround for IOMMU at %s\n",
1289 dev_name(&iommu->dev->dev));
1290
1291 /* Clear the enable writing bit */
1292 pci_write_config_dword(iommu->dev, 0xf0, 0x90);
1293}
1294
1295/*
Jay Cornwall358875f2016-02-10 15:48:01 -06001296 * Family15h Model 30h-3fh (IOMMU Mishandles ATS Write Permission)
1297 * Workaround:
1298 * BIOS should enable ATS write permission check by setting
1299 * L2_DEBUG_3[AtsIgnoreIWDis](D0F2xF4_x47[0]) = 1b
1300 */
1301static void amd_iommu_ats_write_check_workaround(struct amd_iommu *iommu)
1302{
1303 u32 value;
1304
1305 if ((boot_cpu_data.x86 != 0x15) ||
1306 (boot_cpu_data.x86_model < 0x30) ||
1307 (boot_cpu_data.x86_model > 0x3f))
1308 return;
1309
1310 /* Test L2_DEBUG_3[AtsIgnoreIWDis] == 1 */
1311 value = iommu_read_l2(iommu, 0x47);
1312
1313 if (value & BIT(0))
1314 return;
1315
1316 /* Set L2_DEBUG_3[AtsIgnoreIWDis] = 1 */
1317 iommu_write_l2(iommu, 0x47, value | BIT(0));
1318
1319 pr_info("AMD-Vi: Applying ATS write check workaround for IOMMU at %s\n",
1320 dev_name(&iommu->dev->dev));
1321}
1322
1323/*
Joerg Roedelb65233a2008-07-11 17:14:21 +02001324 * This function clues the initialization function for one IOMMU
1325 * together and also allocates the command buffer and programs the
1326 * hardware. It does NOT enable the IOMMU. This is done afterwards.
1327 */
Joerg Roedele47d4022008-06-26 21:27:48 +02001328static int __init init_iommu_one(struct amd_iommu *iommu, struct ivhd_header *h)
1329{
Joerg Roedel6efed632012-06-14 15:52:58 +02001330 int ret;
1331
Joerg Roedele47d4022008-06-26 21:27:48 +02001332 spin_lock_init(&iommu->lock);
Joerg Roedelbb527772009-11-20 14:31:51 +01001333
1334 /* Add IOMMU to internal data structures */
Joerg Roedele47d4022008-06-26 21:27:48 +02001335 list_add_tail(&iommu->list, &amd_iommu_list);
Joerg Roedelbb527772009-11-20 14:31:51 +01001336 iommu->index = amd_iommus_present++;
1337
1338 if (unlikely(iommu->index >= MAX_IOMMUS)) {
1339 WARN(1, "AMD-Vi: System has more IOMMUs than supported by this driver\n");
1340 return -ENOSYS;
1341 }
1342
1343 /* Index is fine - add IOMMU to the array */
1344 amd_iommus[iommu->index] = iommu;
Joerg Roedele47d4022008-06-26 21:27:48 +02001345
1346 /*
1347 * Copy data from ACPI table entry to the iommu struct
1348 */
Joerg Roedel23c742d2012-06-12 11:47:34 +02001349 iommu->devid = h->devid;
Joerg Roedele47d4022008-06-26 21:27:48 +02001350 iommu->cap_ptr = h->cap_ptr;
Joerg Roedelee893c22008-09-08 14:48:04 +02001351 iommu->pci_seg = h->pci_seg;
Joerg Roedele47d4022008-06-26 21:27:48 +02001352 iommu->mmio_phys = h->mmio_phys;
Steven L Kinney30861dd2013-06-05 16:11:48 -05001353
Suravee Suthikulpanit7d7d38a2016-04-01 09:05:57 -04001354 switch (h->type) {
1355 case 0x10:
1356 /* Check if IVHD EFR contains proper max banks/counters */
1357 if ((h->efr_attr != 0) &&
1358 ((h->efr_attr & (0xF << 13)) != 0) &&
1359 ((h->efr_attr & (0x3F << 17)) != 0))
1360 iommu->mmio_phys_end = MMIO_REG_END_OFFSET;
1361 else
1362 iommu->mmio_phys_end = MMIO_CNTR_CONF_OFFSET;
Suravee Suthikulpanit3928aa32016-08-23 13:52:32 -05001363 if (((h->efr_attr & (0x1 << IOMMU_FEAT_GASUP_SHIFT)) == 0))
1364 amd_iommu_guest_ir = AMD_IOMMU_GUEST_IR_LEGACY;
Suravee Suthikulpanit7d7d38a2016-04-01 09:05:57 -04001365 break;
1366 case 0x11:
1367 case 0x40:
1368 if (h->efr_reg & (1 << 9))
1369 iommu->mmio_phys_end = MMIO_REG_END_OFFSET;
1370 else
1371 iommu->mmio_phys_end = MMIO_CNTR_CONF_OFFSET;
Suravee Suthikulpanit3928aa32016-08-23 13:52:32 -05001372 if (((h->efr_reg & (0x1 << IOMMU_EFR_GASUP_SHIFT)) == 0))
1373 amd_iommu_guest_ir = AMD_IOMMU_GUEST_IR_LEGACY;
Suravee Suthikulpanit7d7d38a2016-04-01 09:05:57 -04001374 break;
1375 default:
1376 return -EINVAL;
Steven L Kinney30861dd2013-06-05 16:11:48 -05001377 }
1378
1379 iommu->mmio_base = iommu_map_mmio_space(iommu->mmio_phys,
1380 iommu->mmio_phys_end);
Joerg Roedele47d4022008-06-26 21:27:48 +02001381 if (!iommu->mmio_base)
1382 return -ENOMEM;
1383
Joerg Roedelf2c2db52015-10-20 17:33:42 +02001384 if (alloc_command_buffer(iommu))
Joerg Roedele47d4022008-06-26 21:27:48 +02001385 return -ENOMEM;
1386
Joerg Roedelf2c2db52015-10-20 17:33:42 +02001387 if (alloc_event_buffer(iommu))
Joerg Roedel335503e2008-09-05 14:29:07 +02001388 return -ENOMEM;
1389
Joerg Roedela80dc3e2008-09-11 16:51:41 +02001390 iommu->int_enabled = false;
1391
Joerg Roedel6efed632012-06-14 15:52:58 +02001392 ret = init_iommu_from_acpi(iommu, h);
1393 if (ret)
1394 return ret;
Joerg Roedelf6fec002012-06-21 16:51:25 +02001395
Jiang Liu7c71d302015-04-13 14:11:33 +08001396 ret = amd_iommu_create_irq_domain(iommu);
1397 if (ret)
1398 return ret;
1399
Joerg Roedelf6fec002012-06-21 16:51:25 +02001400 /*
1401 * Make sure IOMMU is not considered to translate itself. The IVRS
1402 * table tells us so, but this is a lie!
1403 */
1404 amd_iommu_rlookup_table[iommu->devid] = NULL;
1405
Joerg Roedel23c742d2012-06-12 11:47:34 +02001406 return 0;
Joerg Roedele47d4022008-06-26 21:27:48 +02001407}
1408
Suravee Suthikulpanit8c7142f2016-04-01 09:05:59 -04001409/**
1410 * get_highest_supported_ivhd_type - Look up the appropriate IVHD type
1411 * @ivrs Pointer to the IVRS header
1412 *
1413 * This function search through all IVDB of the maximum supported IVHD
1414 */
1415static u8 get_highest_supported_ivhd_type(struct acpi_table_header *ivrs)
1416{
1417 u8 *base = (u8 *)ivrs;
1418 struct ivhd_header *ivhd = (struct ivhd_header *)
1419 (base + IVRS_HEADER_LENGTH);
1420 u8 last_type = ivhd->type;
1421 u16 devid = ivhd->devid;
1422
1423 while (((u8 *)ivhd - base < ivrs->length) &&
1424 (ivhd->type <= ACPI_IVHD_TYPE_MAX_SUPPORTED)) {
1425 u8 *p = (u8 *) ivhd;
1426
1427 if (ivhd->devid == devid)
1428 last_type = ivhd->type;
1429 ivhd = (struct ivhd_header *)(p + ivhd->length);
1430 }
1431
1432 return last_type;
1433}
1434
Joerg Roedelb65233a2008-07-11 17:14:21 +02001435/*
1436 * Iterates over all IOMMU entries in the ACPI table, allocates the
1437 * IOMMU structure and initializes it with init_iommu_one()
1438 */
Joerg Roedele47d4022008-06-26 21:27:48 +02001439static int __init init_iommu_all(struct acpi_table_header *table)
1440{
1441 u8 *p = (u8 *)table, *end = (u8 *)table;
1442 struct ivhd_header *h;
1443 struct amd_iommu *iommu;
1444 int ret;
1445
Joerg Roedele47d4022008-06-26 21:27:48 +02001446 end += table->length;
1447 p += IVRS_HEADER_LENGTH;
1448
1449 while (p < end) {
1450 h = (struct ivhd_header *)p;
Suravee Suthikulpanit8c7142f2016-04-01 09:05:59 -04001451 if (*p == amd_iommu_target_ivhd_type) {
Joerg Roedel9c720412009-05-20 13:53:57 +02001452
Joerg Roedelae908c22009-09-01 16:52:16 +02001453 DUMP_printk("device: %02x:%02x.%01x cap: %04x "
Joerg Roedel9c720412009-05-20 13:53:57 +02001454 "seg: %d flags: %01x info %04x\n",
Shuah Khanc5081cd2013-02-27 17:07:19 -07001455 PCI_BUS_NUM(h->devid), PCI_SLOT(h->devid),
Joerg Roedel9c720412009-05-20 13:53:57 +02001456 PCI_FUNC(h->devid), h->cap_ptr,
1457 h->pci_seg, h->flags, h->info);
1458 DUMP_printk(" mmio-addr: %016llx\n",
1459 h->mmio_phys);
1460
Joerg Roedele47d4022008-06-26 21:27:48 +02001461 iommu = kzalloc(sizeof(struct amd_iommu), GFP_KERNEL);
Joerg Roedel02f3b3f2012-06-11 17:45:25 +02001462 if (iommu == NULL)
1463 return -ENOMEM;
Joerg Roedel3551a702010-03-01 13:52:19 +01001464
Joerg Roedele47d4022008-06-26 21:27:48 +02001465 ret = init_iommu_one(iommu, h);
Joerg Roedel02f3b3f2012-06-11 17:45:25 +02001466 if (ret)
1467 return ret;
Joerg Roedele47d4022008-06-26 21:27:48 +02001468 }
1469 p += h->length;
1470
1471 }
1472 WARN_ON(p != end);
1473
1474 return 0;
1475}
1476
Steven L Kinney30861dd2013-06-05 16:11:48 -05001477
1478static void init_iommu_perf_ctr(struct amd_iommu *iommu)
1479{
1480 u64 val = 0xabcd, val2 = 0;
1481
1482 if (!iommu_feature(iommu, FEATURE_PC))
1483 return;
1484
1485 amd_iommu_pc_present = true;
1486
1487 /* Check if the performance counters can be written to */
Suravee Suthikulpanit38e45d022016-02-23 13:03:30 +01001488 if ((0 != iommu_pc_get_set_reg_val(iommu, 0, 0, 0, &val, true)) ||
1489 (0 != iommu_pc_get_set_reg_val(iommu, 0, 0, 0, &val2, false)) ||
Steven L Kinney30861dd2013-06-05 16:11:48 -05001490 (val != val2)) {
1491 pr_err("AMD-Vi: Unable to write to IOMMU perf counter.\n");
1492 amd_iommu_pc_present = false;
1493 return;
1494 }
1495
1496 pr_info("AMD-Vi: IOMMU performance counters supported\n");
1497
1498 val = readl(iommu->mmio_base + MMIO_CNTR_CONF_OFFSET);
1499 iommu->max_banks = (u8) ((val >> 12) & 0x3f);
1500 iommu->max_counters = (u8) ((val >> 7) & 0xf);
1501}
1502
Alex Williamson066f2e92014-06-12 16:12:37 -06001503static ssize_t amd_iommu_show_cap(struct device *dev,
1504 struct device_attribute *attr,
1505 char *buf)
1506{
1507 struct amd_iommu *iommu = dev_get_drvdata(dev);
1508 return sprintf(buf, "%x\n", iommu->cap);
1509}
1510static DEVICE_ATTR(cap, S_IRUGO, amd_iommu_show_cap, NULL);
1511
1512static ssize_t amd_iommu_show_features(struct device *dev,
1513 struct device_attribute *attr,
1514 char *buf)
1515{
1516 struct amd_iommu *iommu = dev_get_drvdata(dev);
1517 return sprintf(buf, "%llx\n", iommu->features);
1518}
1519static DEVICE_ATTR(features, S_IRUGO, amd_iommu_show_features, NULL);
1520
1521static struct attribute *amd_iommu_attrs[] = {
1522 &dev_attr_cap.attr,
1523 &dev_attr_features.attr,
1524 NULL,
1525};
1526
1527static struct attribute_group amd_iommu_group = {
1528 .name = "amd-iommu",
1529 .attrs = amd_iommu_attrs,
1530};
1531
1532static const struct attribute_group *amd_iommu_groups[] = {
1533 &amd_iommu_group,
1534 NULL,
1535};
Steven L Kinney30861dd2013-06-05 16:11:48 -05001536
Joerg Roedel23c742d2012-06-12 11:47:34 +02001537static int iommu_init_pci(struct amd_iommu *iommu)
1538{
1539 int cap_ptr = iommu->cap_ptr;
1540 u32 range, misc, low, high;
Suravee Suthikulpanit8bda0cf2016-08-23 13:52:36 -05001541 int ret;
Joerg Roedel23c742d2012-06-12 11:47:34 +02001542
Shuah Khanc5081cd2013-02-27 17:07:19 -07001543 iommu->dev = pci_get_bus_and_slot(PCI_BUS_NUM(iommu->devid),
Joerg Roedel23c742d2012-06-12 11:47:34 +02001544 iommu->devid & 0xff);
1545 if (!iommu->dev)
1546 return -ENODEV;
1547
Jiang Liucbbc00b2015-10-09 22:07:31 +08001548 /* Prevent binding other PCI device drivers to IOMMU devices */
1549 iommu->dev->match_driver = false;
1550
Joerg Roedel23c742d2012-06-12 11:47:34 +02001551 pci_read_config_dword(iommu->dev, cap_ptr + MMIO_CAP_HDR_OFFSET,
1552 &iommu->cap);
1553 pci_read_config_dword(iommu->dev, cap_ptr + MMIO_RANGE_OFFSET,
1554 &range);
1555 pci_read_config_dword(iommu->dev, cap_ptr + MMIO_MISC_OFFSET,
1556 &misc);
1557
Joerg Roedel23c742d2012-06-12 11:47:34 +02001558 if (!(iommu->cap & (1 << IOMMU_CAP_IOTLB)))
1559 amd_iommu_iotlb_sup = false;
1560
1561 /* read extended feature bits */
1562 low = readl(iommu->mmio_base + MMIO_EXT_FEATURES);
1563 high = readl(iommu->mmio_base + MMIO_EXT_FEATURES + 4);
1564
1565 iommu->features = ((u64)high << 32) | low;
1566
1567 if (iommu_feature(iommu, FEATURE_GT)) {
1568 int glxval;
Suravee Suthikulpanita919a012014-03-05 18:54:18 -06001569 u32 max_pasid;
1570 u64 pasmax;
Joerg Roedel23c742d2012-06-12 11:47:34 +02001571
Suravee Suthikulpanita919a012014-03-05 18:54:18 -06001572 pasmax = iommu->features & FEATURE_PASID_MASK;
1573 pasmax >>= FEATURE_PASID_SHIFT;
1574 max_pasid = (1 << (pasmax + 1)) - 1;
Joerg Roedel23c742d2012-06-12 11:47:34 +02001575
Suravee Suthikulpanita919a012014-03-05 18:54:18 -06001576 amd_iommu_max_pasid = min(amd_iommu_max_pasid, max_pasid);
1577
1578 BUG_ON(amd_iommu_max_pasid & ~PASID_MASK);
Joerg Roedel23c742d2012-06-12 11:47:34 +02001579
1580 glxval = iommu->features & FEATURE_GLXVAL_MASK;
1581 glxval >>= FEATURE_GLXVAL_SHIFT;
1582
1583 if (amd_iommu_max_glx_val == -1)
1584 amd_iommu_max_glx_val = glxval;
1585 else
1586 amd_iommu_max_glx_val = min(amd_iommu_max_glx_val, glxval);
1587 }
1588
1589 if (iommu_feature(iommu, FEATURE_GT) &&
1590 iommu_feature(iommu, FEATURE_PPR)) {
1591 iommu->is_iommu_v2 = true;
1592 amd_iommu_v2_present = true;
1593 }
1594
Joerg Roedelf2c2db52015-10-20 17:33:42 +02001595 if (iommu_feature(iommu, FEATURE_PPR) && alloc_ppr_log(iommu))
1596 return -ENOMEM;
Joerg Roedel23c742d2012-06-12 11:47:34 +02001597
Suravee Suthikulpanit8bda0cf2016-08-23 13:52:36 -05001598 ret = iommu_init_ga(iommu);
1599 if (ret)
1600 return ret;
Suravee Suthikulpanit3928aa32016-08-23 13:52:32 -05001601
Joerg Roedel23c742d2012-06-12 11:47:34 +02001602 if (iommu->cap & (1UL << IOMMU_CAP_NPCACHE))
1603 amd_iommu_np_cache = true;
1604
Steven L Kinney30861dd2013-06-05 16:11:48 -05001605 init_iommu_perf_ctr(iommu);
1606
Joerg Roedel23c742d2012-06-12 11:47:34 +02001607 if (is_rd890_iommu(iommu->dev)) {
1608 int i, j;
1609
1610 iommu->root_pdev = pci_get_bus_and_slot(iommu->dev->bus->number,
1611 PCI_DEVFN(0, 0));
1612
1613 /*
1614 * Some rd890 systems may not be fully reconfigured by the
1615 * BIOS, so it's necessary for us to store this information so
1616 * it can be reprogrammed on resume
1617 */
1618 pci_read_config_dword(iommu->dev, iommu->cap_ptr + 4,
1619 &iommu->stored_addr_lo);
1620 pci_read_config_dword(iommu->dev, iommu->cap_ptr + 8,
1621 &iommu->stored_addr_hi);
1622
1623 /* Low bit locks writes to configuration space */
1624 iommu->stored_addr_lo &= ~1;
1625
1626 for (i = 0; i < 6; i++)
1627 for (j = 0; j < 0x12; j++)
1628 iommu->stored_l1[i][j] = iommu_read_l1(iommu, i, j);
1629
1630 for (i = 0; i < 0x83; i++)
1631 iommu->stored_l2[i] = iommu_read_l2(iommu, i);
1632 }
1633
Suravee Suthikulpanit318fe782013-01-24 13:17:53 -06001634 amd_iommu_erratum_746_workaround(iommu);
Jay Cornwall358875f2016-02-10 15:48:01 -06001635 amd_iommu_ats_write_check_workaround(iommu);
Suravee Suthikulpanit318fe782013-01-24 13:17:53 -06001636
Alex Williamson066f2e92014-06-12 16:12:37 -06001637 iommu->iommu_dev = iommu_device_create(&iommu->dev->dev, iommu,
1638 amd_iommu_groups, "ivhd%d",
1639 iommu->index);
1640
Joerg Roedel23c742d2012-06-12 11:47:34 +02001641 return pci_enable_device(iommu->dev);
1642}
1643
Joerg Roedel4d121c32012-06-14 12:21:55 +02001644static void print_iommu_info(void)
1645{
1646 static const char * const feat_str[] = {
1647 "PreF", "PPR", "X2APIC", "NX", "GT", "[5]",
1648 "IA", "GA", "HE", "PC"
1649 };
1650 struct amd_iommu *iommu;
1651
1652 for_each_iommu(iommu) {
1653 int i;
1654
1655 pr_info("AMD-Vi: Found IOMMU at %s cap 0x%hx\n",
1656 dev_name(&iommu->dev->dev), iommu->cap_ptr);
1657
1658 if (iommu->cap & (1 << IOMMU_CAP_EFR)) {
Suravee Suthikulpanit3928aa32016-08-23 13:52:32 -05001659 pr_info("AMD-Vi: Extended features (%#llx):\n",
1660 iommu->features);
Joerg Roedel2bd5ed02012-08-10 11:34:08 +02001661 for (i = 0; i < ARRAY_SIZE(feat_str); ++i) {
Joerg Roedel4d121c32012-06-14 12:21:55 +02001662 if (iommu_feature(iommu, (1ULL << i)))
1663 pr_cont(" %s", feat_str[i]);
1664 }
Suravee Suthikulpanit3928aa32016-08-23 13:52:32 -05001665
1666 if (iommu->features & FEATURE_GAM_VAPIC)
1667 pr_cont(" GA_vAPIC");
1668
Steven L Kinney30861dd2013-06-05 16:11:48 -05001669 pr_cont("\n");
Borislav Petkov500c25e2012-09-28 16:22:26 +02001670 }
Joerg Roedel4d121c32012-06-14 12:21:55 +02001671 }
Suravee Suthikulpanit3928aa32016-08-23 13:52:32 -05001672 if (irq_remapping_enabled) {
Joerg Roedelebe60bb2012-07-02 18:36:03 +02001673 pr_info("AMD-Vi: Interrupt remapping enabled\n");
Suravee Suthikulpanit3928aa32016-08-23 13:52:32 -05001674 if (AMD_IOMMU_GUEST_IR_VAPIC(amd_iommu_guest_ir))
1675 pr_info("AMD-Vi: virtual APIC enabled\n");
1676 }
Joerg Roedel4d121c32012-06-14 12:21:55 +02001677}
1678
Joerg Roedel2c0ae172012-06-12 15:59:30 +02001679static int __init amd_iommu_init_pci(void)
Joerg Roedel23c742d2012-06-12 11:47:34 +02001680{
1681 struct amd_iommu *iommu;
1682 int ret = 0;
1683
1684 for_each_iommu(iommu) {
1685 ret = iommu_init_pci(iommu);
1686 if (ret)
1687 break;
1688 }
1689
Joerg Roedel522e5cb72016-07-01 16:42:55 +02001690 /*
1691 * Order is important here to make sure any unity map requirements are
1692 * fulfilled. The unity mappings are created and written to the device
1693 * table during the amd_iommu_init_api() call.
1694 *
1695 * After that we call init_device_table_dma() to make sure any
1696 * uninitialized DTE will block DMA, and in the end we flush the caches
1697 * of all IOMMUs to make sure the changes to the device table are
1698 * active.
1699 */
1700 ret = amd_iommu_init_api();
1701
Joerg Roedelaafd8ba2015-05-28 18:41:39 +02001702 init_device_table_dma();
Joerg Roedel23c742d2012-06-12 11:47:34 +02001703
Joerg Roedelaafd8ba2015-05-28 18:41:39 +02001704 for_each_iommu(iommu)
1705 iommu_flush_all_caches(iommu);
1706
Joerg Roedel3a18404c2015-05-28 18:41:45 +02001707 if (!ret)
1708 print_iommu_info();
Joerg Roedel4d121c32012-06-14 12:21:55 +02001709
Joerg Roedel23c742d2012-06-12 11:47:34 +02001710 return ret;
1711}
1712
Joerg Roedelb65233a2008-07-11 17:14:21 +02001713/****************************************************************************
1714 *
Joerg Roedela80dc3e2008-09-11 16:51:41 +02001715 * The following functions initialize the MSI interrupts for all IOMMUs
Frank Arnolddf805ab2012-08-27 19:21:04 +02001716 * in the system. It's a bit challenging because there could be multiple
Joerg Roedela80dc3e2008-09-11 16:51:41 +02001717 * IOMMUs per PCI BDF but we can call pci_enable_msi(x) only once per
1718 * pci_dev.
1719 *
1720 ****************************************************************************/
1721
Joerg Roedel9f800de2009-11-23 12:45:25 +01001722static int iommu_setup_msi(struct amd_iommu *iommu)
Joerg Roedela80dc3e2008-09-11 16:51:41 +02001723{
1724 int r;
Joerg Roedela80dc3e2008-09-11 16:51:41 +02001725
Joerg Roedel9ddd5922012-03-15 16:29:47 +01001726 r = pci_enable_msi(iommu->dev);
1727 if (r)
1728 return r;
Joerg Roedela80dc3e2008-09-11 16:51:41 +02001729
Joerg Roedel72fe00f2011-05-10 10:50:42 +02001730 r = request_threaded_irq(iommu->dev->irq,
1731 amd_iommu_int_handler,
1732 amd_iommu_int_thread,
1733 0, "AMD-Vi",
Suravee Suthikulpanit3f398bc2013-04-22 16:32:34 -05001734 iommu);
Joerg Roedela80dc3e2008-09-11 16:51:41 +02001735
1736 if (r) {
1737 pci_disable_msi(iommu->dev);
Joerg Roedel9ddd5922012-03-15 16:29:47 +01001738 return r;
Joerg Roedela80dc3e2008-09-11 16:51:41 +02001739 }
1740
Joerg Roedelfab6afa2009-05-04 18:46:34 +02001741 iommu->int_enabled = true;
Joerg Roedel1a29ac02011-11-10 15:41:40 +01001742
Joerg Roedela80dc3e2008-09-11 16:51:41 +02001743 return 0;
1744}
1745
Joerg Roedel05f92db2009-05-12 09:52:46 +02001746static int iommu_init_msi(struct amd_iommu *iommu)
Joerg Roedela80dc3e2008-09-11 16:51:41 +02001747{
Joerg Roedel9ddd5922012-03-15 16:29:47 +01001748 int ret;
1749
Joerg Roedela80dc3e2008-09-11 16:51:41 +02001750 if (iommu->int_enabled)
Joerg Roedel9ddd5922012-03-15 16:29:47 +01001751 goto enable_faults;
Joerg Roedela80dc3e2008-09-11 16:51:41 +02001752
Yijing Wang82fcfc62013-08-08 21:12:36 +08001753 if (iommu->dev->msi_cap)
Joerg Roedel9ddd5922012-03-15 16:29:47 +01001754 ret = iommu_setup_msi(iommu);
1755 else
1756 ret = -ENODEV;
Joerg Roedela80dc3e2008-09-11 16:51:41 +02001757
Joerg Roedel9ddd5922012-03-15 16:29:47 +01001758 if (ret)
1759 return ret;
1760
1761enable_faults:
1762 iommu_feature_enable(iommu, CONTROL_EVT_INT_EN);
1763
1764 if (iommu->ppr_log != NULL)
1765 iommu_feature_enable(iommu, CONTROL_PPFINT_EN);
1766
Suravee Suthikulpanit8bda0cf2016-08-23 13:52:36 -05001767 iommu_ga_log_enable(iommu);
1768
Joerg Roedel9ddd5922012-03-15 16:29:47 +01001769 return 0;
Joerg Roedela80dc3e2008-09-11 16:51:41 +02001770}
1771
1772/****************************************************************************
1773 *
Joerg Roedelb65233a2008-07-11 17:14:21 +02001774 * The next functions belong to the third pass of parsing the ACPI
1775 * table. In this last pass the memory mapping requirements are
Frank Arnolddf805ab2012-08-27 19:21:04 +02001776 * gathered (like exclusion and unity mapping ranges).
Joerg Roedelb65233a2008-07-11 17:14:21 +02001777 *
1778 ****************************************************************************/
1779
Joerg Roedelbe2a0222008-06-26 21:27:49 +02001780static void __init free_unity_maps(void)
1781{
1782 struct unity_map_entry *entry, *next;
1783
1784 list_for_each_entry_safe(entry, next, &amd_iommu_unity_map, list) {
1785 list_del(&entry->list);
1786 kfree(entry);
1787 }
1788}
1789
Joerg Roedelb65233a2008-07-11 17:14:21 +02001790/* called when we find an exclusion range definition in ACPI */
Joerg Roedelbe2a0222008-06-26 21:27:49 +02001791static int __init init_exclusion_range(struct ivmd_header *m)
1792{
1793 int i;
1794
1795 switch (m->type) {
1796 case ACPI_IVMD_TYPE:
1797 set_device_exclusion_range(m->devid, m);
1798 break;
1799 case ACPI_IVMD_TYPE_ALL:
Joerg Roedel3a61ec32008-07-25 13:07:50 +02001800 for (i = 0; i <= amd_iommu_last_bdf; ++i)
Joerg Roedelbe2a0222008-06-26 21:27:49 +02001801 set_device_exclusion_range(i, m);
1802 break;
1803 case ACPI_IVMD_TYPE_RANGE:
1804 for (i = m->devid; i <= m->aux; ++i)
1805 set_device_exclusion_range(i, m);
1806 break;
1807 default:
1808 break;
1809 }
1810
1811 return 0;
1812}
1813
Joerg Roedelb65233a2008-07-11 17:14:21 +02001814/* called for unity map ACPI definition */
Joerg Roedelbe2a0222008-06-26 21:27:49 +02001815static int __init init_unity_map_range(struct ivmd_header *m)
1816{
Joerg Roedel98f1ad22012-07-06 13:28:37 +02001817 struct unity_map_entry *e = NULL;
Joerg Roedel02acc432009-05-20 16:24:21 +02001818 char *s;
Joerg Roedelbe2a0222008-06-26 21:27:49 +02001819
1820 e = kzalloc(sizeof(*e), GFP_KERNEL);
1821 if (e == NULL)
1822 return -ENOMEM;
1823
1824 switch (m->type) {
1825 default:
Joerg Roedel0bc252f2009-05-22 12:48:05 +02001826 kfree(e);
1827 return 0;
Joerg Roedelbe2a0222008-06-26 21:27:49 +02001828 case ACPI_IVMD_TYPE:
Joerg Roedel02acc432009-05-20 16:24:21 +02001829 s = "IVMD_TYPEi\t\t\t";
Joerg Roedelbe2a0222008-06-26 21:27:49 +02001830 e->devid_start = e->devid_end = m->devid;
1831 break;
1832 case ACPI_IVMD_TYPE_ALL:
Joerg Roedel02acc432009-05-20 16:24:21 +02001833 s = "IVMD_TYPE_ALL\t\t";
Joerg Roedelbe2a0222008-06-26 21:27:49 +02001834 e->devid_start = 0;
1835 e->devid_end = amd_iommu_last_bdf;
1836 break;
1837 case ACPI_IVMD_TYPE_RANGE:
Joerg Roedel02acc432009-05-20 16:24:21 +02001838 s = "IVMD_TYPE_RANGE\t\t";
Joerg Roedelbe2a0222008-06-26 21:27:49 +02001839 e->devid_start = m->devid;
1840 e->devid_end = m->aux;
1841 break;
1842 }
1843 e->address_start = PAGE_ALIGN(m->range_start);
1844 e->address_end = e->address_start + PAGE_ALIGN(m->range_length);
1845 e->prot = m->flags >> 1;
1846
Joerg Roedel02acc432009-05-20 16:24:21 +02001847 DUMP_printk("%s devid_start: %02x:%02x.%x devid_end: %02x:%02x.%x"
1848 " range_start: %016llx range_end: %016llx flags: %x\n", s,
Shuah Khanc5081cd2013-02-27 17:07:19 -07001849 PCI_BUS_NUM(e->devid_start), PCI_SLOT(e->devid_start),
1850 PCI_FUNC(e->devid_start), PCI_BUS_NUM(e->devid_end),
Joerg Roedel02acc432009-05-20 16:24:21 +02001851 PCI_SLOT(e->devid_end), PCI_FUNC(e->devid_end),
1852 e->address_start, e->address_end, m->flags);
1853
Joerg Roedelbe2a0222008-06-26 21:27:49 +02001854 list_add_tail(&e->list, &amd_iommu_unity_map);
1855
1856 return 0;
1857}
1858
Joerg Roedelb65233a2008-07-11 17:14:21 +02001859/* iterates over all memory definitions we find in the ACPI table */
Joerg Roedelbe2a0222008-06-26 21:27:49 +02001860static int __init init_memory_definitions(struct acpi_table_header *table)
1861{
1862 u8 *p = (u8 *)table, *end = (u8 *)table;
1863 struct ivmd_header *m;
1864
Joerg Roedelbe2a0222008-06-26 21:27:49 +02001865 end += table->length;
1866 p += IVRS_HEADER_LENGTH;
1867
1868 while (p < end) {
1869 m = (struct ivmd_header *)p;
1870 if (m->flags & IVMD_FLAG_EXCL_RANGE)
1871 init_exclusion_range(m);
1872 else if (m->flags & IVMD_FLAG_UNITY_MAP)
1873 init_unity_map_range(m);
1874
1875 p += m->length;
1876 }
1877
1878 return 0;
1879}
1880
Joerg Roedelb65233a2008-07-11 17:14:21 +02001881/*
Joerg Roedel9f5f5fb2008-08-14 19:55:16 +02001882 * Init the device table to not allow DMA access for devices and
1883 * suppress all page faults
1884 */
Joerg Roedel33f28c52012-06-15 18:03:31 +02001885static void init_device_table_dma(void)
Joerg Roedel9f5f5fb2008-08-14 19:55:16 +02001886{
Joerg Roedel0de66d52011-06-06 16:04:02 +02001887 u32 devid;
Joerg Roedel9f5f5fb2008-08-14 19:55:16 +02001888
1889 for (devid = 0; devid <= amd_iommu_last_bdf; ++devid) {
1890 set_dev_entry_bit(devid, DEV_ENTRY_VALID);
1891 set_dev_entry_bit(devid, DEV_ENTRY_TRANSLATION);
Joerg Roedel9f5f5fb2008-08-14 19:55:16 +02001892 }
1893}
1894
Joerg Roedeld04e0ba2012-07-02 16:02:20 +02001895static void __init uninit_device_table_dma(void)
1896{
1897 u32 devid;
1898
1899 for (devid = 0; devid <= amd_iommu_last_bdf; ++devid) {
1900 amd_iommu_dev_table[devid].data[0] = 0ULL;
1901 amd_iommu_dev_table[devid].data[1] = 0ULL;
1902 }
1903}
1904
Joerg Roedel33f28c52012-06-15 18:03:31 +02001905static void init_device_table(void)
1906{
1907 u32 devid;
1908
1909 if (!amd_iommu_irq_remap)
1910 return;
1911
1912 for (devid = 0; devid <= amd_iommu_last_bdf; ++devid)
1913 set_dev_entry_bit(devid, DEV_ENTRY_IRQ_TBL_EN);
1914}
1915
Joerg Roedele9bf5192010-09-20 14:33:07 +02001916static void iommu_init_flags(struct amd_iommu *iommu)
1917{
1918 iommu->acpi_flags & IVHD_FLAG_HT_TUN_EN_MASK ?
1919 iommu_feature_enable(iommu, CONTROL_HT_TUN_EN) :
1920 iommu_feature_disable(iommu, CONTROL_HT_TUN_EN);
1921
1922 iommu->acpi_flags & IVHD_FLAG_PASSPW_EN_MASK ?
1923 iommu_feature_enable(iommu, CONTROL_PASSPW_EN) :
1924 iommu_feature_disable(iommu, CONTROL_PASSPW_EN);
1925
1926 iommu->acpi_flags & IVHD_FLAG_RESPASSPW_EN_MASK ?
1927 iommu_feature_enable(iommu, CONTROL_RESPASSPW_EN) :
1928 iommu_feature_disable(iommu, CONTROL_RESPASSPW_EN);
1929
1930 iommu->acpi_flags & IVHD_FLAG_ISOC_EN_MASK ?
1931 iommu_feature_enable(iommu, CONTROL_ISOC_EN) :
1932 iommu_feature_disable(iommu, CONTROL_ISOC_EN);
1933
1934 /*
1935 * make IOMMU memory accesses cache coherent
1936 */
1937 iommu_feature_enable(iommu, CONTROL_COHERENT_EN);
Joerg Roedel1456e9d2011-12-22 14:51:53 +01001938
1939 /* Set IOTLB invalidation timeout to 1s */
1940 iommu_set_inv_tlb_timeout(iommu, CTRL_INV_TO_1S);
Joerg Roedele9bf5192010-09-20 14:33:07 +02001941}
1942
Matthew Garrett5bcd7572010-10-04 14:59:31 -04001943static void iommu_apply_resume_quirks(struct amd_iommu *iommu)
Joerg Roedel4c894f42010-09-23 15:15:19 +02001944{
Matthew Garrett5bcd7572010-10-04 14:59:31 -04001945 int i, j;
1946 u32 ioc_feature_control;
Joerg Roedelc1bf94e2012-05-31 17:38:11 +02001947 struct pci_dev *pdev = iommu->root_pdev;
Matthew Garrett5bcd7572010-10-04 14:59:31 -04001948
1949 /* RD890 BIOSes may not have completely reconfigured the iommu */
Joerg Roedelc1bf94e2012-05-31 17:38:11 +02001950 if (!is_rd890_iommu(iommu->dev) || !pdev)
Matthew Garrett5bcd7572010-10-04 14:59:31 -04001951 return;
1952
1953 /*
1954 * First, we need to ensure that the iommu is enabled. This is
1955 * controlled by a register in the northbridge
1956 */
Matthew Garrett5bcd7572010-10-04 14:59:31 -04001957
1958 /* Select Northbridge indirect register 0x75 and enable writing */
1959 pci_write_config_dword(pdev, 0x60, 0x75 | (1 << 7));
1960 pci_read_config_dword(pdev, 0x64, &ioc_feature_control);
1961
1962 /* Enable the iommu */
1963 if (!(ioc_feature_control & 0x1))
1964 pci_write_config_dword(pdev, 0x64, ioc_feature_control | 1);
1965
Matthew Garrett5bcd7572010-10-04 14:59:31 -04001966 /* Restore the iommu BAR */
1967 pci_write_config_dword(iommu->dev, iommu->cap_ptr + 4,
1968 iommu->stored_addr_lo);
1969 pci_write_config_dword(iommu->dev, iommu->cap_ptr + 8,
1970 iommu->stored_addr_hi);
1971
1972 /* Restore the l1 indirect regs for each of the 6 l1s */
1973 for (i = 0; i < 6; i++)
1974 for (j = 0; j < 0x12; j++)
1975 iommu_write_l1(iommu, i, j, iommu->stored_l1[i][j]);
1976
1977 /* Restore the l2 indirect regs */
1978 for (i = 0; i < 0x83; i++)
1979 iommu_write_l2(iommu, i, iommu->stored_l2[i]);
1980
1981 /* Lock PCI setup registers */
1982 pci_write_config_dword(iommu->dev, iommu->cap_ptr + 4,
1983 iommu->stored_addr_lo | 1);
Joerg Roedel4c894f42010-09-23 15:15:19 +02001984}
1985
Suravee Suthikulpanit3928aa32016-08-23 13:52:32 -05001986static void iommu_enable_ga(struct amd_iommu *iommu)
1987{
1988#ifdef CONFIG_IRQ_REMAP
1989 switch (amd_iommu_guest_ir) {
1990 case AMD_IOMMU_GUEST_IR_VAPIC:
1991 iommu_feature_enable(iommu, CONTROL_GAM_EN);
1992 /* Fall through */
1993 case AMD_IOMMU_GUEST_IR_LEGACY_GA:
1994 iommu_feature_enable(iommu, CONTROL_GA_EN);
Suravee Suthikulpanit77bdab42016-08-23 13:52:35 -05001995 iommu->irte_ops = &irte_128_ops;
Suravee Suthikulpanit3928aa32016-08-23 13:52:32 -05001996 break;
1997 default:
Suravee Suthikulpanit77bdab42016-08-23 13:52:35 -05001998 iommu->irte_ops = &irte_32_ops;
Suravee Suthikulpanit3928aa32016-08-23 13:52:32 -05001999 break;
2000 }
2001#endif
2002}
2003
Joerg Roedel9f5f5fb2008-08-14 19:55:16 +02002004/*
Joerg Roedelb65233a2008-07-11 17:14:21 +02002005 * This function finally enables all IOMMUs found in the system after
2006 * they have been initialized
2007 */
Joerg Roedel11ee5ac2012-06-12 16:30:06 +02002008static void early_enable_iommus(void)
Joerg Roedel87361972008-06-26 21:28:07 +02002009{
2010 struct amd_iommu *iommu;
2011
Joerg Roedel3bd22172009-05-04 15:06:20 +02002012 for_each_iommu(iommu) {
Chris Wrighta8c485b2009-06-15 15:53:45 +02002013 iommu_disable(iommu);
Joerg Roedele9bf5192010-09-20 14:33:07 +02002014 iommu_init_flags(iommu);
Joerg Roedel58492e12009-05-04 18:41:16 +02002015 iommu_set_device_table(iommu);
2016 iommu_enable_command_buffer(iommu);
2017 iommu_enable_event_buffer(iommu);
Joerg Roedel87361972008-06-26 21:28:07 +02002018 iommu_set_exclusion_range(iommu);
Suravee Suthikulpanit3928aa32016-08-23 13:52:32 -05002019 iommu_enable_ga(iommu);
Joerg Roedel87361972008-06-26 21:28:07 +02002020 iommu_enable(iommu);
Joerg Roedel7d0c5cc2011-04-07 08:16:10 +02002021 iommu_flush_all_caches(iommu);
Joerg Roedel87361972008-06-26 21:28:07 +02002022 }
Suravee Suthikulpanitd98de492016-08-23 13:52:40 -05002023
2024#ifdef CONFIG_IRQ_REMAP
2025 if (AMD_IOMMU_GUEST_IR_VAPIC(amd_iommu_guest_ir))
2026 amd_iommu_irq_ops.capability |= (1 << IRQ_POSTING_CAP);
2027#endif
Joerg Roedel87361972008-06-26 21:28:07 +02002028}
2029
Joerg Roedel11ee5ac2012-06-12 16:30:06 +02002030static void enable_iommus_v2(void)
2031{
2032 struct amd_iommu *iommu;
2033
2034 for_each_iommu(iommu) {
2035 iommu_enable_ppr_log(iommu);
2036 iommu_enable_gt(iommu);
2037 }
2038}
2039
2040static void enable_iommus(void)
2041{
2042 early_enable_iommus();
2043
2044 enable_iommus_v2();
2045}
2046
Joerg Roedel92ac4322009-05-19 19:06:27 +02002047static void disable_iommus(void)
2048{
2049 struct amd_iommu *iommu;
2050
2051 for_each_iommu(iommu)
2052 iommu_disable(iommu);
Suravee Suthikulpanitd98de492016-08-23 13:52:40 -05002053
2054#ifdef CONFIG_IRQ_REMAP
2055 if (AMD_IOMMU_GUEST_IR_VAPIC(amd_iommu_guest_ir))
2056 amd_iommu_irq_ops.capability &= ~(1 << IRQ_POSTING_CAP);
2057#endif
Joerg Roedel92ac4322009-05-19 19:06:27 +02002058}
2059
Joerg Roedel7441e9c2008-06-30 20:18:02 +02002060/*
2061 * Suspend/Resume support
2062 * disable suspend until real resume implemented
2063 */
2064
Rafael J. Wysockif3c6ea12011-03-23 22:15:54 +01002065static void amd_iommu_resume(void)
Joerg Roedel7441e9c2008-06-30 20:18:02 +02002066{
Matthew Garrett5bcd7572010-10-04 14:59:31 -04002067 struct amd_iommu *iommu;
2068
2069 for_each_iommu(iommu)
2070 iommu_apply_resume_quirks(iommu);
2071
Joerg Roedel736501e2009-05-12 09:56:12 +02002072 /* re-load the hardware */
2073 enable_iommus();
Joerg Roedel3d9761e2012-03-15 16:39:21 +01002074
2075 amd_iommu_enable_interrupts();
Joerg Roedel7441e9c2008-06-30 20:18:02 +02002076}
2077
Rafael J. Wysockif3c6ea12011-03-23 22:15:54 +01002078static int amd_iommu_suspend(void)
Joerg Roedel7441e9c2008-06-30 20:18:02 +02002079{
Joerg Roedel736501e2009-05-12 09:56:12 +02002080 /* disable IOMMUs to go out of the way for BIOS */
2081 disable_iommus();
2082
2083 return 0;
Joerg Roedel7441e9c2008-06-30 20:18:02 +02002084}
2085
Rafael J. Wysockif3c6ea12011-03-23 22:15:54 +01002086static struct syscore_ops amd_iommu_syscore_ops = {
Joerg Roedel7441e9c2008-06-30 20:18:02 +02002087 .suspend = amd_iommu_suspend,
2088 .resume = amd_iommu_resume,
2089};
2090
Joerg Roedel8704a1b2012-03-01 15:57:53 +01002091static void __init free_on_init_error(void)
2092{
Joerg Roedel0ea2c422012-06-15 18:05:20 +02002093 free_pages((unsigned long)irq_lookup_table,
2094 get_order(rlookup_table_size));
Joerg Roedel8704a1b2012-03-01 15:57:53 +01002095
Julia Lawalla5919892015-09-13 14:15:31 +02002096 kmem_cache_destroy(amd_iommu_irq_cache);
2097 amd_iommu_irq_cache = NULL;
Joerg Roedel8704a1b2012-03-01 15:57:53 +01002098
2099 free_pages((unsigned long)amd_iommu_rlookup_table,
2100 get_order(rlookup_table_size));
2101
2102 free_pages((unsigned long)amd_iommu_alias_table,
2103 get_order(alias_table_size));
2104
2105 free_pages((unsigned long)amd_iommu_dev_table,
2106 get_order(dev_table_size));
2107
2108 free_iommu_all();
2109
Joerg Roedel8704a1b2012-03-01 15:57:53 +01002110#ifdef CONFIG_GART_IOMMU
2111 /*
2112 * We failed to initialize the AMD IOMMU - try fallback to GART
2113 * if possible.
2114 */
2115 gart_iommu_init();
2116
2117#endif
2118}
2119
Joerg Roedelc2ff5cf52012-10-16 14:52:51 +02002120/* SB IOAPIC is always on this device in AMD systems */
2121#define IOAPIC_SB_DEVID ((0x00 << 8) | PCI_DEVFN(0x14, 0))
2122
Joerg Roedeleb1eb7a2012-07-05 11:58:02 +02002123static bool __init check_ioapic_information(void)
2124{
Joerg Roedeldfbb6d42013-04-09 19:06:18 +02002125 const char *fw_bug = FW_BUG;
Joerg Roedelc2ff5cf52012-10-16 14:52:51 +02002126 bool ret, has_sb_ioapic;
Joerg Roedeleb1eb7a2012-07-05 11:58:02 +02002127 int idx;
2128
Joerg Roedelc2ff5cf52012-10-16 14:52:51 +02002129 has_sb_ioapic = false;
2130 ret = false;
Joerg Roedeleb1eb7a2012-07-05 11:58:02 +02002131
Joerg Roedeldfbb6d42013-04-09 19:06:18 +02002132 /*
2133 * If we have map overrides on the kernel command line the
2134 * messages in this function might not describe firmware bugs
2135 * anymore - so be careful
2136 */
2137 if (cmdline_maps)
2138 fw_bug = "";
2139
Joerg Roedelc2ff5cf52012-10-16 14:52:51 +02002140 for (idx = 0; idx < nr_ioapics; idx++) {
2141 int devid, id = mpc_ioapic_id(idx);
2142
2143 devid = get_ioapic_devid(id);
2144 if (devid < 0) {
Joerg Roedeldfbb6d42013-04-09 19:06:18 +02002145 pr_err("%sAMD-Vi: IOAPIC[%d] not in IVRS table\n",
2146 fw_bug, id);
Joerg Roedelc2ff5cf52012-10-16 14:52:51 +02002147 ret = false;
2148 } else if (devid == IOAPIC_SB_DEVID) {
2149 has_sb_ioapic = true;
2150 ret = true;
Joerg Roedeleb1eb7a2012-07-05 11:58:02 +02002151 }
2152 }
2153
Joerg Roedelc2ff5cf52012-10-16 14:52:51 +02002154 if (!has_sb_ioapic) {
2155 /*
2156 * We expect the SB IOAPIC to be listed in the IVRS
2157 * table. The system timer is connected to the SB IOAPIC
2158 * and if we don't have it in the list the system will
2159 * panic at boot time. This situation usually happens
2160 * when the BIOS is buggy and provides us the wrong
2161 * device id for the IOAPIC in the system.
2162 */
Joerg Roedeldfbb6d42013-04-09 19:06:18 +02002163 pr_err("%sAMD-Vi: No southbridge IOAPIC found\n", fw_bug);
Joerg Roedelc2ff5cf52012-10-16 14:52:51 +02002164 }
2165
2166 if (!ret)
Joerg Roedeldfbb6d42013-04-09 19:06:18 +02002167 pr_err("AMD-Vi: Disabling interrupt remapping\n");
Joerg Roedelc2ff5cf52012-10-16 14:52:51 +02002168
2169 return ret;
Joerg Roedeleb1eb7a2012-07-05 11:58:02 +02002170}
2171
Joerg Roedeld04e0ba2012-07-02 16:02:20 +02002172static void __init free_dma_resources(void)
2173{
Joerg Roedeld04e0ba2012-07-02 16:02:20 +02002174 free_pages((unsigned long)amd_iommu_pd_alloc_bitmap,
2175 get_order(MAX_DOMAIN_ID/8));
2176
2177 free_unity_maps();
2178}
2179
Joerg Roedelb65233a2008-07-11 17:14:21 +02002180/*
Joerg Roedel8704a1b2012-03-01 15:57:53 +01002181 * This is the hardware init function for AMD IOMMU in the system.
2182 * This function is called either from amd_iommu_init or from the interrupt
2183 * remapping setup code.
Joerg Roedelb65233a2008-07-11 17:14:21 +02002184 *
2185 * This function basically parses the ACPI table for AMD IOMMU (IVRS)
Suravee Suthikulpanit8c7142f2016-04-01 09:05:59 -04002186 * four times:
Joerg Roedelb65233a2008-07-11 17:14:21 +02002187 *
Suravee Suthikulpanit8c7142f2016-04-01 09:05:59 -04002188 * 1 pass) Discover the most comprehensive IVHD type to use.
2189 *
2190 * 2 pass) Find the highest PCI device id the driver has to handle.
Joerg Roedelb65233a2008-07-11 17:14:21 +02002191 * Upon this information the size of the data structures is
2192 * determined that needs to be allocated.
2193 *
Suravee Suthikulpanit8c7142f2016-04-01 09:05:59 -04002194 * 3 pass) Initialize the data structures just allocated with the
Joerg Roedelb65233a2008-07-11 17:14:21 +02002195 * information in the ACPI table about available AMD IOMMUs
2196 * in the system. It also maps the PCI devices in the
2197 * system to specific IOMMUs
2198 *
Suravee Suthikulpanit8c7142f2016-04-01 09:05:59 -04002199 * 4 pass) After the basic data structures are allocated and
Joerg Roedelb65233a2008-07-11 17:14:21 +02002200 * initialized we update them with information about memory
2201 * remapping requirements parsed out of the ACPI table in
2202 * this last pass.
2203 *
Joerg Roedel8704a1b2012-03-01 15:57:53 +01002204 * After everything is set up the IOMMUs are enabled and the necessary
2205 * hotplug and suspend notifiers are registered.
Joerg Roedelb65233a2008-07-11 17:14:21 +02002206 */
Joerg Roedel643511b2012-06-12 12:09:35 +02002207static int __init early_amd_iommu_init(void)
Joerg Roedelfe74c9c2008-06-26 21:27:50 +02002208{
Joerg Roedel02f3b3f2012-06-11 17:45:25 +02002209 struct acpi_table_header *ivrs_base;
2210 acpi_size ivrs_size;
2211 acpi_status status;
Suravee Suthikulpanit3928aa32016-08-23 13:52:32 -05002212 int i, remap_cache_sz, ret = 0;
Joerg Roedelfe74c9c2008-06-26 21:27:50 +02002213
Joerg Roedel643511b2012-06-12 12:09:35 +02002214 if (!amd_iommu_detected)
Joerg Roedel8704a1b2012-03-01 15:57:53 +01002215 return -ENODEV;
2216
Joerg Roedel02f3b3f2012-06-11 17:45:25 +02002217 status = acpi_get_table_with_size("IVRS", 0, &ivrs_base, &ivrs_size);
2218 if (status == AE_NOT_FOUND)
2219 return -ENODEV;
2220 else if (ACPI_FAILURE(status)) {
2221 const char *err = acpi_format_exception(status);
2222 pr_err("AMD-Vi: IVRS table error: %s\n", err);
2223 return -EINVAL;
2224 }
2225
Joerg Roedelfe74c9c2008-06-26 21:27:50 +02002226 /*
Suravee Suthikulpanit8c7142f2016-04-01 09:05:59 -04002227 * Validate checksum here so we don't need to do it when
2228 * we actually parse the table
2229 */
2230 ret = check_ivrs_checksum(ivrs_base);
2231 if (ret)
2232 return ret;
2233
2234 amd_iommu_target_ivhd_type = get_highest_supported_ivhd_type(ivrs_base);
2235 DUMP_printk("Using IVHD type %#x\n", amd_iommu_target_ivhd_type);
2236
2237 /*
Joerg Roedelfe74c9c2008-06-26 21:27:50 +02002238 * First parse ACPI tables to find the largest Bus/Dev/Func
2239 * we need to handle. Upon this information the shared data
2240 * structures for the IOMMUs in the system will be allocated
2241 */
Joerg Roedel2c0ae172012-06-12 15:59:30 +02002242 ret = find_last_devid_acpi(ivrs_base);
2243 if (ret)
Joerg Roedel3551a702010-03-01 13:52:19 +01002244 goto out;
2245
Joerg Roedelc5714842008-07-11 17:14:25 +02002246 dev_table_size = tbl_size(DEV_TABLE_ENTRY_SIZE);
2247 alias_table_size = tbl_size(ALIAS_TABLE_ENTRY_SIZE);
2248 rlookup_table_size = tbl_size(RLOOKUP_TABLE_ENTRY_SIZE);
Joerg Roedelfe74c9c2008-06-26 21:27:50 +02002249
Joerg Roedelfe74c9c2008-06-26 21:27:50 +02002250 /* Device table - directly used by all IOMMUs */
Joerg Roedel8704a1b2012-03-01 15:57:53 +01002251 ret = -ENOMEM;
Joerg Roedel5dc8bff2008-07-11 17:14:32 +02002252 amd_iommu_dev_table = (void *)__get_free_pages(GFP_KERNEL | __GFP_ZERO,
Joerg Roedelfe74c9c2008-06-26 21:27:50 +02002253 get_order(dev_table_size));
2254 if (amd_iommu_dev_table == NULL)
2255 goto out;
2256
2257 /*
2258 * Alias table - map PCI Bus/Dev/Func to Bus/Dev/Func the
2259 * IOMMU see for that device
2260 */
2261 amd_iommu_alias_table = (void *)__get_free_pages(GFP_KERNEL,
2262 get_order(alias_table_size));
2263 if (amd_iommu_alias_table == NULL)
Joerg Roedel2c0ae172012-06-12 15:59:30 +02002264 goto out;
Joerg Roedelfe74c9c2008-06-26 21:27:50 +02002265
2266 /* IOMMU rlookup table - find the IOMMU for a specific device */
Joerg Roedel83fd5cc2008-12-16 19:17:11 +01002267 amd_iommu_rlookup_table = (void *)__get_free_pages(
2268 GFP_KERNEL | __GFP_ZERO,
Joerg Roedelfe74c9c2008-06-26 21:27:50 +02002269 get_order(rlookup_table_size));
2270 if (amd_iommu_rlookup_table == NULL)
Joerg Roedel2c0ae172012-06-12 15:59:30 +02002271 goto out;
Joerg Roedelfe74c9c2008-06-26 21:27:50 +02002272
Joerg Roedel5dc8bff2008-07-11 17:14:32 +02002273 amd_iommu_pd_alloc_bitmap = (void *)__get_free_pages(
2274 GFP_KERNEL | __GFP_ZERO,
Joerg Roedelfe74c9c2008-06-26 21:27:50 +02002275 get_order(MAX_DOMAIN_ID/8));
2276 if (amd_iommu_pd_alloc_bitmap == NULL)
Joerg Roedel2c0ae172012-06-12 15:59:30 +02002277 goto out;
Joerg Roedelfe74c9c2008-06-26 21:27:50 +02002278
2279 /*
Joerg Roedel5dc8bff2008-07-11 17:14:32 +02002280 * let all alias entries point to itself
Joerg Roedelfe74c9c2008-06-26 21:27:50 +02002281 */
Joerg Roedel3a61ec32008-07-25 13:07:50 +02002282 for (i = 0; i <= amd_iommu_last_bdf; ++i)
Joerg Roedelfe74c9c2008-06-26 21:27:50 +02002283 amd_iommu_alias_table[i] = i;
2284
Joerg Roedelfe74c9c2008-06-26 21:27:50 +02002285 /*
2286 * never allocate domain 0 because its used as the non-allocated and
2287 * error value placeholder
2288 */
Baoquan He5c87f622016-09-15 16:50:51 +08002289 __set_bit(0, amd_iommu_pd_alloc_bitmap);
Joerg Roedelfe74c9c2008-06-26 21:27:50 +02002290
Joerg Roedelaeb26f52009-11-20 16:44:01 +01002291 spin_lock_init(&amd_iommu_pd_lock);
2292
Joerg Roedelfe74c9c2008-06-26 21:27:50 +02002293 /*
2294 * now the data structures are allocated and basically initialized
2295 * start the real acpi table scan
2296 */
Joerg Roedel02f3b3f2012-06-11 17:45:25 +02002297 ret = init_iommu_all(ivrs_base);
2298 if (ret)
Joerg Roedel2c0ae172012-06-12 15:59:30 +02002299 goto out;
Joerg Roedelfe74c9c2008-06-26 21:27:50 +02002300
Joerg Roedeleb1eb7a2012-07-05 11:58:02 +02002301 if (amd_iommu_irq_remap)
2302 amd_iommu_irq_remap = check_ioapic_information();
2303
Joerg Roedel05152a02012-06-15 16:53:51 +02002304 if (amd_iommu_irq_remap) {
2305 /*
2306 * Interrupt remapping enabled, create kmem_cache for the
2307 * remapping tables.
2308 */
Wei Yongjun83ed9c12013-04-23 10:47:44 +08002309 ret = -ENOMEM;
Suravee Suthikulpanit3928aa32016-08-23 13:52:32 -05002310 if (!AMD_IOMMU_GUEST_IR_GA(amd_iommu_guest_ir))
2311 remap_cache_sz = MAX_IRQS_PER_TABLE * sizeof(u32);
2312 else
2313 remap_cache_sz = MAX_IRQS_PER_TABLE * (sizeof(u64) * 2);
Joerg Roedel05152a02012-06-15 16:53:51 +02002314 amd_iommu_irq_cache = kmem_cache_create("irq_remap_cache",
Suravee Suthikulpanit3928aa32016-08-23 13:52:32 -05002315 remap_cache_sz,
2316 IRQ_TABLE_ALIGNMENT,
2317 0, NULL);
Joerg Roedel05152a02012-06-15 16:53:51 +02002318 if (!amd_iommu_irq_cache)
2319 goto out;
Joerg Roedel0ea2c422012-06-15 18:05:20 +02002320
2321 irq_lookup_table = (void *)__get_free_pages(
2322 GFP_KERNEL | __GFP_ZERO,
2323 get_order(rlookup_table_size));
2324 if (!irq_lookup_table)
2325 goto out;
Joerg Roedel05152a02012-06-15 16:53:51 +02002326 }
2327
Joerg Roedel02f3b3f2012-06-11 17:45:25 +02002328 ret = init_memory_definitions(ivrs_base);
2329 if (ret)
Joerg Roedel2c0ae172012-06-12 15:59:30 +02002330 goto out;
Joerg Roedel3551a702010-03-01 13:52:19 +01002331
Joerg Roedeleb1eb7a2012-07-05 11:58:02 +02002332 /* init the device table */
2333 init_device_table();
2334
Joerg Roedel8704a1b2012-03-01 15:57:53 +01002335out:
Joerg Roedel02f3b3f2012-06-11 17:45:25 +02002336 /* Don't leak any ACPI memory */
2337 early_acpi_os_unmap_memory((char __iomem *)ivrs_base, ivrs_size);
2338 ivrs_base = NULL;
2339
Joerg Roedel8704a1b2012-03-01 15:57:53 +01002340 return ret;
Joerg Roedel643511b2012-06-12 12:09:35 +02002341}
2342
Gerard Snitselaarae295142012-03-16 11:38:22 -07002343static int amd_iommu_enable_interrupts(void)
Joerg Roedel3d9761e2012-03-15 16:39:21 +01002344{
2345 struct amd_iommu *iommu;
2346 int ret = 0;
2347
2348 for_each_iommu(iommu) {
2349 ret = iommu_init_msi(iommu);
2350 if (ret)
2351 goto out;
2352 }
2353
2354out:
2355 return ret;
2356}
2357
Joerg Roedel02f3b3f2012-06-11 17:45:25 +02002358static bool detect_ivrs(void)
2359{
2360 struct acpi_table_header *ivrs_base;
2361 acpi_size ivrs_size;
2362 acpi_status status;
2363
2364 status = acpi_get_table_with_size("IVRS", 0, &ivrs_base, &ivrs_size);
2365 if (status == AE_NOT_FOUND)
2366 return false;
2367 else if (ACPI_FAILURE(status)) {
2368 const char *err = acpi_format_exception(status);
2369 pr_err("AMD-Vi: IVRS table error: %s\n", err);
2370 return false;
2371 }
2372
2373 early_acpi_os_unmap_memory((char __iomem *)ivrs_base, ivrs_size);
2374
Joerg Roedel1adb7d32012-08-06 14:18:42 +02002375 /* Make sure ACS will be enabled during PCI probe */
2376 pci_request_acs();
2377
Joerg Roedel02f3b3f2012-06-11 17:45:25 +02002378 return true;
2379}
2380
Joerg Roedel2c0ae172012-06-12 15:59:30 +02002381/****************************************************************************
2382 *
2383 * AMD IOMMU Initialization State Machine
2384 *
2385 ****************************************************************************/
2386
2387static int __init state_next(void)
2388{
2389 int ret = 0;
2390
2391 switch (init_state) {
2392 case IOMMU_START_STATE:
2393 if (!detect_ivrs()) {
2394 init_state = IOMMU_NOT_FOUND;
2395 ret = -ENODEV;
2396 } else {
2397 init_state = IOMMU_IVRS_DETECTED;
2398 }
2399 break;
2400 case IOMMU_IVRS_DETECTED:
2401 ret = early_amd_iommu_init();
2402 init_state = ret ? IOMMU_INIT_ERROR : IOMMU_ACPI_FINISHED;
2403 break;
2404 case IOMMU_ACPI_FINISHED:
2405 early_enable_iommus();
2406 register_syscore_ops(&amd_iommu_syscore_ops);
2407 x86_platform.iommu_shutdown = disable_iommus;
2408 init_state = IOMMU_ENABLED;
2409 break;
2410 case IOMMU_ENABLED:
2411 ret = amd_iommu_init_pci();
2412 init_state = ret ? IOMMU_INIT_ERROR : IOMMU_PCI_INIT;
2413 enable_iommus_v2();
2414 break;
2415 case IOMMU_PCI_INIT:
2416 ret = amd_iommu_enable_interrupts();
2417 init_state = ret ? IOMMU_INIT_ERROR : IOMMU_INTERRUPTS_EN;
2418 break;
2419 case IOMMU_INTERRUPTS_EN:
Joerg Roedel1e6a7b02015-07-28 16:58:48 +02002420 ret = amd_iommu_init_dma_ops();
Joerg Roedel2c0ae172012-06-12 15:59:30 +02002421 init_state = ret ? IOMMU_INIT_ERROR : IOMMU_DMA_OPS;
2422 break;
2423 case IOMMU_DMA_OPS:
2424 init_state = IOMMU_INITIALIZED;
2425 break;
2426 case IOMMU_INITIALIZED:
2427 /* Nothing to do */
2428 break;
2429 case IOMMU_NOT_FOUND:
2430 case IOMMU_INIT_ERROR:
2431 /* Error states => do nothing */
2432 ret = -EINVAL;
2433 break;
2434 default:
2435 /* Unknown state */
2436 BUG();
2437 }
2438
2439 return ret;
2440}
2441
2442static int __init iommu_go_to_state(enum iommu_init_state state)
2443{
2444 int ret = 0;
2445
2446 while (init_state != state) {
2447 ret = state_next();
2448 if (init_state == IOMMU_NOT_FOUND ||
2449 init_state == IOMMU_INIT_ERROR)
2450 break;
2451 }
2452
2453 return ret;
2454}
2455
Joerg Roedel6b474b82012-06-26 16:46:04 +02002456#ifdef CONFIG_IRQ_REMAP
2457int __init amd_iommu_prepare(void)
2458{
Thomas Gleixner3f4cb7c2015-01-23 14:32:46 +01002459 int ret;
2460
Jiang Liu7fa1c842015-01-07 15:31:42 +08002461 amd_iommu_irq_remap = true;
Joerg Roedel84d07792015-01-07 15:31:39 +08002462
Thomas Gleixner3f4cb7c2015-01-23 14:32:46 +01002463 ret = iommu_go_to_state(IOMMU_ACPI_FINISHED);
2464 if (ret)
2465 return ret;
2466 return amd_iommu_irq_remap ? 0 : -ENODEV;
Joerg Roedel6b474b82012-06-26 16:46:04 +02002467}
Joerg Roedel2c0ae172012-06-12 15:59:30 +02002468
Joerg Roedel6b474b82012-06-26 16:46:04 +02002469int __init amd_iommu_enable(void)
2470{
2471 int ret;
2472
2473 ret = iommu_go_to_state(IOMMU_ENABLED);
2474 if (ret)
2475 return ret;
2476
2477 irq_remapping_enabled = 1;
2478
2479 return 0;
2480}
2481
2482void amd_iommu_disable(void)
2483{
2484 amd_iommu_suspend();
2485}
2486
2487int amd_iommu_reenable(int mode)
2488{
2489 amd_iommu_resume();
2490
2491 return 0;
2492}
2493
2494int __init amd_iommu_enable_faulting(void)
2495{
2496 /* We enable MSI later when PCI is initialized */
2497 return 0;
2498}
2499#endif
Joerg Roedel2c0ae172012-06-12 15:59:30 +02002500
Joerg Roedel8704a1b2012-03-01 15:57:53 +01002501/*
2502 * This is the core init function for AMD IOMMU hardware in the system.
2503 * This function is called from the generic x86 DMA layer initialization
2504 * code.
Joerg Roedel8704a1b2012-03-01 15:57:53 +01002505 */
2506static int __init amd_iommu_init(void)
2507{
Joerg Roedel2c0ae172012-06-12 15:59:30 +02002508 int ret;
Joerg Roedel8704a1b2012-03-01 15:57:53 +01002509
Joerg Roedel2c0ae172012-06-12 15:59:30 +02002510 ret = iommu_go_to_state(IOMMU_INITIALIZED);
2511 if (ret) {
Joerg Roedeld04e0ba2012-07-02 16:02:20 +02002512 free_dma_resources();
2513 if (!irq_remapping_enabled) {
2514 disable_iommus();
2515 free_on_init_error();
2516 } else {
2517 struct amd_iommu *iommu;
2518
2519 uninit_device_table_dma();
2520 for_each_iommu(iommu)
2521 iommu_flush_all_caches(iommu);
2522 }
Joerg Roedel2c0ae172012-06-12 15:59:30 +02002523 }
Joerg Roedel8704a1b2012-03-01 15:57:53 +01002524
Joerg Roedelfe74c9c2008-06-26 21:27:50 +02002525 return ret;
Joerg Roedelfe74c9c2008-06-26 21:27:50 +02002526}
2527
Joerg Roedelb65233a2008-07-11 17:14:21 +02002528/****************************************************************************
2529 *
2530 * Early detect code. This code runs at IOMMU detection time in the DMA
2531 * layer. It just looks if there is an IVRS ACPI table to detect AMD
2532 * IOMMUs
2533 *
2534 ****************************************************************************/
Konrad Rzeszutek Wilk480125b2010-08-26 13:57:57 -04002535int __init amd_iommu_detect(void)
Joerg Roedelae7877d2008-06-26 21:27:51 +02002536{
Joerg Roedel2c0ae172012-06-12 15:59:30 +02002537 int ret;
Joerg Roedel02f3b3f2012-06-11 17:45:25 +02002538
FUJITA Tomonori75f1cdf2009-11-10 19:46:20 +09002539 if (no_iommu || (iommu_detected && !gart_iommu_aperture))
Konrad Rzeszutek Wilk480125b2010-08-26 13:57:57 -04002540 return -ENODEV;
Joerg Roedelae7877d2008-06-26 21:27:51 +02002541
Joerg Roedela5235722010-05-11 17:12:33 +02002542 if (amd_iommu_disabled)
Konrad Rzeszutek Wilk480125b2010-08-26 13:57:57 -04002543 return -ENODEV;
Joerg Roedela5235722010-05-11 17:12:33 +02002544
Joerg Roedel2c0ae172012-06-12 15:59:30 +02002545 ret = iommu_go_to_state(IOMMU_IVRS_DETECTED);
2546 if (ret)
2547 return ret;
Linus Torvalds11bd04f2009-12-11 12:18:16 -08002548
Joerg Roedel02f3b3f2012-06-11 17:45:25 +02002549 amd_iommu_detected = true;
2550 iommu_detected = 1;
2551 x86_init.iommu.iommu_init = amd_iommu_init;
2552
Jérôme Glisse4781bc42015-08-31 18:13:03 -04002553 return 1;
Joerg Roedelae7877d2008-06-26 21:27:51 +02002554}
2555
Joerg Roedelb65233a2008-07-11 17:14:21 +02002556/****************************************************************************
2557 *
2558 * Parsing functions for the AMD IOMMU specific kernel command line
2559 * options.
2560 *
2561 ****************************************************************************/
2562
Joerg Roedelfefda112009-05-20 12:21:42 +02002563static int __init parse_amd_iommu_dump(char *str)
2564{
2565 amd_iommu_dump = true;
2566
2567 return 1;
2568}
2569
Suravee Suthikulpanit3928aa32016-08-23 13:52:32 -05002570static int __init parse_amd_iommu_intr(char *str)
2571{
2572 for (; *str; ++str) {
2573 if (strncmp(str, "legacy", 6) == 0) {
2574 amd_iommu_guest_ir = AMD_IOMMU_GUEST_IR_LEGACY;
2575 break;
2576 }
2577 if (strncmp(str, "vapic", 5) == 0) {
2578 amd_iommu_guest_ir = AMD_IOMMU_GUEST_IR_VAPIC;
2579 break;
2580 }
2581 }
2582 return 1;
2583}
2584
Joerg Roedel918ad6c2008-06-26 21:27:52 +02002585static int __init parse_amd_iommu_options(char *str)
2586{
2587 for (; *str; ++str) {
Joerg Roedel695b5672008-11-17 15:16:43 +01002588 if (strncmp(str, "fullflush", 9) == 0)
FUJITA Tomonoriafa9fdc2008-09-20 01:23:30 +09002589 amd_iommu_unmap_flush = true;
Joerg Roedela5235722010-05-11 17:12:33 +02002590 if (strncmp(str, "off", 3) == 0)
2591 amd_iommu_disabled = true;
Joerg Roedel5abcdba2011-12-01 15:49:45 +01002592 if (strncmp(str, "force_isolation", 15) == 0)
2593 amd_iommu_force_isolation = true;
Joerg Roedel918ad6c2008-06-26 21:27:52 +02002594 }
2595
2596 return 1;
2597}
2598
Joerg Roedel440e89982013-04-09 16:35:28 +02002599static int __init parse_ivrs_ioapic(char *str)
2600{
2601 unsigned int bus, dev, fn;
2602 int ret, id, i;
2603 u16 devid;
2604
2605 ret = sscanf(str, "[%d]=%x:%x.%x", &id, &bus, &dev, &fn);
2606
2607 if (ret != 4) {
2608 pr_err("AMD-Vi: Invalid command line: ivrs_ioapic%s\n", str);
2609 return 1;
2610 }
2611
2612 if (early_ioapic_map_size == EARLY_MAP_SIZE) {
2613 pr_err("AMD-Vi: Early IOAPIC map overflow - ignoring ivrs_ioapic%s\n",
2614 str);
2615 return 1;
2616 }
2617
2618 devid = ((bus & 0xff) << 8) | ((dev & 0x1f) << 3) | (fn & 0x7);
2619
Joerg Roedeldfbb6d42013-04-09 19:06:18 +02002620 cmdline_maps = true;
Joerg Roedel440e89982013-04-09 16:35:28 +02002621 i = early_ioapic_map_size++;
2622 early_ioapic_map[i].id = id;
2623 early_ioapic_map[i].devid = devid;
2624 early_ioapic_map[i].cmd_line = true;
2625
2626 return 1;
2627}
2628
2629static int __init parse_ivrs_hpet(char *str)
2630{
2631 unsigned int bus, dev, fn;
2632 int ret, id, i;
2633 u16 devid;
2634
2635 ret = sscanf(str, "[%d]=%x:%x.%x", &id, &bus, &dev, &fn);
2636
2637 if (ret != 4) {
2638 pr_err("AMD-Vi: Invalid command line: ivrs_hpet%s\n", str);
2639 return 1;
2640 }
2641
2642 if (early_hpet_map_size == EARLY_MAP_SIZE) {
2643 pr_err("AMD-Vi: Early HPET map overflow - ignoring ivrs_hpet%s\n",
2644 str);
2645 return 1;
2646 }
2647
2648 devid = ((bus & 0xff) << 8) | ((dev & 0x1f) << 3) | (fn & 0x7);
2649
Joerg Roedeldfbb6d42013-04-09 19:06:18 +02002650 cmdline_maps = true;
Joerg Roedel440e89982013-04-09 16:35:28 +02002651 i = early_hpet_map_size++;
2652 early_hpet_map[i].id = id;
2653 early_hpet_map[i].devid = devid;
2654 early_hpet_map[i].cmd_line = true;
2655
2656 return 1;
2657}
2658
Suravee Suthikulpanitca3bf5d2016-04-01 09:06:01 -04002659static int __init parse_ivrs_acpihid(char *str)
2660{
2661 u32 bus, dev, fn;
2662 char *hid, *uid, *p;
2663 char acpiid[ACPIHID_UID_LEN + ACPIHID_HID_LEN] = {0};
2664 int ret, i;
2665
2666 ret = sscanf(str, "[%x:%x.%x]=%s", &bus, &dev, &fn, acpiid);
2667 if (ret != 4) {
2668 pr_err("AMD-Vi: Invalid command line: ivrs_acpihid(%s)\n", str);
2669 return 1;
2670 }
2671
2672 p = acpiid;
2673 hid = strsep(&p, ":");
2674 uid = p;
2675
2676 if (!hid || !(*hid) || !uid) {
2677 pr_err("AMD-Vi: Invalid command line: hid or uid\n");
2678 return 1;
2679 }
2680
2681 i = early_acpihid_map_size++;
2682 memcpy(early_acpihid_map[i].hid, hid, strlen(hid));
2683 memcpy(early_acpihid_map[i].uid, uid, strlen(uid));
2684 early_acpihid_map[i].devid =
2685 ((bus & 0xff) << 8) | ((dev & 0x1f) << 3) | (fn & 0x7);
2686 early_acpihid_map[i].cmd_line = true;
2687
2688 return 1;
2689}
2690
Joerg Roedel440e89982013-04-09 16:35:28 +02002691__setup("amd_iommu_dump", parse_amd_iommu_dump);
2692__setup("amd_iommu=", parse_amd_iommu_options);
Suravee Suthikulpanit3928aa32016-08-23 13:52:32 -05002693__setup("amd_iommu_intr=", parse_amd_iommu_intr);
Joerg Roedel440e89982013-04-09 16:35:28 +02002694__setup("ivrs_ioapic", parse_ivrs_ioapic);
2695__setup("ivrs_hpet", parse_ivrs_hpet);
Suravee Suthikulpanitca3bf5d2016-04-01 09:06:01 -04002696__setup("ivrs_acpihid", parse_ivrs_acpihid);
Konrad Rzeszutek Wilk22e6daf2010-08-26 13:58:03 -04002697
2698IOMMU_INIT_FINISH(amd_iommu_detect,
2699 gart_iommu_hole_init,
Joerg Roedel98f1ad22012-07-06 13:28:37 +02002700 NULL,
2701 NULL);
Joerg Roedel400a28a2011-11-28 15:11:02 +01002702
2703bool amd_iommu_v2_supported(void)
2704{
2705 return amd_iommu_v2_present;
2706}
2707EXPORT_SYMBOL(amd_iommu_v2_supported);
Steven L Kinney30861dd2013-06-05 16:11:48 -05002708
2709/****************************************************************************
2710 *
2711 * IOMMU EFR Performance Counter support functionality. This code allows
2712 * access to the IOMMU PC functionality.
2713 *
2714 ****************************************************************************/
2715
2716u8 amd_iommu_pc_get_max_banks(u16 devid)
2717{
2718 struct amd_iommu *iommu;
2719 u8 ret = 0;
2720
2721 /* locate the iommu governing the devid */
2722 iommu = amd_iommu_rlookup_table[devid];
2723 if (iommu)
2724 ret = iommu->max_banks;
2725
2726 return ret;
2727}
2728EXPORT_SYMBOL(amd_iommu_pc_get_max_banks);
2729
2730bool amd_iommu_pc_supported(void)
2731{
2732 return amd_iommu_pc_present;
2733}
2734EXPORT_SYMBOL(amd_iommu_pc_supported);
2735
2736u8 amd_iommu_pc_get_max_counters(u16 devid)
2737{
2738 struct amd_iommu *iommu;
2739 u8 ret = 0;
2740
2741 /* locate the iommu governing the devid */
2742 iommu = amd_iommu_rlookup_table[devid];
2743 if (iommu)
2744 ret = iommu->max_counters;
2745
2746 return ret;
2747}
2748EXPORT_SYMBOL(amd_iommu_pc_get_max_counters);
2749
Suravee Suthikulpanit38e45d022016-02-23 13:03:30 +01002750static int iommu_pc_get_set_reg_val(struct amd_iommu *iommu,
2751 u8 bank, u8 cntr, u8 fxn,
Steven L Kinney30861dd2013-06-05 16:11:48 -05002752 u64 *value, bool is_write)
2753{
Steven L Kinney30861dd2013-06-05 16:11:48 -05002754 u32 offset;
2755 u32 max_offset_lim;
2756
Steven L Kinney30861dd2013-06-05 16:11:48 -05002757 /* Check for valid iommu and pc register indexing */
Suravee Suthikulpanit38e45d022016-02-23 13:03:30 +01002758 if (WARN_ON((fxn > 0x28) || (fxn & 7)))
Steven L Kinney30861dd2013-06-05 16:11:48 -05002759 return -ENODEV;
2760
2761 offset = (u32)(((0x40|bank) << 12) | (cntr << 8) | fxn);
2762
2763 /* Limit the offset to the hw defined mmio region aperture */
2764 max_offset_lim = (u32)(((0x40|iommu->max_banks) << 12) |
2765 (iommu->max_counters << 8) | 0x28);
2766 if ((offset < MMIO_CNTR_REG_OFFSET) ||
2767 (offset > max_offset_lim))
2768 return -EINVAL;
2769
2770 if (is_write) {
2771 writel((u32)*value, iommu->mmio_base + offset);
2772 writel((*value >> 32), iommu->mmio_base + offset + 4);
2773 } else {
2774 *value = readl(iommu->mmio_base + offset + 4);
2775 *value <<= 32;
2776 *value = readl(iommu->mmio_base + offset);
2777 }
2778
2779 return 0;
2780}
2781EXPORT_SYMBOL(amd_iommu_pc_get_set_reg_val);
Suravee Suthikulpanit38e45d022016-02-23 13:03:30 +01002782
2783int amd_iommu_pc_get_set_reg_val(u16 devid, u8 bank, u8 cntr, u8 fxn,
2784 u64 *value, bool is_write)
2785{
2786 struct amd_iommu *iommu = amd_iommu_rlookup_table[devid];
2787
2788 /* Make sure the IOMMU PC resource is available */
2789 if (!amd_iommu_pc_present || iommu == NULL)
2790 return -ENODEV;
2791
2792 return iommu_pc_get_set_reg_val(iommu, bank, cntr, fxn,
2793 value, is_write);
2794}