blob: b19e7bd8b5407aeaaaae1f966ae2ded4e386064d [file] [log] [blame]
Angel Pons4b429832020-04-02 23:48:50 +02001/* SPDX-License-Identifier: GPL-2.0-only */
Aaron Durbin76c37002012-10-30 09:03:43 -05002
Tristan Corrickbc896cd2018-12-17 22:09:50 +13003#include <commonlib/helpers.h>
Aaron Durbin76c37002012-10-30 09:03:43 -05004#include <console/console.h>
Furquan Shaikh76cedd22020-05-02 10:24:23 -07005#include <acpi/acpi.h>
Aaron Durbin76c37002012-10-30 09:03:43 -05006#include <delay.h>
7#include <cpu/intel/haswell/haswell.h>
Aaron Durbin76c37002012-10-30 09:03:43 -05008#include <device/device.h>
9#include <device/pci.h>
Tristan Corrickbc896cd2018-12-17 22:09:50 +130010#include <device/pci_def.h>
Aaron Durbin76c37002012-10-30 09:03:43 -050011#include <device/pci_ids.h>
Tristan Corrickbc896cd2018-12-17 22:09:50 +130012#include <device/pci_ops.h>
Aaron Durbin76c37002012-10-30 09:03:43 -050013#include <boot/tables.h>
Angel Pons4b290b72020-09-24 23:38:53 +020014#include <security/intel/txt/txt_register.h>
Angel Ponse2ec60f2021-01-26 19:18:09 +010015#include <southbridge/intel/lynxpoint/pch.h>
Elyes HAOUAS030d3382021-02-12 08:17:35 +010016#include <types.h>
Elyes HAOUASa1e22b82019-03-18 22:49:36 +010017
Aaron Durbin76c37002012-10-30 09:03:43 -050018#include "chip.h"
19#include "haswell.h"
20
Tristan Corrickf3127d42018-10-31 02:25:54 +130021static const char *northbridge_acpi_name(const struct device *dev)
22{
23 if (dev->path.type == DEVICE_PATH_DOMAIN)
24 return "PCI0";
25
26 if (dev->path.type != DEVICE_PATH_PCI || dev->bus->secondary != 0)
27 return NULL;
28
29 switch (dev->path.pci.devfn) {
30 case PCI_DEVFN(0, 0):
31 return "MCHC";
32 }
33
34 return NULL;
35}
36
Angel Pons1db5bc72020-01-15 00:49:03 +010037/*
38 * TODO: We could determine how many PCIe busses we need in the bar.
39 * For now, that number is hardcoded to a max of 64.
40 */
Aaron Durbin76c37002012-10-30 09:03:43 -050041static struct device_operations pci_domain_ops = {
Angel Pons1db5bc72020-01-15 00:49:03 +010042 .read_resources = pci_domain_read_resources,
43 .set_resources = pci_domain_set_resources,
Angel Pons1db5bc72020-01-15 00:49:03 +010044 .scan_bus = pci_domain_scan_bus,
45 .acpi_name = northbridge_acpi_name,
Matt DeVillier85d98d92018-03-04 01:41:23 -060046 .write_acpi_tables = northbridge_write_acpi_tables,
Aaron Durbin76c37002012-10-30 09:03:43 -050047};
48
Elyes HAOUAS77f7a6e2018-05-09 17:47:59 +020049static int get_bar(struct device *dev, unsigned int index, u32 *base, u32 *len)
Aaron Durbin76c37002012-10-30 09:03:43 -050050{
Angel Pons1db5bc72020-01-15 00:49:03 +010051 u32 bar = pci_read_config32(dev, index);
Aaron Durbin76c37002012-10-30 09:03:43 -050052
Angel Pons1db5bc72020-01-15 00:49:03 +010053 /* If not enabled don't report it */
Aaron Durbinc12ef972012-12-18 14:22:49 -060054 if (!(bar & 0x1))
55 return 0;
Aaron Durbin76c37002012-10-30 09:03:43 -050056
Angel Pons1db5bc72020-01-15 00:49:03 +010057 /* Knock down the enable bit */
Aaron Durbinc12ef972012-12-18 14:22:49 -060058 *base = bar & ~1;
59
60 return 1;
Aaron Durbin76c37002012-10-30 09:03:43 -050061}
62
Angel Pons1db5bc72020-01-15 00:49:03 +010063/*
64 * There are special BARs that actually are programmed in the MCHBAR. These Intel special
65 * features, but they do consume resources that need to be accounted for.
66 */
67static int get_bar_in_mchbar(struct device *dev, unsigned int index, u32 *base, u32 *len)
Aaron Durbin76c37002012-10-30 09:03:43 -050068{
Angel Pons1db5bc72020-01-15 00:49:03 +010069 u32 bar = MCHBAR32(index);
Aaron Durbin76c37002012-10-30 09:03:43 -050070
Angel Pons1db5bc72020-01-15 00:49:03 +010071 /* If not enabled don't report it */
Aaron Durbinc12ef972012-12-18 14:22:49 -060072 if (!(bar & 0x1))
73 return 0;
74
Angel Pons1db5bc72020-01-15 00:49:03 +010075 /* Knock down the enable bit */
Aaron Durbinc12ef972012-12-18 14:22:49 -060076 *base = bar & ~1;
77
78 return 1;
79}
80
81struct fixed_mmio_descriptor {
82 unsigned int index;
83 u32 size;
Angel Pons1db5bc72020-01-15 00:49:03 +010084 int (*get_resource)(struct device *dev, unsigned int index, u32 *base, u32 *size);
Aaron Durbinc12ef972012-12-18 14:22:49 -060085 const char *description;
86};
87
Angel Pons1db5bc72020-01-15 00:49:03 +010088#define SIZE_KB(x) ((x) * 1024)
Aaron Durbinc12ef972012-12-18 14:22:49 -060089struct fixed_mmio_descriptor mc_fixed_resources[] = {
Aaron Durbinc12ef972012-12-18 14:22:49 -060090 { MCHBAR, SIZE_KB(32), get_bar, "MCHBAR" },
91 { DMIBAR, SIZE_KB(4), get_bar, "DMIBAR" },
92 { EPBAR, SIZE_KB(4), get_bar, "EPBAR" },
Angel Pons1db5bc72020-01-15 00:49:03 +010093 { GDXCBAR, SIZE_KB(4), get_bar_in_mchbar, "GDXCBAR" },
94 { EDRAMBAR, SIZE_KB(16), get_bar_in_mchbar, "EDRAMBAR" },
Aaron Durbinc12ef972012-12-18 14:22:49 -060095};
96#undef SIZE_KB
97
Angel Pons1db5bc72020-01-15 00:49:03 +010098/* Add all known fixed MMIO ranges that hang off the host bridge/memory controller device. */
Elyes HAOUAS77f7a6e2018-05-09 17:47:59 +020099static void mc_add_fixed_mmio_resources(struct device *dev)
Aaron Durbinc12ef972012-12-18 14:22:49 -0600100{
101 int i;
102
103 for (i = 0; i < ARRAY_SIZE(mc_fixed_resources); i++) {
104 u32 base;
105 u32 size;
106 struct resource *resource;
107 unsigned int index;
108
109 size = mc_fixed_resources[i].size;
110 index = mc_fixed_resources[i].index;
Angel Pons1db5bc72020-01-15 00:49:03 +0100111 if (!mc_fixed_resources[i].get_resource(dev, index, &base, &size))
Aaron Durbinc12ef972012-12-18 14:22:49 -0600112 continue;
113
114 resource = new_resource(dev, mc_fixed_resources[i].index);
Angel Pons1db5bc72020-01-15 00:49:03 +0100115 resource->flags = IORESOURCE_MEM | IORESOURCE_FIXED | IORESOURCE_STORED |
116 IORESOURCE_RESERVE | IORESOURCE_ASSIGNED;
117
Aaron Durbinc12ef972012-12-18 14:22:49 -0600118 resource->base = base;
119 resource->size = size;
120 printk(BIOS_DEBUG, "%s: Adding %s @ %x 0x%08lx-0x%08lx.\n",
121 __func__, mc_fixed_resources[i].description, index,
122 (unsigned long)base, (unsigned long)(base + size - 1));
123 }
Angel Pons32770f82021-01-20 15:03:30 +0100124
125 mmconf_resource(dev, PCIEXBAR);
Aaron Durbinc12ef972012-12-18 14:22:49 -0600126}
127
Angel Pons4b290b72020-09-24 23:38:53 +0200128/*
129 * Host Memory Map:
Aaron Durbinc12ef972012-12-18 14:22:49 -0600130 *
131 * +--------------------------+ TOUUD
132 * | |
133 * +--------------------------+ 4GiB
134 * | PCI Address Space |
135 * +--------------------------+ TOLUD (also maps into MC address space)
136 * | iGD |
137 * +--------------------------+ BDSM
138 * | GTT |
139 * +--------------------------+ BGSM
140 * | TSEG |
141 * +--------------------------+ TSEGMB
Angel Pons4b290b72020-09-24 23:38:53 +0200142 * | DPR |
143 * +--------------------------+ (DPR top - DPR size)
Aaron Durbinc12ef972012-12-18 14:22:49 -0600144 * | Usage DRAM |
145 * +--------------------------+ 0
146 *
Angel Pons1db5bc72020-01-15 00:49:03 +0100147 * Some of the base registers above can be equal, making the size of the regions within 0.
148 * This is because the memory controller internally subtracts the base registers from each
149 * other to determine sizes of the regions. In other words, the memory map regions are always
150 * in a fixed order, no matter what sizes they have.
Aaron Durbinc12ef972012-12-18 14:22:49 -0600151 */
152
153struct map_entry {
154 int reg;
155 int is_64_bit;
156 int is_limit;
157 const char *description;
158};
159
Angel Pons1db5bc72020-01-15 00:49:03 +0100160static void read_map_entry(struct device *dev, struct map_entry *entry, uint64_t *result)
Aaron Durbinc12ef972012-12-18 14:22:49 -0600161{
162 uint64_t value;
163 uint64_t mask;
164
Angel Pons1db5bc72020-01-15 00:49:03 +0100165 /* All registers have a 1MiB granularity */
166 mask = ((1ULL << 20) - 1);
Aaron Durbinc12ef972012-12-18 14:22:49 -0600167 mask = ~mask;
168
169 value = 0;
170
171 if (entry->is_64_bit) {
172 value = pci_read_config32(dev, entry->reg + 4);
173 value <<= 32;
Aaron Durbin76c37002012-10-30 09:03:43 -0500174 }
175
Aaron Durbinc12ef972012-12-18 14:22:49 -0600176 value |= pci_read_config32(dev, entry->reg);
177 value &= mask;
178
179 if (entry->is_limit)
180 value |= ~mask;
181
182 *result = value;
183}
184
185#define MAP_ENTRY(reg_, is_64_, is_limit_, desc_) \
186 { \
187 .reg = reg_, \
188 .is_64_bit = is_64_, \
189 .is_limit = is_limit_, \
190 .description = desc_, \
191 }
192
Angel Pons1db5bc72020-01-15 00:49:03 +0100193#define MAP_ENTRY_BASE_32(reg_, desc_) MAP_ENTRY(reg_, 0, 0, desc_)
194#define MAP_ENTRY_BASE_64(reg_, desc_) MAP_ENTRY(reg_, 1, 0, desc_)
195#define MAP_ENTRY_LIMIT_64(reg_, desc_) MAP_ENTRY(reg_, 1, 1, desc_)
Aaron Durbinc12ef972012-12-18 14:22:49 -0600196
197enum {
198 TOM_REG,
199 TOUUD_REG,
200 MESEG_BASE_REG,
201 MESEG_LIMIT_REG,
202 REMAP_BASE_REG,
203 REMAP_LIMIT_REG,
204 TOLUD_REG,
205 BGSM_REG,
206 BDSM_REG,
207 TSEG_REG,
Angel Pons1db5bc72020-01-15 00:49:03 +0100208 /* Must be last */
209 NUM_MAP_ENTRIES,
Aaron Durbinc12ef972012-12-18 14:22:49 -0600210};
211
212static struct map_entry memory_map[NUM_MAP_ENTRIES] = {
Angel Pons1db5bc72020-01-15 00:49:03 +0100213 [TOM_REG] = MAP_ENTRY_BASE_64(TOM, "TOM"),
214 [TOUUD_REG] = MAP_ENTRY_BASE_64(TOUUD, "TOUUD"),
215 [MESEG_BASE_REG] = MAP_ENTRY_BASE_64(MESEG_BASE, "MESEG_BASE"),
Aaron Durbinc12ef972012-12-18 14:22:49 -0600216 [MESEG_LIMIT_REG] = MAP_ENTRY_LIMIT_64(MESEG_LIMIT, "MESEG_LIMIT"),
Angel Pons1db5bc72020-01-15 00:49:03 +0100217 [REMAP_BASE_REG] = MAP_ENTRY_BASE_64(REMAPBASE, "REMAP_BASE"),
Aaron Durbinc12ef972012-12-18 14:22:49 -0600218 [REMAP_LIMIT_REG] = MAP_ENTRY_LIMIT_64(REMAPLIMIT, "REMAP_LIMIT"),
Angel Pons1db5bc72020-01-15 00:49:03 +0100219 [TOLUD_REG] = MAP_ENTRY_BASE_32(TOLUD, "TOLUD"),
220 [BDSM_REG] = MAP_ENTRY_BASE_32(BDSM, "BDSM"),
221 [BGSM_REG] = MAP_ENTRY_BASE_32(BGSM, "BGSM"),
Angel Ponsd8abb262020-05-07 00:48:35 +0200222 [TSEG_REG] = MAP_ENTRY_BASE_32(TSEG, "TSEGMB"),
Aaron Durbinc12ef972012-12-18 14:22:49 -0600223};
224
Elyes HAOUAS77f7a6e2018-05-09 17:47:59 +0200225static void mc_read_map_entries(struct device *dev, uint64_t *values)
Aaron Durbinc12ef972012-12-18 14:22:49 -0600226{
227 int i;
228 for (i = 0; i < NUM_MAP_ENTRIES; i++) {
229 read_map_entry(dev, &memory_map[i], &values[i]);
230 }
231}
232
Elyes HAOUAS77f7a6e2018-05-09 17:47:59 +0200233static void mc_report_map_entries(struct device *dev, uint64_t *values)
Aaron Durbinc12ef972012-12-18 14:22:49 -0600234{
235 int i;
236 for (i = 0; i < NUM_MAP_ENTRIES; i++) {
237 printk(BIOS_DEBUG, "MC MAP: %s: 0x%llx\n",
238 memory_map[i].description, values[i]);
239 }
Angel Pons1db5bc72020-01-15 00:49:03 +0100240 /* One can validate the BDSM and BGSM against the GGC */
Aaron Durbinc12ef972012-12-18 14:22:49 -0600241 printk(BIOS_DEBUG, "MC MAP: GGC: 0x%x\n", pci_read_config16(dev, GGC));
242}
243
Elyes HAOUAS77f7a6e2018-05-09 17:47:59 +0200244static void mc_add_dram_resources(struct device *dev, int *resource_cnt)
Aaron Durbinc12ef972012-12-18 14:22:49 -0600245{
Angel Pons1db5bc72020-01-15 00:49:03 +0100246 unsigned long base_k, size_k, touud_k, index;
Aaron Durbinc12ef972012-12-18 14:22:49 -0600247 struct resource *resource;
248 uint64_t mc_values[NUM_MAP_ENTRIES];
249
Angel Pons1db5bc72020-01-15 00:49:03 +0100250 /* Read in the MAP registers and report their values */
Aaron Durbinc12ef972012-12-18 14:22:49 -0600251 mc_read_map_entries(dev, &mc_values[0]);
252 mc_report_map_entries(dev, &mc_values[0]);
253
Angel Pons5d7c3a42020-10-29 21:18:14 +0100254 /*
255 * DMA Protected Range can be reserved below TSEG for PCODE patch
256 * or TXT/BootGuard related data. Rather than report a base address,
257 * the DPR register reports the TOP of the region, which is the same
258 * as TSEG base. The region size is reported in MiB in bits 11:4.
259 */
Angel Pons4b290b72020-09-24 23:38:53 +0200260 const union dpr_register dpr = {
261 .raw = pci_read_config32(dev, DPR),
262 };
263 printk(BIOS_DEBUG, "MC MAP: DPR: 0x%x\n", dpr.raw);
264
Aaron Durbinc12ef972012-12-18 14:22:49 -0600265 /*
Aaron Durbin1fef1f52012-12-19 17:15:43 -0600266 * These are the host memory ranges that should be added:
Angel Pons1db5bc72020-01-15 00:49:03 +0100267 * - 0 -> 0xa0000: cacheable
268 * - 0xc0000 -> TSEG: cacheable
269 * - TSEG -> BGSM: cacheable with standard MTRRs and reserved
270 * - BGSM -> TOLUD: not cacheable with standard MTRRs and reserved
271 * - 4GiB -> TOUUD: cacheable
Aaron Durbinc12ef972012-12-18 14:22:49 -0600272 *
Angel Pons1db5bc72020-01-15 00:49:03 +0100273 * The default SMRAM space is reserved so that the range doesn't have to be saved
274 * during S3 Resume. Once marked reserved the OS cannot use the memory. This is a
275 * bit of an odd place to reserve the region, but the CPU devices don't have
276 * dev_ops->read_resources() called on them.
Aaron Durbin1fef1f52012-12-19 17:15:43 -0600277 *
Angel Pons1db5bc72020-01-15 00:49:03 +0100278 * The range 0xa0000 -> 0xc0000 does not have any resources associated with it to
279 * handle legacy VGA memory. If this range is not omitted the mtrr code will setup
280 * the area as cacheable, causing VGA access to not work.
Aaron Durbinc12ef972012-12-18 14:22:49 -0600281 *
Angel Pons1db5bc72020-01-15 00:49:03 +0100282 * The TSEG region is mapped as cacheable so that one can perform SMRAM relocation
283 * faster. Once the SMRR is enabled, the SMRR takes precedence over the existing
284 * MTRRs covering this region.
Aaron Durbine6c3b1d2012-12-21 21:22:07 -0600285 *
Angel Pons1db5bc72020-01-15 00:49:03 +0100286 * It should be noted that cacheable entry types need to be added in order. The reason
287 * is that the current MTRR code assumes this and falls over itself if it isn't.
Aaron Durbin1fef1f52012-12-19 17:15:43 -0600288 *
Angel Pons1db5bc72020-01-15 00:49:03 +0100289 * The resource index starts low and should not meet or exceed PCI_BASE_ADDRESS_0.
Aaron Durbinc12ef972012-12-18 14:22:49 -0600290 */
Matt DeVilliera51e3792018-03-04 01:44:15 -0600291 index = *resource_cnt;
Aaron Durbinc12ef972012-12-18 14:22:49 -0600292
Aaron Durbin6a360042014-02-13 10:30:42 -0600293 /* 0 - > 0xa0000 */
Aaron Durbinc12ef972012-12-18 14:22:49 -0600294 base_k = 0;
Aaron Durbin1fef1f52012-12-19 17:15:43 -0600295 size_k = (0xa0000 >> 10) - base_k;
296 ram_resource(dev, index++, base_k, size_k);
297
Angel Pons5d7c3a42020-10-29 21:18:14 +0100298 /* 0xc0000 -> TSEG - DPR */
Aaron Durbinc12ef972012-12-18 14:22:49 -0600299 base_k = 0xc0000 >> 10;
Angel Pons5d7c3a42020-10-29 21:18:14 +0100300 size_k = (unsigned long)(mc_values[TSEG_REG] >> 10) - base_k;
Tim Wawrzynczaka8f76902021-02-26 09:32:15 -0700301 size_k -= dpr.size * MiB / KiB;
Aaron Durbinc12ef972012-12-18 14:22:49 -0600302 ram_resource(dev, index++, base_k, size_k);
303
Angel Pons5d7c3a42020-10-29 21:18:14 +0100304 /* TSEG - DPR -> BGSM */
Aaron Durbinc12ef972012-12-18 14:22:49 -0600305 resource = new_resource(dev, index++);
Tim Wawrzynczaka8f76902021-02-26 09:32:15 -0700306 resource->base = mc_values[TSEG_REG] - dpr.size * MiB;
Aaron Durbine6c3b1d2012-12-21 21:22:07 -0600307 resource->size = mc_values[BGSM_REG] - resource->base;
Angel Pons1db5bc72020-01-15 00:49:03 +0100308 resource->flags = IORESOURCE_MEM | IORESOURCE_FIXED | IORESOURCE_STORED |
309 IORESOURCE_RESERVE | IORESOURCE_ASSIGNED | IORESOURCE_CACHEABLE;
Aaron Durbine6c3b1d2012-12-21 21:22:07 -0600310
Angel Pons1db5bc72020-01-15 00:49:03 +0100311 /* BGSM -> TOLUD. If the IGD is disabled, BGSM can equal TOLUD. */
Tristan Corrickc5d367b2018-12-17 22:10:07 +1300312 if (mc_values[BGSM_REG] != mc_values[TOLUD_REG]) {
313 resource = new_resource(dev, index++);
314 resource->base = mc_values[BGSM_REG];
315 resource->size = mc_values[TOLUD_REG] - resource->base;
Angel Pons1db5bc72020-01-15 00:49:03 +0100316 resource->flags = IORESOURCE_MEM | IORESOURCE_FIXED | IORESOURCE_STORED |
317 IORESOURCE_RESERVE | IORESOURCE_ASSIGNED;
Tristan Corrickc5d367b2018-12-17 22:10:07 +1300318 }
Aaron Durbinc12ef972012-12-18 14:22:49 -0600319
320 /* 4GiB -> TOUUD */
321 base_k = 4096 * 1024; /* 4GiB */
Aaron Durbin27435d32013-06-03 09:46:56 -0500322 touud_k = mc_values[TOUUD_REG] >> 10;
323 size_k = touud_k - base_k;
324 if (touud_k > base_k)
Aaron Durbin5c66f082013-01-08 10:10:33 -0600325 ram_resource(dev, index++, base_k, size_k);
Aaron Durbinc12ef972012-12-18 14:22:49 -0600326
Aaron Durbinc9650762013-03-22 22:03:09 -0500327 /* Reserve everything between A segment and 1MB:
328 *
Angel Pons1db5bc72020-01-15 00:49:03 +0100329 * 0xa0000 - 0xbffff: Legacy VGA
Aaron Durbinc9650762013-03-22 22:03:09 -0500330 * 0xc0000 - 0xfffff: RAM
331 */
332 mmio_resource(dev, index++, (0xa0000 >> 10), (0xc0000 - 0xa0000) >> 10);
Angel Pons1db5bc72020-01-15 00:49:03 +0100333 reserved_ram_resource(dev, index++, (0xc0000 >> 10), (0x100000 - 0xc0000) >> 10);
334
Matt DeVilliera51e3792018-03-04 01:44:15 -0600335 *resource_cnt = index;
Aaron Durbinc12ef972012-12-18 14:22:49 -0600336}
337
Elyes HAOUAS77f7a6e2018-05-09 17:47:59 +0200338static void mc_read_resources(struct device *dev)
Aaron Durbinc12ef972012-12-18 14:22:49 -0600339{
Matt DeVilliera51e3792018-03-04 01:44:15 -0600340 int index = 0;
Angel Pons1db5bc72020-01-15 00:49:03 +0100341 const bool vtd_capable = !(pci_read_config32(dev, CAPID0_A) & VTD_DISABLE);
Matt DeVilliera51e3792018-03-04 01:44:15 -0600342
Angel Pons1db5bc72020-01-15 00:49:03 +0100343 /* Read standard PCI resources */
Aaron Durbinc12ef972012-12-18 14:22:49 -0600344 pci_dev_read_resources(dev);
345
Angel Pons1db5bc72020-01-15 00:49:03 +0100346 /* Add all fixed MMIO resources */
Aaron Durbinc12ef972012-12-18 14:22:49 -0600347 mc_add_fixed_mmio_resources(dev);
348
Angel Pons1db5bc72020-01-15 00:49:03 +0100349 /* Add VT-d MMIO resources, if capable */
Matt DeVilliera51e3792018-03-04 01:44:15 -0600350 if (vtd_capable) {
Angel Pons1db5bc72020-01-15 00:49:03 +0100351 mmio_resource(dev, index++, GFXVT_BASE_ADDRESS / KiB, GFXVT_BASE_SIZE / KiB);
352 mmio_resource(dev, index++, VTVC0_BASE_ADDRESS / KiB, VTVC0_BASE_SIZE / KiB);
Matt DeVilliera51e3792018-03-04 01:44:15 -0600353 }
354
Angel Pons1db5bc72020-01-15 00:49:03 +0100355 /* Calculate and add DRAM resources */
Matt DeVilliera51e3792018-03-04 01:44:15 -0600356 mc_add_dram_resources(dev, &index);
Aaron Durbin76c37002012-10-30 09:03:43 -0500357}
358
Tristan Corrickbc896cd2018-12-17 22:09:50 +1300359/*
Angel Pons1db5bc72020-01-15 00:49:03 +0100360 * The Mini-HD audio device is disabled whenever the IGD is. This is because it provides
361 * audio over the integrated graphics port(s), which requires the IGD to be functional.
Tristan Corrickbc896cd2018-12-17 22:09:50 +1300362 */
363static void disable_devices(void)
364{
365 static const struct {
366 const unsigned int devfn;
367 const u32 mask;
368 const char *const name;
369 } nb_devs[] = {
370 { PCI_DEVFN(1, 2), DEVEN_D1F2EN, "PEG12" },
371 { PCI_DEVFN(1, 1), DEVEN_D1F1EN, "PEG11" },
372 { PCI_DEVFN(1, 0), DEVEN_D1F0EN, "PEG10" },
373 { PCI_DEVFN(2, 0), DEVEN_D2EN | DEVEN_D3EN, "IGD" },
374 { PCI_DEVFN(3, 0), DEVEN_D3EN, "Mini-HD audio" },
375 { PCI_DEVFN(4, 0), DEVEN_D4EN, "\"device 4\"" },
376 { PCI_DEVFN(7, 0), DEVEN_D7EN, "\"device 7\"" },
377 };
378
Angel Pons1db5bc72020-01-15 00:49:03 +0100379 struct device *host_dev = pcidev_on_root(0, 0);
Tristan Corrickbc896cd2018-12-17 22:09:50 +1300380 u32 deven;
381 size_t i;
382
383 if (!host_dev)
384 return;
385
386 deven = pci_read_config32(host_dev, DEVEN);
387
388 for (i = 0; i < ARRAY_SIZE(nb_devs); i++) {
Kyösti Mälkkie7377552018-06-21 16:20:55 +0300389 struct device *dev = pcidev_path_on_root(nb_devs[i].devfn);
Tristan Corrickbc896cd2018-12-17 22:09:50 +1300390 if (!dev || !dev->enabled) {
391 printk(BIOS_DEBUG, "Disabling %s.\n", nb_devs[i].name);
392 deven &= ~nb_devs[i].mask;
393 }
394 }
395
396 pci_write_config32(host_dev, DEVEN, deven);
397}
398
Angel Pons028b8e42020-07-24 14:03:29 +0200399static void init_egress(void)
400{
401 /* VC0: Enable, ID0, TC0 */
402 EPBAR32(EPVC0RCTL) = (1 << 31) | (0 << 24) | (1 << 0);
403
404 /* No Low Priority Extended VCs, one Extended VC */
405 EPBAR32(EPPVCCAP1) = (0 << 4) | (1 << 0);
406
407 /* VC1: Enable, ID1, TC1 */
408 EPBAR32(EPVC1RCTL) = (1 << 31) | (1 << 24) | (1 << 1);
409
410 /* Poll the VC1 Negotiation Pending bit */
411 while ((EPBAR16(EPVC1RSTS) & (1 << 1)) != 0)
412 ;
413}
414
Angel Pons598ec6a2020-07-23 02:37:12 +0200415static void northbridge_dmi_init(void)
416{
417 const bool is_haswell_h = !CONFIG(INTEL_LYNXPOINT_LP);
418
419 u16 reg16;
420 u32 reg32;
421
422 /* Steps prior to DMI ASPM */
423 if (is_haswell_h) {
424 /* Configure DMI De-Emphasis */
425 reg16 = DMIBAR16(DMILCTL2);
426 reg16 |= (1 << 6); /* 0b: -6.0 dB, 1b: -3.5 dB */
427 DMIBAR16(DMILCTL2) = reg16;
428
429 reg32 = DMIBAR32(DMIL0SLAT);
430 reg32 |= (1 << 31);
431 DMIBAR32(DMIL0SLAT) = reg32;
432
433 reg32 = DMIBAR32(DMILLTC);
434 reg32 |= (1 << 29);
435 DMIBAR32(DMILLTC) = reg32;
436
437 reg32 = DMIBAR32(DMI_AFE_PM_TMR);
438 reg32 &= ~0x1f;
439 reg32 |= 0x13;
440 DMIBAR32(DMI_AFE_PM_TMR) = reg32;
441 }
442
443 /* Clear error status bits */
444 DMIBAR32(DMIUESTS) = 0xffffffff;
445 DMIBAR32(DMICESTS) = 0xffffffff;
446
447 if (is_haswell_h) {
448 /* Enable ASPM L0s and L1 on SA link, should happen before PCH link */
449 reg16 = DMIBAR16(DMILCTL);
450 reg16 |= (1 << 1) | (1 << 0);
451 DMIBAR16(DMILCTL) = reg16;
452 }
453}
454
Angel Pons76b8bc22020-07-23 02:32:27 +0200455static void northbridge_topology_init(void)
456{
457 const u32 eple_a[3] = { EPLE2A, EPLE3A, EPLE4A };
458 const u32 eple_d[3] = { EPLE2D, EPLE3D, EPLE4D };
459
460 u32 reg32;
461
462 /* Set the CID1 Egress Port 0 Root Topology */
463 reg32 = EPBAR32(EPESD);
464 reg32 &= ~(0xff << 16);
465 reg32 |= 1 << 16;
466 EPBAR32(EPESD) = reg32;
467
468 reg32 = EPBAR32(EPLE1D);
469 reg32 &= ~(0xff << 16);
470 reg32 |= 1 | (1 << 16);
471 EPBAR32(EPLE1D) = reg32;
Angel Ponsf95b9b42021-01-20 01:10:48 +0100472 EPBAR64(EPLE1A) = CONFIG_FIXED_DMIBAR_MMIO_BASE;
Angel Pons76b8bc22020-07-23 02:32:27 +0200473
474 for (unsigned int i = 0; i <= 2; i++) {
475 const struct device *const dev = pcidev_on_root(1, i);
476
477 if (!dev || !dev->enabled)
478 continue;
479
480 EPBAR64(eple_a[i]) = (u64)PCI_DEV(0, 1, i);
481
482 reg32 = EPBAR32(eple_d[i]);
483 reg32 &= ~(0xff << 16);
484 reg32 |= 1 | (1 << 16);
485 EPBAR32(eple_d[i]) = reg32;
486
487 pci_update_config32(dev, PEG_ESD, ~(0xff << 16), (1 << 16));
Angel Ponsf95b9b42021-01-20 01:10:48 +0100488 pci_write_config32(dev, PEG_LE1A, CONFIG_FIXED_EPBAR_MMIO_BASE);
Angel Pons76b8bc22020-07-23 02:32:27 +0200489 pci_write_config32(dev, PEG_LE1A + 4, 0);
490 pci_update_config32(dev, PEG_LE1D, ~(0xff << 16), (1 << 16) | 1);
491
492 /* Read and write to lock register */
493 pci_or_config32(dev, PEG_DCAP2, 0);
494 }
495
496 /* Set the CID1 DMI Port Root Topology */
497 reg32 = DMIBAR32(DMIESD);
498 reg32 &= ~(0xff << 16);
499 reg32 |= 1 << 16;
500 DMIBAR32(DMIESD) = reg32;
501
502 reg32 = DMIBAR32(DMILE1D);
503 reg32 &= ~(0xffff << 16);
504 reg32 |= 1 | (2 << 16);
505 DMIBAR32(DMILE1D) = reg32;
Angel Pons6e732d32021-01-28 13:56:18 +0100506 DMIBAR64(DMILE1A) = CONFIG_FIXED_RCBA_MMIO_BASE;
Angel Pons76b8bc22020-07-23 02:32:27 +0200507
Angel Ponsf95b9b42021-01-20 01:10:48 +0100508 DMIBAR64(DMILE2A) = CONFIG_FIXED_EPBAR_MMIO_BASE;
Angel Pons76b8bc22020-07-23 02:32:27 +0200509 reg32 = DMIBAR32(DMILE2D);
510 reg32 &= ~(0xff << 16);
511 reg32 |= 1 | (1 << 16);
512 DMIBAR32(DMILE2D) = reg32;
513
514 /* Program RO and Write-Once Registers */
515 DMIBAR32(DMIPVCCAP1) = DMIBAR32(DMIPVCCAP1);
516 DMIBAR32(DMILCAP) = DMIBAR32(DMILCAP);
517}
518
Aaron Durbin76c37002012-10-30 09:03:43 -0500519static void northbridge_init(struct device *dev)
520{
Duncan Lauriec70353f2013-06-28 14:40:38 -0700521 u8 bios_reset_cpl, pair;
Aaron Durbin76c37002012-10-30 09:03:43 -0500522
Angel Pons028b8e42020-07-24 14:03:29 +0200523 init_egress();
Angel Pons598ec6a2020-07-23 02:37:12 +0200524 northbridge_dmi_init();
Angel Pons76b8bc22020-07-23 02:32:27 +0200525 northbridge_topology_init();
Angel Pons598ec6a2020-07-23 02:37:12 +0200526
Angel Pons1db5bc72020-01-15 00:49:03 +0100527 /* Enable Power Aware Interrupt Routing. */
528 pair = MCHBAR8(INTRDIRCTL);
Duncan Lauriec70353f2013-06-28 14:40:38 -0700529 pair &= ~0x7; /* Clear 2:0 */
530 pair |= 0x4; /* Fixed Priority */
Angel Pons1db5bc72020-01-15 00:49:03 +0100531 MCHBAR8(INTRDIRCTL) = pair;
Aaron Durbin76c37002012-10-30 09:03:43 -0500532
Tristan Corrickbc896cd2018-12-17 22:09:50 +1300533 disable_devices();
534
Aaron Durbin76c37002012-10-30 09:03:43 -0500535 /*
Angel Pons1db5bc72020-01-15 00:49:03 +0100536 * Set bits 0 + 1 of BIOS_RESET_CPL to indicate to the CPU
537 * that BIOS has initialized memory and power management.
Aaron Durbin76c37002012-10-30 09:03:43 -0500538 */
539 bios_reset_cpl = MCHBAR8(BIOS_RESET_CPL);
Duncan Lauriec70353f2013-06-28 14:40:38 -0700540 bios_reset_cpl |= 3;
Aaron Durbin76c37002012-10-30 09:03:43 -0500541 MCHBAR8(BIOS_RESET_CPL) = bios_reset_cpl;
542 printk(BIOS_DEBUG, "Set BIOS_RESET_CPL\n");
543
Angel Pons1db5bc72020-01-15 00:49:03 +0100544 /* Configure turbo power limits 1ms after reset complete bit. */
Aaron Durbin76c37002012-10-30 09:03:43 -0500545 mdelay(1);
546 set_power_limits(28);
Aaron Durbin76c37002012-10-30 09:03:43 -0500547}
548
Aaron Durbin76c37002012-10-30 09:03:43 -0500549static struct device_operations mc_ops = {
Nico Huber68680dd2020-03-31 17:34:52 +0200550 .read_resources = mc_read_resources,
551 .set_resources = pci_dev_set_resources,
552 .enable_resources = pci_dev_enable_resources,
553 .init = northbridge_init,
554 .acpi_fill_ssdt = generate_cpu_entries,
Angel Pons1fc0edd2020-05-31 00:03:28 +0200555 .ops_pci = &pci_dev_ops_pci,
Aaron Durbin76c37002012-10-30 09:03:43 -0500556};
557
Tristan Corrickd3856242018-11-01 03:03:29 +1300558static const unsigned short mc_pci_device_ids[] = {
559 0x0c00, /* Desktop */
560 0x0c04, /* Mobile */
561 0x0a04, /* ULT */
Iru Cai0766c982018-12-17 13:21:36 +0800562 0x0c08, /* Server */
Iru Cai12a13e12020-05-22 22:57:03 +0800563 0x0d00, /* Crystal Well Desktop */
564 0x0d04, /* Crystal Well Mobile */
565 0x0d08, /* Crystal Well Server (by extrapolation) */
Tristan Corrickd3856242018-11-01 03:03:29 +1300566 0
Tristan Corrick48170122018-10-31 02:21:41 +1300567};
568
Tristan Corrickd3856242018-11-01 03:03:29 +1300569static const struct pci_driver mc_driver_hsw __pci_driver = {
570 .ops = &mc_ops,
571 .vendor = PCI_VENDOR_ID_INTEL,
572 .devices = mc_pci_device_ids,
Duncan Lauriedf7be712012-12-17 11:22:57 -0800573};
574
Aaron Durbin76c37002012-10-30 09:03:43 -0500575static struct device_operations cpu_bus_ops = {
Nico Huber2f8ba692020-04-05 14:05:24 +0200576 .read_resources = noop_read_resources,
577 .set_resources = noop_set_resources,
Kyösti Mälkkib3267e02019-08-13 16:44:04 +0300578 .init = mp_cpu_bus_init,
Aaron Durbin76c37002012-10-30 09:03:43 -0500579};
580
Elyes HAOUAS77f7a6e2018-05-09 17:47:59 +0200581static void enable_dev(struct device *dev)
Aaron Durbin76c37002012-10-30 09:03:43 -0500582{
Angel Pons1db5bc72020-01-15 00:49:03 +0100583 /* Set the operations if it is a special bus type. */
Aaron Durbin76c37002012-10-30 09:03:43 -0500584 if (dev->path.type == DEVICE_PATH_DOMAIN) {
585 dev->ops = &pci_domain_ops;
586 } else if (dev->path.type == DEVICE_PATH_CPU_CLUSTER) {
587 dev->ops = &cpu_bus_ops;
588 }
589}
590
591struct chip_operations northbridge_intel_haswell_ops = {
Angel Pons7bbf45e2020-10-22 23:55:24 +0200592 CHIP_NAME("Intel Haswell integrated Northbridge")
Aaron Durbin76c37002012-10-30 09:03:43 -0500593 .enable_dev = enable_dev,
594};