blob: bc2638842a2040387d2a21ba24ed4563f7aaec54 [file] [log] [blame]
Angel Ponsf94ac9a2020-04-05 15:46:48 +02001/* SPDX-License-Identifier: GPL-2.0-only */
Duncan Lauriec88c54c2014-04-30 16:36:13 -07002
3#include <console/console.h>
Angel Pons9d733de2020-11-23 13:15:19 +01004#include <cpu/intel/haswell/haswell.h>
Furquan Shaikh76cedd22020-05-02 10:24:23 -07005#include <acpi/acpi.h>
Kyösti Mälkkif1b58b72019-03-01 13:43:02 +02006#include <device/pci_ops.h>
Duncan Lauriec88c54c2014-04-30 16:36:13 -07007#include <stdint.h>
8#include <delay.h>
9#include <device/device.h>
10#include <device/pci.h>
11#include <device/pci_ids.h>
Duncan Lauriec88c54c2014-04-30 16:36:13 -070012#include <vendorcode/google/chromeos/chromeos.h>
Angel Ponse866a2f2020-10-23 15:54:33 +020013#include <soc/acpi.h>
Julius Werner4ee4bd52014-10-20 13:46:39 -070014#include <soc/iomap.h>
15#include <soc/pci_devs.h>
16#include <soc/ramstage.h>
17#include <soc/systemagent.h>
Duncan Lauriec88c54c2014-04-30 16:36:13 -070018
Duncan Laurie84b9cf42014-07-31 10:46:57 -070019u8 systemagent_revision(void)
20{
Kyösti Mälkki71756c212019-07-12 13:10:19 +030021 struct device *sa_dev = pcidev_path_on_root(SA_DEVFN_ROOT);
22 return pci_read_config8(sa_dev, PCI_REVISION_ID);
Duncan Laurie84b9cf42014-07-31 10:46:57 -070023}
24
Matt DeVillier42d16602018-07-04 16:32:21 -050025uintptr_t sa_get_tolud_base(void)
26{
Kyösti Mälkki71756c212019-07-12 13:10:19 +030027 struct device *sa_dev = pcidev_path_on_root(SA_DEVFN_ROOT);
Matt DeVillier42d16602018-07-04 16:32:21 -050028 /* Bit 0 is lock bit, not part of address */
Kyösti Mälkki71756c212019-07-12 13:10:19 +030029 return pci_read_config32(sa_dev, TOLUD) & ~1;
Matt DeVillier42d16602018-07-04 16:32:21 -050030}
31
32uintptr_t sa_get_gsm_base(void)
33{
Kyösti Mälkki71756c212019-07-12 13:10:19 +030034 struct device *sa_dev = pcidev_path_on_root(SA_DEVFN_ROOT);
Matt DeVillier42d16602018-07-04 16:32:21 -050035 /* Bit 0 is lock bit, not part of address */
Kyösti Mälkki71756c212019-07-12 13:10:19 +030036 return pci_read_config32(sa_dev, BGSM) & ~1;
Matt DeVillier42d16602018-07-04 16:32:21 -050037}
38
Elyes HAOUAS040aff22018-05-27 16:30:36 +020039static int get_pcie_bar(struct device *dev, unsigned int index, u32 *base,
40 u32 *len)
Duncan Lauriec88c54c2014-04-30 16:36:13 -070041{
42 u32 pciexbar_reg;
43
44 *base = 0;
45 *len = 0;
46
47 pciexbar_reg = pci_read_config32(dev, index);
48
49 if (!(pciexbar_reg & (1 << 0)))
50 return 0;
51
52 switch ((pciexbar_reg >> 1) & 3) {
53 case 0: // 256MB
54 *base = pciexbar_reg & ((1 << 31)|(1 << 30)|(1 << 29)|
55 (1 << 28));
56 *len = 256 * 1024 * 1024;
57 return 1;
58 case 1: // 128M
59 *base = pciexbar_reg & ((1 << 31)|(1 << 30)|(1 << 29)|
60 (1 << 28)|(1 << 27));
61 *len = 128 * 1024 * 1024;
62 return 1;
63 case 2: // 64M
64 *base = pciexbar_reg & ((1 << 31)|(1 << 30)|(1 << 29)|
65 (1 << 28)|(1 << 27)|(1 << 26));
66 *len = 64 * 1024 * 1024;
67 return 1;
68 }
69
70 return 0;
71}
72
Elyes HAOUAS040aff22018-05-27 16:30:36 +020073static int get_bar(struct device *dev, unsigned int index, u32 *base, u32 *len)
Duncan Lauriec88c54c2014-04-30 16:36:13 -070074{
75 u32 bar;
76
77 bar = pci_read_config32(dev, index);
78
79 /* If not enabled don't report it. */
80 if (!(bar & 0x1))
81 return 0;
82
83 /* Knock down the enable bit. */
84 *base = bar & ~1;
85
86 return 1;
87}
88
89/* There are special BARs that actually are programmed in the MCHBAR. These
90 * Intel special features, but they do consume resources that need to be
91 * accounted for. */
Elyes HAOUAS040aff22018-05-27 16:30:36 +020092static int get_bar_in_mchbar(struct device *dev, unsigned int index, u32 *base,
Lee Leahy26b7cd02017-03-16 18:47:55 -070093 u32 *len)
Duncan Lauriec88c54c2014-04-30 16:36:13 -070094{
95 u32 bar;
96
97 bar = MCHBAR32(index);
98
99 /* If not enabled don't report it. */
100 if (!(bar & 0x1))
101 return 0;
102
103 /* Knock down the enable bit. */
104 *base = bar & ~1;
105
106 return 1;
107}
108
109struct fixed_mmio_descriptor {
110 unsigned int index;
111 u32 size;
Elyes HAOUAS040aff22018-05-27 16:30:36 +0200112 int (*get_resource)(struct device *dev, unsigned int index,
Lee Leahy26b7cd02017-03-16 18:47:55 -0700113 u32 *base, u32 *size);
Duncan Lauriec88c54c2014-04-30 16:36:13 -0700114 const char *description;
115};
116
117struct fixed_mmio_descriptor mc_fixed_resources[] = {
118 { PCIEXBAR, 0, get_pcie_bar, "PCIEXBAR" },
119 { MCHBAR, MCH_BASE_SIZE, get_bar, "MCHBAR" },
120 { DMIBAR, DMI_BASE_SIZE, get_bar, "DMIBAR" },
121 { EPBAR, EP_BASE_SIZE, get_bar, "EPBAR" },
122 { GDXCBAR, GDXC_BASE_SIZE, get_bar_in_mchbar, "GDXCBAR" },
123 { EDRAMBAR, EDRAM_BASE_SIZE, get_bar_in_mchbar, "EDRAMBAR" },
124};
125
126/*
127 * Add all known fixed MMIO ranges that hang off the host bridge/memory
128 * controller device.
129 */
Elyes HAOUAS040aff22018-05-27 16:30:36 +0200130static void mc_add_fixed_mmio_resources(struct device *dev)
Duncan Lauriec88c54c2014-04-30 16:36:13 -0700131{
132 int i;
133
134 for (i = 0; i < ARRAY_SIZE(mc_fixed_resources); i++) {
135 u32 base;
136 u32 size;
137 struct resource *resource;
138 unsigned int index;
139
140 size = mc_fixed_resources[i].size;
141 index = mc_fixed_resources[i].index;
142 if (!mc_fixed_resources[i].get_resource(dev, index,
Lee Leahy26b7cd02017-03-16 18:47:55 -0700143 &base, &size))
Duncan Lauriec88c54c2014-04-30 16:36:13 -0700144 continue;
145
146 resource = new_resource(dev, mc_fixed_resources[i].index);
147 resource->flags = IORESOURCE_MEM | IORESOURCE_FIXED |
Lee Leahy26b7cd02017-03-16 18:47:55 -0700148 IORESOURCE_STORED | IORESOURCE_RESERVE |
149 IORESOURCE_ASSIGNED;
Duncan Lauriec88c54c2014-04-30 16:36:13 -0700150 resource->base = base;
151 resource->size = size;
152 printk(BIOS_DEBUG, "%s: Adding %s @ %x 0x%08lx-0x%08lx.\n",
153 __func__, mc_fixed_resources[i].description, index,
154 (unsigned long)base, (unsigned long)(base + size - 1));
155 }
156}
157
158/* Host Memory Map:
159 *
160 * +--------------------------+ TOUUD
161 * | |
162 * +--------------------------+ 4GiB
163 * | PCI Address Space |
164 * +--------------------------+ TOLUD (also maps into MC address space)
165 * | iGD |
166 * +--------------------------+ BDSM
167 * | GTT |
168 * +--------------------------+ BGSM
169 * | TSEG |
170 * +--------------------------+ TSEGMB
171 * | Usage DRAM |
172 * +--------------------------+ 0
173 *
174 * Some of the base registers above can be equal making the size of those
175 * regions 0. The reason is because the memory controller internally subtracts
176 * the base registers from each other to determine sizes of the regions. In
177 * other words, the memory map is in a fixed order no matter what.
178 */
179
180struct map_entry {
181 int reg;
182 int is_64_bit;
183 int is_limit;
184 const char *description;
185};
186
Elyes HAOUAS040aff22018-05-27 16:30:36 +0200187static void read_map_entry(struct device *dev, struct map_entry *entry,
Lee Leahy26b7cd02017-03-16 18:47:55 -0700188 uint64_t *result)
Duncan Lauriec88c54c2014-04-30 16:36:13 -0700189{
190 uint64_t value;
191 uint64_t mask;
192
193 /* All registers are on a 1MiB granularity. */
194 mask = ((1ULL<<20)-1);
195 mask = ~mask;
196
197 value = 0;
198
199 if (entry->is_64_bit) {
200 value = pci_read_config32(dev, entry->reg + 4);
201 value <<= 32;
202 }
203
204 value |= pci_read_config32(dev, entry->reg);
205 value &= mask;
206
207 if (entry->is_limit)
208 value |= ~mask;
209
210 *result = value;
211}
212
213#define MAP_ENTRY(reg_, is_64_, is_limit_, desc_) \
214 { \
215 .reg = reg_, \
216 .is_64_bit = is_64_, \
217 .is_limit = is_limit_, \
218 .description = desc_, \
219 }
220
221#define MAP_ENTRY_BASE_64(reg_, desc_) \
222 MAP_ENTRY(reg_, 1, 0, desc_)
223#define MAP_ENTRY_LIMIT_64(reg_, desc_) \
224 MAP_ENTRY(reg_, 1, 1, desc_)
225#define MAP_ENTRY_BASE_32(reg_, desc_) \
226 MAP_ENTRY(reg_, 0, 0, desc_)
227
228enum {
229 TOM_REG,
230 TOUUD_REG,
231 MESEG_BASE_REG,
232 MESEG_LIMIT_REG,
233 REMAP_BASE_REG,
234 REMAP_LIMIT_REG,
235 TOLUD_REG,
236 BGSM_REG,
237 BDSM_REG,
238 TSEG_REG,
239 // Must be last.
240 NUM_MAP_ENTRIES
241};
242
243static struct map_entry memory_map[NUM_MAP_ENTRIES] = {
244 [TOM_REG] = MAP_ENTRY_BASE_64(TOM, "TOM"),
245 [TOUUD_REG] = MAP_ENTRY_BASE_64(TOUUD, "TOUUD"),
246 [MESEG_BASE_REG] = MAP_ENTRY_BASE_64(MESEG_BASE, "MESEG_BASE"),
247 [MESEG_LIMIT_REG] = MAP_ENTRY_LIMIT_64(MESEG_LIMIT, "MESEG_LIMIT"),
248 [REMAP_BASE_REG] = MAP_ENTRY_BASE_64(REMAPBASE, "REMAP_BASE"),
249 [REMAP_LIMIT_REG] = MAP_ENTRY_LIMIT_64(REMAPLIMIT, "REMAP_LIMIT"),
250 [TOLUD_REG] = MAP_ENTRY_BASE_32(TOLUD, "TOLUD"),
251 [BDSM_REG] = MAP_ENTRY_BASE_32(BDSM, "BDSM"),
252 [BGSM_REG] = MAP_ENTRY_BASE_32(BGSM, "BGSM"),
Angel Pons40b39432020-06-20 18:06:47 +0200253 [TSEG_REG] = MAP_ENTRY_BASE_32(TSEG, "TSEGMB"),
Duncan Lauriec88c54c2014-04-30 16:36:13 -0700254};
255
Elyes HAOUAS040aff22018-05-27 16:30:36 +0200256static void mc_read_map_entries(struct device *dev, uint64_t *values)
Duncan Lauriec88c54c2014-04-30 16:36:13 -0700257{
258 int i;
Lee Leahy8a9c7dc2017-03-17 10:43:25 -0700259 for (i = 0; i < NUM_MAP_ENTRIES; i++)
Duncan Lauriec88c54c2014-04-30 16:36:13 -0700260 read_map_entry(dev, &memory_map[i], &values[i]);
Duncan Lauriec88c54c2014-04-30 16:36:13 -0700261}
262
Elyes HAOUAS040aff22018-05-27 16:30:36 +0200263static void mc_report_map_entries(struct device *dev, uint64_t *values)
Duncan Lauriec88c54c2014-04-30 16:36:13 -0700264{
265 int i;
266 for (i = 0; i < NUM_MAP_ENTRIES; i++) {
267 printk(BIOS_DEBUG, "MC MAP: %s: 0x%llx\n",
268 memory_map[i].description, values[i]);
269 }
270 /* One can validate the BDSM and BGSM against the GGC. */
271 printk(BIOS_DEBUG, "MC MAP: GGC: 0x%x\n", pci_read_config16(dev, GGC));
272}
273
Elyes HAOUAS040aff22018-05-27 16:30:36 +0200274static void mc_add_dram_resources(struct device *dev, int *resource_cnt)
Duncan Lauriec88c54c2014-04-30 16:36:13 -0700275{
276 unsigned long base_k, size_k;
277 unsigned long touud_k;
278 unsigned long index;
279 struct resource *resource;
280 uint64_t mc_values[NUM_MAP_ENTRIES];
Duncan Laurie61680272014-05-05 12:42:35 -0500281 unsigned long dpr_size = 0;
282 u32 dpr_reg;
Duncan Lauriec88c54c2014-04-30 16:36:13 -0700283
284 /* Read in the MAP registers and report their values. */
285 mc_read_map_entries(dev, &mc_values[0]);
286 mc_report_map_entries(dev, &mc_values[0]);
287
288 /*
Duncan Laurie61680272014-05-05 12:42:35 -0500289 * DMA Protected Range can be reserved below TSEG for PCODE patch
290 * or TXT/BootGuard related data. Rather than report a base address
291 * the DPR register reports the TOP of the region, which is the same
292 * as TSEG base. The region size is reported in MiB in bits 11:4.
293 */
Angel Pons54b5e202020-10-29 20:36:47 +0100294 dpr_reg = pci_read_config32(dev, DPR);
Duncan Laurie61680272014-05-05 12:42:35 -0500295 if (dpr_reg & DPR_EPM) {
296 dpr_size = (dpr_reg & DPR_SIZE_MASK) << 16;
297 printk(BIOS_INFO, "DPR SIZE: 0x%lx\n", dpr_size);
298 }
299
300 /*
Duncan Lauriec88c54c2014-04-30 16:36:13 -0700301 * These are the host memory ranges that should be added:
302 * - 0 -> 0xa0000: cacheable
303 * - 0xc0000 -> TSEG : cacheable
304 * - TESG -> BGSM: cacheable with standard MTRRs and reserved
305 * - BGSM -> TOLUD: not cacheable with standard MTRRs and reserved
306 * - 4GiB -> TOUUD: cacheable
307 *
308 * The default SMRAM space is reserved so that the range doesn't
309 * have to be saved during S3 Resume. Once marked reserved the OS
310 * cannot use the memory. This is a bit of an odd place to reserve
311 * the region, but the CPU devices don't have dev_ops->read_resources()
312 * called on them.
313 *
314 * The range 0xa0000 -> 0xc0000 does not have any resources
315 * associated with it to handle legacy VGA memory. If this range
316 * is not omitted the mtrr code will setup the area as cacheable
317 * causing VGA access to not work.
318 *
319 * The TSEG region is mapped as cacheable so that one can perform
320 * SMRAM relocation faster. Once the SMRR is enabled the SMRR takes
321 * precedence over the existing MTRRs covering this region.
322 *
323 * It should be noted that cacheable entry types need to be added in
324 * order. The reason is that the current MTRR code assumes this and
325 * falls over itself if it isn't.
326 *
327 * The resource index starts low and should not meet or exceed
328 * PCI_BASE_ADDRESS_0.
329 */
Matt DeVillier81a6f102018-02-19 17:33:48 -0600330 index = *resource_cnt;
Duncan Lauriec88c54c2014-04-30 16:36:13 -0700331
332 /* 0 - > 0xa0000 */
333 base_k = 0;
334 size_k = (0xa0000 >> 10) - base_k;
335 ram_resource(dev, index++, base_k, size_k);
336
Duncan Laurie61680272014-05-05 12:42:35 -0500337 /* 0xc0000 -> TSEG - DPR */
Duncan Lauriec88c54c2014-04-30 16:36:13 -0700338 base_k = 0xc0000 >> 10;
339 size_k = (unsigned long)(mc_values[TSEG_REG] >> 10) - base_k;
Duncan Laurie61680272014-05-05 12:42:35 -0500340 size_k -= dpr_size >> 10;
Duncan Lauriec88c54c2014-04-30 16:36:13 -0700341 ram_resource(dev, index++, base_k, size_k);
342
Duncan Laurie61680272014-05-05 12:42:35 -0500343 /* TSEG - DPR -> BGSM */
Duncan Lauriec88c54c2014-04-30 16:36:13 -0700344 resource = new_resource(dev, index++);
Duncan Laurie61680272014-05-05 12:42:35 -0500345 resource->base = mc_values[TSEG_REG] - dpr_size;
Duncan Lauriec88c54c2014-04-30 16:36:13 -0700346 resource->size = mc_values[BGSM_REG] - resource->base;
347 resource->flags = IORESOURCE_MEM | IORESOURCE_FIXED |
Lee Leahy26b7cd02017-03-16 18:47:55 -0700348 IORESOURCE_STORED | IORESOURCE_RESERVE |
349 IORESOURCE_ASSIGNED | IORESOURCE_CACHEABLE;
Duncan Lauriec88c54c2014-04-30 16:36:13 -0700350
351 /* BGSM -> TOLUD */
352 resource = new_resource(dev, index++);
353 resource->base = mc_values[BGSM_REG];
354 resource->size = mc_values[TOLUD_REG] - resource->base;
355 resource->flags = IORESOURCE_MEM | IORESOURCE_FIXED |
Lee Leahy26b7cd02017-03-16 18:47:55 -0700356 IORESOURCE_STORED | IORESOURCE_RESERVE |
357 IORESOURCE_ASSIGNED;
Duncan Lauriec88c54c2014-04-30 16:36:13 -0700358
359 /* 4GiB -> TOUUD */
360 base_k = 4096 * 1024; /* 4GiB */
361 touud_k = mc_values[TOUUD_REG] >> 10;
362 size_k = touud_k - base_k;
363 if (touud_k > base_k)
364 ram_resource(dev, index++, base_k, size_k);
365
366 /* Reserve everything between A segment and 1MB:
367 *
368 * 0xa0000 - 0xbffff: legacy VGA
369 * 0xc0000 - 0xfffff: RAM
370 */
371 mmio_resource(dev, index++, (0xa0000 >> 10), (0xc0000 - 0xa0000) >> 10);
372 reserved_ram_resource(dev, index++, (0xc0000 >> 10),
Lee Leahy26b7cd02017-03-16 18:47:55 -0700373 (0x100000 - 0xc0000) >> 10);
Duncan Lauriec88c54c2014-04-30 16:36:13 -0700374
Julius Wernercd49cce2019-03-05 16:53:33 -0800375 if (CONFIG(CHROMEOS))
Frans Hendriksef05dc82018-11-27 10:35:16 +0100376 chromeos_reserve_ram_oops(dev, index++);
Matt DeVillier81a6f102018-02-19 17:33:48 -0600377
378 *resource_cnt = index;
Duncan Lauriec88c54c2014-04-30 16:36:13 -0700379}
380
Elyes HAOUAS040aff22018-05-27 16:30:36 +0200381static void systemagent_read_resources(struct device *dev)
Duncan Lauriec88c54c2014-04-30 16:36:13 -0700382{
Matt DeVillier81a6f102018-02-19 17:33:48 -0600383 int index = 0;
384 const bool vtd_capable =
385 !(pci_read_config32(dev, CAPID0_A) & VTD_DISABLE);
386
Duncan Lauriec88c54c2014-04-30 16:36:13 -0700387 /* Read standard PCI resources. */
388 pci_dev_read_resources(dev);
389
390 /* Add all fixed MMIO resources. */
391 mc_add_fixed_mmio_resources(dev);
392
Matt DeVillier81a6f102018-02-19 17:33:48 -0600393 /* Add VT-d MMIO resources if capable */
394 if (vtd_capable) {
395 mmio_resource(dev, index++, GFXVT_BASE_ADDRESS / KiB,
396 GFXVT_BASE_SIZE / KiB);
397 mmio_resource(dev, index++, VTVC0_BASE_ADDRESS / KiB,
398 VTVC0_BASE_SIZE / KiB);
399 }
400
Duncan Lauriec88c54c2014-04-30 16:36:13 -0700401 /* Calculate and add DRAM resources. */
Matt DeVillier81a6f102018-02-19 17:33:48 -0600402 mc_add_dram_resources(dev, &index);
Duncan Lauriec88c54c2014-04-30 16:36:13 -0700403}
404
405static void systemagent_init(struct device *dev)
406{
407 u8 bios_reset_cpl, pair;
408
409 /* Enable Power Aware Interrupt Routing */
410 pair = MCHBAR8(MCH_PAIR);
411 pair &= ~0x7; /* Clear 2:0 */
412 pair |= 0x4; /* Fixed Priority */
413 MCHBAR8(MCH_PAIR) = pair;
414
415 /*
416 * Set bits 0+1 of BIOS_RESET_CPL to indicate to the CPU
417 * that BIOS has initialized memory and power management
418 */
419 bios_reset_cpl = MCHBAR8(BIOS_RESET_CPL);
420 bios_reset_cpl |= 3;
421 MCHBAR8(BIOS_RESET_CPL) = bios_reset_cpl;
422 printk(BIOS_DEBUG, "Set BIOS_RESET_CPL\n");
423
424 /* Configure turbo power limits 1ms after reset complete bit */
425 mdelay(1);
Angel Pons9f6cdba2020-10-25 00:02:29 +0000426 set_power_limits(28);
Duncan Lauriec88c54c2014-04-30 16:36:13 -0700427}
428
Duncan Lauriec88c54c2014-04-30 16:36:13 -0700429static struct device_operations systemagent_ops = {
Elyes HAOUAS1d191272018-11-27 12:23:48 +0100430 .read_resources = systemagent_read_resources,
Nico Huber68680dd2020-03-31 17:34:52 +0200431 .acpi_fill_ssdt = generate_cpu_entries,
Elyes HAOUAS1d191272018-11-27 12:23:48 +0100432 .set_resources = pci_dev_set_resources,
433 .enable_resources = pci_dev_enable_resources,
434 .init = systemagent_init,
Angel Ponscb2080f2020-10-23 15:45:44 +0200435 .ops_pci = &pci_dev_ops_pci,
Duncan Lauriec88c54c2014-04-30 16:36:13 -0700436};
437
438static const unsigned short systemagent_ids[] = {
439 0x0a04, /* Haswell ULT */
440 0x1604, /* Broadwell-U/Y */
441 0x1610, /* Broadwell-H Desktop */
442 0x1614, /* Broadwell-H Mobile */
443 0
444};
445
446static const struct pci_driver systemagent_driver __pci_driver = {
447 .ops = &systemagent_ops,
448 .vendor = PCI_VENDOR_ID_INTEL,
449 .devices = systemagent_ids
450};
Angel Ponse866a2f2020-10-23 15:54:33 +0200451
452static struct device_operations pci_domain_ops = {
453 .read_resources = &pci_domain_read_resources,
454 .set_resources = &pci_domain_set_resources,
455 .scan_bus = &pci_domain_scan_bus,
456#if CONFIG(HAVE_ACPI_TABLES)
457 .write_acpi_tables = &northbridge_write_acpi_tables,
458#endif
459};
460
461static struct device_operations cpu_bus_ops = {
462 .read_resources = noop_read_resources,
463 .set_resources = noop_set_resources,
Angel Pons9a1b7202020-11-23 13:17:56 +0100464 .init = mp_cpu_bus_init,
Angel Ponse866a2f2020-10-23 15:54:33 +0200465};
466
467static void broadwell_enable(struct device *dev)
468{
469 /* Set the operations if it is a special bus type */
470 if (dev->path.type == DEVICE_PATH_DOMAIN) {
471 dev->ops = &pci_domain_ops;
472 } else if (dev->path.type == DEVICE_PATH_CPU_CLUSTER) {
473 dev->ops = &cpu_bus_ops;
Angel Ponse866a2f2020-10-23 15:54:33 +0200474 }
475}
476
Angel Ponse780d982021-01-26 19:26:51 +0100477static void broadwell_init_pre_device(void *chip_info)
478{
479 broadwell_run_reference_code();
480}
481
Angel Ponse866a2f2020-10-23 15:54:33 +0200482struct chip_operations soc_intel_broadwell_ops = {
483 CHIP_NAME("Intel Broadwell")
484 .enable_dev = &broadwell_enable,
485 .init = &broadwell_init_pre_device,
486};