blob: 6a1f7048dacc6642ddca950bbdd497eafb9463e6 [file] [log] [blame]
Thomas Gleixner45051532019-05-29 16:57:47 -07001// SPDX-License-Identifier: GPL-2.0-only
Joerg Roedelf6e2e6b2008-06-26 21:27:39 +02002/*
Joerg Roedel5d0d7152010-10-13 11:13:21 +02003 * Copyright (C) 2007-2010 Advanced Micro Devices, Inc.
Joerg Roedel63ce3ae2015-02-04 16:12:55 +01004 * Author: Joerg Roedel <jroedel@suse.de>
Joerg Roedelf6e2e6b2008-06-26 21:27:39 +02005 * Leo Duran <leo.duran@amd.com>
Joerg Roedelf6e2e6b2008-06-26 21:27:39 +02006 */
7
Joerg Roedel101fa032018-11-27 16:22:31 +01008#define pr_fmt(fmt) "AMD-Vi: " fmt
Bjorn Helgaas5f226da2019-02-08 16:05:53 -06009#define dev_fmt(fmt) pr_fmt(fmt)
Joerg Roedel101fa032018-11-27 16:22:31 +010010
Joerg Roedelf6e2e6b2008-06-26 21:27:39 +020011#include <linux/pci.h>
12#include <linux/acpi.h>
Joerg Roedelf6e2e6b2008-06-26 21:27:39 +020013#include <linux/list.h>
Baoquan He5c87f622016-09-15 16:50:51 +080014#include <linux/bitmap.h>
Tejun Heo5a0e3ad2010-03-24 17:04:11 +090015#include <linux/slab.h>
Rafael J. Wysockif3c6ea12011-03-23 22:15:54 +010016#include <linux/syscore_ops.h>
Joerg Roedela80dc3e2008-09-11 16:51:41 +020017#include <linux/interrupt.h>
18#include <linux/msi.h>
David Woodhoused1adcfb2020-11-11 12:09:01 +000019#include <linux/irq.h>
Joerg Roedel403f81d2011-06-14 16:44:25 +020020#include <linux/amd-iommu.h>
Joerg Roedel400a28a2011-11-28 15:11:02 +010021#include <linux/export.h>
Lucas Stachebcfa282016-10-26 13:09:53 +020022#include <linux/kmemleak.h>
Tom Lendacky2543a782017-07-17 16:10:24 -050023#include <linux/mem_encrypt.h>
Joerg Roedelf6e2e6b2008-06-26 21:27:39 +020024#include <asm/pci-direct.h>
FUJITA Tomonori46a7fa22008-07-11 10:23:42 +090025#include <asm/iommu.h>
Suthikulpanit, Suravee66929812019-07-16 04:29:16 +000026#include <asm/apic.h>
Joerg Roedel1d9b16d2008-11-27 18:39:15 +010027#include <asm/gart.h>
FUJITA Tomonoriea1b0d32009-11-10 19:46:15 +090028#include <asm/x86_init.h>
Konrad Rzeszutek Wilk22e6daf2010-08-26 13:58:03 -040029#include <asm/iommu_table.h>
Joerg Roedeleb1eb7a2012-07-05 11:58:02 +020030#include <asm/io_apic.h>
Joerg Roedel6b474b82012-06-26 16:46:04 +020031#include <asm/irq_remapping.h>
Suravee Suthikulpanit6d39bde2020-11-05 14:58:32 +000032#include <asm/set_memory.h>
Joerg Roedel403f81d2011-06-14 16:44:25 +020033
Baoquan He3ac3e5ee2017-08-09 16:33:38 +080034#include <linux/crash_dump.h>
Joerg Roedel786dfe42020-05-27 13:53:11 +020035
Kai-Heng Feng93d05152019-08-21 13:10:04 +080036#include "amd_iommu.h"
Joerg Roedelad8694b2020-06-09 15:03:02 +020037#include "../irq_remapping.h"
Joerg Roedel403f81d2011-06-14 16:44:25 +020038
Joerg Roedelf6e2e6b2008-06-26 21:27:39 +020039/*
40 * definitions for the ACPI scanning code
41 */
Joerg Roedelf6e2e6b2008-06-26 21:27:39 +020042#define IVRS_HEADER_LENGTH 48
Joerg Roedelf6e2e6b2008-06-26 21:27:39 +020043
Suravee Suthikulpanit8c7142f2016-04-01 09:05:59 -040044#define ACPI_IVHD_TYPE_MAX_SUPPORTED 0x40
Joerg Roedelf6e2e6b2008-06-26 21:27:39 +020045#define ACPI_IVMD_TYPE_ALL 0x20
46#define ACPI_IVMD_TYPE 0x21
47#define ACPI_IVMD_TYPE_RANGE 0x22
48
49#define IVHD_DEV_ALL 0x01
50#define IVHD_DEV_SELECT 0x02
51#define IVHD_DEV_SELECT_RANGE_START 0x03
52#define IVHD_DEV_RANGE_END 0x04
53#define IVHD_DEV_ALIAS 0x42
54#define IVHD_DEV_ALIAS_RANGE 0x43
55#define IVHD_DEV_EXT_SELECT 0x46
56#define IVHD_DEV_EXT_SELECT_RANGE 0x47
Joerg Roedel6efed632012-06-14 15:52:58 +020057#define IVHD_DEV_SPECIAL 0x48
Suravee Suthikulpanit8c7142f2016-04-01 09:05:59 -040058#define IVHD_DEV_ACPI_HID 0xf0
Joerg Roedel6efed632012-06-14 15:52:58 +020059
Wan Zongshun2a0cb4e2016-04-01 09:06:00 -040060#define UID_NOT_PRESENT 0
61#define UID_IS_INTEGER 1
62#define UID_IS_CHARACTER 2
63
Joerg Roedel6efed632012-06-14 15:52:58 +020064#define IVHD_SPECIAL_IOAPIC 1
65#define IVHD_SPECIAL_HPET 2
Joerg Roedelf6e2e6b2008-06-26 21:27:39 +020066
Joerg Roedel6da73422009-05-04 11:44:38 +020067#define IVHD_FLAG_HT_TUN_EN_MASK 0x01
68#define IVHD_FLAG_PASSPW_EN_MASK 0x02
69#define IVHD_FLAG_RESPASSPW_EN_MASK 0x04
70#define IVHD_FLAG_ISOC_EN_MASK 0x08
Joerg Roedelf6e2e6b2008-06-26 21:27:39 +020071
72#define IVMD_FLAG_EXCL_RANGE 0x08
Adrian Huang387caf02019-11-14 14:14:47 +080073#define IVMD_FLAG_IW 0x04
74#define IVMD_FLAG_IR 0x02
Joerg Roedelf6e2e6b2008-06-26 21:27:39 +020075#define IVMD_FLAG_UNITY_MAP 0x01
76
77#define ACPI_DEVFLAG_INITPASS 0x01
78#define ACPI_DEVFLAG_EXTINT 0x02
79#define ACPI_DEVFLAG_NMI 0x04
80#define ACPI_DEVFLAG_SYSMGT1 0x10
81#define ACPI_DEVFLAG_SYSMGT2 0x20
82#define ACPI_DEVFLAG_LINT0 0x40
83#define ACPI_DEVFLAG_LINT1 0x80
84#define ACPI_DEVFLAG_ATSDIS 0x10000000
85
Suravee Suthikulpanit8bda0cf2016-08-23 13:52:36 -050086#define LOOP_TIMEOUT 100000
Joerg Roedelb65233a2008-07-11 17:14:21 +020087/*
88 * ACPI table definitions
89 *
90 * These data structures are laid over the table to parse the important values
91 * out of it.
92 */
93
Joerg Roedelb0119e82017-02-01 13:23:08 +010094extern const struct iommu_ops amd_iommu_ops;
95
Joerg Roedelb65233a2008-07-11 17:14:21 +020096/*
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 Suthikulpanit81307142019-11-20 07:55:48 -0600151static int amd_iommu_xt_mode = IRQ_REMAP_XAPIC_MODE;
Suravee Suthikulpanit3928aa32016-08-23 13:52:32 -0500152
Joerg Roedel02f3b3f2012-06-11 17:45:25 +0200153static bool amd_iommu_detected;
Joerg Roedela5235722010-05-11 17:12:33 +0200154static bool __initdata amd_iommu_disabled;
Suravee Suthikulpanit8c7142f2016-04-01 09:05:59 -0400155static int amd_iommu_target_ivhd_type;
Joerg Roedelc1cbebe2008-07-03 19:35:10 +0200156
Joerg Roedelb65233a2008-07-11 17:14:21 +0200157u16 amd_iommu_last_bdf; /* largest PCI device id we have
158 to handle */
Joerg Roedel2e228472008-07-11 17:14:31 +0200159LIST_HEAD(amd_iommu_unity_map); /* a list of required unity mappings
Joerg Roedelb65233a2008-07-11 17:14:21 +0200160 we find in ACPI */
Viresh Kumar621a5f72015-09-26 15:04:07 -0700161bool amd_iommu_unmap_flush; /* if true, flush on every unmap */
Joerg Roedel928abd22008-06-26 21:27:40 +0200162
Joerg Roedel2e228472008-07-11 17:14:31 +0200163LIST_HEAD(amd_iommu_list); /* list of all AMD IOMMUs in the
Joerg Roedelb65233a2008-07-11 17:14:21 +0200164 system */
165
Joerg Roedelbb527772009-11-20 14:31:51 +0100166/* Array to assign indices to IOMMUs*/
167struct amd_iommu *amd_iommus[MAX_IOMMUS];
Suravee Suthikulpanit6b9376e2017-02-24 02:48:17 -0600168
169/* Number of IOMMUs present in the system */
170static int amd_iommus_present;
Joerg Roedelbb527772009-11-20 14:31:51 +0100171
Joerg Roedel318afd42009-11-23 18:32:38 +0100172/* IOMMUs have a non-present cache? */
173bool amd_iommu_np_cache __read_mostly;
Joerg Roedel60f723b2011-04-05 12:50:24 +0200174bool amd_iommu_iotlb_sup __read_mostly = true;
Joerg Roedel318afd42009-11-23 18:32:38 +0100175
Suravee Suthikulpanita919a012014-03-05 18:54:18 -0600176u32 amd_iommu_max_pasid __read_mostly = ~0;
Joerg Roedel62f71ab2011-11-10 14:41:57 +0100177
Joerg Roedel400a28a2011-11-28 15:11:02 +0100178bool amd_iommu_v2_present __read_mostly;
Joerg Roedel4160cd92015-08-13 11:31:48 +0200179static bool amd_iommu_pc_present __read_mostly;
Joerg Roedel400a28a2011-11-28 15:11:02 +0100180
Joerg Roedel5abcdba2011-12-01 15:49:45 +0100181bool amd_iommu_force_isolation __read_mostly;
182
Joerg Roedelb65233a2008-07-11 17:14:21 +0200183/*
184 * Pointer to the device table which is shared by all AMD IOMMUs
185 * it is indexed by the PCI device id or the HT unit id and contains
186 * information about the domain the device belongs to as well as the
187 * page table root pointer.
188 */
Joerg Roedel928abd22008-06-26 21:27:40 +0200189struct dev_table_entry *amd_iommu_dev_table;
Baoquan He45a01c42017-08-09 16:33:37 +0800190/*
191 * Pointer to a device table which the content of old device table
192 * will be copied to. It's only be used in kdump kernel.
193 */
194static struct dev_table_entry *old_dev_tbl_cpy;
Joerg Roedelb65233a2008-07-11 17:14:21 +0200195
196/*
197 * The alias table is a driver specific data structure which contains the
198 * mappings of the PCI device ids to the actual requestor ids on the IOMMU.
199 * More than one device can share the same requestor id.
200 */
Joerg Roedel928abd22008-06-26 21:27:40 +0200201u16 *amd_iommu_alias_table;
Joerg Roedelb65233a2008-07-11 17:14:21 +0200202
203/*
204 * The rlookup table is used to find the IOMMU which is responsible
205 * for a specific device. It is also indexed by the PCI device id.
206 */
Joerg Roedel928abd22008-06-26 21:27:40 +0200207struct amd_iommu **amd_iommu_rlookup_table;
Baoquan Hedaae2d22017-08-09 16:33:43 +0800208EXPORT_SYMBOL(amd_iommu_rlookup_table);
Joerg Roedelb65233a2008-07-11 17:14:21 +0200209
210/*
Joerg Roedel0ea2c422012-06-15 18:05:20 +0200211 * This table is used to find the irq remapping table for a given device id
212 * quickly.
213 */
214struct irq_remap_table **irq_lookup_table;
215
216/*
Frank Arnolddf805ab2012-08-27 19:21:04 +0200217 * AMD IOMMU allows up to 2^16 different protection domains. This is a bitmap
Joerg Roedelb65233a2008-07-11 17:14:21 +0200218 * to know which ones are already in use.
219 */
Joerg Roedel928abd22008-06-26 21:27:40 +0200220unsigned long *amd_iommu_pd_alloc_bitmap;
221
Joerg Roedelb65233a2008-07-11 17:14:21 +0200222static u32 dev_table_size; /* size of the device table */
223static u32 alias_table_size; /* size of the alias table */
224static u32 rlookup_table_size; /* size if the rlookup table */
Joerg Roedel3e8064b2008-06-26 21:27:41 +0200225
Joerg Roedel2c0ae172012-06-12 15:59:30 +0200226enum iommu_init_state {
227 IOMMU_START_STATE,
228 IOMMU_IVRS_DETECTED,
229 IOMMU_ACPI_FINISHED,
230 IOMMU_ENABLED,
231 IOMMU_PCI_INIT,
232 IOMMU_INTERRUPTS_EN,
233 IOMMU_DMA_OPS,
234 IOMMU_INITIALIZED,
235 IOMMU_NOT_FOUND,
236 IOMMU_INIT_ERROR,
Joerg Roedel1b1e9422017-06-16 16:09:56 +0200237 IOMMU_CMDLINE_DISABLED,
Joerg Roedel2c0ae172012-06-12 15:59:30 +0200238};
239
Joerg Roedel235dacb2013-04-09 17:53:14 +0200240/* Early ioapic and hpet maps from kernel command line */
241#define EARLY_MAP_SIZE 4
242static struct devid_map __initdata early_ioapic_map[EARLY_MAP_SIZE];
243static struct devid_map __initdata early_hpet_map[EARLY_MAP_SIZE];
Wan Zongshun2a0cb4e2016-04-01 09:06:00 -0400244static struct acpihid_map_entry __initdata early_acpihid_map[EARLY_MAP_SIZE];
245
Joerg Roedel235dacb2013-04-09 17:53:14 +0200246static int __initdata early_ioapic_map_size;
247static int __initdata early_hpet_map_size;
Wan Zongshun2a0cb4e2016-04-01 09:06:00 -0400248static int __initdata early_acpihid_map_size;
249
Joerg Roedeldfbb6d42013-04-09 19:06:18 +0200250static bool __initdata cmdline_maps;
Joerg Roedel235dacb2013-04-09 17:53:14 +0200251
Joerg Roedel2c0ae172012-06-12 15:59:30 +0200252static enum iommu_init_state init_state = IOMMU_START_STATE;
253
Gerard Snitselaarae295142012-03-16 11:38:22 -0700254static int amd_iommu_enable_interrupts(void);
Joerg Roedel2c0ae172012-06-12 15:59:30 +0200255static int __init iommu_go_to_state(enum iommu_init_state state);
Joerg Roedelaafd8ba2015-05-28 18:41:39 +0200256static void init_device_table_dma(void);
Joerg Roedel3d9761e2012-03-15 16:39:21 +0100257
Joerg Roedel2479c632017-08-19 00:35:40 +0200258static bool amd_iommu_pre_enabled = true;
Baoquan He3ac3e5ee2017-08-09 16:33:38 +0800259
Baoquan He4c232a72017-08-09 16:33:33 +0800260bool translation_pre_enabled(struct amd_iommu *iommu)
261{
262 return (iommu->flags & AMD_IOMMU_FLAG_TRANS_PRE_ENABLED);
263}
Baoquan Hedaae2d22017-08-09 16:33:43 +0800264EXPORT_SYMBOL(translation_pre_enabled);
Baoquan He4c232a72017-08-09 16:33:33 +0800265
266static void clear_translation_pre_enabled(struct amd_iommu *iommu)
267{
268 iommu->flags &= ~AMD_IOMMU_FLAG_TRANS_PRE_ENABLED;
269}
270
271static void init_translation_status(struct amd_iommu *iommu)
272{
Suravee Suthikulpanite881dbd2018-06-27 10:31:21 -0500273 u64 ctrl;
Baoquan He4c232a72017-08-09 16:33:33 +0800274
Suravee Suthikulpanite881dbd2018-06-27 10:31:21 -0500275 ctrl = readq(iommu->mmio_base + MMIO_CONTROL_OFFSET);
Baoquan He4c232a72017-08-09 16:33:33 +0800276 if (ctrl & (1<<CONTROL_IOMMU_EN))
277 iommu->flags |= AMD_IOMMU_FLAG_TRANS_PRE_ENABLED;
278}
279
Joerg Roedel208ec8c2008-07-11 17:14:24 +0200280static inline void update_last_devid(u16 devid)
281{
282 if (devid > amd_iommu_last_bdf)
283 amd_iommu_last_bdf = devid;
284}
285
Joerg Roedelc5714842008-07-11 17:14:25 +0200286static inline unsigned long tbl_size(int entry_size)
287{
288 unsigned shift = PAGE_SHIFT +
Neil Turton421f9092009-05-14 14:00:35 +0100289 get_order(((int)amd_iommu_last_bdf + 1) * entry_size);
Joerg Roedelc5714842008-07-11 17:14:25 +0200290
291 return 1UL << shift;
292}
293
Suravee Suthikulpanit6b9376e2017-02-24 02:48:17 -0600294int amd_iommu_get_num_iommus(void)
295{
296 return amd_iommus_present;
297}
298
Matthew Garrett5bcd7572010-10-04 14:59:31 -0400299/* Access to l1 and l2 indexed register spaces */
300
301static u32 iommu_read_l1(struct amd_iommu *iommu, u16 l1, u8 address)
302{
303 u32 val;
304
305 pci_write_config_dword(iommu->dev, 0xf8, (address | l1 << 16));
306 pci_read_config_dword(iommu->dev, 0xfc, &val);
307 return val;
308}
309
310static void iommu_write_l1(struct amd_iommu *iommu, u16 l1, u8 address, u32 val)
311{
312 pci_write_config_dword(iommu->dev, 0xf8, (address | l1 << 16 | 1 << 31));
313 pci_write_config_dword(iommu->dev, 0xfc, val);
314 pci_write_config_dword(iommu->dev, 0xf8, (address | l1 << 16));
315}
316
317static u32 iommu_read_l2(struct amd_iommu *iommu, u8 address)
318{
319 u32 val;
320
321 pci_write_config_dword(iommu->dev, 0xf0, address);
322 pci_read_config_dword(iommu->dev, 0xf4, &val);
323 return val;
324}
325
326static void iommu_write_l2(struct amd_iommu *iommu, u8 address, u32 val)
327{
328 pci_write_config_dword(iommu->dev, 0xf0, (address | 1 << 8));
329 pci_write_config_dword(iommu->dev, 0xf4, val);
330}
331
Joerg Roedelb65233a2008-07-11 17:14:21 +0200332/****************************************************************************
333 *
334 * AMD IOMMU MMIO register space handling functions
335 *
336 * These functions are used to program the IOMMU device registers in
337 * MMIO space required for that driver.
338 *
339 ****************************************************************************/
340
341/*
342 * This function set the exclusion range in the IOMMU. DMA accesses to the
343 * exclusion range are passed through untranslated
344 */
Joerg Roedel05f92db2009-05-12 09:52:46 +0200345static void iommu_set_exclusion_range(struct amd_iommu *iommu)
Joerg Roedelb2026aa2008-06-26 21:27:44 +0200346{
347 u64 start = iommu->exclusion_start & PAGE_MASK;
Joerg Roedel3c677d202019-04-12 12:50:31 +0200348 u64 limit = (start + iommu->exclusion_length - 1) & PAGE_MASK;
Joerg Roedelb2026aa2008-06-26 21:27:44 +0200349 u64 entry;
350
351 if (!iommu->exclusion_start)
352 return;
353
354 entry = start | MMIO_EXCL_ENABLE_MASK;
355 memcpy_toio(iommu->mmio_base + MMIO_EXCL_BASE_OFFSET,
356 &entry, sizeof(entry));
357
358 entry = limit;
359 memcpy_toio(iommu->mmio_base + MMIO_EXCL_LIMIT_OFFSET,
360 &entry, sizeof(entry));
361}
362
Suravee Suthikulpanit54ce12e2020-09-23 12:13:47 +0000363static void iommu_set_cwwb_range(struct amd_iommu *iommu)
364{
365 u64 start = iommu_virt_to_phys((void *)iommu->cmd_sem);
366 u64 entry = start & PM_ADDR_MASK;
367
368 if (!iommu_feature(iommu, FEATURE_SNP))
369 return;
370
371 /* Note:
372 * Re-purpose Exclusion base/limit registers for Completion wait
373 * write-back base/limit.
374 */
375 memcpy_toio(iommu->mmio_base + MMIO_EXCL_BASE_OFFSET,
376 &entry, sizeof(entry));
377
378 /* Note:
379 * Default to 4 Kbytes, which can be specified by setting base
380 * address equal to the limit address.
381 */
382 memcpy_toio(iommu->mmio_base + MMIO_EXCL_LIMIT_OFFSET,
383 &entry, sizeof(entry));
384}
385
Joerg Roedelb65233a2008-07-11 17:14:21 +0200386/* Programs the physical address of the device table into the IOMMU hardware */
Jan Beulich6b7f0002012-03-08 08:58:13 +0000387static void iommu_set_device_table(struct amd_iommu *iommu)
Joerg Roedelb2026aa2008-06-26 21:27:44 +0200388{
Andreas Herrmannf6098912008-10-16 16:27:36 +0200389 u64 entry;
Joerg Roedelb2026aa2008-06-26 21:27:44 +0200390
391 BUG_ON(iommu->mmio_base == NULL);
392
Tom Lendacky2543a782017-07-17 16:10:24 -0500393 entry = iommu_virt_to_phys(amd_iommu_dev_table);
Joerg Roedelb2026aa2008-06-26 21:27:44 +0200394 entry |= (dev_table_size >> 12) - 1;
395 memcpy_toio(iommu->mmio_base + MMIO_DEV_TABLE_OFFSET,
396 &entry, sizeof(entry));
397}
398
Joerg Roedelb65233a2008-07-11 17:14:21 +0200399/* Generic functions to enable/disable certain features of the IOMMU. */
Joerg Roedel05f92db2009-05-12 09:52:46 +0200400static void iommu_feature_enable(struct amd_iommu *iommu, u8 bit)
Joerg Roedelb2026aa2008-06-26 21:27:44 +0200401{
Suravee Suthikulpanite881dbd2018-06-27 10:31:21 -0500402 u64 ctrl;
Joerg Roedelb2026aa2008-06-26 21:27:44 +0200403
Suravee Suthikulpanite881dbd2018-06-27 10:31:21 -0500404 ctrl = readq(iommu->mmio_base + MMIO_CONTROL_OFFSET);
405 ctrl |= (1ULL << bit);
406 writeq(ctrl, iommu->mmio_base + MMIO_CONTROL_OFFSET);
Joerg Roedelb2026aa2008-06-26 21:27:44 +0200407}
408
Joerg Roedelca0207112009-10-28 18:02:26 +0100409static void iommu_feature_disable(struct amd_iommu *iommu, u8 bit)
Joerg Roedelb2026aa2008-06-26 21:27:44 +0200410{
Suravee Suthikulpanite881dbd2018-06-27 10:31:21 -0500411 u64 ctrl;
Joerg Roedelb2026aa2008-06-26 21:27:44 +0200412
Suravee Suthikulpanite881dbd2018-06-27 10:31:21 -0500413 ctrl = readq(iommu->mmio_base + MMIO_CONTROL_OFFSET);
414 ctrl &= ~(1ULL << bit);
415 writeq(ctrl, iommu->mmio_base + MMIO_CONTROL_OFFSET);
Joerg Roedelb2026aa2008-06-26 21:27:44 +0200416}
417
Joerg Roedel1456e9d2011-12-22 14:51:53 +0100418static void iommu_set_inv_tlb_timeout(struct amd_iommu *iommu, int timeout)
419{
Suravee Suthikulpanite881dbd2018-06-27 10:31:21 -0500420 u64 ctrl;
Joerg Roedel1456e9d2011-12-22 14:51:53 +0100421
Suravee Suthikulpanite881dbd2018-06-27 10:31:21 -0500422 ctrl = readq(iommu->mmio_base + MMIO_CONTROL_OFFSET);
Joerg Roedel1456e9d2011-12-22 14:51:53 +0100423 ctrl &= ~CTRL_INV_TO_MASK;
424 ctrl |= (timeout << CONTROL_INV_TIMEOUT) & CTRL_INV_TO_MASK;
Suravee Suthikulpanite881dbd2018-06-27 10:31:21 -0500425 writeq(ctrl, iommu->mmio_base + MMIO_CONTROL_OFFSET);
Joerg Roedel1456e9d2011-12-22 14:51:53 +0100426}
427
Joerg Roedelb65233a2008-07-11 17:14:21 +0200428/* Function to enable the hardware */
Joerg Roedel05f92db2009-05-12 09:52:46 +0200429static void iommu_enable(struct amd_iommu *iommu)
Joerg Roedelb2026aa2008-06-26 21:27:44 +0200430{
Joerg Roedelb2026aa2008-06-26 21:27:44 +0200431 iommu_feature_enable(iommu, CONTROL_IOMMU_EN);
Joerg Roedelb2026aa2008-06-26 21:27:44 +0200432}
433
Joerg Roedel92ac4322009-05-19 19:06:27 +0200434static void iommu_disable(struct amd_iommu *iommu)
Joerg Roedel126c52b2008-09-09 16:47:35 +0200435{
Kevin Mitchell3ddbe912019-06-12 14:52:03 -0700436 if (!iommu->mmio_base)
437 return;
438
Chris Wrighta8c485b2009-06-15 15:53:45 +0200439 /* Disable command buffer */
440 iommu_feature_disable(iommu, CONTROL_CMDBUF_EN);
441
442 /* Disable event logging and event interrupts */
443 iommu_feature_disable(iommu, CONTROL_EVT_INT_EN);
444 iommu_feature_disable(iommu, CONTROL_EVT_LOG_EN);
445
Suravee Suthikulpanit8bda0cf2016-08-23 13:52:36 -0500446 /* Disable IOMMU GA_LOG */
447 iommu_feature_disable(iommu, CONTROL_GALOG_EN);
448 iommu_feature_disable(iommu, CONTROL_GAINT_EN);
449
Chris Wrighta8c485b2009-06-15 15:53:45 +0200450 /* Disable IOMMU hardware itself */
Joerg Roedel92ac4322009-05-19 19:06:27 +0200451 iommu_feature_disable(iommu, CONTROL_IOMMU_EN);
Joerg Roedel126c52b2008-09-09 16:47:35 +0200452}
453
Joerg Roedelb65233a2008-07-11 17:14:21 +0200454/*
455 * mapping and unmapping functions for the IOMMU MMIO space. Each AMD IOMMU in
456 * the system has one.
457 */
Steven L Kinney30861dd2013-06-05 16:11:48 -0500458static u8 __iomem * __init iommu_map_mmio_space(u64 address, u64 end)
Joerg Roedel6c567472008-06-26 21:27:43 +0200459{
Steven L Kinney30861dd2013-06-05 16:11:48 -0500460 if (!request_mem_region(address, end, "amd_iommu")) {
Joerg Roedel101fa032018-11-27 16:22:31 +0100461 pr_err("Can not reserve memory region %llx-%llx for mmio\n",
Steven L Kinney30861dd2013-06-05 16:11:48 -0500462 address, end);
Joerg Roedel101fa032018-11-27 16:22:31 +0100463 pr_err("This is a BIOS bug. Please contact your hardware vendor\n");
Joerg Roedel6c567472008-06-26 21:27:43 +0200464 return NULL;
Joerg Roedele82752d2010-05-28 14:26:48 +0200465 }
Joerg Roedel6c567472008-06-26 21:27:43 +0200466
Christoph Hellwig4bdc0d62020-01-06 09:43:50 +0100467 return (u8 __iomem *)ioremap(address, end);
Joerg Roedel6c567472008-06-26 21:27:43 +0200468}
469
470static void __init iommu_unmap_mmio_space(struct amd_iommu *iommu)
471{
472 if (iommu->mmio_base)
473 iounmap(iommu->mmio_base);
Steven L Kinney30861dd2013-06-05 16:11:48 -0500474 release_mem_region(iommu->mmio_phys, iommu->mmio_phys_end);
Joerg Roedel6c567472008-06-26 21:27:43 +0200475}
476
Suravee Suthikulpanitac7ccf62016-04-01 09:05:58 -0400477static inline u32 get_ivhd_header_size(struct ivhd_header *h)
478{
479 u32 size = 0;
480
481 switch (h->type) {
482 case 0x10:
483 size = 24;
484 break;
485 case 0x11:
486 case 0x40:
487 size = 40;
488 break;
489 }
490 return size;
491}
492
Joerg Roedelb65233a2008-07-11 17:14:21 +0200493/****************************************************************************
494 *
495 * The functions below belong to the first pass of AMD IOMMU ACPI table
496 * parsing. In this pass we try to find out the highest device id this
497 * code has to handle. Upon this information the size of the shared data
498 * structures is determined later.
499 *
500 ****************************************************************************/
501
502/*
Joerg Roedelb514e552008-09-17 17:14:27 +0200503 * This function calculates the length of a given IVHD entry
504 */
505static inline int ivhd_entry_length(u8 *ivhd)
506{
Suravee Suthikulpanit8c7142f2016-04-01 09:05:59 -0400507 u32 type = ((struct ivhd_entry *)ivhd)->type;
508
509 if (type < 0x80) {
510 return 0x04 << (*ivhd >> 6);
511 } else if (type == IVHD_DEV_ACPI_HID) {
512 /* For ACPI_HID, offset 21 is uid len */
513 return *((u8 *)ivhd + 21) + 22;
514 }
515 return 0;
Joerg Roedelb514e552008-09-17 17:14:27 +0200516}
517
518/*
Joerg Roedelb65233a2008-07-11 17:14:21 +0200519 * After reading the highest device id from the IOMMU PCI capability header
520 * this function looks if there is a higher device id defined in the ACPI table
521 */
Joerg Roedel3e8064b2008-06-26 21:27:41 +0200522static int __init find_last_devid_from_ivhd(struct ivhd_header *h)
523{
524 u8 *p = (void *)h, *end = (void *)h;
525 struct ivhd_entry *dev;
526
Suravee Suthikulpanitac7ccf62016-04-01 09:05:58 -0400527 u32 ivhd_size = get_ivhd_header_size(h);
528
529 if (!ivhd_size) {
Joerg Roedel101fa032018-11-27 16:22:31 +0100530 pr_err("Unsupported IVHD type %#x\n", h->type);
Suravee Suthikulpanitac7ccf62016-04-01 09:05:58 -0400531 return -EINVAL;
532 }
533
534 p += ivhd_size;
Joerg Roedel3e8064b2008-06-26 21:27:41 +0200535 end += h->length;
536
Joerg Roedel3e8064b2008-06-26 21:27:41 +0200537 while (p < end) {
538 dev = (struct ivhd_entry *)p;
539 switch (dev->type) {
Joerg Roedeld1259412015-10-20 17:33:43 +0200540 case IVHD_DEV_ALL:
541 /* Use maximum BDF value for DEV_ALL */
542 update_last_devid(0xffff);
543 break;
Joerg Roedel3e8064b2008-06-26 21:27:41 +0200544 case IVHD_DEV_SELECT:
545 case IVHD_DEV_RANGE_END:
546 case IVHD_DEV_ALIAS:
547 case IVHD_DEV_EXT_SELECT:
Joerg Roedelb65233a2008-07-11 17:14:21 +0200548 /* all the above subfield types refer to device ids */
Joerg Roedel208ec8c2008-07-11 17:14:24 +0200549 update_last_devid(dev->devid);
Joerg Roedel3e8064b2008-06-26 21:27:41 +0200550 break;
551 default:
552 break;
553 }
Joerg Roedelb514e552008-09-17 17:14:27 +0200554 p += ivhd_entry_length(p);
Joerg Roedel3e8064b2008-06-26 21:27:41 +0200555 }
556
557 WARN_ON(p != end);
558
559 return 0;
560}
561
Suravee Suthikulpanit8c7142f2016-04-01 09:05:59 -0400562static int __init check_ivrs_checksum(struct acpi_table_header *table)
563{
564 int i;
565 u8 checksum = 0, *p = (u8 *)table;
566
567 for (i = 0; i < table->length; ++i)
568 checksum += p[i];
569 if (checksum != 0) {
570 /* ACPI table corrupt */
Joerg Roedel101fa032018-11-27 16:22:31 +0100571 pr_err(FW_BUG "IVRS invalid checksum\n");
Suravee Suthikulpanit8c7142f2016-04-01 09:05:59 -0400572 return -ENODEV;
573 }
574
575 return 0;
576}
577
Joerg Roedelb65233a2008-07-11 17:14:21 +0200578/*
579 * Iterate over all IVHD entries in the ACPI table and find the highest device
580 * id which we need to handle. This is the first of three functions which parse
581 * the ACPI table. So we check the checksum here.
582 */
Joerg Roedel3e8064b2008-06-26 21:27:41 +0200583static int __init find_last_devid_acpi(struct acpi_table_header *table)
584{
Suravee Suthikulpanit8c7142f2016-04-01 09:05:59 -0400585 u8 *p = (u8 *)table, *end = (u8 *)table;
Joerg Roedel3e8064b2008-06-26 21:27:41 +0200586 struct ivhd_header *h;
587
Joerg Roedel3e8064b2008-06-26 21:27:41 +0200588 p += IVRS_HEADER_LENGTH;
589
590 end += table->length;
591 while (p < end) {
592 h = (struct ivhd_header *)p;
Suravee Suthikulpanit8c7142f2016-04-01 09:05:59 -0400593 if (h->type == amd_iommu_target_ivhd_type) {
594 int ret = find_last_devid_from_ivhd(h);
595
596 if (ret)
597 return ret;
Joerg Roedel3e8064b2008-06-26 21:27:41 +0200598 }
599 p += h->length;
600 }
601 WARN_ON(p != end);
602
603 return 0;
604}
605
Joerg Roedelb65233a2008-07-11 17:14:21 +0200606/****************************************************************************
607 *
Frank Arnolddf805ab2012-08-27 19:21:04 +0200608 * The following functions belong to the code path which parses the ACPI table
Joerg Roedelb65233a2008-07-11 17:14:21 +0200609 * the second time. In this ACPI parsing iteration we allocate IOMMU specific
610 * data structures, initialize the device/alias/rlookup table and also
611 * basically initialize the hardware.
612 *
613 ****************************************************************************/
614
615/*
616 * Allocates the command buffer. This buffer is per AMD IOMMU. We can
617 * write commands to that buffer later and the IOMMU will execute them
618 * asynchronously
619 */
Joerg Roedelf2c2db52015-10-20 17:33:42 +0200620static int __init alloc_command_buffer(struct amd_iommu *iommu)
Joerg Roedelb36ca912008-06-26 21:27:45 +0200621{
Joerg Roedelf2c2db52015-10-20 17:33:42 +0200622 iommu->cmd_buf = (void *)__get_free_pages(GFP_KERNEL | __GFP_ZERO,
623 get_order(CMD_BUFFER_SIZE));
Joerg Roedelb36ca912008-06-26 21:27:45 +0200624
Joerg Roedelf2c2db52015-10-20 17:33:42 +0200625 return iommu->cmd_buf ? 0 : -ENOMEM;
Joerg Roedel58492e12009-05-04 18:41:16 +0200626}
627
628/*
Joerg Roedel93f1cc672009-09-03 14:50:20 +0200629 * This function resets the command buffer if the IOMMU stopped fetching
630 * commands from it.
631 */
632void amd_iommu_reset_cmd_buffer(struct amd_iommu *iommu)
633{
634 iommu_feature_disable(iommu, CONTROL_CMDBUF_EN);
635
636 writel(0x00, iommu->mmio_base + MMIO_CMD_HEAD_OFFSET);
637 writel(0x00, iommu->mmio_base + MMIO_CMD_TAIL_OFFSET);
Tom Lendackyd334a562017-06-05 14:52:12 -0500638 iommu->cmd_buf_head = 0;
639 iommu->cmd_buf_tail = 0;
Joerg Roedel93f1cc672009-09-03 14:50:20 +0200640
641 iommu_feature_enable(iommu, CONTROL_CMDBUF_EN);
642}
643
644/*
Joerg Roedel58492e12009-05-04 18:41:16 +0200645 * This function writes the command buffer address to the hardware and
646 * enables it.
647 */
648static void iommu_enable_command_buffer(struct amd_iommu *iommu)
649{
650 u64 entry;
651
652 BUG_ON(iommu->cmd_buf == NULL);
653
Tom Lendacky2543a782017-07-17 16:10:24 -0500654 entry = iommu_virt_to_phys(iommu->cmd_buf);
Joerg Roedelb36ca912008-06-26 21:27:45 +0200655 entry |= MMIO_CMD_SIZE_512;
Joerg Roedel58492e12009-05-04 18:41:16 +0200656
Joerg Roedelb36ca912008-06-26 21:27:45 +0200657 memcpy_toio(iommu->mmio_base + MMIO_CMD_BUF_OFFSET,
Joerg Roedel58492e12009-05-04 18:41:16 +0200658 &entry, sizeof(entry));
Joerg Roedelb36ca912008-06-26 21:27:45 +0200659
Joerg Roedel93f1cc672009-09-03 14:50:20 +0200660 amd_iommu_reset_cmd_buffer(iommu);
Joerg Roedelb36ca912008-06-26 21:27:45 +0200661}
662
Baoquan He78d313c2017-08-09 16:33:34 +0800663/*
664 * This function disables the command buffer
665 */
666static void iommu_disable_command_buffer(struct amd_iommu *iommu)
667{
668 iommu_feature_disable(iommu, CONTROL_CMDBUF_EN);
669}
670
Joerg Roedelb36ca912008-06-26 21:27:45 +0200671static void __init free_command_buffer(struct amd_iommu *iommu)
672{
Joerg Roedeldeba4bc2015-10-20 17:33:41 +0200673 free_pages((unsigned long)iommu->cmd_buf, get_order(CMD_BUFFER_SIZE));
Joerg Roedelb36ca912008-06-26 21:27:45 +0200674}
675
Suravee Suthikulpanit6d39bde2020-11-05 14:58:32 +0000676static void *__init iommu_alloc_4k_pages(struct amd_iommu *iommu,
677 gfp_t gfp, size_t size)
678{
679 int order = get_order(size);
680 void *buf = (void *)__get_free_pages(gfp, order);
681
682 if (buf &&
683 iommu_feature(iommu, FEATURE_SNP) &&
684 set_memory_4k((unsigned long)buf, (1 << order))) {
685 free_pages((unsigned long)buf, order);
686 buf = NULL;
687 }
688
689 return buf;
690}
691
Joerg Roedel335503e2008-09-05 14:29:07 +0200692/* allocates the memory where the IOMMU will log its events to */
Joerg Roedelf2c2db52015-10-20 17:33:42 +0200693static int __init alloc_event_buffer(struct amd_iommu *iommu)
Joerg Roedel335503e2008-09-05 14:29:07 +0200694{
Suravee Suthikulpanit6d39bde2020-11-05 14:58:32 +0000695 iommu->evt_buf = iommu_alloc_4k_pages(iommu, GFP_KERNEL | __GFP_ZERO,
696 EVT_BUFFER_SIZE);
Joerg Roedel335503e2008-09-05 14:29:07 +0200697
Joerg Roedelf2c2db52015-10-20 17:33:42 +0200698 return iommu->evt_buf ? 0 : -ENOMEM;
Joerg Roedel58492e12009-05-04 18:41:16 +0200699}
700
701static void iommu_enable_event_buffer(struct amd_iommu *iommu)
702{
703 u64 entry;
704
705 BUG_ON(iommu->evt_buf == NULL);
706
Tom Lendacky2543a782017-07-17 16:10:24 -0500707 entry = iommu_virt_to_phys(iommu->evt_buf) | EVT_LEN_MASK;
Joerg Roedel58492e12009-05-04 18:41:16 +0200708
Joerg Roedel335503e2008-09-05 14:29:07 +0200709 memcpy_toio(iommu->mmio_base + MMIO_EVT_BUF_OFFSET,
710 &entry, sizeof(entry));
711
Joerg Roedel090672072009-06-15 16:06:48 +0200712 /* set head and tail to zero manually */
713 writel(0x00, iommu->mmio_base + MMIO_EVT_HEAD_OFFSET);
714 writel(0x00, iommu->mmio_base + MMIO_EVT_TAIL_OFFSET);
715
Joerg Roedel58492e12009-05-04 18:41:16 +0200716 iommu_feature_enable(iommu, CONTROL_EVT_LOG_EN);
Joerg Roedel335503e2008-09-05 14:29:07 +0200717}
718
Baoquan He78d313c2017-08-09 16:33:34 +0800719/*
720 * This function disables the event log buffer
721 */
722static void iommu_disable_event_buffer(struct amd_iommu *iommu)
723{
724 iommu_feature_disable(iommu, CONTROL_EVT_LOG_EN);
725}
726
Joerg Roedel335503e2008-09-05 14:29:07 +0200727static void __init free_event_buffer(struct amd_iommu *iommu)
728{
729 free_pages((unsigned long)iommu->evt_buf, get_order(EVT_BUFFER_SIZE));
730}
731
Joerg Roedel1a29ac02011-11-10 15:41:40 +0100732/* allocates the memory where the IOMMU will log its events to */
Joerg Roedelf2c2db52015-10-20 17:33:42 +0200733static int __init alloc_ppr_log(struct amd_iommu *iommu)
Joerg Roedel1a29ac02011-11-10 15:41:40 +0100734{
Suravee Suthikulpanit6d39bde2020-11-05 14:58:32 +0000735 iommu->ppr_log = iommu_alloc_4k_pages(iommu, GFP_KERNEL | __GFP_ZERO,
736 PPR_LOG_SIZE);
Joerg Roedel1a29ac02011-11-10 15:41:40 +0100737
Joerg Roedelf2c2db52015-10-20 17:33:42 +0200738 return iommu->ppr_log ? 0 : -ENOMEM;
Joerg Roedel1a29ac02011-11-10 15:41:40 +0100739}
740
741static void iommu_enable_ppr_log(struct amd_iommu *iommu)
742{
743 u64 entry;
744
745 if (iommu->ppr_log == NULL)
746 return;
747
Tom Lendacky2543a782017-07-17 16:10:24 -0500748 entry = iommu_virt_to_phys(iommu->ppr_log) | PPR_LOG_SIZE_512;
Joerg Roedel1a29ac02011-11-10 15:41:40 +0100749
750 memcpy_toio(iommu->mmio_base + MMIO_PPR_LOG_OFFSET,
751 &entry, sizeof(entry));
752
753 /* set head and tail to zero manually */
754 writel(0x00, iommu->mmio_base + MMIO_PPR_HEAD_OFFSET);
755 writel(0x00, iommu->mmio_base + MMIO_PPR_TAIL_OFFSET);
756
Adrian Huangbde9e6b2019-12-30 13:56:54 +0800757 iommu_feature_enable(iommu, CONTROL_PPRLOG_EN);
Joerg Roedel1a29ac02011-11-10 15:41:40 +0100758 iommu_feature_enable(iommu, CONTROL_PPR_EN);
759}
760
761static void __init free_ppr_log(struct amd_iommu *iommu)
762{
Joerg Roedel1a29ac02011-11-10 15:41:40 +0100763 free_pages((unsigned long)iommu->ppr_log, get_order(PPR_LOG_SIZE));
764}
765
Suravee Suthikulpanit8bda0cf2016-08-23 13:52:36 -0500766static void free_ga_log(struct amd_iommu *iommu)
767{
768#ifdef CONFIG_IRQ_REMAP
Libing Zhou092550e2020-07-22 14:44:50 +0800769 free_pages((unsigned long)iommu->ga_log, get_order(GA_LOG_SIZE));
770 free_pages((unsigned long)iommu->ga_log_tail, get_order(8));
Suravee Suthikulpanit8bda0cf2016-08-23 13:52:36 -0500771#endif
772}
773
774static int iommu_ga_log_enable(struct amd_iommu *iommu)
775{
776#ifdef CONFIG_IRQ_REMAP
777 u32 status, i;
778
779 if (!iommu->ga_log)
780 return -EINVAL;
781
782 status = readl(iommu->mmio_base + MMIO_STATUS_OFFSET);
783
784 /* Check if already running */
785 if (status & (MMIO_STATUS_GALOG_RUN_MASK))
786 return 0;
787
788 iommu_feature_enable(iommu, CONTROL_GAINT_EN);
789 iommu_feature_enable(iommu, CONTROL_GALOG_EN);
790
791 for (i = 0; i < LOOP_TIMEOUT; ++i) {
792 status = readl(iommu->mmio_base + MMIO_STATUS_OFFSET);
793 if (status & (MMIO_STATUS_GALOG_RUN_MASK))
794 break;
795 }
796
797 if (i >= LOOP_TIMEOUT)
798 return -EINVAL;
799#endif /* CONFIG_IRQ_REMAP */
800 return 0;
801}
802
803#ifdef CONFIG_IRQ_REMAP
804static int iommu_init_ga_log(struct amd_iommu *iommu)
805{
806 u64 entry;
807
808 if (!AMD_IOMMU_GUEST_IR_VAPIC(amd_iommu_guest_ir))
809 return 0;
810
811 iommu->ga_log = (u8 *)__get_free_pages(GFP_KERNEL | __GFP_ZERO,
812 get_order(GA_LOG_SIZE));
813 if (!iommu->ga_log)
814 goto err_out;
815
816 iommu->ga_log_tail = (u8 *)__get_free_pages(GFP_KERNEL | __GFP_ZERO,
817 get_order(8));
818 if (!iommu->ga_log_tail)
819 goto err_out;
820
Tom Lendacky2543a782017-07-17 16:10:24 -0500821 entry = iommu_virt_to_phys(iommu->ga_log) | GA_LOG_SIZE_512;
Suravee Suthikulpanit8bda0cf2016-08-23 13:52:36 -0500822 memcpy_toio(iommu->mmio_base + MMIO_GA_LOG_BASE_OFFSET,
823 &entry, sizeof(entry));
Filippo Sironiab99be42018-11-12 12:26:30 +0000824 entry = (iommu_virt_to_phys(iommu->ga_log_tail) &
825 (BIT_ULL(52)-1)) & ~7ULL;
Suravee Suthikulpanit8bda0cf2016-08-23 13:52:36 -0500826 memcpy_toio(iommu->mmio_base + MMIO_GA_LOG_TAIL_OFFSET,
827 &entry, sizeof(entry));
828 writel(0x00, iommu->mmio_base + MMIO_GA_HEAD_OFFSET);
829 writel(0x00, iommu->mmio_base + MMIO_GA_TAIL_OFFSET);
830
831 return 0;
832err_out:
833 free_ga_log(iommu);
834 return -EINVAL;
835}
836#endif /* CONFIG_IRQ_REMAP */
837
838static int iommu_init_ga(struct amd_iommu *iommu)
839{
840 int ret = 0;
841
842#ifdef CONFIG_IRQ_REMAP
843 /* Note: We have already checked GASup from IVRS table.
844 * Now, we need to make sure that GAMSup is set.
845 */
846 if (AMD_IOMMU_GUEST_IR_VAPIC(amd_iommu_guest_ir) &&
847 !iommu_feature(iommu, FEATURE_GAM_VAPIC))
848 amd_iommu_guest_ir = AMD_IOMMU_GUEST_IR_LEGACY_GA;
849
850 ret = iommu_init_ga_log(iommu);
851#endif /* CONFIG_IRQ_REMAP */
852
853 return ret;
854}
855
Suravee Suthikulpanitc69d89a2020-09-23 12:13:45 +0000856static int __init alloc_cwwb_sem(struct amd_iommu *iommu)
857{
Suravee Suthikulpanit6d39bde2020-11-05 14:58:32 +0000858 iommu->cmd_sem = iommu_alloc_4k_pages(iommu, GFP_KERNEL | __GFP_ZERO, 1);
Suravee Suthikulpanitc69d89a2020-09-23 12:13:45 +0000859
860 return iommu->cmd_sem ? 0 : -ENOMEM;
861}
862
863static void __init free_cwwb_sem(struct amd_iommu *iommu)
864{
865 if (iommu->cmd_sem)
866 free_page((unsigned long)iommu->cmd_sem);
867}
868
Suravee Suthikulpanit90fcffd2018-06-27 10:31:22 -0500869static void iommu_enable_xt(struct amd_iommu *iommu)
870{
871#ifdef CONFIG_IRQ_REMAP
872 /*
873 * XT mode (32-bit APIC destination ID) requires
874 * GA mode (128-bit IRTE support) as a prerequisite.
875 */
876 if (AMD_IOMMU_GUEST_IR_GA(amd_iommu_guest_ir) &&
877 amd_iommu_xt_mode == IRQ_REMAP_X2APIC_MODE)
878 iommu_feature_enable(iommu, CONTROL_XT_EN);
879#endif /* CONFIG_IRQ_REMAP */
880}
881
Joerg Roedelcbc33a92011-11-25 11:41:31 +0100882static void iommu_enable_gt(struct amd_iommu *iommu)
883{
884 if (!iommu_feature(iommu, FEATURE_GT))
885 return;
886
887 iommu_feature_enable(iommu, CONTROL_GT_EN);
888}
889
Joerg Roedelb65233a2008-07-11 17:14:21 +0200890/* sets a specific bit in the device table entry. */
Joerg Roedel3566b772008-06-26 21:27:46 +0200891static void set_dev_entry_bit(u16 devid, u8 bit)
892{
Joerg Roedelee6c2862011-11-09 12:06:03 +0100893 int i = (bit >> 6) & 0x03;
894 int _bit = bit & 0x3f;
Joerg Roedel3566b772008-06-26 21:27:46 +0200895
Joerg Roedelee6c2862011-11-09 12:06:03 +0100896 amd_iommu_dev_table[devid].data[i] |= (1UL << _bit);
Joerg Roedel3566b772008-06-26 21:27:46 +0200897}
898
Joerg Roedelc5cca142009-10-09 18:31:20 +0200899static int get_dev_entry_bit(u16 devid, u8 bit)
900{
Joerg Roedelee6c2862011-11-09 12:06:03 +0100901 int i = (bit >> 6) & 0x03;
902 int _bit = bit & 0x3f;
Joerg Roedelc5cca142009-10-09 18:31:20 +0200903
Joerg Roedelee6c2862011-11-09 12:06:03 +0100904 return (amd_iommu_dev_table[devid].data[i] & (1UL << _bit)) >> _bit;
Joerg Roedelc5cca142009-10-09 18:31:20 +0200905}
906
907
Baoquan He45a01c42017-08-09 16:33:37 +0800908static bool copy_device_table(void)
909{
Joerg Roedelae162ef2017-08-19 00:28:02 +0200910 u64 int_ctl, int_tab_len, entry = 0, last_entry = 0;
Baoquan He45a01c42017-08-09 16:33:37 +0800911 struct dev_table_entry *old_devtb = NULL;
912 u32 lo, hi, devid, old_devtb_size;
913 phys_addr_t old_devtb_phys;
Baoquan He45a01c42017-08-09 16:33:37 +0800914 struct amd_iommu *iommu;
Baoquan He53019a92017-08-09 16:33:39 +0800915 u16 dom_id, dte_v, irq_v;
Baoquan He45a01c42017-08-09 16:33:37 +0800916 gfp_t gfp_flag;
Baoquan Hedaae2d22017-08-09 16:33:43 +0800917 u64 tmp;
Baoquan He45a01c42017-08-09 16:33:37 +0800918
Baoquan He3ac3e5ee2017-08-09 16:33:38 +0800919 if (!amd_iommu_pre_enabled)
920 return false;
Baoquan He45a01c42017-08-09 16:33:37 +0800921
922 pr_warn("Translation is already enabled - trying to copy translation structures\n");
923 for_each_iommu(iommu) {
924 /* All IOMMUs should use the same device table with the same size */
925 lo = readl(iommu->mmio_base + MMIO_DEV_TABLE_OFFSET);
926 hi = readl(iommu->mmio_base + MMIO_DEV_TABLE_OFFSET + 4);
927 entry = (((u64) hi) << 32) + lo;
928 if (last_entry && last_entry != entry) {
Arvind Yadav3c6bae62017-09-26 13:07:46 +0530929 pr_err("IOMMU:%d should use the same dev table as others!\n",
Baoquan He45a01c42017-08-09 16:33:37 +0800930 iommu->index);
931 return false;
932 }
933 last_entry = entry;
934
935 old_devtb_size = ((entry & ~PAGE_MASK) + 1) << 12;
936 if (old_devtb_size != dev_table_size) {
Arvind Yadav3c6bae62017-09-26 13:07:46 +0530937 pr_err("The device table size of IOMMU:%d is not expected!\n",
Baoquan He45a01c42017-08-09 16:33:37 +0800938 iommu->index);
939 return false;
940 }
941 }
942
Lianbo Jiang87801582018-09-30 11:10:32 +0800943 /*
944 * When SME is enabled in the first kernel, the entry includes the
945 * memory encryption mask(sme_me_mask), we must remove the memory
946 * encryption mask to obtain the true physical address in kdump kernel.
947 */
948 old_devtb_phys = __sme_clr(entry) & PAGE_MASK;
949
Baoquan Heb3367812017-08-09 16:33:42 +0800950 if (old_devtb_phys >= 0x100000000ULL) {
Arvind Yadav3c6bae62017-09-26 13:07:46 +0530951 pr_err("The address of old device table is above 4G, not trustworthy!\n");
Baoquan Heb3367812017-08-09 16:33:42 +0800952 return false;
953 }
Lianbo Jiang87801582018-09-30 11:10:32 +0800954 old_devtb = (sme_active() && is_kdump_kernel())
955 ? (__force void *)ioremap_encrypted(old_devtb_phys,
956 dev_table_size)
957 : memremap(old_devtb_phys, dev_table_size, MEMREMAP_WB);
958
Baoquan He45a01c42017-08-09 16:33:37 +0800959 if (!old_devtb)
960 return false;
961
Baoquan Heb3367812017-08-09 16:33:42 +0800962 gfp_flag = GFP_KERNEL | __GFP_ZERO | GFP_DMA32;
Baoquan He45a01c42017-08-09 16:33:37 +0800963 old_dev_tbl_cpy = (void *)__get_free_pages(gfp_flag,
964 get_order(dev_table_size));
965 if (old_dev_tbl_cpy == NULL) {
Arvind Yadav3c6bae62017-09-26 13:07:46 +0530966 pr_err("Failed to allocate memory for copying old device table!\n");
Baoquan He45a01c42017-08-09 16:33:37 +0800967 return false;
968 }
969
970 for (devid = 0; devid <= amd_iommu_last_bdf; ++devid) {
971 old_dev_tbl_cpy[devid] = old_devtb[devid];
972 dom_id = old_devtb[devid].data[1] & DEV_DOMID_MASK;
973 dte_v = old_devtb[devid].data[0] & DTE_FLAG_V;
Baoquan He53019a92017-08-09 16:33:39 +0800974
975 if (dte_v && dom_id) {
976 old_dev_tbl_cpy[devid].data[0] = old_devtb[devid].data[0];
977 old_dev_tbl_cpy[devid].data[1] = old_devtb[devid].data[1];
Baoquan He45a01c42017-08-09 16:33:37 +0800978 __set_bit(dom_id, amd_iommu_pd_alloc_bitmap);
Baoquan Hedaae2d22017-08-09 16:33:43 +0800979 /* If gcr3 table existed, mask it out */
980 if (old_devtb[devid].data[0] & DTE_FLAG_GV) {
981 tmp = DTE_GCR3_VAL_B(~0ULL) << DTE_GCR3_SHIFT_B;
982 tmp |= DTE_GCR3_VAL_C(~0ULL) << DTE_GCR3_SHIFT_C;
983 old_dev_tbl_cpy[devid].data[1] &= ~tmp;
984 tmp = DTE_GCR3_VAL_A(~0ULL) << DTE_GCR3_SHIFT_A;
985 tmp |= DTE_FLAG_GV;
986 old_dev_tbl_cpy[devid].data[0] &= ~tmp;
987 }
Baoquan He53019a92017-08-09 16:33:39 +0800988 }
989
990 irq_v = old_devtb[devid].data[2] & DTE_IRQ_REMAP_ENABLE;
991 int_ctl = old_devtb[devid].data[2] & DTE_IRQ_REMAP_INTCTL_MASK;
Suravee Suthikulpanit5ae9a042020-12-10 10:24:36 -0600992 int_tab_len = old_devtb[devid].data[2] & DTE_INTTABLEN_MASK;
Baoquan He53019a92017-08-09 16:33:39 +0800993 if (irq_v && (int_ctl || int_tab_len)) {
994 if ((int_ctl != DTE_IRQ_REMAP_INTCTL) ||
Suravee Suthikulpanit5ae9a042020-12-10 10:24:36 -0600995 (int_tab_len != DTE_INTTABLEN)) {
Baoquan He53019a92017-08-09 16:33:39 +0800996 pr_err("Wrong old irq remapping flag: %#x\n", devid);
997 return false;
998 }
999
1000 old_dev_tbl_cpy[devid].data[2] = old_devtb[devid].data[2];
1001 }
Baoquan He45a01c42017-08-09 16:33:37 +08001002 }
1003 memunmap(old_devtb);
1004
1005 return true;
1006}
1007
Joerg Roedelc5cca142009-10-09 18:31:20 +02001008void amd_iommu_apply_erratum_63(u16 devid)
1009{
1010 int sysmgt;
1011
1012 sysmgt = get_dev_entry_bit(devid, DEV_ENTRY_SYSMGT1) |
1013 (get_dev_entry_bit(devid, DEV_ENTRY_SYSMGT2) << 1);
1014
1015 if (sysmgt == 0x01)
1016 set_dev_entry_bit(devid, DEV_ENTRY_IW);
1017}
1018
Joerg Roedel5ff47892008-07-14 20:11:18 +02001019/* Writes the specific IOMMU for a device into the rlookup table */
1020static void __init set_iommu_for_device(struct amd_iommu *iommu, u16 devid)
1021{
1022 amd_iommu_rlookup_table[devid] = iommu;
1023}
1024
Joerg Roedelb65233a2008-07-11 17:14:21 +02001025/*
1026 * This function takes the device specific flags read from the ACPI
1027 * table and sets up the device table entry with that information
1028 */
Joerg Roedel5ff47892008-07-14 20:11:18 +02001029static void __init set_dev_entry_from_acpi(struct amd_iommu *iommu,
1030 u16 devid, u32 flags, u32 ext_flags)
Joerg Roedel3566b772008-06-26 21:27:46 +02001031{
1032 if (flags & ACPI_DEVFLAG_INITPASS)
1033 set_dev_entry_bit(devid, DEV_ENTRY_INIT_PASS);
1034 if (flags & ACPI_DEVFLAG_EXTINT)
1035 set_dev_entry_bit(devid, DEV_ENTRY_EINT_PASS);
1036 if (flags & ACPI_DEVFLAG_NMI)
1037 set_dev_entry_bit(devid, DEV_ENTRY_NMI_PASS);
1038 if (flags & ACPI_DEVFLAG_SYSMGT1)
1039 set_dev_entry_bit(devid, DEV_ENTRY_SYSMGT1);
1040 if (flags & ACPI_DEVFLAG_SYSMGT2)
1041 set_dev_entry_bit(devid, DEV_ENTRY_SYSMGT2);
1042 if (flags & ACPI_DEVFLAG_LINT0)
1043 set_dev_entry_bit(devid, DEV_ENTRY_LINT0_PASS);
1044 if (flags & ACPI_DEVFLAG_LINT1)
1045 set_dev_entry_bit(devid, DEV_ENTRY_LINT1_PASS);
Joerg Roedel3566b772008-06-26 21:27:46 +02001046
Joerg Roedelc5cca142009-10-09 18:31:20 +02001047 amd_iommu_apply_erratum_63(devid);
1048
Joerg Roedel5ff47892008-07-14 20:11:18 +02001049 set_iommu_for_device(iommu, devid);
Joerg Roedel3566b772008-06-26 21:27:46 +02001050}
1051
Kai-Heng Feng93d05152019-08-21 13:10:04 +08001052int __init add_special_device(u8 type, u8 id, u16 *devid, bool cmd_line)
Joerg Roedel6efed632012-06-14 15:52:58 +02001053{
1054 struct devid_map *entry;
1055 struct list_head *list;
1056
Joerg Roedel31cff672013-04-09 16:53:58 +02001057 if (type == IVHD_SPECIAL_IOAPIC)
1058 list = &ioapic_map;
1059 else if (type == IVHD_SPECIAL_HPET)
1060 list = &hpet_map;
1061 else
Joerg Roedel6efed632012-06-14 15:52:58 +02001062 return -EINVAL;
1063
Joerg Roedel31cff672013-04-09 16:53:58 +02001064 list_for_each_entry(entry, list, list) {
1065 if (!(entry->id == id && entry->cmd_line))
1066 continue;
1067
Joerg Roedel101fa032018-11-27 16:22:31 +01001068 pr_info("Command-line override present for %s id %d - ignoring\n",
Joerg Roedel31cff672013-04-09 16:53:58 +02001069 type == IVHD_SPECIAL_IOAPIC ? "IOAPIC" : "HPET", id);
1070
Joerg Roedelc50e3242014-09-09 15:59:37 +02001071 *devid = entry->devid;
1072
Joerg Roedel31cff672013-04-09 16:53:58 +02001073 return 0;
1074 }
1075
Joerg Roedel6efed632012-06-14 15:52:58 +02001076 entry = kzalloc(sizeof(*entry), GFP_KERNEL);
1077 if (!entry)
1078 return -ENOMEM;
1079
Joerg Roedel31cff672013-04-09 16:53:58 +02001080 entry->id = id;
Joerg Roedelc50e3242014-09-09 15:59:37 +02001081 entry->devid = *devid;
Joerg Roedel31cff672013-04-09 16:53:58 +02001082 entry->cmd_line = cmd_line;
Joerg Roedel6efed632012-06-14 15:52:58 +02001083
1084 list_add_tail(&entry->list, list);
1085
1086 return 0;
1087}
1088
Wan Zongshun2a0cb4e2016-04-01 09:06:00 -04001089static int __init add_acpi_hid_device(u8 *hid, u8 *uid, u16 *devid,
1090 bool cmd_line)
1091{
1092 struct acpihid_map_entry *entry;
1093 struct list_head *list = &acpihid_map;
1094
1095 list_for_each_entry(entry, list, list) {
1096 if (strcmp(entry->hid, hid) ||
1097 (*uid && *entry->uid && strcmp(entry->uid, uid)) ||
1098 !entry->cmd_line)
1099 continue;
1100
Joerg Roedel101fa032018-11-27 16:22:31 +01001101 pr_info("Command-line override for hid:%s uid:%s\n",
Wan Zongshun2a0cb4e2016-04-01 09:06:00 -04001102 hid, uid);
1103 *devid = entry->devid;
1104 return 0;
1105 }
1106
1107 entry = kzalloc(sizeof(*entry), GFP_KERNEL);
1108 if (!entry)
1109 return -ENOMEM;
1110
1111 memcpy(entry->uid, uid, strlen(uid));
1112 memcpy(entry->hid, hid, strlen(hid));
1113 entry->devid = *devid;
1114 entry->cmd_line = cmd_line;
1115 entry->root_devid = (entry->devid & (~0x7));
1116
Joerg Roedel101fa032018-11-27 16:22:31 +01001117 pr_info("%s, add hid:%s, uid:%s, rdevid:%d\n",
Wan Zongshun2a0cb4e2016-04-01 09:06:00 -04001118 entry->cmd_line ? "cmd" : "ivrs",
1119 entry->hid, entry->uid, entry->root_devid);
1120
1121 list_add_tail(&entry->list, list);
1122 return 0;
1123}
1124
Joerg Roedel235dacb2013-04-09 17:53:14 +02001125static int __init add_early_maps(void)
1126{
1127 int i, ret;
1128
1129 for (i = 0; i < early_ioapic_map_size; ++i) {
1130 ret = add_special_device(IVHD_SPECIAL_IOAPIC,
1131 early_ioapic_map[i].id,
Joerg Roedelc50e3242014-09-09 15:59:37 +02001132 &early_ioapic_map[i].devid,
Joerg Roedel235dacb2013-04-09 17:53:14 +02001133 early_ioapic_map[i].cmd_line);
1134 if (ret)
1135 return ret;
1136 }
1137
1138 for (i = 0; i < early_hpet_map_size; ++i) {
1139 ret = add_special_device(IVHD_SPECIAL_HPET,
1140 early_hpet_map[i].id,
Joerg Roedelc50e3242014-09-09 15:59:37 +02001141 &early_hpet_map[i].devid,
Joerg Roedel235dacb2013-04-09 17:53:14 +02001142 early_hpet_map[i].cmd_line);
1143 if (ret)
1144 return ret;
1145 }
1146
Wan Zongshun2a0cb4e2016-04-01 09:06:00 -04001147 for (i = 0; i < early_acpihid_map_size; ++i) {
1148 ret = add_acpi_hid_device(early_acpihid_map[i].hid,
1149 early_acpihid_map[i].uid,
1150 &early_acpihid_map[i].devid,
1151 early_acpihid_map[i].cmd_line);
1152 if (ret)
1153 return ret;
1154 }
1155
Joerg Roedel235dacb2013-04-09 17:53:14 +02001156 return 0;
1157}
1158
Joerg Roedelb65233a2008-07-11 17:14:21 +02001159/*
Joerg Roedelb65233a2008-07-11 17:14:21 +02001160 * Takes a pointer to an AMD IOMMU entry in the ACPI table and
1161 * initializes the hardware and our data structures with it.
1162 */
Joerg Roedel6efed632012-06-14 15:52:58 +02001163static int __init init_iommu_from_acpi(struct amd_iommu *iommu,
Joerg Roedel5d0c8e42008-06-26 21:27:47 +02001164 struct ivhd_header *h)
1165{
1166 u8 *p = (u8 *)h;
1167 u8 *end = p, flags = 0;
Joerg Roedel0de66d52011-06-06 16:04:02 +02001168 u16 devid = 0, devid_start = 0, devid_to = 0;
1169 u32 dev_i, ext_flags = 0;
Joerg Roedel58a3bee2008-07-11 17:14:30 +02001170 bool alias = false;
Joerg Roedel5d0c8e42008-06-26 21:27:47 +02001171 struct ivhd_entry *e;
Suravee Suthikulpanitac7ccf62016-04-01 09:05:58 -04001172 u32 ivhd_size;
Joerg Roedel235dacb2013-04-09 17:53:14 +02001173 int ret;
1174
1175
1176 ret = add_early_maps();
1177 if (ret)
1178 return ret;
Joerg Roedel5d0c8e42008-06-26 21:27:47 +02001179
Kai-Heng Feng93d05152019-08-21 13:10:04 +08001180 amd_iommu_apply_ivrs_quirks();
1181
Joerg Roedel5d0c8e42008-06-26 21:27:47 +02001182 /*
Joerg Roedele9bf5192010-09-20 14:33:07 +02001183 * First save the recommended feature enable bits from ACPI
Joerg Roedel5d0c8e42008-06-26 21:27:47 +02001184 */
Joerg Roedele9bf5192010-09-20 14:33:07 +02001185 iommu->acpi_flags = h->flags;
Joerg Roedel5d0c8e42008-06-26 21:27:47 +02001186
1187 /*
1188 * Done. Now parse the device entries
1189 */
Suravee Suthikulpanitac7ccf62016-04-01 09:05:58 -04001190 ivhd_size = get_ivhd_header_size(h);
1191 if (!ivhd_size) {
Joerg Roedel101fa032018-11-27 16:22:31 +01001192 pr_err("Unsupported IVHD type %#x\n", h->type);
Suravee Suthikulpanitac7ccf62016-04-01 09:05:58 -04001193 return -EINVAL;
1194 }
1195
1196 p += ivhd_size;
1197
Joerg Roedel5d0c8e42008-06-26 21:27:47 +02001198 end += h->length;
1199
Joerg Roedel42a698f2009-05-20 15:41:28 +02001200
Joerg Roedel5d0c8e42008-06-26 21:27:47 +02001201 while (p < end) {
1202 e = (struct ivhd_entry *)p;
1203 switch (e->type) {
1204 case IVHD_DEV_ALL:
Joerg Roedel42a698f2009-05-20 15:41:28 +02001205
Joerg Roedel226e8892015-10-20 17:33:44 +02001206 DUMP_printk(" DEV_ALL\t\t\tflags: %02x\n", e->flags);
Joerg Roedel42a698f2009-05-20 15:41:28 +02001207
Joerg Roedel226e8892015-10-20 17:33:44 +02001208 for (dev_i = 0; dev_i <= amd_iommu_last_bdf; ++dev_i)
1209 set_dev_entry_from_acpi(iommu, dev_i, e->flags, 0);
Joerg Roedel5d0c8e42008-06-26 21:27:47 +02001210 break;
1211 case IVHD_DEV_SELECT:
Joerg Roedel42a698f2009-05-20 15:41:28 +02001212
1213 DUMP_printk(" DEV_SELECT\t\t\t devid: %02x:%02x.%x "
1214 "flags: %02x\n",
Shuah Khanc5081cd2013-02-27 17:07:19 -07001215 PCI_BUS_NUM(e->devid),
Joerg Roedel42a698f2009-05-20 15:41:28 +02001216 PCI_SLOT(e->devid),
1217 PCI_FUNC(e->devid),
1218 e->flags);
1219
Joerg Roedel5d0c8e42008-06-26 21:27:47 +02001220 devid = e->devid;
Joerg Roedel5ff47892008-07-14 20:11:18 +02001221 set_dev_entry_from_acpi(iommu, devid, e->flags, 0);
Joerg Roedel5d0c8e42008-06-26 21:27:47 +02001222 break;
1223 case IVHD_DEV_SELECT_RANGE_START:
Joerg Roedel42a698f2009-05-20 15:41:28 +02001224
1225 DUMP_printk(" DEV_SELECT_RANGE_START\t "
1226 "devid: %02x:%02x.%x flags: %02x\n",
Shuah Khanc5081cd2013-02-27 17:07:19 -07001227 PCI_BUS_NUM(e->devid),
Joerg Roedel42a698f2009-05-20 15:41:28 +02001228 PCI_SLOT(e->devid),
1229 PCI_FUNC(e->devid),
1230 e->flags);
1231
Joerg Roedel5d0c8e42008-06-26 21:27:47 +02001232 devid_start = e->devid;
1233 flags = e->flags;
1234 ext_flags = 0;
Joerg Roedel58a3bee2008-07-11 17:14:30 +02001235 alias = false;
Joerg Roedel5d0c8e42008-06-26 21:27:47 +02001236 break;
1237 case IVHD_DEV_ALIAS:
Joerg Roedel42a698f2009-05-20 15:41:28 +02001238
1239 DUMP_printk(" DEV_ALIAS\t\t\t devid: %02x:%02x.%x "
1240 "flags: %02x devid_to: %02x:%02x.%x\n",
Shuah Khanc5081cd2013-02-27 17:07:19 -07001241 PCI_BUS_NUM(e->devid),
Joerg Roedel42a698f2009-05-20 15:41:28 +02001242 PCI_SLOT(e->devid),
1243 PCI_FUNC(e->devid),
1244 e->flags,
Shuah Khanc5081cd2013-02-27 17:07:19 -07001245 PCI_BUS_NUM(e->ext >> 8),
Joerg Roedel42a698f2009-05-20 15:41:28 +02001246 PCI_SLOT(e->ext >> 8),
1247 PCI_FUNC(e->ext >> 8));
1248
Joerg Roedel5d0c8e42008-06-26 21:27:47 +02001249 devid = e->devid;
1250 devid_to = e->ext >> 8;
Joerg Roedel7a6a3a02009-07-02 12:23:23 +02001251 set_dev_entry_from_acpi(iommu, devid , e->flags, 0);
Neil Turton7455aab2009-05-14 14:08:11 +01001252 set_dev_entry_from_acpi(iommu, devid_to, e->flags, 0);
Joerg Roedel5d0c8e42008-06-26 21:27:47 +02001253 amd_iommu_alias_table[devid] = devid_to;
1254 break;
1255 case IVHD_DEV_ALIAS_RANGE:
Joerg Roedel42a698f2009-05-20 15:41:28 +02001256
1257 DUMP_printk(" DEV_ALIAS_RANGE\t\t "
1258 "devid: %02x:%02x.%x flags: %02x "
1259 "devid_to: %02x:%02x.%x\n",
Shuah Khanc5081cd2013-02-27 17:07:19 -07001260 PCI_BUS_NUM(e->devid),
Joerg Roedel42a698f2009-05-20 15:41:28 +02001261 PCI_SLOT(e->devid),
1262 PCI_FUNC(e->devid),
1263 e->flags,
Shuah Khanc5081cd2013-02-27 17:07:19 -07001264 PCI_BUS_NUM(e->ext >> 8),
Joerg Roedel42a698f2009-05-20 15:41:28 +02001265 PCI_SLOT(e->ext >> 8),
1266 PCI_FUNC(e->ext >> 8));
1267
Joerg Roedel5d0c8e42008-06-26 21:27:47 +02001268 devid_start = e->devid;
1269 flags = e->flags;
1270 devid_to = e->ext >> 8;
1271 ext_flags = 0;
Joerg Roedel58a3bee2008-07-11 17:14:30 +02001272 alias = true;
Joerg Roedel5d0c8e42008-06-26 21:27:47 +02001273 break;
1274 case IVHD_DEV_EXT_SELECT:
Joerg Roedel42a698f2009-05-20 15:41:28 +02001275
1276 DUMP_printk(" DEV_EXT_SELECT\t\t devid: %02x:%02x.%x "
1277 "flags: %02x ext: %08x\n",
Shuah Khanc5081cd2013-02-27 17:07:19 -07001278 PCI_BUS_NUM(e->devid),
Joerg Roedel42a698f2009-05-20 15:41:28 +02001279 PCI_SLOT(e->devid),
1280 PCI_FUNC(e->devid),
1281 e->flags, e->ext);
1282
Joerg Roedel5d0c8e42008-06-26 21:27:47 +02001283 devid = e->devid;
Joerg Roedel5ff47892008-07-14 20:11:18 +02001284 set_dev_entry_from_acpi(iommu, devid, e->flags,
1285 e->ext);
Joerg Roedel5d0c8e42008-06-26 21:27:47 +02001286 break;
1287 case IVHD_DEV_EXT_SELECT_RANGE:
Joerg Roedel42a698f2009-05-20 15:41:28 +02001288
1289 DUMP_printk(" DEV_EXT_SELECT_RANGE\t devid: "
1290 "%02x:%02x.%x flags: %02x ext: %08x\n",
Shuah Khanc5081cd2013-02-27 17:07:19 -07001291 PCI_BUS_NUM(e->devid),
Joerg Roedel42a698f2009-05-20 15:41:28 +02001292 PCI_SLOT(e->devid),
1293 PCI_FUNC(e->devid),
1294 e->flags, e->ext);
1295
Joerg Roedel5d0c8e42008-06-26 21:27:47 +02001296 devid_start = e->devid;
1297 flags = e->flags;
1298 ext_flags = e->ext;
Joerg Roedel58a3bee2008-07-11 17:14:30 +02001299 alias = false;
Joerg Roedel5d0c8e42008-06-26 21:27:47 +02001300 break;
1301 case IVHD_DEV_RANGE_END:
Joerg Roedel42a698f2009-05-20 15:41:28 +02001302
1303 DUMP_printk(" DEV_RANGE_END\t\t devid: %02x:%02x.%x\n",
Shuah Khanc5081cd2013-02-27 17:07:19 -07001304 PCI_BUS_NUM(e->devid),
Joerg Roedel42a698f2009-05-20 15:41:28 +02001305 PCI_SLOT(e->devid),
1306 PCI_FUNC(e->devid));
1307
Joerg Roedel5d0c8e42008-06-26 21:27:47 +02001308 devid = e->devid;
1309 for (dev_i = devid_start; dev_i <= devid; ++dev_i) {
Joerg Roedel7a6a3a02009-07-02 12:23:23 +02001310 if (alias) {
Joerg Roedel5d0c8e42008-06-26 21:27:47 +02001311 amd_iommu_alias_table[dev_i] = devid_to;
Joerg Roedel7a6a3a02009-07-02 12:23:23 +02001312 set_dev_entry_from_acpi(iommu,
1313 devid_to, flags, ext_flags);
1314 }
1315 set_dev_entry_from_acpi(iommu, dev_i,
1316 flags, ext_flags);
Joerg Roedel5d0c8e42008-06-26 21:27:47 +02001317 }
1318 break;
Joerg Roedel6efed632012-06-14 15:52:58 +02001319 case IVHD_DEV_SPECIAL: {
1320 u8 handle, type;
1321 const char *var;
1322 u16 devid;
1323 int ret;
1324
1325 handle = e->ext & 0xff;
1326 devid = (e->ext >> 8) & 0xffff;
1327 type = (e->ext >> 24) & 0xff;
1328
1329 if (type == IVHD_SPECIAL_IOAPIC)
1330 var = "IOAPIC";
1331 else if (type == IVHD_SPECIAL_HPET)
1332 var = "HPET";
1333 else
1334 var = "UNKNOWN";
1335
1336 DUMP_printk(" DEV_SPECIAL(%s[%d])\t\tdevid: %02x:%02x.%x\n",
1337 var, (int)handle,
Shuah Khanc5081cd2013-02-27 17:07:19 -07001338 PCI_BUS_NUM(devid),
Joerg Roedel6efed632012-06-14 15:52:58 +02001339 PCI_SLOT(devid),
1340 PCI_FUNC(devid));
1341
Joerg Roedelc50e3242014-09-09 15:59:37 +02001342 ret = add_special_device(type, handle, &devid, false);
Joerg Roedel6efed632012-06-14 15:52:58 +02001343 if (ret)
1344 return ret;
Joerg Roedelc50e3242014-09-09 15:59:37 +02001345
1346 /*
1347 * add_special_device might update the devid in case a
1348 * command-line override is present. So call
1349 * set_dev_entry_from_acpi after add_special_device.
1350 */
1351 set_dev_entry_from_acpi(iommu, devid, e->flags, 0);
1352
Joerg Roedel6efed632012-06-14 15:52:58 +02001353 break;
1354 }
Wan Zongshun2a0cb4e2016-04-01 09:06:00 -04001355 case IVHD_DEV_ACPI_HID: {
1356 u16 devid;
Alexander Monakove461b8c2020-05-11 10:23:52 +00001357 u8 hid[ACPIHID_HID_LEN];
1358 u8 uid[ACPIHID_UID_LEN];
Wan Zongshun2a0cb4e2016-04-01 09:06:00 -04001359 int ret;
1360
1361 if (h->type != 0x40) {
1362 pr_err(FW_BUG "Invalid IVHD device type %#x\n",
1363 e->type);
1364 break;
1365 }
1366
1367 memcpy(hid, (u8 *)(&e->ext), ACPIHID_HID_LEN - 1);
1368 hid[ACPIHID_HID_LEN - 1] = '\0';
1369
1370 if (!(*hid)) {
1371 pr_err(FW_BUG "Invalid HID.\n");
1372 break;
1373 }
1374
Alexander Monakove461b8c2020-05-11 10:23:52 +00001375 uid[0] = '\0';
Wan Zongshun2a0cb4e2016-04-01 09:06:00 -04001376 switch (e->uidf) {
1377 case UID_NOT_PRESENT:
1378
1379 if (e->uidl != 0)
1380 pr_warn(FW_BUG "Invalid UID length.\n");
1381
1382 break;
1383 case UID_IS_INTEGER:
1384
1385 sprintf(uid, "%d", e->uid);
1386
1387 break;
1388 case UID_IS_CHARACTER:
1389
Alexander Monakove461b8c2020-05-11 10:23:52 +00001390 memcpy(uid, &e->uid, e->uidl);
1391 uid[e->uidl] = '\0';
Wan Zongshun2a0cb4e2016-04-01 09:06:00 -04001392
1393 break;
1394 default:
1395 break;
1396 }
1397
Nicolas Iooss6082ee72016-06-26 10:33:29 +02001398 devid = e->devid;
Wan Zongshun2a0cb4e2016-04-01 09:06:00 -04001399 DUMP_printk(" DEV_ACPI_HID(%s[%s])\t\tdevid: %02x:%02x.%x\n",
1400 hid, uid,
1401 PCI_BUS_NUM(devid),
1402 PCI_SLOT(devid),
1403 PCI_FUNC(devid));
1404
Wan Zongshun2a0cb4e2016-04-01 09:06:00 -04001405 flags = e->flags;
1406
1407 ret = add_acpi_hid_device(hid, uid, &devid, false);
1408 if (ret)
1409 return ret;
1410
1411 /*
1412 * add_special_device might update the devid in case a
1413 * command-line override is present. So call
1414 * set_dev_entry_from_acpi after add_special_device.
1415 */
1416 set_dev_entry_from_acpi(iommu, devid, e->flags, 0);
1417
1418 break;
1419 }
Joerg Roedel5d0c8e42008-06-26 21:27:47 +02001420 default:
1421 break;
1422 }
1423
Joerg Roedelb514e552008-09-17 17:14:27 +02001424 p += ivhd_entry_length(p);
Joerg Roedel5d0c8e42008-06-26 21:27:47 +02001425 }
Joerg Roedel6efed632012-06-14 15:52:58 +02001426
1427 return 0;
Joerg Roedel5d0c8e42008-06-26 21:27:47 +02001428}
1429
Joerg Roedele47d4022008-06-26 21:27:48 +02001430static void __init free_iommu_one(struct amd_iommu *iommu)
1431{
Suravee Suthikulpanitc69d89a2020-09-23 12:13:45 +00001432 free_cwwb_sem(iommu);
Joerg Roedele47d4022008-06-26 21:27:48 +02001433 free_command_buffer(iommu);
Joerg Roedel335503e2008-09-05 14:29:07 +02001434 free_event_buffer(iommu);
Joerg Roedel1a29ac02011-11-10 15:41:40 +01001435 free_ppr_log(iommu);
Suravee Suthikulpanit8bda0cf2016-08-23 13:52:36 -05001436 free_ga_log(iommu);
Joerg Roedele47d4022008-06-26 21:27:48 +02001437 iommu_unmap_mmio_space(iommu);
1438}
1439
1440static void __init free_iommu_all(void)
1441{
1442 struct amd_iommu *iommu, *next;
1443
Joerg Roedel3bd22172009-05-04 15:06:20 +02001444 for_each_iommu_safe(iommu, next) {
Joerg Roedele47d4022008-06-26 21:27:48 +02001445 list_del(&iommu->list);
1446 free_iommu_one(iommu);
1447 kfree(iommu);
1448 }
1449}
1450
Joerg Roedelb65233a2008-07-11 17:14:21 +02001451/*
Suravee Suthikulpanit318fe782013-01-24 13:17:53 -06001452 * Family15h Model 10h-1fh erratum 746 (IOMMU Logging May Stall Translations)
1453 * Workaround:
1454 * BIOS should disable L2B micellaneous clock gating by setting
1455 * L2_L2B_CK_GATE_CONTROL[CKGateL2BMiscDisable](D0F2xF4_x90[2]) = 1b
1456 */
Nikola Pajkovskye2f1a3b2013-02-26 16:12:05 +01001457static void amd_iommu_erratum_746_workaround(struct amd_iommu *iommu)
Suravee Suthikulpanit318fe782013-01-24 13:17:53 -06001458{
1459 u32 value;
1460
1461 if ((boot_cpu_data.x86 != 0x15) ||
1462 (boot_cpu_data.x86_model < 0x10) ||
1463 (boot_cpu_data.x86_model > 0x1f))
1464 return;
1465
1466 pci_write_config_dword(iommu->dev, 0xf0, 0x90);
1467 pci_read_config_dword(iommu->dev, 0xf4, &value);
1468
1469 if (value & BIT(2))
1470 return;
1471
1472 /* Select NB indirect register 0x90 and enable writing */
1473 pci_write_config_dword(iommu->dev, 0xf0, 0x90 | (1 << 8));
1474
1475 pci_write_config_dword(iommu->dev, 0xf4, value | 0x4);
Bjorn Helgaas5f226da2019-02-08 16:05:53 -06001476 pci_info(iommu->dev, "Applying erratum 746 workaround\n");
Suravee Suthikulpanit318fe782013-01-24 13:17:53 -06001477
1478 /* Clear the enable writing bit */
1479 pci_write_config_dword(iommu->dev, 0xf0, 0x90);
1480}
1481
1482/*
Jay Cornwall358875f2016-02-10 15:48:01 -06001483 * Family15h Model 30h-3fh (IOMMU Mishandles ATS Write Permission)
1484 * Workaround:
1485 * BIOS should enable ATS write permission check by setting
1486 * L2_DEBUG_3[AtsIgnoreIWDis](D0F2xF4_x47[0]) = 1b
1487 */
1488static void amd_iommu_ats_write_check_workaround(struct amd_iommu *iommu)
1489{
1490 u32 value;
1491
1492 if ((boot_cpu_data.x86 != 0x15) ||
1493 (boot_cpu_data.x86_model < 0x30) ||
1494 (boot_cpu_data.x86_model > 0x3f))
1495 return;
1496
1497 /* Test L2_DEBUG_3[AtsIgnoreIWDis] == 1 */
1498 value = iommu_read_l2(iommu, 0x47);
1499
1500 if (value & BIT(0))
1501 return;
1502
1503 /* Set L2_DEBUG_3[AtsIgnoreIWDis] = 1 */
1504 iommu_write_l2(iommu, 0x47, value | BIT(0));
1505
Bjorn Helgaas5f226da2019-02-08 16:05:53 -06001506 pci_info(iommu->dev, "Applying ATS write check workaround\n");
Jay Cornwall358875f2016-02-10 15:48:01 -06001507}
1508
1509/*
Joerg Roedelb65233a2008-07-11 17:14:21 +02001510 * This function clues the initialization function for one IOMMU
1511 * together and also allocates the command buffer and programs the
1512 * hardware. It does NOT enable the IOMMU. This is done afterwards.
1513 */
Joerg Roedele47d4022008-06-26 21:27:48 +02001514static int __init init_iommu_one(struct amd_iommu *iommu, struct ivhd_header *h)
1515{
Joerg Roedel6efed632012-06-14 15:52:58 +02001516 int ret;
1517
Scott Wood27790392018-01-21 03:28:54 -06001518 raw_spin_lock_init(&iommu->lock);
Suravee Suthikulpanitc69d89a2020-09-23 12:13:45 +00001519 iommu->cmd_sem_val = 0;
Joerg Roedelbb527772009-11-20 14:31:51 +01001520
1521 /* Add IOMMU to internal data structures */
Joerg Roedele47d4022008-06-26 21:27:48 +02001522 list_add_tail(&iommu->list, &amd_iommu_list);
Suravee Suthikulpanit6b9376e2017-02-24 02:48:17 -06001523 iommu->index = amd_iommus_present++;
Joerg Roedelbb527772009-11-20 14:31:51 +01001524
1525 if (unlikely(iommu->index >= MAX_IOMMUS)) {
Joerg Roedel101fa032018-11-27 16:22:31 +01001526 WARN(1, "System has more IOMMUs than supported by this driver\n");
Joerg Roedelbb527772009-11-20 14:31:51 +01001527 return -ENOSYS;
1528 }
1529
1530 /* Index is fine - add IOMMU to the array */
1531 amd_iommus[iommu->index] = iommu;
Joerg Roedele47d4022008-06-26 21:27:48 +02001532
1533 /*
1534 * Copy data from ACPI table entry to the iommu struct
1535 */
Joerg Roedel23c742d2012-06-12 11:47:34 +02001536 iommu->devid = h->devid;
Joerg Roedele47d4022008-06-26 21:27:48 +02001537 iommu->cap_ptr = h->cap_ptr;
Joerg Roedelee893c22008-09-08 14:48:04 +02001538 iommu->pci_seg = h->pci_seg;
Joerg Roedele47d4022008-06-26 21:27:48 +02001539 iommu->mmio_phys = h->mmio_phys;
Steven L Kinney30861dd2013-06-05 16:11:48 -05001540
Suravee Suthikulpanit7d7d38a2016-04-01 09:05:57 -04001541 switch (h->type) {
1542 case 0x10:
1543 /* Check if IVHD EFR contains proper max banks/counters */
1544 if ((h->efr_attr != 0) &&
1545 ((h->efr_attr & (0xF << 13)) != 0) &&
1546 ((h->efr_attr & (0x3F << 17)) != 0))
1547 iommu->mmio_phys_end = MMIO_REG_END_OFFSET;
1548 else
1549 iommu->mmio_phys_end = MMIO_CNTR_CONF_OFFSET;
Suravee Suthikulpanite52d58d2020-09-03 09:38:22 +00001550
1551 /*
1552 * Note: GA (128-bit IRTE) mode requires cmpxchg16b supports.
1553 * GAM also requires GA mode. Therefore, we need to
1554 * check cmpxchg16b support before enabling it.
1555 */
1556 if (!boot_cpu_has(X86_FEATURE_CX16) ||
1557 ((h->efr_attr & (0x1 << IOMMU_FEAT_GASUP_SHIFT)) == 0))
Suravee Suthikulpanit3928aa32016-08-23 13:52:32 -05001558 amd_iommu_guest_ir = AMD_IOMMU_GUEST_IR_LEGACY;
Suravee Suthikulpanit7d7d38a2016-04-01 09:05:57 -04001559 break;
1560 case 0x11:
1561 case 0x40:
1562 if (h->efr_reg & (1 << 9))
1563 iommu->mmio_phys_end = MMIO_REG_END_OFFSET;
1564 else
1565 iommu->mmio_phys_end = MMIO_CNTR_CONF_OFFSET;
Suravee Suthikulpanite52d58d2020-09-03 09:38:22 +00001566
1567 /*
1568 * Note: GA (128-bit IRTE) mode requires cmpxchg16b supports.
1569 * XT, GAM also requires GA mode. Therefore, we need to
1570 * check cmpxchg16b support before enabling them.
1571 */
1572 if (!boot_cpu_has(X86_FEATURE_CX16) ||
1573 ((h->efr_reg & (0x1 << IOMMU_EFR_GASUP_SHIFT)) == 0)) {
Suravee Suthikulpanit3928aa32016-08-23 13:52:32 -05001574 amd_iommu_guest_ir = AMD_IOMMU_GUEST_IR_LEGACY;
Suravee Suthikulpanite52d58d2020-09-03 09:38:22 +00001575 break;
1576 }
1577
David Woodhoused1adcfb2020-11-11 12:09:01 +00001578 if (h->efr_reg & BIT(IOMMU_EFR_XTSUP_SHIFT))
Suravee Suthikulpanit81307142019-11-20 07:55:48 -06001579 amd_iommu_xt_mode = IRQ_REMAP_X2APIC_MODE;
Suravee Suthikulpanit7d7d38a2016-04-01 09:05:57 -04001580 break;
1581 default:
1582 return -EINVAL;
Steven L Kinney30861dd2013-06-05 16:11:48 -05001583 }
1584
1585 iommu->mmio_base = iommu_map_mmio_space(iommu->mmio_phys,
1586 iommu->mmio_phys_end);
Joerg Roedele47d4022008-06-26 21:27:48 +02001587 if (!iommu->mmio_base)
1588 return -ENOMEM;
1589
Suravee Suthikulpanitc69d89a2020-09-23 12:13:45 +00001590 if (alloc_cwwb_sem(iommu))
1591 return -ENOMEM;
1592
Joerg Roedelf2c2db52015-10-20 17:33:42 +02001593 if (alloc_command_buffer(iommu))
Joerg Roedele47d4022008-06-26 21:27:48 +02001594 return -ENOMEM;
1595
Joerg Roedelf2c2db52015-10-20 17:33:42 +02001596 if (alloc_event_buffer(iommu))
Joerg Roedel335503e2008-09-05 14:29:07 +02001597 return -ENOMEM;
1598
Joerg Roedela80dc3e2008-09-11 16:51:41 +02001599 iommu->int_enabled = false;
1600
Baoquan He4c232a72017-08-09 16:33:33 +08001601 init_translation_status(iommu);
Baoquan He3ac3e5ee2017-08-09 16:33:38 +08001602 if (translation_pre_enabled(iommu) && !is_kdump_kernel()) {
1603 iommu_disable(iommu);
1604 clear_translation_pre_enabled(iommu);
1605 pr_warn("Translation was enabled for IOMMU:%d but we are not in kdump mode\n",
1606 iommu->index);
1607 }
1608 if (amd_iommu_pre_enabled)
1609 amd_iommu_pre_enabled = translation_pre_enabled(iommu);
Baoquan He4c232a72017-08-09 16:33:33 +08001610
Joerg Roedel6efed632012-06-14 15:52:58 +02001611 ret = init_iommu_from_acpi(iommu, h);
1612 if (ret)
1613 return ret;
Joerg Roedelf6fec002012-06-21 16:51:25 +02001614
David Woodhouse2df985f2020-11-11 14:43:20 +00001615 if (amd_iommu_irq_remap) {
1616 ret = amd_iommu_create_irq_domain(iommu);
1617 if (ret)
1618 return ret;
1619 }
Jiang Liu7c71d302015-04-13 14:11:33 +08001620
Joerg Roedelf6fec002012-06-21 16:51:25 +02001621 /*
1622 * Make sure IOMMU is not considered to translate itself. The IVRS
1623 * table tells us so, but this is a lie!
1624 */
1625 amd_iommu_rlookup_table[iommu->devid] = NULL;
1626
Joerg Roedel23c742d2012-06-12 11:47:34 +02001627 return 0;
Joerg Roedele47d4022008-06-26 21:27:48 +02001628}
1629
Suravee Suthikulpanit8c7142f2016-04-01 09:05:59 -04001630/**
1631 * get_highest_supported_ivhd_type - Look up the appropriate IVHD type
Krzysztof Kozlowski06ce8a62c2020-07-28 19:08:57 +02001632 * @ivrs: Pointer to the IVRS header
Suravee Suthikulpanit8c7142f2016-04-01 09:05:59 -04001633 *
1634 * This function search through all IVDB of the maximum supported IVHD
1635 */
1636static u8 get_highest_supported_ivhd_type(struct acpi_table_header *ivrs)
1637{
1638 u8 *base = (u8 *)ivrs;
1639 struct ivhd_header *ivhd = (struct ivhd_header *)
1640 (base + IVRS_HEADER_LENGTH);
1641 u8 last_type = ivhd->type;
1642 u16 devid = ivhd->devid;
1643
1644 while (((u8 *)ivhd - base < ivrs->length) &&
1645 (ivhd->type <= ACPI_IVHD_TYPE_MAX_SUPPORTED)) {
1646 u8 *p = (u8 *) ivhd;
1647
1648 if (ivhd->devid == devid)
1649 last_type = ivhd->type;
1650 ivhd = (struct ivhd_header *)(p + ivhd->length);
1651 }
1652
1653 return last_type;
1654}
1655
Joerg Roedelb65233a2008-07-11 17:14:21 +02001656/*
1657 * Iterates over all IOMMU entries in the ACPI table, allocates the
1658 * IOMMU structure and initializes it with init_iommu_one()
1659 */
Joerg Roedele47d4022008-06-26 21:27:48 +02001660static int __init init_iommu_all(struct acpi_table_header *table)
1661{
1662 u8 *p = (u8 *)table, *end = (u8 *)table;
1663 struct ivhd_header *h;
1664 struct amd_iommu *iommu;
1665 int ret;
1666
Joerg Roedele47d4022008-06-26 21:27:48 +02001667 end += table->length;
1668 p += IVRS_HEADER_LENGTH;
1669
1670 while (p < end) {
1671 h = (struct ivhd_header *)p;
Suravee Suthikulpanit8c7142f2016-04-01 09:05:59 -04001672 if (*p == amd_iommu_target_ivhd_type) {
Joerg Roedel9c720412009-05-20 13:53:57 +02001673
Joerg Roedelae908c22009-09-01 16:52:16 +02001674 DUMP_printk("device: %02x:%02x.%01x cap: %04x "
Joerg Roedel9c720412009-05-20 13:53:57 +02001675 "seg: %d flags: %01x info %04x\n",
Shuah Khanc5081cd2013-02-27 17:07:19 -07001676 PCI_BUS_NUM(h->devid), PCI_SLOT(h->devid),
Joerg Roedel9c720412009-05-20 13:53:57 +02001677 PCI_FUNC(h->devid), h->cap_ptr,
1678 h->pci_seg, h->flags, h->info);
1679 DUMP_printk(" mmio-addr: %016llx\n",
1680 h->mmio_phys);
1681
Joerg Roedele47d4022008-06-26 21:27:48 +02001682 iommu = kzalloc(sizeof(struct amd_iommu), GFP_KERNEL);
Joerg Roedel02f3b3f2012-06-11 17:45:25 +02001683 if (iommu == NULL)
1684 return -ENOMEM;
Joerg Roedel3551a702010-03-01 13:52:19 +01001685
Joerg Roedele47d4022008-06-26 21:27:48 +02001686 ret = init_iommu_one(iommu, h);
Joerg Roedel02f3b3f2012-06-11 17:45:25 +02001687 if (ret)
1688 return ret;
Joerg Roedele47d4022008-06-26 21:27:48 +02001689 }
1690 p += h->length;
1691
1692 }
1693 WARN_ON(p != end);
1694
1695 return 0;
1696}
1697
Suravee Suthikulpanit1650dfd2017-02-24 02:48:19 -06001698static int iommu_pc_get_set_reg(struct amd_iommu *iommu, u8 bank, u8 cntr,
1699 u8 fxn, u64 *value, bool is_write);
Steven L Kinney30861dd2013-06-05 16:11:48 -05001700
1701static void init_iommu_perf_ctr(struct amd_iommu *iommu)
1702{
Bjorn Helgaas5f226da2019-02-08 16:05:53 -06001703 struct pci_dev *pdev = iommu->dev;
Shuah Khan8c17bbf2020-01-23 15:32:14 -07001704 u64 val = 0xabcd, val2 = 0, save_reg = 0;
Steven L Kinney30861dd2013-06-05 16:11:48 -05001705
1706 if (!iommu_feature(iommu, FEATURE_PC))
1707 return;
1708
1709 amd_iommu_pc_present = true;
1710
Shuah Khan8c17bbf2020-01-23 15:32:14 -07001711 /* save the value to restore, if writable */
1712 if (iommu_pc_get_set_reg(iommu, 0, 0, 0, &save_reg, false))
1713 goto pc_false;
1714
Steven L Kinney30861dd2013-06-05 16:11:48 -05001715 /* Check if the performance counters can be written to */
Suravee Suthikulpanit1650dfd2017-02-24 02:48:19 -06001716 if ((iommu_pc_get_set_reg(iommu, 0, 0, 0, &val, true)) ||
1717 (iommu_pc_get_set_reg(iommu, 0, 0, 0, &val2, false)) ||
Shuah Khan8c17bbf2020-01-23 15:32:14 -07001718 (val != val2))
1719 goto pc_false;
1720
1721 /* restore */
1722 if (iommu_pc_get_set_reg(iommu, 0, 0, 0, &save_reg, true))
1723 goto pc_false;
Steven L Kinney30861dd2013-06-05 16:11:48 -05001724
Bjorn Helgaas5f226da2019-02-08 16:05:53 -06001725 pci_info(pdev, "IOMMU performance counters supported\n");
Steven L Kinney30861dd2013-06-05 16:11:48 -05001726
1727 val = readl(iommu->mmio_base + MMIO_CNTR_CONF_OFFSET);
1728 iommu->max_banks = (u8) ((val >> 12) & 0x3f);
1729 iommu->max_counters = (u8) ((val >> 7) & 0xf);
Shuah Khan8c17bbf2020-01-23 15:32:14 -07001730
1731 return;
1732
1733pc_false:
1734 pci_err(pdev, "Unable to read/write to IOMMU perf counter.\n");
1735 amd_iommu_pc_present = false;
1736 return;
Steven L Kinney30861dd2013-06-05 16:11:48 -05001737}
1738
Alex Williamson066f2e92014-06-12 16:12:37 -06001739static ssize_t amd_iommu_show_cap(struct device *dev,
1740 struct device_attribute *attr,
1741 char *buf)
1742{
Joerg Roedelb7a42b92017-02-28 13:57:18 +01001743 struct amd_iommu *iommu = dev_to_amd_iommu(dev);
Alex Williamson066f2e92014-06-12 16:12:37 -06001744 return sprintf(buf, "%x\n", iommu->cap);
1745}
1746static DEVICE_ATTR(cap, S_IRUGO, amd_iommu_show_cap, NULL);
1747
1748static ssize_t amd_iommu_show_features(struct device *dev,
1749 struct device_attribute *attr,
1750 char *buf)
1751{
Joerg Roedelb7a42b92017-02-28 13:57:18 +01001752 struct amd_iommu *iommu = dev_to_amd_iommu(dev);
Alex Williamson066f2e92014-06-12 16:12:37 -06001753 return sprintf(buf, "%llx\n", iommu->features);
1754}
1755static DEVICE_ATTR(features, S_IRUGO, amd_iommu_show_features, NULL);
1756
1757static struct attribute *amd_iommu_attrs[] = {
1758 &dev_attr_cap.attr,
1759 &dev_attr_features.attr,
1760 NULL,
1761};
1762
1763static struct attribute_group amd_iommu_group = {
1764 .name = "amd-iommu",
1765 .attrs = amd_iommu_attrs,
1766};
1767
1768static const struct attribute_group *amd_iommu_groups[] = {
1769 &amd_iommu_group,
1770 NULL,
1771};
Steven L Kinney30861dd2013-06-05 16:11:48 -05001772
Joerg Roedel24d2c522018-10-05 12:32:46 +02001773static int __init iommu_init_pci(struct amd_iommu *iommu)
Joerg Roedel23c742d2012-06-12 11:47:34 +02001774{
1775 int cap_ptr = iommu->cap_ptr;
Suravee Suthikulpanit8bda0cf2016-08-23 13:52:36 -05001776 int ret;
Joerg Roedel23c742d2012-06-12 11:47:34 +02001777
Sinan Kayad5bf0f42017-12-19 00:37:47 -05001778 iommu->dev = pci_get_domain_bus_and_slot(0, PCI_BUS_NUM(iommu->devid),
1779 iommu->devid & 0xff);
Joerg Roedel23c742d2012-06-12 11:47:34 +02001780 if (!iommu->dev)
1781 return -ENODEV;
1782
Jiang Liucbbc00b2015-10-09 22:07:31 +08001783 /* Prevent binding other PCI device drivers to IOMMU devices */
1784 iommu->dev->match_driver = false;
1785
Joerg Roedel23c742d2012-06-12 11:47:34 +02001786 pci_read_config_dword(iommu->dev, cap_ptr + MMIO_CAP_HDR_OFFSET,
1787 &iommu->cap);
Joerg Roedel23c742d2012-06-12 11:47:34 +02001788
Joerg Roedel23c742d2012-06-12 11:47:34 +02001789 if (!(iommu->cap & (1 << IOMMU_CAP_IOTLB)))
1790 amd_iommu_iotlb_sup = false;
1791
1792 /* read extended feature bits */
Adrian Huang62dcee72020-01-09 11:02:50 +08001793 iommu->features = readq(iommu->mmio_base + MMIO_EXT_FEATURES);
Joerg Roedel23c742d2012-06-12 11:47:34 +02001794
1795 if (iommu_feature(iommu, FEATURE_GT)) {
1796 int glxval;
Suravee Suthikulpanita919a012014-03-05 18:54:18 -06001797 u32 max_pasid;
1798 u64 pasmax;
Joerg Roedel23c742d2012-06-12 11:47:34 +02001799
Suravee Suthikulpanita919a012014-03-05 18:54:18 -06001800 pasmax = iommu->features & FEATURE_PASID_MASK;
1801 pasmax >>= FEATURE_PASID_SHIFT;
1802 max_pasid = (1 << (pasmax + 1)) - 1;
Joerg Roedel23c742d2012-06-12 11:47:34 +02001803
Suravee Suthikulpanita919a012014-03-05 18:54:18 -06001804 amd_iommu_max_pasid = min(amd_iommu_max_pasid, max_pasid);
1805
1806 BUG_ON(amd_iommu_max_pasid & ~PASID_MASK);
Joerg Roedel23c742d2012-06-12 11:47:34 +02001807
1808 glxval = iommu->features & FEATURE_GLXVAL_MASK;
1809 glxval >>= FEATURE_GLXVAL_SHIFT;
1810
1811 if (amd_iommu_max_glx_val == -1)
1812 amd_iommu_max_glx_val = glxval;
1813 else
1814 amd_iommu_max_glx_val = min(amd_iommu_max_glx_val, glxval);
1815 }
1816
1817 if (iommu_feature(iommu, FEATURE_GT) &&
1818 iommu_feature(iommu, FEATURE_PPR)) {
1819 iommu->is_iommu_v2 = true;
1820 amd_iommu_v2_present = true;
1821 }
1822
Joerg Roedelf2c2db52015-10-20 17:33:42 +02001823 if (iommu_feature(iommu, FEATURE_PPR) && alloc_ppr_log(iommu))
1824 return -ENOMEM;
Joerg Roedel23c742d2012-06-12 11:47:34 +02001825
Suravee Suthikulpanit8bda0cf2016-08-23 13:52:36 -05001826 ret = iommu_init_ga(iommu);
1827 if (ret)
1828 return ret;
Suravee Suthikulpanit3928aa32016-08-23 13:52:32 -05001829
Joerg Roedel23c742d2012-06-12 11:47:34 +02001830 if (iommu->cap & (1UL << IOMMU_CAP_NPCACHE))
1831 amd_iommu_np_cache = true;
1832
Steven L Kinney30861dd2013-06-05 16:11:48 -05001833 init_iommu_perf_ctr(iommu);
1834
Joerg Roedel23c742d2012-06-12 11:47:34 +02001835 if (is_rd890_iommu(iommu->dev)) {
1836 int i, j;
1837
Sinan Kayad5bf0f42017-12-19 00:37:47 -05001838 iommu->root_pdev =
1839 pci_get_domain_bus_and_slot(0, iommu->dev->bus->number,
1840 PCI_DEVFN(0, 0));
Joerg Roedel23c742d2012-06-12 11:47:34 +02001841
1842 /*
1843 * Some rd890 systems may not be fully reconfigured by the
1844 * BIOS, so it's necessary for us to store this information so
1845 * it can be reprogrammed on resume
1846 */
1847 pci_read_config_dword(iommu->dev, iommu->cap_ptr + 4,
1848 &iommu->stored_addr_lo);
1849 pci_read_config_dword(iommu->dev, iommu->cap_ptr + 8,
1850 &iommu->stored_addr_hi);
1851
1852 /* Low bit locks writes to configuration space */
1853 iommu->stored_addr_lo &= ~1;
1854
1855 for (i = 0; i < 6; i++)
1856 for (j = 0; j < 0x12; j++)
1857 iommu->stored_l1[i][j] = iommu_read_l1(iommu, i, j);
1858
1859 for (i = 0; i < 0x83; i++)
1860 iommu->stored_l2[i] = iommu_read_l2(iommu, i);
1861 }
1862
Suravee Suthikulpanit318fe782013-01-24 13:17:53 -06001863 amd_iommu_erratum_746_workaround(iommu);
Jay Cornwall358875f2016-02-10 15:48:01 -06001864 amd_iommu_ats_write_check_workaround(iommu);
Suravee Suthikulpanit318fe782013-01-24 13:17:53 -06001865
Joerg Roedel39ab9552017-02-01 16:56:46 +01001866 iommu_device_sysfs_add(&iommu->iommu, &iommu->dev->dev,
1867 amd_iommu_groups, "ivhd%d", iommu->index);
Joerg Roedelb0119e82017-02-01 13:23:08 +01001868 iommu_device_set_ops(&iommu->iommu, &amd_iommu_ops);
1869 iommu_device_register(&iommu->iommu);
Alex Williamson066f2e92014-06-12 16:12:37 -06001870
Joerg Roedel23c742d2012-06-12 11:47:34 +02001871 return pci_enable_device(iommu->dev);
1872}
1873
Joerg Roedel4d121c32012-06-14 12:21:55 +02001874static void print_iommu_info(void)
1875{
1876 static const char * const feat_str[] = {
1877 "PreF", "PPR", "X2APIC", "NX", "GT", "[5]",
1878 "IA", "GA", "HE", "PC"
1879 };
1880 struct amd_iommu *iommu;
1881
1882 for_each_iommu(iommu) {
Bjorn Helgaas5f226da2019-02-08 16:05:53 -06001883 struct pci_dev *pdev = iommu->dev;
Joerg Roedel4d121c32012-06-14 12:21:55 +02001884 int i;
1885
Bjorn Helgaas5f226da2019-02-08 16:05:53 -06001886 pci_info(pdev, "Found IOMMU cap 0x%hx\n", iommu->cap_ptr);
Joerg Roedel4d121c32012-06-14 12:21:55 +02001887
1888 if (iommu->cap & (1 << IOMMU_CAP_EFR)) {
Paul Menzel9a295ff2020-06-17 00:04:20 +02001889 pci_info(pdev, "Extended features (%#llx):",
Bjorn Helgaas5f226da2019-02-08 16:05:53 -06001890 iommu->features);
Joerg Roedel2bd5ed02012-08-10 11:34:08 +02001891 for (i = 0; i < ARRAY_SIZE(feat_str); ++i) {
Joerg Roedel4d121c32012-06-14 12:21:55 +02001892 if (iommu_feature(iommu, (1ULL << i)))
1893 pr_cont(" %s", feat_str[i]);
1894 }
Suravee Suthikulpanit3928aa32016-08-23 13:52:32 -05001895
1896 if (iommu->features & FEATURE_GAM_VAPIC)
1897 pr_cont(" GA_vAPIC");
1898
Steven L Kinney30861dd2013-06-05 16:11:48 -05001899 pr_cont("\n");
Borislav Petkov500c25e2012-09-28 16:22:26 +02001900 }
Joerg Roedel4d121c32012-06-14 12:21:55 +02001901 }
Suravee Suthikulpanit3928aa32016-08-23 13:52:32 -05001902 if (irq_remapping_enabled) {
Joerg Roedel101fa032018-11-27 16:22:31 +01001903 pr_info("Interrupt remapping enabled\n");
Suravee Suthikulpanit3928aa32016-08-23 13:52:32 -05001904 if (AMD_IOMMU_GUEST_IR_VAPIC(amd_iommu_guest_ir))
Joerg Roedel101fa032018-11-27 16:22:31 +01001905 pr_info("Virtual APIC enabled\n");
Suravee Suthikulpanit90fcffd2018-06-27 10:31:22 -05001906 if (amd_iommu_xt_mode == IRQ_REMAP_X2APIC_MODE)
Joerg Roedel101fa032018-11-27 16:22:31 +01001907 pr_info("X2APIC enabled\n");
Suravee Suthikulpanit3928aa32016-08-23 13:52:32 -05001908 }
Joerg Roedel4d121c32012-06-14 12:21:55 +02001909}
1910
Joerg Roedel2c0ae172012-06-12 15:59:30 +02001911static int __init amd_iommu_init_pci(void)
Joerg Roedel23c742d2012-06-12 11:47:34 +02001912{
1913 struct amd_iommu *iommu;
1914 int ret = 0;
1915
1916 for_each_iommu(iommu) {
1917 ret = iommu_init_pci(iommu);
1918 if (ret)
1919 break;
Suravee Suthikulpanit54ce12e2020-09-23 12:13:47 +00001920
1921 /* Need to setup range after PCI init */
1922 iommu_set_cwwb_range(iommu);
Joerg Roedel23c742d2012-06-12 11:47:34 +02001923 }
1924
Joerg Roedel522e5cb72016-07-01 16:42:55 +02001925 /*
1926 * Order is important here to make sure any unity map requirements are
1927 * fulfilled. The unity mappings are created and written to the device
1928 * table during the amd_iommu_init_api() call.
1929 *
1930 * After that we call init_device_table_dma() to make sure any
1931 * uninitialized DTE will block DMA, and in the end we flush the caches
1932 * of all IOMMUs to make sure the changes to the device table are
1933 * active.
1934 */
1935 ret = amd_iommu_init_api();
1936
Joerg Roedelaafd8ba2015-05-28 18:41:39 +02001937 init_device_table_dma();
Joerg Roedel23c742d2012-06-12 11:47:34 +02001938
Joerg Roedelaafd8ba2015-05-28 18:41:39 +02001939 for_each_iommu(iommu)
1940 iommu_flush_all_caches(iommu);
1941
Joerg Roedel3a18404c2015-05-28 18:41:45 +02001942 if (!ret)
1943 print_iommu_info();
Joerg Roedel4d121c32012-06-14 12:21:55 +02001944
Joerg Roedel23c742d2012-06-12 11:47:34 +02001945 return ret;
1946}
1947
Joerg Roedelb65233a2008-07-11 17:14:21 +02001948/****************************************************************************
1949 *
Joerg Roedela80dc3e2008-09-11 16:51:41 +02001950 * The following functions initialize the MSI interrupts for all IOMMUs
Frank Arnolddf805ab2012-08-27 19:21:04 +02001951 * in the system. It's a bit challenging because there could be multiple
Joerg Roedela80dc3e2008-09-11 16:51:41 +02001952 * IOMMUs per PCI BDF but we can call pci_enable_msi(x) only once per
1953 * pci_dev.
1954 *
1955 ****************************************************************************/
1956
Joerg Roedel9f800de2009-11-23 12:45:25 +01001957static int iommu_setup_msi(struct amd_iommu *iommu)
Joerg Roedela80dc3e2008-09-11 16:51:41 +02001958{
1959 int r;
Joerg Roedela80dc3e2008-09-11 16:51:41 +02001960
Joerg Roedel9ddd5922012-03-15 16:29:47 +01001961 r = pci_enable_msi(iommu->dev);
1962 if (r)
1963 return r;
Joerg Roedela80dc3e2008-09-11 16:51:41 +02001964
Joerg Roedel72fe00f2011-05-10 10:50:42 +02001965 r = request_threaded_irq(iommu->dev->irq,
1966 amd_iommu_int_handler,
1967 amd_iommu_int_thread,
1968 0, "AMD-Vi",
Suravee Suthikulpanit3f398bc2013-04-22 16:32:34 -05001969 iommu);
Joerg Roedela80dc3e2008-09-11 16:51:41 +02001970
1971 if (r) {
1972 pci_disable_msi(iommu->dev);
Joerg Roedel9ddd5922012-03-15 16:29:47 +01001973 return r;
Joerg Roedela80dc3e2008-09-11 16:51:41 +02001974 }
1975
1976 return 0;
1977}
1978
Thomas Gleixnerb5c37862020-10-24 22:35:14 +01001979union intcapxt {
1980 u64 capxt;
David Woodhouse2fb6acf2020-11-11 14:43:21 +00001981 struct {
1982 u64 reserved_0 : 2,
1983 dest_mode_logical : 1,
1984 reserved_1 : 5,
1985 destid_0_23 : 24,
1986 vector : 8,
1987 reserved_2 : 16,
1988 destid_24_31 : 8;
1989 };
Thomas Gleixnerb5c37862020-10-24 22:35:14 +01001990} __attribute__ ((packed));
Suthikulpanit, Suravee66929812019-07-16 04:29:16 +00001991
Krzysztof Kozlowski06ce8a62c2020-07-28 19:08:57 +02001992/*
David Woodhoused1adcfb2020-11-11 12:09:01 +00001993 * There isn't really any need to mask/unmask at the irqchip level because
1994 * the 64-bit INTCAPXT registers can be updated atomically without tearing
1995 * when the affinity is being updated.
Suthikulpanit, Suravee66929812019-07-16 04:29:16 +00001996 */
David Woodhoused1adcfb2020-11-11 12:09:01 +00001997static void intcapxt_unmask_irq(struct irq_data *data)
Suthikulpanit, Suravee66929812019-07-16 04:29:16 +00001998{
David Woodhoused1adcfb2020-11-11 12:09:01 +00001999}
Suthikulpanit, Suravee66929812019-07-16 04:29:16 +00002000
David Woodhoused1adcfb2020-11-11 12:09:01 +00002001static void intcapxt_mask_irq(struct irq_data *data)
2002{
2003}
Suthikulpanit, Suravee66929812019-07-16 04:29:16 +00002004
David Woodhoused1adcfb2020-11-11 12:09:01 +00002005static struct irq_chip intcapxt_controller;
2006
2007static int intcapxt_irqdomain_activate(struct irq_domain *domain,
2008 struct irq_data *irqd, bool reserve)
2009{
2010 struct amd_iommu *iommu = irqd->chip_data;
2011 struct irq_cfg *cfg = irqd_cfg(irqd);
Thomas Gleixnerb5c37862020-10-24 22:35:14 +01002012 union intcapxt xt;
Thomas Gleixnerb5c37862020-10-24 22:35:14 +01002013
2014 xt.capxt = 0ULL;
David Woodhoused1adcfb2020-11-11 12:09:01 +00002015 xt.dest_mode_logical = apic->dest_mode_logical;
2016 xt.vector = cfg->vector;
2017 xt.destid_0_23 = cfg->dest_apicid & GENMASK(23, 0);
2018 xt.destid_24_31 = cfg->dest_apicid >> 24;
Suthikulpanit, Suravee66929812019-07-16 04:29:16 +00002019
2020 /**
2021 * Current IOMMU implemtation uses the same IRQ for all
2022 * 3 IOMMU interrupts.
2023 */
Thomas Gleixnerb5c37862020-10-24 22:35:14 +01002024 writeq(xt.capxt, iommu->mmio_base + MMIO_INTCAPXT_EVT_OFFSET);
2025 writeq(xt.capxt, iommu->mmio_base + MMIO_INTCAPXT_PPR_OFFSET);
2026 writeq(xt.capxt, iommu->mmio_base + MMIO_INTCAPXT_GALOG_OFFSET);
David Woodhoused1adcfb2020-11-11 12:09:01 +00002027 return 0;
Suthikulpanit, Suravee66929812019-07-16 04:29:16 +00002028}
2029
David Woodhoused1adcfb2020-11-11 12:09:01 +00002030static void intcapxt_irqdomain_deactivate(struct irq_domain *domain,
2031 struct irq_data *irqd)
Suthikulpanit, Suravee66929812019-07-16 04:29:16 +00002032{
David Woodhoused1adcfb2020-11-11 12:09:01 +00002033 intcapxt_mask_irq(irqd);
Suthikulpanit, Suravee66929812019-07-16 04:29:16 +00002034}
2035
David Woodhoused1adcfb2020-11-11 12:09:01 +00002036
2037static int intcapxt_irqdomain_alloc(struct irq_domain *domain, unsigned int virq,
2038 unsigned int nr_irqs, void *arg)
Suthikulpanit, Suravee66929812019-07-16 04:29:16 +00002039{
David Woodhoused1adcfb2020-11-11 12:09:01 +00002040 struct irq_alloc_info *info = arg;
2041 int i, ret;
Suthikulpanit, Suravee66929812019-07-16 04:29:16 +00002042
David Woodhoused1adcfb2020-11-11 12:09:01 +00002043 if (!info || info->type != X86_IRQ_ALLOC_TYPE_AMDVI)
2044 return -EINVAL;
Suthikulpanit, Suravee66929812019-07-16 04:29:16 +00002045
David Woodhoused1adcfb2020-11-11 12:09:01 +00002046 ret = irq_domain_alloc_irqs_parent(domain, virq, nr_irqs, arg);
2047 if (ret < 0)
Suthikulpanit, Suravee66929812019-07-16 04:29:16 +00002048 return ret;
David Woodhoused1adcfb2020-11-11 12:09:01 +00002049
2050 for (i = virq; i < virq + nr_irqs; i++) {
2051 struct irq_data *irqd = irq_domain_get_irq_data(domain, i);
2052
2053 irqd->chip = &intcapxt_controller;
2054 irqd->chip_data = info->data;
2055 __irq_set_handler(i, handle_edge_irq, 0, "edge");
Suthikulpanit, Suravee66929812019-07-16 04:29:16 +00002056 }
2057
Suthikulpanit, Suravee66929812019-07-16 04:29:16 +00002058 return ret;
2059}
2060
David Woodhoused1adcfb2020-11-11 12:09:01 +00002061static void intcapxt_irqdomain_free(struct irq_domain *domain, unsigned int virq,
2062 unsigned int nr_irqs)
2063{
2064 irq_domain_free_irqs_top(domain, virq, nr_irqs);
2065}
2066
2067static int intcapxt_set_affinity(struct irq_data *irqd,
2068 const struct cpumask *mask, bool force)
2069{
2070 struct irq_data *parent = irqd->parent_data;
2071 int ret;
2072
2073 ret = parent->chip->irq_set_affinity(parent, mask, force);
2074 if (ret < 0 || ret == IRQ_SET_MASK_OK_DONE)
2075 return ret;
2076
2077 return intcapxt_irqdomain_activate(irqd->domain, irqd, false);
2078}
2079
2080static struct irq_chip intcapxt_controller = {
2081 .name = "IOMMU-MSI",
2082 .irq_unmask = intcapxt_unmask_irq,
2083 .irq_mask = intcapxt_mask_irq,
2084 .irq_ack = irq_chip_ack_parent,
2085 .irq_retrigger = irq_chip_retrigger_hierarchy,
2086 .irq_set_affinity = intcapxt_set_affinity,
2087 .flags = IRQCHIP_SKIP_SET_WAKE,
2088};
2089
2090static const struct irq_domain_ops intcapxt_domain_ops = {
2091 .alloc = intcapxt_irqdomain_alloc,
2092 .free = intcapxt_irqdomain_free,
2093 .activate = intcapxt_irqdomain_activate,
2094 .deactivate = intcapxt_irqdomain_deactivate,
2095};
2096
2097
2098static struct irq_domain *iommu_irqdomain;
2099
2100static struct irq_domain *iommu_get_irqdomain(void)
2101{
2102 struct fwnode_handle *fn;
2103
2104 /* No need for locking here (yet) as the init is single-threaded */
2105 if (iommu_irqdomain)
2106 return iommu_irqdomain;
2107
2108 fn = irq_domain_alloc_named_fwnode("AMD-Vi-MSI");
2109 if (!fn)
2110 return NULL;
2111
2112 iommu_irqdomain = irq_domain_create_hierarchy(x86_vector_domain, 0, 0,
2113 fn, &intcapxt_domain_ops,
2114 NULL);
2115 if (!iommu_irqdomain)
2116 irq_domain_free_fwnode(fn);
2117
2118 return iommu_irqdomain;
2119}
2120
2121static int iommu_setup_intcapxt(struct amd_iommu *iommu)
2122{
2123 struct irq_domain *domain;
2124 struct irq_alloc_info info;
2125 int irq, ret;
2126
2127 domain = iommu_get_irqdomain();
2128 if (!domain)
2129 return -ENXIO;
2130
2131 init_irq_alloc_info(&info, NULL);
2132 info.type = X86_IRQ_ALLOC_TYPE_AMDVI;
2133 info.data = iommu;
2134
2135 irq = irq_domain_alloc_irqs(domain, 1, NUMA_NO_NODE, &info);
2136 if (irq < 0) {
2137 irq_domain_remove(domain);
2138 return irq;
2139 }
2140
2141 ret = request_threaded_irq(irq, amd_iommu_int_handler,
2142 amd_iommu_int_thread, 0, "AMD-Vi", iommu);
2143 if (ret) {
2144 irq_domain_free_irqs(irq, 1);
2145 irq_domain_remove(domain);
2146 return ret;
2147 }
2148
2149 iommu_feature_enable(iommu, CONTROL_INTCAPXT_EN);
2150 return 0;
2151}
2152
2153static int iommu_init_irq(struct amd_iommu *iommu)
Joerg Roedela80dc3e2008-09-11 16:51:41 +02002154{
Joerg Roedel9ddd5922012-03-15 16:29:47 +01002155 int ret;
2156
Joerg Roedela80dc3e2008-09-11 16:51:41 +02002157 if (iommu->int_enabled)
Joerg Roedel9ddd5922012-03-15 16:29:47 +01002158 goto enable_faults;
Joerg Roedela80dc3e2008-09-11 16:51:41 +02002159
David Woodhoused1adcfb2020-11-11 12:09:01 +00002160 if (amd_iommu_xt_mode == IRQ_REMAP_X2APIC_MODE)
2161 ret = iommu_setup_intcapxt(iommu);
2162 else if (iommu->dev->msi_cap)
Joerg Roedel9ddd5922012-03-15 16:29:47 +01002163 ret = iommu_setup_msi(iommu);
2164 else
2165 ret = -ENODEV;
Joerg Roedela80dc3e2008-09-11 16:51:41 +02002166
Joerg Roedel9ddd5922012-03-15 16:29:47 +01002167 if (ret)
2168 return ret;
2169
David Woodhouse12bc4572021-01-05 01:32:51 +00002170 iommu->int_enabled = true;
Joerg Roedel9ddd5922012-03-15 16:29:47 +01002171enable_faults:
2172 iommu_feature_enable(iommu, CONTROL_EVT_INT_EN);
2173
2174 if (iommu->ppr_log != NULL)
Adrian Huangbde9e6b2019-12-30 13:56:54 +08002175 iommu_feature_enable(iommu, CONTROL_PPRINT_EN);
Joerg Roedel9ddd5922012-03-15 16:29:47 +01002176
Suravee Suthikulpanit8bda0cf2016-08-23 13:52:36 -05002177 iommu_ga_log_enable(iommu);
2178
Joerg Roedel9ddd5922012-03-15 16:29:47 +01002179 return 0;
Joerg Roedela80dc3e2008-09-11 16:51:41 +02002180}
2181
2182/****************************************************************************
2183 *
Joerg Roedelb65233a2008-07-11 17:14:21 +02002184 * The next functions belong to the third pass of parsing the ACPI
2185 * table. In this last pass the memory mapping requirements are
Frank Arnolddf805ab2012-08-27 19:21:04 +02002186 * gathered (like exclusion and unity mapping ranges).
Joerg Roedelb65233a2008-07-11 17:14:21 +02002187 *
2188 ****************************************************************************/
2189
Joerg Roedelbe2a0222008-06-26 21:27:49 +02002190static void __init free_unity_maps(void)
2191{
2192 struct unity_map_entry *entry, *next;
2193
2194 list_for_each_entry_safe(entry, next, &amd_iommu_unity_map, list) {
2195 list_del(&entry->list);
2196 kfree(entry);
2197 }
2198}
2199
Joerg Roedelb65233a2008-07-11 17:14:21 +02002200/* called for unity map ACPI definition */
Joerg Roedelbe2a0222008-06-26 21:27:49 +02002201static int __init init_unity_map_range(struct ivmd_header *m)
2202{
Joerg Roedel98f1ad22012-07-06 13:28:37 +02002203 struct unity_map_entry *e = NULL;
Joerg Roedel02acc432009-05-20 16:24:21 +02002204 char *s;
Joerg Roedelbe2a0222008-06-26 21:27:49 +02002205
2206 e = kzalloc(sizeof(*e), GFP_KERNEL);
2207 if (e == NULL)
2208 return -ENOMEM;
2209
2210 switch (m->type) {
2211 default:
Joerg Roedel0bc252f2009-05-22 12:48:05 +02002212 kfree(e);
2213 return 0;
Joerg Roedelbe2a0222008-06-26 21:27:49 +02002214 case ACPI_IVMD_TYPE:
Joerg Roedel02acc432009-05-20 16:24:21 +02002215 s = "IVMD_TYPEi\t\t\t";
Joerg Roedelbe2a0222008-06-26 21:27:49 +02002216 e->devid_start = e->devid_end = m->devid;
2217 break;
2218 case ACPI_IVMD_TYPE_ALL:
Joerg Roedel02acc432009-05-20 16:24:21 +02002219 s = "IVMD_TYPE_ALL\t\t";
Joerg Roedelbe2a0222008-06-26 21:27:49 +02002220 e->devid_start = 0;
2221 e->devid_end = amd_iommu_last_bdf;
2222 break;
2223 case ACPI_IVMD_TYPE_RANGE:
Joerg Roedel02acc432009-05-20 16:24:21 +02002224 s = "IVMD_TYPE_RANGE\t\t";
Joerg Roedelbe2a0222008-06-26 21:27:49 +02002225 e->devid_start = m->devid;
2226 e->devid_end = m->aux;
2227 break;
2228 }
2229 e->address_start = PAGE_ALIGN(m->range_start);
2230 e->address_end = e->address_start + PAGE_ALIGN(m->range_length);
2231 e->prot = m->flags >> 1;
2232
Adrian Huang0bbe4ce2020-09-26 18:26:02 +08002233 /*
2234 * Treat per-device exclusion ranges as r/w unity-mapped regions
2235 * since some buggy BIOSes might lead to the overwritten exclusion
2236 * range (exclusion_start and exclusion_length members). This
2237 * happens when there are multiple exclusion ranges (IVMD entries)
2238 * defined in ACPI table.
2239 */
2240 if (m->flags & IVMD_FLAG_EXCL_RANGE)
2241 e->prot = (IVMD_FLAG_IW | IVMD_FLAG_IR) >> 1;
2242
Joerg Roedel02acc432009-05-20 16:24:21 +02002243 DUMP_printk("%s devid_start: %02x:%02x.%x devid_end: %02x:%02x.%x"
2244 " range_start: %016llx range_end: %016llx flags: %x\n", s,
Shuah Khanc5081cd2013-02-27 17:07:19 -07002245 PCI_BUS_NUM(e->devid_start), PCI_SLOT(e->devid_start),
2246 PCI_FUNC(e->devid_start), PCI_BUS_NUM(e->devid_end),
Joerg Roedel02acc432009-05-20 16:24:21 +02002247 PCI_SLOT(e->devid_end), PCI_FUNC(e->devid_end),
2248 e->address_start, e->address_end, m->flags);
2249
Joerg Roedelbe2a0222008-06-26 21:27:49 +02002250 list_add_tail(&e->list, &amd_iommu_unity_map);
2251
2252 return 0;
2253}
2254
Joerg Roedelb65233a2008-07-11 17:14:21 +02002255/* iterates over all memory definitions we find in the ACPI table */
Joerg Roedelbe2a0222008-06-26 21:27:49 +02002256static int __init init_memory_definitions(struct acpi_table_header *table)
2257{
2258 u8 *p = (u8 *)table, *end = (u8 *)table;
2259 struct ivmd_header *m;
2260
Joerg Roedelbe2a0222008-06-26 21:27:49 +02002261 end += table->length;
2262 p += IVRS_HEADER_LENGTH;
2263
2264 while (p < end) {
2265 m = (struct ivmd_header *)p;
Joerg Roedel8aafaaf2019-03-28 11:44:59 +01002266 if (m->flags & (IVMD_FLAG_UNITY_MAP | IVMD_FLAG_EXCL_RANGE))
Joerg Roedelbe2a0222008-06-26 21:27:49 +02002267 init_unity_map_range(m);
2268
2269 p += m->length;
2270 }
2271
2272 return 0;
2273}
2274
Joerg Roedelb65233a2008-07-11 17:14:21 +02002275/*
Baoquan He3ac3e5ee2017-08-09 16:33:38 +08002276 * Init the device table to not allow DMA access for devices
Joerg Roedel9f5f5fb2008-08-14 19:55:16 +02002277 */
Joerg Roedel33f28c52012-06-15 18:03:31 +02002278static void init_device_table_dma(void)
Joerg Roedel9f5f5fb2008-08-14 19:55:16 +02002279{
Joerg Roedel0de66d52011-06-06 16:04:02 +02002280 u32 devid;
Joerg Roedel9f5f5fb2008-08-14 19:55:16 +02002281
2282 for (devid = 0; devid <= amd_iommu_last_bdf; ++devid) {
2283 set_dev_entry_bit(devid, DEV_ENTRY_VALID);
2284 set_dev_entry_bit(devid, DEV_ENTRY_TRANSLATION);
Joerg Roedel9f5f5fb2008-08-14 19:55:16 +02002285 }
2286}
2287
Joerg Roedeld04e0ba2012-07-02 16:02:20 +02002288static void __init uninit_device_table_dma(void)
2289{
2290 u32 devid;
2291
2292 for (devid = 0; devid <= amd_iommu_last_bdf; ++devid) {
2293 amd_iommu_dev_table[devid].data[0] = 0ULL;
2294 amd_iommu_dev_table[devid].data[1] = 0ULL;
2295 }
2296}
2297
Joerg Roedel33f28c52012-06-15 18:03:31 +02002298static void init_device_table(void)
2299{
2300 u32 devid;
2301
2302 if (!amd_iommu_irq_remap)
2303 return;
2304
2305 for (devid = 0; devid <= amd_iommu_last_bdf; ++devid)
2306 set_dev_entry_bit(devid, DEV_ENTRY_IRQ_TBL_EN);
2307}
2308
Joerg Roedele9bf5192010-09-20 14:33:07 +02002309static void iommu_init_flags(struct amd_iommu *iommu)
2310{
2311 iommu->acpi_flags & IVHD_FLAG_HT_TUN_EN_MASK ?
2312 iommu_feature_enable(iommu, CONTROL_HT_TUN_EN) :
2313 iommu_feature_disable(iommu, CONTROL_HT_TUN_EN);
2314
2315 iommu->acpi_flags & IVHD_FLAG_PASSPW_EN_MASK ?
2316 iommu_feature_enable(iommu, CONTROL_PASSPW_EN) :
2317 iommu_feature_disable(iommu, CONTROL_PASSPW_EN);
2318
2319 iommu->acpi_flags & IVHD_FLAG_RESPASSPW_EN_MASK ?
2320 iommu_feature_enable(iommu, CONTROL_RESPASSPW_EN) :
2321 iommu_feature_disable(iommu, CONTROL_RESPASSPW_EN);
2322
2323 iommu->acpi_flags & IVHD_FLAG_ISOC_EN_MASK ?
2324 iommu_feature_enable(iommu, CONTROL_ISOC_EN) :
2325 iommu_feature_disable(iommu, CONTROL_ISOC_EN);
2326
2327 /*
2328 * make IOMMU memory accesses cache coherent
2329 */
2330 iommu_feature_enable(iommu, CONTROL_COHERENT_EN);
Joerg Roedel1456e9d2011-12-22 14:51:53 +01002331
2332 /* Set IOTLB invalidation timeout to 1s */
2333 iommu_set_inv_tlb_timeout(iommu, CTRL_INV_TO_1S);
Joerg Roedele9bf5192010-09-20 14:33:07 +02002334}
2335
Matthew Garrett5bcd7572010-10-04 14:59:31 -04002336static void iommu_apply_resume_quirks(struct amd_iommu *iommu)
Joerg Roedel4c894f42010-09-23 15:15:19 +02002337{
Matthew Garrett5bcd7572010-10-04 14:59:31 -04002338 int i, j;
2339 u32 ioc_feature_control;
Joerg Roedelc1bf94e2012-05-31 17:38:11 +02002340 struct pci_dev *pdev = iommu->root_pdev;
Matthew Garrett5bcd7572010-10-04 14:59:31 -04002341
2342 /* RD890 BIOSes may not have completely reconfigured the iommu */
Joerg Roedelc1bf94e2012-05-31 17:38:11 +02002343 if (!is_rd890_iommu(iommu->dev) || !pdev)
Matthew Garrett5bcd7572010-10-04 14:59:31 -04002344 return;
2345
2346 /*
2347 * First, we need to ensure that the iommu is enabled. This is
2348 * controlled by a register in the northbridge
2349 */
Matthew Garrett5bcd7572010-10-04 14:59:31 -04002350
2351 /* Select Northbridge indirect register 0x75 and enable writing */
2352 pci_write_config_dword(pdev, 0x60, 0x75 | (1 << 7));
2353 pci_read_config_dword(pdev, 0x64, &ioc_feature_control);
2354
2355 /* Enable the iommu */
2356 if (!(ioc_feature_control & 0x1))
2357 pci_write_config_dword(pdev, 0x64, ioc_feature_control | 1);
2358
Matthew Garrett5bcd7572010-10-04 14:59:31 -04002359 /* Restore the iommu BAR */
2360 pci_write_config_dword(iommu->dev, iommu->cap_ptr + 4,
2361 iommu->stored_addr_lo);
2362 pci_write_config_dword(iommu->dev, iommu->cap_ptr + 8,
2363 iommu->stored_addr_hi);
2364
2365 /* Restore the l1 indirect regs for each of the 6 l1s */
2366 for (i = 0; i < 6; i++)
2367 for (j = 0; j < 0x12; j++)
2368 iommu_write_l1(iommu, i, j, iommu->stored_l1[i][j]);
2369
2370 /* Restore the l2 indirect regs */
2371 for (i = 0; i < 0x83; i++)
2372 iommu_write_l2(iommu, i, iommu->stored_l2[i]);
2373
2374 /* Lock PCI setup registers */
2375 pci_write_config_dword(iommu->dev, iommu->cap_ptr + 4,
2376 iommu->stored_addr_lo | 1);
Joerg Roedel4c894f42010-09-23 15:15:19 +02002377}
2378
Suravee Suthikulpanit3928aa32016-08-23 13:52:32 -05002379static void iommu_enable_ga(struct amd_iommu *iommu)
2380{
2381#ifdef CONFIG_IRQ_REMAP
2382 switch (amd_iommu_guest_ir) {
2383 case AMD_IOMMU_GUEST_IR_VAPIC:
2384 iommu_feature_enable(iommu, CONTROL_GAM_EN);
Gustavo A. R. Silvadf561f662020-08-23 17:36:59 -05002385 fallthrough;
Suravee Suthikulpanit3928aa32016-08-23 13:52:32 -05002386 case AMD_IOMMU_GUEST_IR_LEGACY_GA:
2387 iommu_feature_enable(iommu, CONTROL_GA_EN);
Suravee Suthikulpanit77bdab42016-08-23 13:52:35 -05002388 iommu->irte_ops = &irte_128_ops;
Suravee Suthikulpanit3928aa32016-08-23 13:52:32 -05002389 break;
2390 default:
Suravee Suthikulpanit77bdab42016-08-23 13:52:35 -05002391 iommu->irte_ops = &irte_32_ops;
Suravee Suthikulpanit3928aa32016-08-23 13:52:32 -05002392 break;
2393 }
2394#endif
2395}
2396
Baoquan He78d313c2017-08-09 16:33:34 +08002397static void early_enable_iommu(struct amd_iommu *iommu)
2398{
2399 iommu_disable(iommu);
2400 iommu_init_flags(iommu);
2401 iommu_set_device_table(iommu);
2402 iommu_enable_command_buffer(iommu);
2403 iommu_enable_event_buffer(iommu);
2404 iommu_set_exclusion_range(iommu);
2405 iommu_enable_ga(iommu);
Suravee Suthikulpanit90fcffd2018-06-27 10:31:22 -05002406 iommu_enable_xt(iommu);
Baoquan He78d313c2017-08-09 16:33:34 +08002407 iommu_enable(iommu);
2408 iommu_flush_all_caches(iommu);
2409}
2410
Joerg Roedel9f5f5fb2008-08-14 19:55:16 +02002411/*
Joerg Roedelb65233a2008-07-11 17:14:21 +02002412 * This function finally enables all IOMMUs found in the system after
Baoquan He3ac3e5ee2017-08-09 16:33:38 +08002413 * they have been initialized.
2414 *
2415 * Or if in kdump kernel and IOMMUs are all pre-enabled, try to copy
2416 * the old content of device table entries. Not this case or copy failed,
2417 * just continue as normal kernel does.
Joerg Roedelb65233a2008-07-11 17:14:21 +02002418 */
Joerg Roedel11ee5ac2012-06-12 16:30:06 +02002419static void early_enable_iommus(void)
Joerg Roedel87361972008-06-26 21:28:07 +02002420{
2421 struct amd_iommu *iommu;
2422
Baoquan He3ac3e5ee2017-08-09 16:33:38 +08002423
2424 if (!copy_device_table()) {
2425 /*
2426 * If come here because of failure in copying device table from old
2427 * kernel with all IOMMUs enabled, print error message and try to
2428 * free allocated old_dev_tbl_cpy.
2429 */
2430 if (amd_iommu_pre_enabled)
2431 pr_err("Failed to copy DEV table from previous kernel.\n");
2432 if (old_dev_tbl_cpy != NULL)
2433 free_pages((unsigned long)old_dev_tbl_cpy,
2434 get_order(dev_table_size));
2435
2436 for_each_iommu(iommu) {
2437 clear_translation_pre_enabled(iommu);
2438 early_enable_iommu(iommu);
2439 }
2440 } else {
2441 pr_info("Copied DEV table from previous kernel.\n");
2442 free_pages((unsigned long)amd_iommu_dev_table,
2443 get_order(dev_table_size));
2444 amd_iommu_dev_table = old_dev_tbl_cpy;
2445 for_each_iommu(iommu) {
2446 iommu_disable_command_buffer(iommu);
2447 iommu_disable_event_buffer(iommu);
2448 iommu_enable_command_buffer(iommu);
2449 iommu_enable_event_buffer(iommu);
2450 iommu_enable_ga(iommu);
Suravee Suthikulpanit90fcffd2018-06-27 10:31:22 -05002451 iommu_enable_xt(iommu);
Baoquan He3ac3e5ee2017-08-09 16:33:38 +08002452 iommu_set_device_table(iommu);
2453 iommu_flush_all_caches(iommu);
2454 }
Joerg Roedel87361972008-06-26 21:28:07 +02002455 }
Suravee Suthikulpanitd98de492016-08-23 13:52:40 -05002456
2457#ifdef CONFIG_IRQ_REMAP
2458 if (AMD_IOMMU_GUEST_IR_VAPIC(amd_iommu_guest_ir))
2459 amd_iommu_irq_ops.capability |= (1 << IRQ_POSTING_CAP);
2460#endif
Joerg Roedel87361972008-06-26 21:28:07 +02002461}
2462
Joerg Roedel11ee5ac2012-06-12 16:30:06 +02002463static void enable_iommus_v2(void)
2464{
2465 struct amd_iommu *iommu;
2466
2467 for_each_iommu(iommu) {
2468 iommu_enable_ppr_log(iommu);
2469 iommu_enable_gt(iommu);
2470 }
2471}
2472
2473static void enable_iommus(void)
2474{
2475 early_enable_iommus();
2476
2477 enable_iommus_v2();
2478}
2479
Joerg Roedel92ac4322009-05-19 19:06:27 +02002480static void disable_iommus(void)
2481{
2482 struct amd_iommu *iommu;
2483
2484 for_each_iommu(iommu)
2485 iommu_disable(iommu);
Suravee Suthikulpanitd98de492016-08-23 13:52:40 -05002486
2487#ifdef CONFIG_IRQ_REMAP
2488 if (AMD_IOMMU_GUEST_IR_VAPIC(amd_iommu_guest_ir))
2489 amd_iommu_irq_ops.capability &= ~(1 << IRQ_POSTING_CAP);
2490#endif
Joerg Roedel92ac4322009-05-19 19:06:27 +02002491}
2492
Joerg Roedel7441e9c2008-06-30 20:18:02 +02002493/*
2494 * Suspend/Resume support
2495 * disable suspend until real resume implemented
2496 */
2497
Rafael J. Wysockif3c6ea12011-03-23 22:15:54 +01002498static void amd_iommu_resume(void)
Joerg Roedel7441e9c2008-06-30 20:18:02 +02002499{
Matthew Garrett5bcd7572010-10-04 14:59:31 -04002500 struct amd_iommu *iommu;
2501
2502 for_each_iommu(iommu)
2503 iommu_apply_resume_quirks(iommu);
2504
Joerg Roedel736501e2009-05-12 09:56:12 +02002505 /* re-load the hardware */
2506 enable_iommus();
Joerg Roedel3d9761e2012-03-15 16:39:21 +01002507
2508 amd_iommu_enable_interrupts();
Joerg Roedel7441e9c2008-06-30 20:18:02 +02002509}
2510
Rafael J. Wysockif3c6ea12011-03-23 22:15:54 +01002511static int amd_iommu_suspend(void)
Joerg Roedel7441e9c2008-06-30 20:18:02 +02002512{
Joerg Roedel736501e2009-05-12 09:56:12 +02002513 /* disable IOMMUs to go out of the way for BIOS */
2514 disable_iommus();
2515
2516 return 0;
Joerg Roedel7441e9c2008-06-30 20:18:02 +02002517}
2518
Rafael J. Wysockif3c6ea12011-03-23 22:15:54 +01002519static struct syscore_ops amd_iommu_syscore_ops = {
Joerg Roedel7441e9c2008-06-30 20:18:02 +02002520 .suspend = amd_iommu_suspend,
2521 .resume = amd_iommu_resume,
2522};
2523
Joerg Roedel90b3eb02017-06-16 16:09:55 +02002524static void __init free_iommu_resources(void)
Joerg Roedel8704a1b2012-03-01 15:57:53 +01002525{
Lucas Stachebcfa282016-10-26 13:09:53 +02002526 kmemleak_free(irq_lookup_table);
Joerg Roedel0ea2c422012-06-15 18:05:20 +02002527 free_pages((unsigned long)irq_lookup_table,
2528 get_order(rlookup_table_size));
Joerg Roedelf6019272017-06-16 16:09:58 +02002529 irq_lookup_table = NULL;
Joerg Roedel8704a1b2012-03-01 15:57:53 +01002530
Julia Lawalla5919892015-09-13 14:15:31 +02002531 kmem_cache_destroy(amd_iommu_irq_cache);
2532 amd_iommu_irq_cache = NULL;
Joerg Roedel8704a1b2012-03-01 15:57:53 +01002533
2534 free_pages((unsigned long)amd_iommu_rlookup_table,
2535 get_order(rlookup_table_size));
Joerg Roedelf6019272017-06-16 16:09:58 +02002536 amd_iommu_rlookup_table = NULL;
Joerg Roedel8704a1b2012-03-01 15:57:53 +01002537
2538 free_pages((unsigned long)amd_iommu_alias_table,
2539 get_order(alias_table_size));
Joerg Roedelf6019272017-06-16 16:09:58 +02002540 amd_iommu_alias_table = NULL;
Joerg Roedel8704a1b2012-03-01 15:57:53 +01002541
2542 free_pages((unsigned long)amd_iommu_dev_table,
2543 get_order(dev_table_size));
Joerg Roedelf6019272017-06-16 16:09:58 +02002544 amd_iommu_dev_table = NULL;
Joerg Roedel8704a1b2012-03-01 15:57:53 +01002545
2546 free_iommu_all();
Joerg Roedel8704a1b2012-03-01 15:57:53 +01002547}
2548
Joerg Roedelc2ff5cf52012-10-16 14:52:51 +02002549/* SB IOAPIC is always on this device in AMD systems */
2550#define IOAPIC_SB_DEVID ((0x00 << 8) | PCI_DEVFN(0x14, 0))
2551
Joerg Roedeleb1eb7a2012-07-05 11:58:02 +02002552static bool __init check_ioapic_information(void)
2553{
Joerg Roedeldfbb6d42013-04-09 19:06:18 +02002554 const char *fw_bug = FW_BUG;
Joerg Roedelc2ff5cf52012-10-16 14:52:51 +02002555 bool ret, has_sb_ioapic;
Joerg Roedeleb1eb7a2012-07-05 11:58:02 +02002556 int idx;
2557
Joerg Roedelc2ff5cf52012-10-16 14:52:51 +02002558 has_sb_ioapic = false;
2559 ret = false;
Joerg Roedeleb1eb7a2012-07-05 11:58:02 +02002560
Joerg Roedeldfbb6d42013-04-09 19:06:18 +02002561 /*
2562 * If we have map overrides on the kernel command line the
2563 * messages in this function might not describe firmware bugs
2564 * anymore - so be careful
2565 */
2566 if (cmdline_maps)
2567 fw_bug = "";
2568
Joerg Roedelc2ff5cf52012-10-16 14:52:51 +02002569 for (idx = 0; idx < nr_ioapics; idx++) {
2570 int devid, id = mpc_ioapic_id(idx);
2571
2572 devid = get_ioapic_devid(id);
2573 if (devid < 0) {
Joerg Roedel101fa032018-11-27 16:22:31 +01002574 pr_err("%s: IOAPIC[%d] not in IVRS table\n",
Joerg Roedeldfbb6d42013-04-09 19:06:18 +02002575 fw_bug, id);
Joerg Roedelc2ff5cf52012-10-16 14:52:51 +02002576 ret = false;
2577 } else if (devid == IOAPIC_SB_DEVID) {
2578 has_sb_ioapic = true;
2579 ret = true;
Joerg Roedeleb1eb7a2012-07-05 11:58:02 +02002580 }
2581 }
2582
Joerg Roedelc2ff5cf52012-10-16 14:52:51 +02002583 if (!has_sb_ioapic) {
2584 /*
2585 * We expect the SB IOAPIC to be listed in the IVRS
2586 * table. The system timer is connected to the SB IOAPIC
2587 * and if we don't have it in the list the system will
2588 * panic at boot time. This situation usually happens
2589 * when the BIOS is buggy and provides us the wrong
2590 * device id for the IOAPIC in the system.
2591 */
Joerg Roedel101fa032018-11-27 16:22:31 +01002592 pr_err("%s: No southbridge IOAPIC found\n", fw_bug);
Joerg Roedelc2ff5cf52012-10-16 14:52:51 +02002593 }
2594
2595 if (!ret)
Joerg Roedel101fa032018-11-27 16:22:31 +01002596 pr_err("Disabling interrupt remapping\n");
Joerg Roedelc2ff5cf52012-10-16 14:52:51 +02002597
2598 return ret;
Joerg Roedeleb1eb7a2012-07-05 11:58:02 +02002599}
2600
Joerg Roedeld04e0ba2012-07-02 16:02:20 +02002601static void __init free_dma_resources(void)
2602{
Joerg Roedeld04e0ba2012-07-02 16:02:20 +02002603 free_pages((unsigned long)amd_iommu_pd_alloc_bitmap,
2604 get_order(MAX_DOMAIN_ID/8));
Joerg Roedelf6019272017-06-16 16:09:58 +02002605 amd_iommu_pd_alloc_bitmap = NULL;
Joerg Roedeld04e0ba2012-07-02 16:02:20 +02002606
2607 free_unity_maps();
2608}
2609
Joerg Roedelb65233a2008-07-11 17:14:21 +02002610/*
Joerg Roedel8704a1b2012-03-01 15:57:53 +01002611 * This is the hardware init function for AMD IOMMU in the system.
2612 * This function is called either from amd_iommu_init or from the interrupt
2613 * remapping setup code.
Joerg Roedelb65233a2008-07-11 17:14:21 +02002614 *
2615 * This function basically parses the ACPI table for AMD IOMMU (IVRS)
Suravee Suthikulpanit8c7142f2016-04-01 09:05:59 -04002616 * four times:
Joerg Roedelb65233a2008-07-11 17:14:21 +02002617 *
Suravee Suthikulpanit8c7142f2016-04-01 09:05:59 -04002618 * 1 pass) Discover the most comprehensive IVHD type to use.
2619 *
2620 * 2 pass) Find the highest PCI device id the driver has to handle.
Joerg Roedelb65233a2008-07-11 17:14:21 +02002621 * Upon this information the size of the data structures is
2622 * determined that needs to be allocated.
2623 *
Suravee Suthikulpanit8c7142f2016-04-01 09:05:59 -04002624 * 3 pass) Initialize the data structures just allocated with the
Joerg Roedelb65233a2008-07-11 17:14:21 +02002625 * information in the ACPI table about available AMD IOMMUs
2626 * in the system. It also maps the PCI devices in the
2627 * system to specific IOMMUs
2628 *
Suravee Suthikulpanit8c7142f2016-04-01 09:05:59 -04002629 * 4 pass) After the basic data structures are allocated and
Joerg Roedelb65233a2008-07-11 17:14:21 +02002630 * initialized we update them with information about memory
2631 * remapping requirements parsed out of the ACPI table in
2632 * this last pass.
2633 *
Joerg Roedel8704a1b2012-03-01 15:57:53 +01002634 * After everything is set up the IOMMUs are enabled and the necessary
2635 * hotplug and suspend notifiers are registered.
Joerg Roedelb65233a2008-07-11 17:14:21 +02002636 */
Joerg Roedel643511b2012-06-12 12:09:35 +02002637static int __init early_amd_iommu_init(void)
Joerg Roedelfe74c9c2008-06-26 21:27:50 +02002638{
Joerg Roedel02f3b3f2012-06-11 17:45:25 +02002639 struct acpi_table_header *ivrs_base;
Joerg Roedel02f3b3f2012-06-11 17:45:25 +02002640 acpi_status status;
Suravee Suthikulpanit3928aa32016-08-23 13:52:32 -05002641 int i, remap_cache_sz, ret = 0;
Kai-Heng Feng3dfee472020-02-10 15:51:15 +08002642 u32 pci_id;
Joerg Roedelfe74c9c2008-06-26 21:27:50 +02002643
Joerg Roedel643511b2012-06-12 12:09:35 +02002644 if (!amd_iommu_detected)
Joerg Roedel8704a1b2012-03-01 15:57:53 +01002645 return -ENODEV;
2646
Lv Zheng6b11d1d2016-12-14 15:04:39 +08002647 status = acpi_get_table("IVRS", 0, &ivrs_base);
Joerg Roedel02f3b3f2012-06-11 17:45:25 +02002648 if (status == AE_NOT_FOUND)
2649 return -ENODEV;
2650 else if (ACPI_FAILURE(status)) {
2651 const char *err = acpi_format_exception(status);
Joerg Roedel101fa032018-11-27 16:22:31 +01002652 pr_err("IVRS table error: %s\n", err);
Joerg Roedel02f3b3f2012-06-11 17:45:25 +02002653 return -EINVAL;
2654 }
2655
Joerg Roedelfe74c9c2008-06-26 21:27:50 +02002656 /*
Suravee Suthikulpanit8c7142f2016-04-01 09:05:59 -04002657 * Validate checksum here so we don't need to do it when
2658 * we actually parse the table
2659 */
2660 ret = check_ivrs_checksum(ivrs_base);
2661 if (ret)
Rafael J. Wysocki99e8ccd2017-01-10 14:57:28 +01002662 goto out;
Suravee Suthikulpanit8c7142f2016-04-01 09:05:59 -04002663
2664 amd_iommu_target_ivhd_type = get_highest_supported_ivhd_type(ivrs_base);
2665 DUMP_printk("Using IVHD type %#x\n", amd_iommu_target_ivhd_type);
2666
2667 /*
Joerg Roedelfe74c9c2008-06-26 21:27:50 +02002668 * First parse ACPI tables to find the largest Bus/Dev/Func
2669 * we need to handle. Upon this information the shared data
2670 * structures for the IOMMUs in the system will be allocated
2671 */
Joerg Roedel2c0ae172012-06-12 15:59:30 +02002672 ret = find_last_devid_acpi(ivrs_base);
2673 if (ret)
Joerg Roedel3551a702010-03-01 13:52:19 +01002674 goto out;
2675
Joerg Roedelc5714842008-07-11 17:14:25 +02002676 dev_table_size = tbl_size(DEV_TABLE_ENTRY_SIZE);
2677 alias_table_size = tbl_size(ALIAS_TABLE_ENTRY_SIZE);
2678 rlookup_table_size = tbl_size(RLOOKUP_TABLE_ENTRY_SIZE);
Joerg Roedelfe74c9c2008-06-26 21:27:50 +02002679
Joerg Roedelfe74c9c2008-06-26 21:27:50 +02002680 /* Device table - directly used by all IOMMUs */
Joerg Roedel8704a1b2012-03-01 15:57:53 +01002681 ret = -ENOMEM;
Baoquan Heb3367812017-08-09 16:33:42 +08002682 amd_iommu_dev_table = (void *)__get_free_pages(
2683 GFP_KERNEL | __GFP_ZERO | GFP_DMA32,
Joerg Roedelfe74c9c2008-06-26 21:27:50 +02002684 get_order(dev_table_size));
2685 if (amd_iommu_dev_table == NULL)
2686 goto out;
2687
2688 /*
2689 * Alias table - map PCI Bus/Dev/Func to Bus/Dev/Func the
2690 * IOMMU see for that device
2691 */
2692 amd_iommu_alias_table = (void *)__get_free_pages(GFP_KERNEL,
2693 get_order(alias_table_size));
2694 if (amd_iommu_alias_table == NULL)
Joerg Roedel2c0ae172012-06-12 15:59:30 +02002695 goto out;
Joerg Roedelfe74c9c2008-06-26 21:27:50 +02002696
2697 /* IOMMU rlookup table - find the IOMMU for a specific device */
Joerg Roedel83fd5cc2008-12-16 19:17:11 +01002698 amd_iommu_rlookup_table = (void *)__get_free_pages(
2699 GFP_KERNEL | __GFP_ZERO,
Joerg Roedelfe74c9c2008-06-26 21:27:50 +02002700 get_order(rlookup_table_size));
2701 if (amd_iommu_rlookup_table == NULL)
Joerg Roedel2c0ae172012-06-12 15:59:30 +02002702 goto out;
Joerg Roedelfe74c9c2008-06-26 21:27:50 +02002703
Joerg Roedel5dc8bff2008-07-11 17:14:32 +02002704 amd_iommu_pd_alloc_bitmap = (void *)__get_free_pages(
2705 GFP_KERNEL | __GFP_ZERO,
Joerg Roedelfe74c9c2008-06-26 21:27:50 +02002706 get_order(MAX_DOMAIN_ID/8));
2707 if (amd_iommu_pd_alloc_bitmap == NULL)
Joerg Roedel2c0ae172012-06-12 15:59:30 +02002708 goto out;
Joerg Roedelfe74c9c2008-06-26 21:27:50 +02002709
2710 /*
Joerg Roedel5dc8bff2008-07-11 17:14:32 +02002711 * let all alias entries point to itself
Joerg Roedelfe74c9c2008-06-26 21:27:50 +02002712 */
Joerg Roedel3a61ec32008-07-25 13:07:50 +02002713 for (i = 0; i <= amd_iommu_last_bdf; ++i)
Joerg Roedelfe74c9c2008-06-26 21:27:50 +02002714 amd_iommu_alias_table[i] = i;
2715
Joerg Roedelfe74c9c2008-06-26 21:27:50 +02002716 /*
2717 * never allocate domain 0 because its used as the non-allocated and
2718 * error value placeholder
2719 */
Baoquan He5c87f622016-09-15 16:50:51 +08002720 __set_bit(0, amd_iommu_pd_alloc_bitmap);
Joerg Roedelfe74c9c2008-06-26 21:27:50 +02002721
2722 /*
2723 * now the data structures are allocated and basically initialized
2724 * start the real acpi table scan
2725 */
Joerg Roedel02f3b3f2012-06-11 17:45:25 +02002726 ret = init_iommu_all(ivrs_base);
2727 if (ret)
Joerg Roedel2c0ae172012-06-12 15:59:30 +02002728 goto out;
Joerg Roedelfe74c9c2008-06-26 21:27:50 +02002729
Kai-Heng Feng3dfee472020-02-10 15:51:15 +08002730 /* Disable IOMMU if there's Stoney Ridge graphics */
2731 for (i = 0; i < 32; i++) {
2732 pci_id = read_pci_config(0, i, 0, 0);
2733 if ((pci_id & 0xffff) == 0x1002 && (pci_id >> 16) == 0x98e4) {
2734 pr_info("Disable IOMMU on Stoney Ridge\n");
2735 amd_iommu_disabled = true;
2736 break;
2737 }
2738 }
2739
Joerg Roedel11123742017-06-16 16:09:54 +02002740 /* Disable any previously enabled IOMMUs */
Baoquan He20b46df2017-08-09 16:33:44 +08002741 if (!is_kdump_kernel() || amd_iommu_disabled)
2742 disable_iommus();
Joerg Roedel11123742017-06-16 16:09:54 +02002743
Joerg Roedeleb1eb7a2012-07-05 11:58:02 +02002744 if (amd_iommu_irq_remap)
2745 amd_iommu_irq_remap = check_ioapic_information();
2746
Joerg Roedel05152a02012-06-15 16:53:51 +02002747 if (amd_iommu_irq_remap) {
2748 /*
2749 * Interrupt remapping enabled, create kmem_cache for the
2750 * remapping tables.
2751 */
Wei Yongjun83ed9c12013-04-23 10:47:44 +08002752 ret = -ENOMEM;
Suravee Suthikulpanit3928aa32016-08-23 13:52:32 -05002753 if (!AMD_IOMMU_GUEST_IR_GA(amd_iommu_guest_ir))
2754 remap_cache_sz = MAX_IRQS_PER_TABLE * sizeof(u32);
2755 else
2756 remap_cache_sz = MAX_IRQS_PER_TABLE * (sizeof(u64) * 2);
Joerg Roedel05152a02012-06-15 16:53:51 +02002757 amd_iommu_irq_cache = kmem_cache_create("irq_remap_cache",
Suravee Suthikulpanit3928aa32016-08-23 13:52:32 -05002758 remap_cache_sz,
Suravee Suthikulpanit5ae9a042020-12-10 10:24:36 -06002759 DTE_INTTAB_ALIGNMENT,
Suravee Suthikulpanit3928aa32016-08-23 13:52:32 -05002760 0, NULL);
Joerg Roedel05152a02012-06-15 16:53:51 +02002761 if (!amd_iommu_irq_cache)
2762 goto out;
Joerg Roedel0ea2c422012-06-15 18:05:20 +02002763
2764 irq_lookup_table = (void *)__get_free_pages(
2765 GFP_KERNEL | __GFP_ZERO,
2766 get_order(rlookup_table_size));
Lucas Stachebcfa282016-10-26 13:09:53 +02002767 kmemleak_alloc(irq_lookup_table, rlookup_table_size,
2768 1, GFP_KERNEL);
Joerg Roedel0ea2c422012-06-15 18:05:20 +02002769 if (!irq_lookup_table)
2770 goto out;
Joerg Roedel05152a02012-06-15 16:53:51 +02002771 }
2772
Joerg Roedel02f3b3f2012-06-11 17:45:25 +02002773 ret = init_memory_definitions(ivrs_base);
2774 if (ret)
Joerg Roedel2c0ae172012-06-12 15:59:30 +02002775 goto out;
Joerg Roedel3551a702010-03-01 13:52:19 +01002776
Joerg Roedeleb1eb7a2012-07-05 11:58:02 +02002777 /* init the device table */
2778 init_device_table();
2779
Joerg Roedel8704a1b2012-03-01 15:57:53 +01002780out:
Joerg Roedel02f3b3f2012-06-11 17:45:25 +02002781 /* Don't leak any ACPI memory */
Lv Zheng6b11d1d2016-12-14 15:04:39 +08002782 acpi_put_table(ivrs_base);
Joerg Roedel02f3b3f2012-06-11 17:45:25 +02002783 ivrs_base = NULL;
2784
Joerg Roedel8704a1b2012-03-01 15:57:53 +01002785 return ret;
Joerg Roedel643511b2012-06-12 12:09:35 +02002786}
2787
Gerard Snitselaarae295142012-03-16 11:38:22 -07002788static int amd_iommu_enable_interrupts(void)
Joerg Roedel3d9761e2012-03-15 16:39:21 +01002789{
2790 struct amd_iommu *iommu;
2791 int ret = 0;
2792
2793 for_each_iommu(iommu) {
David Woodhoused1adcfb2020-11-11 12:09:01 +00002794 ret = iommu_init_irq(iommu);
Joerg Roedel3d9761e2012-03-15 16:39:21 +01002795 if (ret)
2796 goto out;
2797 }
2798
2799out:
2800 return ret;
2801}
2802
Joerg Roedel02f3b3f2012-06-11 17:45:25 +02002803static bool detect_ivrs(void)
2804{
2805 struct acpi_table_header *ivrs_base;
Joerg Roedel02f3b3f2012-06-11 17:45:25 +02002806 acpi_status status;
2807
Lv Zheng6b11d1d2016-12-14 15:04:39 +08002808 status = acpi_get_table("IVRS", 0, &ivrs_base);
Joerg Roedel02f3b3f2012-06-11 17:45:25 +02002809 if (status == AE_NOT_FOUND)
2810 return false;
2811 else if (ACPI_FAILURE(status)) {
2812 const char *err = acpi_format_exception(status);
Joerg Roedel101fa032018-11-27 16:22:31 +01002813 pr_err("IVRS table error: %s\n", err);
Joerg Roedel02f3b3f2012-06-11 17:45:25 +02002814 return false;
2815 }
2816
Lv Zheng6b11d1d2016-12-14 15:04:39 +08002817 acpi_put_table(ivrs_base);
Joerg Roedel02f3b3f2012-06-11 17:45:25 +02002818
Joerg Roedel1adb7d32012-08-06 14:18:42 +02002819 /* Make sure ACS will be enabled during PCI probe */
2820 pci_request_acs();
2821
Joerg Roedel02f3b3f2012-06-11 17:45:25 +02002822 return true;
2823}
2824
Joerg Roedel2c0ae172012-06-12 15:59:30 +02002825/****************************************************************************
2826 *
2827 * AMD IOMMU Initialization State Machine
2828 *
2829 ****************************************************************************/
2830
2831static int __init state_next(void)
2832{
2833 int ret = 0;
2834
2835 switch (init_state) {
2836 case IOMMU_START_STATE:
2837 if (!detect_ivrs()) {
2838 init_state = IOMMU_NOT_FOUND;
2839 ret = -ENODEV;
2840 } else {
2841 init_state = IOMMU_IVRS_DETECTED;
2842 }
2843 break;
2844 case IOMMU_IVRS_DETECTED:
2845 ret = early_amd_iommu_init();
2846 init_state = ret ? IOMMU_INIT_ERROR : IOMMU_ACPI_FINISHED;
Joerg Roedel7ad820e2017-06-16 16:09:59 +02002847 if (init_state == IOMMU_ACPI_FINISHED && amd_iommu_disabled) {
Kai-Heng Feng3dfee472020-02-10 15:51:15 +08002848 pr_info("AMD IOMMU disabled\n");
Joerg Roedel7ad820e2017-06-16 16:09:59 +02002849 init_state = IOMMU_CMDLINE_DISABLED;
2850 ret = -EINVAL;
2851 }
Joerg Roedel2c0ae172012-06-12 15:59:30 +02002852 break;
2853 case IOMMU_ACPI_FINISHED:
2854 early_enable_iommus();
Joerg Roedel2c0ae172012-06-12 15:59:30 +02002855 x86_platform.iommu_shutdown = disable_iommus;
2856 init_state = IOMMU_ENABLED;
2857 break;
2858 case IOMMU_ENABLED:
Joerg Roedel74ddda72017-07-26 14:17:55 +02002859 register_syscore_ops(&amd_iommu_syscore_ops);
Joerg Roedel2c0ae172012-06-12 15:59:30 +02002860 ret = amd_iommu_init_pci();
2861 init_state = ret ? IOMMU_INIT_ERROR : IOMMU_PCI_INIT;
2862 enable_iommus_v2();
2863 break;
2864 case IOMMU_PCI_INIT:
2865 ret = amd_iommu_enable_interrupts();
2866 init_state = ret ? IOMMU_INIT_ERROR : IOMMU_INTERRUPTS_EN;
2867 break;
2868 case IOMMU_INTERRUPTS_EN:
Joerg Roedel1e6a7b02015-07-28 16:58:48 +02002869 ret = amd_iommu_init_dma_ops();
Joerg Roedel2c0ae172012-06-12 15:59:30 +02002870 init_state = ret ? IOMMU_INIT_ERROR : IOMMU_DMA_OPS;
2871 break;
2872 case IOMMU_DMA_OPS:
2873 init_state = IOMMU_INITIALIZED;
2874 break;
2875 case IOMMU_INITIALIZED:
2876 /* Nothing to do */
2877 break;
2878 case IOMMU_NOT_FOUND:
2879 case IOMMU_INIT_ERROR:
Joerg Roedel1b1e9422017-06-16 16:09:56 +02002880 case IOMMU_CMDLINE_DISABLED:
Joerg Roedel2c0ae172012-06-12 15:59:30 +02002881 /* Error states => do nothing */
2882 ret = -EINVAL;
2883 break;
2884 default:
2885 /* Unknown state */
2886 BUG();
2887 }
2888
Kevin Mitchell5c905012019-06-12 14:52:05 -07002889 if (ret) {
2890 free_dma_resources();
2891 if (!irq_remapping_enabled) {
2892 disable_iommus();
2893 free_iommu_resources();
2894 } else {
2895 struct amd_iommu *iommu;
2896
2897 uninit_device_table_dma();
2898 for_each_iommu(iommu)
2899 iommu_flush_all_caches(iommu);
2900 }
2901 }
Joerg Roedel2c0ae172012-06-12 15:59:30 +02002902 return ret;
2903}
2904
2905static int __init iommu_go_to_state(enum iommu_init_state state)
2906{
Joerg Roedel151b0902017-06-16 16:09:57 +02002907 int ret = -EINVAL;
Joerg Roedel2c0ae172012-06-12 15:59:30 +02002908
2909 while (init_state != state) {
Joerg Roedel1b1e9422017-06-16 16:09:56 +02002910 if (init_state == IOMMU_NOT_FOUND ||
2911 init_state == IOMMU_INIT_ERROR ||
2912 init_state == IOMMU_CMDLINE_DISABLED)
Joerg Roedel2c0ae172012-06-12 15:59:30 +02002913 break;
Joerg Roedel151b0902017-06-16 16:09:57 +02002914 ret = state_next();
Joerg Roedel2c0ae172012-06-12 15:59:30 +02002915 }
2916
2917 return ret;
2918}
2919
Joerg Roedel6b474b82012-06-26 16:46:04 +02002920#ifdef CONFIG_IRQ_REMAP
2921int __init amd_iommu_prepare(void)
2922{
Thomas Gleixner3f4cb7c2015-01-23 14:32:46 +01002923 int ret;
2924
Jiang Liu7fa1c842015-01-07 15:31:42 +08002925 amd_iommu_irq_remap = true;
Joerg Roedel84d07792015-01-07 15:31:39 +08002926
Thomas Gleixner3f4cb7c2015-01-23 14:32:46 +01002927 ret = iommu_go_to_state(IOMMU_ACPI_FINISHED);
2928 if (ret)
2929 return ret;
2930 return amd_iommu_irq_remap ? 0 : -ENODEV;
Joerg Roedel6b474b82012-06-26 16:46:04 +02002931}
Joerg Roedel2c0ae172012-06-12 15:59:30 +02002932
Joerg Roedel6b474b82012-06-26 16:46:04 +02002933int __init amd_iommu_enable(void)
2934{
2935 int ret;
2936
2937 ret = iommu_go_to_state(IOMMU_ENABLED);
2938 if (ret)
2939 return ret;
2940
2941 irq_remapping_enabled = 1;
Suravee Suthikulpanit90fcffd2018-06-27 10:31:22 -05002942 return amd_iommu_xt_mode;
Joerg Roedel6b474b82012-06-26 16:46:04 +02002943}
2944
2945void amd_iommu_disable(void)
2946{
2947 amd_iommu_suspend();
2948}
2949
2950int amd_iommu_reenable(int mode)
2951{
2952 amd_iommu_resume();
2953
2954 return 0;
2955}
2956
2957int __init amd_iommu_enable_faulting(void)
2958{
2959 /* We enable MSI later when PCI is initialized */
2960 return 0;
2961}
2962#endif
Joerg Roedel2c0ae172012-06-12 15:59:30 +02002963
Joerg Roedel8704a1b2012-03-01 15:57:53 +01002964/*
2965 * This is the core init function for AMD IOMMU hardware in the system.
2966 * This function is called from the generic x86 DMA layer initialization
2967 * code.
Joerg Roedel8704a1b2012-03-01 15:57:53 +01002968 */
2969static int __init amd_iommu_init(void)
2970{
Gary R Hook7d0f5fd2018-06-12 16:41:30 -05002971 struct amd_iommu *iommu;
Joerg Roedel2c0ae172012-06-12 15:59:30 +02002972 int ret;
Joerg Roedel8704a1b2012-03-01 15:57:53 +01002973
Joerg Roedel2c0ae172012-06-12 15:59:30 +02002974 ret = iommu_go_to_state(IOMMU_INITIALIZED);
Kevin Mitchellbf4bff42019-06-12 14:52:04 -07002975#ifdef CONFIG_GART_IOMMU
2976 if (ret && list_empty(&amd_iommu_list)) {
2977 /*
2978 * We failed to initialize the AMD IOMMU - try fallback
2979 * to GART if possible.
2980 */
2981 gart_iommu_init();
Joerg Roedel2c0ae172012-06-12 15:59:30 +02002982 }
Kevin Mitchellbf4bff42019-06-12 14:52:04 -07002983#endif
Joerg Roedel8704a1b2012-03-01 15:57:53 +01002984
Gary R Hook7d0f5fd2018-06-12 16:41:30 -05002985 for_each_iommu(iommu)
2986 amd_iommu_debugfs_setup(iommu);
2987
Joerg Roedelfe74c9c2008-06-26 21:27:50 +02002988 return ret;
Joerg Roedelfe74c9c2008-06-26 21:27:50 +02002989}
2990
Tom Lendacky2543a782017-07-17 16:10:24 -05002991static bool amd_iommu_sme_check(void)
2992{
2993 if (!sme_active() || (boot_cpu_data.x86 != 0x17))
2994 return true;
2995
2996 /* For Fam17h, a specific level of support is required */
2997 if (boot_cpu_data.microcode >= 0x08001205)
2998 return true;
2999
3000 if ((boot_cpu_data.microcode >= 0x08001126) &&
3001 (boot_cpu_data.microcode <= 0x080011ff))
3002 return true;
3003
Joerg Roedel101fa032018-11-27 16:22:31 +01003004 pr_notice("IOMMU not currently supported when SME is active\n");
Tom Lendacky2543a782017-07-17 16:10:24 -05003005
3006 return false;
3007}
3008
Joerg Roedelb65233a2008-07-11 17:14:21 +02003009/****************************************************************************
3010 *
3011 * Early detect code. This code runs at IOMMU detection time in the DMA
3012 * layer. It just looks if there is an IVRS ACPI table to detect AMD
3013 * IOMMUs
3014 *
3015 ****************************************************************************/
Konrad Rzeszutek Wilk480125b2010-08-26 13:57:57 -04003016int __init amd_iommu_detect(void)
Joerg Roedelae7877d2008-06-26 21:27:51 +02003017{
Joerg Roedel2c0ae172012-06-12 15:59:30 +02003018 int ret;
Joerg Roedel02f3b3f2012-06-11 17:45:25 +02003019
FUJITA Tomonori75f1cdf2009-11-10 19:46:20 +09003020 if (no_iommu || (iommu_detected && !gart_iommu_aperture))
Konrad Rzeszutek Wilk480125b2010-08-26 13:57:57 -04003021 return -ENODEV;
Joerg Roedelae7877d2008-06-26 21:27:51 +02003022
Tom Lendacky2543a782017-07-17 16:10:24 -05003023 if (!amd_iommu_sme_check())
3024 return -ENODEV;
3025
Joerg Roedel2c0ae172012-06-12 15:59:30 +02003026 ret = iommu_go_to_state(IOMMU_IVRS_DETECTED);
3027 if (ret)
3028 return ret;
Linus Torvalds11bd04f2009-12-11 12:18:16 -08003029
Joerg Roedel02f3b3f2012-06-11 17:45:25 +02003030 amd_iommu_detected = true;
3031 iommu_detected = 1;
3032 x86_init.iommu.iommu_init = amd_iommu_init;
3033
Jérôme Glisse4781bc42015-08-31 18:13:03 -04003034 return 1;
Joerg Roedelae7877d2008-06-26 21:27:51 +02003035}
3036
Joerg Roedelb65233a2008-07-11 17:14:21 +02003037/****************************************************************************
3038 *
3039 * Parsing functions for the AMD IOMMU specific kernel command line
3040 * options.
3041 *
3042 ****************************************************************************/
3043
Joerg Roedelfefda112009-05-20 12:21:42 +02003044static int __init parse_amd_iommu_dump(char *str)
3045{
3046 amd_iommu_dump = true;
3047
3048 return 1;
3049}
3050
Suravee Suthikulpanit3928aa32016-08-23 13:52:32 -05003051static int __init parse_amd_iommu_intr(char *str)
3052{
3053 for (; *str; ++str) {
3054 if (strncmp(str, "legacy", 6) == 0) {
Suravee Suthikulpanitb74aa022020-04-22 08:30:02 -05003055 amd_iommu_guest_ir = AMD_IOMMU_GUEST_IR_LEGACY_GA;
Suravee Suthikulpanit3928aa32016-08-23 13:52:32 -05003056 break;
3057 }
3058 if (strncmp(str, "vapic", 5) == 0) {
3059 amd_iommu_guest_ir = AMD_IOMMU_GUEST_IR_VAPIC;
3060 break;
3061 }
3062 }
3063 return 1;
3064}
3065
Joerg Roedel918ad6c2008-06-26 21:27:52 +02003066static int __init parse_amd_iommu_options(char *str)
3067{
3068 for (; *str; ++str) {
Joerg Roedel695b5672008-11-17 15:16:43 +01003069 if (strncmp(str, "fullflush", 9) == 0)
FUJITA Tomonoriafa9fdc2008-09-20 01:23:30 +09003070 amd_iommu_unmap_flush = true;
Joerg Roedela5235722010-05-11 17:12:33 +02003071 if (strncmp(str, "off", 3) == 0)
3072 amd_iommu_disabled = true;
Joerg Roedel5abcdba2011-12-01 15:49:45 +01003073 if (strncmp(str, "force_isolation", 15) == 0)
3074 amd_iommu_force_isolation = true;
Joerg Roedel918ad6c2008-06-26 21:27:52 +02003075 }
3076
3077 return 1;
3078}
3079
Joerg Roedel440e89982013-04-09 16:35:28 +02003080static int __init parse_ivrs_ioapic(char *str)
3081{
3082 unsigned int bus, dev, fn;
3083 int ret, id, i;
3084 u16 devid;
3085
3086 ret = sscanf(str, "[%d]=%x:%x.%x", &id, &bus, &dev, &fn);
3087
3088 if (ret != 4) {
Joerg Roedel101fa032018-11-27 16:22:31 +01003089 pr_err("Invalid command line: ivrs_ioapic%s\n", str);
Joerg Roedel440e89982013-04-09 16:35:28 +02003090 return 1;
3091 }
3092
3093 if (early_ioapic_map_size == EARLY_MAP_SIZE) {
Joerg Roedel101fa032018-11-27 16:22:31 +01003094 pr_err("Early IOAPIC map overflow - ignoring ivrs_ioapic%s\n",
Joerg Roedel440e89982013-04-09 16:35:28 +02003095 str);
3096 return 1;
3097 }
3098
3099 devid = ((bus & 0xff) << 8) | ((dev & 0x1f) << 3) | (fn & 0x7);
3100
Joerg Roedeldfbb6d42013-04-09 19:06:18 +02003101 cmdline_maps = true;
Joerg Roedel440e89982013-04-09 16:35:28 +02003102 i = early_ioapic_map_size++;
3103 early_ioapic_map[i].id = id;
3104 early_ioapic_map[i].devid = devid;
3105 early_ioapic_map[i].cmd_line = true;
3106
3107 return 1;
3108}
3109
3110static int __init parse_ivrs_hpet(char *str)
3111{
3112 unsigned int bus, dev, fn;
3113 int ret, id, i;
3114 u16 devid;
3115
3116 ret = sscanf(str, "[%d]=%x:%x.%x", &id, &bus, &dev, &fn);
3117
3118 if (ret != 4) {
Joerg Roedel101fa032018-11-27 16:22:31 +01003119 pr_err("Invalid command line: ivrs_hpet%s\n", str);
Joerg Roedel440e89982013-04-09 16:35:28 +02003120 return 1;
3121 }
3122
3123 if (early_hpet_map_size == EARLY_MAP_SIZE) {
Joerg Roedel101fa032018-11-27 16:22:31 +01003124 pr_err("Early HPET map overflow - ignoring ivrs_hpet%s\n",
Joerg Roedel440e89982013-04-09 16:35:28 +02003125 str);
3126 return 1;
3127 }
3128
3129 devid = ((bus & 0xff) << 8) | ((dev & 0x1f) << 3) | (fn & 0x7);
3130
Joerg Roedeldfbb6d42013-04-09 19:06:18 +02003131 cmdline_maps = true;
Joerg Roedel440e89982013-04-09 16:35:28 +02003132 i = early_hpet_map_size++;
3133 early_hpet_map[i].id = id;
3134 early_hpet_map[i].devid = devid;
3135 early_hpet_map[i].cmd_line = true;
3136
3137 return 1;
3138}
3139
Suravee Suthikulpanitca3bf5d2016-04-01 09:06:01 -04003140static int __init parse_ivrs_acpihid(char *str)
3141{
3142 u32 bus, dev, fn;
3143 char *hid, *uid, *p;
3144 char acpiid[ACPIHID_UID_LEN + ACPIHID_HID_LEN] = {0};
3145 int ret, i;
3146
3147 ret = sscanf(str, "[%x:%x.%x]=%s", &bus, &dev, &fn, acpiid);
3148 if (ret != 4) {
Joerg Roedel101fa032018-11-27 16:22:31 +01003149 pr_err("Invalid command line: ivrs_acpihid(%s)\n", str);
Suravee Suthikulpanitca3bf5d2016-04-01 09:06:01 -04003150 return 1;
3151 }
3152
3153 p = acpiid;
3154 hid = strsep(&p, ":");
3155 uid = p;
3156
3157 if (!hid || !(*hid) || !uid) {
Joerg Roedel101fa032018-11-27 16:22:31 +01003158 pr_err("Invalid command line: hid or uid\n");
Suravee Suthikulpanitca3bf5d2016-04-01 09:06:01 -04003159 return 1;
3160 }
3161
3162 i = early_acpihid_map_size++;
3163 memcpy(early_acpihid_map[i].hid, hid, strlen(hid));
3164 memcpy(early_acpihid_map[i].uid, uid, strlen(uid));
3165 early_acpihid_map[i].devid =
3166 ((bus & 0xff) << 8) | ((dev & 0x1f) << 3) | (fn & 0x7);
3167 early_acpihid_map[i].cmd_line = true;
3168
3169 return 1;
3170}
3171
Joerg Roedel440e89982013-04-09 16:35:28 +02003172__setup("amd_iommu_dump", parse_amd_iommu_dump);
3173__setup("amd_iommu=", parse_amd_iommu_options);
Suravee Suthikulpanit3928aa32016-08-23 13:52:32 -05003174__setup("amd_iommu_intr=", parse_amd_iommu_intr);
Joerg Roedel440e89982013-04-09 16:35:28 +02003175__setup("ivrs_ioapic", parse_ivrs_ioapic);
3176__setup("ivrs_hpet", parse_ivrs_hpet);
Suravee Suthikulpanitca3bf5d2016-04-01 09:06:01 -04003177__setup("ivrs_acpihid", parse_ivrs_acpihid);
Konrad Rzeszutek Wilk22e6daf2010-08-26 13:58:03 -04003178
3179IOMMU_INIT_FINISH(amd_iommu_detect,
3180 gart_iommu_hole_init,
Joerg Roedel98f1ad22012-07-06 13:28:37 +02003181 NULL,
3182 NULL);
Joerg Roedel400a28a2011-11-28 15:11:02 +01003183
3184bool amd_iommu_v2_supported(void)
3185{
3186 return amd_iommu_v2_present;
3187}
3188EXPORT_SYMBOL(amd_iommu_v2_supported);
Steven L Kinney30861dd2013-06-05 16:11:48 -05003189
Suravee Suthikulpanitf5863a02017-02-24 02:48:18 -06003190struct amd_iommu *get_amd_iommu(unsigned int idx)
3191{
3192 unsigned int i = 0;
3193 struct amd_iommu *iommu;
3194
3195 for_each_iommu(iommu)
3196 if (i++ == idx)
3197 return iommu;
3198 return NULL;
3199}
3200EXPORT_SYMBOL(get_amd_iommu);
3201
Steven L Kinney30861dd2013-06-05 16:11:48 -05003202/****************************************************************************
3203 *
3204 * IOMMU EFR Performance Counter support functionality. This code allows
3205 * access to the IOMMU PC functionality.
3206 *
3207 ****************************************************************************/
3208
Suravee Suthikulpanitf5863a02017-02-24 02:48:18 -06003209u8 amd_iommu_pc_get_max_banks(unsigned int idx)
Steven L Kinney30861dd2013-06-05 16:11:48 -05003210{
Suravee Suthikulpanitf5863a02017-02-24 02:48:18 -06003211 struct amd_iommu *iommu = get_amd_iommu(idx);
Steven L Kinney30861dd2013-06-05 16:11:48 -05003212
Steven L Kinney30861dd2013-06-05 16:11:48 -05003213 if (iommu)
Suravee Suthikulpanitf5863a02017-02-24 02:48:18 -06003214 return iommu->max_banks;
Steven L Kinney30861dd2013-06-05 16:11:48 -05003215
Suravee Suthikulpanitf5863a02017-02-24 02:48:18 -06003216 return 0;
Steven L Kinney30861dd2013-06-05 16:11:48 -05003217}
3218EXPORT_SYMBOL(amd_iommu_pc_get_max_banks);
3219
3220bool amd_iommu_pc_supported(void)
3221{
3222 return amd_iommu_pc_present;
3223}
3224EXPORT_SYMBOL(amd_iommu_pc_supported);
3225
Suravee Suthikulpanitf5863a02017-02-24 02:48:18 -06003226u8 amd_iommu_pc_get_max_counters(unsigned int idx)
Steven L Kinney30861dd2013-06-05 16:11:48 -05003227{
Suravee Suthikulpanitf5863a02017-02-24 02:48:18 -06003228 struct amd_iommu *iommu = get_amd_iommu(idx);
Steven L Kinney30861dd2013-06-05 16:11:48 -05003229
Steven L Kinney30861dd2013-06-05 16:11:48 -05003230 if (iommu)
Suravee Suthikulpanitf5863a02017-02-24 02:48:18 -06003231 return iommu->max_counters;
Steven L Kinney30861dd2013-06-05 16:11:48 -05003232
Suravee Suthikulpanitf5863a02017-02-24 02:48:18 -06003233 return 0;
Steven L Kinney30861dd2013-06-05 16:11:48 -05003234}
3235EXPORT_SYMBOL(amd_iommu_pc_get_max_counters);
3236
Suravee Suthikulpanit1650dfd2017-02-24 02:48:19 -06003237static int iommu_pc_get_set_reg(struct amd_iommu *iommu, u8 bank, u8 cntr,
3238 u8 fxn, u64 *value, bool is_write)
Steven L Kinney30861dd2013-06-05 16:11:48 -05003239{
Steven L Kinney30861dd2013-06-05 16:11:48 -05003240 u32 offset;
3241 u32 max_offset_lim;
3242
Suravee Suthikulpanit1650dfd2017-02-24 02:48:19 -06003243 /* Make sure the IOMMU PC resource is available */
3244 if (!amd_iommu_pc_present)
3245 return -ENODEV;
3246
Steven L Kinney30861dd2013-06-05 16:11:48 -05003247 /* Check for valid iommu and pc register indexing */
Suravee Suthikulpanit1650dfd2017-02-24 02:48:19 -06003248 if (WARN_ON(!iommu || (fxn > 0x28) || (fxn & 7)))
Steven L Kinney30861dd2013-06-05 16:11:48 -05003249 return -ENODEV;
3250
Suravee Suthikulpanit0a6d80c2017-02-24 02:48:16 -06003251 offset = (u32)(((0x40 | bank) << 12) | (cntr << 8) | fxn);
Steven L Kinney30861dd2013-06-05 16:11:48 -05003252
3253 /* Limit the offset to the hw defined mmio region aperture */
Suravee Suthikulpanit0a6d80c2017-02-24 02:48:16 -06003254 max_offset_lim = (u32)(((0x40 | iommu->max_banks) << 12) |
Steven L Kinney30861dd2013-06-05 16:11:48 -05003255 (iommu->max_counters << 8) | 0x28);
3256 if ((offset < MMIO_CNTR_REG_OFFSET) ||
3257 (offset > max_offset_lim))
3258 return -EINVAL;
3259
3260 if (is_write) {
Suravee Suthikulpanit0a6d80c2017-02-24 02:48:16 -06003261 u64 val = *value & GENMASK_ULL(47, 0);
3262
3263 writel((u32)val, iommu->mmio_base + offset);
3264 writel((val >> 32), iommu->mmio_base + offset + 4);
Steven L Kinney30861dd2013-06-05 16:11:48 -05003265 } else {
3266 *value = readl(iommu->mmio_base + offset + 4);
3267 *value <<= 32;
Suravee Suthikulpanit0a6d80c2017-02-24 02:48:16 -06003268 *value |= readl(iommu->mmio_base + offset);
3269 *value &= GENMASK_ULL(47, 0);
Steven L Kinney30861dd2013-06-05 16:11:48 -05003270 }
3271
3272 return 0;
3273}
Suravee Suthikulpanit38e45d02016-02-23 13:03:30 +01003274
Suravee Suthikulpanit1650dfd2017-02-24 02:48:19 -06003275int amd_iommu_pc_get_reg(struct amd_iommu *iommu, u8 bank, u8 cntr, u8 fxn, u64 *value)
Suravee Suthikulpanit38e45d02016-02-23 13:03:30 +01003276{
Suravee Suthikulpanit1650dfd2017-02-24 02:48:19 -06003277 if (!iommu)
3278 return -EINVAL;
Suravee Suthikulpanit38e45d02016-02-23 13:03:30 +01003279
Suravee Suthikulpanit1650dfd2017-02-24 02:48:19 -06003280 return iommu_pc_get_set_reg(iommu, bank, cntr, fxn, value, false);
Suravee Suthikulpanit38e45d02016-02-23 13:03:30 +01003281}
Suravee Suthikulpanit1650dfd2017-02-24 02:48:19 -06003282EXPORT_SYMBOL(amd_iommu_pc_get_reg);
3283
3284int amd_iommu_pc_set_reg(struct amd_iommu *iommu, u8 bank, u8 cntr, u8 fxn, u64 *value)
3285{
3286 if (!iommu)
3287 return -EINVAL;
3288
3289 return iommu_pc_get_set_reg(iommu, bank, cntr, fxn, value, true);
3290}
3291EXPORT_SYMBOL(amd_iommu_pc_set_reg);