blob: ccfb2346bf63bb8204964addb1350fe4660cc4a3 [file] [log] [blame]
Aaron Durbin76c37002012-10-30 09:03:43 -05001/*
2 * This file is part of the coreboot project.
3 *
4 * Copyright (C) 2007-2009 coresystems GmbH
5 * Copyright (C) 2011 The ChromiumOS Authors. All rights reserved.
6 *
7 * This program is free software; you can redistribute it and/or modify
8 * it under the terms of the GNU General Public License as published by
9 * the Free Software Foundation; version 2 of the License.
10 *
11 * This program is distributed in the hope that it will be useful,
12 * but WITHOUT ANY WARRANTY; without even the implied warranty of
13 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
14 * GNU General Public License for more details.
Aaron Durbin76c37002012-10-30 09:03:43 -050015 */
16
17#include <console/console.h>
18#include <arch/acpi.h>
19#include <arch/io.h>
20#include <stdint.h>
21#include <delay.h>
22#include <cpu/intel/haswell/haswell.h>
Aaron Durbin76c37002012-10-30 09:03:43 -050023#include <device/device.h>
24#include <device/pci.h>
25#include <device/pci_ids.h>
Aaron Durbin76c37002012-10-30 09:03:43 -050026#include <stdlib.h>
27#include <string.h>
28#include <cpu/cpu.h>
Aaron Durbin1fef1f52012-12-19 17:15:43 -060029#include <cpu/x86/smm.h>
Aaron Durbin76c37002012-10-30 09:03:43 -050030#include <boot/tables.h>
31#include <cbmem.h>
32#include "chip.h"
33#include "haswell.h"
34
Elyes HAOUAS77f7a6e2018-05-09 17:47:59 +020035static int get_pcie_bar(struct device *dev, unsigned int index, u32 *base,
36 u32 *len)
Aaron Durbin76c37002012-10-30 09:03:43 -050037{
Aaron Durbin76c37002012-10-30 09:03:43 -050038 u32 pciexbar_reg;
Ryan Salsamendifa0725d2017-06-30 17:29:37 -070039 u32 mask;
Aaron Durbin76c37002012-10-30 09:03:43 -050040
41 *base = 0;
42 *len = 0;
43
Aaron Durbinc12ef972012-12-18 14:22:49 -060044 pciexbar_reg = pci_read_config32(dev, index);
Aaron Durbin76c37002012-10-30 09:03:43 -050045
46 if (!(pciexbar_reg & (1 << 0)))
47 return 0;
48
49 switch ((pciexbar_reg >> 1) & 3) {
50 case 0: // 256MB
Ryan Salsamendifa0725d2017-06-30 17:29:37 -070051 mask = (1UL << 31) | (1 << 30) | (1 << 29) | (1 << 28);
52 *base = pciexbar_reg & mask;
Aaron Durbin76c37002012-10-30 09:03:43 -050053 *len = 256 * 1024 * 1024;
54 return 1;
55 case 1: // 128M
Ryan Salsamendifa0725d2017-06-30 17:29:37 -070056 mask = (1UL << 31) | (1 << 30) | (1 << 29) | (1 << 28);
57 mask |= (1 << 27);
58 *base = pciexbar_reg & mask;
Aaron Durbin76c37002012-10-30 09:03:43 -050059 *len = 128 * 1024 * 1024;
60 return 1;
61 case 2: // 64M
Ryan Salsamendifa0725d2017-06-30 17:29:37 -070062 mask = (1UL << 31) | (1 << 30) | (1 << 29) | (1 << 28);
63 mask |= (1 << 27) | (1 << 26);
64 *base = pciexbar_reg & mask;
Aaron Durbin76c37002012-10-30 09:03:43 -050065 *len = 64 * 1024 * 1024;
66 return 1;
67 }
68
69 return 0;
70}
71
Elyes HAOUAS77f7a6e2018-05-09 17:47:59 +020072static void pci_domain_set_resources(struct device *dev)
Aaron Durbin76c37002012-10-30 09:03:43 -050073{
Aaron Durbin76c37002012-10-30 09:03:43 -050074 assign_resources(dev->link_list);
Aaron Durbin76c37002012-10-30 09:03:43 -050075}
76
77 /* TODO We could determine how many PCIe busses we need in
78 * the bar. For now that number is hardcoded to a max of 64.
79 * See e7525/northbridge.c for an example.
80 */
81static struct device_operations pci_domain_ops = {
82 .read_resources = pci_domain_read_resources,
83 .set_resources = pci_domain_set_resources,
84 .enable_resources = NULL,
85 .init = NULL,
86 .scan_bus = pci_domain_scan_bus,
Matt DeVillier85d98d92018-03-04 01:41:23 -060087 .write_acpi_tables = northbridge_write_acpi_tables,
Aaron Durbin76c37002012-10-30 09:03:43 -050088};
89
Elyes HAOUAS77f7a6e2018-05-09 17:47:59 +020090static int get_bar(struct device *dev, unsigned int index, u32 *base, u32 *len)
Aaron Durbin76c37002012-10-30 09:03:43 -050091{
Aaron Durbinc12ef972012-12-18 14:22:49 -060092 u32 bar;
Aaron Durbin76c37002012-10-30 09:03:43 -050093
Aaron Durbinc12ef972012-12-18 14:22:49 -060094 bar = pci_read_config32(dev, index);
Aaron Durbin76c37002012-10-30 09:03:43 -050095
Aaron Durbinc12ef972012-12-18 14:22:49 -060096 /* If not enabled don't report it. */
97 if (!(bar & 0x1))
98 return 0;
Aaron Durbin76c37002012-10-30 09:03:43 -050099
Aaron Durbinc12ef972012-12-18 14:22:49 -0600100 /* Knock down the enable bit. */
101 *base = bar & ~1;
102
103 return 1;
Aaron Durbin76c37002012-10-30 09:03:43 -0500104}
105
Aaron Durbinc12ef972012-12-18 14:22:49 -0600106/* There are special BARs that actually are programmed in the MCHBAR. These
107 * Intel special features, but they do consume resources that need to be
108 * accounted for. */
Elyes HAOUAS77f7a6e2018-05-09 17:47:59 +0200109static int get_bar_in_mchbar(struct device *dev, unsigned int index,
110 u32 *base, u32 *len)
Aaron Durbin76c37002012-10-30 09:03:43 -0500111{
Aaron Durbinc12ef972012-12-18 14:22:49 -0600112 u32 bar;
Aaron Durbin76c37002012-10-30 09:03:43 -0500113
Aaron Durbinc12ef972012-12-18 14:22:49 -0600114 bar = MCHBAR32(index);
115
116 /* If not enabled don't report it. */
117 if (!(bar & 0x1))
118 return 0;
119
120 /* Knock down the enable bit. */
121 *base = bar & ~1;
122
123 return 1;
124}
125
126struct fixed_mmio_descriptor {
127 unsigned int index;
128 u32 size;
Elyes HAOUAS77f7a6e2018-05-09 17:47:59 +0200129 int (*get_resource)(struct device *dev, unsigned int index,
Elyes HAOUAS6e8b3c12016-09-02 19:22:00 +0200130 u32 *base, u32 *size);
Aaron Durbinc12ef972012-12-18 14:22:49 -0600131 const char *description;
132};
133
134#define SIZE_KB(x) ((x)*1024)
135struct fixed_mmio_descriptor mc_fixed_resources[] = {
136 { PCIEXBAR, SIZE_KB(0), get_pcie_bar, "PCIEXBAR" },
137 { MCHBAR, SIZE_KB(32), get_bar, "MCHBAR" },
138 { DMIBAR, SIZE_KB(4), get_bar, "DMIBAR" },
139 { EPBAR, SIZE_KB(4), get_bar, "EPBAR" },
140 { 0x5420, SIZE_KB(4), get_bar_in_mchbar, "GDXCBAR" },
141 { 0x5408, SIZE_KB(16), get_bar_in_mchbar, "EDRAMBAR" },
142};
143#undef SIZE_KB
144
145/*
146 * Add all known fixed MMIO ranges that hang off the host bridge/memory
147 * controller device.
148 */
Elyes HAOUAS77f7a6e2018-05-09 17:47:59 +0200149static void mc_add_fixed_mmio_resources(struct device *dev)
Aaron Durbinc12ef972012-12-18 14:22:49 -0600150{
151 int i;
152
153 for (i = 0; i < ARRAY_SIZE(mc_fixed_resources); i++) {
154 u32 base;
155 u32 size;
156 struct resource *resource;
157 unsigned int index;
158
159 size = mc_fixed_resources[i].size;
160 index = mc_fixed_resources[i].index;
161 if (!mc_fixed_resources[i].get_resource(dev, index,
Elyes HAOUAS6e8b3c12016-09-02 19:22:00 +0200162 &base, &size))
Aaron Durbinc12ef972012-12-18 14:22:49 -0600163 continue;
164
165 resource = new_resource(dev, mc_fixed_resources[i].index);
166 resource->flags = IORESOURCE_MEM | IORESOURCE_FIXED |
Elyes HAOUAS6e8b3c12016-09-02 19:22:00 +0200167 IORESOURCE_STORED | IORESOURCE_RESERVE |
168 IORESOURCE_ASSIGNED;
Aaron Durbinc12ef972012-12-18 14:22:49 -0600169 resource->base = base;
170 resource->size = size;
171 printk(BIOS_DEBUG, "%s: Adding %s @ %x 0x%08lx-0x%08lx.\n",
172 __func__, mc_fixed_resources[i].description, index,
173 (unsigned long)base, (unsigned long)(base + size - 1));
174 }
175}
176
177/* Host Memory Map:
178 *
179 * +--------------------------+ TOUUD
180 * | |
181 * +--------------------------+ 4GiB
182 * | PCI Address Space |
183 * +--------------------------+ TOLUD (also maps into MC address space)
184 * | iGD |
185 * +--------------------------+ BDSM
186 * | GTT |
187 * +--------------------------+ BGSM
188 * | TSEG |
189 * +--------------------------+ TSEGMB
190 * | Usage DRAM |
191 * +--------------------------+ 0
192 *
193 * Some of the base registers above can be equal making the size of those
194 * regions 0. The reason is because the memory controller internally subtracts
195 * the base registers from each other to determine sizes of the regions. In
196 * other words, the memory map is in a fixed order no matter what.
197 */
198
199struct map_entry {
200 int reg;
201 int is_64_bit;
202 int is_limit;
203 const char *description;
204};
205
Elyes HAOUAS77f7a6e2018-05-09 17:47:59 +0200206static void read_map_entry(struct device *dev, struct map_entry *entry,
207 uint64_t *result)
Aaron Durbinc12ef972012-12-18 14:22:49 -0600208{
209 uint64_t value;
210 uint64_t mask;
211
212 /* All registers are on a 1MiB granularity. */
213 mask = ((1ULL<<20)-1);
214 mask = ~mask;
215
216 value = 0;
217
218 if (entry->is_64_bit) {
219 value = pci_read_config32(dev, entry->reg + 4);
220 value <<= 32;
Aaron Durbin76c37002012-10-30 09:03:43 -0500221 }
222
Aaron Durbinc12ef972012-12-18 14:22:49 -0600223 value |= pci_read_config32(dev, entry->reg);
224 value &= mask;
225
226 if (entry->is_limit)
227 value |= ~mask;
228
229 *result = value;
230}
231
232#define MAP_ENTRY(reg_, is_64_, is_limit_, desc_) \
233 { \
234 .reg = reg_, \
235 .is_64_bit = is_64_, \
236 .is_limit = is_limit_, \
237 .description = desc_, \
238 }
239
240#define MAP_ENTRY_BASE_64(reg_, desc_) \
241 MAP_ENTRY(reg_, 1, 0, desc_)
242#define MAP_ENTRY_LIMIT_64(reg_, desc_) \
243 MAP_ENTRY(reg_, 1, 1, desc_)
244#define MAP_ENTRY_BASE_32(reg_, desc_) \
245 MAP_ENTRY(reg_, 0, 0, desc_)
246
247enum {
248 TOM_REG,
249 TOUUD_REG,
250 MESEG_BASE_REG,
251 MESEG_LIMIT_REG,
252 REMAP_BASE_REG,
253 REMAP_LIMIT_REG,
254 TOLUD_REG,
255 BGSM_REG,
256 BDSM_REG,
257 TSEG_REG,
258 // Must be last.
259 NUM_MAP_ENTRIES
260};
261
262static struct map_entry memory_map[NUM_MAP_ENTRIES] = {
263 [TOM_REG] = MAP_ENTRY_BASE_64(TOM, "TOM"),
264 [TOUUD_REG] = MAP_ENTRY_BASE_64(TOUUD, "TOUUD"),
265 [MESEG_BASE_REG] = MAP_ENTRY_BASE_64(MESEG_BASE, "MESEG_BASE"),
266 [MESEG_LIMIT_REG] = MAP_ENTRY_LIMIT_64(MESEG_LIMIT, "MESEG_LIMIT"),
267 [REMAP_BASE_REG] = MAP_ENTRY_BASE_64(REMAPBASE, "REMAP_BASE"),
268 [REMAP_LIMIT_REG] = MAP_ENTRY_LIMIT_64(REMAPLIMIT, "REMAP_LIMIT"),
269 [TOLUD_REG] = MAP_ENTRY_BASE_32(TOLUD, "TOLUD"),
Aaron Durbin15702602012-12-21 22:18:58 -0600270 [BDSM_REG] = MAP_ENTRY_BASE_32(BDSM, "BDSM"),
271 [BGSM_REG] = MAP_ENTRY_BASE_32(BGSM, "BGSM"),
Aaron Durbinc12ef972012-12-18 14:22:49 -0600272 [TSEG_REG] = MAP_ENTRY_BASE_32(TSEG, "TESGMB"),
273};
274
Elyes HAOUAS77f7a6e2018-05-09 17:47:59 +0200275static void mc_read_map_entries(struct device *dev, uint64_t *values)
Aaron Durbinc12ef972012-12-18 14:22:49 -0600276{
277 int i;
278 for (i = 0; i < NUM_MAP_ENTRIES; i++) {
279 read_map_entry(dev, &memory_map[i], &values[i]);
280 }
281}
282
Elyes HAOUAS77f7a6e2018-05-09 17:47:59 +0200283static void mc_report_map_entries(struct device *dev, uint64_t *values)
Aaron Durbinc12ef972012-12-18 14:22:49 -0600284{
285 int i;
286 for (i = 0; i < NUM_MAP_ENTRIES; i++) {
287 printk(BIOS_DEBUG, "MC MAP: %s: 0x%llx\n",
288 memory_map[i].description, values[i]);
289 }
290 /* One can validate the BDSM and BGSM against the GGC. */
291 printk(BIOS_DEBUG, "MC MAP: GGC: 0x%x\n", pci_read_config16(dev, GGC));
292}
293
Elyes HAOUAS77f7a6e2018-05-09 17:47:59 +0200294static void mc_add_dram_resources(struct device *dev, int *resource_cnt)
Aaron Durbinc12ef972012-12-18 14:22:49 -0600295{
296 unsigned long base_k, size_k;
Aaron Durbin27435d32013-06-03 09:46:56 -0500297 unsigned long touud_k;
Aaron Durbinc12ef972012-12-18 14:22:49 -0600298 unsigned long index;
299 struct resource *resource;
300 uint64_t mc_values[NUM_MAP_ENTRIES];
301
302 /* Read in the MAP registers and report their values. */
303 mc_read_map_entries(dev, &mc_values[0]);
304 mc_report_map_entries(dev, &mc_values[0]);
305
306 /*
Aaron Durbin1fef1f52012-12-19 17:15:43 -0600307 * These are the host memory ranges that should be added:
Aaron Durbin6a360042014-02-13 10:30:42 -0600308 * - 0 -> 0xa0000: cacheable
Aaron Durbinc12ef972012-12-18 14:22:49 -0600309 * - 0xc0000 -> TSEG : cacheable
Aaron Durbine6c3b1d2012-12-21 21:22:07 -0600310 * - TESG -> BGSM: cacheable with standard MTRRs and reserved
311 * - BGSM -> TOLUD: not cacheable with standard MTRRs and reserved
Aaron Durbinc12ef972012-12-18 14:22:49 -0600312 * - 4GiB -> TOUUD: cacheable
313 *
Aaron Durbin1fef1f52012-12-19 17:15:43 -0600314 * The default SMRAM space is reserved so that the range doesn't
315 * have to be saved during S3 Resume. Once marked reserved the OS
316 * cannot use the memory. This is a bit of an odd place to reserve
317 * the region, but the CPU devices don't have dev_ops->read_resources()
318 * called on them.
319 *
Aaron Durbinc12ef972012-12-18 14:22:49 -0600320 * The range 0xa0000 -> 0xc0000 does not have any resources
321 * associated with it to handle legacy VGA memory. If this range
322 * is not omitted the mtrr code will setup the area as cacheable
323 * causing VGA access to not work.
324 *
Aaron Durbine6c3b1d2012-12-21 21:22:07 -0600325 * The TSEG region is mapped as cacheable so that one can perform
326 * SMRAM relocation faster. Once the SMRR is enabled the SMRR takes
327 * precedence over the existing MTRRs covering this region.
328 *
Aaron Durbin1fef1f52012-12-19 17:15:43 -0600329 * It should be noted that cacheable entry types need to be added in
330 * order. The reason is that the current MTRR code assumes this and
331 * falls over itself if it isn't.
332 *
Aaron Durbinc12ef972012-12-18 14:22:49 -0600333 * The resource index starts low and should not meet or exceed
Aaron Durbin1fef1f52012-12-19 17:15:43 -0600334 * PCI_BASE_ADDRESS_0.
Aaron Durbinc12ef972012-12-18 14:22:49 -0600335 */
Matt DeVilliera51e3792018-03-04 01:44:15 -0600336 index = *resource_cnt;
Aaron Durbinc12ef972012-12-18 14:22:49 -0600337
Aaron Durbin6a360042014-02-13 10:30:42 -0600338 /* 0 - > 0xa0000 */
Aaron Durbinc12ef972012-12-18 14:22:49 -0600339 base_k = 0;
Aaron Durbin1fef1f52012-12-19 17:15:43 -0600340 size_k = (0xa0000 >> 10) - base_k;
341 ram_resource(dev, index++, base_k, size_k);
342
343 /* 0xc0000 -> TSEG */
Aaron Durbinc12ef972012-12-18 14:22:49 -0600344 base_k = 0xc0000 >> 10;
345 size_k = (unsigned long)(mc_values[TSEG_REG] >> 10) - base_k;
346 ram_resource(dev, index++, base_k, size_k);
347
Aaron Durbine6c3b1d2012-12-21 21:22:07 -0600348 /* TSEG -> BGSM */
Aaron Durbinc12ef972012-12-18 14:22:49 -0600349 resource = new_resource(dev, index++);
350 resource->base = mc_values[TSEG_REG];
Aaron Durbine6c3b1d2012-12-21 21:22:07 -0600351 resource->size = mc_values[BGSM_REG] - resource->base;
352 resource->flags = IORESOURCE_MEM | IORESOURCE_FIXED |
Elyes HAOUAS6e8b3c12016-09-02 19:22:00 +0200353 IORESOURCE_STORED | IORESOURCE_RESERVE |
354 IORESOURCE_ASSIGNED | IORESOURCE_CACHEABLE;
Aaron Durbine6c3b1d2012-12-21 21:22:07 -0600355
356 /* BGSM -> TOLUD */
357 resource = new_resource(dev, index++);
358 resource->base = mc_values[BGSM_REG];
Aaron Durbinc12ef972012-12-18 14:22:49 -0600359 resource->size = mc_values[TOLUD_REG] - resource->base;
360 resource->flags = IORESOURCE_MEM | IORESOURCE_FIXED |
Elyes HAOUAS6e8b3c12016-09-02 19:22:00 +0200361 IORESOURCE_STORED | IORESOURCE_RESERVE |
362 IORESOURCE_ASSIGNED;
Aaron Durbinc12ef972012-12-18 14:22:49 -0600363
364 /* 4GiB -> TOUUD */
365 base_k = 4096 * 1024; /* 4GiB */
Aaron Durbin27435d32013-06-03 09:46:56 -0500366 touud_k = mc_values[TOUUD_REG] >> 10;
367 size_k = touud_k - base_k;
368 if (touud_k > base_k)
Aaron Durbin5c66f082013-01-08 10:10:33 -0600369 ram_resource(dev, index++, base_k, size_k);
Aaron Durbinc12ef972012-12-18 14:22:49 -0600370
Aaron Durbinc9650762013-03-22 22:03:09 -0500371 /* Reserve everything between A segment and 1MB:
372 *
373 * 0xa0000 - 0xbffff: legacy VGA
374 * 0xc0000 - 0xfffff: RAM
375 */
376 mmio_resource(dev, index++, (0xa0000 >> 10), (0xc0000 - 0xa0000) >> 10);
377 reserved_ram_resource(dev, index++, (0xc0000 >> 10),
Elyes HAOUAS6e8b3c12016-09-02 19:22:00 +0200378 (0x100000 - 0xc0000) >> 10);
Martin Roth33232602017-06-24 14:48:50 -0600379#if IS_ENABLED(CONFIG_CHROMEOS_RAMOOPS)
Aaron Durbinc9650762013-03-22 22:03:09 -0500380 reserved_ram_resource(dev, index++,
381 CONFIG_CHROMEOS_RAMOOPS_RAM_START >> 10,
Aaron Durbinc12ef972012-12-18 14:22:49 -0600382 CONFIG_CHROMEOS_RAMOOPS_RAM_SIZE >> 10);
383#endif
Matt DeVilliera51e3792018-03-04 01:44:15 -0600384 *resource_cnt = index;
Aaron Durbinc12ef972012-12-18 14:22:49 -0600385}
386
Elyes HAOUAS77f7a6e2018-05-09 17:47:59 +0200387static void mc_read_resources(struct device *dev)
Aaron Durbinc12ef972012-12-18 14:22:49 -0600388{
Matt DeVilliera51e3792018-03-04 01:44:15 -0600389 int index = 0;
390 const bool vtd_capable =
391 !(pci_read_config32(dev, CAPID0_A) & VTD_DISABLE);
392
Aaron Durbinc12ef972012-12-18 14:22:49 -0600393 /* Read standard PCI resources. */
394 pci_dev_read_resources(dev);
395
396 /* Add all fixed MMIO resources. */
397 mc_add_fixed_mmio_resources(dev);
398
Matt DeVilliera51e3792018-03-04 01:44:15 -0600399 /* Add VT-d MMIO resources if capable */
400 if (vtd_capable) {
401 mmio_resource(dev, index++, GFXVT_BASE_ADDRESS / KiB,
402 GFXVT_BASE_SIZE / KiB);
403 mmio_resource(dev, index++, VTVC0_BASE_ADDRESS / KiB,
404 VTVC0_BASE_SIZE / KiB);
405 }
406
Aaron Durbinc12ef972012-12-18 14:22:49 -0600407 /* Calculate and add DRAM resources. */
Matt DeVilliera51e3792018-03-04 01:44:15 -0600408 mc_add_dram_resources(dev, &index);
Aaron Durbin76c37002012-10-30 09:03:43 -0500409}
410
Elyes HAOUASb60920d2018-09-20 17:38:38 +0200411static void intel_set_subsystem(struct device *dev, unsigned int vendor,
412 unsigned int device)
Aaron Durbin76c37002012-10-30 09:03:43 -0500413{
414 if (!vendor || !device) {
415 pci_write_config32(dev, PCI_SUBSYSTEM_VENDOR_ID,
416 pci_read_config32(dev, PCI_VENDOR_ID));
417 } else {
418 pci_write_config32(dev, PCI_SUBSYSTEM_VENDOR_ID,
419 ((device & 0xffff) << 16) | (vendor & 0xffff));
420 }
421}
422
Aaron Durbin76c37002012-10-30 09:03:43 -0500423static void northbridge_init(struct device *dev)
424{
Duncan Lauriec70353f2013-06-28 14:40:38 -0700425 u8 bios_reset_cpl, pair;
Aaron Durbin76c37002012-10-30 09:03:43 -0500426
Duncan Lauriec70353f2013-06-28 14:40:38 -0700427 /* Enable Power Aware Interrupt Routing */
428 pair = MCHBAR8(0x5418);
429 pair &= ~0x7; /* Clear 2:0 */
430 pair |= 0x4; /* Fixed Priority */
431 MCHBAR8(0x5418) = pair;
Aaron Durbin76c37002012-10-30 09:03:43 -0500432
433 /*
Duncan Lauriec70353f2013-06-28 14:40:38 -0700434 * Set bits 0+1 of BIOS_RESET_CPL to indicate to the CPU
Aaron Durbin76c37002012-10-30 09:03:43 -0500435 * that BIOS has initialized memory and power management
436 */
437 bios_reset_cpl = MCHBAR8(BIOS_RESET_CPL);
Duncan Lauriec70353f2013-06-28 14:40:38 -0700438 bios_reset_cpl |= 3;
Aaron Durbin76c37002012-10-30 09:03:43 -0500439 MCHBAR8(BIOS_RESET_CPL) = bios_reset_cpl;
440 printk(BIOS_DEBUG, "Set BIOS_RESET_CPL\n");
441
442 /* Configure turbo power limits 1ms after reset complete bit */
443 mdelay(1);
444 set_power_limits(28);
445
Aaron Durbin76c37002012-10-30 09:03:43 -0500446 /* Set here before graphics PM init */
447 MCHBAR32(0x5500) = 0x00100001;
448}
449
Aaron Durbin76c37002012-10-30 09:03:43 -0500450static struct pci_operations intel_pci_ops = {
451 .set_subsystem = intel_set_subsystem,
452};
453
454static struct device_operations mc_ops = {
455 .read_resources = mc_read_resources,
Aaron Durbinc12ef972012-12-18 14:22:49 -0600456 .set_resources = pci_dev_set_resources,
Aaron Durbin76c37002012-10-30 09:03:43 -0500457 .enable_resources = pci_dev_enable_resources,
458 .init = northbridge_init,
Vladimir Serbinenko0a669912014-10-05 14:34:17 +0200459 .acpi_fill_ssdt_generator = generate_cpu_entries,
Aaron Durbin76c37002012-10-30 09:03:43 -0500460 .scan_bus = 0,
461 .ops_pci = &intel_pci_ops,
462};
463
Tristan Corrick48170122018-10-31 02:21:41 +1300464static const struct pci_driver mc_driver_hsw_normal __pci_driver = {
465 .ops = &mc_ops,
466 .vendor = PCI_VENDOR_ID_INTEL,
467 .device = PCI_DEVICE_ID_HSW_DESKTOP,
468};
469
Aaron Durbinc1989c42012-12-11 17:13:17 -0600470static const struct pci_driver mc_driver_hsw_mobile __pci_driver = {
Aaron Durbin76c37002012-10-30 09:03:43 -0500471 .ops = &mc_ops,
472 .vendor = PCI_VENDOR_ID_INTEL,
Aaron Durbin21efd8c2013-01-17 09:39:39 -0600473 .device = PCI_DEVICE_ID_HSW_MOBILE,
Aaron Durbin76c37002012-10-30 09:03:43 -0500474};
475
Duncan Lauriedf7be712012-12-17 11:22:57 -0800476static const struct pci_driver mc_driver_hsw_ult __pci_driver = {
477 .ops = &mc_ops,
478 .vendor = PCI_VENDOR_ID_INTEL,
Aaron Durbin21efd8c2013-01-17 09:39:39 -0600479 .device = PCI_DEVICE_ID_HSW_ULT,
Duncan Lauriedf7be712012-12-17 11:22:57 -0800480};
481
Elyes HAOUAS77f7a6e2018-05-09 17:47:59 +0200482static void cpu_bus_init(struct device *dev)
Aaron Durbin76c37002012-10-30 09:03:43 -0500483{
Aaron Durbin7af20692013-01-14 14:54:41 -0600484 bsp_init_and_start_aps(dev->link_list);
Aaron Durbin76c37002012-10-30 09:03:43 -0500485}
486
Aaron Durbin76c37002012-10-30 09:03:43 -0500487static struct device_operations cpu_bus_ops = {
Edward O'Callaghan9f744622014-10-31 08:12:34 +1100488 .read_resources = DEVICE_NOOP,
489 .set_resources = DEVICE_NOOP,
490 .enable_resources = DEVICE_NOOP,
Aaron Durbin76c37002012-10-30 09:03:43 -0500491 .init = cpu_bus_init,
492 .scan_bus = 0,
493};
494
Elyes HAOUAS77f7a6e2018-05-09 17:47:59 +0200495static void enable_dev(struct device *dev)
Aaron Durbin76c37002012-10-30 09:03:43 -0500496{
497 /* Set the operations if it is a special bus type */
498 if (dev->path.type == DEVICE_PATH_DOMAIN) {
499 dev->ops = &pci_domain_ops;
500 } else if (dev->path.type == DEVICE_PATH_CPU_CLUSTER) {
501 dev->ops = &cpu_bus_ops;
502 }
503}
504
505struct chip_operations northbridge_intel_haswell_ops = {
506 CHIP_NAME("Intel i7 (Haswell) integrated Northbridge")
507 .enable_dev = enable_dev,
508};