blob: c544ad3c38831892db7abe0e73b190e61dbfceb2 [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>
10#include <device/pci_ids.h>
Tristan Corrickbc896cd2018-12-17 22:09:50 +130011#include <device/pci_ops.h>
Aaron Durbin76c37002012-10-30 09:03:43 -050012#include <boot/tables.h>
Angel Pons4b290b72020-09-24 23:38:53 +020013#include <security/intel/txt/txt_register.h>
Angel Ponse2ec60f2021-01-26 19:18:09 +010014#include <southbridge/intel/lynxpoint/pch.h>
Elyes HAOUAS030d3382021-02-12 08:17:35 +010015#include <types.h>
Elyes HAOUASa1e22b82019-03-18 22:49:36 +010016
Aaron Durbin76c37002012-10-30 09:03:43 -050017#include "chip.h"
18#include "haswell.h"
19
Tristan Corrickf3127d42018-10-31 02:25:54 +130020static const char *northbridge_acpi_name(const struct device *dev)
21{
22 if (dev->path.type == DEVICE_PATH_DOMAIN)
23 return "PCI0";
24
Fabio Aiuto61ed4ef2022-09-30 14:55:53 +020025 if (!is_pci_dev_on_bus(dev, 0))
Tristan Corrickf3127d42018-10-31 02:25:54 +130026 return NULL;
27
28 switch (dev->path.pci.devfn) {
29 case PCI_DEVFN(0, 0):
30 return "MCHC";
31 }
32
33 return NULL;
34}
35
Arthur Heymans600fa262022-11-07 08:04:59 +010036struct device_operations haswell_pci_domain_ops = {
Angel Pons1db5bc72020-01-15 00:49:03 +010037 .read_resources = pci_domain_read_resources,
38 .set_resources = pci_domain_set_resources,
Arthur Heymans0b0113f2023-08-31 17:09:28 +020039 .scan_bus = pci_host_bridge_scan_bus,
Angel Pons1db5bc72020-01-15 00:49:03 +010040 .acpi_name = northbridge_acpi_name,
Matt DeVillier85d98d92018-03-04 01:41:23 -060041 .write_acpi_tables = northbridge_write_acpi_tables,
Aaron Durbin76c37002012-10-30 09:03:43 -050042};
43
Elyes HAOUAS77f7a6e2018-05-09 17:47:59 +020044static int get_bar(struct device *dev, unsigned int index, u32 *base, u32 *len)
Aaron Durbin76c37002012-10-30 09:03:43 -050045{
Angel Pons1db5bc72020-01-15 00:49:03 +010046 u32 bar = pci_read_config32(dev, index);
Aaron Durbin76c37002012-10-30 09:03:43 -050047
Angel Pons1db5bc72020-01-15 00:49:03 +010048 /* If not enabled don't report it */
Aaron Durbinc12ef972012-12-18 14:22:49 -060049 if (!(bar & 0x1))
50 return 0;
Aaron Durbin76c37002012-10-30 09:03:43 -050051
Angel Pons1db5bc72020-01-15 00:49:03 +010052 /* Knock down the enable bit */
Aaron Durbinc12ef972012-12-18 14:22:49 -060053 *base = bar & ~1;
54
55 return 1;
Aaron Durbin76c37002012-10-30 09:03:43 -050056}
57
Angel Pons1db5bc72020-01-15 00:49:03 +010058/*
59 * There are special BARs that actually are programmed in the MCHBAR. These Intel special
60 * features, but they do consume resources that need to be accounted for.
61 */
62static int get_bar_in_mchbar(struct device *dev, unsigned int index, u32 *base, u32 *len)
Aaron Durbin76c37002012-10-30 09:03:43 -050063{
Angel Pons2e397ae2021-03-26 12:35:57 +010064 u32 bar = mchbar_read32(index);
Aaron Durbin76c37002012-10-30 09:03:43 -050065
Angel Pons1db5bc72020-01-15 00:49:03 +010066 /* If not enabled don't report it */
Aaron Durbinc12ef972012-12-18 14:22:49 -060067 if (!(bar & 0x1))
68 return 0;
69
Angel Pons1db5bc72020-01-15 00:49:03 +010070 /* Knock down the enable bit */
Aaron Durbinc12ef972012-12-18 14:22:49 -060071 *base = bar & ~1;
72
73 return 1;
74}
75
76struct fixed_mmio_descriptor {
77 unsigned int index;
78 u32 size;
Angel Pons1db5bc72020-01-15 00:49:03 +010079 int (*get_resource)(struct device *dev, unsigned int index, u32 *base, u32 *size);
Aaron Durbinc12ef972012-12-18 14:22:49 -060080 const char *description;
81};
82
Aaron Durbinc12ef972012-12-18 14:22:49 -060083struct fixed_mmio_descriptor mc_fixed_resources[] = {
Angel Pons3eeefba2021-06-14 09:23:40 +020084 { MCHBAR, MCH_BASE_SIZE, get_bar, "MCHBAR" },
85 { DMIBAR, DMI_BASE_SIZE, get_bar, "DMIBAR" },
86 { EPBAR, EP_BASE_SIZE, get_bar, "EPBAR" },
87 { GDXCBAR, GDXC_BASE_SIZE, get_bar_in_mchbar, "GDXCBAR" },
88 { EDRAMBAR, EDRAM_BASE_SIZE, get_bar_in_mchbar, "EDRAMBAR" },
Aaron Durbinc12ef972012-12-18 14:22:49 -060089};
Aaron Durbinc12ef972012-12-18 14:22:49 -060090
Angel Pons1db5bc72020-01-15 00:49:03 +010091/* Add all known fixed MMIO ranges that hang off the host bridge/memory controller device. */
Elyes HAOUAS77f7a6e2018-05-09 17:47:59 +020092static void mc_add_fixed_mmio_resources(struct device *dev)
Aaron Durbinc12ef972012-12-18 14:22:49 -060093{
94 int i;
95
96 for (i = 0; i < ARRAY_SIZE(mc_fixed_resources); i++) {
97 u32 base;
98 u32 size;
Aaron Durbinc12ef972012-12-18 14:22:49 -060099 unsigned int index;
100
101 size = mc_fixed_resources[i].size;
102 index = mc_fixed_resources[i].index;
Angel Pons1db5bc72020-01-15 00:49:03 +0100103 if (!mc_fixed_resources[i].get_resource(dev, index, &base, &size))
Aaron Durbinc12ef972012-12-18 14:22:49 -0600104 continue;
105
Arthur Heymansa5543ae2023-07-05 09:22:39 +0200106 mmio_range(dev, mc_fixed_resources[i].index, base, size);
Aaron Durbinc12ef972012-12-18 14:22:49 -0600107 printk(BIOS_DEBUG, "%s: Adding %s @ %x 0x%08lx-0x%08lx.\n",
108 __func__, mc_fixed_resources[i].description, index,
109 (unsigned long)base, (unsigned long)(base + size - 1));
110 }
Angel Pons32770f82021-01-20 15:03:30 +0100111
112 mmconf_resource(dev, PCIEXBAR);
Aaron Durbinc12ef972012-12-18 14:22:49 -0600113}
114
Angel Pons4b290b72020-09-24 23:38:53 +0200115/*
116 * Host Memory Map:
Aaron Durbinc12ef972012-12-18 14:22:49 -0600117 *
118 * +--------------------------+ TOUUD
119 * | |
120 * +--------------------------+ 4GiB
121 * | PCI Address Space |
122 * +--------------------------+ TOLUD (also maps into MC address space)
123 * | iGD |
124 * +--------------------------+ BDSM
125 * | GTT |
126 * +--------------------------+ BGSM
127 * | TSEG |
128 * +--------------------------+ TSEGMB
Angel Pons4b290b72020-09-24 23:38:53 +0200129 * | DPR |
130 * +--------------------------+ (DPR top - DPR size)
Aaron Durbinc12ef972012-12-18 14:22:49 -0600131 * | Usage DRAM |
132 * +--------------------------+ 0
133 *
Angel Pons1db5bc72020-01-15 00:49:03 +0100134 * Some of the base registers above can be equal, making the size of the regions within 0.
135 * This is because the memory controller internally subtracts the base registers from each
136 * other to determine sizes of the regions. In other words, the memory map regions are always
137 * in a fixed order, no matter what sizes they have.
Aaron Durbinc12ef972012-12-18 14:22:49 -0600138 */
139
140struct map_entry {
141 int reg;
142 int is_64_bit;
143 int is_limit;
144 const char *description;
145};
146
Angel Pons1db5bc72020-01-15 00:49:03 +0100147static void read_map_entry(struct device *dev, struct map_entry *entry, uint64_t *result)
Aaron Durbinc12ef972012-12-18 14:22:49 -0600148{
149 uint64_t value;
150 uint64_t mask;
151
Angel Pons1db5bc72020-01-15 00:49:03 +0100152 /* All registers have a 1MiB granularity */
153 mask = ((1ULL << 20) - 1);
Aaron Durbinc12ef972012-12-18 14:22:49 -0600154 mask = ~mask;
155
156 value = 0;
157
158 if (entry->is_64_bit) {
159 value = pci_read_config32(dev, entry->reg + 4);
160 value <<= 32;
Aaron Durbin76c37002012-10-30 09:03:43 -0500161 }
162
Aaron Durbinc12ef972012-12-18 14:22:49 -0600163 value |= pci_read_config32(dev, entry->reg);
164 value &= mask;
165
166 if (entry->is_limit)
167 value |= ~mask;
168
169 *result = value;
170}
171
172#define MAP_ENTRY(reg_, is_64_, is_limit_, desc_) \
173 { \
174 .reg = reg_, \
175 .is_64_bit = is_64_, \
176 .is_limit = is_limit_, \
177 .description = desc_, \
178 }
179
Angel Pons1db5bc72020-01-15 00:49:03 +0100180#define MAP_ENTRY_BASE_32(reg_, desc_) MAP_ENTRY(reg_, 0, 0, desc_)
181#define MAP_ENTRY_BASE_64(reg_, desc_) MAP_ENTRY(reg_, 1, 0, desc_)
182#define MAP_ENTRY_LIMIT_64(reg_, desc_) MAP_ENTRY(reg_, 1, 1, desc_)
Aaron Durbinc12ef972012-12-18 14:22:49 -0600183
184enum {
185 TOM_REG,
186 TOUUD_REG,
187 MESEG_BASE_REG,
188 MESEG_LIMIT_REG,
189 REMAP_BASE_REG,
190 REMAP_LIMIT_REG,
191 TOLUD_REG,
192 BGSM_REG,
193 BDSM_REG,
194 TSEG_REG,
Angel Pons1db5bc72020-01-15 00:49:03 +0100195 /* Must be last */
196 NUM_MAP_ENTRIES,
Aaron Durbinc12ef972012-12-18 14:22:49 -0600197};
198
199static struct map_entry memory_map[NUM_MAP_ENTRIES] = {
Angel Pons1db5bc72020-01-15 00:49:03 +0100200 [TOM_REG] = MAP_ENTRY_BASE_64(TOM, "TOM"),
201 [TOUUD_REG] = MAP_ENTRY_BASE_64(TOUUD, "TOUUD"),
202 [MESEG_BASE_REG] = MAP_ENTRY_BASE_64(MESEG_BASE, "MESEG_BASE"),
Aaron Durbinc12ef972012-12-18 14:22:49 -0600203 [MESEG_LIMIT_REG] = MAP_ENTRY_LIMIT_64(MESEG_LIMIT, "MESEG_LIMIT"),
Angel Pons1db5bc72020-01-15 00:49:03 +0100204 [REMAP_BASE_REG] = MAP_ENTRY_BASE_64(REMAPBASE, "REMAP_BASE"),
Aaron Durbinc12ef972012-12-18 14:22:49 -0600205 [REMAP_LIMIT_REG] = MAP_ENTRY_LIMIT_64(REMAPLIMIT, "REMAP_LIMIT"),
Angel Pons1db5bc72020-01-15 00:49:03 +0100206 [TOLUD_REG] = MAP_ENTRY_BASE_32(TOLUD, "TOLUD"),
207 [BDSM_REG] = MAP_ENTRY_BASE_32(BDSM, "BDSM"),
208 [BGSM_REG] = MAP_ENTRY_BASE_32(BGSM, "BGSM"),
Angel Ponsd8abb262020-05-07 00:48:35 +0200209 [TSEG_REG] = MAP_ENTRY_BASE_32(TSEG, "TSEGMB"),
Aaron Durbinc12ef972012-12-18 14:22:49 -0600210};
211
Elyes HAOUAS77f7a6e2018-05-09 17:47:59 +0200212static void mc_read_map_entries(struct device *dev, uint64_t *values)
Aaron Durbinc12ef972012-12-18 14:22:49 -0600213{
214 int i;
215 for (i = 0; i < NUM_MAP_ENTRIES; i++) {
216 read_map_entry(dev, &memory_map[i], &values[i]);
217 }
218}
219
Elyes HAOUAS77f7a6e2018-05-09 17:47:59 +0200220static void mc_report_map_entries(struct device *dev, uint64_t *values)
Aaron Durbinc12ef972012-12-18 14:22:49 -0600221{
222 int i;
223 for (i = 0; i < NUM_MAP_ENTRIES; i++) {
224 printk(BIOS_DEBUG, "MC MAP: %s: 0x%llx\n",
225 memory_map[i].description, values[i]);
226 }
Angel Pons1db5bc72020-01-15 00:49:03 +0100227 /* One can validate the BDSM and BGSM against the GGC */
Aaron Durbinc12ef972012-12-18 14:22:49 -0600228 printk(BIOS_DEBUG, "MC MAP: GGC: 0x%x\n", pci_read_config16(dev, GGC));
229}
230
Elyes HAOUAS77f7a6e2018-05-09 17:47:59 +0200231static void mc_add_dram_resources(struct device *dev, int *resource_cnt)
Aaron Durbinc12ef972012-12-18 14:22:49 -0600232{
Arthur Heymansa5543ae2023-07-05 09:22:39 +0200233 int index;
Aaron Durbinc12ef972012-12-18 14:22:49 -0600234 uint64_t mc_values[NUM_MAP_ENTRIES];
235
Angel Pons1db5bc72020-01-15 00:49:03 +0100236 /* Read in the MAP registers and report their values */
Aaron Durbinc12ef972012-12-18 14:22:49 -0600237 mc_read_map_entries(dev, &mc_values[0]);
238 mc_report_map_entries(dev, &mc_values[0]);
239
Angel Pons5d7c3a42020-10-29 21:18:14 +0100240 /*
241 * DMA Protected Range can be reserved below TSEG for PCODE patch
Paul Menzel7f5a1ee2021-12-15 10:47:05 +0100242 * or TXT/Boot Guard related data. Rather than report a base address,
Angel Pons5d7c3a42020-10-29 21:18:14 +0100243 * the DPR register reports the TOP of the region, which is the same
244 * as TSEG base. The region size is reported in MiB in bits 11:4.
245 */
Angel Pons4b290b72020-09-24 23:38:53 +0200246 const union dpr_register dpr = {
247 .raw = pci_read_config32(dev, DPR),
248 };
249 printk(BIOS_DEBUG, "MC MAP: DPR: 0x%x\n", dpr.raw);
250
Aaron Durbinc12ef972012-12-18 14:22:49 -0600251 /*
Aaron Durbin1fef1f52012-12-19 17:15:43 -0600252 * These are the host memory ranges that should be added:
Angel Pons1db5bc72020-01-15 00:49:03 +0100253 * - 0 -> 0xa0000: cacheable
254 * - 0xc0000 -> TSEG: cacheable
255 * - TSEG -> BGSM: cacheable with standard MTRRs and reserved
256 * - BGSM -> TOLUD: not cacheable with standard MTRRs and reserved
257 * - 4GiB -> TOUUD: cacheable
Aaron Durbinc12ef972012-12-18 14:22:49 -0600258 *
Angel Pons1db5bc72020-01-15 00:49:03 +0100259 * The default SMRAM space is reserved so that the range doesn't have to be saved
260 * during S3 Resume. Once marked reserved the OS cannot use the memory. This is a
261 * bit of an odd place to reserve the region, but the CPU devices don't have
262 * dev_ops->read_resources() called on them.
Aaron Durbin1fef1f52012-12-19 17:15:43 -0600263 *
Angel Pons1db5bc72020-01-15 00:49:03 +0100264 * The range 0xa0000 -> 0xc0000 does not have any resources associated with it to
265 * handle legacy VGA memory. If this range is not omitted the mtrr code will setup
266 * the area as cacheable, causing VGA access to not work.
Aaron Durbinc12ef972012-12-18 14:22:49 -0600267 *
Angel Pons1db5bc72020-01-15 00:49:03 +0100268 * The TSEG region is mapped as cacheable so that one can perform SMRAM relocation
269 * faster. Once the SMRR is enabled, the SMRR takes precedence over the existing
270 * MTRRs covering this region.
Aaron Durbine6c3b1d2012-12-21 21:22:07 -0600271 *
Angel Pons1db5bc72020-01-15 00:49:03 +0100272 * It should be noted that cacheable entry types need to be added in order. The reason
273 * is that the current MTRR code assumes this and falls over itself if it isn't.
Aaron Durbin1fef1f52012-12-19 17:15:43 -0600274 *
Angel Pons1db5bc72020-01-15 00:49:03 +0100275 * The resource index starts low and should not meet or exceed PCI_BASE_ADDRESS_0.
Aaron Durbinc12ef972012-12-18 14:22:49 -0600276 */
Matt DeVilliera51e3792018-03-04 01:44:15 -0600277 index = *resource_cnt;
Aaron Durbinc12ef972012-12-18 14:22:49 -0600278
Arthur Heymansa5543ae2023-07-05 09:22:39 +0200279 /*
280 * 0 - > 0xa0000: RAM
Angel Pons1db5bc72020-01-15 00:49:03 +0100281 * 0xa0000 - 0xbffff: Legacy VGA
Aaron Durbinc9650762013-03-22 22:03:09 -0500282 * 0xc0000 - 0xfffff: RAM
283 */
Arthur Heymansa5543ae2023-07-05 09:22:39 +0200284
285 ram_range(dev, index++, 0, 0xa0000);
286 mmio_from_to(dev, index++, 0xa0000, 0xc0000);
287 reserved_ram_from_to(dev, index++, 0xc0000, 1 * MiB);
288
289 /* 1MiB -> TSEG - DPR */
290 ram_from_to(dev, index++, 1 * MiB, mc_values[TSEG_REG] - dpr.size * MiB);
291
292 /* TSEG - DPR -> BGSM */
293 reserved_ram_from_to(dev, index++, mc_values[TSEG_REG] - dpr.size * MiB,
294 mc_values[BGSM_REG]);
295
296 /* BGSM -> TOLUD. If the IGD is disabled, BGSM can equal TOLUD. */
297 if (mc_values[BGSM_REG] != mc_values[TOLUD_REG])
298 mmio_from_to(dev, index++, mc_values[BGSM_REG], mc_values[TOLUD_REG]);
299
300 /* 4GiB -> TOUUD */
301 upper_ram_end(dev, index++, mc_values[TOUUD_REG]);
Angel Pons1db5bc72020-01-15 00:49:03 +0100302
Matt DeVilliera51e3792018-03-04 01:44:15 -0600303 *resource_cnt = index;
Aaron Durbinc12ef972012-12-18 14:22:49 -0600304}
305
Elyes HAOUAS77f7a6e2018-05-09 17:47:59 +0200306static void mc_read_resources(struct device *dev)
Aaron Durbinc12ef972012-12-18 14:22:49 -0600307{
Matt DeVilliera51e3792018-03-04 01:44:15 -0600308 int index = 0;
Angel Pons1db5bc72020-01-15 00:49:03 +0100309 const bool vtd_capable = !(pci_read_config32(dev, CAPID0_A) & VTD_DISABLE);
Matt DeVilliera51e3792018-03-04 01:44:15 -0600310
Angel Pons1db5bc72020-01-15 00:49:03 +0100311 /* Read standard PCI resources */
Aaron Durbinc12ef972012-12-18 14:22:49 -0600312 pci_dev_read_resources(dev);
313
Angel Pons1db5bc72020-01-15 00:49:03 +0100314 /* Add all fixed MMIO resources */
Aaron Durbinc12ef972012-12-18 14:22:49 -0600315 mc_add_fixed_mmio_resources(dev);
316
Angel Pons1db5bc72020-01-15 00:49:03 +0100317 /* Add VT-d MMIO resources, if capable */
Matt DeVilliera51e3792018-03-04 01:44:15 -0600318 if (vtd_capable) {
Arthur Heymansa5543ae2023-07-05 09:22:39 +0200319 mmio_range(dev, index++, GFXVT_BASE_ADDRESS, GFXVT_BASE_SIZE);
320 mmio_range(dev, index++, VTVC0_BASE_ADDRESS, VTVC0_BASE_SIZE);
Matt DeVilliera51e3792018-03-04 01:44:15 -0600321 }
322
Angel Pons1db5bc72020-01-15 00:49:03 +0100323 /* Calculate and add DRAM resources */
Matt DeVilliera51e3792018-03-04 01:44:15 -0600324 mc_add_dram_resources(dev, &index);
Aaron Durbin76c37002012-10-30 09:03:43 -0500325}
326
Tristan Corrickbc896cd2018-12-17 22:09:50 +1300327/*
Angel Pons1db5bc72020-01-15 00:49:03 +0100328 * The Mini-HD audio device is disabled whenever the IGD is. This is because it provides
329 * audio over the integrated graphics port(s), which requires the IGD to be functional.
Tristan Corrickbc896cd2018-12-17 22:09:50 +1300330 */
331static void disable_devices(void)
332{
333 static const struct {
334 const unsigned int devfn;
335 const u32 mask;
336 const char *const name;
337 } nb_devs[] = {
338 { PCI_DEVFN(1, 2), DEVEN_D1F2EN, "PEG12" },
339 { PCI_DEVFN(1, 1), DEVEN_D1F1EN, "PEG11" },
340 { PCI_DEVFN(1, 0), DEVEN_D1F0EN, "PEG10" },
341 { PCI_DEVFN(2, 0), DEVEN_D2EN | DEVEN_D3EN, "IGD" },
342 { PCI_DEVFN(3, 0), DEVEN_D3EN, "Mini-HD audio" },
343 { PCI_DEVFN(4, 0), DEVEN_D4EN, "\"device 4\"" },
344 { PCI_DEVFN(7, 0), DEVEN_D7EN, "\"device 7\"" },
345 };
346
Angel Pons1db5bc72020-01-15 00:49:03 +0100347 struct device *host_dev = pcidev_on_root(0, 0);
Tristan Corrickbc896cd2018-12-17 22:09:50 +1300348 u32 deven;
349 size_t i;
350
351 if (!host_dev)
352 return;
353
354 deven = pci_read_config32(host_dev, DEVEN);
355
356 for (i = 0; i < ARRAY_SIZE(nb_devs); i++) {
Kyösti Mälkkie7377552018-06-21 16:20:55 +0300357 struct device *dev = pcidev_path_on_root(nb_devs[i].devfn);
Tristan Corrickbc896cd2018-12-17 22:09:50 +1300358 if (!dev || !dev->enabled) {
359 printk(BIOS_DEBUG, "Disabling %s.\n", nb_devs[i].name);
360 deven &= ~nb_devs[i].mask;
361 }
362 }
363
364 pci_write_config32(host_dev, DEVEN, deven);
365}
366
Angel Pons028b8e42020-07-24 14:03:29 +0200367static void init_egress(void)
368{
369 /* VC0: Enable, ID0, TC0 */
Angel Pons2e397ae2021-03-26 12:35:57 +0100370 epbar_write32(EPVC0RCTL, 1 << 31 | 0 << 24 | 1 << 0);
Angel Pons028b8e42020-07-24 14:03:29 +0200371
372 /* No Low Priority Extended VCs, one Extended VC */
Angel Pons2e397ae2021-03-26 12:35:57 +0100373 epbar_write32(EPPVCCAP1, 0 << 4 | 1 << 0);
Angel Pons028b8e42020-07-24 14:03:29 +0200374
375 /* VC1: Enable, ID1, TC1 */
Angel Pons2e397ae2021-03-26 12:35:57 +0100376 epbar_write32(EPVC1RCTL, 1 << 31 | 1 << 24 | 1 << 1);
Angel Pons028b8e42020-07-24 14:03:29 +0200377
378 /* Poll the VC1 Negotiation Pending bit */
Angel Pons2e397ae2021-03-26 12:35:57 +0100379 while ((epbar_read16(EPVC1RSTS) & (1 << 1)) != 0)
Angel Pons028b8e42020-07-24 14:03:29 +0200380 ;
381}
382
Angel Pons598ec6a2020-07-23 02:37:12 +0200383static void northbridge_dmi_init(void)
384{
385 const bool is_haswell_h = !CONFIG(INTEL_LYNXPOINT_LP);
386
Angel Pons598ec6a2020-07-23 02:37:12 +0200387 /* Steps prior to DMI ASPM */
388 if (is_haswell_h) {
389 /* Configure DMI De-Emphasis */
Angel Pons2e397ae2021-03-26 12:35:57 +0100390 dmibar_setbits16(DMILCTL2, 1 << 6); /* 0b: -6.0 dB, 1b: -3.5 dB */
Angel Pons598ec6a2020-07-23 02:37:12 +0200391
Angel Pons2e397ae2021-03-26 12:35:57 +0100392 dmibar_setbits32(DMIL0SLAT, 1 << 31);
393 dmibar_setbits32(DMILLTC, 1 << 29);
Angel Pons598ec6a2020-07-23 02:37:12 +0200394
Angel Pons2e397ae2021-03-26 12:35:57 +0100395 dmibar_clrsetbits32(DMI_AFE_PM_TMR, 0x1f, 0x13);
Angel Pons598ec6a2020-07-23 02:37:12 +0200396 }
397
398 /* Clear error status bits */
Angel Pons2e397ae2021-03-26 12:35:57 +0100399 dmibar_write32(DMIUESTS, 0xffffffff);
400 dmibar_write32(DMICESTS, 0xffffffff);
Angel Pons598ec6a2020-07-23 02:37:12 +0200401
402 if (is_haswell_h) {
403 /* Enable ASPM L0s and L1 on SA link, should happen before PCH link */
Angel Pons2e397ae2021-03-26 12:35:57 +0100404 dmibar_setbits16(DMILCTL, 1 << 1 | 1 << 0);
Angel Pons598ec6a2020-07-23 02:37:12 +0200405 }
406}
407
Angel Pons76b8bc22020-07-23 02:32:27 +0200408static void northbridge_topology_init(void)
409{
410 const u32 eple_a[3] = { EPLE2A, EPLE3A, EPLE4A };
411 const u32 eple_d[3] = { EPLE2D, EPLE3D, EPLE4D };
412
Angel Pons76b8bc22020-07-23 02:32:27 +0200413 /* Set the CID1 Egress Port 0 Root Topology */
Angel Pons2e397ae2021-03-26 12:35:57 +0100414 epbar_clrsetbits32(EPESD, 0xff << 16, 1 << 16);
Angel Pons76b8bc22020-07-23 02:32:27 +0200415
Angel Pons0acfe222021-03-26 13:08:23 +0100416 epbar_clrsetbits32(EPLE1D, 0xff << 16, 1 | 1 << 16);
Angel Pons2e397ae2021-03-26 12:35:57 +0100417 epbar_write32(EPLE1A, CONFIG_FIXED_DMIBAR_MMIO_BASE);
418 epbar_write32(EPLE1A + 4, 0);
Angel Pons76b8bc22020-07-23 02:32:27 +0200419
420 for (unsigned int i = 0; i <= 2; i++) {
421 const struct device *const dev = pcidev_on_root(1, i);
422
423 if (!dev || !dev->enabled)
424 continue;
425
Angel Pons2e397ae2021-03-26 12:35:57 +0100426 epbar_write32(eple_a[i], (u32)PCI_DEV(0, 1, i));
427 epbar_write32(eple_a[i] + 4, 0);
Angel Pons76b8bc22020-07-23 02:32:27 +0200428
Angel Pons0acfe222021-03-26 13:08:23 +0100429 epbar_clrsetbits32(eple_d[i], 0xff << 16, 1 | 1 << 16);
Angel Pons76b8bc22020-07-23 02:32:27 +0200430
431 pci_update_config32(dev, PEG_ESD, ~(0xff << 16), (1 << 16));
Angel Ponsf95b9b42021-01-20 01:10:48 +0100432 pci_write_config32(dev, PEG_LE1A, CONFIG_FIXED_EPBAR_MMIO_BASE);
Angel Pons76b8bc22020-07-23 02:32:27 +0200433 pci_write_config32(dev, PEG_LE1A + 4, 0);
434 pci_update_config32(dev, PEG_LE1D, ~(0xff << 16), (1 << 16) | 1);
435
436 /* Read and write to lock register */
437 pci_or_config32(dev, PEG_DCAP2, 0);
438 }
439
440 /* Set the CID1 DMI Port Root Topology */
Angel Pons2e397ae2021-03-26 12:35:57 +0100441 dmibar_clrsetbits32(DMIESD, 0xff << 16, 1 << 16);
Angel Pons76b8bc22020-07-23 02:32:27 +0200442
Angel Pons0acfe222021-03-26 13:08:23 +0100443 dmibar_clrsetbits32(DMILE1D, 0xffff << 16, 1 | 2 << 16);
Angel Pons2e397ae2021-03-26 12:35:57 +0100444 dmibar_write32(DMILE1A, CONFIG_FIXED_RCBA_MMIO_BASE);
445 dmibar_write32(DMILE1A + 4, 0);
Angel Pons76b8bc22020-07-23 02:32:27 +0200446
Angel Pons2e397ae2021-03-26 12:35:57 +0100447 dmibar_write32(DMILE2A, CONFIG_FIXED_EPBAR_MMIO_BASE);
448 dmibar_write32(DMILE2A + 4, 0);
Angel Pons0acfe222021-03-26 13:08:23 +0100449 dmibar_clrsetbits32(DMILE2D, 0xff << 16, 1 | 1 << 16);
Angel Pons76b8bc22020-07-23 02:32:27 +0200450
451 /* Program RO and Write-Once Registers */
Angel Pons2e397ae2021-03-26 12:35:57 +0100452 dmibar_setbits32(DMIPVCCAP1, 0);
453 dmibar_setbits32(DMILCAP, 0);
Angel Pons76b8bc22020-07-23 02:32:27 +0200454}
455
Aaron Durbin76c37002012-10-30 09:03:43 -0500456static void northbridge_init(struct device *dev)
457{
Angel Pons028b8e42020-07-24 14:03:29 +0200458 init_egress();
Angel Pons598ec6a2020-07-23 02:37:12 +0200459 northbridge_dmi_init();
Angel Pons76b8bc22020-07-23 02:32:27 +0200460 northbridge_topology_init();
Angel Pons598ec6a2020-07-23 02:37:12 +0200461
Angel Pons1db5bc72020-01-15 00:49:03 +0100462 /* Enable Power Aware Interrupt Routing. */
Angel Pons2e397ae2021-03-26 12:35:57 +0100463 mchbar_clrsetbits8(INTRDIRCTL, 0x7, 0x4); /* Clear 2:0, set Fixed Priority */
Aaron Durbin76c37002012-10-30 09:03:43 -0500464
Tristan Corrickbc896cd2018-12-17 22:09:50 +1300465 disable_devices();
466
Aaron Durbin76c37002012-10-30 09:03:43 -0500467 /*
Angel Pons1db5bc72020-01-15 00:49:03 +0100468 * Set bits 0 + 1 of BIOS_RESET_CPL to indicate to the CPU
469 * that BIOS has initialized memory and power management.
Aaron Durbin76c37002012-10-30 09:03:43 -0500470 */
Angel Pons2e397ae2021-03-26 12:35:57 +0100471 mchbar_setbits8(BIOS_RESET_CPL, 3);
Aaron Durbin76c37002012-10-30 09:03:43 -0500472 printk(BIOS_DEBUG, "Set BIOS_RESET_CPL\n");
473
Angel Pons1db5bc72020-01-15 00:49:03 +0100474 /* Configure turbo power limits 1ms after reset complete bit. */
Aaron Durbin76c37002012-10-30 09:03:43 -0500475 mdelay(1);
476 set_power_limits(28);
Aaron Durbin76c37002012-10-30 09:03:43 -0500477}
478
Angel Pons34be1be2021-03-01 22:57:21 +0100479static void northbridge_final(struct device *dev)
480{
481 pci_or_config16(dev, GGC, 1 << 0);
482 pci_or_config32(dev, DPR, 1 << 0);
483 pci_or_config32(dev, MESEG_LIMIT, 1 << 10);
484 pci_or_config32(dev, REMAPBASE, 1 << 0);
485 pci_or_config32(dev, REMAPLIMIT, 1 << 0);
486 pci_or_config32(dev, TOM, 1 << 0);
487 pci_or_config32(dev, TOUUD, 1 << 0);
488 pci_or_config32(dev, BDSM, 1 << 0);
489 pci_or_config32(dev, BGSM, 1 << 0);
490 pci_or_config32(dev, TSEG, 1 << 0);
491 pci_or_config32(dev, TOLUD, 1 << 0);
492
493 /* Memory Controller Lockdown */
Angel Pons2e397ae2021-03-26 12:35:57 +0100494 mchbar_setbits32(MC_LOCK, 0x8f);
Angel Pons34be1be2021-03-01 22:57:21 +0100495
Angel Pons2e397ae2021-03-26 12:35:57 +0100496 mchbar_setbits32(MMIO_PAVP_MSG, 1 << 0); /* PAVP */
497 mchbar_setbits32(PCU_DDR_PTM_CTL, 1 << 5); /* DDR PTM */
498 mchbar_setbits32(DMIVCLIM, 1 << 31);
499 mchbar_setbits32(CRDTLCK, 1 << 0);
500 mchbar_setbits32(MCARBLCK, 1 << 0);
501 mchbar_setbits32(REQLIM, 1 << 31);
502 mchbar_setbits32(UMAGFXCTL, 1 << 0); /* UMA GFX */
503 mchbar_setbits32(VTDTRKLCK, 1 << 0); /* VTDTRK */
Angel Pons34be1be2021-03-01 22:57:21 +0100504
505 /* Read+write the following */
Angel Pons2e397ae2021-03-26 12:35:57 +0100506 mchbar_setbits32(VDMBDFBARKVM, 0);
507 mchbar_setbits32(VDMBDFBARPAVP, 0);
508 mchbar_setbits32(HDAUDRID, 0);
Angel Pons34be1be2021-03-01 22:57:21 +0100509}
510
Aaron Durbin76c37002012-10-30 09:03:43 -0500511static struct device_operations mc_ops = {
Angel Pons30c5e602021-03-01 22:59:00 +0100512 .read_resources = mc_read_resources,
513 .set_resources = pci_dev_set_resources,
514 .enable_resources = pci_dev_enable_resources,
515 .init = northbridge_init,
Angel Pons34be1be2021-03-01 22:57:21 +0100516 .final = northbridge_final,
Angel Pons30c5e602021-03-01 22:59:00 +0100517 .ops_pci = &pci_dev_ops_pci,
Aaron Durbin76c37002012-10-30 09:03:43 -0500518};
519
Tristan Corrickd3856242018-11-01 03:03:29 +1300520static const unsigned short mc_pci_device_ids[] = {
521 0x0c00, /* Desktop */
522 0x0c04, /* Mobile */
523 0x0a04, /* ULT */
Iru Cai0766c982018-12-17 13:21:36 +0800524 0x0c08, /* Server */
Iru Cai12a13e12020-05-22 22:57:03 +0800525 0x0d00, /* Crystal Well Desktop */
526 0x0d04, /* Crystal Well Mobile */
527 0x0d08, /* Crystal Well Server (by extrapolation) */
Tristan Corrickd3856242018-11-01 03:03:29 +1300528 0
Tristan Corrick48170122018-10-31 02:21:41 +1300529};
530
Tristan Corrickd3856242018-11-01 03:03:29 +1300531static const struct pci_driver mc_driver_hsw __pci_driver = {
532 .ops = &mc_ops,
Felix Singer43b7f412022-03-07 04:34:52 +0100533 .vendor = PCI_VID_INTEL,
Tristan Corrickd3856242018-11-01 03:03:29 +1300534 .devices = mc_pci_device_ids,
Duncan Lauriedf7be712012-12-17 11:22:57 -0800535};
536
Arthur Heymans600fa262022-11-07 08:04:59 +0100537struct device_operations haswell_cpu_bus_ops = {
Nico Huber2f8ba692020-04-05 14:05:24 +0200538 .read_resources = noop_read_resources,
539 .set_resources = noop_set_resources,
Kyösti Mälkkib3267e02019-08-13 16:44:04 +0300540 .init = mp_cpu_bus_init,
Arthur Heymansdd96ab62021-11-15 20:11:12 +0100541 .acpi_fill_ssdt = generate_cpu_entries,
Aaron Durbin76c37002012-10-30 09:03:43 -0500542};
543
Aaron Durbin76c37002012-10-30 09:03:43 -0500544struct chip_operations northbridge_intel_haswell_ops = {
Nicholas Sudsgaardbfb11be2024-01-30 09:53:46 +0900545 .name = "Intel Haswell integrated Northbridge",
Aaron Durbin76c37002012-10-30 09:03:43 -0500546};