Thomas Gleixner | 4505153 | 2019-05-29 16:57:47 -0700 | [diff] [blame] | 1 | // SPDX-License-Identifier: GPL-2.0-only |
Joerg Roedel | f6e2e6b | 2008-06-26 21:27:39 +0200 | [diff] [blame] | 2 | /* |
Joerg Roedel | 5d0d715 | 2010-10-13 11:13:21 +0200 | [diff] [blame] | 3 | * Copyright (C) 2007-2010 Advanced Micro Devices, Inc. |
Joerg Roedel | 63ce3ae | 2015-02-04 16:12:55 +0100 | [diff] [blame] | 4 | * Author: Joerg Roedel <jroedel@suse.de> |
Joerg Roedel | f6e2e6b | 2008-06-26 21:27:39 +0200 | [diff] [blame] | 5 | * Leo Duran <leo.duran@amd.com> |
Joerg Roedel | f6e2e6b | 2008-06-26 21:27:39 +0200 | [diff] [blame] | 6 | */ |
| 7 | |
Joerg Roedel | 101fa03 | 2018-11-27 16:22:31 +0100 | [diff] [blame] | 8 | #define pr_fmt(fmt) "AMD-Vi: " fmt |
Bjorn Helgaas | 5f226da | 2019-02-08 16:05:53 -0600 | [diff] [blame] | 9 | #define dev_fmt(fmt) pr_fmt(fmt) |
Joerg Roedel | 101fa03 | 2018-11-27 16:22:31 +0100 | [diff] [blame] | 10 | |
Joerg Roedel | f6e2e6b | 2008-06-26 21:27:39 +0200 | [diff] [blame] | 11 | #include <linux/pci.h> |
| 12 | #include <linux/acpi.h> |
Joerg Roedel | f6e2e6b | 2008-06-26 21:27:39 +0200 | [diff] [blame] | 13 | #include <linux/list.h> |
Baoquan He | 5c87f62 | 2016-09-15 16:50:51 +0800 | [diff] [blame] | 14 | #include <linux/bitmap.h> |
Tejun Heo | 5a0e3ad | 2010-03-24 17:04:11 +0900 | [diff] [blame] | 15 | #include <linux/slab.h> |
Rafael J. Wysocki | f3c6ea1 | 2011-03-23 22:15:54 +0100 | [diff] [blame] | 16 | #include <linux/syscore_ops.h> |
Joerg Roedel | a80dc3e | 2008-09-11 16:51:41 +0200 | [diff] [blame] | 17 | #include <linux/interrupt.h> |
| 18 | #include <linux/msi.h> |
David Woodhouse | d1adcfb | 2020-11-11 12:09:01 +0000 | [diff] [blame] | 19 | #include <linux/irq.h> |
Joerg Roedel | 403f81d | 2011-06-14 16:44:25 +0200 | [diff] [blame] | 20 | #include <linux/amd-iommu.h> |
Joerg Roedel | 400a28a | 2011-11-28 15:11:02 +0100 | [diff] [blame] | 21 | #include <linux/export.h> |
Lucas Stach | ebcfa28 | 2016-10-26 13:09:53 +0200 | [diff] [blame] | 22 | #include <linux/kmemleak.h> |
Tom Lendacky | 2543a78 | 2017-07-17 16:10:24 -0500 | [diff] [blame] | 23 | #include <linux/mem_encrypt.h> |
Joerg Roedel | f6e2e6b | 2008-06-26 21:27:39 +0200 | [diff] [blame] | 24 | #include <asm/pci-direct.h> |
FUJITA Tomonori | 46a7fa2 | 2008-07-11 10:23:42 +0900 | [diff] [blame] | 25 | #include <asm/iommu.h> |
Suthikulpanit, Suravee | 6692981 | 2019-07-16 04:29:16 +0000 | [diff] [blame] | 26 | #include <asm/apic.h> |
Joerg Roedel | 1d9b16d | 2008-11-27 18:39:15 +0100 | [diff] [blame] | 27 | #include <asm/gart.h> |
FUJITA Tomonori | ea1b0d3 | 2009-11-10 19:46:15 +0900 | [diff] [blame] | 28 | #include <asm/x86_init.h> |
Konrad Rzeszutek Wilk | 22e6daf | 2010-08-26 13:58:03 -0400 | [diff] [blame] | 29 | #include <asm/iommu_table.h> |
Joerg Roedel | eb1eb7a | 2012-07-05 11:58:02 +0200 | [diff] [blame] | 30 | #include <asm/io_apic.h> |
Joerg Roedel | 6b474b8 | 2012-06-26 16:46:04 +0200 | [diff] [blame] | 31 | #include <asm/irq_remapping.h> |
Suravee Suthikulpanit | 6d39bde | 2020-11-05 14:58:32 +0000 | [diff] [blame] | 32 | #include <asm/set_memory.h> |
Joerg Roedel | 403f81d | 2011-06-14 16:44:25 +0200 | [diff] [blame] | 33 | |
Baoquan He | 3ac3e5ee | 2017-08-09 16:33:38 +0800 | [diff] [blame] | 34 | #include <linux/crash_dump.h> |
Joerg Roedel | 786dfe4 | 2020-05-27 13:53:11 +0200 | [diff] [blame] | 35 | |
Kai-Heng Feng | 93d0515 | 2019-08-21 13:10:04 +0800 | [diff] [blame] | 36 | #include "amd_iommu.h" |
Joerg Roedel | ad8694b | 2020-06-09 15:03:02 +0200 | [diff] [blame] | 37 | #include "../irq_remapping.h" |
Joerg Roedel | 403f81d | 2011-06-14 16:44:25 +0200 | [diff] [blame] | 38 | |
Joerg Roedel | f6e2e6b | 2008-06-26 21:27:39 +0200 | [diff] [blame] | 39 | /* |
| 40 | * definitions for the ACPI scanning code |
| 41 | */ |
Joerg Roedel | f6e2e6b | 2008-06-26 21:27:39 +0200 | [diff] [blame] | 42 | #define IVRS_HEADER_LENGTH 48 |
Joerg Roedel | f6e2e6b | 2008-06-26 21:27:39 +0200 | [diff] [blame] | 43 | |
Suravee Suthikulpanit | 8c7142f | 2016-04-01 09:05:59 -0400 | [diff] [blame] | 44 | #define ACPI_IVHD_TYPE_MAX_SUPPORTED 0x40 |
Joerg Roedel | f6e2e6b | 2008-06-26 21:27:39 +0200 | [diff] [blame] | 45 | #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 Roedel | 6efed63 | 2012-06-14 15:52:58 +0200 | [diff] [blame] | 57 | #define IVHD_DEV_SPECIAL 0x48 |
Suravee Suthikulpanit | 8c7142f | 2016-04-01 09:05:59 -0400 | [diff] [blame] | 58 | #define IVHD_DEV_ACPI_HID 0xf0 |
Joerg Roedel | 6efed63 | 2012-06-14 15:52:58 +0200 | [diff] [blame] | 59 | |
Wan Zongshun | 2a0cb4e | 2016-04-01 09:06:00 -0400 | [diff] [blame] | 60 | #define UID_NOT_PRESENT 0 |
| 61 | #define UID_IS_INTEGER 1 |
| 62 | #define UID_IS_CHARACTER 2 |
| 63 | |
Joerg Roedel | 6efed63 | 2012-06-14 15:52:58 +0200 | [diff] [blame] | 64 | #define IVHD_SPECIAL_IOAPIC 1 |
| 65 | #define IVHD_SPECIAL_HPET 2 |
Joerg Roedel | f6e2e6b | 2008-06-26 21:27:39 +0200 | [diff] [blame] | 66 | |
Joerg Roedel | 6da7342 | 2009-05-04 11:44:38 +0200 | [diff] [blame] | 67 | #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 Roedel | f6e2e6b | 2008-06-26 21:27:39 +0200 | [diff] [blame] | 71 | |
| 72 | #define IVMD_FLAG_EXCL_RANGE 0x08 |
Adrian Huang | 387caf0 | 2019-11-14 14:14:47 +0800 | [diff] [blame] | 73 | #define IVMD_FLAG_IW 0x04 |
| 74 | #define IVMD_FLAG_IR 0x02 |
Joerg Roedel | f6e2e6b | 2008-06-26 21:27:39 +0200 | [diff] [blame] | 75 | #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 Suthikulpanit | 8bda0cf | 2016-08-23 13:52:36 -0500 | [diff] [blame] | 86 | #define LOOP_TIMEOUT 100000 |
Joerg Roedel | b65233a | 2008-07-11 17:14:21 +0200 | [diff] [blame] | 87 | /* |
| 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 Roedel | b0119e8 | 2017-02-01 13:23:08 +0100 | [diff] [blame] | 94 | extern const struct iommu_ops amd_iommu_ops; |
| 95 | |
Joerg Roedel | b65233a | 2008-07-11 17:14:21 +0200 | [diff] [blame] | 96 | /* |
| 97 | * structure describing one IOMMU in the ACPI table. Typically followed by one |
| 98 | * or more ivhd_entrys. |
| 99 | */ |
Joerg Roedel | f6e2e6b | 2008-06-26 21:27:39 +0200 | [diff] [blame] | 100 | struct 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 Suthikulpanit | 7d7d38a | 2016-04-01 09:05:57 -0400 | [diff] [blame] | 109 | 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 Roedel | f6e2e6b | 2008-06-26 21:27:39 +0200 | [diff] [blame] | 114 | } __attribute__((packed)); |
| 115 | |
Joerg Roedel | b65233a | 2008-07-11 17:14:21 +0200 | [diff] [blame] | 116 | /* |
| 117 | * A device entry describing which devices a specific IOMMU translates and |
| 118 | * which requestor ids they use. |
| 119 | */ |
Joerg Roedel | f6e2e6b | 2008-06-26 21:27:39 +0200 | [diff] [blame] | 120 | struct ivhd_entry { |
| 121 | u8 type; |
| 122 | u16 devid; |
| 123 | u8 flags; |
| 124 | u32 ext; |
Wan Zongshun | 2a0cb4e | 2016-04-01 09:06:00 -0400 | [diff] [blame] | 125 | u32 hidh; |
| 126 | u64 cid; |
| 127 | u8 uidf; |
| 128 | u8 uidl; |
| 129 | u8 uid; |
Joerg Roedel | f6e2e6b | 2008-06-26 21:27:39 +0200 | [diff] [blame] | 130 | } __attribute__((packed)); |
| 131 | |
Joerg Roedel | b65233a | 2008-07-11 17:14:21 +0200 | [diff] [blame] | 132 | /* |
| 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 Roedel | f6e2e6b | 2008-06-26 21:27:39 +0200 | [diff] [blame] | 136 | struct 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 Roedel | fefda11 | 2009-05-20 12:21:42 +0200 | [diff] [blame] | 147 | bool amd_iommu_dump; |
Joerg Roedel | 05152a0 | 2012-06-15 16:53:51 +0200 | [diff] [blame] | 148 | bool amd_iommu_irq_remap __read_mostly; |
Joerg Roedel | fefda11 | 2009-05-20 12:21:42 +0200 | [diff] [blame] | 149 | |
Suravee Suthikulpanit | 89c9a09 | 2020-12-15 01:37:05 -0600 | [diff] [blame] | 150 | enum io_pgtable_fmt amd_iommu_pgtable = AMD_IOMMU_V1; |
| 151 | |
Suravee Suthikulpanit | d98de49 | 2016-08-23 13:52:40 -0500 | [diff] [blame] | 152 | int amd_iommu_guest_ir = AMD_IOMMU_GUEST_IR_VAPIC; |
Suravee Suthikulpanit | 8130714 | 2019-11-20 07:55:48 -0600 | [diff] [blame] | 153 | static int amd_iommu_xt_mode = IRQ_REMAP_XAPIC_MODE; |
Suravee Suthikulpanit | 3928aa3 | 2016-08-23 13:52:32 -0500 | [diff] [blame] | 154 | |
Joerg Roedel | 02f3b3f | 2012-06-11 17:45:25 +0200 | [diff] [blame] | 155 | static bool amd_iommu_detected; |
Joerg Roedel | b1e650d | 2021-06-03 15:02:03 +0200 | [diff] [blame] | 156 | static bool amd_iommu_disabled __initdata; |
| 157 | static bool amd_iommu_force_enable __initdata; |
Suravee Suthikulpanit | 8c7142f | 2016-04-01 09:05:59 -0400 | [diff] [blame] | 158 | static int amd_iommu_target_ivhd_type; |
Joerg Roedel | c1cbebe | 2008-07-03 19:35:10 +0200 | [diff] [blame] | 159 | |
Joerg Roedel | b65233a | 2008-07-11 17:14:21 +0200 | [diff] [blame] | 160 | u16 amd_iommu_last_bdf; /* largest PCI device id we have |
| 161 | to handle */ |
Joerg Roedel | 2e22847 | 2008-07-11 17:14:31 +0200 | [diff] [blame] | 162 | LIST_HEAD(amd_iommu_unity_map); /* a list of required unity mappings |
Joerg Roedel | b65233a | 2008-07-11 17:14:21 +0200 | [diff] [blame] | 163 | we find in ACPI */ |
Viresh Kumar | 621a5f7 | 2015-09-26 15:04:07 -0700 | [diff] [blame] | 164 | bool amd_iommu_unmap_flush; /* if true, flush on every unmap */ |
Joerg Roedel | 928abd2 | 2008-06-26 21:27:40 +0200 | [diff] [blame] | 165 | |
Joerg Roedel | 2e22847 | 2008-07-11 17:14:31 +0200 | [diff] [blame] | 166 | LIST_HEAD(amd_iommu_list); /* list of all AMD IOMMUs in the |
Joerg Roedel | b65233a | 2008-07-11 17:14:21 +0200 | [diff] [blame] | 167 | system */ |
| 168 | |
Joerg Roedel | bb52777 | 2009-11-20 14:31:51 +0100 | [diff] [blame] | 169 | /* Array to assign indices to IOMMUs*/ |
| 170 | struct amd_iommu *amd_iommus[MAX_IOMMUS]; |
Suravee Suthikulpanit | 6b9376e | 2017-02-24 02:48:17 -0600 | [diff] [blame] | 171 | |
| 172 | /* Number of IOMMUs present in the system */ |
| 173 | static int amd_iommus_present; |
Joerg Roedel | bb52777 | 2009-11-20 14:31:51 +0100 | [diff] [blame] | 174 | |
Joerg Roedel | 318afd4 | 2009-11-23 18:32:38 +0100 | [diff] [blame] | 175 | /* IOMMUs have a non-present cache? */ |
| 176 | bool amd_iommu_np_cache __read_mostly; |
Joerg Roedel | 60f723b | 2011-04-05 12:50:24 +0200 | [diff] [blame] | 177 | bool amd_iommu_iotlb_sup __read_mostly = true; |
Joerg Roedel | 318afd4 | 2009-11-23 18:32:38 +0100 | [diff] [blame] | 178 | |
Suravee Suthikulpanit | a919a01 | 2014-03-05 18:54:18 -0600 | [diff] [blame] | 179 | u32 amd_iommu_max_pasid __read_mostly = ~0; |
Joerg Roedel | 62f71ab | 2011-11-10 14:41:57 +0100 | [diff] [blame] | 180 | |
Joerg Roedel | 400a28a | 2011-11-28 15:11:02 +0100 | [diff] [blame] | 181 | bool amd_iommu_v2_present __read_mostly; |
Joerg Roedel | 4160cd9 | 2015-08-13 11:31:48 +0200 | [diff] [blame] | 182 | static bool amd_iommu_pc_present __read_mostly; |
Joerg Roedel | 400a28a | 2011-11-28 15:11:02 +0100 | [diff] [blame] | 183 | |
Joerg Roedel | 5abcdba | 2011-12-01 15:49:45 +0100 | [diff] [blame] | 184 | bool amd_iommu_force_isolation __read_mostly; |
| 185 | |
Joerg Roedel | b65233a | 2008-07-11 17:14:21 +0200 | [diff] [blame] | 186 | /* |
| 187 | * Pointer to the device table which is shared by all AMD IOMMUs |
| 188 | * it is indexed by the PCI device id or the HT unit id and contains |
| 189 | * information about the domain the device belongs to as well as the |
| 190 | * page table root pointer. |
| 191 | */ |
Joerg Roedel | 928abd2 | 2008-06-26 21:27:40 +0200 | [diff] [blame] | 192 | struct dev_table_entry *amd_iommu_dev_table; |
Baoquan He | 45a01c4 | 2017-08-09 16:33:37 +0800 | [diff] [blame] | 193 | /* |
| 194 | * Pointer to a device table which the content of old device table |
| 195 | * will be copied to. It's only be used in kdump kernel. |
| 196 | */ |
| 197 | static struct dev_table_entry *old_dev_tbl_cpy; |
Joerg Roedel | b65233a | 2008-07-11 17:14:21 +0200 | [diff] [blame] | 198 | |
| 199 | /* |
| 200 | * The alias table is a driver specific data structure which contains the |
| 201 | * mappings of the PCI device ids to the actual requestor ids on the IOMMU. |
| 202 | * More than one device can share the same requestor id. |
| 203 | */ |
Joerg Roedel | 928abd2 | 2008-06-26 21:27:40 +0200 | [diff] [blame] | 204 | u16 *amd_iommu_alias_table; |
Joerg Roedel | b65233a | 2008-07-11 17:14:21 +0200 | [diff] [blame] | 205 | |
| 206 | /* |
| 207 | * The rlookup table is used to find the IOMMU which is responsible |
| 208 | * for a specific device. It is also indexed by the PCI device id. |
| 209 | */ |
Joerg Roedel | 928abd2 | 2008-06-26 21:27:40 +0200 | [diff] [blame] | 210 | struct amd_iommu **amd_iommu_rlookup_table; |
Joerg Roedel | b65233a | 2008-07-11 17:14:21 +0200 | [diff] [blame] | 211 | |
| 212 | /* |
Joerg Roedel | 0ea2c42 | 2012-06-15 18:05:20 +0200 | [diff] [blame] | 213 | * This table is used to find the irq remapping table for a given device id |
| 214 | * quickly. |
| 215 | */ |
| 216 | struct irq_remap_table **irq_lookup_table; |
| 217 | |
| 218 | /* |
Frank Arnold | df805ab | 2012-08-27 19:21:04 +0200 | [diff] [blame] | 219 | * AMD IOMMU allows up to 2^16 different protection domains. This is a bitmap |
Joerg Roedel | b65233a | 2008-07-11 17:14:21 +0200 | [diff] [blame] | 220 | * to know which ones are already in use. |
| 221 | */ |
Joerg Roedel | 928abd2 | 2008-06-26 21:27:40 +0200 | [diff] [blame] | 222 | unsigned long *amd_iommu_pd_alloc_bitmap; |
| 223 | |
Joerg Roedel | b65233a | 2008-07-11 17:14:21 +0200 | [diff] [blame] | 224 | static u32 dev_table_size; /* size of the device table */ |
| 225 | static u32 alias_table_size; /* size of the alias table */ |
| 226 | static u32 rlookup_table_size; /* size if the rlookup table */ |
Joerg Roedel | 3e8064b | 2008-06-26 21:27:41 +0200 | [diff] [blame] | 227 | |
Joerg Roedel | 2c0ae17 | 2012-06-12 15:59:30 +0200 | [diff] [blame] | 228 | enum iommu_init_state { |
| 229 | IOMMU_START_STATE, |
| 230 | IOMMU_IVRS_DETECTED, |
| 231 | IOMMU_ACPI_FINISHED, |
| 232 | IOMMU_ENABLED, |
| 233 | IOMMU_PCI_INIT, |
| 234 | IOMMU_INTERRUPTS_EN, |
Joerg Roedel | 2c0ae17 | 2012-06-12 15:59:30 +0200 | [diff] [blame] | 235 | IOMMU_INITIALIZED, |
| 236 | IOMMU_NOT_FOUND, |
| 237 | IOMMU_INIT_ERROR, |
Joerg Roedel | 1b1e942 | 2017-06-16 16:09:56 +0200 | [diff] [blame] | 238 | IOMMU_CMDLINE_DISABLED, |
Joerg Roedel | 2c0ae17 | 2012-06-12 15:59:30 +0200 | [diff] [blame] | 239 | }; |
| 240 | |
Joerg Roedel | 235dacb | 2013-04-09 17:53:14 +0200 | [diff] [blame] | 241 | /* Early ioapic and hpet maps from kernel command line */ |
| 242 | #define EARLY_MAP_SIZE 4 |
| 243 | static struct devid_map __initdata early_ioapic_map[EARLY_MAP_SIZE]; |
| 244 | static struct devid_map __initdata early_hpet_map[EARLY_MAP_SIZE]; |
Wan Zongshun | 2a0cb4e | 2016-04-01 09:06:00 -0400 | [diff] [blame] | 245 | static struct acpihid_map_entry __initdata early_acpihid_map[EARLY_MAP_SIZE]; |
| 246 | |
Joerg Roedel | 235dacb | 2013-04-09 17:53:14 +0200 | [diff] [blame] | 247 | static int __initdata early_ioapic_map_size; |
| 248 | static int __initdata early_hpet_map_size; |
Wan Zongshun | 2a0cb4e | 2016-04-01 09:06:00 -0400 | [diff] [blame] | 249 | static int __initdata early_acpihid_map_size; |
| 250 | |
Joerg Roedel | dfbb6d4 | 2013-04-09 19:06:18 +0200 | [diff] [blame] | 251 | static bool __initdata cmdline_maps; |
Joerg Roedel | 235dacb | 2013-04-09 17:53:14 +0200 | [diff] [blame] | 252 | |
Joerg Roedel | 2c0ae17 | 2012-06-12 15:59:30 +0200 | [diff] [blame] | 253 | static enum iommu_init_state init_state = IOMMU_START_STATE; |
| 254 | |
Gerard Snitselaar | ae29514 | 2012-03-16 11:38:22 -0700 | [diff] [blame] | 255 | static int amd_iommu_enable_interrupts(void); |
Joerg Roedel | 2c0ae17 | 2012-06-12 15:59:30 +0200 | [diff] [blame] | 256 | static int __init iommu_go_to_state(enum iommu_init_state state); |
Joerg Roedel | aafd8ba | 2015-05-28 18:41:39 +0200 | [diff] [blame] | 257 | static void init_device_table_dma(void); |
Joerg Roedel | 3d9761e | 2012-03-15 16:39:21 +0100 | [diff] [blame] | 258 | |
Joerg Roedel | 2479c63 | 2017-08-19 00:35:40 +0200 | [diff] [blame] | 259 | static bool amd_iommu_pre_enabled = true; |
Baoquan He | 3ac3e5ee | 2017-08-09 16:33:38 +0800 | [diff] [blame] | 260 | |
Suravee Suthikulpanit | a44092e | 2021-01-20 07:50:02 -0600 | [diff] [blame] | 261 | static u32 amd_iommu_ivinfo __initdata; |
| 262 | |
Baoquan He | 4c232a7 | 2017-08-09 16:33:33 +0800 | [diff] [blame] | 263 | bool translation_pre_enabled(struct amd_iommu *iommu) |
| 264 | { |
| 265 | return (iommu->flags & AMD_IOMMU_FLAG_TRANS_PRE_ENABLED); |
| 266 | } |
| 267 | |
| 268 | static void clear_translation_pre_enabled(struct amd_iommu *iommu) |
| 269 | { |
| 270 | iommu->flags &= ~AMD_IOMMU_FLAG_TRANS_PRE_ENABLED; |
| 271 | } |
| 272 | |
| 273 | static void init_translation_status(struct amd_iommu *iommu) |
| 274 | { |
Suravee Suthikulpanit | e881dbd | 2018-06-27 10:31:21 -0500 | [diff] [blame] | 275 | u64 ctrl; |
Baoquan He | 4c232a7 | 2017-08-09 16:33:33 +0800 | [diff] [blame] | 276 | |
Suravee Suthikulpanit | e881dbd | 2018-06-27 10:31:21 -0500 | [diff] [blame] | 277 | ctrl = readq(iommu->mmio_base + MMIO_CONTROL_OFFSET); |
Baoquan He | 4c232a7 | 2017-08-09 16:33:33 +0800 | [diff] [blame] | 278 | if (ctrl & (1<<CONTROL_IOMMU_EN)) |
| 279 | iommu->flags |= AMD_IOMMU_FLAG_TRANS_PRE_ENABLED; |
| 280 | } |
| 281 | |
Joerg Roedel | 208ec8c | 2008-07-11 17:14:24 +0200 | [diff] [blame] | 282 | static inline void update_last_devid(u16 devid) |
| 283 | { |
| 284 | if (devid > amd_iommu_last_bdf) |
| 285 | amd_iommu_last_bdf = devid; |
| 286 | } |
| 287 | |
Joerg Roedel | c571484 | 2008-07-11 17:14:25 +0200 | [diff] [blame] | 288 | static inline unsigned long tbl_size(int entry_size) |
| 289 | { |
| 290 | unsigned shift = PAGE_SHIFT + |
Neil Turton | 421f909 | 2009-05-14 14:00:35 +0100 | [diff] [blame] | 291 | get_order(((int)amd_iommu_last_bdf + 1) * entry_size); |
Joerg Roedel | c571484 | 2008-07-11 17:14:25 +0200 | [diff] [blame] | 292 | |
| 293 | return 1UL << shift; |
| 294 | } |
| 295 | |
Suravee Suthikulpanit | 6b9376e | 2017-02-24 02:48:17 -0600 | [diff] [blame] | 296 | int amd_iommu_get_num_iommus(void) |
| 297 | { |
| 298 | return amd_iommus_present; |
| 299 | } |
| 300 | |
Suravee Suthikulpanit | a44092e | 2021-01-20 07:50:02 -0600 | [diff] [blame] | 301 | /* |
| 302 | * For IVHD type 0x11/0x40, EFR is also available via IVHD. |
| 303 | * Default to IVHD EFR since it is available sooner |
| 304 | * (i.e. before PCI init). |
| 305 | */ |
| 306 | static void __init early_iommu_features_init(struct amd_iommu *iommu, |
| 307 | struct ivhd_header *h) |
| 308 | { |
| 309 | if (amd_iommu_ivinfo & IOMMU_IVINFO_EFRSUP) |
| 310 | iommu->features = h->efr_reg; |
| 311 | } |
| 312 | |
Matthew Garrett | 5bcd757 | 2010-10-04 14:59:31 -0400 | [diff] [blame] | 313 | /* Access to l1 and l2 indexed register spaces */ |
| 314 | |
| 315 | static u32 iommu_read_l1(struct amd_iommu *iommu, u16 l1, u8 address) |
| 316 | { |
| 317 | u32 val; |
| 318 | |
| 319 | pci_write_config_dword(iommu->dev, 0xf8, (address | l1 << 16)); |
| 320 | pci_read_config_dword(iommu->dev, 0xfc, &val); |
| 321 | return val; |
| 322 | } |
| 323 | |
| 324 | static void iommu_write_l1(struct amd_iommu *iommu, u16 l1, u8 address, u32 val) |
| 325 | { |
| 326 | pci_write_config_dword(iommu->dev, 0xf8, (address | l1 << 16 | 1 << 31)); |
| 327 | pci_write_config_dword(iommu->dev, 0xfc, val); |
| 328 | pci_write_config_dword(iommu->dev, 0xf8, (address | l1 << 16)); |
| 329 | } |
| 330 | |
| 331 | static u32 iommu_read_l2(struct amd_iommu *iommu, u8 address) |
| 332 | { |
| 333 | u32 val; |
| 334 | |
| 335 | pci_write_config_dword(iommu->dev, 0xf0, address); |
| 336 | pci_read_config_dword(iommu->dev, 0xf4, &val); |
| 337 | return val; |
| 338 | } |
| 339 | |
| 340 | static void iommu_write_l2(struct amd_iommu *iommu, u8 address, u32 val) |
| 341 | { |
| 342 | pci_write_config_dword(iommu->dev, 0xf0, (address | 1 << 8)); |
| 343 | pci_write_config_dword(iommu->dev, 0xf4, val); |
| 344 | } |
| 345 | |
Joerg Roedel | b65233a | 2008-07-11 17:14:21 +0200 | [diff] [blame] | 346 | /**************************************************************************** |
| 347 | * |
| 348 | * AMD IOMMU MMIO register space handling functions |
| 349 | * |
| 350 | * These functions are used to program the IOMMU device registers in |
| 351 | * MMIO space required for that driver. |
| 352 | * |
| 353 | ****************************************************************************/ |
| 354 | |
| 355 | /* |
| 356 | * This function set the exclusion range in the IOMMU. DMA accesses to the |
| 357 | * exclusion range are passed through untranslated |
| 358 | */ |
Joerg Roedel | 05f92db | 2009-05-12 09:52:46 +0200 | [diff] [blame] | 359 | static void iommu_set_exclusion_range(struct amd_iommu *iommu) |
Joerg Roedel | b2026aa | 2008-06-26 21:27:44 +0200 | [diff] [blame] | 360 | { |
| 361 | u64 start = iommu->exclusion_start & PAGE_MASK; |
Joerg Roedel | 3c677d20 | 2019-04-12 12:50:31 +0200 | [diff] [blame] | 362 | u64 limit = (start + iommu->exclusion_length - 1) & PAGE_MASK; |
Joerg Roedel | b2026aa | 2008-06-26 21:27:44 +0200 | [diff] [blame] | 363 | u64 entry; |
| 364 | |
| 365 | if (!iommu->exclusion_start) |
| 366 | return; |
| 367 | |
| 368 | entry = start | MMIO_EXCL_ENABLE_MASK; |
| 369 | memcpy_toio(iommu->mmio_base + MMIO_EXCL_BASE_OFFSET, |
| 370 | &entry, sizeof(entry)); |
| 371 | |
| 372 | entry = limit; |
| 373 | memcpy_toio(iommu->mmio_base + MMIO_EXCL_LIMIT_OFFSET, |
| 374 | &entry, sizeof(entry)); |
| 375 | } |
| 376 | |
Suravee Suthikulpanit | 54ce12e | 2020-09-23 12:13:47 +0000 | [diff] [blame] | 377 | static void iommu_set_cwwb_range(struct amd_iommu *iommu) |
| 378 | { |
| 379 | u64 start = iommu_virt_to_phys((void *)iommu->cmd_sem); |
| 380 | u64 entry = start & PM_ADDR_MASK; |
| 381 | |
| 382 | if (!iommu_feature(iommu, FEATURE_SNP)) |
| 383 | return; |
| 384 | |
| 385 | /* Note: |
| 386 | * Re-purpose Exclusion base/limit registers for Completion wait |
| 387 | * write-back base/limit. |
| 388 | */ |
| 389 | memcpy_toio(iommu->mmio_base + MMIO_EXCL_BASE_OFFSET, |
| 390 | &entry, sizeof(entry)); |
| 391 | |
| 392 | /* Note: |
| 393 | * Default to 4 Kbytes, which can be specified by setting base |
| 394 | * address equal to the limit address. |
| 395 | */ |
| 396 | memcpy_toio(iommu->mmio_base + MMIO_EXCL_LIMIT_OFFSET, |
| 397 | &entry, sizeof(entry)); |
| 398 | } |
| 399 | |
Joerg Roedel | b65233a | 2008-07-11 17:14:21 +0200 | [diff] [blame] | 400 | /* Programs the physical address of the device table into the IOMMU hardware */ |
Jan Beulich | 6b7f000 | 2012-03-08 08:58:13 +0000 | [diff] [blame] | 401 | static void iommu_set_device_table(struct amd_iommu *iommu) |
Joerg Roedel | b2026aa | 2008-06-26 21:27:44 +0200 | [diff] [blame] | 402 | { |
Andreas Herrmann | f609891 | 2008-10-16 16:27:36 +0200 | [diff] [blame] | 403 | u64 entry; |
Joerg Roedel | b2026aa | 2008-06-26 21:27:44 +0200 | [diff] [blame] | 404 | |
| 405 | BUG_ON(iommu->mmio_base == NULL); |
| 406 | |
Tom Lendacky | 2543a78 | 2017-07-17 16:10:24 -0500 | [diff] [blame] | 407 | entry = iommu_virt_to_phys(amd_iommu_dev_table); |
Joerg Roedel | b2026aa | 2008-06-26 21:27:44 +0200 | [diff] [blame] | 408 | entry |= (dev_table_size >> 12) - 1; |
| 409 | memcpy_toio(iommu->mmio_base + MMIO_DEV_TABLE_OFFSET, |
| 410 | &entry, sizeof(entry)); |
| 411 | } |
| 412 | |
Joerg Roedel | b65233a | 2008-07-11 17:14:21 +0200 | [diff] [blame] | 413 | /* Generic functions to enable/disable certain features of the IOMMU. */ |
Joerg Roedel | 05f92db | 2009-05-12 09:52:46 +0200 | [diff] [blame] | 414 | static void iommu_feature_enable(struct amd_iommu *iommu, u8 bit) |
Joerg Roedel | b2026aa | 2008-06-26 21:27:44 +0200 | [diff] [blame] | 415 | { |
Suravee Suthikulpanit | e881dbd | 2018-06-27 10:31:21 -0500 | [diff] [blame] | 416 | u64 ctrl; |
Joerg Roedel | b2026aa | 2008-06-26 21:27:44 +0200 | [diff] [blame] | 417 | |
Suravee Suthikulpanit | e881dbd | 2018-06-27 10:31:21 -0500 | [diff] [blame] | 418 | ctrl = readq(iommu->mmio_base + MMIO_CONTROL_OFFSET); |
| 419 | ctrl |= (1ULL << bit); |
| 420 | writeq(ctrl, iommu->mmio_base + MMIO_CONTROL_OFFSET); |
Joerg Roedel | b2026aa | 2008-06-26 21:27:44 +0200 | [diff] [blame] | 421 | } |
| 422 | |
Joerg Roedel | ca020711 | 2009-10-28 18:02:26 +0100 | [diff] [blame] | 423 | static void iommu_feature_disable(struct amd_iommu *iommu, u8 bit) |
Joerg Roedel | b2026aa | 2008-06-26 21:27:44 +0200 | [diff] [blame] | 424 | { |
Suravee Suthikulpanit | e881dbd | 2018-06-27 10:31:21 -0500 | [diff] [blame] | 425 | u64 ctrl; |
Joerg Roedel | b2026aa | 2008-06-26 21:27:44 +0200 | [diff] [blame] | 426 | |
Suravee Suthikulpanit | e881dbd | 2018-06-27 10:31:21 -0500 | [diff] [blame] | 427 | ctrl = readq(iommu->mmio_base + MMIO_CONTROL_OFFSET); |
| 428 | ctrl &= ~(1ULL << bit); |
| 429 | writeq(ctrl, iommu->mmio_base + MMIO_CONTROL_OFFSET); |
Joerg Roedel | b2026aa | 2008-06-26 21:27:44 +0200 | [diff] [blame] | 430 | } |
| 431 | |
Joerg Roedel | 1456e9d | 2011-12-22 14:51:53 +0100 | [diff] [blame] | 432 | static void iommu_set_inv_tlb_timeout(struct amd_iommu *iommu, int timeout) |
| 433 | { |
Suravee Suthikulpanit | e881dbd | 2018-06-27 10:31:21 -0500 | [diff] [blame] | 434 | u64 ctrl; |
Joerg Roedel | 1456e9d | 2011-12-22 14:51:53 +0100 | [diff] [blame] | 435 | |
Suravee Suthikulpanit | e881dbd | 2018-06-27 10:31:21 -0500 | [diff] [blame] | 436 | ctrl = readq(iommu->mmio_base + MMIO_CONTROL_OFFSET); |
Joerg Roedel | 1456e9d | 2011-12-22 14:51:53 +0100 | [diff] [blame] | 437 | ctrl &= ~CTRL_INV_TO_MASK; |
| 438 | ctrl |= (timeout << CONTROL_INV_TIMEOUT) & CTRL_INV_TO_MASK; |
Suravee Suthikulpanit | e881dbd | 2018-06-27 10:31:21 -0500 | [diff] [blame] | 439 | writeq(ctrl, iommu->mmio_base + MMIO_CONTROL_OFFSET); |
Joerg Roedel | 1456e9d | 2011-12-22 14:51:53 +0100 | [diff] [blame] | 440 | } |
| 441 | |
Joerg Roedel | b65233a | 2008-07-11 17:14:21 +0200 | [diff] [blame] | 442 | /* Function to enable the hardware */ |
Joerg Roedel | 05f92db | 2009-05-12 09:52:46 +0200 | [diff] [blame] | 443 | static void iommu_enable(struct amd_iommu *iommu) |
Joerg Roedel | b2026aa | 2008-06-26 21:27:44 +0200 | [diff] [blame] | 444 | { |
Joerg Roedel | b2026aa | 2008-06-26 21:27:44 +0200 | [diff] [blame] | 445 | iommu_feature_enable(iommu, CONTROL_IOMMU_EN); |
Joerg Roedel | b2026aa | 2008-06-26 21:27:44 +0200 | [diff] [blame] | 446 | } |
| 447 | |
Joerg Roedel | 92ac432 | 2009-05-19 19:06:27 +0200 | [diff] [blame] | 448 | static void iommu_disable(struct amd_iommu *iommu) |
Joerg Roedel | 126c52b | 2008-09-09 16:47:35 +0200 | [diff] [blame] | 449 | { |
Kevin Mitchell | 3ddbe91 | 2019-06-12 14:52:03 -0700 | [diff] [blame] | 450 | if (!iommu->mmio_base) |
| 451 | return; |
| 452 | |
Chris Wright | a8c485b | 2009-06-15 15:53:45 +0200 | [diff] [blame] | 453 | /* Disable command buffer */ |
| 454 | iommu_feature_disable(iommu, CONTROL_CMDBUF_EN); |
| 455 | |
| 456 | /* Disable event logging and event interrupts */ |
| 457 | iommu_feature_disable(iommu, CONTROL_EVT_INT_EN); |
| 458 | iommu_feature_disable(iommu, CONTROL_EVT_LOG_EN); |
| 459 | |
Suravee Suthikulpanit | 8bda0cf | 2016-08-23 13:52:36 -0500 | [diff] [blame] | 460 | /* Disable IOMMU GA_LOG */ |
| 461 | iommu_feature_disable(iommu, CONTROL_GALOG_EN); |
| 462 | iommu_feature_disable(iommu, CONTROL_GAINT_EN); |
| 463 | |
Chris Wright | a8c485b | 2009-06-15 15:53:45 +0200 | [diff] [blame] | 464 | /* Disable IOMMU hardware itself */ |
Joerg Roedel | 92ac432 | 2009-05-19 19:06:27 +0200 | [diff] [blame] | 465 | iommu_feature_disable(iommu, CONTROL_IOMMU_EN); |
Joerg Roedel | 126c52b | 2008-09-09 16:47:35 +0200 | [diff] [blame] | 466 | } |
| 467 | |
Joerg Roedel | b65233a | 2008-07-11 17:14:21 +0200 | [diff] [blame] | 468 | /* |
| 469 | * mapping and unmapping functions for the IOMMU MMIO space. Each AMD IOMMU in |
| 470 | * the system has one. |
| 471 | */ |
Steven L Kinney | 30861dd | 2013-06-05 16:11:48 -0500 | [diff] [blame] | 472 | static u8 __iomem * __init iommu_map_mmio_space(u64 address, u64 end) |
Joerg Roedel | 6c56747 | 2008-06-26 21:27:43 +0200 | [diff] [blame] | 473 | { |
Steven L Kinney | 30861dd | 2013-06-05 16:11:48 -0500 | [diff] [blame] | 474 | if (!request_mem_region(address, end, "amd_iommu")) { |
Joerg Roedel | 101fa03 | 2018-11-27 16:22:31 +0100 | [diff] [blame] | 475 | pr_err("Can not reserve memory region %llx-%llx for mmio\n", |
Steven L Kinney | 30861dd | 2013-06-05 16:11:48 -0500 | [diff] [blame] | 476 | address, end); |
Joerg Roedel | 101fa03 | 2018-11-27 16:22:31 +0100 | [diff] [blame] | 477 | pr_err("This is a BIOS bug. Please contact your hardware vendor\n"); |
Joerg Roedel | 6c56747 | 2008-06-26 21:27:43 +0200 | [diff] [blame] | 478 | return NULL; |
Joerg Roedel | e82752d | 2010-05-28 14:26:48 +0200 | [diff] [blame] | 479 | } |
Joerg Roedel | 6c56747 | 2008-06-26 21:27:43 +0200 | [diff] [blame] | 480 | |
Christoph Hellwig | 4bdc0d6 | 2020-01-06 09:43:50 +0100 | [diff] [blame] | 481 | return (u8 __iomem *)ioremap(address, end); |
Joerg Roedel | 6c56747 | 2008-06-26 21:27:43 +0200 | [diff] [blame] | 482 | } |
| 483 | |
| 484 | static void __init iommu_unmap_mmio_space(struct amd_iommu *iommu) |
| 485 | { |
| 486 | if (iommu->mmio_base) |
| 487 | iounmap(iommu->mmio_base); |
Steven L Kinney | 30861dd | 2013-06-05 16:11:48 -0500 | [diff] [blame] | 488 | release_mem_region(iommu->mmio_phys, iommu->mmio_phys_end); |
Joerg Roedel | 6c56747 | 2008-06-26 21:27:43 +0200 | [diff] [blame] | 489 | } |
| 490 | |
Suravee Suthikulpanit | ac7ccf6 | 2016-04-01 09:05:58 -0400 | [diff] [blame] | 491 | static inline u32 get_ivhd_header_size(struct ivhd_header *h) |
| 492 | { |
| 493 | u32 size = 0; |
| 494 | |
| 495 | switch (h->type) { |
| 496 | case 0x10: |
| 497 | size = 24; |
| 498 | break; |
| 499 | case 0x11: |
| 500 | case 0x40: |
| 501 | size = 40; |
| 502 | break; |
| 503 | } |
| 504 | return size; |
| 505 | } |
| 506 | |
Joerg Roedel | b65233a | 2008-07-11 17:14:21 +0200 | [diff] [blame] | 507 | /**************************************************************************** |
| 508 | * |
| 509 | * The functions below belong to the first pass of AMD IOMMU ACPI table |
| 510 | * parsing. In this pass we try to find out the highest device id this |
| 511 | * code has to handle. Upon this information the size of the shared data |
| 512 | * structures is determined later. |
| 513 | * |
| 514 | ****************************************************************************/ |
| 515 | |
| 516 | /* |
Joerg Roedel | b514e55 | 2008-09-17 17:14:27 +0200 | [diff] [blame] | 517 | * This function calculates the length of a given IVHD entry |
| 518 | */ |
| 519 | static inline int ivhd_entry_length(u8 *ivhd) |
| 520 | { |
Suravee Suthikulpanit | 8c7142f | 2016-04-01 09:05:59 -0400 | [diff] [blame] | 521 | u32 type = ((struct ivhd_entry *)ivhd)->type; |
| 522 | |
| 523 | if (type < 0x80) { |
| 524 | return 0x04 << (*ivhd >> 6); |
| 525 | } else if (type == IVHD_DEV_ACPI_HID) { |
| 526 | /* For ACPI_HID, offset 21 is uid len */ |
| 527 | return *((u8 *)ivhd + 21) + 22; |
| 528 | } |
| 529 | return 0; |
Joerg Roedel | b514e55 | 2008-09-17 17:14:27 +0200 | [diff] [blame] | 530 | } |
| 531 | |
| 532 | /* |
Joerg Roedel | b65233a | 2008-07-11 17:14:21 +0200 | [diff] [blame] | 533 | * After reading the highest device id from the IOMMU PCI capability header |
| 534 | * this function looks if there is a higher device id defined in the ACPI table |
| 535 | */ |
Joerg Roedel | 3e8064b | 2008-06-26 21:27:41 +0200 | [diff] [blame] | 536 | static int __init find_last_devid_from_ivhd(struct ivhd_header *h) |
| 537 | { |
| 538 | u8 *p = (void *)h, *end = (void *)h; |
| 539 | struct ivhd_entry *dev; |
| 540 | |
Suravee Suthikulpanit | ac7ccf6 | 2016-04-01 09:05:58 -0400 | [diff] [blame] | 541 | u32 ivhd_size = get_ivhd_header_size(h); |
| 542 | |
| 543 | if (!ivhd_size) { |
Joerg Roedel | 101fa03 | 2018-11-27 16:22:31 +0100 | [diff] [blame] | 544 | pr_err("Unsupported IVHD type %#x\n", h->type); |
Suravee Suthikulpanit | ac7ccf6 | 2016-04-01 09:05:58 -0400 | [diff] [blame] | 545 | return -EINVAL; |
| 546 | } |
| 547 | |
| 548 | p += ivhd_size; |
Joerg Roedel | 3e8064b | 2008-06-26 21:27:41 +0200 | [diff] [blame] | 549 | end += h->length; |
| 550 | |
Joerg Roedel | 3e8064b | 2008-06-26 21:27:41 +0200 | [diff] [blame] | 551 | while (p < end) { |
| 552 | dev = (struct ivhd_entry *)p; |
| 553 | switch (dev->type) { |
Joerg Roedel | d125941 | 2015-10-20 17:33:43 +0200 | [diff] [blame] | 554 | case IVHD_DEV_ALL: |
| 555 | /* Use maximum BDF value for DEV_ALL */ |
| 556 | update_last_devid(0xffff); |
| 557 | break; |
Joerg Roedel | 3e8064b | 2008-06-26 21:27:41 +0200 | [diff] [blame] | 558 | case IVHD_DEV_SELECT: |
| 559 | case IVHD_DEV_RANGE_END: |
| 560 | case IVHD_DEV_ALIAS: |
| 561 | case IVHD_DEV_EXT_SELECT: |
Joerg Roedel | b65233a | 2008-07-11 17:14:21 +0200 | [diff] [blame] | 562 | /* all the above subfield types refer to device ids */ |
Joerg Roedel | 208ec8c | 2008-07-11 17:14:24 +0200 | [diff] [blame] | 563 | update_last_devid(dev->devid); |
Joerg Roedel | 3e8064b | 2008-06-26 21:27:41 +0200 | [diff] [blame] | 564 | break; |
| 565 | default: |
| 566 | break; |
| 567 | } |
Joerg Roedel | b514e55 | 2008-09-17 17:14:27 +0200 | [diff] [blame] | 568 | p += ivhd_entry_length(p); |
Joerg Roedel | 3e8064b | 2008-06-26 21:27:41 +0200 | [diff] [blame] | 569 | } |
| 570 | |
| 571 | WARN_ON(p != end); |
| 572 | |
| 573 | return 0; |
| 574 | } |
| 575 | |
Suravee Suthikulpanit | 8c7142f | 2016-04-01 09:05:59 -0400 | [diff] [blame] | 576 | static int __init check_ivrs_checksum(struct acpi_table_header *table) |
| 577 | { |
| 578 | int i; |
| 579 | u8 checksum = 0, *p = (u8 *)table; |
| 580 | |
| 581 | for (i = 0; i < table->length; ++i) |
| 582 | checksum += p[i]; |
| 583 | if (checksum != 0) { |
| 584 | /* ACPI table corrupt */ |
Joerg Roedel | 101fa03 | 2018-11-27 16:22:31 +0100 | [diff] [blame] | 585 | pr_err(FW_BUG "IVRS invalid checksum\n"); |
Suravee Suthikulpanit | 8c7142f | 2016-04-01 09:05:59 -0400 | [diff] [blame] | 586 | return -ENODEV; |
| 587 | } |
| 588 | |
| 589 | return 0; |
| 590 | } |
| 591 | |
Joerg Roedel | b65233a | 2008-07-11 17:14:21 +0200 | [diff] [blame] | 592 | /* |
| 593 | * Iterate over all IVHD entries in the ACPI table and find the highest device |
| 594 | * id which we need to handle. This is the first of three functions which parse |
| 595 | * the ACPI table. So we check the checksum here. |
| 596 | */ |
Joerg Roedel | 3e8064b | 2008-06-26 21:27:41 +0200 | [diff] [blame] | 597 | static int __init find_last_devid_acpi(struct acpi_table_header *table) |
| 598 | { |
Suravee Suthikulpanit | 8c7142f | 2016-04-01 09:05:59 -0400 | [diff] [blame] | 599 | u8 *p = (u8 *)table, *end = (u8 *)table; |
Joerg Roedel | 3e8064b | 2008-06-26 21:27:41 +0200 | [diff] [blame] | 600 | struct ivhd_header *h; |
| 601 | |
Joerg Roedel | 3e8064b | 2008-06-26 21:27:41 +0200 | [diff] [blame] | 602 | p += IVRS_HEADER_LENGTH; |
| 603 | |
| 604 | end += table->length; |
| 605 | while (p < end) { |
| 606 | h = (struct ivhd_header *)p; |
Suravee Suthikulpanit | 8c7142f | 2016-04-01 09:05:59 -0400 | [diff] [blame] | 607 | if (h->type == amd_iommu_target_ivhd_type) { |
| 608 | int ret = find_last_devid_from_ivhd(h); |
| 609 | |
| 610 | if (ret) |
| 611 | return ret; |
Joerg Roedel | 3e8064b | 2008-06-26 21:27:41 +0200 | [diff] [blame] | 612 | } |
| 613 | p += h->length; |
| 614 | } |
| 615 | WARN_ON(p != end); |
| 616 | |
| 617 | return 0; |
| 618 | } |
| 619 | |
Joerg Roedel | b65233a | 2008-07-11 17:14:21 +0200 | [diff] [blame] | 620 | /**************************************************************************** |
| 621 | * |
Frank Arnold | df805ab | 2012-08-27 19:21:04 +0200 | [diff] [blame] | 622 | * The following functions belong to the code path which parses the ACPI table |
Joerg Roedel | b65233a | 2008-07-11 17:14:21 +0200 | [diff] [blame] | 623 | * the second time. In this ACPI parsing iteration we allocate IOMMU specific |
| 624 | * data structures, initialize the device/alias/rlookup table and also |
| 625 | * basically initialize the hardware. |
| 626 | * |
| 627 | ****************************************************************************/ |
| 628 | |
| 629 | /* |
| 630 | * Allocates the command buffer. This buffer is per AMD IOMMU. We can |
| 631 | * write commands to that buffer later and the IOMMU will execute them |
| 632 | * asynchronously |
| 633 | */ |
Joerg Roedel | f2c2db5 | 2015-10-20 17:33:42 +0200 | [diff] [blame] | 634 | static int __init alloc_command_buffer(struct amd_iommu *iommu) |
Joerg Roedel | b36ca91 | 2008-06-26 21:27:45 +0200 | [diff] [blame] | 635 | { |
Joerg Roedel | f2c2db5 | 2015-10-20 17:33:42 +0200 | [diff] [blame] | 636 | iommu->cmd_buf = (void *)__get_free_pages(GFP_KERNEL | __GFP_ZERO, |
| 637 | get_order(CMD_BUFFER_SIZE)); |
Joerg Roedel | b36ca91 | 2008-06-26 21:27:45 +0200 | [diff] [blame] | 638 | |
Joerg Roedel | f2c2db5 | 2015-10-20 17:33:42 +0200 | [diff] [blame] | 639 | return iommu->cmd_buf ? 0 : -ENOMEM; |
Joerg Roedel | 58492e1 | 2009-05-04 18:41:16 +0200 | [diff] [blame] | 640 | } |
| 641 | |
| 642 | /* |
Joerg Roedel | 93f1cc67 | 2009-09-03 14:50:20 +0200 | [diff] [blame] | 643 | * This function resets the command buffer if the IOMMU stopped fetching |
| 644 | * commands from it. |
| 645 | */ |
| 646 | void amd_iommu_reset_cmd_buffer(struct amd_iommu *iommu) |
| 647 | { |
| 648 | iommu_feature_disable(iommu, CONTROL_CMDBUF_EN); |
| 649 | |
| 650 | writel(0x00, iommu->mmio_base + MMIO_CMD_HEAD_OFFSET); |
| 651 | writel(0x00, iommu->mmio_base + MMIO_CMD_TAIL_OFFSET); |
Tom Lendacky | d334a56 | 2017-06-05 14:52:12 -0500 | [diff] [blame] | 652 | iommu->cmd_buf_head = 0; |
| 653 | iommu->cmd_buf_tail = 0; |
Joerg Roedel | 93f1cc67 | 2009-09-03 14:50:20 +0200 | [diff] [blame] | 654 | |
| 655 | iommu_feature_enable(iommu, CONTROL_CMDBUF_EN); |
| 656 | } |
| 657 | |
| 658 | /* |
Joerg Roedel | 58492e1 | 2009-05-04 18:41:16 +0200 | [diff] [blame] | 659 | * This function writes the command buffer address to the hardware and |
| 660 | * enables it. |
| 661 | */ |
| 662 | static void iommu_enable_command_buffer(struct amd_iommu *iommu) |
| 663 | { |
| 664 | u64 entry; |
| 665 | |
| 666 | BUG_ON(iommu->cmd_buf == NULL); |
| 667 | |
Tom Lendacky | 2543a78 | 2017-07-17 16:10:24 -0500 | [diff] [blame] | 668 | entry = iommu_virt_to_phys(iommu->cmd_buf); |
Joerg Roedel | b36ca91 | 2008-06-26 21:27:45 +0200 | [diff] [blame] | 669 | entry |= MMIO_CMD_SIZE_512; |
Joerg Roedel | 58492e1 | 2009-05-04 18:41:16 +0200 | [diff] [blame] | 670 | |
Joerg Roedel | b36ca91 | 2008-06-26 21:27:45 +0200 | [diff] [blame] | 671 | memcpy_toio(iommu->mmio_base + MMIO_CMD_BUF_OFFSET, |
Joerg Roedel | 58492e1 | 2009-05-04 18:41:16 +0200 | [diff] [blame] | 672 | &entry, sizeof(entry)); |
Joerg Roedel | b36ca91 | 2008-06-26 21:27:45 +0200 | [diff] [blame] | 673 | |
Joerg Roedel | 93f1cc67 | 2009-09-03 14:50:20 +0200 | [diff] [blame] | 674 | amd_iommu_reset_cmd_buffer(iommu); |
Joerg Roedel | b36ca91 | 2008-06-26 21:27:45 +0200 | [diff] [blame] | 675 | } |
| 676 | |
Baoquan He | 78d313c | 2017-08-09 16:33:34 +0800 | [diff] [blame] | 677 | /* |
| 678 | * This function disables the command buffer |
| 679 | */ |
| 680 | static void iommu_disable_command_buffer(struct amd_iommu *iommu) |
| 681 | { |
| 682 | iommu_feature_disable(iommu, CONTROL_CMDBUF_EN); |
| 683 | } |
| 684 | |
Joerg Roedel | b36ca91 | 2008-06-26 21:27:45 +0200 | [diff] [blame] | 685 | static void __init free_command_buffer(struct amd_iommu *iommu) |
| 686 | { |
Joerg Roedel | deba4bc | 2015-10-20 17:33:41 +0200 | [diff] [blame] | 687 | free_pages((unsigned long)iommu->cmd_buf, get_order(CMD_BUFFER_SIZE)); |
Joerg Roedel | b36ca91 | 2008-06-26 21:27:45 +0200 | [diff] [blame] | 688 | } |
| 689 | |
Suravee Suthikulpanit | 6d39bde | 2020-11-05 14:58:32 +0000 | [diff] [blame] | 690 | static void *__init iommu_alloc_4k_pages(struct amd_iommu *iommu, |
| 691 | gfp_t gfp, size_t size) |
| 692 | { |
| 693 | int order = get_order(size); |
| 694 | void *buf = (void *)__get_free_pages(gfp, order); |
| 695 | |
| 696 | if (buf && |
| 697 | iommu_feature(iommu, FEATURE_SNP) && |
| 698 | set_memory_4k((unsigned long)buf, (1 << order))) { |
| 699 | free_pages((unsigned long)buf, order); |
| 700 | buf = NULL; |
| 701 | } |
| 702 | |
| 703 | return buf; |
| 704 | } |
| 705 | |
Joerg Roedel | 335503e | 2008-09-05 14:29:07 +0200 | [diff] [blame] | 706 | /* allocates the memory where the IOMMU will log its events to */ |
Joerg Roedel | f2c2db5 | 2015-10-20 17:33:42 +0200 | [diff] [blame] | 707 | static int __init alloc_event_buffer(struct amd_iommu *iommu) |
Joerg Roedel | 335503e | 2008-09-05 14:29:07 +0200 | [diff] [blame] | 708 | { |
Suravee Suthikulpanit | 6d39bde | 2020-11-05 14:58:32 +0000 | [diff] [blame] | 709 | iommu->evt_buf = iommu_alloc_4k_pages(iommu, GFP_KERNEL | __GFP_ZERO, |
| 710 | EVT_BUFFER_SIZE); |
Joerg Roedel | 335503e | 2008-09-05 14:29:07 +0200 | [diff] [blame] | 711 | |
Joerg Roedel | f2c2db5 | 2015-10-20 17:33:42 +0200 | [diff] [blame] | 712 | return iommu->evt_buf ? 0 : -ENOMEM; |
Joerg Roedel | 58492e1 | 2009-05-04 18:41:16 +0200 | [diff] [blame] | 713 | } |
| 714 | |
| 715 | static void iommu_enable_event_buffer(struct amd_iommu *iommu) |
| 716 | { |
| 717 | u64 entry; |
| 718 | |
| 719 | BUG_ON(iommu->evt_buf == NULL); |
| 720 | |
Tom Lendacky | 2543a78 | 2017-07-17 16:10:24 -0500 | [diff] [blame] | 721 | entry = iommu_virt_to_phys(iommu->evt_buf) | EVT_LEN_MASK; |
Joerg Roedel | 58492e1 | 2009-05-04 18:41:16 +0200 | [diff] [blame] | 722 | |
Joerg Roedel | 335503e | 2008-09-05 14:29:07 +0200 | [diff] [blame] | 723 | memcpy_toio(iommu->mmio_base + MMIO_EVT_BUF_OFFSET, |
| 724 | &entry, sizeof(entry)); |
| 725 | |
Joerg Roedel | 09067207 | 2009-06-15 16:06:48 +0200 | [diff] [blame] | 726 | /* set head and tail to zero manually */ |
| 727 | writel(0x00, iommu->mmio_base + MMIO_EVT_HEAD_OFFSET); |
| 728 | writel(0x00, iommu->mmio_base + MMIO_EVT_TAIL_OFFSET); |
| 729 | |
Joerg Roedel | 58492e1 | 2009-05-04 18:41:16 +0200 | [diff] [blame] | 730 | iommu_feature_enable(iommu, CONTROL_EVT_LOG_EN); |
Joerg Roedel | 335503e | 2008-09-05 14:29:07 +0200 | [diff] [blame] | 731 | } |
| 732 | |
Baoquan He | 78d313c | 2017-08-09 16:33:34 +0800 | [diff] [blame] | 733 | /* |
| 734 | * This function disables the event log buffer |
| 735 | */ |
| 736 | static void iommu_disable_event_buffer(struct amd_iommu *iommu) |
| 737 | { |
| 738 | iommu_feature_disable(iommu, CONTROL_EVT_LOG_EN); |
| 739 | } |
| 740 | |
Joerg Roedel | 335503e | 2008-09-05 14:29:07 +0200 | [diff] [blame] | 741 | static void __init free_event_buffer(struct amd_iommu *iommu) |
| 742 | { |
| 743 | free_pages((unsigned long)iommu->evt_buf, get_order(EVT_BUFFER_SIZE)); |
| 744 | } |
| 745 | |
Joerg Roedel | 1a29ac0 | 2011-11-10 15:41:40 +0100 | [diff] [blame] | 746 | /* allocates the memory where the IOMMU will log its events to */ |
Joerg Roedel | f2c2db5 | 2015-10-20 17:33:42 +0200 | [diff] [blame] | 747 | static int __init alloc_ppr_log(struct amd_iommu *iommu) |
Joerg Roedel | 1a29ac0 | 2011-11-10 15:41:40 +0100 | [diff] [blame] | 748 | { |
Suravee Suthikulpanit | 6d39bde | 2020-11-05 14:58:32 +0000 | [diff] [blame] | 749 | iommu->ppr_log = iommu_alloc_4k_pages(iommu, GFP_KERNEL | __GFP_ZERO, |
| 750 | PPR_LOG_SIZE); |
Joerg Roedel | 1a29ac0 | 2011-11-10 15:41:40 +0100 | [diff] [blame] | 751 | |
Joerg Roedel | f2c2db5 | 2015-10-20 17:33:42 +0200 | [diff] [blame] | 752 | return iommu->ppr_log ? 0 : -ENOMEM; |
Joerg Roedel | 1a29ac0 | 2011-11-10 15:41:40 +0100 | [diff] [blame] | 753 | } |
| 754 | |
| 755 | static void iommu_enable_ppr_log(struct amd_iommu *iommu) |
| 756 | { |
| 757 | u64 entry; |
| 758 | |
| 759 | if (iommu->ppr_log == NULL) |
| 760 | return; |
| 761 | |
Tom Lendacky | 2543a78 | 2017-07-17 16:10:24 -0500 | [diff] [blame] | 762 | entry = iommu_virt_to_phys(iommu->ppr_log) | PPR_LOG_SIZE_512; |
Joerg Roedel | 1a29ac0 | 2011-11-10 15:41:40 +0100 | [diff] [blame] | 763 | |
| 764 | memcpy_toio(iommu->mmio_base + MMIO_PPR_LOG_OFFSET, |
| 765 | &entry, sizeof(entry)); |
| 766 | |
| 767 | /* set head and tail to zero manually */ |
| 768 | writel(0x00, iommu->mmio_base + MMIO_PPR_HEAD_OFFSET); |
| 769 | writel(0x00, iommu->mmio_base + MMIO_PPR_TAIL_OFFSET); |
| 770 | |
Adrian Huang | bde9e6b | 2019-12-30 13:56:54 +0800 | [diff] [blame] | 771 | iommu_feature_enable(iommu, CONTROL_PPRLOG_EN); |
Joerg Roedel | 1a29ac0 | 2011-11-10 15:41:40 +0100 | [diff] [blame] | 772 | iommu_feature_enable(iommu, CONTROL_PPR_EN); |
| 773 | } |
| 774 | |
| 775 | static void __init free_ppr_log(struct amd_iommu *iommu) |
| 776 | { |
Joerg Roedel | 1a29ac0 | 2011-11-10 15:41:40 +0100 | [diff] [blame] | 777 | free_pages((unsigned long)iommu->ppr_log, get_order(PPR_LOG_SIZE)); |
| 778 | } |
| 779 | |
Suravee Suthikulpanit | 8bda0cf | 2016-08-23 13:52:36 -0500 | [diff] [blame] | 780 | static void free_ga_log(struct amd_iommu *iommu) |
| 781 | { |
| 782 | #ifdef CONFIG_IRQ_REMAP |
Libing Zhou | 092550e | 2020-07-22 14:44:50 +0800 | [diff] [blame] | 783 | free_pages((unsigned long)iommu->ga_log, get_order(GA_LOG_SIZE)); |
| 784 | free_pages((unsigned long)iommu->ga_log_tail, get_order(8)); |
Suravee Suthikulpanit | 8bda0cf | 2016-08-23 13:52:36 -0500 | [diff] [blame] | 785 | #endif |
| 786 | } |
| 787 | |
| 788 | static int iommu_ga_log_enable(struct amd_iommu *iommu) |
| 789 | { |
| 790 | #ifdef CONFIG_IRQ_REMAP |
| 791 | u32 status, i; |
| 792 | |
| 793 | if (!iommu->ga_log) |
| 794 | return -EINVAL; |
| 795 | |
| 796 | status = readl(iommu->mmio_base + MMIO_STATUS_OFFSET); |
| 797 | |
| 798 | /* Check if already running */ |
| 799 | if (status & (MMIO_STATUS_GALOG_RUN_MASK)) |
| 800 | return 0; |
| 801 | |
| 802 | iommu_feature_enable(iommu, CONTROL_GAINT_EN); |
| 803 | iommu_feature_enable(iommu, CONTROL_GALOG_EN); |
| 804 | |
| 805 | for (i = 0; i < LOOP_TIMEOUT; ++i) { |
| 806 | status = readl(iommu->mmio_base + MMIO_STATUS_OFFSET); |
| 807 | if (status & (MMIO_STATUS_GALOG_RUN_MASK)) |
| 808 | break; |
| 809 | } |
| 810 | |
| 811 | if (i >= LOOP_TIMEOUT) |
| 812 | return -EINVAL; |
| 813 | #endif /* CONFIG_IRQ_REMAP */ |
| 814 | return 0; |
| 815 | } |
| 816 | |
| 817 | #ifdef CONFIG_IRQ_REMAP |
| 818 | static int iommu_init_ga_log(struct amd_iommu *iommu) |
| 819 | { |
| 820 | u64 entry; |
| 821 | |
| 822 | if (!AMD_IOMMU_GUEST_IR_VAPIC(amd_iommu_guest_ir)) |
| 823 | return 0; |
| 824 | |
| 825 | iommu->ga_log = (u8 *)__get_free_pages(GFP_KERNEL | __GFP_ZERO, |
| 826 | get_order(GA_LOG_SIZE)); |
| 827 | if (!iommu->ga_log) |
| 828 | goto err_out; |
| 829 | |
| 830 | iommu->ga_log_tail = (u8 *)__get_free_pages(GFP_KERNEL | __GFP_ZERO, |
| 831 | get_order(8)); |
| 832 | if (!iommu->ga_log_tail) |
| 833 | goto err_out; |
| 834 | |
Tom Lendacky | 2543a78 | 2017-07-17 16:10:24 -0500 | [diff] [blame] | 835 | entry = iommu_virt_to_phys(iommu->ga_log) | GA_LOG_SIZE_512; |
Suravee Suthikulpanit | 8bda0cf | 2016-08-23 13:52:36 -0500 | [diff] [blame] | 836 | memcpy_toio(iommu->mmio_base + MMIO_GA_LOG_BASE_OFFSET, |
| 837 | &entry, sizeof(entry)); |
Filippo Sironi | ab99be4 | 2018-11-12 12:26:30 +0000 | [diff] [blame] | 838 | entry = (iommu_virt_to_phys(iommu->ga_log_tail) & |
| 839 | (BIT_ULL(52)-1)) & ~7ULL; |
Suravee Suthikulpanit | 8bda0cf | 2016-08-23 13:52:36 -0500 | [diff] [blame] | 840 | memcpy_toio(iommu->mmio_base + MMIO_GA_LOG_TAIL_OFFSET, |
| 841 | &entry, sizeof(entry)); |
| 842 | writel(0x00, iommu->mmio_base + MMIO_GA_HEAD_OFFSET); |
| 843 | writel(0x00, iommu->mmio_base + MMIO_GA_TAIL_OFFSET); |
| 844 | |
| 845 | return 0; |
| 846 | err_out: |
| 847 | free_ga_log(iommu); |
| 848 | return -EINVAL; |
| 849 | } |
| 850 | #endif /* CONFIG_IRQ_REMAP */ |
| 851 | |
| 852 | static int iommu_init_ga(struct amd_iommu *iommu) |
| 853 | { |
| 854 | int ret = 0; |
| 855 | |
| 856 | #ifdef CONFIG_IRQ_REMAP |
| 857 | /* Note: We have already checked GASup from IVRS table. |
| 858 | * Now, we need to make sure that GAMSup is set. |
| 859 | */ |
| 860 | if (AMD_IOMMU_GUEST_IR_VAPIC(amd_iommu_guest_ir) && |
| 861 | !iommu_feature(iommu, FEATURE_GAM_VAPIC)) |
| 862 | amd_iommu_guest_ir = AMD_IOMMU_GUEST_IR_LEGACY_GA; |
| 863 | |
| 864 | ret = iommu_init_ga_log(iommu); |
| 865 | #endif /* CONFIG_IRQ_REMAP */ |
| 866 | |
| 867 | return ret; |
| 868 | } |
| 869 | |
Suravee Suthikulpanit | c69d89a | 2020-09-23 12:13:45 +0000 | [diff] [blame] | 870 | static int __init alloc_cwwb_sem(struct amd_iommu *iommu) |
| 871 | { |
Suravee Suthikulpanit | 6d39bde | 2020-11-05 14:58:32 +0000 | [diff] [blame] | 872 | iommu->cmd_sem = iommu_alloc_4k_pages(iommu, GFP_KERNEL | __GFP_ZERO, 1); |
Suravee Suthikulpanit | c69d89a | 2020-09-23 12:13:45 +0000 | [diff] [blame] | 873 | |
| 874 | return iommu->cmd_sem ? 0 : -ENOMEM; |
| 875 | } |
| 876 | |
| 877 | static void __init free_cwwb_sem(struct amd_iommu *iommu) |
| 878 | { |
| 879 | if (iommu->cmd_sem) |
| 880 | free_page((unsigned long)iommu->cmd_sem); |
| 881 | } |
| 882 | |
Suravee Suthikulpanit | 90fcffd | 2018-06-27 10:31:22 -0500 | [diff] [blame] | 883 | static void iommu_enable_xt(struct amd_iommu *iommu) |
| 884 | { |
| 885 | #ifdef CONFIG_IRQ_REMAP |
| 886 | /* |
| 887 | * XT mode (32-bit APIC destination ID) requires |
| 888 | * GA mode (128-bit IRTE support) as a prerequisite. |
| 889 | */ |
| 890 | if (AMD_IOMMU_GUEST_IR_GA(amd_iommu_guest_ir) && |
| 891 | amd_iommu_xt_mode == IRQ_REMAP_X2APIC_MODE) |
| 892 | iommu_feature_enable(iommu, CONTROL_XT_EN); |
| 893 | #endif /* CONFIG_IRQ_REMAP */ |
| 894 | } |
| 895 | |
Joerg Roedel | cbc33a9 | 2011-11-25 11:41:31 +0100 | [diff] [blame] | 896 | static void iommu_enable_gt(struct amd_iommu *iommu) |
| 897 | { |
| 898 | if (!iommu_feature(iommu, FEATURE_GT)) |
| 899 | return; |
| 900 | |
| 901 | iommu_feature_enable(iommu, CONTROL_GT_EN); |
| 902 | } |
| 903 | |
Joerg Roedel | b65233a | 2008-07-11 17:14:21 +0200 | [diff] [blame] | 904 | /* sets a specific bit in the device table entry. */ |
Joerg Roedel | 3566b77 | 2008-06-26 21:27:46 +0200 | [diff] [blame] | 905 | static void set_dev_entry_bit(u16 devid, u8 bit) |
| 906 | { |
Joerg Roedel | ee6c286 | 2011-11-09 12:06:03 +0100 | [diff] [blame] | 907 | int i = (bit >> 6) & 0x03; |
| 908 | int _bit = bit & 0x3f; |
Joerg Roedel | 3566b77 | 2008-06-26 21:27:46 +0200 | [diff] [blame] | 909 | |
Joerg Roedel | ee6c286 | 2011-11-09 12:06:03 +0100 | [diff] [blame] | 910 | amd_iommu_dev_table[devid].data[i] |= (1UL << _bit); |
Joerg Roedel | 3566b77 | 2008-06-26 21:27:46 +0200 | [diff] [blame] | 911 | } |
| 912 | |
Joerg Roedel | c5cca14 | 2009-10-09 18:31:20 +0200 | [diff] [blame] | 913 | static int get_dev_entry_bit(u16 devid, u8 bit) |
| 914 | { |
Joerg Roedel | ee6c286 | 2011-11-09 12:06:03 +0100 | [diff] [blame] | 915 | int i = (bit >> 6) & 0x03; |
| 916 | int _bit = bit & 0x3f; |
Joerg Roedel | c5cca14 | 2009-10-09 18:31:20 +0200 | [diff] [blame] | 917 | |
Joerg Roedel | ee6c286 | 2011-11-09 12:06:03 +0100 | [diff] [blame] | 918 | return (amd_iommu_dev_table[devid].data[i] & (1UL << _bit)) >> _bit; |
Joerg Roedel | c5cca14 | 2009-10-09 18:31:20 +0200 | [diff] [blame] | 919 | } |
| 920 | |
| 921 | |
Baoquan He | 45a01c4 | 2017-08-09 16:33:37 +0800 | [diff] [blame] | 922 | static bool copy_device_table(void) |
| 923 | { |
Joerg Roedel | ae162ef | 2017-08-19 00:28:02 +0200 | [diff] [blame] | 924 | u64 int_ctl, int_tab_len, entry = 0, last_entry = 0; |
Baoquan He | 45a01c4 | 2017-08-09 16:33:37 +0800 | [diff] [blame] | 925 | struct dev_table_entry *old_devtb = NULL; |
| 926 | u32 lo, hi, devid, old_devtb_size; |
| 927 | phys_addr_t old_devtb_phys; |
Baoquan He | 45a01c4 | 2017-08-09 16:33:37 +0800 | [diff] [blame] | 928 | struct amd_iommu *iommu; |
Baoquan He | 53019a9 | 2017-08-09 16:33:39 +0800 | [diff] [blame] | 929 | u16 dom_id, dte_v, irq_v; |
Baoquan He | 45a01c4 | 2017-08-09 16:33:37 +0800 | [diff] [blame] | 930 | gfp_t gfp_flag; |
Baoquan He | daae2d2 | 2017-08-09 16:33:43 +0800 | [diff] [blame] | 931 | u64 tmp; |
Baoquan He | 45a01c4 | 2017-08-09 16:33:37 +0800 | [diff] [blame] | 932 | |
Baoquan He | 3ac3e5ee | 2017-08-09 16:33:38 +0800 | [diff] [blame] | 933 | if (!amd_iommu_pre_enabled) |
| 934 | return false; |
Baoquan He | 45a01c4 | 2017-08-09 16:33:37 +0800 | [diff] [blame] | 935 | |
| 936 | pr_warn("Translation is already enabled - trying to copy translation structures\n"); |
| 937 | for_each_iommu(iommu) { |
| 938 | /* All IOMMUs should use the same device table with the same size */ |
| 939 | lo = readl(iommu->mmio_base + MMIO_DEV_TABLE_OFFSET); |
| 940 | hi = readl(iommu->mmio_base + MMIO_DEV_TABLE_OFFSET + 4); |
| 941 | entry = (((u64) hi) << 32) + lo; |
| 942 | if (last_entry && last_entry != entry) { |
Arvind Yadav | 3c6bae6 | 2017-09-26 13:07:46 +0530 | [diff] [blame] | 943 | pr_err("IOMMU:%d should use the same dev table as others!\n", |
Baoquan He | 45a01c4 | 2017-08-09 16:33:37 +0800 | [diff] [blame] | 944 | iommu->index); |
| 945 | return false; |
| 946 | } |
| 947 | last_entry = entry; |
| 948 | |
| 949 | old_devtb_size = ((entry & ~PAGE_MASK) + 1) << 12; |
| 950 | if (old_devtb_size != dev_table_size) { |
Arvind Yadav | 3c6bae6 | 2017-09-26 13:07:46 +0530 | [diff] [blame] | 951 | pr_err("The device table size of IOMMU:%d is not expected!\n", |
Baoquan He | 45a01c4 | 2017-08-09 16:33:37 +0800 | [diff] [blame] | 952 | iommu->index); |
| 953 | return false; |
| 954 | } |
| 955 | } |
| 956 | |
Lianbo Jiang | 8780158 | 2018-09-30 11:10:32 +0800 | [diff] [blame] | 957 | /* |
| 958 | * When SME is enabled in the first kernel, the entry includes the |
| 959 | * memory encryption mask(sme_me_mask), we must remove the memory |
| 960 | * encryption mask to obtain the true physical address in kdump kernel. |
| 961 | */ |
| 962 | old_devtb_phys = __sme_clr(entry) & PAGE_MASK; |
| 963 | |
Baoquan He | b336781 | 2017-08-09 16:33:42 +0800 | [diff] [blame] | 964 | if (old_devtb_phys >= 0x100000000ULL) { |
Arvind Yadav | 3c6bae6 | 2017-09-26 13:07:46 +0530 | [diff] [blame] | 965 | pr_err("The address of old device table is above 4G, not trustworthy!\n"); |
Baoquan He | b336781 | 2017-08-09 16:33:42 +0800 | [diff] [blame] | 966 | return false; |
| 967 | } |
Lianbo Jiang | 8780158 | 2018-09-30 11:10:32 +0800 | [diff] [blame] | 968 | old_devtb = (sme_active() && is_kdump_kernel()) |
| 969 | ? (__force void *)ioremap_encrypted(old_devtb_phys, |
| 970 | dev_table_size) |
| 971 | : memremap(old_devtb_phys, dev_table_size, MEMREMAP_WB); |
| 972 | |
Baoquan He | 45a01c4 | 2017-08-09 16:33:37 +0800 | [diff] [blame] | 973 | if (!old_devtb) |
| 974 | return false; |
| 975 | |
Baoquan He | b336781 | 2017-08-09 16:33:42 +0800 | [diff] [blame] | 976 | gfp_flag = GFP_KERNEL | __GFP_ZERO | GFP_DMA32; |
Baoquan He | 45a01c4 | 2017-08-09 16:33:37 +0800 | [diff] [blame] | 977 | old_dev_tbl_cpy = (void *)__get_free_pages(gfp_flag, |
| 978 | get_order(dev_table_size)); |
| 979 | if (old_dev_tbl_cpy == NULL) { |
Arvind Yadav | 3c6bae6 | 2017-09-26 13:07:46 +0530 | [diff] [blame] | 980 | pr_err("Failed to allocate memory for copying old device table!\n"); |
Baoquan He | 45a01c4 | 2017-08-09 16:33:37 +0800 | [diff] [blame] | 981 | return false; |
| 982 | } |
| 983 | |
| 984 | for (devid = 0; devid <= amd_iommu_last_bdf; ++devid) { |
| 985 | old_dev_tbl_cpy[devid] = old_devtb[devid]; |
| 986 | dom_id = old_devtb[devid].data[1] & DEV_DOMID_MASK; |
| 987 | dte_v = old_devtb[devid].data[0] & DTE_FLAG_V; |
Baoquan He | 53019a9 | 2017-08-09 16:33:39 +0800 | [diff] [blame] | 988 | |
| 989 | if (dte_v && dom_id) { |
| 990 | old_dev_tbl_cpy[devid].data[0] = old_devtb[devid].data[0]; |
| 991 | old_dev_tbl_cpy[devid].data[1] = old_devtb[devid].data[1]; |
Baoquan He | 45a01c4 | 2017-08-09 16:33:37 +0800 | [diff] [blame] | 992 | __set_bit(dom_id, amd_iommu_pd_alloc_bitmap); |
Baoquan He | daae2d2 | 2017-08-09 16:33:43 +0800 | [diff] [blame] | 993 | /* If gcr3 table existed, mask it out */ |
| 994 | if (old_devtb[devid].data[0] & DTE_FLAG_GV) { |
| 995 | tmp = DTE_GCR3_VAL_B(~0ULL) << DTE_GCR3_SHIFT_B; |
| 996 | tmp |= DTE_GCR3_VAL_C(~0ULL) << DTE_GCR3_SHIFT_C; |
| 997 | old_dev_tbl_cpy[devid].data[1] &= ~tmp; |
| 998 | tmp = DTE_GCR3_VAL_A(~0ULL) << DTE_GCR3_SHIFT_A; |
| 999 | tmp |= DTE_FLAG_GV; |
| 1000 | old_dev_tbl_cpy[devid].data[0] &= ~tmp; |
| 1001 | } |
Baoquan He | 53019a9 | 2017-08-09 16:33:39 +0800 | [diff] [blame] | 1002 | } |
| 1003 | |
| 1004 | irq_v = old_devtb[devid].data[2] & DTE_IRQ_REMAP_ENABLE; |
| 1005 | int_ctl = old_devtb[devid].data[2] & DTE_IRQ_REMAP_INTCTL_MASK; |
Suravee Suthikulpanit | 5ae9a04 | 2020-12-10 10:24:36 -0600 | [diff] [blame] | 1006 | int_tab_len = old_devtb[devid].data[2] & DTE_INTTABLEN_MASK; |
Baoquan He | 53019a9 | 2017-08-09 16:33:39 +0800 | [diff] [blame] | 1007 | if (irq_v && (int_ctl || int_tab_len)) { |
| 1008 | if ((int_ctl != DTE_IRQ_REMAP_INTCTL) || |
Suravee Suthikulpanit | 5ae9a04 | 2020-12-10 10:24:36 -0600 | [diff] [blame] | 1009 | (int_tab_len != DTE_INTTABLEN)) { |
Baoquan He | 53019a9 | 2017-08-09 16:33:39 +0800 | [diff] [blame] | 1010 | pr_err("Wrong old irq remapping flag: %#x\n", devid); |
| 1011 | return false; |
| 1012 | } |
| 1013 | |
| 1014 | old_dev_tbl_cpy[devid].data[2] = old_devtb[devid].data[2]; |
| 1015 | } |
Baoquan He | 45a01c4 | 2017-08-09 16:33:37 +0800 | [diff] [blame] | 1016 | } |
| 1017 | memunmap(old_devtb); |
| 1018 | |
| 1019 | return true; |
| 1020 | } |
| 1021 | |
Joerg Roedel | c5cca14 | 2009-10-09 18:31:20 +0200 | [diff] [blame] | 1022 | void amd_iommu_apply_erratum_63(u16 devid) |
| 1023 | { |
| 1024 | int sysmgt; |
| 1025 | |
| 1026 | sysmgt = get_dev_entry_bit(devid, DEV_ENTRY_SYSMGT1) | |
| 1027 | (get_dev_entry_bit(devid, DEV_ENTRY_SYSMGT2) << 1); |
| 1028 | |
| 1029 | if (sysmgt == 0x01) |
| 1030 | set_dev_entry_bit(devid, DEV_ENTRY_IW); |
| 1031 | } |
| 1032 | |
Joerg Roedel | 5ff4789 | 2008-07-14 20:11:18 +0200 | [diff] [blame] | 1033 | /* Writes the specific IOMMU for a device into the rlookup table */ |
| 1034 | static void __init set_iommu_for_device(struct amd_iommu *iommu, u16 devid) |
| 1035 | { |
| 1036 | amd_iommu_rlookup_table[devid] = iommu; |
| 1037 | } |
| 1038 | |
Joerg Roedel | b65233a | 2008-07-11 17:14:21 +0200 | [diff] [blame] | 1039 | /* |
| 1040 | * This function takes the device specific flags read from the ACPI |
| 1041 | * table and sets up the device table entry with that information |
| 1042 | */ |
Joerg Roedel | 5ff4789 | 2008-07-14 20:11:18 +0200 | [diff] [blame] | 1043 | static void __init set_dev_entry_from_acpi(struct amd_iommu *iommu, |
| 1044 | u16 devid, u32 flags, u32 ext_flags) |
Joerg Roedel | 3566b77 | 2008-06-26 21:27:46 +0200 | [diff] [blame] | 1045 | { |
| 1046 | if (flags & ACPI_DEVFLAG_INITPASS) |
| 1047 | set_dev_entry_bit(devid, DEV_ENTRY_INIT_PASS); |
| 1048 | if (flags & ACPI_DEVFLAG_EXTINT) |
| 1049 | set_dev_entry_bit(devid, DEV_ENTRY_EINT_PASS); |
| 1050 | if (flags & ACPI_DEVFLAG_NMI) |
| 1051 | set_dev_entry_bit(devid, DEV_ENTRY_NMI_PASS); |
| 1052 | if (flags & ACPI_DEVFLAG_SYSMGT1) |
| 1053 | set_dev_entry_bit(devid, DEV_ENTRY_SYSMGT1); |
| 1054 | if (flags & ACPI_DEVFLAG_SYSMGT2) |
| 1055 | set_dev_entry_bit(devid, DEV_ENTRY_SYSMGT2); |
| 1056 | if (flags & ACPI_DEVFLAG_LINT0) |
| 1057 | set_dev_entry_bit(devid, DEV_ENTRY_LINT0_PASS); |
| 1058 | if (flags & ACPI_DEVFLAG_LINT1) |
| 1059 | set_dev_entry_bit(devid, DEV_ENTRY_LINT1_PASS); |
Joerg Roedel | 3566b77 | 2008-06-26 21:27:46 +0200 | [diff] [blame] | 1060 | |
Joerg Roedel | c5cca14 | 2009-10-09 18:31:20 +0200 | [diff] [blame] | 1061 | amd_iommu_apply_erratum_63(devid); |
| 1062 | |
Joerg Roedel | 5ff4789 | 2008-07-14 20:11:18 +0200 | [diff] [blame] | 1063 | set_iommu_for_device(iommu, devid); |
Joerg Roedel | 3566b77 | 2008-06-26 21:27:46 +0200 | [diff] [blame] | 1064 | } |
| 1065 | |
Kai-Heng Feng | 93d0515 | 2019-08-21 13:10:04 +0800 | [diff] [blame] | 1066 | int __init add_special_device(u8 type, u8 id, u16 *devid, bool cmd_line) |
Joerg Roedel | 6efed63 | 2012-06-14 15:52:58 +0200 | [diff] [blame] | 1067 | { |
| 1068 | struct devid_map *entry; |
| 1069 | struct list_head *list; |
| 1070 | |
Joerg Roedel | 31cff67 | 2013-04-09 16:53:58 +0200 | [diff] [blame] | 1071 | if (type == IVHD_SPECIAL_IOAPIC) |
| 1072 | list = &ioapic_map; |
| 1073 | else if (type == IVHD_SPECIAL_HPET) |
| 1074 | list = &hpet_map; |
| 1075 | else |
Joerg Roedel | 6efed63 | 2012-06-14 15:52:58 +0200 | [diff] [blame] | 1076 | return -EINVAL; |
| 1077 | |
Joerg Roedel | 31cff67 | 2013-04-09 16:53:58 +0200 | [diff] [blame] | 1078 | list_for_each_entry(entry, list, list) { |
| 1079 | if (!(entry->id == id && entry->cmd_line)) |
| 1080 | continue; |
| 1081 | |
Joerg Roedel | 101fa03 | 2018-11-27 16:22:31 +0100 | [diff] [blame] | 1082 | pr_info("Command-line override present for %s id %d - ignoring\n", |
Joerg Roedel | 31cff67 | 2013-04-09 16:53:58 +0200 | [diff] [blame] | 1083 | type == IVHD_SPECIAL_IOAPIC ? "IOAPIC" : "HPET", id); |
| 1084 | |
Joerg Roedel | c50e324 | 2014-09-09 15:59:37 +0200 | [diff] [blame] | 1085 | *devid = entry->devid; |
| 1086 | |
Joerg Roedel | 31cff67 | 2013-04-09 16:53:58 +0200 | [diff] [blame] | 1087 | return 0; |
| 1088 | } |
| 1089 | |
Joerg Roedel | 6efed63 | 2012-06-14 15:52:58 +0200 | [diff] [blame] | 1090 | entry = kzalloc(sizeof(*entry), GFP_KERNEL); |
| 1091 | if (!entry) |
| 1092 | return -ENOMEM; |
| 1093 | |
Joerg Roedel | 31cff67 | 2013-04-09 16:53:58 +0200 | [diff] [blame] | 1094 | entry->id = id; |
Joerg Roedel | c50e324 | 2014-09-09 15:59:37 +0200 | [diff] [blame] | 1095 | entry->devid = *devid; |
Joerg Roedel | 31cff67 | 2013-04-09 16:53:58 +0200 | [diff] [blame] | 1096 | entry->cmd_line = cmd_line; |
Joerg Roedel | 6efed63 | 2012-06-14 15:52:58 +0200 | [diff] [blame] | 1097 | |
| 1098 | list_add_tail(&entry->list, list); |
| 1099 | |
| 1100 | return 0; |
| 1101 | } |
| 1102 | |
Wan Zongshun | 2a0cb4e | 2016-04-01 09:06:00 -0400 | [diff] [blame] | 1103 | static int __init add_acpi_hid_device(u8 *hid, u8 *uid, u16 *devid, |
| 1104 | bool cmd_line) |
| 1105 | { |
| 1106 | struct acpihid_map_entry *entry; |
| 1107 | struct list_head *list = &acpihid_map; |
| 1108 | |
| 1109 | list_for_each_entry(entry, list, list) { |
| 1110 | if (strcmp(entry->hid, hid) || |
| 1111 | (*uid && *entry->uid && strcmp(entry->uid, uid)) || |
| 1112 | !entry->cmd_line) |
| 1113 | continue; |
| 1114 | |
Joerg Roedel | 101fa03 | 2018-11-27 16:22:31 +0100 | [diff] [blame] | 1115 | pr_info("Command-line override for hid:%s uid:%s\n", |
Wan Zongshun | 2a0cb4e | 2016-04-01 09:06:00 -0400 | [diff] [blame] | 1116 | hid, uid); |
| 1117 | *devid = entry->devid; |
| 1118 | return 0; |
| 1119 | } |
| 1120 | |
| 1121 | entry = kzalloc(sizeof(*entry), GFP_KERNEL); |
| 1122 | if (!entry) |
| 1123 | return -ENOMEM; |
| 1124 | |
| 1125 | memcpy(entry->uid, uid, strlen(uid)); |
| 1126 | memcpy(entry->hid, hid, strlen(hid)); |
| 1127 | entry->devid = *devid; |
| 1128 | entry->cmd_line = cmd_line; |
| 1129 | entry->root_devid = (entry->devid & (~0x7)); |
| 1130 | |
Joerg Roedel | 101fa03 | 2018-11-27 16:22:31 +0100 | [diff] [blame] | 1131 | pr_info("%s, add hid:%s, uid:%s, rdevid:%d\n", |
Wan Zongshun | 2a0cb4e | 2016-04-01 09:06:00 -0400 | [diff] [blame] | 1132 | entry->cmd_line ? "cmd" : "ivrs", |
| 1133 | entry->hid, entry->uid, entry->root_devid); |
| 1134 | |
| 1135 | list_add_tail(&entry->list, list); |
| 1136 | return 0; |
| 1137 | } |
| 1138 | |
Joerg Roedel | 235dacb | 2013-04-09 17:53:14 +0200 | [diff] [blame] | 1139 | static int __init add_early_maps(void) |
| 1140 | { |
| 1141 | int i, ret; |
| 1142 | |
| 1143 | for (i = 0; i < early_ioapic_map_size; ++i) { |
| 1144 | ret = add_special_device(IVHD_SPECIAL_IOAPIC, |
| 1145 | early_ioapic_map[i].id, |
Joerg Roedel | c50e324 | 2014-09-09 15:59:37 +0200 | [diff] [blame] | 1146 | &early_ioapic_map[i].devid, |
Joerg Roedel | 235dacb | 2013-04-09 17:53:14 +0200 | [diff] [blame] | 1147 | early_ioapic_map[i].cmd_line); |
| 1148 | if (ret) |
| 1149 | return ret; |
| 1150 | } |
| 1151 | |
| 1152 | for (i = 0; i < early_hpet_map_size; ++i) { |
| 1153 | ret = add_special_device(IVHD_SPECIAL_HPET, |
| 1154 | early_hpet_map[i].id, |
Joerg Roedel | c50e324 | 2014-09-09 15:59:37 +0200 | [diff] [blame] | 1155 | &early_hpet_map[i].devid, |
Joerg Roedel | 235dacb | 2013-04-09 17:53:14 +0200 | [diff] [blame] | 1156 | early_hpet_map[i].cmd_line); |
| 1157 | if (ret) |
| 1158 | return ret; |
| 1159 | } |
| 1160 | |
Wan Zongshun | 2a0cb4e | 2016-04-01 09:06:00 -0400 | [diff] [blame] | 1161 | for (i = 0; i < early_acpihid_map_size; ++i) { |
| 1162 | ret = add_acpi_hid_device(early_acpihid_map[i].hid, |
| 1163 | early_acpihid_map[i].uid, |
| 1164 | &early_acpihid_map[i].devid, |
| 1165 | early_acpihid_map[i].cmd_line); |
| 1166 | if (ret) |
| 1167 | return ret; |
| 1168 | } |
| 1169 | |
Joerg Roedel | 235dacb | 2013-04-09 17:53:14 +0200 | [diff] [blame] | 1170 | return 0; |
| 1171 | } |
| 1172 | |
Joerg Roedel | b65233a | 2008-07-11 17:14:21 +0200 | [diff] [blame] | 1173 | /* |
Joerg Roedel | b65233a | 2008-07-11 17:14:21 +0200 | [diff] [blame] | 1174 | * Takes a pointer to an AMD IOMMU entry in the ACPI table and |
| 1175 | * initializes the hardware and our data structures with it. |
| 1176 | */ |
Joerg Roedel | 6efed63 | 2012-06-14 15:52:58 +0200 | [diff] [blame] | 1177 | static int __init init_iommu_from_acpi(struct amd_iommu *iommu, |
Joerg Roedel | 5d0c8e4 | 2008-06-26 21:27:47 +0200 | [diff] [blame] | 1178 | struct ivhd_header *h) |
| 1179 | { |
| 1180 | u8 *p = (u8 *)h; |
| 1181 | u8 *end = p, flags = 0; |
Joerg Roedel | 0de66d5 | 2011-06-06 16:04:02 +0200 | [diff] [blame] | 1182 | u16 devid = 0, devid_start = 0, devid_to = 0; |
| 1183 | u32 dev_i, ext_flags = 0; |
Joerg Roedel | 58a3bee | 2008-07-11 17:14:30 +0200 | [diff] [blame] | 1184 | bool alias = false; |
Joerg Roedel | 5d0c8e4 | 2008-06-26 21:27:47 +0200 | [diff] [blame] | 1185 | struct ivhd_entry *e; |
Suravee Suthikulpanit | ac7ccf6 | 2016-04-01 09:05:58 -0400 | [diff] [blame] | 1186 | u32 ivhd_size; |
Joerg Roedel | 235dacb | 2013-04-09 17:53:14 +0200 | [diff] [blame] | 1187 | int ret; |
| 1188 | |
| 1189 | |
| 1190 | ret = add_early_maps(); |
| 1191 | if (ret) |
| 1192 | return ret; |
Joerg Roedel | 5d0c8e4 | 2008-06-26 21:27:47 +0200 | [diff] [blame] | 1193 | |
Kai-Heng Feng | 93d0515 | 2019-08-21 13:10:04 +0800 | [diff] [blame] | 1194 | amd_iommu_apply_ivrs_quirks(); |
| 1195 | |
Joerg Roedel | 5d0c8e4 | 2008-06-26 21:27:47 +0200 | [diff] [blame] | 1196 | /* |
Joerg Roedel | e9bf519 | 2010-09-20 14:33:07 +0200 | [diff] [blame] | 1197 | * First save the recommended feature enable bits from ACPI |
Joerg Roedel | 5d0c8e4 | 2008-06-26 21:27:47 +0200 | [diff] [blame] | 1198 | */ |
Joerg Roedel | e9bf519 | 2010-09-20 14:33:07 +0200 | [diff] [blame] | 1199 | iommu->acpi_flags = h->flags; |
Joerg Roedel | 5d0c8e4 | 2008-06-26 21:27:47 +0200 | [diff] [blame] | 1200 | |
| 1201 | /* |
| 1202 | * Done. Now parse the device entries |
| 1203 | */ |
Suravee Suthikulpanit | ac7ccf6 | 2016-04-01 09:05:58 -0400 | [diff] [blame] | 1204 | ivhd_size = get_ivhd_header_size(h); |
| 1205 | if (!ivhd_size) { |
Joerg Roedel | 101fa03 | 2018-11-27 16:22:31 +0100 | [diff] [blame] | 1206 | pr_err("Unsupported IVHD type %#x\n", h->type); |
Suravee Suthikulpanit | ac7ccf6 | 2016-04-01 09:05:58 -0400 | [diff] [blame] | 1207 | return -EINVAL; |
| 1208 | } |
| 1209 | |
| 1210 | p += ivhd_size; |
| 1211 | |
Joerg Roedel | 5d0c8e4 | 2008-06-26 21:27:47 +0200 | [diff] [blame] | 1212 | end += h->length; |
| 1213 | |
Joerg Roedel | 42a698f | 2009-05-20 15:41:28 +0200 | [diff] [blame] | 1214 | |
Joerg Roedel | 5d0c8e4 | 2008-06-26 21:27:47 +0200 | [diff] [blame] | 1215 | while (p < end) { |
| 1216 | e = (struct ivhd_entry *)p; |
| 1217 | switch (e->type) { |
| 1218 | case IVHD_DEV_ALL: |
Joerg Roedel | 42a698f | 2009-05-20 15:41:28 +0200 | [diff] [blame] | 1219 | |
Joerg Roedel | 226e889 | 2015-10-20 17:33:44 +0200 | [diff] [blame] | 1220 | DUMP_printk(" DEV_ALL\t\t\tflags: %02x\n", e->flags); |
Joerg Roedel | 42a698f | 2009-05-20 15:41:28 +0200 | [diff] [blame] | 1221 | |
Joerg Roedel | 226e889 | 2015-10-20 17:33:44 +0200 | [diff] [blame] | 1222 | for (dev_i = 0; dev_i <= amd_iommu_last_bdf; ++dev_i) |
| 1223 | set_dev_entry_from_acpi(iommu, dev_i, e->flags, 0); |
Joerg Roedel | 5d0c8e4 | 2008-06-26 21:27:47 +0200 | [diff] [blame] | 1224 | break; |
| 1225 | case IVHD_DEV_SELECT: |
Joerg Roedel | 42a698f | 2009-05-20 15:41:28 +0200 | [diff] [blame] | 1226 | |
| 1227 | DUMP_printk(" DEV_SELECT\t\t\t devid: %02x:%02x.%x " |
| 1228 | "flags: %02x\n", |
Shuah Khan | c5081cd | 2013-02-27 17:07:19 -0700 | [diff] [blame] | 1229 | PCI_BUS_NUM(e->devid), |
Joerg Roedel | 42a698f | 2009-05-20 15:41:28 +0200 | [diff] [blame] | 1230 | PCI_SLOT(e->devid), |
| 1231 | PCI_FUNC(e->devid), |
| 1232 | e->flags); |
| 1233 | |
Joerg Roedel | 5d0c8e4 | 2008-06-26 21:27:47 +0200 | [diff] [blame] | 1234 | devid = e->devid; |
Joerg Roedel | 5ff4789 | 2008-07-14 20:11:18 +0200 | [diff] [blame] | 1235 | set_dev_entry_from_acpi(iommu, devid, e->flags, 0); |
Joerg Roedel | 5d0c8e4 | 2008-06-26 21:27:47 +0200 | [diff] [blame] | 1236 | break; |
| 1237 | case IVHD_DEV_SELECT_RANGE_START: |
Joerg Roedel | 42a698f | 2009-05-20 15:41:28 +0200 | [diff] [blame] | 1238 | |
| 1239 | DUMP_printk(" DEV_SELECT_RANGE_START\t " |
| 1240 | "devid: %02x:%02x.%x flags: %02x\n", |
Shuah Khan | c5081cd | 2013-02-27 17:07:19 -0700 | [diff] [blame] | 1241 | PCI_BUS_NUM(e->devid), |
Joerg Roedel | 42a698f | 2009-05-20 15:41:28 +0200 | [diff] [blame] | 1242 | PCI_SLOT(e->devid), |
| 1243 | PCI_FUNC(e->devid), |
| 1244 | e->flags); |
| 1245 | |
Joerg Roedel | 5d0c8e4 | 2008-06-26 21:27:47 +0200 | [diff] [blame] | 1246 | devid_start = e->devid; |
| 1247 | flags = e->flags; |
| 1248 | ext_flags = 0; |
Joerg Roedel | 58a3bee | 2008-07-11 17:14:30 +0200 | [diff] [blame] | 1249 | alias = false; |
Joerg Roedel | 5d0c8e4 | 2008-06-26 21:27:47 +0200 | [diff] [blame] | 1250 | break; |
| 1251 | case IVHD_DEV_ALIAS: |
Joerg Roedel | 42a698f | 2009-05-20 15:41:28 +0200 | [diff] [blame] | 1252 | |
| 1253 | DUMP_printk(" DEV_ALIAS\t\t\t devid: %02x:%02x.%x " |
| 1254 | "flags: %02x devid_to: %02x:%02x.%x\n", |
Shuah Khan | c5081cd | 2013-02-27 17:07:19 -0700 | [diff] [blame] | 1255 | PCI_BUS_NUM(e->devid), |
Joerg Roedel | 42a698f | 2009-05-20 15:41:28 +0200 | [diff] [blame] | 1256 | PCI_SLOT(e->devid), |
| 1257 | PCI_FUNC(e->devid), |
| 1258 | e->flags, |
Shuah Khan | c5081cd | 2013-02-27 17:07:19 -0700 | [diff] [blame] | 1259 | PCI_BUS_NUM(e->ext >> 8), |
Joerg Roedel | 42a698f | 2009-05-20 15:41:28 +0200 | [diff] [blame] | 1260 | PCI_SLOT(e->ext >> 8), |
| 1261 | PCI_FUNC(e->ext >> 8)); |
| 1262 | |
Joerg Roedel | 5d0c8e4 | 2008-06-26 21:27:47 +0200 | [diff] [blame] | 1263 | devid = e->devid; |
| 1264 | devid_to = e->ext >> 8; |
Joerg Roedel | 7a6a3a0 | 2009-07-02 12:23:23 +0200 | [diff] [blame] | 1265 | set_dev_entry_from_acpi(iommu, devid , e->flags, 0); |
Neil Turton | 7455aab | 2009-05-14 14:08:11 +0100 | [diff] [blame] | 1266 | set_dev_entry_from_acpi(iommu, devid_to, e->flags, 0); |
Joerg Roedel | 5d0c8e4 | 2008-06-26 21:27:47 +0200 | [diff] [blame] | 1267 | amd_iommu_alias_table[devid] = devid_to; |
| 1268 | break; |
| 1269 | case IVHD_DEV_ALIAS_RANGE: |
Joerg Roedel | 42a698f | 2009-05-20 15:41:28 +0200 | [diff] [blame] | 1270 | |
| 1271 | DUMP_printk(" DEV_ALIAS_RANGE\t\t " |
| 1272 | "devid: %02x:%02x.%x flags: %02x " |
| 1273 | "devid_to: %02x:%02x.%x\n", |
Shuah Khan | c5081cd | 2013-02-27 17:07:19 -0700 | [diff] [blame] | 1274 | PCI_BUS_NUM(e->devid), |
Joerg Roedel | 42a698f | 2009-05-20 15:41:28 +0200 | [diff] [blame] | 1275 | PCI_SLOT(e->devid), |
| 1276 | PCI_FUNC(e->devid), |
| 1277 | e->flags, |
Shuah Khan | c5081cd | 2013-02-27 17:07:19 -0700 | [diff] [blame] | 1278 | PCI_BUS_NUM(e->ext >> 8), |
Joerg Roedel | 42a698f | 2009-05-20 15:41:28 +0200 | [diff] [blame] | 1279 | PCI_SLOT(e->ext >> 8), |
| 1280 | PCI_FUNC(e->ext >> 8)); |
| 1281 | |
Joerg Roedel | 5d0c8e4 | 2008-06-26 21:27:47 +0200 | [diff] [blame] | 1282 | devid_start = e->devid; |
| 1283 | flags = e->flags; |
| 1284 | devid_to = e->ext >> 8; |
| 1285 | ext_flags = 0; |
Joerg Roedel | 58a3bee | 2008-07-11 17:14:30 +0200 | [diff] [blame] | 1286 | alias = true; |
Joerg Roedel | 5d0c8e4 | 2008-06-26 21:27:47 +0200 | [diff] [blame] | 1287 | break; |
| 1288 | case IVHD_DEV_EXT_SELECT: |
Joerg Roedel | 42a698f | 2009-05-20 15:41:28 +0200 | [diff] [blame] | 1289 | |
| 1290 | DUMP_printk(" DEV_EXT_SELECT\t\t devid: %02x:%02x.%x " |
| 1291 | "flags: %02x ext: %08x\n", |
Shuah Khan | c5081cd | 2013-02-27 17:07:19 -0700 | [diff] [blame] | 1292 | PCI_BUS_NUM(e->devid), |
Joerg Roedel | 42a698f | 2009-05-20 15:41:28 +0200 | [diff] [blame] | 1293 | PCI_SLOT(e->devid), |
| 1294 | PCI_FUNC(e->devid), |
| 1295 | e->flags, e->ext); |
| 1296 | |
Joerg Roedel | 5d0c8e4 | 2008-06-26 21:27:47 +0200 | [diff] [blame] | 1297 | devid = e->devid; |
Joerg Roedel | 5ff4789 | 2008-07-14 20:11:18 +0200 | [diff] [blame] | 1298 | set_dev_entry_from_acpi(iommu, devid, e->flags, |
| 1299 | e->ext); |
Joerg Roedel | 5d0c8e4 | 2008-06-26 21:27:47 +0200 | [diff] [blame] | 1300 | break; |
| 1301 | case IVHD_DEV_EXT_SELECT_RANGE: |
Joerg Roedel | 42a698f | 2009-05-20 15:41:28 +0200 | [diff] [blame] | 1302 | |
| 1303 | DUMP_printk(" DEV_EXT_SELECT_RANGE\t devid: " |
| 1304 | "%02x:%02x.%x flags: %02x ext: %08x\n", |
Shuah Khan | c5081cd | 2013-02-27 17:07:19 -0700 | [diff] [blame] | 1305 | PCI_BUS_NUM(e->devid), |
Joerg Roedel | 42a698f | 2009-05-20 15:41:28 +0200 | [diff] [blame] | 1306 | PCI_SLOT(e->devid), |
| 1307 | PCI_FUNC(e->devid), |
| 1308 | e->flags, e->ext); |
| 1309 | |
Joerg Roedel | 5d0c8e4 | 2008-06-26 21:27:47 +0200 | [diff] [blame] | 1310 | devid_start = e->devid; |
| 1311 | flags = e->flags; |
| 1312 | ext_flags = e->ext; |
Joerg Roedel | 58a3bee | 2008-07-11 17:14:30 +0200 | [diff] [blame] | 1313 | alias = false; |
Joerg Roedel | 5d0c8e4 | 2008-06-26 21:27:47 +0200 | [diff] [blame] | 1314 | break; |
| 1315 | case IVHD_DEV_RANGE_END: |
Joerg Roedel | 42a698f | 2009-05-20 15:41:28 +0200 | [diff] [blame] | 1316 | |
| 1317 | DUMP_printk(" DEV_RANGE_END\t\t devid: %02x:%02x.%x\n", |
Shuah Khan | c5081cd | 2013-02-27 17:07:19 -0700 | [diff] [blame] | 1318 | PCI_BUS_NUM(e->devid), |
Joerg Roedel | 42a698f | 2009-05-20 15:41:28 +0200 | [diff] [blame] | 1319 | PCI_SLOT(e->devid), |
| 1320 | PCI_FUNC(e->devid)); |
| 1321 | |
Joerg Roedel | 5d0c8e4 | 2008-06-26 21:27:47 +0200 | [diff] [blame] | 1322 | devid = e->devid; |
| 1323 | for (dev_i = devid_start; dev_i <= devid; ++dev_i) { |
Joerg Roedel | 7a6a3a0 | 2009-07-02 12:23:23 +0200 | [diff] [blame] | 1324 | if (alias) { |
Joerg Roedel | 5d0c8e4 | 2008-06-26 21:27:47 +0200 | [diff] [blame] | 1325 | amd_iommu_alias_table[dev_i] = devid_to; |
Joerg Roedel | 7a6a3a0 | 2009-07-02 12:23:23 +0200 | [diff] [blame] | 1326 | set_dev_entry_from_acpi(iommu, |
| 1327 | devid_to, flags, ext_flags); |
| 1328 | } |
| 1329 | set_dev_entry_from_acpi(iommu, dev_i, |
| 1330 | flags, ext_flags); |
Joerg Roedel | 5d0c8e4 | 2008-06-26 21:27:47 +0200 | [diff] [blame] | 1331 | } |
| 1332 | break; |
Joerg Roedel | 6efed63 | 2012-06-14 15:52:58 +0200 | [diff] [blame] | 1333 | case IVHD_DEV_SPECIAL: { |
| 1334 | u8 handle, type; |
| 1335 | const char *var; |
| 1336 | u16 devid; |
| 1337 | int ret; |
| 1338 | |
| 1339 | handle = e->ext & 0xff; |
| 1340 | devid = (e->ext >> 8) & 0xffff; |
| 1341 | type = (e->ext >> 24) & 0xff; |
| 1342 | |
| 1343 | if (type == IVHD_SPECIAL_IOAPIC) |
| 1344 | var = "IOAPIC"; |
| 1345 | else if (type == IVHD_SPECIAL_HPET) |
| 1346 | var = "HPET"; |
| 1347 | else |
| 1348 | var = "UNKNOWN"; |
| 1349 | |
| 1350 | DUMP_printk(" DEV_SPECIAL(%s[%d])\t\tdevid: %02x:%02x.%x\n", |
| 1351 | var, (int)handle, |
Shuah Khan | c5081cd | 2013-02-27 17:07:19 -0700 | [diff] [blame] | 1352 | PCI_BUS_NUM(devid), |
Joerg Roedel | 6efed63 | 2012-06-14 15:52:58 +0200 | [diff] [blame] | 1353 | PCI_SLOT(devid), |
| 1354 | PCI_FUNC(devid)); |
| 1355 | |
Joerg Roedel | c50e324 | 2014-09-09 15:59:37 +0200 | [diff] [blame] | 1356 | ret = add_special_device(type, handle, &devid, false); |
Joerg Roedel | 6efed63 | 2012-06-14 15:52:58 +0200 | [diff] [blame] | 1357 | if (ret) |
| 1358 | return ret; |
Joerg Roedel | c50e324 | 2014-09-09 15:59:37 +0200 | [diff] [blame] | 1359 | |
| 1360 | /* |
| 1361 | * add_special_device might update the devid in case a |
| 1362 | * command-line override is present. So call |
| 1363 | * set_dev_entry_from_acpi after add_special_device. |
| 1364 | */ |
| 1365 | set_dev_entry_from_acpi(iommu, devid, e->flags, 0); |
| 1366 | |
Joerg Roedel | 6efed63 | 2012-06-14 15:52:58 +0200 | [diff] [blame] | 1367 | break; |
| 1368 | } |
Wan Zongshun | 2a0cb4e | 2016-04-01 09:06:00 -0400 | [diff] [blame] | 1369 | case IVHD_DEV_ACPI_HID: { |
| 1370 | u16 devid; |
Alexander Monakov | e461b8c | 2020-05-11 10:23:52 +0000 | [diff] [blame] | 1371 | u8 hid[ACPIHID_HID_LEN]; |
| 1372 | u8 uid[ACPIHID_UID_LEN]; |
Wan Zongshun | 2a0cb4e | 2016-04-01 09:06:00 -0400 | [diff] [blame] | 1373 | int ret; |
| 1374 | |
| 1375 | if (h->type != 0x40) { |
| 1376 | pr_err(FW_BUG "Invalid IVHD device type %#x\n", |
| 1377 | e->type); |
| 1378 | break; |
| 1379 | } |
| 1380 | |
| 1381 | memcpy(hid, (u8 *)(&e->ext), ACPIHID_HID_LEN - 1); |
| 1382 | hid[ACPIHID_HID_LEN - 1] = '\0'; |
| 1383 | |
| 1384 | if (!(*hid)) { |
| 1385 | pr_err(FW_BUG "Invalid HID.\n"); |
| 1386 | break; |
| 1387 | } |
| 1388 | |
Alexander Monakov | e461b8c | 2020-05-11 10:23:52 +0000 | [diff] [blame] | 1389 | uid[0] = '\0'; |
Wan Zongshun | 2a0cb4e | 2016-04-01 09:06:00 -0400 | [diff] [blame] | 1390 | switch (e->uidf) { |
| 1391 | case UID_NOT_PRESENT: |
| 1392 | |
| 1393 | if (e->uidl != 0) |
| 1394 | pr_warn(FW_BUG "Invalid UID length.\n"); |
| 1395 | |
| 1396 | break; |
| 1397 | case UID_IS_INTEGER: |
| 1398 | |
| 1399 | sprintf(uid, "%d", e->uid); |
| 1400 | |
| 1401 | break; |
| 1402 | case UID_IS_CHARACTER: |
| 1403 | |
Alexander Monakov | e461b8c | 2020-05-11 10:23:52 +0000 | [diff] [blame] | 1404 | memcpy(uid, &e->uid, e->uidl); |
| 1405 | uid[e->uidl] = '\0'; |
Wan Zongshun | 2a0cb4e | 2016-04-01 09:06:00 -0400 | [diff] [blame] | 1406 | |
| 1407 | break; |
| 1408 | default: |
| 1409 | break; |
| 1410 | } |
| 1411 | |
Nicolas Iooss | 6082ee7 | 2016-06-26 10:33:29 +0200 | [diff] [blame] | 1412 | devid = e->devid; |
Wan Zongshun | 2a0cb4e | 2016-04-01 09:06:00 -0400 | [diff] [blame] | 1413 | DUMP_printk(" DEV_ACPI_HID(%s[%s])\t\tdevid: %02x:%02x.%x\n", |
| 1414 | hid, uid, |
| 1415 | PCI_BUS_NUM(devid), |
| 1416 | PCI_SLOT(devid), |
| 1417 | PCI_FUNC(devid)); |
| 1418 | |
Wan Zongshun | 2a0cb4e | 2016-04-01 09:06:00 -0400 | [diff] [blame] | 1419 | flags = e->flags; |
| 1420 | |
| 1421 | ret = add_acpi_hid_device(hid, uid, &devid, false); |
| 1422 | if (ret) |
| 1423 | return ret; |
| 1424 | |
| 1425 | /* |
| 1426 | * add_special_device might update the devid in case a |
| 1427 | * command-line override is present. So call |
| 1428 | * set_dev_entry_from_acpi after add_special_device. |
| 1429 | */ |
| 1430 | set_dev_entry_from_acpi(iommu, devid, e->flags, 0); |
| 1431 | |
| 1432 | break; |
| 1433 | } |
Joerg Roedel | 5d0c8e4 | 2008-06-26 21:27:47 +0200 | [diff] [blame] | 1434 | default: |
| 1435 | break; |
| 1436 | } |
| 1437 | |
Joerg Roedel | b514e55 | 2008-09-17 17:14:27 +0200 | [diff] [blame] | 1438 | p += ivhd_entry_length(p); |
Joerg Roedel | 5d0c8e4 | 2008-06-26 21:27:47 +0200 | [diff] [blame] | 1439 | } |
Joerg Roedel | 6efed63 | 2012-06-14 15:52:58 +0200 | [diff] [blame] | 1440 | |
| 1441 | return 0; |
Joerg Roedel | 5d0c8e4 | 2008-06-26 21:27:47 +0200 | [diff] [blame] | 1442 | } |
| 1443 | |
Joerg Roedel | e47d402 | 2008-06-26 21:27:48 +0200 | [diff] [blame] | 1444 | static void __init free_iommu_one(struct amd_iommu *iommu) |
| 1445 | { |
Suravee Suthikulpanit | c69d89a | 2020-09-23 12:13:45 +0000 | [diff] [blame] | 1446 | free_cwwb_sem(iommu); |
Joerg Roedel | e47d402 | 2008-06-26 21:27:48 +0200 | [diff] [blame] | 1447 | free_command_buffer(iommu); |
Joerg Roedel | 335503e | 2008-09-05 14:29:07 +0200 | [diff] [blame] | 1448 | free_event_buffer(iommu); |
Joerg Roedel | 1a29ac0 | 2011-11-10 15:41:40 +0100 | [diff] [blame] | 1449 | free_ppr_log(iommu); |
Suravee Suthikulpanit | 8bda0cf | 2016-08-23 13:52:36 -0500 | [diff] [blame] | 1450 | free_ga_log(iommu); |
Joerg Roedel | e47d402 | 2008-06-26 21:27:48 +0200 | [diff] [blame] | 1451 | iommu_unmap_mmio_space(iommu); |
| 1452 | } |
| 1453 | |
| 1454 | static void __init free_iommu_all(void) |
| 1455 | { |
| 1456 | struct amd_iommu *iommu, *next; |
| 1457 | |
Joerg Roedel | 3bd2217 | 2009-05-04 15:06:20 +0200 | [diff] [blame] | 1458 | for_each_iommu_safe(iommu, next) { |
Joerg Roedel | e47d402 | 2008-06-26 21:27:48 +0200 | [diff] [blame] | 1459 | list_del(&iommu->list); |
| 1460 | free_iommu_one(iommu); |
| 1461 | kfree(iommu); |
| 1462 | } |
| 1463 | } |
| 1464 | |
Joerg Roedel | b65233a | 2008-07-11 17:14:21 +0200 | [diff] [blame] | 1465 | /* |
Suravee Suthikulpanit | 318fe78 | 2013-01-24 13:17:53 -0600 | [diff] [blame] | 1466 | * Family15h Model 10h-1fh erratum 746 (IOMMU Logging May Stall Translations) |
| 1467 | * Workaround: |
| 1468 | * BIOS should disable L2B micellaneous clock gating by setting |
| 1469 | * L2_L2B_CK_GATE_CONTROL[CKGateL2BMiscDisable](D0F2xF4_x90[2]) = 1b |
| 1470 | */ |
Nikola Pajkovsky | e2f1a3b | 2013-02-26 16:12:05 +0100 | [diff] [blame] | 1471 | static void amd_iommu_erratum_746_workaround(struct amd_iommu *iommu) |
Suravee Suthikulpanit | 318fe78 | 2013-01-24 13:17:53 -0600 | [diff] [blame] | 1472 | { |
| 1473 | u32 value; |
| 1474 | |
| 1475 | if ((boot_cpu_data.x86 != 0x15) || |
| 1476 | (boot_cpu_data.x86_model < 0x10) || |
| 1477 | (boot_cpu_data.x86_model > 0x1f)) |
| 1478 | return; |
| 1479 | |
| 1480 | pci_write_config_dword(iommu->dev, 0xf0, 0x90); |
| 1481 | pci_read_config_dword(iommu->dev, 0xf4, &value); |
| 1482 | |
| 1483 | if (value & BIT(2)) |
| 1484 | return; |
| 1485 | |
| 1486 | /* Select NB indirect register 0x90 and enable writing */ |
| 1487 | pci_write_config_dword(iommu->dev, 0xf0, 0x90 | (1 << 8)); |
| 1488 | |
| 1489 | pci_write_config_dword(iommu->dev, 0xf4, value | 0x4); |
Bjorn Helgaas | 5f226da | 2019-02-08 16:05:53 -0600 | [diff] [blame] | 1490 | pci_info(iommu->dev, "Applying erratum 746 workaround\n"); |
Suravee Suthikulpanit | 318fe78 | 2013-01-24 13:17:53 -0600 | [diff] [blame] | 1491 | |
| 1492 | /* Clear the enable writing bit */ |
| 1493 | pci_write_config_dword(iommu->dev, 0xf0, 0x90); |
| 1494 | } |
| 1495 | |
| 1496 | /* |
Jay Cornwall | 358875f | 2016-02-10 15:48:01 -0600 | [diff] [blame] | 1497 | * Family15h Model 30h-3fh (IOMMU Mishandles ATS Write Permission) |
| 1498 | * Workaround: |
| 1499 | * BIOS should enable ATS write permission check by setting |
| 1500 | * L2_DEBUG_3[AtsIgnoreIWDis](D0F2xF4_x47[0]) = 1b |
| 1501 | */ |
| 1502 | static void amd_iommu_ats_write_check_workaround(struct amd_iommu *iommu) |
| 1503 | { |
| 1504 | u32 value; |
| 1505 | |
| 1506 | if ((boot_cpu_data.x86 != 0x15) || |
| 1507 | (boot_cpu_data.x86_model < 0x30) || |
| 1508 | (boot_cpu_data.x86_model > 0x3f)) |
| 1509 | return; |
| 1510 | |
| 1511 | /* Test L2_DEBUG_3[AtsIgnoreIWDis] == 1 */ |
| 1512 | value = iommu_read_l2(iommu, 0x47); |
| 1513 | |
| 1514 | if (value & BIT(0)) |
| 1515 | return; |
| 1516 | |
| 1517 | /* Set L2_DEBUG_3[AtsIgnoreIWDis] = 1 */ |
| 1518 | iommu_write_l2(iommu, 0x47, value | BIT(0)); |
| 1519 | |
Bjorn Helgaas | 5f226da | 2019-02-08 16:05:53 -0600 | [diff] [blame] | 1520 | pci_info(iommu->dev, "Applying ATS write check workaround\n"); |
Jay Cornwall | 358875f | 2016-02-10 15:48:01 -0600 | [diff] [blame] | 1521 | } |
| 1522 | |
| 1523 | /* |
Joerg Roedel | b65233a | 2008-07-11 17:14:21 +0200 | [diff] [blame] | 1524 | * This function clues the initialization function for one IOMMU |
| 1525 | * together and also allocates the command buffer and programs the |
| 1526 | * hardware. It does NOT enable the IOMMU. This is done afterwards. |
| 1527 | */ |
Joerg Roedel | e47d402 | 2008-06-26 21:27:48 +0200 | [diff] [blame] | 1528 | static int __init init_iommu_one(struct amd_iommu *iommu, struct ivhd_header *h) |
| 1529 | { |
Joerg Roedel | 6efed63 | 2012-06-14 15:52:58 +0200 | [diff] [blame] | 1530 | int ret; |
| 1531 | |
Scott Wood | 2779039 | 2018-01-21 03:28:54 -0600 | [diff] [blame] | 1532 | raw_spin_lock_init(&iommu->lock); |
Suravee Suthikulpanit | c69d89a | 2020-09-23 12:13:45 +0000 | [diff] [blame] | 1533 | iommu->cmd_sem_val = 0; |
Joerg Roedel | bb52777 | 2009-11-20 14:31:51 +0100 | [diff] [blame] | 1534 | |
| 1535 | /* Add IOMMU to internal data structures */ |
Joerg Roedel | e47d402 | 2008-06-26 21:27:48 +0200 | [diff] [blame] | 1536 | list_add_tail(&iommu->list, &amd_iommu_list); |
Suravee Suthikulpanit | 6b9376e | 2017-02-24 02:48:17 -0600 | [diff] [blame] | 1537 | iommu->index = amd_iommus_present++; |
Joerg Roedel | bb52777 | 2009-11-20 14:31:51 +0100 | [diff] [blame] | 1538 | |
| 1539 | if (unlikely(iommu->index >= MAX_IOMMUS)) { |
Joerg Roedel | 101fa03 | 2018-11-27 16:22:31 +0100 | [diff] [blame] | 1540 | WARN(1, "System has more IOMMUs than supported by this driver\n"); |
Joerg Roedel | bb52777 | 2009-11-20 14:31:51 +0100 | [diff] [blame] | 1541 | return -ENOSYS; |
| 1542 | } |
| 1543 | |
| 1544 | /* Index is fine - add IOMMU to the array */ |
| 1545 | amd_iommus[iommu->index] = iommu; |
Joerg Roedel | e47d402 | 2008-06-26 21:27:48 +0200 | [diff] [blame] | 1546 | |
| 1547 | /* |
| 1548 | * Copy data from ACPI table entry to the iommu struct |
| 1549 | */ |
Joerg Roedel | 23c742d | 2012-06-12 11:47:34 +0200 | [diff] [blame] | 1550 | iommu->devid = h->devid; |
Joerg Roedel | e47d402 | 2008-06-26 21:27:48 +0200 | [diff] [blame] | 1551 | iommu->cap_ptr = h->cap_ptr; |
Joerg Roedel | ee893c2 | 2008-09-08 14:48:04 +0200 | [diff] [blame] | 1552 | iommu->pci_seg = h->pci_seg; |
Joerg Roedel | e47d402 | 2008-06-26 21:27:48 +0200 | [diff] [blame] | 1553 | iommu->mmio_phys = h->mmio_phys; |
Steven L Kinney | 30861dd | 2013-06-05 16:11:48 -0500 | [diff] [blame] | 1554 | |
Suravee Suthikulpanit | 7d7d38a | 2016-04-01 09:05:57 -0400 | [diff] [blame] | 1555 | switch (h->type) { |
| 1556 | case 0x10: |
| 1557 | /* Check if IVHD EFR contains proper max banks/counters */ |
| 1558 | if ((h->efr_attr != 0) && |
| 1559 | ((h->efr_attr & (0xF << 13)) != 0) && |
| 1560 | ((h->efr_attr & (0x3F << 17)) != 0)) |
| 1561 | iommu->mmio_phys_end = MMIO_REG_END_OFFSET; |
| 1562 | else |
| 1563 | iommu->mmio_phys_end = MMIO_CNTR_CONF_OFFSET; |
Suravee Suthikulpanit | e52d58d | 2020-09-03 09:38:22 +0000 | [diff] [blame] | 1564 | |
| 1565 | /* |
| 1566 | * Note: GA (128-bit IRTE) mode requires cmpxchg16b supports. |
| 1567 | * GAM also requires GA mode. Therefore, we need to |
| 1568 | * check cmpxchg16b support before enabling it. |
| 1569 | */ |
| 1570 | if (!boot_cpu_has(X86_FEATURE_CX16) || |
| 1571 | ((h->efr_attr & (0x1 << IOMMU_FEAT_GASUP_SHIFT)) == 0)) |
Suravee Suthikulpanit | 3928aa3 | 2016-08-23 13:52:32 -0500 | [diff] [blame] | 1572 | amd_iommu_guest_ir = AMD_IOMMU_GUEST_IR_LEGACY; |
Suravee Suthikulpanit | 7d7d38a | 2016-04-01 09:05:57 -0400 | [diff] [blame] | 1573 | break; |
| 1574 | case 0x11: |
| 1575 | case 0x40: |
| 1576 | if (h->efr_reg & (1 << 9)) |
| 1577 | iommu->mmio_phys_end = MMIO_REG_END_OFFSET; |
| 1578 | else |
| 1579 | iommu->mmio_phys_end = MMIO_CNTR_CONF_OFFSET; |
Suravee Suthikulpanit | e52d58d | 2020-09-03 09:38:22 +0000 | [diff] [blame] | 1580 | |
| 1581 | /* |
| 1582 | * Note: GA (128-bit IRTE) mode requires cmpxchg16b supports. |
| 1583 | * XT, GAM also requires GA mode. Therefore, we need to |
| 1584 | * check cmpxchg16b support before enabling them. |
| 1585 | */ |
| 1586 | if (!boot_cpu_has(X86_FEATURE_CX16) || |
| 1587 | ((h->efr_reg & (0x1 << IOMMU_EFR_GASUP_SHIFT)) == 0)) { |
Suravee Suthikulpanit | 3928aa3 | 2016-08-23 13:52:32 -0500 | [diff] [blame] | 1588 | amd_iommu_guest_ir = AMD_IOMMU_GUEST_IR_LEGACY; |
Suravee Suthikulpanit | e52d58d | 2020-09-03 09:38:22 +0000 | [diff] [blame] | 1589 | break; |
| 1590 | } |
| 1591 | |
David Woodhouse | d1adcfb | 2020-11-11 12:09:01 +0000 | [diff] [blame] | 1592 | if (h->efr_reg & BIT(IOMMU_EFR_XTSUP_SHIFT)) |
Suravee Suthikulpanit | 8130714 | 2019-11-20 07:55:48 -0600 | [diff] [blame] | 1593 | amd_iommu_xt_mode = IRQ_REMAP_X2APIC_MODE; |
Suravee Suthikulpanit | a44092e | 2021-01-20 07:50:02 -0600 | [diff] [blame] | 1594 | |
| 1595 | early_iommu_features_init(iommu, h); |
| 1596 | |
Suravee Suthikulpanit | 7d7d38a | 2016-04-01 09:05:57 -0400 | [diff] [blame] | 1597 | break; |
| 1598 | default: |
| 1599 | return -EINVAL; |
Steven L Kinney | 30861dd | 2013-06-05 16:11:48 -0500 | [diff] [blame] | 1600 | } |
| 1601 | |
| 1602 | iommu->mmio_base = iommu_map_mmio_space(iommu->mmio_phys, |
| 1603 | iommu->mmio_phys_end); |
Joerg Roedel | e47d402 | 2008-06-26 21:27:48 +0200 | [diff] [blame] | 1604 | if (!iommu->mmio_base) |
| 1605 | return -ENOMEM; |
| 1606 | |
Suravee Suthikulpanit | c69d89a | 2020-09-23 12:13:45 +0000 | [diff] [blame] | 1607 | if (alloc_cwwb_sem(iommu)) |
| 1608 | return -ENOMEM; |
| 1609 | |
Joerg Roedel | f2c2db5 | 2015-10-20 17:33:42 +0200 | [diff] [blame] | 1610 | if (alloc_command_buffer(iommu)) |
Joerg Roedel | e47d402 | 2008-06-26 21:27:48 +0200 | [diff] [blame] | 1611 | return -ENOMEM; |
| 1612 | |
Joerg Roedel | f2c2db5 | 2015-10-20 17:33:42 +0200 | [diff] [blame] | 1613 | if (alloc_event_buffer(iommu)) |
Joerg Roedel | 335503e | 2008-09-05 14:29:07 +0200 | [diff] [blame] | 1614 | return -ENOMEM; |
| 1615 | |
Joerg Roedel | a80dc3e | 2008-09-11 16:51:41 +0200 | [diff] [blame] | 1616 | iommu->int_enabled = false; |
| 1617 | |
Baoquan He | 4c232a7 | 2017-08-09 16:33:33 +0800 | [diff] [blame] | 1618 | init_translation_status(iommu); |
Baoquan He | 3ac3e5ee | 2017-08-09 16:33:38 +0800 | [diff] [blame] | 1619 | if (translation_pre_enabled(iommu) && !is_kdump_kernel()) { |
| 1620 | iommu_disable(iommu); |
| 1621 | clear_translation_pre_enabled(iommu); |
| 1622 | pr_warn("Translation was enabled for IOMMU:%d but we are not in kdump mode\n", |
| 1623 | iommu->index); |
| 1624 | } |
| 1625 | if (amd_iommu_pre_enabled) |
| 1626 | amd_iommu_pre_enabled = translation_pre_enabled(iommu); |
Baoquan He | 4c232a7 | 2017-08-09 16:33:33 +0800 | [diff] [blame] | 1627 | |
Joerg Roedel | 6efed63 | 2012-06-14 15:52:58 +0200 | [diff] [blame] | 1628 | ret = init_iommu_from_acpi(iommu, h); |
| 1629 | if (ret) |
| 1630 | return ret; |
Joerg Roedel | f6fec00 | 2012-06-21 16:51:25 +0200 | [diff] [blame] | 1631 | |
David Woodhouse | 2df985f | 2020-11-11 14:43:20 +0000 | [diff] [blame] | 1632 | if (amd_iommu_irq_remap) { |
| 1633 | ret = amd_iommu_create_irq_domain(iommu); |
| 1634 | if (ret) |
| 1635 | return ret; |
| 1636 | } |
Jiang Liu | 7c71d30 | 2015-04-13 14:11:33 +0800 | [diff] [blame] | 1637 | |
Joerg Roedel | f6fec00 | 2012-06-21 16:51:25 +0200 | [diff] [blame] | 1638 | /* |
| 1639 | * Make sure IOMMU is not considered to translate itself. The IVRS |
| 1640 | * table tells us so, but this is a lie! |
| 1641 | */ |
| 1642 | amd_iommu_rlookup_table[iommu->devid] = NULL; |
| 1643 | |
Joerg Roedel | 23c742d | 2012-06-12 11:47:34 +0200 | [diff] [blame] | 1644 | return 0; |
Joerg Roedel | e47d402 | 2008-06-26 21:27:48 +0200 | [diff] [blame] | 1645 | } |
| 1646 | |
Suravee Suthikulpanit | 8c7142f | 2016-04-01 09:05:59 -0400 | [diff] [blame] | 1647 | /** |
| 1648 | * get_highest_supported_ivhd_type - Look up the appropriate IVHD type |
Krzysztof Kozlowski | 06ce8a62c | 2020-07-28 19:08:57 +0200 | [diff] [blame] | 1649 | * @ivrs: Pointer to the IVRS header |
Suravee Suthikulpanit | 8c7142f | 2016-04-01 09:05:59 -0400 | [diff] [blame] | 1650 | * |
| 1651 | * This function search through all IVDB of the maximum supported IVHD |
| 1652 | */ |
| 1653 | static u8 get_highest_supported_ivhd_type(struct acpi_table_header *ivrs) |
| 1654 | { |
| 1655 | u8 *base = (u8 *)ivrs; |
| 1656 | struct ivhd_header *ivhd = (struct ivhd_header *) |
| 1657 | (base + IVRS_HEADER_LENGTH); |
| 1658 | u8 last_type = ivhd->type; |
| 1659 | u16 devid = ivhd->devid; |
| 1660 | |
| 1661 | while (((u8 *)ivhd - base < ivrs->length) && |
| 1662 | (ivhd->type <= ACPI_IVHD_TYPE_MAX_SUPPORTED)) { |
| 1663 | u8 *p = (u8 *) ivhd; |
| 1664 | |
| 1665 | if (ivhd->devid == devid) |
| 1666 | last_type = ivhd->type; |
| 1667 | ivhd = (struct ivhd_header *)(p + ivhd->length); |
| 1668 | } |
| 1669 | |
| 1670 | return last_type; |
| 1671 | } |
| 1672 | |
Joerg Roedel | b65233a | 2008-07-11 17:14:21 +0200 | [diff] [blame] | 1673 | /* |
| 1674 | * Iterates over all IOMMU entries in the ACPI table, allocates the |
| 1675 | * IOMMU structure and initializes it with init_iommu_one() |
| 1676 | */ |
Joerg Roedel | e47d402 | 2008-06-26 21:27:48 +0200 | [diff] [blame] | 1677 | static int __init init_iommu_all(struct acpi_table_header *table) |
| 1678 | { |
| 1679 | u8 *p = (u8 *)table, *end = (u8 *)table; |
| 1680 | struct ivhd_header *h; |
| 1681 | struct amd_iommu *iommu; |
| 1682 | int ret; |
| 1683 | |
Joerg Roedel | e47d402 | 2008-06-26 21:27:48 +0200 | [diff] [blame] | 1684 | end += table->length; |
| 1685 | p += IVRS_HEADER_LENGTH; |
| 1686 | |
| 1687 | while (p < end) { |
| 1688 | h = (struct ivhd_header *)p; |
Suravee Suthikulpanit | 8c7142f | 2016-04-01 09:05:59 -0400 | [diff] [blame] | 1689 | if (*p == amd_iommu_target_ivhd_type) { |
Joerg Roedel | 9c72041 | 2009-05-20 13:53:57 +0200 | [diff] [blame] | 1690 | |
Joerg Roedel | ae908c2 | 2009-09-01 16:52:16 +0200 | [diff] [blame] | 1691 | DUMP_printk("device: %02x:%02x.%01x cap: %04x " |
Joerg Roedel | 9c72041 | 2009-05-20 13:53:57 +0200 | [diff] [blame] | 1692 | "seg: %d flags: %01x info %04x\n", |
Shuah Khan | c5081cd | 2013-02-27 17:07:19 -0700 | [diff] [blame] | 1693 | PCI_BUS_NUM(h->devid), PCI_SLOT(h->devid), |
Joerg Roedel | 9c72041 | 2009-05-20 13:53:57 +0200 | [diff] [blame] | 1694 | PCI_FUNC(h->devid), h->cap_ptr, |
| 1695 | h->pci_seg, h->flags, h->info); |
| 1696 | DUMP_printk(" mmio-addr: %016llx\n", |
| 1697 | h->mmio_phys); |
| 1698 | |
Joerg Roedel | e47d402 | 2008-06-26 21:27:48 +0200 | [diff] [blame] | 1699 | iommu = kzalloc(sizeof(struct amd_iommu), GFP_KERNEL); |
Joerg Roedel | 02f3b3f | 2012-06-11 17:45:25 +0200 | [diff] [blame] | 1700 | if (iommu == NULL) |
| 1701 | return -ENOMEM; |
Joerg Roedel | 3551a70 | 2010-03-01 13:52:19 +0100 | [diff] [blame] | 1702 | |
Joerg Roedel | e47d402 | 2008-06-26 21:27:48 +0200 | [diff] [blame] | 1703 | ret = init_iommu_one(iommu, h); |
Joerg Roedel | 02f3b3f | 2012-06-11 17:45:25 +0200 | [diff] [blame] | 1704 | if (ret) |
| 1705 | return ret; |
Joerg Roedel | e47d402 | 2008-06-26 21:27:48 +0200 | [diff] [blame] | 1706 | } |
| 1707 | p += h->length; |
| 1708 | |
| 1709 | } |
| 1710 | WARN_ON(p != end); |
| 1711 | |
| 1712 | return 0; |
| 1713 | } |
| 1714 | |
Paul Menzel | 715601e | 2021-04-09 03:58:47 -0500 | [diff] [blame] | 1715 | static void init_iommu_perf_ctr(struct amd_iommu *iommu) |
Steven L Kinney | 30861dd | 2013-06-05 16:11:48 -0500 | [diff] [blame] | 1716 | { |
Suravee Suthikulpanit | 994d660 | 2021-04-09 03:58:48 -0500 | [diff] [blame] | 1717 | u64 val; |
Bjorn Helgaas | 5f226da | 2019-02-08 16:05:53 -0600 | [diff] [blame] | 1718 | struct pci_dev *pdev = iommu->dev; |
Steven L Kinney | 30861dd | 2013-06-05 16:11:48 -0500 | [diff] [blame] | 1719 | |
| 1720 | if (!iommu_feature(iommu, FEATURE_PC)) |
| 1721 | return; |
| 1722 | |
| 1723 | amd_iommu_pc_present = true; |
| 1724 | |
Bjorn Helgaas | 5f226da | 2019-02-08 16:05:53 -0600 | [diff] [blame] | 1725 | pci_info(pdev, "IOMMU performance counters supported\n"); |
Steven L Kinney | 30861dd | 2013-06-05 16:11:48 -0500 | [diff] [blame] | 1726 | |
| 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 Khan | 8c17bbf | 2020-01-23 15:32:14 -0700 | [diff] [blame] | 1730 | |
| 1731 | return; |
Steven L Kinney | 30861dd | 2013-06-05 16:11:48 -0500 | [diff] [blame] | 1732 | } |
| 1733 | |
Alex Williamson | 066f2e9 | 2014-06-12 16:12:37 -0600 | [diff] [blame] | 1734 | static ssize_t amd_iommu_show_cap(struct device *dev, |
| 1735 | struct device_attribute *attr, |
| 1736 | char *buf) |
| 1737 | { |
Joerg Roedel | b7a42b9 | 2017-02-28 13:57:18 +0100 | [diff] [blame] | 1738 | struct amd_iommu *iommu = dev_to_amd_iommu(dev); |
Alex Williamson | 066f2e9 | 2014-06-12 16:12:37 -0600 | [diff] [blame] | 1739 | return sprintf(buf, "%x\n", iommu->cap); |
| 1740 | } |
| 1741 | static DEVICE_ATTR(cap, S_IRUGO, amd_iommu_show_cap, NULL); |
| 1742 | |
| 1743 | static ssize_t amd_iommu_show_features(struct device *dev, |
| 1744 | struct device_attribute *attr, |
| 1745 | char *buf) |
| 1746 | { |
Joerg Roedel | b7a42b9 | 2017-02-28 13:57:18 +0100 | [diff] [blame] | 1747 | struct amd_iommu *iommu = dev_to_amd_iommu(dev); |
Alex Williamson | 066f2e9 | 2014-06-12 16:12:37 -0600 | [diff] [blame] | 1748 | return sprintf(buf, "%llx\n", iommu->features); |
| 1749 | } |
| 1750 | static DEVICE_ATTR(features, S_IRUGO, amd_iommu_show_features, NULL); |
| 1751 | |
| 1752 | static struct attribute *amd_iommu_attrs[] = { |
| 1753 | &dev_attr_cap.attr, |
| 1754 | &dev_attr_features.attr, |
| 1755 | NULL, |
| 1756 | }; |
| 1757 | |
| 1758 | static struct attribute_group amd_iommu_group = { |
| 1759 | .name = "amd-iommu", |
| 1760 | .attrs = amd_iommu_attrs, |
| 1761 | }; |
| 1762 | |
| 1763 | static const struct attribute_group *amd_iommu_groups[] = { |
| 1764 | &amd_iommu_group, |
| 1765 | NULL, |
| 1766 | }; |
Steven L Kinney | 30861dd | 2013-06-05 16:11:48 -0500 | [diff] [blame] | 1767 | |
Suravee Suthikulpanit | a44092e | 2021-01-20 07:50:02 -0600 | [diff] [blame] | 1768 | /* |
| 1769 | * Note: IVHD 0x11 and 0x40 also contains exact copy |
| 1770 | * of the IOMMU Extended Feature Register [MMIO Offset 0030h]. |
| 1771 | * Default to EFR in IVHD since it is available sooner (i.e. before PCI init). |
| 1772 | */ |
| 1773 | static void __init late_iommu_features_init(struct amd_iommu *iommu) |
| 1774 | { |
| 1775 | u64 features; |
| 1776 | |
| 1777 | if (!(iommu->cap & (1 << IOMMU_CAP_EFR))) |
| 1778 | return; |
| 1779 | |
| 1780 | /* read extended feature bits */ |
| 1781 | features = readq(iommu->mmio_base + MMIO_EXT_FEATURES); |
| 1782 | |
| 1783 | if (!iommu->features) { |
| 1784 | iommu->features = features; |
| 1785 | return; |
| 1786 | } |
| 1787 | |
| 1788 | /* |
| 1789 | * Sanity check and warn if EFR values from |
| 1790 | * IVHD and MMIO conflict. |
| 1791 | */ |
| 1792 | if (features != iommu->features) |
Paul Menzel | 304c73b | 2021-04-12 20:01:41 +0200 | [diff] [blame] | 1793 | pr_warn(FW_WARN "EFR mismatch. Use IVHD EFR (%#llx : %#llx).\n", |
Suravee Suthikulpanit | a44092e | 2021-01-20 07:50:02 -0600 | [diff] [blame] | 1794 | features, iommu->features); |
| 1795 | } |
| 1796 | |
Joerg Roedel | 24d2c52 | 2018-10-05 12:32:46 +0200 | [diff] [blame] | 1797 | static int __init iommu_init_pci(struct amd_iommu *iommu) |
Joerg Roedel | 23c742d | 2012-06-12 11:47:34 +0200 | [diff] [blame] | 1798 | { |
| 1799 | int cap_ptr = iommu->cap_ptr; |
Suravee Suthikulpanit | 8bda0cf | 2016-08-23 13:52:36 -0500 | [diff] [blame] | 1800 | int ret; |
Joerg Roedel | 23c742d | 2012-06-12 11:47:34 +0200 | [diff] [blame] | 1801 | |
Sinan Kaya | d5bf0f4 | 2017-12-19 00:37:47 -0500 | [diff] [blame] | 1802 | iommu->dev = pci_get_domain_bus_and_slot(0, PCI_BUS_NUM(iommu->devid), |
| 1803 | iommu->devid & 0xff); |
Joerg Roedel | 23c742d | 2012-06-12 11:47:34 +0200 | [diff] [blame] | 1804 | if (!iommu->dev) |
| 1805 | return -ENODEV; |
| 1806 | |
Jiang Liu | cbbc00b | 2015-10-09 22:07:31 +0800 | [diff] [blame] | 1807 | /* Prevent binding other PCI device drivers to IOMMU devices */ |
| 1808 | iommu->dev->match_driver = false; |
| 1809 | |
Joerg Roedel | 23c742d | 2012-06-12 11:47:34 +0200 | [diff] [blame] | 1810 | pci_read_config_dword(iommu->dev, cap_ptr + MMIO_CAP_HDR_OFFSET, |
| 1811 | &iommu->cap); |
Joerg Roedel | 23c742d | 2012-06-12 11:47:34 +0200 | [diff] [blame] | 1812 | |
Joerg Roedel | 23c742d | 2012-06-12 11:47:34 +0200 | [diff] [blame] | 1813 | if (!(iommu->cap & (1 << IOMMU_CAP_IOTLB))) |
| 1814 | amd_iommu_iotlb_sup = false; |
| 1815 | |
Suravee Suthikulpanit | a44092e | 2021-01-20 07:50:02 -0600 | [diff] [blame] | 1816 | late_iommu_features_init(iommu); |
Joerg Roedel | 23c742d | 2012-06-12 11:47:34 +0200 | [diff] [blame] | 1817 | |
| 1818 | if (iommu_feature(iommu, FEATURE_GT)) { |
| 1819 | int glxval; |
Suravee Suthikulpanit | a919a01 | 2014-03-05 18:54:18 -0600 | [diff] [blame] | 1820 | u32 max_pasid; |
| 1821 | u64 pasmax; |
Joerg Roedel | 23c742d | 2012-06-12 11:47:34 +0200 | [diff] [blame] | 1822 | |
Suravee Suthikulpanit | a919a01 | 2014-03-05 18:54:18 -0600 | [diff] [blame] | 1823 | pasmax = iommu->features & FEATURE_PASID_MASK; |
| 1824 | pasmax >>= FEATURE_PASID_SHIFT; |
| 1825 | max_pasid = (1 << (pasmax + 1)) - 1; |
Joerg Roedel | 23c742d | 2012-06-12 11:47:34 +0200 | [diff] [blame] | 1826 | |
Suravee Suthikulpanit | a919a01 | 2014-03-05 18:54:18 -0600 | [diff] [blame] | 1827 | amd_iommu_max_pasid = min(amd_iommu_max_pasid, max_pasid); |
| 1828 | |
| 1829 | BUG_ON(amd_iommu_max_pasid & ~PASID_MASK); |
Joerg Roedel | 23c742d | 2012-06-12 11:47:34 +0200 | [diff] [blame] | 1830 | |
| 1831 | glxval = iommu->features & FEATURE_GLXVAL_MASK; |
| 1832 | glxval >>= FEATURE_GLXVAL_SHIFT; |
| 1833 | |
| 1834 | if (amd_iommu_max_glx_val == -1) |
| 1835 | amd_iommu_max_glx_val = glxval; |
| 1836 | else |
| 1837 | amd_iommu_max_glx_val = min(amd_iommu_max_glx_val, glxval); |
| 1838 | } |
| 1839 | |
| 1840 | if (iommu_feature(iommu, FEATURE_GT) && |
| 1841 | iommu_feature(iommu, FEATURE_PPR)) { |
| 1842 | iommu->is_iommu_v2 = true; |
| 1843 | amd_iommu_v2_present = true; |
| 1844 | } |
| 1845 | |
Joerg Roedel | f2c2db5 | 2015-10-20 17:33:42 +0200 | [diff] [blame] | 1846 | if (iommu_feature(iommu, FEATURE_PPR) && alloc_ppr_log(iommu)) |
| 1847 | return -ENOMEM; |
Joerg Roedel | 23c742d | 2012-06-12 11:47:34 +0200 | [diff] [blame] | 1848 | |
Suravee Suthikulpanit | 8bda0cf | 2016-08-23 13:52:36 -0500 | [diff] [blame] | 1849 | ret = iommu_init_ga(iommu); |
| 1850 | if (ret) |
| 1851 | return ret; |
Suravee Suthikulpanit | 3928aa3 | 2016-08-23 13:52:32 -0500 | [diff] [blame] | 1852 | |
Nadav Amit | 6664340 | 2021-07-23 02:32:04 -0700 | [diff] [blame^] | 1853 | if (iommu->cap & (1UL << IOMMU_CAP_NPCACHE)) { |
| 1854 | if (!amd_iommu_unmap_flush) |
| 1855 | pr_info("IOMMU batching is disabled due to virtualization\n"); |
| 1856 | |
Joerg Roedel | 23c742d | 2012-06-12 11:47:34 +0200 | [diff] [blame] | 1857 | amd_iommu_np_cache = true; |
Nadav Amit | 6664340 | 2021-07-23 02:32:04 -0700 | [diff] [blame^] | 1858 | amd_iommu_unmap_flush = true; |
| 1859 | } |
Joerg Roedel | 23c742d | 2012-06-12 11:47:34 +0200 | [diff] [blame] | 1860 | |
Steven L Kinney | 30861dd | 2013-06-05 16:11:48 -0500 | [diff] [blame] | 1861 | init_iommu_perf_ctr(iommu); |
| 1862 | |
Joerg Roedel | 23c742d | 2012-06-12 11:47:34 +0200 | [diff] [blame] | 1863 | if (is_rd890_iommu(iommu->dev)) { |
| 1864 | int i, j; |
| 1865 | |
Sinan Kaya | d5bf0f4 | 2017-12-19 00:37:47 -0500 | [diff] [blame] | 1866 | iommu->root_pdev = |
| 1867 | pci_get_domain_bus_and_slot(0, iommu->dev->bus->number, |
| 1868 | PCI_DEVFN(0, 0)); |
Joerg Roedel | 23c742d | 2012-06-12 11:47:34 +0200 | [diff] [blame] | 1869 | |
| 1870 | /* |
| 1871 | * Some rd890 systems may not be fully reconfigured by the |
| 1872 | * BIOS, so it's necessary for us to store this information so |
| 1873 | * it can be reprogrammed on resume |
| 1874 | */ |
| 1875 | pci_read_config_dword(iommu->dev, iommu->cap_ptr + 4, |
| 1876 | &iommu->stored_addr_lo); |
| 1877 | pci_read_config_dword(iommu->dev, iommu->cap_ptr + 8, |
| 1878 | &iommu->stored_addr_hi); |
| 1879 | |
| 1880 | /* Low bit locks writes to configuration space */ |
| 1881 | iommu->stored_addr_lo &= ~1; |
| 1882 | |
| 1883 | for (i = 0; i < 6; i++) |
| 1884 | for (j = 0; j < 0x12; j++) |
| 1885 | iommu->stored_l1[i][j] = iommu_read_l1(iommu, i, j); |
| 1886 | |
| 1887 | for (i = 0; i < 0x83; i++) |
| 1888 | iommu->stored_l2[i] = iommu_read_l2(iommu, i); |
| 1889 | } |
| 1890 | |
Suravee Suthikulpanit | 318fe78 | 2013-01-24 13:17:53 -0600 | [diff] [blame] | 1891 | amd_iommu_erratum_746_workaround(iommu); |
Jay Cornwall | 358875f | 2016-02-10 15:48:01 -0600 | [diff] [blame] | 1892 | amd_iommu_ats_write_check_workaround(iommu); |
Suravee Suthikulpanit | 318fe78 | 2013-01-24 13:17:53 -0600 | [diff] [blame] | 1893 | |
Joerg Roedel | 39ab955 | 2017-02-01 16:56:46 +0100 | [diff] [blame] | 1894 | iommu_device_sysfs_add(&iommu->iommu, &iommu->dev->dev, |
| 1895 | amd_iommu_groups, "ivhd%d", iommu->index); |
Robin Murphy | 2d471b2 | 2021-04-01 14:56:26 +0100 | [diff] [blame] | 1896 | iommu_device_register(&iommu->iommu, &amd_iommu_ops, NULL); |
Alex Williamson | 066f2e9 | 2014-06-12 16:12:37 -0600 | [diff] [blame] | 1897 | |
Joerg Roedel | 23c742d | 2012-06-12 11:47:34 +0200 | [diff] [blame] | 1898 | return pci_enable_device(iommu->dev); |
| 1899 | } |
| 1900 | |
Joerg Roedel | 4d121c3 | 2012-06-14 12:21:55 +0200 | [diff] [blame] | 1901 | static void print_iommu_info(void) |
| 1902 | { |
| 1903 | static const char * const feat_str[] = { |
| 1904 | "PreF", "PPR", "X2APIC", "NX", "GT", "[5]", |
| 1905 | "IA", "GA", "HE", "PC" |
| 1906 | }; |
| 1907 | struct amd_iommu *iommu; |
| 1908 | |
| 1909 | for_each_iommu(iommu) { |
Bjorn Helgaas | 5f226da | 2019-02-08 16:05:53 -0600 | [diff] [blame] | 1910 | struct pci_dev *pdev = iommu->dev; |
Joerg Roedel | 4d121c3 | 2012-06-14 12:21:55 +0200 | [diff] [blame] | 1911 | int i; |
| 1912 | |
Tom Rix | 3703c83 | 2020-12-15 13:30:21 -0800 | [diff] [blame] | 1913 | pci_info(pdev, "Found IOMMU cap 0x%x\n", iommu->cap_ptr); |
Joerg Roedel | 4d121c3 | 2012-06-14 12:21:55 +0200 | [diff] [blame] | 1914 | |
| 1915 | if (iommu->cap & (1 << IOMMU_CAP_EFR)) { |
Alexander Monakov | 4b21a50 | 2021-05-04 13:22:20 +0300 | [diff] [blame] | 1916 | pr_info("Extended features (%#llx):", iommu->features); |
| 1917 | |
Joerg Roedel | 2bd5ed0 | 2012-08-10 11:34:08 +0200 | [diff] [blame] | 1918 | for (i = 0; i < ARRAY_SIZE(feat_str); ++i) { |
Joerg Roedel | 4d121c3 | 2012-06-14 12:21:55 +0200 | [diff] [blame] | 1919 | if (iommu_feature(iommu, (1ULL << i))) |
| 1920 | pr_cont(" %s", feat_str[i]); |
| 1921 | } |
Suravee Suthikulpanit | 3928aa3 | 2016-08-23 13:52:32 -0500 | [diff] [blame] | 1922 | |
| 1923 | if (iommu->features & FEATURE_GAM_VAPIC) |
| 1924 | pr_cont(" GA_vAPIC"); |
| 1925 | |
Steven L Kinney | 30861dd | 2013-06-05 16:11:48 -0500 | [diff] [blame] | 1926 | pr_cont("\n"); |
Borislav Petkov | 500c25e | 2012-09-28 16:22:26 +0200 | [diff] [blame] | 1927 | } |
Joerg Roedel | 4d121c3 | 2012-06-14 12:21:55 +0200 | [diff] [blame] | 1928 | } |
Suravee Suthikulpanit | 3928aa3 | 2016-08-23 13:52:32 -0500 | [diff] [blame] | 1929 | if (irq_remapping_enabled) { |
Joerg Roedel | 101fa03 | 2018-11-27 16:22:31 +0100 | [diff] [blame] | 1930 | pr_info("Interrupt remapping enabled\n"); |
Suravee Suthikulpanit | 3928aa3 | 2016-08-23 13:52:32 -0500 | [diff] [blame] | 1931 | if (AMD_IOMMU_GUEST_IR_VAPIC(amd_iommu_guest_ir)) |
Joerg Roedel | 101fa03 | 2018-11-27 16:22:31 +0100 | [diff] [blame] | 1932 | pr_info("Virtual APIC enabled\n"); |
Suravee Suthikulpanit | 90fcffd | 2018-06-27 10:31:22 -0500 | [diff] [blame] | 1933 | if (amd_iommu_xt_mode == IRQ_REMAP_X2APIC_MODE) |
Joerg Roedel | 101fa03 | 2018-11-27 16:22:31 +0100 | [diff] [blame] | 1934 | pr_info("X2APIC enabled\n"); |
Suravee Suthikulpanit | 3928aa3 | 2016-08-23 13:52:32 -0500 | [diff] [blame] | 1935 | } |
Joerg Roedel | 4d121c3 | 2012-06-14 12:21:55 +0200 | [diff] [blame] | 1936 | } |
| 1937 | |
Joerg Roedel | 2c0ae17 | 2012-06-12 15:59:30 +0200 | [diff] [blame] | 1938 | static int __init amd_iommu_init_pci(void) |
Joerg Roedel | 23c742d | 2012-06-12 11:47:34 +0200 | [diff] [blame] | 1939 | { |
| 1940 | struct amd_iommu *iommu; |
Adrian Huang | f8993dc | 2020-12-10 10:13:30 +0800 | [diff] [blame] | 1941 | int ret; |
Joerg Roedel | 23c742d | 2012-06-12 11:47:34 +0200 | [diff] [blame] | 1942 | |
| 1943 | for_each_iommu(iommu) { |
| 1944 | ret = iommu_init_pci(iommu); |
| 1945 | if (ret) |
| 1946 | break; |
Suravee Suthikulpanit | 54ce12e | 2020-09-23 12:13:47 +0000 | [diff] [blame] | 1947 | |
| 1948 | /* Need to setup range after PCI init */ |
| 1949 | iommu_set_cwwb_range(iommu); |
Joerg Roedel | 23c742d | 2012-06-12 11:47:34 +0200 | [diff] [blame] | 1950 | } |
| 1951 | |
Joerg Roedel | 522e5cb7 | 2016-07-01 16:42:55 +0200 | [diff] [blame] | 1952 | /* |
| 1953 | * Order is important here to make sure any unity map requirements are |
| 1954 | * fulfilled. The unity mappings are created and written to the device |
| 1955 | * table during the amd_iommu_init_api() call. |
| 1956 | * |
| 1957 | * After that we call init_device_table_dma() to make sure any |
| 1958 | * uninitialized DTE will block DMA, and in the end we flush the caches |
| 1959 | * of all IOMMUs to make sure the changes to the device table are |
| 1960 | * active. |
| 1961 | */ |
| 1962 | ret = amd_iommu_init_api(); |
| 1963 | |
Joerg Roedel | aafd8ba | 2015-05-28 18:41:39 +0200 | [diff] [blame] | 1964 | init_device_table_dma(); |
Joerg Roedel | 23c742d | 2012-06-12 11:47:34 +0200 | [diff] [blame] | 1965 | |
Joerg Roedel | aafd8ba | 2015-05-28 18:41:39 +0200 | [diff] [blame] | 1966 | for_each_iommu(iommu) |
| 1967 | iommu_flush_all_caches(iommu); |
| 1968 | |
Joerg Roedel | 3a18404c | 2015-05-28 18:41:45 +0200 | [diff] [blame] | 1969 | if (!ret) |
| 1970 | print_iommu_info(); |
Joerg Roedel | 4d121c3 | 2012-06-14 12:21:55 +0200 | [diff] [blame] | 1971 | |
Joerg Roedel | 23c742d | 2012-06-12 11:47:34 +0200 | [diff] [blame] | 1972 | return ret; |
| 1973 | } |
| 1974 | |
Joerg Roedel | b65233a | 2008-07-11 17:14:21 +0200 | [diff] [blame] | 1975 | /**************************************************************************** |
| 1976 | * |
Joerg Roedel | a80dc3e | 2008-09-11 16:51:41 +0200 | [diff] [blame] | 1977 | * The following functions initialize the MSI interrupts for all IOMMUs |
Frank Arnold | df805ab | 2012-08-27 19:21:04 +0200 | [diff] [blame] | 1978 | * in the system. It's a bit challenging because there could be multiple |
Joerg Roedel | a80dc3e | 2008-09-11 16:51:41 +0200 | [diff] [blame] | 1979 | * IOMMUs per PCI BDF but we can call pci_enable_msi(x) only once per |
| 1980 | * pci_dev. |
| 1981 | * |
| 1982 | ****************************************************************************/ |
| 1983 | |
Joerg Roedel | 9f800de | 2009-11-23 12:45:25 +0100 | [diff] [blame] | 1984 | static int iommu_setup_msi(struct amd_iommu *iommu) |
Joerg Roedel | a80dc3e | 2008-09-11 16:51:41 +0200 | [diff] [blame] | 1985 | { |
| 1986 | int r; |
Joerg Roedel | a80dc3e | 2008-09-11 16:51:41 +0200 | [diff] [blame] | 1987 | |
Joerg Roedel | 9ddd592 | 2012-03-15 16:29:47 +0100 | [diff] [blame] | 1988 | r = pci_enable_msi(iommu->dev); |
| 1989 | if (r) |
| 1990 | return r; |
Joerg Roedel | a80dc3e | 2008-09-11 16:51:41 +0200 | [diff] [blame] | 1991 | |
Joerg Roedel | 72fe00f | 2011-05-10 10:50:42 +0200 | [diff] [blame] | 1992 | r = request_threaded_irq(iommu->dev->irq, |
| 1993 | amd_iommu_int_handler, |
| 1994 | amd_iommu_int_thread, |
| 1995 | 0, "AMD-Vi", |
Suravee Suthikulpanit | 3f398bc | 2013-04-22 16:32:34 -0500 | [diff] [blame] | 1996 | iommu); |
Joerg Roedel | a80dc3e | 2008-09-11 16:51:41 +0200 | [diff] [blame] | 1997 | |
| 1998 | if (r) { |
| 1999 | pci_disable_msi(iommu->dev); |
Joerg Roedel | 9ddd592 | 2012-03-15 16:29:47 +0100 | [diff] [blame] | 2000 | return r; |
Joerg Roedel | a80dc3e | 2008-09-11 16:51:41 +0200 | [diff] [blame] | 2001 | } |
| 2002 | |
| 2003 | return 0; |
| 2004 | } |
| 2005 | |
Thomas Gleixner | b5c3786 | 2020-10-24 22:35:14 +0100 | [diff] [blame] | 2006 | union intcapxt { |
| 2007 | u64 capxt; |
David Woodhouse | 2fb6acf | 2020-11-11 14:43:21 +0000 | [diff] [blame] | 2008 | struct { |
| 2009 | u64 reserved_0 : 2, |
| 2010 | dest_mode_logical : 1, |
| 2011 | reserved_1 : 5, |
| 2012 | destid_0_23 : 24, |
| 2013 | vector : 8, |
| 2014 | reserved_2 : 16, |
| 2015 | destid_24_31 : 8; |
| 2016 | }; |
Thomas Gleixner | b5c3786 | 2020-10-24 22:35:14 +0100 | [diff] [blame] | 2017 | } __attribute__ ((packed)); |
Suthikulpanit, Suravee | 6692981 | 2019-07-16 04:29:16 +0000 | [diff] [blame] | 2018 | |
Krzysztof Kozlowski | 06ce8a62c | 2020-07-28 19:08:57 +0200 | [diff] [blame] | 2019 | /* |
David Woodhouse | d1adcfb | 2020-11-11 12:09:01 +0000 | [diff] [blame] | 2020 | * There isn't really any need to mask/unmask at the irqchip level because |
| 2021 | * the 64-bit INTCAPXT registers can be updated atomically without tearing |
| 2022 | * when the affinity is being updated. |
Suthikulpanit, Suravee | 6692981 | 2019-07-16 04:29:16 +0000 | [diff] [blame] | 2023 | */ |
David Woodhouse | d1adcfb | 2020-11-11 12:09:01 +0000 | [diff] [blame] | 2024 | static void intcapxt_unmask_irq(struct irq_data *data) |
Suthikulpanit, Suravee | 6692981 | 2019-07-16 04:29:16 +0000 | [diff] [blame] | 2025 | { |
David Woodhouse | d1adcfb | 2020-11-11 12:09:01 +0000 | [diff] [blame] | 2026 | } |
Suthikulpanit, Suravee | 6692981 | 2019-07-16 04:29:16 +0000 | [diff] [blame] | 2027 | |
David Woodhouse | d1adcfb | 2020-11-11 12:09:01 +0000 | [diff] [blame] | 2028 | static void intcapxt_mask_irq(struct irq_data *data) |
| 2029 | { |
| 2030 | } |
Suthikulpanit, Suravee | 6692981 | 2019-07-16 04:29:16 +0000 | [diff] [blame] | 2031 | |
David Woodhouse | d1adcfb | 2020-11-11 12:09:01 +0000 | [diff] [blame] | 2032 | static struct irq_chip intcapxt_controller; |
| 2033 | |
| 2034 | static int intcapxt_irqdomain_activate(struct irq_domain *domain, |
| 2035 | struct irq_data *irqd, bool reserve) |
| 2036 | { |
| 2037 | struct amd_iommu *iommu = irqd->chip_data; |
| 2038 | struct irq_cfg *cfg = irqd_cfg(irqd); |
Thomas Gleixner | b5c3786 | 2020-10-24 22:35:14 +0100 | [diff] [blame] | 2039 | union intcapxt xt; |
Thomas Gleixner | b5c3786 | 2020-10-24 22:35:14 +0100 | [diff] [blame] | 2040 | |
| 2041 | xt.capxt = 0ULL; |
David Woodhouse | d1adcfb | 2020-11-11 12:09:01 +0000 | [diff] [blame] | 2042 | xt.dest_mode_logical = apic->dest_mode_logical; |
| 2043 | xt.vector = cfg->vector; |
| 2044 | xt.destid_0_23 = cfg->dest_apicid & GENMASK(23, 0); |
| 2045 | xt.destid_24_31 = cfg->dest_apicid >> 24; |
Suthikulpanit, Suravee | 6692981 | 2019-07-16 04:29:16 +0000 | [diff] [blame] | 2046 | |
| 2047 | /** |
| 2048 | * Current IOMMU implemtation uses the same IRQ for all |
| 2049 | * 3 IOMMU interrupts. |
| 2050 | */ |
Thomas Gleixner | b5c3786 | 2020-10-24 22:35:14 +0100 | [diff] [blame] | 2051 | writeq(xt.capxt, iommu->mmio_base + MMIO_INTCAPXT_EVT_OFFSET); |
| 2052 | writeq(xt.capxt, iommu->mmio_base + MMIO_INTCAPXT_PPR_OFFSET); |
| 2053 | writeq(xt.capxt, iommu->mmio_base + MMIO_INTCAPXT_GALOG_OFFSET); |
David Woodhouse | d1adcfb | 2020-11-11 12:09:01 +0000 | [diff] [blame] | 2054 | return 0; |
Suthikulpanit, Suravee | 6692981 | 2019-07-16 04:29:16 +0000 | [diff] [blame] | 2055 | } |
| 2056 | |
David Woodhouse | d1adcfb | 2020-11-11 12:09:01 +0000 | [diff] [blame] | 2057 | static void intcapxt_irqdomain_deactivate(struct irq_domain *domain, |
| 2058 | struct irq_data *irqd) |
Suthikulpanit, Suravee | 6692981 | 2019-07-16 04:29:16 +0000 | [diff] [blame] | 2059 | { |
David Woodhouse | d1adcfb | 2020-11-11 12:09:01 +0000 | [diff] [blame] | 2060 | intcapxt_mask_irq(irqd); |
Suthikulpanit, Suravee | 6692981 | 2019-07-16 04:29:16 +0000 | [diff] [blame] | 2061 | } |
| 2062 | |
David Woodhouse | d1adcfb | 2020-11-11 12:09:01 +0000 | [diff] [blame] | 2063 | |
| 2064 | static int intcapxt_irqdomain_alloc(struct irq_domain *domain, unsigned int virq, |
| 2065 | unsigned int nr_irqs, void *arg) |
Suthikulpanit, Suravee | 6692981 | 2019-07-16 04:29:16 +0000 | [diff] [blame] | 2066 | { |
David Woodhouse | d1adcfb | 2020-11-11 12:09:01 +0000 | [diff] [blame] | 2067 | struct irq_alloc_info *info = arg; |
| 2068 | int i, ret; |
Suthikulpanit, Suravee | 6692981 | 2019-07-16 04:29:16 +0000 | [diff] [blame] | 2069 | |
David Woodhouse | d1adcfb | 2020-11-11 12:09:01 +0000 | [diff] [blame] | 2070 | if (!info || info->type != X86_IRQ_ALLOC_TYPE_AMDVI) |
| 2071 | return -EINVAL; |
Suthikulpanit, Suravee | 6692981 | 2019-07-16 04:29:16 +0000 | [diff] [blame] | 2072 | |
David Woodhouse | d1adcfb | 2020-11-11 12:09:01 +0000 | [diff] [blame] | 2073 | ret = irq_domain_alloc_irqs_parent(domain, virq, nr_irqs, arg); |
| 2074 | if (ret < 0) |
Suthikulpanit, Suravee | 6692981 | 2019-07-16 04:29:16 +0000 | [diff] [blame] | 2075 | return ret; |
David Woodhouse | d1adcfb | 2020-11-11 12:09:01 +0000 | [diff] [blame] | 2076 | |
| 2077 | for (i = virq; i < virq + nr_irqs; i++) { |
| 2078 | struct irq_data *irqd = irq_domain_get_irq_data(domain, i); |
| 2079 | |
| 2080 | irqd->chip = &intcapxt_controller; |
| 2081 | irqd->chip_data = info->data; |
| 2082 | __irq_set_handler(i, handle_edge_irq, 0, "edge"); |
Suthikulpanit, Suravee | 6692981 | 2019-07-16 04:29:16 +0000 | [diff] [blame] | 2083 | } |
| 2084 | |
Suthikulpanit, Suravee | 6692981 | 2019-07-16 04:29:16 +0000 | [diff] [blame] | 2085 | return ret; |
| 2086 | } |
| 2087 | |
David Woodhouse | d1adcfb | 2020-11-11 12:09:01 +0000 | [diff] [blame] | 2088 | static void intcapxt_irqdomain_free(struct irq_domain *domain, unsigned int virq, |
| 2089 | unsigned int nr_irqs) |
| 2090 | { |
| 2091 | irq_domain_free_irqs_top(domain, virq, nr_irqs); |
| 2092 | } |
| 2093 | |
| 2094 | static int intcapxt_set_affinity(struct irq_data *irqd, |
| 2095 | const struct cpumask *mask, bool force) |
| 2096 | { |
| 2097 | struct irq_data *parent = irqd->parent_data; |
| 2098 | int ret; |
| 2099 | |
| 2100 | ret = parent->chip->irq_set_affinity(parent, mask, force); |
| 2101 | if (ret < 0 || ret == IRQ_SET_MASK_OK_DONE) |
| 2102 | return ret; |
| 2103 | |
| 2104 | return intcapxt_irqdomain_activate(irqd->domain, irqd, false); |
| 2105 | } |
| 2106 | |
| 2107 | static struct irq_chip intcapxt_controller = { |
| 2108 | .name = "IOMMU-MSI", |
| 2109 | .irq_unmask = intcapxt_unmask_irq, |
| 2110 | .irq_mask = intcapxt_mask_irq, |
| 2111 | .irq_ack = irq_chip_ack_parent, |
| 2112 | .irq_retrigger = irq_chip_retrigger_hierarchy, |
| 2113 | .irq_set_affinity = intcapxt_set_affinity, |
| 2114 | .flags = IRQCHIP_SKIP_SET_WAKE, |
| 2115 | }; |
| 2116 | |
| 2117 | static const struct irq_domain_ops intcapxt_domain_ops = { |
| 2118 | .alloc = intcapxt_irqdomain_alloc, |
| 2119 | .free = intcapxt_irqdomain_free, |
| 2120 | .activate = intcapxt_irqdomain_activate, |
| 2121 | .deactivate = intcapxt_irqdomain_deactivate, |
| 2122 | }; |
| 2123 | |
| 2124 | |
| 2125 | static struct irq_domain *iommu_irqdomain; |
| 2126 | |
| 2127 | static struct irq_domain *iommu_get_irqdomain(void) |
| 2128 | { |
| 2129 | struct fwnode_handle *fn; |
| 2130 | |
| 2131 | /* No need for locking here (yet) as the init is single-threaded */ |
| 2132 | if (iommu_irqdomain) |
| 2133 | return iommu_irqdomain; |
| 2134 | |
| 2135 | fn = irq_domain_alloc_named_fwnode("AMD-Vi-MSI"); |
| 2136 | if (!fn) |
| 2137 | return NULL; |
| 2138 | |
| 2139 | iommu_irqdomain = irq_domain_create_hierarchy(x86_vector_domain, 0, 0, |
| 2140 | fn, &intcapxt_domain_ops, |
| 2141 | NULL); |
| 2142 | if (!iommu_irqdomain) |
| 2143 | irq_domain_free_fwnode(fn); |
| 2144 | |
| 2145 | return iommu_irqdomain; |
| 2146 | } |
| 2147 | |
| 2148 | static int iommu_setup_intcapxt(struct amd_iommu *iommu) |
| 2149 | { |
| 2150 | struct irq_domain *domain; |
| 2151 | struct irq_alloc_info info; |
| 2152 | int irq, ret; |
| 2153 | |
| 2154 | domain = iommu_get_irqdomain(); |
| 2155 | if (!domain) |
| 2156 | return -ENXIO; |
| 2157 | |
| 2158 | init_irq_alloc_info(&info, NULL); |
| 2159 | info.type = X86_IRQ_ALLOC_TYPE_AMDVI; |
| 2160 | info.data = iommu; |
| 2161 | |
| 2162 | irq = irq_domain_alloc_irqs(domain, 1, NUMA_NO_NODE, &info); |
| 2163 | if (irq < 0) { |
| 2164 | irq_domain_remove(domain); |
| 2165 | return irq; |
| 2166 | } |
| 2167 | |
| 2168 | ret = request_threaded_irq(irq, amd_iommu_int_handler, |
| 2169 | amd_iommu_int_thread, 0, "AMD-Vi", iommu); |
| 2170 | if (ret) { |
| 2171 | irq_domain_free_irqs(irq, 1); |
| 2172 | irq_domain_remove(domain); |
| 2173 | return ret; |
| 2174 | } |
| 2175 | |
| 2176 | iommu_feature_enable(iommu, CONTROL_INTCAPXT_EN); |
| 2177 | return 0; |
| 2178 | } |
| 2179 | |
| 2180 | static int iommu_init_irq(struct amd_iommu *iommu) |
Joerg Roedel | a80dc3e | 2008-09-11 16:51:41 +0200 | [diff] [blame] | 2181 | { |
Joerg Roedel | 9ddd592 | 2012-03-15 16:29:47 +0100 | [diff] [blame] | 2182 | int ret; |
| 2183 | |
Joerg Roedel | a80dc3e | 2008-09-11 16:51:41 +0200 | [diff] [blame] | 2184 | if (iommu->int_enabled) |
Joerg Roedel | 9ddd592 | 2012-03-15 16:29:47 +0100 | [diff] [blame] | 2185 | goto enable_faults; |
Joerg Roedel | a80dc3e | 2008-09-11 16:51:41 +0200 | [diff] [blame] | 2186 | |
David Woodhouse | d1adcfb | 2020-11-11 12:09:01 +0000 | [diff] [blame] | 2187 | if (amd_iommu_xt_mode == IRQ_REMAP_X2APIC_MODE) |
| 2188 | ret = iommu_setup_intcapxt(iommu); |
| 2189 | else if (iommu->dev->msi_cap) |
Joerg Roedel | 9ddd592 | 2012-03-15 16:29:47 +0100 | [diff] [blame] | 2190 | ret = iommu_setup_msi(iommu); |
| 2191 | else |
| 2192 | ret = -ENODEV; |
Joerg Roedel | a80dc3e | 2008-09-11 16:51:41 +0200 | [diff] [blame] | 2193 | |
Joerg Roedel | 9ddd592 | 2012-03-15 16:29:47 +0100 | [diff] [blame] | 2194 | if (ret) |
| 2195 | return ret; |
| 2196 | |
David Woodhouse | 12bc457 | 2021-01-05 01:32:51 +0000 | [diff] [blame] | 2197 | iommu->int_enabled = true; |
Joerg Roedel | 9ddd592 | 2012-03-15 16:29:47 +0100 | [diff] [blame] | 2198 | enable_faults: |
| 2199 | iommu_feature_enable(iommu, CONTROL_EVT_INT_EN); |
| 2200 | |
| 2201 | if (iommu->ppr_log != NULL) |
Adrian Huang | bde9e6b | 2019-12-30 13:56:54 +0800 | [diff] [blame] | 2202 | iommu_feature_enable(iommu, CONTROL_PPRINT_EN); |
Joerg Roedel | 9ddd592 | 2012-03-15 16:29:47 +0100 | [diff] [blame] | 2203 | |
Suravee Suthikulpanit | 8bda0cf | 2016-08-23 13:52:36 -0500 | [diff] [blame] | 2204 | iommu_ga_log_enable(iommu); |
| 2205 | |
Joerg Roedel | 9ddd592 | 2012-03-15 16:29:47 +0100 | [diff] [blame] | 2206 | return 0; |
Joerg Roedel | a80dc3e | 2008-09-11 16:51:41 +0200 | [diff] [blame] | 2207 | } |
| 2208 | |
| 2209 | /**************************************************************************** |
| 2210 | * |
Joerg Roedel | b65233a | 2008-07-11 17:14:21 +0200 | [diff] [blame] | 2211 | * The next functions belong to the third pass of parsing the ACPI |
| 2212 | * table. In this last pass the memory mapping requirements are |
Frank Arnold | df805ab | 2012-08-27 19:21:04 +0200 | [diff] [blame] | 2213 | * gathered (like exclusion and unity mapping ranges). |
Joerg Roedel | b65233a | 2008-07-11 17:14:21 +0200 | [diff] [blame] | 2214 | * |
| 2215 | ****************************************************************************/ |
| 2216 | |
Joerg Roedel | be2a022 | 2008-06-26 21:27:49 +0200 | [diff] [blame] | 2217 | static void __init free_unity_maps(void) |
| 2218 | { |
| 2219 | struct unity_map_entry *entry, *next; |
| 2220 | |
| 2221 | list_for_each_entry_safe(entry, next, &amd_iommu_unity_map, list) { |
| 2222 | list_del(&entry->list); |
| 2223 | kfree(entry); |
| 2224 | } |
| 2225 | } |
| 2226 | |
Joerg Roedel | b65233a | 2008-07-11 17:14:21 +0200 | [diff] [blame] | 2227 | /* called for unity map ACPI definition */ |
Joerg Roedel | be2a022 | 2008-06-26 21:27:49 +0200 | [diff] [blame] | 2228 | static int __init init_unity_map_range(struct ivmd_header *m) |
| 2229 | { |
Joerg Roedel | 98f1ad2 | 2012-07-06 13:28:37 +0200 | [diff] [blame] | 2230 | struct unity_map_entry *e = NULL; |
Joerg Roedel | 02acc43 | 2009-05-20 16:24:21 +0200 | [diff] [blame] | 2231 | char *s; |
Joerg Roedel | be2a022 | 2008-06-26 21:27:49 +0200 | [diff] [blame] | 2232 | |
| 2233 | e = kzalloc(sizeof(*e), GFP_KERNEL); |
| 2234 | if (e == NULL) |
| 2235 | return -ENOMEM; |
| 2236 | |
| 2237 | switch (m->type) { |
| 2238 | default: |
Joerg Roedel | 0bc252f | 2009-05-22 12:48:05 +0200 | [diff] [blame] | 2239 | kfree(e); |
| 2240 | return 0; |
Joerg Roedel | be2a022 | 2008-06-26 21:27:49 +0200 | [diff] [blame] | 2241 | case ACPI_IVMD_TYPE: |
Joerg Roedel | 02acc43 | 2009-05-20 16:24:21 +0200 | [diff] [blame] | 2242 | s = "IVMD_TYPEi\t\t\t"; |
Joerg Roedel | be2a022 | 2008-06-26 21:27:49 +0200 | [diff] [blame] | 2243 | e->devid_start = e->devid_end = m->devid; |
| 2244 | break; |
| 2245 | case ACPI_IVMD_TYPE_ALL: |
Joerg Roedel | 02acc43 | 2009-05-20 16:24:21 +0200 | [diff] [blame] | 2246 | s = "IVMD_TYPE_ALL\t\t"; |
Joerg Roedel | be2a022 | 2008-06-26 21:27:49 +0200 | [diff] [blame] | 2247 | e->devid_start = 0; |
| 2248 | e->devid_end = amd_iommu_last_bdf; |
| 2249 | break; |
| 2250 | case ACPI_IVMD_TYPE_RANGE: |
Joerg Roedel | 02acc43 | 2009-05-20 16:24:21 +0200 | [diff] [blame] | 2251 | s = "IVMD_TYPE_RANGE\t\t"; |
Joerg Roedel | be2a022 | 2008-06-26 21:27:49 +0200 | [diff] [blame] | 2252 | e->devid_start = m->devid; |
| 2253 | e->devid_end = m->aux; |
| 2254 | break; |
| 2255 | } |
| 2256 | e->address_start = PAGE_ALIGN(m->range_start); |
| 2257 | e->address_end = e->address_start + PAGE_ALIGN(m->range_length); |
| 2258 | e->prot = m->flags >> 1; |
| 2259 | |
Adrian Huang | 0bbe4ce | 2020-09-26 18:26:02 +0800 | [diff] [blame] | 2260 | /* |
| 2261 | * Treat per-device exclusion ranges as r/w unity-mapped regions |
| 2262 | * since some buggy BIOSes might lead to the overwritten exclusion |
| 2263 | * range (exclusion_start and exclusion_length members). This |
| 2264 | * happens when there are multiple exclusion ranges (IVMD entries) |
| 2265 | * defined in ACPI table. |
| 2266 | */ |
| 2267 | if (m->flags & IVMD_FLAG_EXCL_RANGE) |
| 2268 | e->prot = (IVMD_FLAG_IW | IVMD_FLAG_IR) >> 1; |
| 2269 | |
Joerg Roedel | 02acc43 | 2009-05-20 16:24:21 +0200 | [diff] [blame] | 2270 | DUMP_printk("%s devid_start: %02x:%02x.%x devid_end: %02x:%02x.%x" |
| 2271 | " range_start: %016llx range_end: %016llx flags: %x\n", s, |
Shuah Khan | c5081cd | 2013-02-27 17:07:19 -0700 | [diff] [blame] | 2272 | PCI_BUS_NUM(e->devid_start), PCI_SLOT(e->devid_start), |
| 2273 | PCI_FUNC(e->devid_start), PCI_BUS_NUM(e->devid_end), |
Joerg Roedel | 02acc43 | 2009-05-20 16:24:21 +0200 | [diff] [blame] | 2274 | PCI_SLOT(e->devid_end), PCI_FUNC(e->devid_end), |
| 2275 | e->address_start, e->address_end, m->flags); |
| 2276 | |
Joerg Roedel | be2a022 | 2008-06-26 21:27:49 +0200 | [diff] [blame] | 2277 | list_add_tail(&e->list, &amd_iommu_unity_map); |
| 2278 | |
| 2279 | return 0; |
| 2280 | } |
| 2281 | |
Joerg Roedel | b65233a | 2008-07-11 17:14:21 +0200 | [diff] [blame] | 2282 | /* iterates over all memory definitions we find in the ACPI table */ |
Joerg Roedel | be2a022 | 2008-06-26 21:27:49 +0200 | [diff] [blame] | 2283 | static int __init init_memory_definitions(struct acpi_table_header *table) |
| 2284 | { |
| 2285 | u8 *p = (u8 *)table, *end = (u8 *)table; |
| 2286 | struct ivmd_header *m; |
| 2287 | |
Joerg Roedel | be2a022 | 2008-06-26 21:27:49 +0200 | [diff] [blame] | 2288 | end += table->length; |
| 2289 | p += IVRS_HEADER_LENGTH; |
| 2290 | |
| 2291 | while (p < end) { |
| 2292 | m = (struct ivmd_header *)p; |
Joerg Roedel | 8aafaaf | 2019-03-28 11:44:59 +0100 | [diff] [blame] | 2293 | if (m->flags & (IVMD_FLAG_UNITY_MAP | IVMD_FLAG_EXCL_RANGE)) |
Joerg Roedel | be2a022 | 2008-06-26 21:27:49 +0200 | [diff] [blame] | 2294 | init_unity_map_range(m); |
| 2295 | |
| 2296 | p += m->length; |
| 2297 | } |
| 2298 | |
| 2299 | return 0; |
| 2300 | } |
| 2301 | |
Joerg Roedel | b65233a | 2008-07-11 17:14:21 +0200 | [diff] [blame] | 2302 | /* |
Baoquan He | 3ac3e5ee | 2017-08-09 16:33:38 +0800 | [diff] [blame] | 2303 | * Init the device table to not allow DMA access for devices |
Joerg Roedel | 9f5f5fb | 2008-08-14 19:55:16 +0200 | [diff] [blame] | 2304 | */ |
Joerg Roedel | 33f28c5 | 2012-06-15 18:03:31 +0200 | [diff] [blame] | 2305 | static void init_device_table_dma(void) |
Joerg Roedel | 9f5f5fb | 2008-08-14 19:55:16 +0200 | [diff] [blame] | 2306 | { |
Joerg Roedel | 0de66d5 | 2011-06-06 16:04:02 +0200 | [diff] [blame] | 2307 | u32 devid; |
Joerg Roedel | 9f5f5fb | 2008-08-14 19:55:16 +0200 | [diff] [blame] | 2308 | |
| 2309 | for (devid = 0; devid <= amd_iommu_last_bdf; ++devid) { |
| 2310 | set_dev_entry_bit(devid, DEV_ENTRY_VALID); |
| 2311 | set_dev_entry_bit(devid, DEV_ENTRY_TRANSLATION); |
Joerg Roedel | 9f5f5fb | 2008-08-14 19:55:16 +0200 | [diff] [blame] | 2312 | } |
| 2313 | } |
| 2314 | |
Joerg Roedel | d04e0ba | 2012-07-02 16:02:20 +0200 | [diff] [blame] | 2315 | static void __init uninit_device_table_dma(void) |
| 2316 | { |
| 2317 | u32 devid; |
| 2318 | |
| 2319 | for (devid = 0; devid <= amd_iommu_last_bdf; ++devid) { |
| 2320 | amd_iommu_dev_table[devid].data[0] = 0ULL; |
| 2321 | amd_iommu_dev_table[devid].data[1] = 0ULL; |
| 2322 | } |
| 2323 | } |
| 2324 | |
Joerg Roedel | 33f28c5 | 2012-06-15 18:03:31 +0200 | [diff] [blame] | 2325 | static void init_device_table(void) |
| 2326 | { |
| 2327 | u32 devid; |
| 2328 | |
| 2329 | if (!amd_iommu_irq_remap) |
| 2330 | return; |
| 2331 | |
| 2332 | for (devid = 0; devid <= amd_iommu_last_bdf; ++devid) |
| 2333 | set_dev_entry_bit(devid, DEV_ENTRY_IRQ_TBL_EN); |
| 2334 | } |
| 2335 | |
Joerg Roedel | e9bf519 | 2010-09-20 14:33:07 +0200 | [diff] [blame] | 2336 | static void iommu_init_flags(struct amd_iommu *iommu) |
| 2337 | { |
| 2338 | iommu->acpi_flags & IVHD_FLAG_HT_TUN_EN_MASK ? |
| 2339 | iommu_feature_enable(iommu, CONTROL_HT_TUN_EN) : |
| 2340 | iommu_feature_disable(iommu, CONTROL_HT_TUN_EN); |
| 2341 | |
| 2342 | iommu->acpi_flags & IVHD_FLAG_PASSPW_EN_MASK ? |
| 2343 | iommu_feature_enable(iommu, CONTROL_PASSPW_EN) : |
| 2344 | iommu_feature_disable(iommu, CONTROL_PASSPW_EN); |
| 2345 | |
| 2346 | iommu->acpi_flags & IVHD_FLAG_RESPASSPW_EN_MASK ? |
| 2347 | iommu_feature_enable(iommu, CONTROL_RESPASSPW_EN) : |
| 2348 | iommu_feature_disable(iommu, CONTROL_RESPASSPW_EN); |
| 2349 | |
| 2350 | iommu->acpi_flags & IVHD_FLAG_ISOC_EN_MASK ? |
| 2351 | iommu_feature_enable(iommu, CONTROL_ISOC_EN) : |
| 2352 | iommu_feature_disable(iommu, CONTROL_ISOC_EN); |
| 2353 | |
| 2354 | /* |
| 2355 | * make IOMMU memory accesses cache coherent |
| 2356 | */ |
| 2357 | iommu_feature_enable(iommu, CONTROL_COHERENT_EN); |
Joerg Roedel | 1456e9d | 2011-12-22 14:51:53 +0100 | [diff] [blame] | 2358 | |
| 2359 | /* Set IOTLB invalidation timeout to 1s */ |
| 2360 | iommu_set_inv_tlb_timeout(iommu, CTRL_INV_TO_1S); |
Joerg Roedel | e9bf519 | 2010-09-20 14:33:07 +0200 | [diff] [blame] | 2361 | } |
| 2362 | |
Matthew Garrett | 5bcd757 | 2010-10-04 14:59:31 -0400 | [diff] [blame] | 2363 | static void iommu_apply_resume_quirks(struct amd_iommu *iommu) |
Joerg Roedel | 4c894f4 | 2010-09-23 15:15:19 +0200 | [diff] [blame] | 2364 | { |
Matthew Garrett | 5bcd757 | 2010-10-04 14:59:31 -0400 | [diff] [blame] | 2365 | int i, j; |
| 2366 | u32 ioc_feature_control; |
Joerg Roedel | c1bf94e | 2012-05-31 17:38:11 +0200 | [diff] [blame] | 2367 | struct pci_dev *pdev = iommu->root_pdev; |
Matthew Garrett | 5bcd757 | 2010-10-04 14:59:31 -0400 | [diff] [blame] | 2368 | |
| 2369 | /* RD890 BIOSes may not have completely reconfigured the iommu */ |
Joerg Roedel | c1bf94e | 2012-05-31 17:38:11 +0200 | [diff] [blame] | 2370 | if (!is_rd890_iommu(iommu->dev) || !pdev) |
Matthew Garrett | 5bcd757 | 2010-10-04 14:59:31 -0400 | [diff] [blame] | 2371 | return; |
| 2372 | |
| 2373 | /* |
| 2374 | * First, we need to ensure that the iommu is enabled. This is |
| 2375 | * controlled by a register in the northbridge |
| 2376 | */ |
Matthew Garrett | 5bcd757 | 2010-10-04 14:59:31 -0400 | [diff] [blame] | 2377 | |
| 2378 | /* Select Northbridge indirect register 0x75 and enable writing */ |
| 2379 | pci_write_config_dword(pdev, 0x60, 0x75 | (1 << 7)); |
| 2380 | pci_read_config_dword(pdev, 0x64, &ioc_feature_control); |
| 2381 | |
| 2382 | /* Enable the iommu */ |
| 2383 | if (!(ioc_feature_control & 0x1)) |
| 2384 | pci_write_config_dword(pdev, 0x64, ioc_feature_control | 1); |
| 2385 | |
Matthew Garrett | 5bcd757 | 2010-10-04 14:59:31 -0400 | [diff] [blame] | 2386 | /* Restore the iommu BAR */ |
| 2387 | pci_write_config_dword(iommu->dev, iommu->cap_ptr + 4, |
| 2388 | iommu->stored_addr_lo); |
| 2389 | pci_write_config_dword(iommu->dev, iommu->cap_ptr + 8, |
| 2390 | iommu->stored_addr_hi); |
| 2391 | |
| 2392 | /* Restore the l1 indirect regs for each of the 6 l1s */ |
| 2393 | for (i = 0; i < 6; i++) |
| 2394 | for (j = 0; j < 0x12; j++) |
| 2395 | iommu_write_l1(iommu, i, j, iommu->stored_l1[i][j]); |
| 2396 | |
| 2397 | /* Restore the l2 indirect regs */ |
| 2398 | for (i = 0; i < 0x83; i++) |
| 2399 | iommu_write_l2(iommu, i, iommu->stored_l2[i]); |
| 2400 | |
| 2401 | /* Lock PCI setup registers */ |
| 2402 | pci_write_config_dword(iommu->dev, iommu->cap_ptr + 4, |
| 2403 | iommu->stored_addr_lo | 1); |
Joerg Roedel | 4c894f4 | 2010-09-23 15:15:19 +0200 | [diff] [blame] | 2404 | } |
| 2405 | |
Suravee Suthikulpanit | 3928aa3 | 2016-08-23 13:52:32 -0500 | [diff] [blame] | 2406 | static void iommu_enable_ga(struct amd_iommu *iommu) |
| 2407 | { |
| 2408 | #ifdef CONFIG_IRQ_REMAP |
| 2409 | switch (amd_iommu_guest_ir) { |
| 2410 | case AMD_IOMMU_GUEST_IR_VAPIC: |
| 2411 | iommu_feature_enable(iommu, CONTROL_GAM_EN); |
Gustavo A. R. Silva | df561f66 | 2020-08-23 17:36:59 -0500 | [diff] [blame] | 2412 | fallthrough; |
Suravee Suthikulpanit | 3928aa3 | 2016-08-23 13:52:32 -0500 | [diff] [blame] | 2413 | case AMD_IOMMU_GUEST_IR_LEGACY_GA: |
| 2414 | iommu_feature_enable(iommu, CONTROL_GA_EN); |
Suravee Suthikulpanit | 77bdab4 | 2016-08-23 13:52:35 -0500 | [diff] [blame] | 2415 | iommu->irte_ops = &irte_128_ops; |
Suravee Suthikulpanit | 3928aa3 | 2016-08-23 13:52:32 -0500 | [diff] [blame] | 2416 | break; |
| 2417 | default: |
Suravee Suthikulpanit | 77bdab4 | 2016-08-23 13:52:35 -0500 | [diff] [blame] | 2418 | iommu->irte_ops = &irte_32_ops; |
Suravee Suthikulpanit | 3928aa3 | 2016-08-23 13:52:32 -0500 | [diff] [blame] | 2419 | break; |
| 2420 | } |
| 2421 | #endif |
| 2422 | } |
| 2423 | |
Baoquan He | 78d313c | 2017-08-09 16:33:34 +0800 | [diff] [blame] | 2424 | static void early_enable_iommu(struct amd_iommu *iommu) |
| 2425 | { |
| 2426 | iommu_disable(iommu); |
| 2427 | iommu_init_flags(iommu); |
| 2428 | iommu_set_device_table(iommu); |
| 2429 | iommu_enable_command_buffer(iommu); |
| 2430 | iommu_enable_event_buffer(iommu); |
| 2431 | iommu_set_exclusion_range(iommu); |
| 2432 | iommu_enable_ga(iommu); |
Suravee Suthikulpanit | 90fcffd | 2018-06-27 10:31:22 -0500 | [diff] [blame] | 2433 | iommu_enable_xt(iommu); |
Baoquan He | 78d313c | 2017-08-09 16:33:34 +0800 | [diff] [blame] | 2434 | iommu_enable(iommu); |
| 2435 | iommu_flush_all_caches(iommu); |
| 2436 | } |
| 2437 | |
Joerg Roedel | 9f5f5fb | 2008-08-14 19:55:16 +0200 | [diff] [blame] | 2438 | /* |
Joerg Roedel | b65233a | 2008-07-11 17:14:21 +0200 | [diff] [blame] | 2439 | * This function finally enables all IOMMUs found in the system after |
Baoquan He | 3ac3e5ee | 2017-08-09 16:33:38 +0800 | [diff] [blame] | 2440 | * they have been initialized. |
| 2441 | * |
| 2442 | * Or if in kdump kernel and IOMMUs are all pre-enabled, try to copy |
| 2443 | * the old content of device table entries. Not this case or copy failed, |
| 2444 | * just continue as normal kernel does. |
Joerg Roedel | b65233a | 2008-07-11 17:14:21 +0200 | [diff] [blame] | 2445 | */ |
Joerg Roedel | 11ee5ac | 2012-06-12 16:30:06 +0200 | [diff] [blame] | 2446 | static void early_enable_iommus(void) |
Joerg Roedel | 8736197 | 2008-06-26 21:28:07 +0200 | [diff] [blame] | 2447 | { |
| 2448 | struct amd_iommu *iommu; |
| 2449 | |
Baoquan He | 3ac3e5ee | 2017-08-09 16:33:38 +0800 | [diff] [blame] | 2450 | |
| 2451 | if (!copy_device_table()) { |
| 2452 | /* |
| 2453 | * If come here because of failure in copying device table from old |
| 2454 | * kernel with all IOMMUs enabled, print error message and try to |
| 2455 | * free allocated old_dev_tbl_cpy. |
| 2456 | */ |
| 2457 | if (amd_iommu_pre_enabled) |
| 2458 | pr_err("Failed to copy DEV table from previous kernel.\n"); |
| 2459 | if (old_dev_tbl_cpy != NULL) |
| 2460 | free_pages((unsigned long)old_dev_tbl_cpy, |
| 2461 | get_order(dev_table_size)); |
| 2462 | |
| 2463 | for_each_iommu(iommu) { |
| 2464 | clear_translation_pre_enabled(iommu); |
| 2465 | early_enable_iommu(iommu); |
| 2466 | } |
| 2467 | } else { |
| 2468 | pr_info("Copied DEV table from previous kernel.\n"); |
| 2469 | free_pages((unsigned long)amd_iommu_dev_table, |
| 2470 | get_order(dev_table_size)); |
| 2471 | amd_iommu_dev_table = old_dev_tbl_cpy; |
| 2472 | for_each_iommu(iommu) { |
| 2473 | iommu_disable_command_buffer(iommu); |
| 2474 | iommu_disable_event_buffer(iommu); |
| 2475 | iommu_enable_command_buffer(iommu); |
| 2476 | iommu_enable_event_buffer(iommu); |
| 2477 | iommu_enable_ga(iommu); |
Suravee Suthikulpanit | 90fcffd | 2018-06-27 10:31:22 -0500 | [diff] [blame] | 2478 | iommu_enable_xt(iommu); |
Baoquan He | 3ac3e5ee | 2017-08-09 16:33:38 +0800 | [diff] [blame] | 2479 | iommu_set_device_table(iommu); |
| 2480 | iommu_flush_all_caches(iommu); |
| 2481 | } |
Joerg Roedel | 8736197 | 2008-06-26 21:28:07 +0200 | [diff] [blame] | 2482 | } |
Suravee Suthikulpanit | d98de49 | 2016-08-23 13:52:40 -0500 | [diff] [blame] | 2483 | |
| 2484 | #ifdef CONFIG_IRQ_REMAP |
| 2485 | if (AMD_IOMMU_GUEST_IR_VAPIC(amd_iommu_guest_ir)) |
| 2486 | amd_iommu_irq_ops.capability |= (1 << IRQ_POSTING_CAP); |
| 2487 | #endif |
Joerg Roedel | 8736197 | 2008-06-26 21:28:07 +0200 | [diff] [blame] | 2488 | } |
| 2489 | |
Joerg Roedel | 11ee5ac | 2012-06-12 16:30:06 +0200 | [diff] [blame] | 2490 | static void enable_iommus_v2(void) |
| 2491 | { |
| 2492 | struct amd_iommu *iommu; |
| 2493 | |
| 2494 | for_each_iommu(iommu) { |
| 2495 | iommu_enable_ppr_log(iommu); |
| 2496 | iommu_enable_gt(iommu); |
| 2497 | } |
| 2498 | } |
| 2499 | |
| 2500 | static void enable_iommus(void) |
| 2501 | { |
| 2502 | early_enable_iommus(); |
| 2503 | |
| 2504 | enable_iommus_v2(); |
| 2505 | } |
| 2506 | |
Joerg Roedel | 92ac432 | 2009-05-19 19:06:27 +0200 | [diff] [blame] | 2507 | static void disable_iommus(void) |
| 2508 | { |
| 2509 | struct amd_iommu *iommu; |
| 2510 | |
| 2511 | for_each_iommu(iommu) |
| 2512 | iommu_disable(iommu); |
Suravee Suthikulpanit | d98de49 | 2016-08-23 13:52:40 -0500 | [diff] [blame] | 2513 | |
| 2514 | #ifdef CONFIG_IRQ_REMAP |
| 2515 | if (AMD_IOMMU_GUEST_IR_VAPIC(amd_iommu_guest_ir)) |
| 2516 | amd_iommu_irq_ops.capability &= ~(1 << IRQ_POSTING_CAP); |
| 2517 | #endif |
Joerg Roedel | 92ac432 | 2009-05-19 19:06:27 +0200 | [diff] [blame] | 2518 | } |
| 2519 | |
Joerg Roedel | 7441e9c | 2008-06-30 20:18:02 +0200 | [diff] [blame] | 2520 | /* |
| 2521 | * Suspend/Resume support |
| 2522 | * disable suspend until real resume implemented |
| 2523 | */ |
| 2524 | |
Rafael J. Wysocki | f3c6ea1 | 2011-03-23 22:15:54 +0100 | [diff] [blame] | 2525 | static void amd_iommu_resume(void) |
Joerg Roedel | 7441e9c | 2008-06-30 20:18:02 +0200 | [diff] [blame] | 2526 | { |
Matthew Garrett | 5bcd757 | 2010-10-04 14:59:31 -0400 | [diff] [blame] | 2527 | struct amd_iommu *iommu; |
| 2528 | |
| 2529 | for_each_iommu(iommu) |
| 2530 | iommu_apply_resume_quirks(iommu); |
| 2531 | |
Joerg Roedel | 736501e | 2009-05-12 09:56:12 +0200 | [diff] [blame] | 2532 | /* re-load the hardware */ |
| 2533 | enable_iommus(); |
Joerg Roedel | 3d9761e | 2012-03-15 16:39:21 +0100 | [diff] [blame] | 2534 | |
| 2535 | amd_iommu_enable_interrupts(); |
Joerg Roedel | 7441e9c | 2008-06-30 20:18:02 +0200 | [diff] [blame] | 2536 | } |
| 2537 | |
Rafael J. Wysocki | f3c6ea1 | 2011-03-23 22:15:54 +0100 | [diff] [blame] | 2538 | static int amd_iommu_suspend(void) |
Joerg Roedel | 7441e9c | 2008-06-30 20:18:02 +0200 | [diff] [blame] | 2539 | { |
Joerg Roedel | 736501e | 2009-05-12 09:56:12 +0200 | [diff] [blame] | 2540 | /* disable IOMMUs to go out of the way for BIOS */ |
| 2541 | disable_iommus(); |
| 2542 | |
| 2543 | return 0; |
Joerg Roedel | 7441e9c | 2008-06-30 20:18:02 +0200 | [diff] [blame] | 2544 | } |
| 2545 | |
Rafael J. Wysocki | f3c6ea1 | 2011-03-23 22:15:54 +0100 | [diff] [blame] | 2546 | static struct syscore_ops amd_iommu_syscore_ops = { |
Joerg Roedel | 7441e9c | 2008-06-30 20:18:02 +0200 | [diff] [blame] | 2547 | .suspend = amd_iommu_suspend, |
| 2548 | .resume = amd_iommu_resume, |
| 2549 | }; |
| 2550 | |
Joerg Roedel | 90b3eb0 | 2017-06-16 16:09:55 +0200 | [diff] [blame] | 2551 | static void __init free_iommu_resources(void) |
Joerg Roedel | 8704a1b | 2012-03-01 15:57:53 +0100 | [diff] [blame] | 2552 | { |
Lucas Stach | ebcfa28 | 2016-10-26 13:09:53 +0200 | [diff] [blame] | 2553 | kmemleak_free(irq_lookup_table); |
Joerg Roedel | 0ea2c42 | 2012-06-15 18:05:20 +0200 | [diff] [blame] | 2554 | free_pages((unsigned long)irq_lookup_table, |
| 2555 | get_order(rlookup_table_size)); |
Joerg Roedel | f601927 | 2017-06-16 16:09:58 +0200 | [diff] [blame] | 2556 | irq_lookup_table = NULL; |
Joerg Roedel | 8704a1b | 2012-03-01 15:57:53 +0100 | [diff] [blame] | 2557 | |
Julia Lawall | a591989 | 2015-09-13 14:15:31 +0200 | [diff] [blame] | 2558 | kmem_cache_destroy(amd_iommu_irq_cache); |
| 2559 | amd_iommu_irq_cache = NULL; |
Joerg Roedel | 8704a1b | 2012-03-01 15:57:53 +0100 | [diff] [blame] | 2560 | |
| 2561 | free_pages((unsigned long)amd_iommu_rlookup_table, |
| 2562 | get_order(rlookup_table_size)); |
Joerg Roedel | f601927 | 2017-06-16 16:09:58 +0200 | [diff] [blame] | 2563 | amd_iommu_rlookup_table = NULL; |
Joerg Roedel | 8704a1b | 2012-03-01 15:57:53 +0100 | [diff] [blame] | 2564 | |
| 2565 | free_pages((unsigned long)amd_iommu_alias_table, |
| 2566 | get_order(alias_table_size)); |
Joerg Roedel | f601927 | 2017-06-16 16:09:58 +0200 | [diff] [blame] | 2567 | amd_iommu_alias_table = NULL; |
Joerg Roedel | 8704a1b | 2012-03-01 15:57:53 +0100 | [diff] [blame] | 2568 | |
| 2569 | free_pages((unsigned long)amd_iommu_dev_table, |
| 2570 | get_order(dev_table_size)); |
Joerg Roedel | f601927 | 2017-06-16 16:09:58 +0200 | [diff] [blame] | 2571 | amd_iommu_dev_table = NULL; |
Joerg Roedel | 8704a1b | 2012-03-01 15:57:53 +0100 | [diff] [blame] | 2572 | |
| 2573 | free_iommu_all(); |
Joerg Roedel | 8704a1b | 2012-03-01 15:57:53 +0100 | [diff] [blame] | 2574 | } |
| 2575 | |
Joerg Roedel | c2ff5cf5 | 2012-10-16 14:52:51 +0200 | [diff] [blame] | 2576 | /* SB IOAPIC is always on this device in AMD systems */ |
| 2577 | #define IOAPIC_SB_DEVID ((0x00 << 8) | PCI_DEVFN(0x14, 0)) |
| 2578 | |
Joerg Roedel | eb1eb7a | 2012-07-05 11:58:02 +0200 | [diff] [blame] | 2579 | static bool __init check_ioapic_information(void) |
| 2580 | { |
Joerg Roedel | dfbb6d4 | 2013-04-09 19:06:18 +0200 | [diff] [blame] | 2581 | const char *fw_bug = FW_BUG; |
Joerg Roedel | c2ff5cf5 | 2012-10-16 14:52:51 +0200 | [diff] [blame] | 2582 | bool ret, has_sb_ioapic; |
Joerg Roedel | eb1eb7a | 2012-07-05 11:58:02 +0200 | [diff] [blame] | 2583 | int idx; |
| 2584 | |
Joerg Roedel | c2ff5cf5 | 2012-10-16 14:52:51 +0200 | [diff] [blame] | 2585 | has_sb_ioapic = false; |
| 2586 | ret = false; |
Joerg Roedel | eb1eb7a | 2012-07-05 11:58:02 +0200 | [diff] [blame] | 2587 | |
Joerg Roedel | dfbb6d4 | 2013-04-09 19:06:18 +0200 | [diff] [blame] | 2588 | /* |
| 2589 | * If we have map overrides on the kernel command line the |
| 2590 | * messages in this function might not describe firmware bugs |
| 2591 | * anymore - so be careful |
| 2592 | */ |
| 2593 | if (cmdline_maps) |
| 2594 | fw_bug = ""; |
| 2595 | |
Joerg Roedel | c2ff5cf5 | 2012-10-16 14:52:51 +0200 | [diff] [blame] | 2596 | for (idx = 0; idx < nr_ioapics; idx++) { |
| 2597 | int devid, id = mpc_ioapic_id(idx); |
| 2598 | |
| 2599 | devid = get_ioapic_devid(id); |
| 2600 | if (devid < 0) { |
Joerg Roedel | 101fa03 | 2018-11-27 16:22:31 +0100 | [diff] [blame] | 2601 | pr_err("%s: IOAPIC[%d] not in IVRS table\n", |
Joerg Roedel | dfbb6d4 | 2013-04-09 19:06:18 +0200 | [diff] [blame] | 2602 | fw_bug, id); |
Joerg Roedel | c2ff5cf5 | 2012-10-16 14:52:51 +0200 | [diff] [blame] | 2603 | ret = false; |
| 2604 | } else if (devid == IOAPIC_SB_DEVID) { |
| 2605 | has_sb_ioapic = true; |
| 2606 | ret = true; |
Joerg Roedel | eb1eb7a | 2012-07-05 11:58:02 +0200 | [diff] [blame] | 2607 | } |
| 2608 | } |
| 2609 | |
Joerg Roedel | c2ff5cf5 | 2012-10-16 14:52:51 +0200 | [diff] [blame] | 2610 | if (!has_sb_ioapic) { |
| 2611 | /* |
| 2612 | * We expect the SB IOAPIC to be listed in the IVRS |
| 2613 | * table. The system timer is connected to the SB IOAPIC |
| 2614 | * and if we don't have it in the list the system will |
| 2615 | * panic at boot time. This situation usually happens |
| 2616 | * when the BIOS is buggy and provides us the wrong |
| 2617 | * device id for the IOAPIC in the system. |
| 2618 | */ |
Joerg Roedel | 101fa03 | 2018-11-27 16:22:31 +0100 | [diff] [blame] | 2619 | pr_err("%s: No southbridge IOAPIC found\n", fw_bug); |
Joerg Roedel | c2ff5cf5 | 2012-10-16 14:52:51 +0200 | [diff] [blame] | 2620 | } |
| 2621 | |
| 2622 | if (!ret) |
Joerg Roedel | 101fa03 | 2018-11-27 16:22:31 +0100 | [diff] [blame] | 2623 | pr_err("Disabling interrupt remapping\n"); |
Joerg Roedel | c2ff5cf5 | 2012-10-16 14:52:51 +0200 | [diff] [blame] | 2624 | |
| 2625 | return ret; |
Joerg Roedel | eb1eb7a | 2012-07-05 11:58:02 +0200 | [diff] [blame] | 2626 | } |
| 2627 | |
Joerg Roedel | d04e0ba | 2012-07-02 16:02:20 +0200 | [diff] [blame] | 2628 | static void __init free_dma_resources(void) |
| 2629 | { |
Joerg Roedel | d04e0ba | 2012-07-02 16:02:20 +0200 | [diff] [blame] | 2630 | free_pages((unsigned long)amd_iommu_pd_alloc_bitmap, |
| 2631 | get_order(MAX_DOMAIN_ID/8)); |
Joerg Roedel | f601927 | 2017-06-16 16:09:58 +0200 | [diff] [blame] | 2632 | amd_iommu_pd_alloc_bitmap = NULL; |
Joerg Roedel | d04e0ba | 2012-07-02 16:02:20 +0200 | [diff] [blame] | 2633 | |
| 2634 | free_unity_maps(); |
| 2635 | } |
| 2636 | |
Suravee Suthikulpanit | a44092e | 2021-01-20 07:50:02 -0600 | [diff] [blame] | 2637 | static void __init ivinfo_init(void *ivrs) |
| 2638 | { |
| 2639 | amd_iommu_ivinfo = *((u32 *)(ivrs + IOMMU_IVINFO_OFFSET)); |
| 2640 | } |
| 2641 | |
Joerg Roedel | b65233a | 2008-07-11 17:14:21 +0200 | [diff] [blame] | 2642 | /* |
Joerg Roedel | 8704a1b | 2012-03-01 15:57:53 +0100 | [diff] [blame] | 2643 | * This is the hardware init function for AMD IOMMU in the system. |
| 2644 | * This function is called either from amd_iommu_init or from the interrupt |
| 2645 | * remapping setup code. |
Joerg Roedel | b65233a | 2008-07-11 17:14:21 +0200 | [diff] [blame] | 2646 | * |
| 2647 | * This function basically parses the ACPI table for AMD IOMMU (IVRS) |
Suravee Suthikulpanit | 8c7142f | 2016-04-01 09:05:59 -0400 | [diff] [blame] | 2648 | * four times: |
Joerg Roedel | b65233a | 2008-07-11 17:14:21 +0200 | [diff] [blame] | 2649 | * |
Suravee Suthikulpanit | 8c7142f | 2016-04-01 09:05:59 -0400 | [diff] [blame] | 2650 | * 1 pass) Discover the most comprehensive IVHD type to use. |
| 2651 | * |
| 2652 | * 2 pass) Find the highest PCI device id the driver has to handle. |
Joerg Roedel | b65233a | 2008-07-11 17:14:21 +0200 | [diff] [blame] | 2653 | * Upon this information the size of the data structures is |
| 2654 | * determined that needs to be allocated. |
| 2655 | * |
Suravee Suthikulpanit | 8c7142f | 2016-04-01 09:05:59 -0400 | [diff] [blame] | 2656 | * 3 pass) Initialize the data structures just allocated with the |
Joerg Roedel | b65233a | 2008-07-11 17:14:21 +0200 | [diff] [blame] | 2657 | * information in the ACPI table about available AMD IOMMUs |
| 2658 | * in the system. It also maps the PCI devices in the |
| 2659 | * system to specific IOMMUs |
| 2660 | * |
Suravee Suthikulpanit | 8c7142f | 2016-04-01 09:05:59 -0400 | [diff] [blame] | 2661 | * 4 pass) After the basic data structures are allocated and |
Joerg Roedel | b65233a | 2008-07-11 17:14:21 +0200 | [diff] [blame] | 2662 | * initialized we update them with information about memory |
| 2663 | * remapping requirements parsed out of the ACPI table in |
| 2664 | * this last pass. |
| 2665 | * |
Joerg Roedel | 8704a1b | 2012-03-01 15:57:53 +0100 | [diff] [blame] | 2666 | * After everything is set up the IOMMUs are enabled and the necessary |
| 2667 | * hotplug and suspend notifiers are registered. |
Joerg Roedel | b65233a | 2008-07-11 17:14:21 +0200 | [diff] [blame] | 2668 | */ |
Joerg Roedel | 643511b | 2012-06-12 12:09:35 +0200 | [diff] [blame] | 2669 | static int __init early_amd_iommu_init(void) |
Joerg Roedel | fe74c9c | 2008-06-26 21:27:50 +0200 | [diff] [blame] | 2670 | { |
Joerg Roedel | 02f3b3f | 2012-06-11 17:45:25 +0200 | [diff] [blame] | 2671 | struct acpi_table_header *ivrs_base; |
Adrian Huang | f8993dc | 2020-12-10 10:13:30 +0800 | [diff] [blame] | 2672 | int i, remap_cache_sz, ret; |
Joerg Roedel | 02f3b3f | 2012-06-11 17:45:25 +0200 | [diff] [blame] | 2673 | acpi_status status; |
Joerg Roedel | fe74c9c | 2008-06-26 21:27:50 +0200 | [diff] [blame] | 2674 | |
Joerg Roedel | 643511b | 2012-06-12 12:09:35 +0200 | [diff] [blame] | 2675 | if (!amd_iommu_detected) |
Joerg Roedel | 8704a1b | 2012-03-01 15:57:53 +0100 | [diff] [blame] | 2676 | return -ENODEV; |
| 2677 | |
Lv Zheng | 6b11d1d | 2016-12-14 15:04:39 +0800 | [diff] [blame] | 2678 | status = acpi_get_table("IVRS", 0, &ivrs_base); |
Joerg Roedel | 02f3b3f | 2012-06-11 17:45:25 +0200 | [diff] [blame] | 2679 | if (status == AE_NOT_FOUND) |
| 2680 | return -ENODEV; |
| 2681 | else if (ACPI_FAILURE(status)) { |
| 2682 | const char *err = acpi_format_exception(status); |
Joerg Roedel | 101fa03 | 2018-11-27 16:22:31 +0100 | [diff] [blame] | 2683 | pr_err("IVRS table error: %s\n", err); |
Joerg Roedel | 02f3b3f | 2012-06-11 17:45:25 +0200 | [diff] [blame] | 2684 | return -EINVAL; |
| 2685 | } |
| 2686 | |
Joerg Roedel | fe74c9c | 2008-06-26 21:27:50 +0200 | [diff] [blame] | 2687 | /* |
Suravee Suthikulpanit | 8c7142f | 2016-04-01 09:05:59 -0400 | [diff] [blame] | 2688 | * Validate checksum here so we don't need to do it when |
| 2689 | * we actually parse the table |
| 2690 | */ |
| 2691 | ret = check_ivrs_checksum(ivrs_base); |
| 2692 | if (ret) |
Rafael J. Wysocki | 99e8ccd | 2017-01-10 14:57:28 +0100 | [diff] [blame] | 2693 | goto out; |
Suravee Suthikulpanit | 8c7142f | 2016-04-01 09:05:59 -0400 | [diff] [blame] | 2694 | |
Suravee Suthikulpanit | a44092e | 2021-01-20 07:50:02 -0600 | [diff] [blame] | 2695 | ivinfo_init(ivrs_base); |
| 2696 | |
Suravee Suthikulpanit | 8c7142f | 2016-04-01 09:05:59 -0400 | [diff] [blame] | 2697 | amd_iommu_target_ivhd_type = get_highest_supported_ivhd_type(ivrs_base); |
| 2698 | DUMP_printk("Using IVHD type %#x\n", amd_iommu_target_ivhd_type); |
| 2699 | |
| 2700 | /* |
Joerg Roedel | fe74c9c | 2008-06-26 21:27:50 +0200 | [diff] [blame] | 2701 | * First parse ACPI tables to find the largest Bus/Dev/Func |
| 2702 | * we need to handle. Upon this information the shared data |
| 2703 | * structures for the IOMMUs in the system will be allocated |
| 2704 | */ |
Joerg Roedel | 2c0ae17 | 2012-06-12 15:59:30 +0200 | [diff] [blame] | 2705 | ret = find_last_devid_acpi(ivrs_base); |
| 2706 | if (ret) |
Joerg Roedel | 3551a70 | 2010-03-01 13:52:19 +0100 | [diff] [blame] | 2707 | goto out; |
| 2708 | |
Joerg Roedel | c571484 | 2008-07-11 17:14:25 +0200 | [diff] [blame] | 2709 | dev_table_size = tbl_size(DEV_TABLE_ENTRY_SIZE); |
| 2710 | alias_table_size = tbl_size(ALIAS_TABLE_ENTRY_SIZE); |
| 2711 | rlookup_table_size = tbl_size(RLOOKUP_TABLE_ENTRY_SIZE); |
Joerg Roedel | fe74c9c | 2008-06-26 21:27:50 +0200 | [diff] [blame] | 2712 | |
Joerg Roedel | fe74c9c | 2008-06-26 21:27:50 +0200 | [diff] [blame] | 2713 | /* Device table - directly used by all IOMMUs */ |
Joerg Roedel | 8704a1b | 2012-03-01 15:57:53 +0100 | [diff] [blame] | 2714 | ret = -ENOMEM; |
Baoquan He | b336781 | 2017-08-09 16:33:42 +0800 | [diff] [blame] | 2715 | amd_iommu_dev_table = (void *)__get_free_pages( |
| 2716 | GFP_KERNEL | __GFP_ZERO | GFP_DMA32, |
Joerg Roedel | fe74c9c | 2008-06-26 21:27:50 +0200 | [diff] [blame] | 2717 | get_order(dev_table_size)); |
| 2718 | if (amd_iommu_dev_table == NULL) |
| 2719 | goto out; |
| 2720 | |
| 2721 | /* |
| 2722 | * Alias table - map PCI Bus/Dev/Func to Bus/Dev/Func the |
| 2723 | * IOMMU see for that device |
| 2724 | */ |
| 2725 | amd_iommu_alias_table = (void *)__get_free_pages(GFP_KERNEL, |
| 2726 | get_order(alias_table_size)); |
| 2727 | if (amd_iommu_alias_table == NULL) |
Joerg Roedel | 2c0ae17 | 2012-06-12 15:59:30 +0200 | [diff] [blame] | 2728 | goto out; |
Joerg Roedel | fe74c9c | 2008-06-26 21:27:50 +0200 | [diff] [blame] | 2729 | |
| 2730 | /* IOMMU rlookup table - find the IOMMU for a specific device */ |
Joerg Roedel | 83fd5cc | 2008-12-16 19:17:11 +0100 | [diff] [blame] | 2731 | amd_iommu_rlookup_table = (void *)__get_free_pages( |
| 2732 | GFP_KERNEL | __GFP_ZERO, |
Joerg Roedel | fe74c9c | 2008-06-26 21:27:50 +0200 | [diff] [blame] | 2733 | get_order(rlookup_table_size)); |
| 2734 | if (amd_iommu_rlookup_table == NULL) |
Joerg Roedel | 2c0ae17 | 2012-06-12 15:59:30 +0200 | [diff] [blame] | 2735 | goto out; |
Joerg Roedel | fe74c9c | 2008-06-26 21:27:50 +0200 | [diff] [blame] | 2736 | |
Joerg Roedel | 5dc8bff | 2008-07-11 17:14:32 +0200 | [diff] [blame] | 2737 | amd_iommu_pd_alloc_bitmap = (void *)__get_free_pages( |
| 2738 | GFP_KERNEL | __GFP_ZERO, |
Joerg Roedel | fe74c9c | 2008-06-26 21:27:50 +0200 | [diff] [blame] | 2739 | get_order(MAX_DOMAIN_ID/8)); |
| 2740 | if (amd_iommu_pd_alloc_bitmap == NULL) |
Joerg Roedel | 2c0ae17 | 2012-06-12 15:59:30 +0200 | [diff] [blame] | 2741 | goto out; |
Joerg Roedel | fe74c9c | 2008-06-26 21:27:50 +0200 | [diff] [blame] | 2742 | |
| 2743 | /* |
Joerg Roedel | 5dc8bff | 2008-07-11 17:14:32 +0200 | [diff] [blame] | 2744 | * let all alias entries point to itself |
Joerg Roedel | fe74c9c | 2008-06-26 21:27:50 +0200 | [diff] [blame] | 2745 | */ |
Joerg Roedel | 3a61ec3 | 2008-07-25 13:07:50 +0200 | [diff] [blame] | 2746 | for (i = 0; i <= amd_iommu_last_bdf; ++i) |
Joerg Roedel | fe74c9c | 2008-06-26 21:27:50 +0200 | [diff] [blame] | 2747 | amd_iommu_alias_table[i] = i; |
| 2748 | |
Joerg Roedel | fe74c9c | 2008-06-26 21:27:50 +0200 | [diff] [blame] | 2749 | /* |
| 2750 | * never allocate domain 0 because its used as the non-allocated and |
| 2751 | * error value placeholder |
| 2752 | */ |
Baoquan He | 5c87f62 | 2016-09-15 16:50:51 +0800 | [diff] [blame] | 2753 | __set_bit(0, amd_iommu_pd_alloc_bitmap); |
Joerg Roedel | fe74c9c | 2008-06-26 21:27:50 +0200 | [diff] [blame] | 2754 | |
| 2755 | /* |
| 2756 | * now the data structures are allocated and basically initialized |
| 2757 | * start the real acpi table scan |
| 2758 | */ |
Joerg Roedel | 02f3b3f | 2012-06-11 17:45:25 +0200 | [diff] [blame] | 2759 | ret = init_iommu_all(ivrs_base); |
| 2760 | if (ret) |
Joerg Roedel | 2c0ae17 | 2012-06-12 15:59:30 +0200 | [diff] [blame] | 2761 | goto out; |
Joerg Roedel | fe74c9c | 2008-06-26 21:27:50 +0200 | [diff] [blame] | 2762 | |
Joerg Roedel | 1112374 | 2017-06-16 16:09:54 +0200 | [diff] [blame] | 2763 | /* Disable any previously enabled IOMMUs */ |
Baoquan He | 20b46df | 2017-08-09 16:33:44 +0800 | [diff] [blame] | 2764 | if (!is_kdump_kernel() || amd_iommu_disabled) |
| 2765 | disable_iommus(); |
Joerg Roedel | 1112374 | 2017-06-16 16:09:54 +0200 | [diff] [blame] | 2766 | |
Joerg Roedel | eb1eb7a | 2012-07-05 11:58:02 +0200 | [diff] [blame] | 2767 | if (amd_iommu_irq_remap) |
| 2768 | amd_iommu_irq_remap = check_ioapic_information(); |
| 2769 | |
Joerg Roedel | 05152a0 | 2012-06-15 16:53:51 +0200 | [diff] [blame] | 2770 | if (amd_iommu_irq_remap) { |
| 2771 | /* |
| 2772 | * Interrupt remapping enabled, create kmem_cache for the |
| 2773 | * remapping tables. |
| 2774 | */ |
Wei Yongjun | 83ed9c1 | 2013-04-23 10:47:44 +0800 | [diff] [blame] | 2775 | ret = -ENOMEM; |
Suravee Suthikulpanit | 3928aa3 | 2016-08-23 13:52:32 -0500 | [diff] [blame] | 2776 | if (!AMD_IOMMU_GUEST_IR_GA(amd_iommu_guest_ir)) |
| 2777 | remap_cache_sz = MAX_IRQS_PER_TABLE * sizeof(u32); |
| 2778 | else |
| 2779 | remap_cache_sz = MAX_IRQS_PER_TABLE * (sizeof(u64) * 2); |
Joerg Roedel | 05152a0 | 2012-06-15 16:53:51 +0200 | [diff] [blame] | 2780 | amd_iommu_irq_cache = kmem_cache_create("irq_remap_cache", |
Suravee Suthikulpanit | 3928aa3 | 2016-08-23 13:52:32 -0500 | [diff] [blame] | 2781 | remap_cache_sz, |
Suravee Suthikulpanit | 5ae9a04 | 2020-12-10 10:24:36 -0600 | [diff] [blame] | 2782 | DTE_INTTAB_ALIGNMENT, |
Suravee Suthikulpanit | 3928aa3 | 2016-08-23 13:52:32 -0500 | [diff] [blame] | 2783 | 0, NULL); |
Joerg Roedel | 05152a0 | 2012-06-15 16:53:51 +0200 | [diff] [blame] | 2784 | if (!amd_iommu_irq_cache) |
| 2785 | goto out; |
Joerg Roedel | 0ea2c42 | 2012-06-15 18:05:20 +0200 | [diff] [blame] | 2786 | |
| 2787 | irq_lookup_table = (void *)__get_free_pages( |
| 2788 | GFP_KERNEL | __GFP_ZERO, |
| 2789 | get_order(rlookup_table_size)); |
Lucas Stach | ebcfa28 | 2016-10-26 13:09:53 +0200 | [diff] [blame] | 2790 | kmemleak_alloc(irq_lookup_table, rlookup_table_size, |
| 2791 | 1, GFP_KERNEL); |
Joerg Roedel | 0ea2c42 | 2012-06-15 18:05:20 +0200 | [diff] [blame] | 2792 | if (!irq_lookup_table) |
| 2793 | goto out; |
Joerg Roedel | 05152a0 | 2012-06-15 16:53:51 +0200 | [diff] [blame] | 2794 | } |
| 2795 | |
Joerg Roedel | 02f3b3f | 2012-06-11 17:45:25 +0200 | [diff] [blame] | 2796 | ret = init_memory_definitions(ivrs_base); |
| 2797 | if (ret) |
Joerg Roedel | 2c0ae17 | 2012-06-12 15:59:30 +0200 | [diff] [blame] | 2798 | goto out; |
Joerg Roedel | 3551a70 | 2010-03-01 13:52:19 +0100 | [diff] [blame] | 2799 | |
Joerg Roedel | eb1eb7a | 2012-07-05 11:58:02 +0200 | [diff] [blame] | 2800 | /* init the device table */ |
| 2801 | init_device_table(); |
| 2802 | |
Joerg Roedel | 8704a1b | 2012-03-01 15:57:53 +0100 | [diff] [blame] | 2803 | out: |
Joerg Roedel | 02f3b3f | 2012-06-11 17:45:25 +0200 | [diff] [blame] | 2804 | /* Don't leak any ACPI memory */ |
Lv Zheng | 6b11d1d | 2016-12-14 15:04:39 +0800 | [diff] [blame] | 2805 | acpi_put_table(ivrs_base); |
Joerg Roedel | 02f3b3f | 2012-06-11 17:45:25 +0200 | [diff] [blame] | 2806 | |
Joerg Roedel | 8704a1b | 2012-03-01 15:57:53 +0100 | [diff] [blame] | 2807 | return ret; |
Joerg Roedel | 643511b | 2012-06-12 12:09:35 +0200 | [diff] [blame] | 2808 | } |
| 2809 | |
Gerard Snitselaar | ae29514 | 2012-03-16 11:38:22 -0700 | [diff] [blame] | 2810 | static int amd_iommu_enable_interrupts(void) |
Joerg Roedel | 3d9761e | 2012-03-15 16:39:21 +0100 | [diff] [blame] | 2811 | { |
| 2812 | struct amd_iommu *iommu; |
| 2813 | int ret = 0; |
| 2814 | |
| 2815 | for_each_iommu(iommu) { |
David Woodhouse | d1adcfb | 2020-11-11 12:09:01 +0000 | [diff] [blame] | 2816 | ret = iommu_init_irq(iommu); |
Joerg Roedel | 3d9761e | 2012-03-15 16:39:21 +0100 | [diff] [blame] | 2817 | if (ret) |
| 2818 | goto out; |
| 2819 | } |
| 2820 | |
| 2821 | out: |
| 2822 | return ret; |
| 2823 | } |
| 2824 | |
Joerg Roedel | b65412c | 2021-06-08 14:28:43 +0200 | [diff] [blame] | 2825 | static bool __init detect_ivrs(void) |
Joerg Roedel | 02f3b3f | 2012-06-11 17:45:25 +0200 | [diff] [blame] | 2826 | { |
| 2827 | struct acpi_table_header *ivrs_base; |
Joerg Roedel | 02f3b3f | 2012-06-11 17:45:25 +0200 | [diff] [blame] | 2828 | acpi_status status; |
Joerg Roedel | 072a03e | 2021-03-17 10:10:35 +0100 | [diff] [blame] | 2829 | int i; |
Joerg Roedel | 02f3b3f | 2012-06-11 17:45:25 +0200 | [diff] [blame] | 2830 | |
Lv Zheng | 6b11d1d | 2016-12-14 15:04:39 +0800 | [diff] [blame] | 2831 | status = acpi_get_table("IVRS", 0, &ivrs_base); |
Joerg Roedel | 02f3b3f | 2012-06-11 17:45:25 +0200 | [diff] [blame] | 2832 | if (status == AE_NOT_FOUND) |
| 2833 | return false; |
| 2834 | else if (ACPI_FAILURE(status)) { |
| 2835 | const char *err = acpi_format_exception(status); |
Joerg Roedel | 101fa03 | 2018-11-27 16:22:31 +0100 | [diff] [blame] | 2836 | pr_err("IVRS table error: %s\n", err); |
Joerg Roedel | 02f3b3f | 2012-06-11 17:45:25 +0200 | [diff] [blame] | 2837 | return false; |
| 2838 | } |
| 2839 | |
Lv Zheng | 6b11d1d | 2016-12-14 15:04:39 +0800 | [diff] [blame] | 2840 | acpi_put_table(ivrs_base); |
Joerg Roedel | 02f3b3f | 2012-06-11 17:45:25 +0200 | [diff] [blame] | 2841 | |
Joerg Roedel | b1e650d | 2021-06-03 15:02:03 +0200 | [diff] [blame] | 2842 | if (amd_iommu_force_enable) |
| 2843 | goto out; |
| 2844 | |
Joerg Roedel | 072a03e | 2021-03-17 10:10:35 +0100 | [diff] [blame] | 2845 | /* Don't use IOMMU if there is Stoney Ridge graphics */ |
| 2846 | for (i = 0; i < 32; i++) { |
| 2847 | u32 pci_id; |
| 2848 | |
| 2849 | pci_id = read_pci_config(0, i, 0, 0); |
| 2850 | if ((pci_id & 0xffff) == 0x1002 && (pci_id >> 16) == 0x98e4) { |
| 2851 | pr_info("Disable IOMMU on Stoney Ridge\n"); |
| 2852 | return false; |
| 2853 | } |
| 2854 | } |
| 2855 | |
Joerg Roedel | b1e650d | 2021-06-03 15:02:03 +0200 | [diff] [blame] | 2856 | out: |
Joerg Roedel | 1adb7d3 | 2012-08-06 14:18:42 +0200 | [diff] [blame] | 2857 | /* Make sure ACS will be enabled during PCI probe */ |
| 2858 | pci_request_acs(); |
| 2859 | |
Joerg Roedel | 02f3b3f | 2012-06-11 17:45:25 +0200 | [diff] [blame] | 2860 | return true; |
| 2861 | } |
| 2862 | |
Joerg Roedel | 2c0ae17 | 2012-06-12 15:59:30 +0200 | [diff] [blame] | 2863 | /**************************************************************************** |
| 2864 | * |
| 2865 | * AMD IOMMU Initialization State Machine |
| 2866 | * |
| 2867 | ****************************************************************************/ |
| 2868 | |
| 2869 | static int __init state_next(void) |
| 2870 | { |
| 2871 | int ret = 0; |
| 2872 | |
| 2873 | switch (init_state) { |
| 2874 | case IOMMU_START_STATE: |
| 2875 | if (!detect_ivrs()) { |
| 2876 | init_state = IOMMU_NOT_FOUND; |
| 2877 | ret = -ENODEV; |
| 2878 | } else { |
| 2879 | init_state = IOMMU_IVRS_DETECTED; |
| 2880 | } |
| 2881 | break; |
| 2882 | case IOMMU_IVRS_DETECTED: |
Joerg Roedel | 9f81ca8 | 2021-03-17 10:10:36 +0100 | [diff] [blame] | 2883 | if (amd_iommu_disabled) { |
Joerg Roedel | 7ad820e | 2017-06-16 16:09:59 +0200 | [diff] [blame] | 2884 | init_state = IOMMU_CMDLINE_DISABLED; |
| 2885 | ret = -EINVAL; |
Joerg Roedel | 9f81ca8 | 2021-03-17 10:10:36 +0100 | [diff] [blame] | 2886 | } else { |
| 2887 | ret = early_amd_iommu_init(); |
| 2888 | init_state = ret ? IOMMU_INIT_ERROR : IOMMU_ACPI_FINISHED; |
Joerg Roedel | 7ad820e | 2017-06-16 16:09:59 +0200 | [diff] [blame] | 2889 | } |
Joerg Roedel | 2c0ae17 | 2012-06-12 15:59:30 +0200 | [diff] [blame] | 2890 | break; |
| 2891 | case IOMMU_ACPI_FINISHED: |
| 2892 | early_enable_iommus(); |
Joerg Roedel | 2c0ae17 | 2012-06-12 15:59:30 +0200 | [diff] [blame] | 2893 | x86_platform.iommu_shutdown = disable_iommus; |
| 2894 | init_state = IOMMU_ENABLED; |
| 2895 | break; |
| 2896 | case IOMMU_ENABLED: |
Joerg Roedel | 74ddda7 | 2017-07-26 14:17:55 +0200 | [diff] [blame] | 2897 | register_syscore_ops(&amd_iommu_syscore_ops); |
Joerg Roedel | 2c0ae17 | 2012-06-12 15:59:30 +0200 | [diff] [blame] | 2898 | ret = amd_iommu_init_pci(); |
| 2899 | init_state = ret ? IOMMU_INIT_ERROR : IOMMU_PCI_INIT; |
| 2900 | enable_iommus_v2(); |
| 2901 | break; |
| 2902 | case IOMMU_PCI_INIT: |
| 2903 | ret = amd_iommu_enable_interrupts(); |
| 2904 | init_state = ret ? IOMMU_INIT_ERROR : IOMMU_INTERRUPTS_EN; |
| 2905 | break; |
| 2906 | case IOMMU_INTERRUPTS_EN: |
Joerg Roedel | 2c0ae17 | 2012-06-12 15:59:30 +0200 | [diff] [blame] | 2907 | init_state = IOMMU_INITIALIZED; |
| 2908 | break; |
| 2909 | case IOMMU_INITIALIZED: |
| 2910 | /* Nothing to do */ |
| 2911 | break; |
| 2912 | case IOMMU_NOT_FOUND: |
| 2913 | case IOMMU_INIT_ERROR: |
Joerg Roedel | 1b1e942 | 2017-06-16 16:09:56 +0200 | [diff] [blame] | 2914 | case IOMMU_CMDLINE_DISABLED: |
Joerg Roedel | 2c0ae17 | 2012-06-12 15:59:30 +0200 | [diff] [blame] | 2915 | /* Error states => do nothing */ |
| 2916 | ret = -EINVAL; |
| 2917 | break; |
| 2918 | default: |
| 2919 | /* Unknown state */ |
| 2920 | BUG(); |
| 2921 | } |
| 2922 | |
Kevin Mitchell | 5c90501 | 2019-06-12 14:52:05 -0700 | [diff] [blame] | 2923 | if (ret) { |
| 2924 | free_dma_resources(); |
| 2925 | if (!irq_remapping_enabled) { |
| 2926 | disable_iommus(); |
| 2927 | free_iommu_resources(); |
| 2928 | } else { |
| 2929 | struct amd_iommu *iommu; |
| 2930 | |
| 2931 | uninit_device_table_dma(); |
| 2932 | for_each_iommu(iommu) |
| 2933 | iommu_flush_all_caches(iommu); |
| 2934 | } |
| 2935 | } |
Joerg Roedel | 2c0ae17 | 2012-06-12 15:59:30 +0200 | [diff] [blame] | 2936 | return ret; |
| 2937 | } |
| 2938 | |
| 2939 | static int __init iommu_go_to_state(enum iommu_init_state state) |
| 2940 | { |
Joerg Roedel | 151b090 | 2017-06-16 16:09:57 +0200 | [diff] [blame] | 2941 | int ret = -EINVAL; |
Joerg Roedel | 2c0ae17 | 2012-06-12 15:59:30 +0200 | [diff] [blame] | 2942 | |
| 2943 | while (init_state != state) { |
Joerg Roedel | 1b1e942 | 2017-06-16 16:09:56 +0200 | [diff] [blame] | 2944 | if (init_state == IOMMU_NOT_FOUND || |
| 2945 | init_state == IOMMU_INIT_ERROR || |
| 2946 | init_state == IOMMU_CMDLINE_DISABLED) |
Joerg Roedel | 2c0ae17 | 2012-06-12 15:59:30 +0200 | [diff] [blame] | 2947 | break; |
Joerg Roedel | 151b090 | 2017-06-16 16:09:57 +0200 | [diff] [blame] | 2948 | ret = state_next(); |
Joerg Roedel | 2c0ae17 | 2012-06-12 15:59:30 +0200 | [diff] [blame] | 2949 | } |
| 2950 | |
| 2951 | return ret; |
| 2952 | } |
| 2953 | |
Joerg Roedel | 6b474b8 | 2012-06-26 16:46:04 +0200 | [diff] [blame] | 2954 | #ifdef CONFIG_IRQ_REMAP |
| 2955 | int __init amd_iommu_prepare(void) |
| 2956 | { |
Thomas Gleixner | 3f4cb7c | 2015-01-23 14:32:46 +0100 | [diff] [blame] | 2957 | int ret; |
| 2958 | |
Jiang Liu | 7fa1c84 | 2015-01-07 15:31:42 +0800 | [diff] [blame] | 2959 | amd_iommu_irq_remap = true; |
Joerg Roedel | 84d0779 | 2015-01-07 15:31:39 +0800 | [diff] [blame] | 2960 | |
Thomas Gleixner | 3f4cb7c | 2015-01-23 14:32:46 +0100 | [diff] [blame] | 2961 | ret = iommu_go_to_state(IOMMU_ACPI_FINISHED); |
Joerg Roedel | 4b8ef15 | 2021-03-17 10:10:37 +0100 | [diff] [blame] | 2962 | if (ret) { |
| 2963 | amd_iommu_irq_remap = false; |
Thomas Gleixner | 3f4cb7c | 2015-01-23 14:32:46 +0100 | [diff] [blame] | 2964 | return ret; |
Joerg Roedel | 4b8ef15 | 2021-03-17 10:10:37 +0100 | [diff] [blame] | 2965 | } |
| 2966 | |
Thomas Gleixner | 3f4cb7c | 2015-01-23 14:32:46 +0100 | [diff] [blame] | 2967 | return amd_iommu_irq_remap ? 0 : -ENODEV; |
Joerg Roedel | 6b474b8 | 2012-06-26 16:46:04 +0200 | [diff] [blame] | 2968 | } |
Joerg Roedel | 2c0ae17 | 2012-06-12 15:59:30 +0200 | [diff] [blame] | 2969 | |
Joerg Roedel | 6b474b8 | 2012-06-26 16:46:04 +0200 | [diff] [blame] | 2970 | int __init amd_iommu_enable(void) |
| 2971 | { |
| 2972 | int ret; |
| 2973 | |
| 2974 | ret = iommu_go_to_state(IOMMU_ENABLED); |
| 2975 | if (ret) |
| 2976 | return ret; |
| 2977 | |
| 2978 | irq_remapping_enabled = 1; |
Suravee Suthikulpanit | 90fcffd | 2018-06-27 10:31:22 -0500 | [diff] [blame] | 2979 | return amd_iommu_xt_mode; |
Joerg Roedel | 6b474b8 | 2012-06-26 16:46:04 +0200 | [diff] [blame] | 2980 | } |
| 2981 | |
| 2982 | void amd_iommu_disable(void) |
| 2983 | { |
| 2984 | amd_iommu_suspend(); |
| 2985 | } |
| 2986 | |
| 2987 | int amd_iommu_reenable(int mode) |
| 2988 | { |
| 2989 | amd_iommu_resume(); |
| 2990 | |
| 2991 | return 0; |
| 2992 | } |
| 2993 | |
| 2994 | int __init amd_iommu_enable_faulting(void) |
| 2995 | { |
| 2996 | /* We enable MSI later when PCI is initialized */ |
| 2997 | return 0; |
| 2998 | } |
| 2999 | #endif |
Joerg Roedel | 2c0ae17 | 2012-06-12 15:59:30 +0200 | [diff] [blame] | 3000 | |
Joerg Roedel | 8704a1b | 2012-03-01 15:57:53 +0100 | [diff] [blame] | 3001 | /* |
| 3002 | * This is the core init function for AMD IOMMU hardware in the system. |
| 3003 | * This function is called from the generic x86 DMA layer initialization |
| 3004 | * code. |
Joerg Roedel | 8704a1b | 2012-03-01 15:57:53 +0100 | [diff] [blame] | 3005 | */ |
| 3006 | static int __init amd_iommu_init(void) |
| 3007 | { |
Gary R Hook | 7d0f5fd | 2018-06-12 16:41:30 -0500 | [diff] [blame] | 3008 | struct amd_iommu *iommu; |
Joerg Roedel | 2c0ae17 | 2012-06-12 15:59:30 +0200 | [diff] [blame] | 3009 | int ret; |
Joerg Roedel | 8704a1b | 2012-03-01 15:57:53 +0100 | [diff] [blame] | 3010 | |
Joerg Roedel | 2c0ae17 | 2012-06-12 15:59:30 +0200 | [diff] [blame] | 3011 | ret = iommu_go_to_state(IOMMU_INITIALIZED); |
Kevin Mitchell | bf4bff4 | 2019-06-12 14:52:04 -0700 | [diff] [blame] | 3012 | #ifdef CONFIG_GART_IOMMU |
| 3013 | if (ret && list_empty(&amd_iommu_list)) { |
| 3014 | /* |
| 3015 | * We failed to initialize the AMD IOMMU - try fallback |
| 3016 | * to GART if possible. |
| 3017 | */ |
| 3018 | gart_iommu_init(); |
Joerg Roedel | 2c0ae17 | 2012-06-12 15:59:30 +0200 | [diff] [blame] | 3019 | } |
Kevin Mitchell | bf4bff4 | 2019-06-12 14:52:04 -0700 | [diff] [blame] | 3020 | #endif |
Joerg Roedel | 8704a1b | 2012-03-01 15:57:53 +0100 | [diff] [blame] | 3021 | |
Gary R Hook | 7d0f5fd | 2018-06-12 16:41:30 -0500 | [diff] [blame] | 3022 | for_each_iommu(iommu) |
| 3023 | amd_iommu_debugfs_setup(iommu); |
| 3024 | |
Joerg Roedel | fe74c9c | 2008-06-26 21:27:50 +0200 | [diff] [blame] | 3025 | return ret; |
Joerg Roedel | fe74c9c | 2008-06-26 21:27:50 +0200 | [diff] [blame] | 3026 | } |
| 3027 | |
Tom Lendacky | 2543a78 | 2017-07-17 16:10:24 -0500 | [diff] [blame] | 3028 | static bool amd_iommu_sme_check(void) |
| 3029 | { |
| 3030 | if (!sme_active() || (boot_cpu_data.x86 != 0x17)) |
| 3031 | return true; |
| 3032 | |
| 3033 | /* For Fam17h, a specific level of support is required */ |
| 3034 | if (boot_cpu_data.microcode >= 0x08001205) |
| 3035 | return true; |
| 3036 | |
| 3037 | if ((boot_cpu_data.microcode >= 0x08001126) && |
| 3038 | (boot_cpu_data.microcode <= 0x080011ff)) |
| 3039 | return true; |
| 3040 | |
Joerg Roedel | 101fa03 | 2018-11-27 16:22:31 +0100 | [diff] [blame] | 3041 | pr_notice("IOMMU not currently supported when SME is active\n"); |
Tom Lendacky | 2543a78 | 2017-07-17 16:10:24 -0500 | [diff] [blame] | 3042 | |
| 3043 | return false; |
| 3044 | } |
| 3045 | |
Joerg Roedel | b65233a | 2008-07-11 17:14:21 +0200 | [diff] [blame] | 3046 | /**************************************************************************** |
| 3047 | * |
| 3048 | * Early detect code. This code runs at IOMMU detection time in the DMA |
| 3049 | * layer. It just looks if there is an IVRS ACPI table to detect AMD |
| 3050 | * IOMMUs |
| 3051 | * |
| 3052 | ****************************************************************************/ |
Konrad Rzeszutek Wilk | 480125b | 2010-08-26 13:57:57 -0400 | [diff] [blame] | 3053 | int __init amd_iommu_detect(void) |
Joerg Roedel | ae7877d | 2008-06-26 21:27:51 +0200 | [diff] [blame] | 3054 | { |
Joerg Roedel | 2c0ae17 | 2012-06-12 15:59:30 +0200 | [diff] [blame] | 3055 | int ret; |
Joerg Roedel | 02f3b3f | 2012-06-11 17:45:25 +0200 | [diff] [blame] | 3056 | |
FUJITA Tomonori | 75f1cdf | 2009-11-10 19:46:20 +0900 | [diff] [blame] | 3057 | if (no_iommu || (iommu_detected && !gart_iommu_aperture)) |
Konrad Rzeszutek Wilk | 480125b | 2010-08-26 13:57:57 -0400 | [diff] [blame] | 3058 | return -ENODEV; |
Joerg Roedel | ae7877d | 2008-06-26 21:27:51 +0200 | [diff] [blame] | 3059 | |
Tom Lendacky | 2543a78 | 2017-07-17 16:10:24 -0500 | [diff] [blame] | 3060 | if (!amd_iommu_sme_check()) |
| 3061 | return -ENODEV; |
| 3062 | |
Joerg Roedel | 2c0ae17 | 2012-06-12 15:59:30 +0200 | [diff] [blame] | 3063 | ret = iommu_go_to_state(IOMMU_IVRS_DETECTED); |
| 3064 | if (ret) |
| 3065 | return ret; |
Linus Torvalds | 11bd04f | 2009-12-11 12:18:16 -0800 | [diff] [blame] | 3066 | |
Joerg Roedel | 02f3b3f | 2012-06-11 17:45:25 +0200 | [diff] [blame] | 3067 | amd_iommu_detected = true; |
| 3068 | iommu_detected = 1; |
| 3069 | x86_init.iommu.iommu_init = amd_iommu_init; |
| 3070 | |
Jérôme Glisse | 4781bc4 | 2015-08-31 18:13:03 -0400 | [diff] [blame] | 3071 | return 1; |
Joerg Roedel | ae7877d | 2008-06-26 21:27:51 +0200 | [diff] [blame] | 3072 | } |
| 3073 | |
Joerg Roedel | b65233a | 2008-07-11 17:14:21 +0200 | [diff] [blame] | 3074 | /**************************************************************************** |
| 3075 | * |
| 3076 | * Parsing functions for the AMD IOMMU specific kernel command line |
| 3077 | * options. |
| 3078 | * |
| 3079 | ****************************************************************************/ |
| 3080 | |
Joerg Roedel | fefda11 | 2009-05-20 12:21:42 +0200 | [diff] [blame] | 3081 | static int __init parse_amd_iommu_dump(char *str) |
| 3082 | { |
| 3083 | amd_iommu_dump = true; |
| 3084 | |
| 3085 | return 1; |
| 3086 | } |
| 3087 | |
Suravee Suthikulpanit | 3928aa3 | 2016-08-23 13:52:32 -0500 | [diff] [blame] | 3088 | static int __init parse_amd_iommu_intr(char *str) |
| 3089 | { |
| 3090 | for (; *str; ++str) { |
| 3091 | if (strncmp(str, "legacy", 6) == 0) { |
Suravee Suthikulpanit | b74aa02 | 2020-04-22 08:30:02 -0500 | [diff] [blame] | 3092 | amd_iommu_guest_ir = AMD_IOMMU_GUEST_IR_LEGACY_GA; |
Suravee Suthikulpanit | 3928aa3 | 2016-08-23 13:52:32 -0500 | [diff] [blame] | 3093 | break; |
| 3094 | } |
| 3095 | if (strncmp(str, "vapic", 5) == 0) { |
| 3096 | amd_iommu_guest_ir = AMD_IOMMU_GUEST_IR_VAPIC; |
| 3097 | break; |
| 3098 | } |
| 3099 | } |
| 3100 | return 1; |
| 3101 | } |
| 3102 | |
Joerg Roedel | 918ad6c | 2008-06-26 21:27:52 +0200 | [diff] [blame] | 3103 | static int __init parse_amd_iommu_options(char *str) |
| 3104 | { |
| 3105 | for (; *str; ++str) { |
Joerg Roedel | 695b567 | 2008-11-17 15:16:43 +0100 | [diff] [blame] | 3106 | if (strncmp(str, "fullflush", 9) == 0) |
FUJITA Tomonori | afa9fdc | 2008-09-20 01:23:30 +0900 | [diff] [blame] | 3107 | amd_iommu_unmap_flush = true; |
Joerg Roedel | b1e650d | 2021-06-03 15:02:03 +0200 | [diff] [blame] | 3108 | if (strncmp(str, "force_enable", 12) == 0) |
| 3109 | amd_iommu_force_enable = true; |
Joerg Roedel | a523572 | 2010-05-11 17:12:33 +0200 | [diff] [blame] | 3110 | if (strncmp(str, "off", 3) == 0) |
| 3111 | amd_iommu_disabled = true; |
Joerg Roedel | 5abcdba | 2011-12-01 15:49:45 +0100 | [diff] [blame] | 3112 | if (strncmp(str, "force_isolation", 15) == 0) |
| 3113 | amd_iommu_force_isolation = true; |
Joerg Roedel | 918ad6c | 2008-06-26 21:27:52 +0200 | [diff] [blame] | 3114 | } |
| 3115 | |
| 3116 | return 1; |
| 3117 | } |
| 3118 | |
Joerg Roedel | 440e8998 | 2013-04-09 16:35:28 +0200 | [diff] [blame] | 3119 | static int __init parse_ivrs_ioapic(char *str) |
| 3120 | { |
| 3121 | unsigned int bus, dev, fn; |
| 3122 | int ret, id, i; |
| 3123 | u16 devid; |
| 3124 | |
| 3125 | ret = sscanf(str, "[%d]=%x:%x.%x", &id, &bus, &dev, &fn); |
| 3126 | |
| 3127 | if (ret != 4) { |
Joerg Roedel | 101fa03 | 2018-11-27 16:22:31 +0100 | [diff] [blame] | 3128 | pr_err("Invalid command line: ivrs_ioapic%s\n", str); |
Joerg Roedel | 440e8998 | 2013-04-09 16:35:28 +0200 | [diff] [blame] | 3129 | return 1; |
| 3130 | } |
| 3131 | |
| 3132 | if (early_ioapic_map_size == EARLY_MAP_SIZE) { |
Joerg Roedel | 101fa03 | 2018-11-27 16:22:31 +0100 | [diff] [blame] | 3133 | pr_err("Early IOAPIC map overflow - ignoring ivrs_ioapic%s\n", |
Joerg Roedel | 440e8998 | 2013-04-09 16:35:28 +0200 | [diff] [blame] | 3134 | str); |
| 3135 | return 1; |
| 3136 | } |
| 3137 | |
| 3138 | devid = ((bus & 0xff) << 8) | ((dev & 0x1f) << 3) | (fn & 0x7); |
| 3139 | |
Joerg Roedel | dfbb6d4 | 2013-04-09 19:06:18 +0200 | [diff] [blame] | 3140 | cmdline_maps = true; |
Joerg Roedel | 440e8998 | 2013-04-09 16:35:28 +0200 | [diff] [blame] | 3141 | i = early_ioapic_map_size++; |
| 3142 | early_ioapic_map[i].id = id; |
| 3143 | early_ioapic_map[i].devid = devid; |
| 3144 | early_ioapic_map[i].cmd_line = true; |
| 3145 | |
| 3146 | return 1; |
| 3147 | } |
| 3148 | |
| 3149 | static int __init parse_ivrs_hpet(char *str) |
| 3150 | { |
| 3151 | unsigned int bus, dev, fn; |
| 3152 | int ret, id, i; |
| 3153 | u16 devid; |
| 3154 | |
| 3155 | ret = sscanf(str, "[%d]=%x:%x.%x", &id, &bus, &dev, &fn); |
| 3156 | |
| 3157 | if (ret != 4) { |
Joerg Roedel | 101fa03 | 2018-11-27 16:22:31 +0100 | [diff] [blame] | 3158 | pr_err("Invalid command line: ivrs_hpet%s\n", str); |
Joerg Roedel | 440e8998 | 2013-04-09 16:35:28 +0200 | [diff] [blame] | 3159 | return 1; |
| 3160 | } |
| 3161 | |
| 3162 | if (early_hpet_map_size == EARLY_MAP_SIZE) { |
Joerg Roedel | 101fa03 | 2018-11-27 16:22:31 +0100 | [diff] [blame] | 3163 | pr_err("Early HPET map overflow - ignoring ivrs_hpet%s\n", |
Joerg Roedel | 440e8998 | 2013-04-09 16:35:28 +0200 | [diff] [blame] | 3164 | str); |
| 3165 | return 1; |
| 3166 | } |
| 3167 | |
| 3168 | devid = ((bus & 0xff) << 8) | ((dev & 0x1f) << 3) | (fn & 0x7); |
| 3169 | |
Joerg Roedel | dfbb6d4 | 2013-04-09 19:06:18 +0200 | [diff] [blame] | 3170 | cmdline_maps = true; |
Joerg Roedel | 440e8998 | 2013-04-09 16:35:28 +0200 | [diff] [blame] | 3171 | i = early_hpet_map_size++; |
| 3172 | early_hpet_map[i].id = id; |
| 3173 | early_hpet_map[i].devid = devid; |
| 3174 | early_hpet_map[i].cmd_line = true; |
| 3175 | |
| 3176 | return 1; |
| 3177 | } |
| 3178 | |
Suravee Suthikulpanit | ca3bf5d | 2016-04-01 09:06:01 -0400 | [diff] [blame] | 3179 | static int __init parse_ivrs_acpihid(char *str) |
| 3180 | { |
| 3181 | u32 bus, dev, fn; |
| 3182 | char *hid, *uid, *p; |
| 3183 | char acpiid[ACPIHID_UID_LEN + ACPIHID_HID_LEN] = {0}; |
| 3184 | int ret, i; |
| 3185 | |
| 3186 | ret = sscanf(str, "[%x:%x.%x]=%s", &bus, &dev, &fn, acpiid); |
| 3187 | if (ret != 4) { |
Joerg Roedel | 101fa03 | 2018-11-27 16:22:31 +0100 | [diff] [blame] | 3188 | pr_err("Invalid command line: ivrs_acpihid(%s)\n", str); |
Suravee Suthikulpanit | ca3bf5d | 2016-04-01 09:06:01 -0400 | [diff] [blame] | 3189 | return 1; |
| 3190 | } |
| 3191 | |
| 3192 | p = acpiid; |
| 3193 | hid = strsep(&p, ":"); |
| 3194 | uid = p; |
| 3195 | |
| 3196 | if (!hid || !(*hid) || !uid) { |
Joerg Roedel | 101fa03 | 2018-11-27 16:22:31 +0100 | [diff] [blame] | 3197 | pr_err("Invalid command line: hid or uid\n"); |
Suravee Suthikulpanit | ca3bf5d | 2016-04-01 09:06:01 -0400 | [diff] [blame] | 3198 | return 1; |
| 3199 | } |
| 3200 | |
| 3201 | i = early_acpihid_map_size++; |
| 3202 | memcpy(early_acpihid_map[i].hid, hid, strlen(hid)); |
| 3203 | memcpy(early_acpihid_map[i].uid, uid, strlen(uid)); |
| 3204 | early_acpihid_map[i].devid = |
| 3205 | ((bus & 0xff) << 8) | ((dev & 0x1f) << 3) | (fn & 0x7); |
| 3206 | early_acpihid_map[i].cmd_line = true; |
| 3207 | |
| 3208 | return 1; |
| 3209 | } |
| 3210 | |
Joerg Roedel | 440e8998 | 2013-04-09 16:35:28 +0200 | [diff] [blame] | 3211 | __setup("amd_iommu_dump", parse_amd_iommu_dump); |
| 3212 | __setup("amd_iommu=", parse_amd_iommu_options); |
Suravee Suthikulpanit | 3928aa3 | 2016-08-23 13:52:32 -0500 | [diff] [blame] | 3213 | __setup("amd_iommu_intr=", parse_amd_iommu_intr); |
Joerg Roedel | 440e8998 | 2013-04-09 16:35:28 +0200 | [diff] [blame] | 3214 | __setup("ivrs_ioapic", parse_ivrs_ioapic); |
| 3215 | __setup("ivrs_hpet", parse_ivrs_hpet); |
Suravee Suthikulpanit | ca3bf5d | 2016-04-01 09:06:01 -0400 | [diff] [blame] | 3216 | __setup("ivrs_acpihid", parse_ivrs_acpihid); |
Konrad Rzeszutek Wilk | 22e6daf | 2010-08-26 13:58:03 -0400 | [diff] [blame] | 3217 | |
| 3218 | IOMMU_INIT_FINISH(amd_iommu_detect, |
| 3219 | gart_iommu_hole_init, |
Joerg Roedel | 98f1ad2 | 2012-07-06 13:28:37 +0200 | [diff] [blame] | 3220 | NULL, |
| 3221 | NULL); |
Joerg Roedel | 400a28a | 2011-11-28 15:11:02 +0100 | [diff] [blame] | 3222 | |
| 3223 | bool amd_iommu_v2_supported(void) |
| 3224 | { |
| 3225 | return amd_iommu_v2_present; |
| 3226 | } |
| 3227 | EXPORT_SYMBOL(amd_iommu_v2_supported); |
Steven L Kinney | 30861dd | 2013-06-05 16:11:48 -0500 | [diff] [blame] | 3228 | |
Suravee Suthikulpanit | f5863a0 | 2017-02-24 02:48:18 -0600 | [diff] [blame] | 3229 | struct amd_iommu *get_amd_iommu(unsigned int idx) |
| 3230 | { |
| 3231 | unsigned int i = 0; |
| 3232 | struct amd_iommu *iommu; |
| 3233 | |
| 3234 | for_each_iommu(iommu) |
| 3235 | if (i++ == idx) |
| 3236 | return iommu; |
| 3237 | return NULL; |
| 3238 | } |
Suravee Suthikulpanit | f5863a0 | 2017-02-24 02:48:18 -0600 | [diff] [blame] | 3239 | |
Steven L Kinney | 30861dd | 2013-06-05 16:11:48 -0500 | [diff] [blame] | 3240 | /**************************************************************************** |
| 3241 | * |
| 3242 | * IOMMU EFR Performance Counter support functionality. This code allows |
| 3243 | * access to the IOMMU PC functionality. |
| 3244 | * |
| 3245 | ****************************************************************************/ |
| 3246 | |
Suravee Suthikulpanit | f5863a0 | 2017-02-24 02:48:18 -0600 | [diff] [blame] | 3247 | u8 amd_iommu_pc_get_max_banks(unsigned int idx) |
Steven L Kinney | 30861dd | 2013-06-05 16:11:48 -0500 | [diff] [blame] | 3248 | { |
Suravee Suthikulpanit | f5863a0 | 2017-02-24 02:48:18 -0600 | [diff] [blame] | 3249 | struct amd_iommu *iommu = get_amd_iommu(idx); |
Steven L Kinney | 30861dd | 2013-06-05 16:11:48 -0500 | [diff] [blame] | 3250 | |
Steven L Kinney | 30861dd | 2013-06-05 16:11:48 -0500 | [diff] [blame] | 3251 | if (iommu) |
Suravee Suthikulpanit | f5863a0 | 2017-02-24 02:48:18 -0600 | [diff] [blame] | 3252 | return iommu->max_banks; |
Steven L Kinney | 30861dd | 2013-06-05 16:11:48 -0500 | [diff] [blame] | 3253 | |
Suravee Suthikulpanit | f5863a0 | 2017-02-24 02:48:18 -0600 | [diff] [blame] | 3254 | return 0; |
Steven L Kinney | 30861dd | 2013-06-05 16:11:48 -0500 | [diff] [blame] | 3255 | } |
| 3256 | EXPORT_SYMBOL(amd_iommu_pc_get_max_banks); |
| 3257 | |
| 3258 | bool amd_iommu_pc_supported(void) |
| 3259 | { |
| 3260 | return amd_iommu_pc_present; |
| 3261 | } |
| 3262 | EXPORT_SYMBOL(amd_iommu_pc_supported); |
| 3263 | |
Suravee Suthikulpanit | f5863a0 | 2017-02-24 02:48:18 -0600 | [diff] [blame] | 3264 | u8 amd_iommu_pc_get_max_counters(unsigned int idx) |
Steven L Kinney | 30861dd | 2013-06-05 16:11:48 -0500 | [diff] [blame] | 3265 | { |
Suravee Suthikulpanit | f5863a0 | 2017-02-24 02:48:18 -0600 | [diff] [blame] | 3266 | struct amd_iommu *iommu = get_amd_iommu(idx); |
Steven L Kinney | 30861dd | 2013-06-05 16:11:48 -0500 | [diff] [blame] | 3267 | |
Steven L Kinney | 30861dd | 2013-06-05 16:11:48 -0500 | [diff] [blame] | 3268 | if (iommu) |
Suravee Suthikulpanit | f5863a0 | 2017-02-24 02:48:18 -0600 | [diff] [blame] | 3269 | return iommu->max_counters; |
Steven L Kinney | 30861dd | 2013-06-05 16:11:48 -0500 | [diff] [blame] | 3270 | |
Suravee Suthikulpanit | f5863a0 | 2017-02-24 02:48:18 -0600 | [diff] [blame] | 3271 | return 0; |
Steven L Kinney | 30861dd | 2013-06-05 16:11:48 -0500 | [diff] [blame] | 3272 | } |
| 3273 | EXPORT_SYMBOL(amd_iommu_pc_get_max_counters); |
| 3274 | |
Suravee Suthikulpanit | 1650dfd | 2017-02-24 02:48:19 -0600 | [diff] [blame] | 3275 | static int iommu_pc_get_set_reg(struct amd_iommu *iommu, u8 bank, u8 cntr, |
| 3276 | u8 fxn, u64 *value, bool is_write) |
Steven L Kinney | 30861dd | 2013-06-05 16:11:48 -0500 | [diff] [blame] | 3277 | { |
Steven L Kinney | 30861dd | 2013-06-05 16:11:48 -0500 | [diff] [blame] | 3278 | u32 offset; |
| 3279 | u32 max_offset_lim; |
| 3280 | |
Suravee Suthikulpanit | 1650dfd | 2017-02-24 02:48:19 -0600 | [diff] [blame] | 3281 | /* Make sure the IOMMU PC resource is available */ |
| 3282 | if (!amd_iommu_pc_present) |
| 3283 | return -ENODEV; |
| 3284 | |
Steven L Kinney | 30861dd | 2013-06-05 16:11:48 -0500 | [diff] [blame] | 3285 | /* Check for valid iommu and pc register indexing */ |
Suravee Suthikulpanit | 1650dfd | 2017-02-24 02:48:19 -0600 | [diff] [blame] | 3286 | if (WARN_ON(!iommu || (fxn > 0x28) || (fxn & 7))) |
Steven L Kinney | 30861dd | 2013-06-05 16:11:48 -0500 | [diff] [blame] | 3287 | return -ENODEV; |
| 3288 | |
Suravee Suthikulpanit | 0a6d80c | 2017-02-24 02:48:16 -0600 | [diff] [blame] | 3289 | offset = (u32)(((0x40 | bank) << 12) | (cntr << 8) | fxn); |
Steven L Kinney | 30861dd | 2013-06-05 16:11:48 -0500 | [diff] [blame] | 3290 | |
| 3291 | /* Limit the offset to the hw defined mmio region aperture */ |
Suravee Suthikulpanit | 0a6d80c | 2017-02-24 02:48:16 -0600 | [diff] [blame] | 3292 | max_offset_lim = (u32)(((0x40 | iommu->max_banks) << 12) | |
Steven L Kinney | 30861dd | 2013-06-05 16:11:48 -0500 | [diff] [blame] | 3293 | (iommu->max_counters << 8) | 0x28); |
| 3294 | if ((offset < MMIO_CNTR_REG_OFFSET) || |
| 3295 | (offset > max_offset_lim)) |
| 3296 | return -EINVAL; |
| 3297 | |
| 3298 | if (is_write) { |
Suravee Suthikulpanit | 0a6d80c | 2017-02-24 02:48:16 -0600 | [diff] [blame] | 3299 | u64 val = *value & GENMASK_ULL(47, 0); |
| 3300 | |
| 3301 | writel((u32)val, iommu->mmio_base + offset); |
| 3302 | writel((val >> 32), iommu->mmio_base + offset + 4); |
Steven L Kinney | 30861dd | 2013-06-05 16:11:48 -0500 | [diff] [blame] | 3303 | } else { |
| 3304 | *value = readl(iommu->mmio_base + offset + 4); |
| 3305 | *value <<= 32; |
Suravee Suthikulpanit | 0a6d80c | 2017-02-24 02:48:16 -0600 | [diff] [blame] | 3306 | *value |= readl(iommu->mmio_base + offset); |
| 3307 | *value &= GENMASK_ULL(47, 0); |
Steven L Kinney | 30861dd | 2013-06-05 16:11:48 -0500 | [diff] [blame] | 3308 | } |
| 3309 | |
| 3310 | return 0; |
| 3311 | } |
Suravee Suthikulpanit | 38e45d0 | 2016-02-23 13:03:30 +0100 | [diff] [blame] | 3312 | |
Suravee Suthikulpanit | 1650dfd | 2017-02-24 02:48:19 -0600 | [diff] [blame] | 3313 | int amd_iommu_pc_get_reg(struct amd_iommu *iommu, u8 bank, u8 cntr, u8 fxn, u64 *value) |
Suravee Suthikulpanit | 38e45d0 | 2016-02-23 13:03:30 +0100 | [diff] [blame] | 3314 | { |
Suravee Suthikulpanit | 1650dfd | 2017-02-24 02:48:19 -0600 | [diff] [blame] | 3315 | if (!iommu) |
| 3316 | return -EINVAL; |
Suravee Suthikulpanit | 38e45d0 | 2016-02-23 13:03:30 +0100 | [diff] [blame] | 3317 | |
Suravee Suthikulpanit | 1650dfd | 2017-02-24 02:48:19 -0600 | [diff] [blame] | 3318 | return iommu_pc_get_set_reg(iommu, bank, cntr, fxn, value, false); |
Suravee Suthikulpanit | 38e45d0 | 2016-02-23 13:03:30 +0100 | [diff] [blame] | 3319 | } |
Suravee Suthikulpanit | 1650dfd | 2017-02-24 02:48:19 -0600 | [diff] [blame] | 3320 | |
| 3321 | int amd_iommu_pc_set_reg(struct amd_iommu *iommu, u8 bank, u8 cntr, u8 fxn, u64 *value) |
| 3322 | { |
| 3323 | if (!iommu) |
| 3324 | return -EINVAL; |
| 3325 | |
| 3326 | return iommu_pc_get_set_reg(iommu, bank, cntr, fxn, value, true); |
| 3327 | } |