blob: bcb2a0b9ba1810e6fd44f7ca743223eb19b4a23f [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
Fabio Aiuto61ed4ef2022-09-30 14:55:53 +020026 if (!is_pci_dev_on_bus(dev, 0))
Tristan Corrickf3127d42018-10-31 02:25:54 +130027 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
Arthur Heymans600fa262022-11-07 08:04:59 +010037struct device_operations haswell_pci_domain_ops = {
Angel Pons1db5bc72020-01-15 00:49:03 +010038 .read_resources = pci_domain_read_resources,
39 .set_resources = pci_domain_set_resources,
Angel Pons1db5bc72020-01-15 00:49:03 +010040 .scan_bus = pci_domain_scan_bus,
41 .acpi_name = northbridge_acpi_name,
Matt DeVillier85d98d92018-03-04 01:41:23 -060042 .write_acpi_tables = northbridge_write_acpi_tables,
Aaron Durbin76c37002012-10-30 09:03:43 -050043};
44
Elyes HAOUAS77f7a6e2018-05-09 17:47:59 +020045static int get_bar(struct device *dev, unsigned int index, u32 *base, u32 *len)
Aaron Durbin76c37002012-10-30 09:03:43 -050046{
Angel Pons1db5bc72020-01-15 00:49:03 +010047 u32 bar = pci_read_config32(dev, index);
Aaron Durbin76c37002012-10-30 09:03:43 -050048
Angel Pons1db5bc72020-01-15 00:49:03 +010049 /* If not enabled don't report it */
Aaron Durbinc12ef972012-12-18 14:22:49 -060050 if (!(bar & 0x1))
51 return 0;
Aaron Durbin76c37002012-10-30 09:03:43 -050052
Angel Pons1db5bc72020-01-15 00:49:03 +010053 /* Knock down the enable bit */
Aaron Durbinc12ef972012-12-18 14:22:49 -060054 *base = bar & ~1;
55
56 return 1;
Aaron Durbin76c37002012-10-30 09:03:43 -050057}
58
Angel Pons1db5bc72020-01-15 00:49:03 +010059/*
60 * There are special BARs that actually are programmed in the MCHBAR. These Intel special
61 * features, but they do consume resources that need to be accounted for.
62 */
63static int get_bar_in_mchbar(struct device *dev, unsigned int index, u32 *base, u32 *len)
Aaron Durbin76c37002012-10-30 09:03:43 -050064{
Angel Pons2e397ae2021-03-26 12:35:57 +010065 u32 bar = mchbar_read32(index);
Aaron Durbin76c37002012-10-30 09:03:43 -050066
Angel Pons1db5bc72020-01-15 00:49:03 +010067 /* If not enabled don't report it */
Aaron Durbinc12ef972012-12-18 14:22:49 -060068 if (!(bar & 0x1))
69 return 0;
70
Angel Pons1db5bc72020-01-15 00:49:03 +010071 /* Knock down the enable bit */
Aaron Durbinc12ef972012-12-18 14:22:49 -060072 *base = bar & ~1;
73
74 return 1;
75}
76
77struct fixed_mmio_descriptor {
78 unsigned int index;
79 u32 size;
Angel Pons1db5bc72020-01-15 00:49:03 +010080 int (*get_resource)(struct device *dev, unsigned int index, u32 *base, u32 *size);
Aaron Durbinc12ef972012-12-18 14:22:49 -060081 const char *description;
82};
83
Aaron Durbinc12ef972012-12-18 14:22:49 -060084struct fixed_mmio_descriptor mc_fixed_resources[] = {
Angel Pons3eeefba2021-06-14 09:23:40 +020085 { MCHBAR, MCH_BASE_SIZE, get_bar, "MCHBAR" },
86 { DMIBAR, DMI_BASE_SIZE, get_bar, "DMIBAR" },
87 { EPBAR, EP_BASE_SIZE, get_bar, "EPBAR" },
88 { GDXCBAR, GDXC_BASE_SIZE, get_bar_in_mchbar, "GDXCBAR" },
89 { EDRAMBAR, EDRAM_BASE_SIZE, get_bar_in_mchbar, "EDRAMBAR" },
Aaron Durbinc12ef972012-12-18 14:22:49 -060090};
Aaron Durbinc12ef972012-12-18 14:22:49 -060091
Angel Pons1db5bc72020-01-15 00:49:03 +010092/* Add all known fixed MMIO ranges that hang off the host bridge/memory controller device. */
Elyes HAOUAS77f7a6e2018-05-09 17:47:59 +020093static void mc_add_fixed_mmio_resources(struct device *dev)
Aaron Durbinc12ef972012-12-18 14:22:49 -060094{
95 int i;
96
97 for (i = 0; i < ARRAY_SIZE(mc_fixed_resources); i++) {
98 u32 base;
99 u32 size;
100 struct resource *resource;
101 unsigned int index;
102
103 size = mc_fixed_resources[i].size;
104 index = mc_fixed_resources[i].index;
Angel Pons1db5bc72020-01-15 00:49:03 +0100105 if (!mc_fixed_resources[i].get_resource(dev, index, &base, &size))
Aaron Durbinc12ef972012-12-18 14:22:49 -0600106 continue;
107
108 resource = new_resource(dev, mc_fixed_resources[i].index);
Kyösti Mälkki4e4edf72022-05-26 19:03:55 +0300109 resource->base = base;
110 resource->size = size;
Angel Pons1db5bc72020-01-15 00:49:03 +0100111 resource->flags = IORESOURCE_MEM | IORESOURCE_FIXED | IORESOURCE_STORED |
112 IORESOURCE_RESERVE | IORESOURCE_ASSIGNED;
113
Aaron Durbinc12ef972012-12-18 14:22:49 -0600114 printk(BIOS_DEBUG, "%s: Adding %s @ %x 0x%08lx-0x%08lx.\n",
115 __func__, mc_fixed_resources[i].description, index,
116 (unsigned long)base, (unsigned long)(base + size - 1));
117 }
Angel Pons32770f82021-01-20 15:03:30 +0100118
119 mmconf_resource(dev, PCIEXBAR);
Aaron Durbinc12ef972012-12-18 14:22:49 -0600120}
121
Angel Pons4b290b72020-09-24 23:38:53 +0200122/*
123 * Host Memory Map:
Aaron Durbinc12ef972012-12-18 14:22:49 -0600124 *
125 * +--------------------------+ TOUUD
126 * | |
127 * +--------------------------+ 4GiB
128 * | PCI Address Space |
129 * +--------------------------+ TOLUD (also maps into MC address space)
130 * | iGD |
131 * +--------------------------+ BDSM
132 * | GTT |
133 * +--------------------------+ BGSM
134 * | TSEG |
135 * +--------------------------+ TSEGMB
Angel Pons4b290b72020-09-24 23:38:53 +0200136 * | DPR |
137 * +--------------------------+ (DPR top - DPR size)
Aaron Durbinc12ef972012-12-18 14:22:49 -0600138 * | Usage DRAM |
139 * +--------------------------+ 0
140 *
Angel Pons1db5bc72020-01-15 00:49:03 +0100141 * Some of the base registers above can be equal, making the size of the regions within 0.
142 * This is because the memory controller internally subtracts the base registers from each
143 * other to determine sizes of the regions. In other words, the memory map regions are always
144 * in a fixed order, no matter what sizes they have.
Aaron Durbinc12ef972012-12-18 14:22:49 -0600145 */
146
147struct map_entry {
148 int reg;
149 int is_64_bit;
150 int is_limit;
151 const char *description;
152};
153
Angel Pons1db5bc72020-01-15 00:49:03 +0100154static void read_map_entry(struct device *dev, struct map_entry *entry, uint64_t *result)
Aaron Durbinc12ef972012-12-18 14:22:49 -0600155{
156 uint64_t value;
157 uint64_t mask;
158
Angel Pons1db5bc72020-01-15 00:49:03 +0100159 /* All registers have a 1MiB granularity */
160 mask = ((1ULL << 20) - 1);
Aaron Durbinc12ef972012-12-18 14:22:49 -0600161 mask = ~mask;
162
163 value = 0;
164
165 if (entry->is_64_bit) {
166 value = pci_read_config32(dev, entry->reg + 4);
167 value <<= 32;
Aaron Durbin76c37002012-10-30 09:03:43 -0500168 }
169
Aaron Durbinc12ef972012-12-18 14:22:49 -0600170 value |= pci_read_config32(dev, entry->reg);
171 value &= mask;
172
173 if (entry->is_limit)
174 value |= ~mask;
175
176 *result = value;
177}
178
179#define MAP_ENTRY(reg_, is_64_, is_limit_, desc_) \
180 { \
181 .reg = reg_, \
182 .is_64_bit = is_64_, \
183 .is_limit = is_limit_, \
184 .description = desc_, \
185 }
186
Angel Pons1db5bc72020-01-15 00:49:03 +0100187#define MAP_ENTRY_BASE_32(reg_, desc_) MAP_ENTRY(reg_, 0, 0, desc_)
188#define MAP_ENTRY_BASE_64(reg_, desc_) MAP_ENTRY(reg_, 1, 0, desc_)
189#define MAP_ENTRY_LIMIT_64(reg_, desc_) MAP_ENTRY(reg_, 1, 1, desc_)
Aaron Durbinc12ef972012-12-18 14:22:49 -0600190
191enum {
192 TOM_REG,
193 TOUUD_REG,
194 MESEG_BASE_REG,
195 MESEG_LIMIT_REG,
196 REMAP_BASE_REG,
197 REMAP_LIMIT_REG,
198 TOLUD_REG,
199 BGSM_REG,
200 BDSM_REG,
201 TSEG_REG,
Angel Pons1db5bc72020-01-15 00:49:03 +0100202 /* Must be last */
203 NUM_MAP_ENTRIES,
Aaron Durbinc12ef972012-12-18 14:22:49 -0600204};
205
206static struct map_entry memory_map[NUM_MAP_ENTRIES] = {
Angel Pons1db5bc72020-01-15 00:49:03 +0100207 [TOM_REG] = MAP_ENTRY_BASE_64(TOM, "TOM"),
208 [TOUUD_REG] = MAP_ENTRY_BASE_64(TOUUD, "TOUUD"),
209 [MESEG_BASE_REG] = MAP_ENTRY_BASE_64(MESEG_BASE, "MESEG_BASE"),
Aaron Durbinc12ef972012-12-18 14:22:49 -0600210 [MESEG_LIMIT_REG] = MAP_ENTRY_LIMIT_64(MESEG_LIMIT, "MESEG_LIMIT"),
Angel Pons1db5bc72020-01-15 00:49:03 +0100211 [REMAP_BASE_REG] = MAP_ENTRY_BASE_64(REMAPBASE, "REMAP_BASE"),
Aaron Durbinc12ef972012-12-18 14:22:49 -0600212 [REMAP_LIMIT_REG] = MAP_ENTRY_LIMIT_64(REMAPLIMIT, "REMAP_LIMIT"),
Angel Pons1db5bc72020-01-15 00:49:03 +0100213 [TOLUD_REG] = MAP_ENTRY_BASE_32(TOLUD, "TOLUD"),
214 [BDSM_REG] = MAP_ENTRY_BASE_32(BDSM, "BDSM"),
215 [BGSM_REG] = MAP_ENTRY_BASE_32(BGSM, "BGSM"),
Angel Ponsd8abb262020-05-07 00:48:35 +0200216 [TSEG_REG] = MAP_ENTRY_BASE_32(TSEG, "TSEGMB"),
Aaron Durbinc12ef972012-12-18 14:22:49 -0600217};
218
Elyes HAOUAS77f7a6e2018-05-09 17:47:59 +0200219static void mc_read_map_entries(struct device *dev, uint64_t *values)
Aaron Durbinc12ef972012-12-18 14:22:49 -0600220{
221 int i;
222 for (i = 0; i < NUM_MAP_ENTRIES; i++) {
223 read_map_entry(dev, &memory_map[i], &values[i]);
224 }
225}
226
Elyes HAOUAS77f7a6e2018-05-09 17:47:59 +0200227static void mc_report_map_entries(struct device *dev, uint64_t *values)
Aaron Durbinc12ef972012-12-18 14:22:49 -0600228{
229 int i;
230 for (i = 0; i < NUM_MAP_ENTRIES; i++) {
231 printk(BIOS_DEBUG, "MC MAP: %s: 0x%llx\n",
232 memory_map[i].description, values[i]);
233 }
Angel Pons1db5bc72020-01-15 00:49:03 +0100234 /* One can validate the BDSM and BGSM against the GGC */
Aaron Durbinc12ef972012-12-18 14:22:49 -0600235 printk(BIOS_DEBUG, "MC MAP: GGC: 0x%x\n", pci_read_config16(dev, GGC));
236}
237
Elyes HAOUAS77f7a6e2018-05-09 17:47:59 +0200238static void mc_add_dram_resources(struct device *dev, int *resource_cnt)
Aaron Durbinc12ef972012-12-18 14:22:49 -0600239{
Kyösti Mälkki0a18d642021-06-28 21:43:31 +0300240 unsigned long base_k, size_k, index;
Aaron Durbinc12ef972012-12-18 14:22:49 -0600241 struct resource *resource;
242 uint64_t mc_values[NUM_MAP_ENTRIES];
243
Angel Pons1db5bc72020-01-15 00:49:03 +0100244 /* Read in the MAP registers and report their values */
Aaron Durbinc12ef972012-12-18 14:22:49 -0600245 mc_read_map_entries(dev, &mc_values[0]);
246 mc_report_map_entries(dev, &mc_values[0]);
247
Angel Pons5d7c3a42020-10-29 21:18:14 +0100248 /*
249 * DMA Protected Range can be reserved below TSEG for PCODE patch
Paul Menzel7f5a1ee2021-12-15 10:47:05 +0100250 * or TXT/Boot Guard related data. Rather than report a base address,
Angel Pons5d7c3a42020-10-29 21:18:14 +0100251 * the DPR register reports the TOP of the region, which is the same
252 * as TSEG base. The region size is reported in MiB in bits 11:4.
253 */
Angel Pons4b290b72020-09-24 23:38:53 +0200254 const union dpr_register dpr = {
255 .raw = pci_read_config32(dev, DPR),
256 };
257 printk(BIOS_DEBUG, "MC MAP: DPR: 0x%x\n", dpr.raw);
258
Aaron Durbinc12ef972012-12-18 14:22:49 -0600259 /*
Aaron Durbin1fef1f52012-12-19 17:15:43 -0600260 * These are the host memory ranges that should be added:
Angel Pons1db5bc72020-01-15 00:49:03 +0100261 * - 0 -> 0xa0000: cacheable
262 * - 0xc0000 -> TSEG: cacheable
263 * - TSEG -> BGSM: cacheable with standard MTRRs and reserved
264 * - BGSM -> TOLUD: not cacheable with standard MTRRs and reserved
265 * - 4GiB -> TOUUD: cacheable
Aaron Durbinc12ef972012-12-18 14:22:49 -0600266 *
Angel Pons1db5bc72020-01-15 00:49:03 +0100267 * The default SMRAM space is reserved so that the range doesn't have to be saved
268 * during S3 Resume. Once marked reserved the OS cannot use the memory. This is a
269 * bit of an odd place to reserve the region, but the CPU devices don't have
270 * dev_ops->read_resources() called on them.
Aaron Durbin1fef1f52012-12-19 17:15:43 -0600271 *
Angel Pons1db5bc72020-01-15 00:49:03 +0100272 * The range 0xa0000 -> 0xc0000 does not have any resources associated with it to
273 * handle legacy VGA memory. If this range is not omitted the mtrr code will setup
274 * the area as cacheable, causing VGA access to not work.
Aaron Durbinc12ef972012-12-18 14:22:49 -0600275 *
Angel Pons1db5bc72020-01-15 00:49:03 +0100276 * The TSEG region is mapped as cacheable so that one can perform SMRAM relocation
277 * faster. Once the SMRR is enabled, the SMRR takes precedence over the existing
278 * MTRRs covering this region.
Aaron Durbine6c3b1d2012-12-21 21:22:07 -0600279 *
Angel Pons1db5bc72020-01-15 00:49:03 +0100280 * It should be noted that cacheable entry types need to be added in order. The reason
281 * is that the current MTRR code assumes this and falls over itself if it isn't.
Aaron Durbin1fef1f52012-12-19 17:15:43 -0600282 *
Angel Pons1db5bc72020-01-15 00:49:03 +0100283 * The resource index starts low and should not meet or exceed PCI_BASE_ADDRESS_0.
Aaron Durbinc12ef972012-12-18 14:22:49 -0600284 */
Matt DeVilliera51e3792018-03-04 01:44:15 -0600285 index = *resource_cnt;
Aaron Durbinc12ef972012-12-18 14:22:49 -0600286
Aaron Durbin6a360042014-02-13 10:30:42 -0600287 /* 0 - > 0xa0000 */
Aaron Durbinc12ef972012-12-18 14:22:49 -0600288 base_k = 0;
Aaron Durbin1fef1f52012-12-19 17:15:43 -0600289 size_k = (0xa0000 >> 10) - base_k;
Kyösti Mälkki27d62992022-05-24 20:25:58 +0300290 ram_resource_kb(dev, index++, base_k, size_k);
Aaron Durbin1fef1f52012-12-19 17:15:43 -0600291
Angel Pons5d7c3a42020-10-29 21:18:14 +0100292 /* 0xc0000 -> TSEG - DPR */
Aaron Durbinc12ef972012-12-18 14:22:49 -0600293 base_k = 0xc0000 >> 10;
Angel Pons5d7c3a42020-10-29 21:18:14 +0100294 size_k = (unsigned long)(mc_values[TSEG_REG] >> 10) - base_k;
Tim Wawrzynczaka8f76902021-02-26 09:32:15 -0700295 size_k -= dpr.size * MiB / KiB;
Kyösti Mälkki27d62992022-05-24 20:25:58 +0300296 ram_resource_kb(dev, index++, base_k, size_k);
Aaron Durbinc12ef972012-12-18 14:22:49 -0600297
Angel Pons5d7c3a42020-10-29 21:18:14 +0100298 /* TSEG - DPR -> BGSM */
Aaron Durbinc12ef972012-12-18 14:22:49 -0600299 resource = new_resource(dev, index++);
Tim Wawrzynczaka8f76902021-02-26 09:32:15 -0700300 resource->base = mc_values[TSEG_REG] - dpr.size * MiB;
Kyösti Mälkki4e4edf72022-05-26 19:03:55 +0300301 resource->size = mc_values[BGSM_REG] - (mc_values[TSEG_REG] - dpr.size * MiB);
Angel Pons1db5bc72020-01-15 00:49:03 +0100302 resource->flags = IORESOURCE_MEM | IORESOURCE_FIXED | IORESOURCE_STORED |
303 IORESOURCE_RESERVE | IORESOURCE_ASSIGNED | IORESOURCE_CACHEABLE;
Aaron Durbine6c3b1d2012-12-21 21:22:07 -0600304
Angel Pons1db5bc72020-01-15 00:49:03 +0100305 /* BGSM -> TOLUD. If the IGD is disabled, BGSM can equal TOLUD. */
Tristan Corrickc5d367b2018-12-17 22:10:07 +1300306 if (mc_values[BGSM_REG] != mc_values[TOLUD_REG]) {
307 resource = new_resource(dev, index++);
308 resource->base = mc_values[BGSM_REG];
Kyösti Mälkki4e4edf72022-05-26 19:03:55 +0300309 resource->size = mc_values[TOLUD_REG] - mc_values[BGSM_REG];
Angel Pons1db5bc72020-01-15 00:49:03 +0100310 resource->flags = IORESOURCE_MEM | IORESOURCE_FIXED | IORESOURCE_STORED |
311 IORESOURCE_RESERVE | IORESOURCE_ASSIGNED;
Tristan Corrickc5d367b2018-12-17 22:10:07 +1300312 }
Aaron Durbinc12ef972012-12-18 14:22:49 -0600313
314 /* 4GiB -> TOUUD */
Kyösti Mälkki0a18d642021-06-28 21:43:31 +0300315 upper_ram_end(dev, index++, mc_values[TOUUD_REG]);
Aaron Durbinc12ef972012-12-18 14:22:49 -0600316
Aaron Durbinc9650762013-03-22 22:03:09 -0500317 /* Reserve everything between A segment and 1MB:
318 *
Angel Pons1db5bc72020-01-15 00:49:03 +0100319 * 0xa0000 - 0xbffff: Legacy VGA
Aaron Durbinc9650762013-03-22 22:03:09 -0500320 * 0xc0000 - 0xfffff: RAM
321 */
Kyösti Mälkki27d62992022-05-24 20:25:58 +0300322 mmio_resource_kb(dev, index++, (0xa0000 >> 10), (0xc0000 - 0xa0000) >> 10);
323 reserved_ram_resource_kb(dev, index++, (0xc0000 >> 10), (0x100000 - 0xc0000) >> 10);
Angel Pons1db5bc72020-01-15 00:49:03 +0100324
Matt DeVilliera51e3792018-03-04 01:44:15 -0600325 *resource_cnt = index;
Aaron Durbinc12ef972012-12-18 14:22:49 -0600326}
327
Elyes HAOUAS77f7a6e2018-05-09 17:47:59 +0200328static void mc_read_resources(struct device *dev)
Aaron Durbinc12ef972012-12-18 14:22:49 -0600329{
Matt DeVilliera51e3792018-03-04 01:44:15 -0600330 int index = 0;
Angel Pons1db5bc72020-01-15 00:49:03 +0100331 const bool vtd_capable = !(pci_read_config32(dev, CAPID0_A) & VTD_DISABLE);
Matt DeVilliera51e3792018-03-04 01:44:15 -0600332
Angel Pons1db5bc72020-01-15 00:49:03 +0100333 /* Read standard PCI resources */
Aaron Durbinc12ef972012-12-18 14:22:49 -0600334 pci_dev_read_resources(dev);
335
Angel Pons1db5bc72020-01-15 00:49:03 +0100336 /* Add all fixed MMIO resources */
Aaron Durbinc12ef972012-12-18 14:22:49 -0600337 mc_add_fixed_mmio_resources(dev);
338
Angel Pons1db5bc72020-01-15 00:49:03 +0100339 /* Add VT-d MMIO resources, if capable */
Matt DeVilliera51e3792018-03-04 01:44:15 -0600340 if (vtd_capable) {
Kyösti Mälkki27d62992022-05-24 20:25:58 +0300341 mmio_resource_kb(dev, index++, GFXVT_BASE_ADDRESS / KiB, GFXVT_BASE_SIZE / KiB);
342 mmio_resource_kb(dev, index++, VTVC0_BASE_ADDRESS / KiB, VTVC0_BASE_SIZE / KiB);
Matt DeVilliera51e3792018-03-04 01:44:15 -0600343 }
344
Angel Pons1db5bc72020-01-15 00:49:03 +0100345 /* Calculate and add DRAM resources */
Matt DeVilliera51e3792018-03-04 01:44:15 -0600346 mc_add_dram_resources(dev, &index);
Aaron Durbin76c37002012-10-30 09:03:43 -0500347}
348
Tristan Corrickbc896cd2018-12-17 22:09:50 +1300349/*
Angel Pons1db5bc72020-01-15 00:49:03 +0100350 * The Mini-HD audio device is disabled whenever the IGD is. This is because it provides
351 * audio over the integrated graphics port(s), which requires the IGD to be functional.
Tristan Corrickbc896cd2018-12-17 22:09:50 +1300352 */
353static void disable_devices(void)
354{
355 static const struct {
356 const unsigned int devfn;
357 const u32 mask;
358 const char *const name;
359 } nb_devs[] = {
360 { PCI_DEVFN(1, 2), DEVEN_D1F2EN, "PEG12" },
361 { PCI_DEVFN(1, 1), DEVEN_D1F1EN, "PEG11" },
362 { PCI_DEVFN(1, 0), DEVEN_D1F0EN, "PEG10" },
363 { PCI_DEVFN(2, 0), DEVEN_D2EN | DEVEN_D3EN, "IGD" },
364 { PCI_DEVFN(3, 0), DEVEN_D3EN, "Mini-HD audio" },
365 { PCI_DEVFN(4, 0), DEVEN_D4EN, "\"device 4\"" },
366 { PCI_DEVFN(7, 0), DEVEN_D7EN, "\"device 7\"" },
367 };
368
Angel Pons1db5bc72020-01-15 00:49:03 +0100369 struct device *host_dev = pcidev_on_root(0, 0);
Tristan Corrickbc896cd2018-12-17 22:09:50 +1300370 u32 deven;
371 size_t i;
372
373 if (!host_dev)
374 return;
375
376 deven = pci_read_config32(host_dev, DEVEN);
377
378 for (i = 0; i < ARRAY_SIZE(nb_devs); i++) {
Kyösti Mälkkie7377552018-06-21 16:20:55 +0300379 struct device *dev = pcidev_path_on_root(nb_devs[i].devfn);
Tristan Corrickbc896cd2018-12-17 22:09:50 +1300380 if (!dev || !dev->enabled) {
381 printk(BIOS_DEBUG, "Disabling %s.\n", nb_devs[i].name);
382 deven &= ~nb_devs[i].mask;
383 }
384 }
385
386 pci_write_config32(host_dev, DEVEN, deven);
387}
388
Angel Pons028b8e42020-07-24 14:03:29 +0200389static void init_egress(void)
390{
391 /* VC0: Enable, ID0, TC0 */
Angel Pons2e397ae2021-03-26 12:35:57 +0100392 epbar_write32(EPVC0RCTL, 1 << 31 | 0 << 24 | 1 << 0);
Angel Pons028b8e42020-07-24 14:03:29 +0200393
394 /* No Low Priority Extended VCs, one Extended VC */
Angel Pons2e397ae2021-03-26 12:35:57 +0100395 epbar_write32(EPPVCCAP1, 0 << 4 | 1 << 0);
Angel Pons028b8e42020-07-24 14:03:29 +0200396
397 /* VC1: Enable, ID1, TC1 */
Angel Pons2e397ae2021-03-26 12:35:57 +0100398 epbar_write32(EPVC1RCTL, 1 << 31 | 1 << 24 | 1 << 1);
Angel Pons028b8e42020-07-24 14:03:29 +0200399
400 /* Poll the VC1 Negotiation Pending bit */
Angel Pons2e397ae2021-03-26 12:35:57 +0100401 while ((epbar_read16(EPVC1RSTS) & (1 << 1)) != 0)
Angel Pons028b8e42020-07-24 14:03:29 +0200402 ;
403}
404
Angel Pons598ec6a2020-07-23 02:37:12 +0200405static void northbridge_dmi_init(void)
406{
407 const bool is_haswell_h = !CONFIG(INTEL_LYNXPOINT_LP);
408
Angel Pons598ec6a2020-07-23 02:37:12 +0200409 /* Steps prior to DMI ASPM */
410 if (is_haswell_h) {
411 /* Configure DMI De-Emphasis */
Angel Pons2e397ae2021-03-26 12:35:57 +0100412 dmibar_setbits16(DMILCTL2, 1 << 6); /* 0b: -6.0 dB, 1b: -3.5 dB */
Angel Pons598ec6a2020-07-23 02:37:12 +0200413
Angel Pons2e397ae2021-03-26 12:35:57 +0100414 dmibar_setbits32(DMIL0SLAT, 1 << 31);
415 dmibar_setbits32(DMILLTC, 1 << 29);
Angel Pons598ec6a2020-07-23 02:37:12 +0200416
Angel Pons2e397ae2021-03-26 12:35:57 +0100417 dmibar_clrsetbits32(DMI_AFE_PM_TMR, 0x1f, 0x13);
Angel Pons598ec6a2020-07-23 02:37:12 +0200418 }
419
420 /* Clear error status bits */
Angel Pons2e397ae2021-03-26 12:35:57 +0100421 dmibar_write32(DMIUESTS, 0xffffffff);
422 dmibar_write32(DMICESTS, 0xffffffff);
Angel Pons598ec6a2020-07-23 02:37:12 +0200423
424 if (is_haswell_h) {
425 /* Enable ASPM L0s and L1 on SA link, should happen before PCH link */
Angel Pons2e397ae2021-03-26 12:35:57 +0100426 dmibar_setbits16(DMILCTL, 1 << 1 | 1 << 0);
Angel Pons598ec6a2020-07-23 02:37:12 +0200427 }
428}
429
Angel Pons76b8bc22020-07-23 02:32:27 +0200430static void northbridge_topology_init(void)
431{
432 const u32 eple_a[3] = { EPLE2A, EPLE3A, EPLE4A };
433 const u32 eple_d[3] = { EPLE2D, EPLE3D, EPLE4D };
434
Angel Pons76b8bc22020-07-23 02:32:27 +0200435 /* Set the CID1 Egress Port 0 Root Topology */
Angel Pons2e397ae2021-03-26 12:35:57 +0100436 epbar_clrsetbits32(EPESD, 0xff << 16, 1 << 16);
Angel Pons76b8bc22020-07-23 02:32:27 +0200437
Angel Pons0acfe222021-03-26 13:08:23 +0100438 epbar_clrsetbits32(EPLE1D, 0xff << 16, 1 | 1 << 16);
Angel Pons2e397ae2021-03-26 12:35:57 +0100439 epbar_write32(EPLE1A, CONFIG_FIXED_DMIBAR_MMIO_BASE);
440 epbar_write32(EPLE1A + 4, 0);
Angel Pons76b8bc22020-07-23 02:32:27 +0200441
442 for (unsigned int i = 0; i <= 2; i++) {
443 const struct device *const dev = pcidev_on_root(1, i);
444
445 if (!dev || !dev->enabled)
446 continue;
447
Angel Pons2e397ae2021-03-26 12:35:57 +0100448 epbar_write32(eple_a[i], (u32)PCI_DEV(0, 1, i));
449 epbar_write32(eple_a[i] + 4, 0);
Angel Pons76b8bc22020-07-23 02:32:27 +0200450
Angel Pons0acfe222021-03-26 13:08:23 +0100451 epbar_clrsetbits32(eple_d[i], 0xff << 16, 1 | 1 << 16);
Angel Pons76b8bc22020-07-23 02:32:27 +0200452
453 pci_update_config32(dev, PEG_ESD, ~(0xff << 16), (1 << 16));
Angel Ponsf95b9b42021-01-20 01:10:48 +0100454 pci_write_config32(dev, PEG_LE1A, CONFIG_FIXED_EPBAR_MMIO_BASE);
Angel Pons76b8bc22020-07-23 02:32:27 +0200455 pci_write_config32(dev, PEG_LE1A + 4, 0);
456 pci_update_config32(dev, PEG_LE1D, ~(0xff << 16), (1 << 16) | 1);
457
458 /* Read and write to lock register */
459 pci_or_config32(dev, PEG_DCAP2, 0);
460 }
461
462 /* Set the CID1 DMI Port Root Topology */
Angel Pons2e397ae2021-03-26 12:35:57 +0100463 dmibar_clrsetbits32(DMIESD, 0xff << 16, 1 << 16);
Angel Pons76b8bc22020-07-23 02:32:27 +0200464
Angel Pons0acfe222021-03-26 13:08:23 +0100465 dmibar_clrsetbits32(DMILE1D, 0xffff << 16, 1 | 2 << 16);
Angel Pons2e397ae2021-03-26 12:35:57 +0100466 dmibar_write32(DMILE1A, CONFIG_FIXED_RCBA_MMIO_BASE);
467 dmibar_write32(DMILE1A + 4, 0);
Angel Pons76b8bc22020-07-23 02:32:27 +0200468
Angel Pons2e397ae2021-03-26 12:35:57 +0100469 dmibar_write32(DMILE2A, CONFIG_FIXED_EPBAR_MMIO_BASE);
470 dmibar_write32(DMILE2A + 4, 0);
Angel Pons0acfe222021-03-26 13:08:23 +0100471 dmibar_clrsetbits32(DMILE2D, 0xff << 16, 1 | 1 << 16);
Angel Pons76b8bc22020-07-23 02:32:27 +0200472
473 /* Program RO and Write-Once Registers */
Angel Pons2e397ae2021-03-26 12:35:57 +0100474 dmibar_setbits32(DMIPVCCAP1, 0);
475 dmibar_setbits32(DMILCAP, 0);
Angel Pons76b8bc22020-07-23 02:32:27 +0200476}
477
Aaron Durbin76c37002012-10-30 09:03:43 -0500478static void northbridge_init(struct device *dev)
479{
Angel Pons028b8e42020-07-24 14:03:29 +0200480 init_egress();
Angel Pons598ec6a2020-07-23 02:37:12 +0200481 northbridge_dmi_init();
Angel Pons76b8bc22020-07-23 02:32:27 +0200482 northbridge_topology_init();
Angel Pons598ec6a2020-07-23 02:37:12 +0200483
Angel Pons1db5bc72020-01-15 00:49:03 +0100484 /* Enable Power Aware Interrupt Routing. */
Angel Pons2e397ae2021-03-26 12:35:57 +0100485 mchbar_clrsetbits8(INTRDIRCTL, 0x7, 0x4); /* Clear 2:0, set Fixed Priority */
Aaron Durbin76c37002012-10-30 09:03:43 -0500486
Tristan Corrickbc896cd2018-12-17 22:09:50 +1300487 disable_devices();
488
Aaron Durbin76c37002012-10-30 09:03:43 -0500489 /*
Angel Pons1db5bc72020-01-15 00:49:03 +0100490 * Set bits 0 + 1 of BIOS_RESET_CPL to indicate to the CPU
491 * that BIOS has initialized memory and power management.
Aaron Durbin76c37002012-10-30 09:03:43 -0500492 */
Angel Pons2e397ae2021-03-26 12:35:57 +0100493 mchbar_setbits8(BIOS_RESET_CPL, 3);
Aaron Durbin76c37002012-10-30 09:03:43 -0500494 printk(BIOS_DEBUG, "Set BIOS_RESET_CPL\n");
495
Angel Pons1db5bc72020-01-15 00:49:03 +0100496 /* Configure turbo power limits 1ms after reset complete bit. */
Aaron Durbin76c37002012-10-30 09:03:43 -0500497 mdelay(1);
498 set_power_limits(28);
Aaron Durbin76c37002012-10-30 09:03:43 -0500499}
500
Angel Pons34be1be2021-03-01 22:57:21 +0100501static void northbridge_final(struct device *dev)
502{
503 pci_or_config16(dev, GGC, 1 << 0);
504 pci_or_config32(dev, DPR, 1 << 0);
505 pci_or_config32(dev, MESEG_LIMIT, 1 << 10);
506 pci_or_config32(dev, REMAPBASE, 1 << 0);
507 pci_or_config32(dev, REMAPLIMIT, 1 << 0);
508 pci_or_config32(dev, TOM, 1 << 0);
509 pci_or_config32(dev, TOUUD, 1 << 0);
510 pci_or_config32(dev, BDSM, 1 << 0);
511 pci_or_config32(dev, BGSM, 1 << 0);
512 pci_or_config32(dev, TSEG, 1 << 0);
513 pci_or_config32(dev, TOLUD, 1 << 0);
514
515 /* Memory Controller Lockdown */
Angel Pons2e397ae2021-03-26 12:35:57 +0100516 mchbar_setbits32(MC_LOCK, 0x8f);
Angel Pons34be1be2021-03-01 22:57:21 +0100517
Angel Pons2e397ae2021-03-26 12:35:57 +0100518 mchbar_setbits32(MMIO_PAVP_MSG, 1 << 0); /* PAVP */
519 mchbar_setbits32(PCU_DDR_PTM_CTL, 1 << 5); /* DDR PTM */
520 mchbar_setbits32(DMIVCLIM, 1 << 31);
521 mchbar_setbits32(CRDTLCK, 1 << 0);
522 mchbar_setbits32(MCARBLCK, 1 << 0);
523 mchbar_setbits32(REQLIM, 1 << 31);
524 mchbar_setbits32(UMAGFXCTL, 1 << 0); /* UMA GFX */
525 mchbar_setbits32(VTDTRKLCK, 1 << 0); /* VTDTRK */
Angel Pons34be1be2021-03-01 22:57:21 +0100526
527 /* Read+write the following */
Angel Pons2e397ae2021-03-26 12:35:57 +0100528 mchbar_setbits32(VDMBDFBARKVM, 0);
529 mchbar_setbits32(VDMBDFBARPAVP, 0);
530 mchbar_setbits32(HDAUDRID, 0);
Angel Pons34be1be2021-03-01 22:57:21 +0100531}
532
Aaron Durbin76c37002012-10-30 09:03:43 -0500533static struct device_operations mc_ops = {
Angel Pons30c5e602021-03-01 22:59:00 +0100534 .read_resources = mc_read_resources,
535 .set_resources = pci_dev_set_resources,
536 .enable_resources = pci_dev_enable_resources,
537 .init = northbridge_init,
Angel Pons34be1be2021-03-01 22:57:21 +0100538 .final = northbridge_final,
Angel Pons30c5e602021-03-01 22:59:00 +0100539 .ops_pci = &pci_dev_ops_pci,
Aaron Durbin76c37002012-10-30 09:03:43 -0500540};
541
Tristan Corrickd3856242018-11-01 03:03:29 +1300542static const unsigned short mc_pci_device_ids[] = {
543 0x0c00, /* Desktop */
544 0x0c04, /* Mobile */
545 0x0a04, /* ULT */
Iru Cai0766c982018-12-17 13:21:36 +0800546 0x0c08, /* Server */
Iru Cai12a13e12020-05-22 22:57:03 +0800547 0x0d00, /* Crystal Well Desktop */
548 0x0d04, /* Crystal Well Mobile */
549 0x0d08, /* Crystal Well Server (by extrapolation) */
Tristan Corrickd3856242018-11-01 03:03:29 +1300550 0
Tristan Corrick48170122018-10-31 02:21:41 +1300551};
552
Tristan Corrickd3856242018-11-01 03:03:29 +1300553static const struct pci_driver mc_driver_hsw __pci_driver = {
554 .ops = &mc_ops,
Felix Singer43b7f412022-03-07 04:34:52 +0100555 .vendor = PCI_VID_INTEL,
Tristan Corrickd3856242018-11-01 03:03:29 +1300556 .devices = mc_pci_device_ids,
Duncan Lauriedf7be712012-12-17 11:22:57 -0800557};
558
Arthur Heymans600fa262022-11-07 08:04:59 +0100559struct device_operations haswell_cpu_bus_ops = {
Nico Huber2f8ba692020-04-05 14:05:24 +0200560 .read_resources = noop_read_resources,
561 .set_resources = noop_set_resources,
Kyösti Mälkkib3267e02019-08-13 16:44:04 +0300562 .init = mp_cpu_bus_init,
Arthur Heymansdd96ab62021-11-15 20:11:12 +0100563 .acpi_fill_ssdt = generate_cpu_entries,
Aaron Durbin76c37002012-10-30 09:03:43 -0500564};
565
Aaron Durbin76c37002012-10-30 09:03:43 -0500566struct chip_operations northbridge_intel_haswell_ops = {
Angel Pons7bbf45e2020-10-22 23:55:24 +0200567 CHIP_NAME("Intel Haswell integrated Northbridge")
Aaron Durbin76c37002012-10-30 09:03:43 -0500568};