blob: 79b4ff63754c973a9f5d369fc89a7ed555843054 [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>
6#include <amdblocks/data_fabric.h>
7#include <amdblocks/ioapic.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;
39
40 ivhd_hpet->type = IVHD_DEV_8_BYTE_EXT_SPECIAL_DEV;
41 ivhd_hpet->reserved = 0x0000;
42 ivhd_hpet->dte_setting = 0x00;
Naresh Solanki4ef89f72023-05-25 17:37:50 +020043 ivhd_hpet->handle = hndl;
44 ivhd_hpet->source_dev_id = src_devid; /* function 0 of FCH PCI device */
Jason Gleneskf934fae2021-07-20 02:19:58 -070045 ivhd_hpet->variety = IVHD_SPECIAL_DEV_HPET;
46 current += sizeof(ivrs_ivhd_special_t);
47
48 return current;
49}
50
51static unsigned long ivhd_describe_f0_device(unsigned long current,
52 uint16_t dev_id, uint8_t datasetting)
53{
Elyes Haouas68fc51f2022-07-16 09:48:27 +020054 ivrs_ivhd_f0_entry_t *ivhd_f0 = (ivrs_ivhd_f0_entry_t *)current;
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;
59 ivhd_f0->hardware_id[0] = 'A';
60 ivhd_f0->hardware_id[1] = 'M';
61 ivhd_f0->hardware_id[2] = 'D';
62 ivhd_f0->hardware_id[3] = 'I';
63 ivhd_f0->hardware_id[4] = '0';
64 ivhd_f0->hardware_id[5] = '0';
65 ivhd_f0->hardware_id[6] = '4';
66 ivhd_f0->hardware_id[7] = '0';
67
68 memset(ivhd_f0->compatible_id, 0, sizeof(ivhd_f0->compatible_id));
69
70 ivhd_f0->uuid_format = 0;
71 ivhd_f0->uuid_length = 0;
72
73 current += sizeof(ivrs_ivhd_f0_entry_t);
74 return current;
75}
76
77static unsigned long ivhd_dev_range(unsigned long current, uint16_t start_devid,
78 uint16_t end_devid, uint8_t setting)
79{
80 /* 4-byte IVHD structures must be aligned to the 4-byte boundary. */
81 current = ALIGN_UP(current, 4);
82 ivrs_ivhd_generic_t *ivhd_range = (ivrs_ivhd_generic_t *)current;
83
84 /* Create the start range IVHD entry */
85 ivhd_range->type = IVHD_DEV_4_BYTE_START_RANGE;
86 ivhd_range->dev_id = start_devid;
87 ivhd_range->dte_setting = setting;
88 current += sizeof(ivrs_ivhd_generic_t);
89
90 /* Create the end range IVHD entry */
91 ivhd_range = (ivrs_ivhd_generic_t *)current;
92 ivhd_range->type = IVHD_DEV_4_BYTE_END_RANGE;
93 ivhd_range->dev_id = end_devid;
94 ivhd_range->dte_setting = setting;
95 current += sizeof(ivrs_ivhd_generic_t);
96
97 return current;
98}
99
100static unsigned long add_ivhd_dev_entry(struct device *parent, struct device *dev,
101 unsigned long *current, uint8_t type, uint8_t data)
102{
103 if (type == IVHD_DEV_4_BYTE_SELECT) {
104 /* 4-byte IVHD structures must be aligned to the 4-byte boundary. */
105 *current = ALIGN_UP(*current, 4);
106 ivrs_ivhd_generic_t *ivhd_entry = (ivrs_ivhd_generic_t *)*current;
107
108 ivhd_entry->type = type;
109 ivhd_entry->dev_id = dev->path.pci.devfn | (dev->bus->secondary << 8);
110 ivhd_entry->dte_setting = data;
111 *current += sizeof(ivrs_ivhd_generic_t);
112 } else if (type == IVHD_DEV_8_BYTE_ALIAS_SELECT) {
113 ivrs_ivhd_alias_t *ivhd_entry = (ivrs_ivhd_alias_t *)*current;
114
115 ivhd_entry->type = type;
116 ivhd_entry->dev_id = dev->path.pci.devfn | (dev->bus->secondary << 8);
117 ivhd_entry->dte_setting = data;
118 ivhd_entry->reserved1 = 0;
119 ivhd_entry->reserved2 = 0;
120 ivhd_entry->source_dev_id = parent->path.pci.devfn |
121 (parent->bus->secondary << 8);
122 *current += sizeof(ivrs_ivhd_alias_t);
123 }
124
125 return *current;
126}
127
128static void ivrs_add_device_or_bridge(struct device *parent, struct device *dev,
Naresh Solanki4ef89f72023-05-25 17:37:50 +0200129 unsigned long *current)
Jason Gleneskf934fae2021-07-20 02:19:58 -0700130{
131 unsigned int header_type, is_pcie;
Jason Gleneskf934fae2021-07-20 02:19:58 -0700132
133 header_type = dev->hdr_type & 0x7f;
134 is_pcie = pci_find_capability(dev, PCI_CAP_ID_PCIE);
135
136 if (((header_type == PCI_HEADER_TYPE_NORMAL) ||
137 (header_type == PCI_HEADER_TYPE_BRIDGE)) && is_pcie) {
138 /* Device or Bridge is PCIe */
Jason Gleneskf934fae2021-07-20 02:19:58 -0700139 add_ivhd_dev_entry(parent, dev, current, IVHD_DEV_4_BYTE_SELECT, 0x0);
Jason Gleneskf934fae2021-07-20 02:19:58 -0700140 } else if ((header_type == PCI_HEADER_TYPE_NORMAL) && !is_pcie) {
141 /* Device is legacy PCI or PCI-X */
Jason Gleneskf934fae2021-07-20 02:19:58 -0700142 add_ivhd_dev_entry(parent, dev, current, IVHD_DEV_8_BYTE_ALIAS_SELECT, 0x0);
Naresh Solanki4ef89f72023-05-25 17:37:50 +0200143
Jason Gleneskf934fae2021-07-20 02:19:58 -0700144 }
145}
146
147static void add_ivhd_device_entries(struct device *parent, struct device *dev,
148 unsigned int depth, int linknum, int8_t *root_level,
Naresh Solanki4ef89f72023-05-25 17:37:50 +0200149 unsigned long *current, uint16_t nb_bus)
Jason Gleneskf934fae2021-07-20 02:19:58 -0700150{
151 struct device *sibling;
152 struct bus *link;
153
154 if (!root_level)
155 return;
156
157 if (dev->path.type == DEVICE_PATH_PCI) {
Naresh Solanki4ef89f72023-05-25 17:37:50 +0200158 if ((dev->bus->secondary == nb_bus) &&
Jason Gleneskf934fae2021-07-20 02:19:58 -0700159 (dev->path.pci.devfn == 0x0))
160 *root_level = depth;
161
Naresh Solanki4ef89f72023-05-25 17:37:50 +0200162 if ((*root_level != -1) && (dev->enabled))
Jason Gleneskf934fae2021-07-20 02:19:58 -0700163 if (depth != *root_level)
Naresh Solanki4ef89f72023-05-25 17:37:50 +0200164 ivrs_add_device_or_bridge(parent, dev, current);
Jason Gleneskf934fae2021-07-20 02:19:58 -0700165 }
166
167 for (link = dev->link_list; link; link = link->next)
168 for (sibling = link->children; sibling; sibling =
169 sibling->sibling)
170 add_ivhd_device_entries(dev, sibling, depth + 1, depth, root_level,
Naresh Solanki4ef89f72023-05-25 17:37:50 +0200171 current, nb_bus);
Jason Gleneskf934fae2021-07-20 02:19:58 -0700172}
173
Naresh Solanki4ef89f72023-05-25 17:37:50 +0200174static unsigned long acpi_ivhd_misc(unsigned long current, struct device *dev)
175{
176 u8 dte_setting = IVHD_DTE_LINT_1_PASS | IVHD_DTE_LINT_0_PASS |
177 IVHD_DTE_SYS_MGT_NO_TRANS | IVHD_DTE_NMI_PASS |
178 IVHD_DTE_EXT_INT_PASS | IVHD_DTE_INIT_PASS;
179 int8_t root_level = -1;
180 struct resource *res;
181
182 /*
183 * Add all possible PCI devices in the domain that can generate transactions
184 * processed by IOMMU. Start with device <bus>:01.0
185 */
186 current = ivhd_dev_range(current, PCI_DEVFN(0, 3) | (dev->link_list->secondary << 8),
187 0xff | (dev->link_list->subordinate << 8), 0);
188
189 add_ivhd_device_entries(NULL, dev, 0, -1, &root_level,
190 &current, dev->link_list->secondary);
191
192 res = probe_resource(dev, IOMMU_IOAPIC_IDX);
193 if (res) {
194 /* Describe IOAPIC associated with the IOMMU */
Arthur Heymansf9ee87f2023-06-07 15:29:02 +0200195 current = acpi_fill_ivrs_ioapic(current, (u8 *)(uintptr_t)res->base,
Naresh Solanki4ef89f72023-05-25 17:37:50 +0200196 PCI_DEVFN(0, 1) | (dev->link_list->secondary << 8), 0);
Naresh Solanki4ef89f72023-05-25 17:37:50 +0200197 }
198
199 /* If the domain has secondary bus as zero then associate HPET & FCH IOAPIC */
200 if (dev->link_list->secondary == 0) {
201 /* Describe HPET */
202 current = ivhd_describe_hpet(current, 0x00, SMBUS_DEVFN);
203 /* Describe FCH IOAPICs */
Arthur Heymansf9ee87f2023-06-07 15:29:02 +0200204 current = acpi_fill_ivrs_ioapic(current, VIO_APIC_VADDR,
Naresh Solanki4ef89f72023-05-25 17:37:50 +0200205 SMBUS_DEVFN, dte_setting);
206 }
207
208 return current;
209}
210
211static unsigned long acpi_fill_ivrs40(unsigned long current, acpi_ivrs_ivhd_t *ivhd,
212 struct device *nb_dev, struct device *iommu_dev)
Jason Gleneskf934fae2021-07-20 02:19:58 -0700213{
214 acpi_ivrs_ivhd40_t *ivhd_40;
215 unsigned long current_backup;
Jason Gleneskf934fae2021-07-20 02:19:58 -0700216
217 memset((void *)current, 0, sizeof(acpi_ivrs_ivhd40_t));
218 ivhd_40 = (acpi_ivrs_ivhd40_t *)current;
219
220 /* Enable EFR */
221 ivhd_40->type = IVHD_BLOCK_TYPE_FULL__ACPI_HID;
222 /* For type 40h bits 6 and 7 are reserved */
Naresh Solanki4ef89f72023-05-25 17:37:50 +0200223 ivhd_40->flags = ivhd->flags & 0x3f;
Jason Gleneskf934fae2021-07-20 02:19:58 -0700224 ivhd_40->length = sizeof(struct acpi_ivrs_ivhd_40);
225 /* BDF <bus>:00.2 */
226 ivhd_40->device_id = 0x02 | (nb_dev->bus->secondary << 8);
227 ivhd_40->capability_offset = pci_find_capability(iommu_dev, IOMMU_CAP_ID);
Naresh Solanki4ef89f72023-05-25 17:37:50 +0200228 ivhd_40->iommu_base_low = ivhd->iommu_base_low;
229 ivhd_40->iommu_base_high = ivhd->iommu_base_high;
Jason Gleneskf934fae2021-07-20 02:19:58 -0700230 ivhd_40->pci_segment_group = 0x0000;
Naresh Solanki4ef89f72023-05-25 17:37:50 +0200231 ivhd_40->iommu_info = ivhd->iommu_info;
Jason Gleneskf934fae2021-07-20 02:19:58 -0700232 /* For type 40h bits 31:28 and 12:0 are reserved */
Naresh Solanki4ef89f72023-05-25 17:37:50 +0200233 ivhd_40->iommu_attributes = ivhd->iommu_feature_info & 0xfffe000;
Jason Gleneskf934fae2021-07-20 02:19:58 -0700234
235 if (pci_read_config32(iommu_dev, ivhd_40->capability_offset) & EFR_FEATURE_SUP) {
Arthur Heymans4c684872022-04-19 21:44:22 +0200236 ivhd_40->efr_reg_image_low = read32p(ivhd_40->iommu_base_low + 0x30);
237 ivhd_40->efr_reg_image_high = read32p(ivhd_40->iommu_base_low + 0x34);
Jason Gleneskf934fae2021-07-20 02:19:58 -0700238 }
239
240 current += sizeof(acpi_ivrs_ivhd40_t);
241
242 /* Now repeat all the device entries from type 10h */
243 current_backup = current;
Naresh Solanki4ef89f72023-05-25 17:37:50 +0200244 current = acpi_ivhd_misc(current, nb_dev->bus->dev);
Jason Gleneskf934fae2021-07-20 02:19:58 -0700245
Naresh Solanki4ef89f72023-05-25 17:37:50 +0200246 if (nb_dev->bus->secondary == 0) {
247 /* Describe EMMC */
Felix Held47ed2712023-06-20 19:17:43 +0200248 if (CONFIG(SOC_AMD_COMMON_BLOCK_EMMC)) {
249 /* PCI_DEVFN(0x13, 1) doesn't exist in the hardware, but it's what the
250 * reference code uses. Maybe to have a unique PCI device to put into
251 * the field that doesn't collide with any existing device? */
252 current = ivhd_describe_f0_device(current, PCI_DEVFN(0x13, 1),
253 IVHD_DTE_LINT_1_PASS | IVHD_DTE_LINT_0_PASS |
254 IVHD_DTE_SYS_MGT_TRANS | IVHD_DTE_NMI_PASS |
255 IVHD_DTE_EXT_INT_PASS | IVHD_DTE_INIT_PASS);
256 }
Naresh Solanki4ef89f72023-05-25 17:37:50 +0200257 }
Jason Gleneskf934fae2021-07-20 02:19:58 -0700258 ivhd_40->length += (current - current_backup);
259
260 return current;
261}
262
Naresh Solanki4ef89f72023-05-25 17:37:50 +0200263static unsigned long acpi_fill_ivrs11(unsigned long current, acpi_ivrs_ivhd_t *ivhd,
264 struct device *nb_dev, struct device *iommu_dev)
Jason Gleneskf934fae2021-07-20 02:19:58 -0700265{
266 acpi_ivrs_ivhd11_t *ivhd_11;
267 ivhd11_iommu_attr_t *ivhd11_attr_ptr;
268 unsigned long current_backup;
Jason Gleneskf934fae2021-07-20 02:19:58 -0700269
270 /*
271 * In order to utilize all features, firmware should expose type 11h
272 * IVHD which supersedes the type 10h.
273 */
274 memset((void *)current, 0, sizeof(acpi_ivrs_ivhd11_t));
275 ivhd_11 = (acpi_ivrs_ivhd11_t *)current;
276
277 /* Enable EFR */
278 ivhd_11->type = IVHD_BLOCK_TYPE_FULL__FIXED;
279 /* For type 11h bits 6 and 7 are reserved */
Naresh Solanki4ef89f72023-05-25 17:37:50 +0200280 ivhd_11->flags = ivhd->flags & 0x3f;
Jason Gleneskf934fae2021-07-20 02:19:58 -0700281 ivhd_11->length = sizeof(struct acpi_ivrs_ivhd_11);
282 /* BDF <bus>:00.2 */
283 ivhd_11->device_id = 0x02 | (nb_dev->bus->secondary << 8);
284 ivhd_11->capability_offset = pci_find_capability(iommu_dev, IOMMU_CAP_ID);
Naresh Solanki4ef89f72023-05-25 17:37:50 +0200285 ivhd_11->iommu_base_low = ivhd->iommu_base_low;
286 ivhd_11->iommu_base_high = ivhd->iommu_base_high;
Jason Gleneskf934fae2021-07-20 02:19:58 -0700287 ivhd_11->pci_segment_group = 0x0000;
Naresh Solanki4ef89f72023-05-25 17:37:50 +0200288 ivhd_11->iommu_info = ivhd->iommu_info;
289 ivhd11_attr_ptr = (ivhd11_iommu_attr_t *)&ivhd->iommu_feature_info;
Jason Gleneskf934fae2021-07-20 02:19:58 -0700290 ivhd_11->iommu_attributes.perf_counters = ivhd11_attr_ptr->perf_counters;
291 ivhd_11->iommu_attributes.perf_counter_banks = ivhd11_attr_ptr->perf_counter_banks;
292 ivhd_11->iommu_attributes.msi_num_ppr = ivhd11_attr_ptr->msi_num_ppr;
293
294 if (pci_read_config32(iommu_dev, ivhd_11->capability_offset) & EFR_FEATURE_SUP) {
Arthur Heymans4c684872022-04-19 21:44:22 +0200295 ivhd_11->efr_reg_image_low = read32p(ivhd_11->iommu_base_low + 0x30);
296 ivhd_11->efr_reg_image_high = read32p(ivhd_11->iommu_base_low + 0x34);
Jason Gleneskf934fae2021-07-20 02:19:58 -0700297 }
298
299 current += sizeof(acpi_ivrs_ivhd11_t);
300
301 /* Now repeat all the device entries from type 10h */
302 current_backup = current;
Naresh Solanki4ef89f72023-05-25 17:37:50 +0200303 current = acpi_ivhd_misc(current, nb_dev->bus->dev);
Jason Gleneskf934fae2021-07-20 02:19:58 -0700304 ivhd_11->length += (current - current_backup);
305
Naresh Solanki4ef89f72023-05-25 17:37:50 +0200306 return acpi_fill_ivrs40(current, ivhd, nb_dev, iommu_dev);
Jason Gleneskf934fae2021-07-20 02:19:58 -0700307}
308
309unsigned long acpi_fill_ivrs(acpi_ivrs_t *ivrs, unsigned long current)
310{
311 unsigned long current_backup;
312 uint64_t mmio_x30_value;
313 uint64_t mmio_x18_value;
314 uint64_t mmio_x4000_value;
315 uint32_t cap_offset_0;
316 uint32_t cap_offset_10;
Naresh Solanki4ef89f72023-05-25 17:37:50 +0200317 struct acpi_ivrs_ivhd *ivhd;
Jason Gleneskf934fae2021-07-20 02:19:58 -0700318 struct device *iommu_dev;
319 struct device *nb_dev;
Naresh Solanki4ef89f72023-05-25 17:37:50 +0200320 struct device *dev = NULL;
Jason Gleneskf934fae2021-07-20 02:19:58 -0700321
Naresh Solanki4ef89f72023-05-25 17:37:50 +0200322 ivhd = &ivrs->ivhd;
Jason Gleneskf934fae2021-07-20 02:19:58 -0700323
Naresh Solanki4ef89f72023-05-25 17:37:50 +0200324 while ((dev = dev_find_path(dev, DEVICE_PATH_DOMAIN)) != NULL) {
Jason Gleneskf934fae2021-07-20 02:19:58 -0700325
Naresh Solanki4ef89f72023-05-25 17:37:50 +0200326 nb_dev = pcidev_path_behind(dev->link_list, PCI_DEVFN(0, 0));
327 iommu_dev = pcidev_path_behind(dev->link_list, PCI_DEVFN(0, 2));
328 if (!nb_dev) {
329 printk(BIOS_WARNING, "%s: Northbridge device not present!\n", __func__);
330 printk(BIOS_WARNING, "%s: IVRS table not generated...\n", __func__);
331 return (unsigned long)ivrs;
332 }
Jason Gleneskf934fae2021-07-20 02:19:58 -0700333
Naresh Solanki4ef89f72023-05-25 17:37:50 +0200334 if (!iommu_dev) {
335 printk(BIOS_WARNING, "%s: IOMMU device not found\n", __func__);
336 return (unsigned long)ivrs;
337 }
Jason Gleneskf934fae2021-07-20 02:19:58 -0700338
Naresh Solanki4ef89f72023-05-25 17:37:50 +0200339 ivhd->type = IVHD_BLOCK_TYPE_LEGACY__FIXED;
340 ivhd->length = sizeof(struct acpi_ivrs_ivhd);
Jason Gleneskf934fae2021-07-20 02:19:58 -0700341
342 /* BDF <bus>:00.2 */
Naresh Solanki4ef89f72023-05-25 17:37:50 +0200343 ivhd->device_id = 0x02 | (nb_dev->bus->secondary << 8);
344 ivhd->capability_offset = pci_find_capability(iommu_dev, IOMMU_CAP_ID);
345 ivhd->iommu_base_low = pci_read_config32(iommu_dev, 0x44) & 0xffffc000;
346 ivhd->iommu_base_high = pci_read_config32(iommu_dev, 0x48);
Jason Gleneskf934fae2021-07-20 02:19:58 -0700347
Naresh Solanki4ef89f72023-05-25 17:37:50 +0200348 cap_offset_0 = pci_read_config32(iommu_dev, ivhd->capability_offset);
Jason Gleneskf934fae2021-07-20 02:19:58 -0700349 cap_offset_10 = pci_read_config32(iommu_dev,
Naresh Solanki4ef89f72023-05-25 17:37:50 +0200350 ivhd->capability_offset + 0x10);
351 mmio_x18_value = read64p(ivhd->iommu_base_low + 0x18);
352 mmio_x30_value = read64p(ivhd->iommu_base_low + 0x30);
353 mmio_x4000_value = read64p(ivhd->iommu_base_low + 0x4000);
Jason Gleneskf934fae2021-07-20 02:19:58 -0700354
Naresh Solanki4ef89f72023-05-25 17:37:50 +0200355 ivhd->flags |= ((mmio_x30_value & MMIO_EXT_FEATURE_PPR_SUP) ?
Jason Gleneskf934fae2021-07-20 02:19:58 -0700356 IVHD_FLAG_PPE_SUP : 0);
Naresh Solanki4ef89f72023-05-25 17:37:50 +0200357 ivhd->flags |= ((mmio_x30_value & MMIO_EXT_FEATURE_PRE_F_SUP) ?
Jason Gleneskf934fae2021-07-20 02:19:58 -0700358 IVHD_FLAG_PREF_SUP : 0);
Naresh Solanki4ef89f72023-05-25 17:37:50 +0200359 ivhd->flags |= ((mmio_x18_value & MMIO_CTRL_COHERENT) ?
Jason Gleneskf934fae2021-07-20 02:19:58 -0700360 IVHD_FLAG_COHERENT : 0);
Naresh Solanki4ef89f72023-05-25 17:37:50 +0200361 ivhd->flags |= ((cap_offset_0 & CAP_OFFSET_0_IOTLB_SP) ?
Jason Gleneskf934fae2021-07-20 02:19:58 -0700362 IVHD_FLAG_IOTLB_SUP : 0);
Naresh Solanki4ef89f72023-05-25 17:37:50 +0200363 ivhd->flags |= ((mmio_x18_value & MMIO_CTRL_ISOC) ?
Jason Gleneskf934fae2021-07-20 02:19:58 -0700364 IVHD_FLAG_ISOC : 0);
Naresh Solanki4ef89f72023-05-25 17:37:50 +0200365 ivhd->flags |= ((mmio_x18_value & MMIO_CTRL_RES_PASS_PW) ?
Jason Gleneskf934fae2021-07-20 02:19:58 -0700366 IVHD_FLAG_RES_PASS_PW : 0);
Naresh Solanki4ef89f72023-05-25 17:37:50 +0200367 ivhd->flags |= ((mmio_x18_value & MMIO_CTRL_PASS_PW) ?
Jason Gleneskf934fae2021-07-20 02:19:58 -0700368 IVHD_FLAG_PASS_PW : 0);
Naresh Solanki4ef89f72023-05-25 17:37:50 +0200369 ivhd->flags |= ((mmio_x18_value & MMIO_CTRL_HT_TUN_EN) ?
Jason Gleneskf934fae2021-07-20 02:19:58 -0700370 IVHD_FLAG_HT_TUN_EN : 0);
371
Naresh Solanki4ef89f72023-05-25 17:37:50 +0200372 ivhd->pci_segment_group = 0x0000;
Jason Gleneskf934fae2021-07-20 02:19:58 -0700373
Naresh Solanki4ef89f72023-05-25 17:37:50 +0200374 ivhd->iommu_info = pci_read_config16(iommu_dev,
375 ivhd->capability_offset + 0x10) & 0x1F;
376 ivhd->iommu_info |= (pci_read_config16(iommu_dev,
377 ivhd->capability_offset + 0xC) & 0x1F) << IOMMU_INFO_UNIT_ID_SHIFT;
Jason Gleneskf934fae2021-07-20 02:19:58 -0700378
Naresh Solanki4ef89f72023-05-25 17:37:50 +0200379 ivhd->iommu_feature_info = 0;
380 ivhd->iommu_feature_info |= (mmio_x30_value & MMIO_EXT_FEATURE_HATS_MASK)
Jason Gleneskf934fae2021-07-20 02:19:58 -0700381 << (IOMMU_FEATURE_HATS_SHIFT - MMIO_EXT_FEATURE_HATS_SHIFT);
382
Naresh Solanki4ef89f72023-05-25 17:37:50 +0200383 ivhd->iommu_feature_info |= (mmio_x30_value & MMIO_EXT_FEATURE_GATS_MASK)
Jason Gleneskf934fae2021-07-20 02:19:58 -0700384 << (IOMMU_FEATURE_GATS_SHIFT - MMIO_EXT_FEATURE_GATS_SHIFT);
385
Naresh Solanki4ef89f72023-05-25 17:37:50 +0200386 ivhd->iommu_feature_info |= (cap_offset_10 & CAP_OFFSET_10_MSI_NUM_PPR)
Jason Gleneskf934fae2021-07-20 02:19:58 -0700387 >> (CAP_OFFSET_10_MSI_NUM_PPR_SHIFT
388 - IOMMU_FEATURE_MSI_NUM_PPR_SHIFT);
389
Naresh Solanki4ef89f72023-05-25 17:37:50 +0200390 ivhd->iommu_feature_info |= (mmio_x4000_value &
Jason Gleneskf934fae2021-07-20 02:19:58 -0700391 MMIO_CNT_CFG_N_COUNTER_BANKS)
392 << (IOMMU_FEATURE_PN_BANKS_SHIFT - MMIO_CNT_CFG_N_CNT_BANKS_SHIFT);
393
Naresh Solanki4ef89f72023-05-25 17:37:50 +0200394 ivhd->iommu_feature_info |= (mmio_x4000_value & MMIO_CNT_CFG_N_COUNTER)
Jason Gleneskf934fae2021-07-20 02:19:58 -0700395 << (IOMMU_FEATURE_PN_COUNTERS_SHIFT - MMIO_CNT_CFG_N_COUNTER_SHIFT);
Naresh Solanki4ef89f72023-05-25 17:37:50 +0200396 ivhd->iommu_feature_info |= (mmio_x30_value &
Jason Gleneskf934fae2021-07-20 02:19:58 -0700397 MMIO_EXT_FEATURE_PAS_MAX_MASK)
398 >> (MMIO_EXT_FEATURE_PAS_MAX_SHIFT - IOMMU_FEATURE_PA_SMAX_SHIFT);
Naresh Solanki4ef89f72023-05-25 17:37:50 +0200399 ivhd->iommu_feature_info |= ((mmio_x30_value & MMIO_EXT_FEATURE_HE_SUP)
Jason Gleneskf934fae2021-07-20 02:19:58 -0700400 ? IOMMU_FEATURE_HE_SUP : 0);
Naresh Solanki4ef89f72023-05-25 17:37:50 +0200401 ivhd->iommu_feature_info |= ((mmio_x30_value & MMIO_EXT_FEATURE_GA_SUP)
Jason Gleneskf934fae2021-07-20 02:19:58 -0700402 ? IOMMU_FEATURE_GA_SUP : 0);
Naresh Solanki4ef89f72023-05-25 17:37:50 +0200403 ivhd->iommu_feature_info |= ((mmio_x30_value & MMIO_EXT_FEATURE_IA_SUP)
Jason Gleneskf934fae2021-07-20 02:19:58 -0700404 ? IOMMU_FEATURE_IA_SUP : 0);
Naresh Solanki4ef89f72023-05-25 17:37:50 +0200405 ivhd->iommu_feature_info |= (mmio_x30_value &
Jason Gleneskf934fae2021-07-20 02:19:58 -0700406 MMIO_EXT_FEATURE_GLX_SUP_MASK)
407 >> (MMIO_EXT_FEATURE_GLX_SHIFT - IOMMU_FEATURE_GLX_SHIFT);
Naresh Solanki4ef89f72023-05-25 17:37:50 +0200408 ivhd->iommu_feature_info |= ((mmio_x30_value & MMIO_EXT_FEATURE_GT_SUP)
Jason Gleneskf934fae2021-07-20 02:19:58 -0700409 ? IOMMU_FEATURE_GT_SUP : 0);
Naresh Solanki4ef89f72023-05-25 17:37:50 +0200410 ivhd->iommu_feature_info |= ((mmio_x30_value & MMIO_EXT_FEATURE_NX_SUP)
Jason Gleneskf934fae2021-07-20 02:19:58 -0700411 ? IOMMU_FEATURE_NX_SUP : 0);
Naresh Solanki4ef89f72023-05-25 17:37:50 +0200412 ivhd->iommu_feature_info |= ((mmio_x30_value & MMIO_EXT_FEATURE_XT_SUP)
Jason Gleneskf934fae2021-07-20 02:19:58 -0700413 ? IOMMU_FEATURE_XT_SUP : 0);
414
415 /* Enable EFR if supported */
416 ivrs->iv_info = pci_read_config32(iommu_dev,
Naresh Solanki4ef89f72023-05-25 17:37:50 +0200417 ivhd->capability_offset + 0x10) & 0x007fffe0;
Jason Gleneskf934fae2021-07-20 02:19:58 -0700418 if (pci_read_config32(iommu_dev,
Naresh Solanki4ef89f72023-05-25 17:37:50 +0200419 ivhd->capability_offset) & EFR_FEATURE_SUP)
Jason Gleneskf934fae2021-07-20 02:19:58 -0700420 ivrs->iv_info |= IVINFO_EFR_SUPPORTED;
421
Jason Gleneskf934fae2021-07-20 02:19:58 -0700422
Naresh Solanki4ef89f72023-05-25 17:37:50 +0200423 current_backup = current;
424 current = acpi_ivhd_misc(current, dev);
425 ivhd->length += (current - current_backup);
426
427 /* If EFR is not supported, IVHD type 11h is reserved */
428 if (!(ivrs->iv_info & IVINFO_EFR_SUPPORTED))
429 return current;
430
431 current = acpi_fill_ivrs11(current, ivhd, nb_dev, iommu_dev);
432
433 ivhd = (struct acpi_ivrs_ivhd *)current;
434 current += sizeof(struct acpi_ivrs_ivhd);
Jason Gleneskf934fae2021-07-20 02:19:58 -0700435 }
Naresh Solanki4ef89f72023-05-25 17:37:50 +0200436 current -= sizeof(struct acpi_ivrs_ivhd);
Jason Gleneskf934fae2021-07-20 02:19:58 -0700437
Naresh Solanki4ef89f72023-05-25 17:37:50 +0200438 return current;
Jason Gleneskf934fae2021-07-20 02:19:58 -0700439}