blob: 605c4f56b3b25b79c43b818449b1abc36c41d78b [file] [log] [blame]
Jason Gleneskf934fae2021-07-20 02:19:58 -07001/* SPDX-License-Identifier: GPL-2.0-only */
2
3#include <acpi/acpi_ivrs.h>
4#include <amdblocks/acpi.h>
5#include <amdblocks/cpu.h>
Jason Gleneskf934fae2021-07-20 02:19:58 -07006#include <amdblocks/ioapic.h>
Felix Heldc32df9a2023-07-03 18:52:36 +02007#include <amdblocks/iommu.h>
Felix Held96fa6a22022-12-06 01:25:13 +01008#include <arch/ioapic.h>
Jason Gleneskf934fae2021-07-20 02:19:58 -07009#include <console/console.h>
10#include <cpu/amd/cpuid.h>
Jason Gleneskf934fae2021-07-20 02:19:58 -070011#include <device/device.h>
Elyes Haouas8823ba12022-12-05 08:48:50 +010012#include <device/mmio.h>
Jason Gleneskf934fae2021-07-20 02:19:58 -070013#include <device/pci_def.h>
14#include <device/pci_ops.h>
15#include <soc/acpi.h>
16#include <soc/data_fabric.h>
Felix Held96fa6a22022-12-06 01:25:13 +010017#include <soc/iomap.h>
Jason Gleneskf934fae2021-07-20 02:19:58 -070018#include <soc/pci_devs.h>
Jason Gleneskf934fae2021-07-20 02:19:58 -070019
Arthur Heymansf9ee87f2023-06-07 15:29:02 +020020static unsigned long acpi_fill_ivrs_ioapic(unsigned long current, void *ioapic_base,
Naresh Solanki4ef89f72023-05-25 17:37:50 +020021 uint16_t src_devid, uint8_t dte_setting)
Jason Gleneskf934fae2021-07-20 02:19:58 -070022{
23 ivrs_ivhd_special_t *ivhd_ioapic = (ivrs_ivhd_special_t *)current;
24 memset(ivhd_ioapic, 0, sizeof(*ivhd_ioapic));
25
26 ivhd_ioapic->type = IVHD_DEV_8_BYTE_EXT_SPECIAL_DEV;
Naresh Solanki4ef89f72023-05-25 17:37:50 +020027 ivhd_ioapic->dte_setting = dte_setting;
28 ivhd_ioapic->handle = get_ioapic_id(ioapic_base);
29 ivhd_ioapic->source_dev_id = src_devid;
Jason Gleneskf934fae2021-07-20 02:19:58 -070030 ivhd_ioapic->variety = IVHD_SPECIAL_DEV_IOAPIC;
31 current += sizeof(ivrs_ivhd_special_t);
32
33 return current;
34}
35
Naresh Solanki4ef89f72023-05-25 17:37:50 +020036static unsigned long ivhd_describe_hpet(unsigned long current, uint8_t hndl, uint16_t src_devid)
Jason Gleneskf934fae2021-07-20 02:19:58 -070037{
38 ivrs_ivhd_special_t *ivhd_hpet = (ivrs_ivhd_special_t *)current;
Felix Held56167c52023-06-22 23:22:19 +020039 memset(ivhd_hpet, 0, sizeof(*ivhd_hpet));
Jason Gleneskf934fae2021-07-20 02:19:58 -070040
41 ivhd_hpet->type = IVHD_DEV_8_BYTE_EXT_SPECIAL_DEV;
Naresh Solanki4ef89f72023-05-25 17:37:50 +020042 ivhd_hpet->handle = hndl;
43 ivhd_hpet->source_dev_id = src_devid; /* function 0 of FCH PCI device */
Jason Gleneskf934fae2021-07-20 02:19:58 -070044 ivhd_hpet->variety = IVHD_SPECIAL_DEV_HPET;
45 current += sizeof(ivrs_ivhd_special_t);
46
47 return current;
48}
49
Felix Held534cce32023-06-22 23:09:23 +020050static unsigned long ivhd_describe_f0_device(unsigned long current, uint16_t dev_id,
51 const char acpi_hid[8], uint8_t datasetting)
Jason Gleneskf934fae2021-07-20 02:19:58 -070052{
Elyes Haouas68fc51f2022-07-16 09:48:27 +020053 ivrs_ivhd_f0_entry_t *ivhd_f0 = (ivrs_ivhd_f0_entry_t *)current;
Felix Held63a4e6bd2023-06-22 23:04:19 +020054 memset(ivhd_f0, 0, sizeof(*ivhd_f0));
Jason Gleneskf934fae2021-07-20 02:19:58 -070055
56 ivhd_f0->type = IVHD_DEV_VARIABLE;
57 ivhd_f0->dev_id = dev_id;
58 ivhd_f0->dte_setting = datasetting;
Felix Held534cce32023-06-22 23:09:23 +020059
60 memcpy(ivhd_f0->hardware_id, acpi_hid, sizeof(ivhd_f0->hardware_id));
Jason Gleneskf934fae2021-07-20 02:19:58 -070061
Jason Gleneskf934fae2021-07-20 02:19:58 -070062 current += sizeof(ivrs_ivhd_f0_entry_t);
63 return current;
64}
65
66static unsigned long ivhd_dev_range(unsigned long current, uint16_t start_devid,
67 uint16_t end_devid, uint8_t setting)
68{
69 /* 4-byte IVHD structures must be aligned to the 4-byte boundary. */
70 current = ALIGN_UP(current, 4);
71 ivrs_ivhd_generic_t *ivhd_range = (ivrs_ivhd_generic_t *)current;
Felix Heldfe242ce2023-06-23 19:03:57 +020072 memset(ivhd_range, 0, sizeof(*ivhd_range));
Jason Gleneskf934fae2021-07-20 02:19:58 -070073
74 /* Create the start range IVHD entry */
75 ivhd_range->type = IVHD_DEV_4_BYTE_START_RANGE;
76 ivhd_range->dev_id = start_devid;
77 ivhd_range->dte_setting = setting;
78 current += sizeof(ivrs_ivhd_generic_t);
79
80 /* Create the end range IVHD entry */
81 ivhd_range = (ivrs_ivhd_generic_t *)current;
82 ivhd_range->type = IVHD_DEV_4_BYTE_END_RANGE;
83 ivhd_range->dev_id = end_devid;
84 ivhd_range->dte_setting = setting;
85 current += sizeof(ivrs_ivhd_generic_t);
86
87 return current;
88}
89
90static unsigned long add_ivhd_dev_entry(struct device *parent, struct device *dev,
91 unsigned long *current, uint8_t type, uint8_t data)
92{
93 if (type == IVHD_DEV_4_BYTE_SELECT) {
94 /* 4-byte IVHD structures must be aligned to the 4-byte boundary. */
95 *current = ALIGN_UP(*current, 4);
96 ivrs_ivhd_generic_t *ivhd_entry = (ivrs_ivhd_generic_t *)*current;
Felix Heldfe242ce2023-06-23 19:03:57 +020097 memset(ivhd_entry, 0, sizeof(*ivhd_entry));
Jason Gleneskf934fae2021-07-20 02:19:58 -070098
99 ivhd_entry->type = type;
100 ivhd_entry->dev_id = dev->path.pci.devfn | (dev->bus->secondary << 8);
101 ivhd_entry->dte_setting = data;
102 *current += sizeof(ivrs_ivhd_generic_t);
103 } else if (type == IVHD_DEV_8_BYTE_ALIAS_SELECT) {
104 ivrs_ivhd_alias_t *ivhd_entry = (ivrs_ivhd_alias_t *)*current;
Felix Heldfe242ce2023-06-23 19:03:57 +0200105 memset(ivhd_entry, 0, sizeof(*ivhd_entry));
Jason Gleneskf934fae2021-07-20 02:19:58 -0700106
107 ivhd_entry->type = type;
108 ivhd_entry->dev_id = dev->path.pci.devfn | (dev->bus->secondary << 8);
109 ivhd_entry->dte_setting = data;
110 ivhd_entry->reserved1 = 0;
111 ivhd_entry->reserved2 = 0;
112 ivhd_entry->source_dev_id = parent->path.pci.devfn |
113 (parent->bus->secondary << 8);
114 *current += sizeof(ivrs_ivhd_alias_t);
115 }
116
117 return *current;
118}
119
120static void ivrs_add_device_or_bridge(struct device *parent, struct device *dev,
Naresh Solanki4ef89f72023-05-25 17:37:50 +0200121 unsigned long *current)
Jason Gleneskf934fae2021-07-20 02:19:58 -0700122{
123 unsigned int header_type, is_pcie;
Jason Gleneskf934fae2021-07-20 02:19:58 -0700124
125 header_type = dev->hdr_type & 0x7f;
126 is_pcie = pci_find_capability(dev, PCI_CAP_ID_PCIE);
127
128 if (((header_type == PCI_HEADER_TYPE_NORMAL) ||
129 (header_type == PCI_HEADER_TYPE_BRIDGE)) && is_pcie) {
130 /* Device or Bridge is PCIe */
Jason Gleneskf934fae2021-07-20 02:19:58 -0700131 add_ivhd_dev_entry(parent, dev, current, IVHD_DEV_4_BYTE_SELECT, 0x0);
Jason Gleneskf934fae2021-07-20 02:19:58 -0700132 } else if ((header_type == PCI_HEADER_TYPE_NORMAL) && !is_pcie) {
133 /* Device is legacy PCI or PCI-X */
Jason Gleneskf934fae2021-07-20 02:19:58 -0700134 add_ivhd_dev_entry(parent, dev, current, IVHD_DEV_8_BYTE_ALIAS_SELECT, 0x0);
Naresh Solanki4ef89f72023-05-25 17:37:50 +0200135
Jason Gleneskf934fae2021-07-20 02:19:58 -0700136 }
137}
138
139static void add_ivhd_device_entries(struct device *parent, struct device *dev,
140 unsigned int depth, int linknum, int8_t *root_level,
Naresh Solanki4ef89f72023-05-25 17:37:50 +0200141 unsigned long *current, uint16_t nb_bus)
Jason Gleneskf934fae2021-07-20 02:19:58 -0700142{
143 struct device *sibling;
144 struct bus *link;
145
146 if (!root_level)
147 return;
148
149 if (dev->path.type == DEVICE_PATH_PCI) {
Naresh Solanki4ef89f72023-05-25 17:37:50 +0200150 if ((dev->bus->secondary == nb_bus) &&
Jason Gleneskf934fae2021-07-20 02:19:58 -0700151 (dev->path.pci.devfn == 0x0))
152 *root_level = depth;
153
Naresh Solanki4ef89f72023-05-25 17:37:50 +0200154 if ((*root_level != -1) && (dev->enabled))
Jason Gleneskf934fae2021-07-20 02:19:58 -0700155 if (depth != *root_level)
Naresh Solanki4ef89f72023-05-25 17:37:50 +0200156 ivrs_add_device_or_bridge(parent, dev, current);
Jason Gleneskf934fae2021-07-20 02:19:58 -0700157 }
158
159 for (link = dev->link_list; link; link = link->next)
160 for (sibling = link->children; sibling; sibling =
161 sibling->sibling)
162 add_ivhd_device_entries(dev, sibling, depth + 1, depth, root_level,
Naresh Solanki4ef89f72023-05-25 17:37:50 +0200163 current, nb_bus);
Jason Gleneskf934fae2021-07-20 02:19:58 -0700164}
165
Naresh Solanki4ef89f72023-05-25 17:37:50 +0200166static unsigned long acpi_ivhd_misc(unsigned long current, struct device *dev)
167{
168 u8 dte_setting = IVHD_DTE_LINT_1_PASS | IVHD_DTE_LINT_0_PASS |
169 IVHD_DTE_SYS_MGT_NO_TRANS | IVHD_DTE_NMI_PASS |
170 IVHD_DTE_EXT_INT_PASS | IVHD_DTE_INIT_PASS;
171 int8_t root_level = -1;
172 struct resource *res;
173
174 /*
175 * Add all possible PCI devices in the domain that can generate transactions
176 * processed by IOMMU. Start with device <bus>:01.0
177 */
178 current = ivhd_dev_range(current, PCI_DEVFN(0, 3) | (dev->link_list->secondary << 8),
179 0xff | (dev->link_list->subordinate << 8), 0);
180
181 add_ivhd_device_entries(NULL, dev, 0, -1, &root_level,
182 &current, dev->link_list->secondary);
183
Felix Heldb8b0c662023-07-20 20:43:41 +0200184 res = probe_resource(dev, IOMMU_IOAPIC_IDX);
Naresh Solanki4ef89f72023-05-25 17:37:50 +0200185 if (res) {
186 /* Describe IOAPIC associated with the IOMMU */
Arthur Heymansf9ee87f2023-06-07 15:29:02 +0200187 current = acpi_fill_ivrs_ioapic(current, (u8 *)(uintptr_t)res->base,
Naresh Solanki4ef89f72023-05-25 17:37:50 +0200188 PCI_DEVFN(0, 1) | (dev->link_list->secondary << 8), 0);
Naresh Solanki4ef89f72023-05-25 17:37:50 +0200189 }
190
191 /* If the domain has secondary bus as zero then associate HPET & FCH IOAPIC */
192 if (dev->link_list->secondary == 0) {
193 /* Describe HPET */
194 current = ivhd_describe_hpet(current, 0x00, SMBUS_DEVFN);
195 /* Describe FCH IOAPICs */
Arthur Heymansf9ee87f2023-06-07 15:29:02 +0200196 current = acpi_fill_ivrs_ioapic(current, VIO_APIC_VADDR,
Naresh Solanki4ef89f72023-05-25 17:37:50 +0200197 SMBUS_DEVFN, dte_setting);
198 }
199
200 return current;
201}
202
203static unsigned long acpi_fill_ivrs40(unsigned long current, acpi_ivrs_ivhd_t *ivhd,
204 struct device *nb_dev, struct device *iommu_dev)
Jason Gleneskf934fae2021-07-20 02:19:58 -0700205{
Felix Held50cbb932023-06-23 18:49:26 +0200206 acpi_ivrs_ivhd40_t *ivhd_40 = (acpi_ivrs_ivhd40_t *)current;
Jason Gleneskf934fae2021-07-20 02:19:58 -0700207 unsigned long current_backup;
Jason Gleneskf934fae2021-07-20 02:19:58 -0700208
Felix Held8cbafe82023-06-23 18:55:34 +0200209 memset(ivhd_40, 0, sizeof(*ivhd_40));
Jason Gleneskf934fae2021-07-20 02:19:58 -0700210
211 /* Enable EFR */
212 ivhd_40->type = IVHD_BLOCK_TYPE_FULL__ACPI_HID;
213 /* For type 40h bits 6 and 7 are reserved */
Naresh Solanki4ef89f72023-05-25 17:37:50 +0200214 ivhd_40->flags = ivhd->flags & 0x3f;
Jason Gleneskf934fae2021-07-20 02:19:58 -0700215 ivhd_40->length = sizeof(struct acpi_ivrs_ivhd_40);
216 /* BDF <bus>:00.2 */
217 ivhd_40->device_id = 0x02 | (nb_dev->bus->secondary << 8);
218 ivhd_40->capability_offset = pci_find_capability(iommu_dev, IOMMU_CAP_ID);
Naresh Solanki4ef89f72023-05-25 17:37:50 +0200219 ivhd_40->iommu_base_low = ivhd->iommu_base_low;
220 ivhd_40->iommu_base_high = ivhd->iommu_base_high;
Felix Held3b5b66d2024-01-11 22:26:18 +0100221 ivhd_40->pci_segment_group = nb_dev->bus->segment_group;
Naresh Solanki4ef89f72023-05-25 17:37:50 +0200222 ivhd_40->iommu_info = ivhd->iommu_info;
Jason Gleneskf934fae2021-07-20 02:19:58 -0700223 /* For type 40h bits 31:28 and 12:0 are reserved */
Naresh Solanki4ef89f72023-05-25 17:37:50 +0200224 ivhd_40->iommu_attributes = ivhd->iommu_feature_info & 0xfffe000;
Jason Gleneskf934fae2021-07-20 02:19:58 -0700225
226 if (pci_read_config32(iommu_dev, ivhd_40->capability_offset) & EFR_FEATURE_SUP) {
Arthur Heymans4c684872022-04-19 21:44:22 +0200227 ivhd_40->efr_reg_image_low = read32p(ivhd_40->iommu_base_low + 0x30);
228 ivhd_40->efr_reg_image_high = read32p(ivhd_40->iommu_base_low + 0x34);
Jason Gleneskf934fae2021-07-20 02:19:58 -0700229 }
230
231 current += sizeof(acpi_ivrs_ivhd40_t);
232
233 /* Now repeat all the device entries from type 10h */
234 current_backup = current;
Naresh Solanki4ef89f72023-05-25 17:37:50 +0200235 current = acpi_ivhd_misc(current, nb_dev->bus->dev);
Jason Gleneskf934fae2021-07-20 02:19:58 -0700236
Naresh Solanki4ef89f72023-05-25 17:37:50 +0200237 if (nb_dev->bus->secondary == 0) {
238 /* Describe EMMC */
Felix Held47ed2712023-06-20 19:17:43 +0200239 if (CONFIG(SOC_AMD_COMMON_BLOCK_EMMC)) {
240 /* PCI_DEVFN(0x13, 1) doesn't exist in the hardware, but it's what the
241 * reference code uses. Maybe to have a unique PCI device to put into
242 * the field that doesn't collide with any existing device? */
243 current = ivhd_describe_f0_device(current, PCI_DEVFN(0x13, 1),
Felix Held534cce32023-06-22 23:09:23 +0200244 "AMDI0040",
Felix Held47ed2712023-06-20 19:17:43 +0200245 IVHD_DTE_LINT_1_PASS | IVHD_DTE_LINT_0_PASS |
246 IVHD_DTE_SYS_MGT_TRANS | IVHD_DTE_NMI_PASS |
247 IVHD_DTE_EXT_INT_PASS | IVHD_DTE_INIT_PASS);
248 }
Naresh Solanki4ef89f72023-05-25 17:37:50 +0200249 }
Jason Gleneskf934fae2021-07-20 02:19:58 -0700250 ivhd_40->length += (current - current_backup);
251
252 return current;
253}
254
Naresh Solanki4ef89f72023-05-25 17:37:50 +0200255static unsigned long acpi_fill_ivrs11(unsigned long current, acpi_ivrs_ivhd_t *ivhd,
256 struct device *nb_dev, struct device *iommu_dev)
Jason Gleneskf934fae2021-07-20 02:19:58 -0700257{
Felix Held50cbb932023-06-23 18:49:26 +0200258 acpi_ivrs_ivhd11_t *ivhd_11 = (acpi_ivrs_ivhd11_t *)current;
Jason Gleneskf934fae2021-07-20 02:19:58 -0700259 ivhd11_iommu_attr_t *ivhd11_attr_ptr;
260 unsigned long current_backup;
Jason Gleneskf934fae2021-07-20 02:19:58 -0700261
262 /*
263 * In order to utilize all features, firmware should expose type 11h
264 * IVHD which supersedes the type 10h.
265 */
Felix Held8cbafe82023-06-23 18:55:34 +0200266 memset(ivhd_11, 0, sizeof(*ivhd_11));
Jason Gleneskf934fae2021-07-20 02:19:58 -0700267
268 /* Enable EFR */
269 ivhd_11->type = IVHD_BLOCK_TYPE_FULL__FIXED;
270 /* For type 11h bits 6 and 7 are reserved */
Naresh Solanki4ef89f72023-05-25 17:37:50 +0200271 ivhd_11->flags = ivhd->flags & 0x3f;
Jason Gleneskf934fae2021-07-20 02:19:58 -0700272 ivhd_11->length = sizeof(struct acpi_ivrs_ivhd_11);
273 /* BDF <bus>:00.2 */
274 ivhd_11->device_id = 0x02 | (nb_dev->bus->secondary << 8);
275 ivhd_11->capability_offset = pci_find_capability(iommu_dev, IOMMU_CAP_ID);
Naresh Solanki4ef89f72023-05-25 17:37:50 +0200276 ivhd_11->iommu_base_low = ivhd->iommu_base_low;
277 ivhd_11->iommu_base_high = ivhd->iommu_base_high;
Felix Held3b5b66d2024-01-11 22:26:18 +0100278 ivhd_11->pci_segment_group = nb_dev->bus->segment_group;
Naresh Solanki4ef89f72023-05-25 17:37:50 +0200279 ivhd_11->iommu_info = ivhd->iommu_info;
280 ivhd11_attr_ptr = (ivhd11_iommu_attr_t *)&ivhd->iommu_feature_info;
Jason Gleneskf934fae2021-07-20 02:19:58 -0700281 ivhd_11->iommu_attributes.perf_counters = ivhd11_attr_ptr->perf_counters;
282 ivhd_11->iommu_attributes.perf_counter_banks = ivhd11_attr_ptr->perf_counter_banks;
283 ivhd_11->iommu_attributes.msi_num_ppr = ivhd11_attr_ptr->msi_num_ppr;
284
285 if (pci_read_config32(iommu_dev, ivhd_11->capability_offset) & EFR_FEATURE_SUP) {
Arthur Heymans4c684872022-04-19 21:44:22 +0200286 ivhd_11->efr_reg_image_low = read32p(ivhd_11->iommu_base_low + 0x30);
287 ivhd_11->efr_reg_image_high = read32p(ivhd_11->iommu_base_low + 0x34);
Jason Gleneskf934fae2021-07-20 02:19:58 -0700288 }
289
290 current += sizeof(acpi_ivrs_ivhd11_t);
291
292 /* Now repeat all the device entries from type 10h */
293 current_backup = current;
Naresh Solanki4ef89f72023-05-25 17:37:50 +0200294 current = acpi_ivhd_misc(current, nb_dev->bus->dev);
Jason Gleneskf934fae2021-07-20 02:19:58 -0700295 ivhd_11->length += (current - current_backup);
296
Naresh Solanki4ef89f72023-05-25 17:37:50 +0200297 return acpi_fill_ivrs40(current, ivhd, nb_dev, iommu_dev);
Jason Gleneskf934fae2021-07-20 02:19:58 -0700298}
299
300unsigned long acpi_fill_ivrs(acpi_ivrs_t *ivrs, unsigned long current)
301{
302 unsigned long current_backup;
303 uint64_t mmio_x30_value;
304 uint64_t mmio_x18_value;
305 uint64_t mmio_x4000_value;
306 uint32_t cap_offset_0;
307 uint32_t cap_offset_10;
Naresh Solanki4ef89f72023-05-25 17:37:50 +0200308 struct acpi_ivrs_ivhd *ivhd;
Jason Gleneskf934fae2021-07-20 02:19:58 -0700309 struct device *iommu_dev;
310 struct device *nb_dev;
Naresh Solanki4ef89f72023-05-25 17:37:50 +0200311 struct device *dev = NULL;
Jason Gleneskf934fae2021-07-20 02:19:58 -0700312
Naresh Solanki08601b22023-05-31 17:13:03 +0200313 if (ivrs == NULL) {
314 printk(BIOS_WARNING, "%s: ivrs is NULL\n", __func__);
315 return current;
316 }
317
Naresh Solanki4ef89f72023-05-25 17:37:50 +0200318 ivhd = &ivrs->ivhd;
Jason Gleneskf934fae2021-07-20 02:19:58 -0700319
Naresh Solanki4ef89f72023-05-25 17:37:50 +0200320 while ((dev = dev_find_path(dev, DEVICE_PATH_DOMAIN)) != NULL) {
Jason Gleneskf934fae2021-07-20 02:19:58 -0700321
Naresh Solanki4ef89f72023-05-25 17:37:50 +0200322 nb_dev = pcidev_path_behind(dev->link_list, PCI_DEVFN(0, 0));
323 iommu_dev = pcidev_path_behind(dev->link_list, PCI_DEVFN(0, 2));
324 if (!nb_dev) {
325 printk(BIOS_WARNING, "%s: Northbridge device not present!\n", __func__);
326 printk(BIOS_WARNING, "%s: IVRS table not generated...\n", __func__);
327 return (unsigned long)ivrs;
328 }
Jason Gleneskf934fae2021-07-20 02:19:58 -0700329
Naresh Solanki4ef89f72023-05-25 17:37:50 +0200330 if (!iommu_dev) {
331 printk(BIOS_WARNING, "%s: IOMMU device not found\n", __func__);
332 return (unsigned long)ivrs;
333 }
Jason Gleneskf934fae2021-07-20 02:19:58 -0700334
Naresh Solanki4ef89f72023-05-25 17:37:50 +0200335 ivhd->type = IVHD_BLOCK_TYPE_LEGACY__FIXED;
336 ivhd->length = sizeof(struct acpi_ivrs_ivhd);
Jason Gleneskf934fae2021-07-20 02:19:58 -0700337
338 /* BDF <bus>:00.2 */
Naresh Solanki4ef89f72023-05-25 17:37:50 +0200339 ivhd->device_id = 0x02 | (nb_dev->bus->secondary << 8);
340 ivhd->capability_offset = pci_find_capability(iommu_dev, IOMMU_CAP_ID);
Felix Heldc32df9a2023-07-03 18:52:36 +0200341 ivhd->iommu_base_low = pci_read_config32(iommu_dev, IOMMU_CAP_BASE_LO) & 0xffffc000;
342 ivhd->iommu_base_high = pci_read_config32(iommu_dev, IOMMU_CAP_BASE_HI);
Jason Gleneskf934fae2021-07-20 02:19:58 -0700343
Naresh Solanki4ef89f72023-05-25 17:37:50 +0200344 cap_offset_0 = pci_read_config32(iommu_dev, ivhd->capability_offset);
Jason Gleneskf934fae2021-07-20 02:19:58 -0700345 cap_offset_10 = pci_read_config32(iommu_dev,
Naresh Solanki4ef89f72023-05-25 17:37:50 +0200346 ivhd->capability_offset + 0x10);
347 mmio_x18_value = read64p(ivhd->iommu_base_low + 0x18);
348 mmio_x30_value = read64p(ivhd->iommu_base_low + 0x30);
349 mmio_x4000_value = read64p(ivhd->iommu_base_low + 0x4000);
Jason Gleneskf934fae2021-07-20 02:19:58 -0700350
Naresh Solanki4ef89f72023-05-25 17:37:50 +0200351 ivhd->flags |= ((mmio_x30_value & MMIO_EXT_FEATURE_PPR_SUP) ?
Jason Gleneskf934fae2021-07-20 02:19:58 -0700352 IVHD_FLAG_PPE_SUP : 0);
Naresh Solanki4ef89f72023-05-25 17:37:50 +0200353 ivhd->flags |= ((mmio_x30_value & MMIO_EXT_FEATURE_PRE_F_SUP) ?
Jason Gleneskf934fae2021-07-20 02:19:58 -0700354 IVHD_FLAG_PREF_SUP : 0);
Naresh Solanki4ef89f72023-05-25 17:37:50 +0200355 ivhd->flags |= ((mmio_x18_value & MMIO_CTRL_COHERENT) ?
Jason Gleneskf934fae2021-07-20 02:19:58 -0700356 IVHD_FLAG_COHERENT : 0);
Naresh Solanki4ef89f72023-05-25 17:37:50 +0200357 ivhd->flags |= ((cap_offset_0 & CAP_OFFSET_0_IOTLB_SP) ?
Jason Gleneskf934fae2021-07-20 02:19:58 -0700358 IVHD_FLAG_IOTLB_SUP : 0);
Naresh Solanki4ef89f72023-05-25 17:37:50 +0200359 ivhd->flags |= ((mmio_x18_value & MMIO_CTRL_ISOC) ?
Jason Gleneskf934fae2021-07-20 02:19:58 -0700360 IVHD_FLAG_ISOC : 0);
Naresh Solanki4ef89f72023-05-25 17:37:50 +0200361 ivhd->flags |= ((mmio_x18_value & MMIO_CTRL_RES_PASS_PW) ?
Jason Gleneskf934fae2021-07-20 02:19:58 -0700362 IVHD_FLAG_RES_PASS_PW : 0);
Naresh Solanki4ef89f72023-05-25 17:37:50 +0200363 ivhd->flags |= ((mmio_x18_value & MMIO_CTRL_PASS_PW) ?
Jason Gleneskf934fae2021-07-20 02:19:58 -0700364 IVHD_FLAG_PASS_PW : 0);
Naresh Solanki4ef89f72023-05-25 17:37:50 +0200365 ivhd->flags |= ((mmio_x18_value & MMIO_CTRL_HT_TUN_EN) ?
Jason Gleneskf934fae2021-07-20 02:19:58 -0700366 IVHD_FLAG_HT_TUN_EN : 0);
367
Felix Held3b5b66d2024-01-11 22:26:18 +0100368 ivhd->pci_segment_group = nb_dev->bus->segment_group;
Jason Gleneskf934fae2021-07-20 02:19:58 -0700369
Naresh Solanki4ef89f72023-05-25 17:37:50 +0200370 ivhd->iommu_info = pci_read_config16(iommu_dev,
371 ivhd->capability_offset + 0x10) & 0x1F;
372 ivhd->iommu_info |= (pci_read_config16(iommu_dev,
373 ivhd->capability_offset + 0xC) & 0x1F) << IOMMU_INFO_UNIT_ID_SHIFT;
Jason Gleneskf934fae2021-07-20 02:19:58 -0700374
Naresh Solanki4ef89f72023-05-25 17:37:50 +0200375 ivhd->iommu_feature_info = 0;
376 ivhd->iommu_feature_info |= (mmio_x30_value & MMIO_EXT_FEATURE_HATS_MASK)
Jason Gleneskf934fae2021-07-20 02:19:58 -0700377 << (IOMMU_FEATURE_HATS_SHIFT - MMIO_EXT_FEATURE_HATS_SHIFT);
378
Naresh Solanki4ef89f72023-05-25 17:37:50 +0200379 ivhd->iommu_feature_info |= (mmio_x30_value & MMIO_EXT_FEATURE_GATS_MASK)
Jason Gleneskf934fae2021-07-20 02:19:58 -0700380 << (IOMMU_FEATURE_GATS_SHIFT - MMIO_EXT_FEATURE_GATS_SHIFT);
381
Naresh Solanki4ef89f72023-05-25 17:37:50 +0200382 ivhd->iommu_feature_info |= (cap_offset_10 & CAP_OFFSET_10_MSI_NUM_PPR)
Jason Gleneskf934fae2021-07-20 02:19:58 -0700383 >> (CAP_OFFSET_10_MSI_NUM_PPR_SHIFT
384 - IOMMU_FEATURE_MSI_NUM_PPR_SHIFT);
385
Naresh Solanki4ef89f72023-05-25 17:37:50 +0200386 ivhd->iommu_feature_info |= (mmio_x4000_value &
Jason Gleneskf934fae2021-07-20 02:19:58 -0700387 MMIO_CNT_CFG_N_COUNTER_BANKS)
388 << (IOMMU_FEATURE_PN_BANKS_SHIFT - MMIO_CNT_CFG_N_CNT_BANKS_SHIFT);
389
Naresh Solanki4ef89f72023-05-25 17:37:50 +0200390 ivhd->iommu_feature_info |= (mmio_x4000_value & MMIO_CNT_CFG_N_COUNTER)
Jason Gleneskf934fae2021-07-20 02:19:58 -0700391 << (IOMMU_FEATURE_PN_COUNTERS_SHIFT - MMIO_CNT_CFG_N_COUNTER_SHIFT);
Naresh Solanki4ef89f72023-05-25 17:37:50 +0200392 ivhd->iommu_feature_info |= (mmio_x30_value &
Jason Gleneskf934fae2021-07-20 02:19:58 -0700393 MMIO_EXT_FEATURE_PAS_MAX_MASK)
394 >> (MMIO_EXT_FEATURE_PAS_MAX_SHIFT - IOMMU_FEATURE_PA_SMAX_SHIFT);
Naresh Solanki4ef89f72023-05-25 17:37:50 +0200395 ivhd->iommu_feature_info |= ((mmio_x30_value & MMIO_EXT_FEATURE_HE_SUP)
Jason Gleneskf934fae2021-07-20 02:19:58 -0700396 ? IOMMU_FEATURE_HE_SUP : 0);
Naresh Solanki4ef89f72023-05-25 17:37:50 +0200397 ivhd->iommu_feature_info |= ((mmio_x30_value & MMIO_EXT_FEATURE_GA_SUP)
Jason Gleneskf934fae2021-07-20 02:19:58 -0700398 ? IOMMU_FEATURE_GA_SUP : 0);
Naresh Solanki4ef89f72023-05-25 17:37:50 +0200399 ivhd->iommu_feature_info |= ((mmio_x30_value & MMIO_EXT_FEATURE_IA_SUP)
Jason Gleneskf934fae2021-07-20 02:19:58 -0700400 ? IOMMU_FEATURE_IA_SUP : 0);
Naresh Solanki4ef89f72023-05-25 17:37:50 +0200401 ivhd->iommu_feature_info |= (mmio_x30_value &
Jason Gleneskf934fae2021-07-20 02:19:58 -0700402 MMIO_EXT_FEATURE_GLX_SUP_MASK)
403 >> (MMIO_EXT_FEATURE_GLX_SHIFT - IOMMU_FEATURE_GLX_SHIFT);
Naresh Solanki4ef89f72023-05-25 17:37:50 +0200404 ivhd->iommu_feature_info |= ((mmio_x30_value & MMIO_EXT_FEATURE_GT_SUP)
Jason Gleneskf934fae2021-07-20 02:19:58 -0700405 ? IOMMU_FEATURE_GT_SUP : 0);
Naresh Solanki4ef89f72023-05-25 17:37:50 +0200406 ivhd->iommu_feature_info |= ((mmio_x30_value & MMIO_EXT_FEATURE_NX_SUP)
Jason Gleneskf934fae2021-07-20 02:19:58 -0700407 ? IOMMU_FEATURE_NX_SUP : 0);
Naresh Solanki4ef89f72023-05-25 17:37:50 +0200408 ivhd->iommu_feature_info |= ((mmio_x30_value & MMIO_EXT_FEATURE_XT_SUP)
Jason Gleneskf934fae2021-07-20 02:19:58 -0700409 ? IOMMU_FEATURE_XT_SUP : 0);
410
411 /* Enable EFR if supported */
412 ivrs->iv_info = pci_read_config32(iommu_dev,
Naresh Solanki4ef89f72023-05-25 17:37:50 +0200413 ivhd->capability_offset + 0x10) & 0x007fffe0;
Jason Gleneskf934fae2021-07-20 02:19:58 -0700414 if (pci_read_config32(iommu_dev,
Naresh Solanki4ef89f72023-05-25 17:37:50 +0200415 ivhd->capability_offset) & EFR_FEATURE_SUP)
Jason Gleneskf934fae2021-07-20 02:19:58 -0700416 ivrs->iv_info |= IVINFO_EFR_SUPPORTED;
417
Jason Gleneskf934fae2021-07-20 02:19:58 -0700418
Naresh Solanki4ef89f72023-05-25 17:37:50 +0200419 current_backup = current;
420 current = acpi_ivhd_misc(current, dev);
421 ivhd->length += (current - current_backup);
422
423 /* If EFR is not supported, IVHD type 11h is reserved */
424 if (!(ivrs->iv_info & IVINFO_EFR_SUPPORTED))
425 return current;
426
427 current = acpi_fill_ivrs11(current, ivhd, nb_dev, iommu_dev);
428
429 ivhd = (struct acpi_ivrs_ivhd *)current;
430 current += sizeof(struct acpi_ivrs_ivhd);
Jason Gleneskf934fae2021-07-20 02:19:58 -0700431 }
Naresh Solanki4ef89f72023-05-25 17:37:50 +0200432 current -= sizeof(struct acpi_ivrs_ivhd);
Jason Gleneskf934fae2021-07-20 02:19:58 -0700433
Naresh Solanki4ef89f72023-05-25 17:37:50 +0200434 return current;
Jason Gleneskf934fae2021-07-20 02:19:58 -0700435}