blob: 5c5f41ad4a37c0cd4ef664fdf55bbfd0181d39c1 [file] [log] [blame]
Stefan Reinauer00636b02012-04-04 00:08:51 +02001/*
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.
Stefan Reinauer00636b02012-04-04 00:08:51 +020015 */
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/model_206ax/model_206ax.h>
Duncan Laurie77dbbac2012-06-25 09:51:59 -070023#include <cpu/x86/msr.h>
Aaron Durbinc6f27222013-04-03 09:56:57 -050024#include <cpu/x86/mtrr.h>
Stefan Reinauer00636b02012-04-04 00:08:51 +020025#include <device/device.h>
26#include <device/pci.h>
27#include <device/pci_ids.h>
Stefan Reinauer00636b02012-04-04 00:08:51 +020028#include <stdlib.h>
29#include <string.h>
Stefan Reinauer00636b02012-04-04 00:08:51 +020030#include <cpu/cpu.h>
Stefan Reinauerbb11e602012-05-10 12:15:18 -070031#include <cbmem.h>
Stefan Reinauer00636b02012-04-04 00:08:51 +020032#include "chip.h"
33#include "sandybridge.h"
Vladimir Serbinenkoc16e9dfa2015-05-29 16:18:01 +020034#include <cpu/intel/smm/gen1/smi.h>
Stefan Reinauer00636b02012-04-04 00:08:51 +020035
36static int bridge_revision_id = -1;
37
Kyösti Mälkkif7bfc342013-10-18 11:02:46 +030038/* IGD UMA memory */
39static uint64_t uma_memory_base = 0;
40static uint64_t uma_memory_size = 0;
41
Stefan Reinauer00636b02012-04-04 00:08:51 +020042int bridge_silicon_revision(void)
43{
44 if (bridge_revision_id < 0) {
45 uint8_t stepping = cpuid_eax(1) & 0xf;
46 uint8_t bridge_id = pci_read_config16(
47 dev_find_slot(0, PCI_DEVFN(0, 0)),
48 PCI_DEVICE_ID) & 0xf0;
49 bridge_revision_id = bridge_id | stepping;
50 }
51 return bridge_revision_id;
52}
53
54/* Reserve everything between A segment and 1MB:
55 *
56 * 0xa0000 - 0xbffff: legacy VGA
57 * 0xc0000 - 0xcffff: VGA OPROM (needed by kernel)
58 * 0xe0000 - 0xfffff: SeaBIOS, if used, otherwise DMI
59 */
60static const int legacy_hole_base_k = 0xa0000 / 1024;
61static const int legacy_hole_size_k = 384;
62
Kyösti Mälkkie25b5ef2016-12-02 08:56:05 +020063static int get_pcie_bar(u32 *base)
Stefan Reinauer00636b02012-04-04 00:08:51 +020064{
65 device_t dev;
66 u32 pciexbar_reg;
67
68 *base = 0;
Stefan Reinauer00636b02012-04-04 00:08:51 +020069
70 dev = dev_find_slot(0, PCI_DEVFN(0, 0));
71 if (!dev)
72 return 0;
73
74 pciexbar_reg = pci_read_config32(dev, PCIEXBAR);
75
76 if (!(pciexbar_reg & (1 << 0)))
77 return 0;
78
79 switch ((pciexbar_reg >> 1) & 3) {
80 case 0: // 256MB
81 *base = pciexbar_reg & ((1 << 31)|(1 << 30)|(1 << 29)|(1 << 28));
Kyösti Mälkkie25b5ef2016-12-02 08:56:05 +020082 return 256;
Stefan Reinauer00636b02012-04-04 00:08:51 +020083 case 1: // 128M
84 *base = pciexbar_reg & ((1 << 31)|(1 << 30)|(1 << 29)|(1 << 28)|(1 << 27));
Kyösti Mälkkie25b5ef2016-12-02 08:56:05 +020085 return 128;
Stefan Reinauer00636b02012-04-04 00:08:51 +020086 case 2: // 64M
87 *base = pciexbar_reg & ((1 << 31)|(1 << 30)|(1 << 29)|(1 << 28)|(1 << 27)|(1 << 26));
Kyösti Mälkkie25b5ef2016-12-02 08:56:05 +020088 return 64;
Stefan Reinauer00636b02012-04-04 00:08:51 +020089 }
90
91 return 0;
92}
93
Stefan Reinauer00636b02012-04-04 00:08:51 +020094static void add_fixed_resources(struct device *dev, int index)
95{
Kyösti Mälkki7f189cc2012-07-27 13:12:03 +030096 mmio_resource(dev, index++, uma_memory_base >> 10, uma_memory_size >> 10);
Stefan Reinauer00636b02012-04-04 00:08:51 +020097
Aaron Durbinc9650762013-03-22 22:03:09 -050098 mmio_resource(dev, index++, legacy_hole_base_k,
99 (0xc0000 >> 10) - legacy_hole_base_k);
100 reserved_ram_resource(dev, index++, 0xc0000 >> 10,
101 (0x100000 - 0xc0000) >> 10);
Kyösti Mälkki1ec5e742012-07-26 23:51:20 +0300102
103#if CONFIG_CHROMEOS_RAMOOPS
Aaron Durbinc9650762013-03-22 22:03:09 -0500104 reserved_ram_resource(dev, index++,
105 CONFIG_CHROMEOS_RAMOOPS_RAM_START >> 10,
Kyösti Mälkki1ec5e742012-07-26 23:51:20 +0300106 CONFIG_CHROMEOS_RAMOOPS_RAM_SIZE >> 10);
107#endif
108
Nico Huber593e7de2015-11-04 15:46:00 +0100109 if ((bridge_silicon_revision() & BASE_REV_MASK) == BASE_REV_SNB) {
110 /* Required for SandyBridge sighting 3715511 */
111 bad_ram_resource(dev, index++, 0x20000000 >> 10, 0x00200000 >> 10);
112 bad_ram_resource(dev, index++, 0x40000000 >> 10, 0x00200000 >> 10);
113 }
Nico Huberbb9469c2015-10-21 11:49:23 +0200114
115 /* Reserve IOMMU BARs */
116 const u32 capid0_a = pci_read_config32(dev, 0xe4);
117 if (!(capid0_a & (1 << 23))) {
118 mmio_resource(dev, index++, IOMMU_BASE1 >> 10, 4);
119 mmio_resource(dev, index++, IOMMU_BASE2 >> 10, 4);
120 }
Stefan Reinauer00636b02012-04-04 00:08:51 +0200121}
122
Stefan Reinauer00636b02012-04-04 00:08:51 +0200123static void pci_domain_set_resources(device_t dev)
124{
125 uint64_t tom, me_base, touud;
126 uint32_t tseg_base, uma_size, tolud;
127 uint16_t ggc;
128 unsigned long long tomk;
129
130 /* Total Memory 2GB example:
131 *
132 * 00000000 0000MB-1992MB 1992MB RAM (writeback)
133 * 7c800000 1992MB-2000MB 8MB TSEG (SMRR)
134 * 7d000000 2000MB-2002MB 2MB GFX GTT (uncached)
135 * 7d200000 2002MB-2034MB 32MB GFX UMA (uncached)
136 * 7f200000 2034MB TOLUD
137 * 7f800000 2040MB MEBASE
138 * 7f800000 2040MB-2048MB 8MB ME UMA (uncached)
139 * 80000000 2048MB TOM
140 * 100000000 4096MB-4102MB 6MB RAM (writeback)
141 *
142 * Total Memory 4GB example:
143 *
144 * 00000000 0000MB-2768MB 2768MB RAM (writeback)
145 * ad000000 2768MB-2776MB 8MB TSEG (SMRR)
146 * ad800000 2776MB-2778MB 2MB GFX GTT (uncached)
147 * ada00000 2778MB-2810MB 32MB GFX UMA (uncached)
148 * afa00000 2810MB TOLUD
149 * ff800000 4088MB MEBASE
150 * ff800000 4088MB-4096MB 8MB ME UMA (uncached)
151 * 100000000 4096MB TOM
152 * 100000000 4096MB-5374MB 1278MB RAM (writeback)
153 * 14fe00000 5368MB TOUUD
154 */
155
156 /* Top of Upper Usable DRAM, including remap */
157 touud = pci_read_config32(dev, TOUUD+4);
158 touud <<= 32;
159 touud |= pci_read_config32(dev, TOUUD);
160
161 /* Top of Lower Usable DRAM */
162 tolud = pci_read_config32(dev, TOLUD);
163
164 /* Top of Memory - does not account for any UMA */
165 tom = pci_read_config32(dev, 0xa4);
166 tom <<= 32;
167 tom |= pci_read_config32(dev, 0xa0);
168
169 printk(BIOS_DEBUG, "TOUUD 0x%llx TOLUD 0x%08x TOM 0x%llx\n",
170 touud, tolud, tom);
171
172 /* ME UMA needs excluding if total memory <4GB */
173 me_base = pci_read_config32(dev, 0x74);
174 me_base <<= 32;
175 me_base |= pci_read_config32(dev, 0x70);
176
177 printk(BIOS_DEBUG, "MEBASE 0x%llx\n", me_base);
178
Patrick Rudolph240766a2015-10-15 15:33:25 +0200179 uma_memory_base = tolud;
Stefan Reinauer00636b02012-04-04 00:08:51 +0200180 tomk = tolud >> 10;
181 if (me_base == tolud) {
182 /* ME is from MEBASE-TOM */
183 uma_size = (tom - me_base) >> 10;
184 /* Increment TOLUD to account for ME as RAM */
185 tolud += uma_size << 10;
186 /* UMA starts at old TOLUD */
187 uma_memory_base = tomk * 1024ULL;
188 uma_memory_size = uma_size * 1024ULL;
189 printk(BIOS_DEBUG, "ME UMA base 0x%llx size %uM\n",
190 me_base, uma_size >> 10);
191 }
192
193 /* Graphics memory comes next */
194 ggc = pci_read_config16(dev, GGC);
195 if (!(ggc & 2)) {
196 printk(BIOS_DEBUG, "IGD decoded, subtracting ");
197
198 /* Graphics memory */
199 uma_size = ((ggc >> 3) & 0x1f) * 32 * 1024ULL;
200 printk(BIOS_DEBUG, "%uM UMA", uma_size >> 10);
201 tomk -= uma_size;
202 uma_memory_base = tomk * 1024ULL;
203 uma_memory_size += uma_size * 1024ULL;
204
205 /* GTT Graphics Stolen Memory Size (GGMS) */
206 uma_size = ((ggc >> 8) & 0x3) * 1024ULL;
207 tomk -= uma_size;
208 uma_memory_base = tomk * 1024ULL;
209 uma_memory_size += uma_size * 1024ULL;
210 printk(BIOS_DEBUG, " and %uM GTT\n", uma_size >> 10);
211 }
212
213 /* Calculate TSEG size from its base which must be below GTT */
214 tseg_base = pci_read_config32(dev, 0xb8);
215 uma_size = (uma_memory_base - tseg_base) >> 10;
216 tomk -= uma_size;
217 uma_memory_base = tomk * 1024ULL;
218 uma_memory_size += uma_size * 1024ULL;
219 printk(BIOS_DEBUG, "TSEG base 0x%08x size %uM\n",
220 tseg_base, uma_size >> 10);
221
222 printk(BIOS_INFO, "Available memory below 4GB: %lluM\n", tomk >> 10);
223
224 /* Report the memory regions */
225 ram_resource(dev, 3, 0, legacy_hole_base_k);
226 ram_resource(dev, 4, legacy_hole_base_k + legacy_hole_size_k,
227 (tomk - (legacy_hole_base_k + legacy_hole_size_k)));
228
229 /*
230 * If >= 4GB installed then memory from TOLUD to 4GB
231 * is remapped above TOM, TOUUD will account for both
232 */
233 touud >>= 10; /* Convert to KB */
234 if (touud > 4096 * 1024) {
235 ram_resource(dev, 5, 4096 * 1024, touud - (4096 * 1024));
236 printk(BIOS_INFO, "Available memory above 4GB: %lluM\n",
237 (touud >> 10) - 4096);
238 }
239
240 add_fixed_resources(dev, 6);
241
242 assign_resources(dev->link_list);
Stefan Reinauer00636b02012-04-04 00:08:51 +0200243}
244
245 /* TODO We could determine how many PCIe busses we need in
246 * the bar. For now that number is hardcoded to a max of 64.
247 * See e7525/northbridge.c for an example.
248 */
249static struct device_operations pci_domain_ops = {
250 .read_resources = pci_domain_read_resources,
251 .set_resources = pci_domain_set_resources,
252 .enable_resources = NULL,
253 .init = NULL,
254 .scan_bus = pci_domain_scan_bus,
Kyösti Mälkki872c9222013-07-03 09:44:28 +0300255 .ops_pci_bus = pci_bus_default_ops,
Nico Huber9d9ce0d2015-10-26 12:59:49 +0100256 .write_acpi_tables = northbridge_write_acpi_tables,
Stefan Reinauer00636b02012-04-04 00:08:51 +0200257};
258
259static void mc_read_resources(device_t dev)
260{
Kyösti Mälkkie25b5ef2016-12-02 08:56:05 +0200261 u32 pcie_config_base;
262 int buses;
Stefan Reinauer00636b02012-04-04 00:08:51 +0200263
264 pci_dev_read_resources(dev);
265
Kyösti Mälkkie25b5ef2016-12-02 08:56:05 +0200266 buses = get_pcie_bar(&pcie_config_base);
267 if (buses) {
Kyösti Mälkki27198ac2016-12-02 14:38:13 +0200268 struct resource *resource = new_resource(dev, PCIEXBAR);
Kyösti Mälkkie25b5ef2016-12-02 08:56:05 +0200269 mmconf_resource_init(resource, pcie_config_base, buses);
270 }
Stefan Reinauer00636b02012-04-04 00:08:51 +0200271}
272
Stefan Reinauer00636b02012-04-04 00:08:51 +0200273static void intel_set_subsystem(device_t dev, unsigned vendor, unsigned device)
274{
275 if (!vendor || !device) {
276 pci_write_config32(dev, PCI_SUBSYSTEM_VENDOR_ID,
277 pci_read_config32(dev, PCI_VENDOR_ID));
278 } else {
279 pci_write_config32(dev, PCI_SUBSYSTEM_VENDOR_ID,
280 ((device & 0xffff) << 16) | (vendor & 0xffff));
281 }
282}
283
284static void northbridge_dmi_init(struct device *dev)
285{
286 u32 reg32;
287
288 /* Clear error status bits */
289 DMIBAR32(0x1c4) = 0xffffffff;
290 DMIBAR32(0x1d0) = 0xffffffff;
291
292 /* Steps prior to DMI ASPM */
Vincent Palatin0ff99b72012-03-28 16:10:29 -0700293 if ((bridge_silicon_revision() & BASE_REV_MASK) == BASE_REV_SNB) {
294 reg32 = DMIBAR32(0x250);
295 reg32 &= ~((1 << 22)|(1 << 20));
296 reg32 |= (1 << 21);
297 DMIBAR32(0x250) = reg32;
298 }
Stefan Reinauer00636b02012-04-04 00:08:51 +0200299
300 reg32 = DMIBAR32(0x238);
301 reg32 |= (1 << 29);
302 DMIBAR32(0x238) = reg32;
303
304 if (bridge_silicon_revision() >= SNB_STEP_D0) {
305 reg32 = DMIBAR32(0x1f8);
306 reg32 |= (1 << 16);
307 DMIBAR32(0x1f8) = reg32;
308 } else if (bridge_silicon_revision() >= SNB_STEP_D1) {
309 reg32 = DMIBAR32(0x1f8);
310 reg32 &= ~(1 << 26);
311 reg32 |= (1 << 16);
312 DMIBAR32(0x1f8) = reg32;
313
314 reg32 = DMIBAR32(0x1fc);
315 reg32 |= (1 << 12) | (1 << 23);
316 DMIBAR32(0x1fc) = reg32;
317 }
318
319 /* Enable ASPM on SNB link, should happen before PCH link */
Vincent Palatin0ff99b72012-03-28 16:10:29 -0700320 if ((bridge_silicon_revision() & BASE_REV_MASK) == BASE_REV_SNB) {
321 reg32 = DMIBAR32(0xd04);
322 reg32 |= (1 << 4);
323 DMIBAR32(0xd04) = reg32;
324 }
Stefan Reinauer00636b02012-04-04 00:08:51 +0200325
326 reg32 = DMIBAR32(0x88);
327 reg32 |= (1 << 1) | (1 << 0);
328 DMIBAR32(0x88) = reg32;
329}
330
Patrick Rudolph3660c0f2015-07-28 08:01:02 +0200331/* Disable unused PEG devices based on devicetree */
332static void disable_peg(void)
333{
334 struct device *dev;
335 u32 reg;
336
337 dev = dev_find_slot(0, PCI_DEVFN(0, 0));
338 reg = pci_read_config32(dev, DEVEN);
339
340 dev = dev_find_slot(0, PCI_DEVFN(1, 2));
Nico Huber2dc15e92016-02-04 18:59:48 +0100341 if (!dev || !dev->enabled) {
Patrick Rudolph3660c0f2015-07-28 08:01:02 +0200342 printk(BIOS_DEBUG, "Disabling PEG12.\n");
343 reg &= ~DEVEN_PEG12;
344 }
345 dev = dev_find_slot(0, PCI_DEVFN(1, 1));
Nico Huber2dc15e92016-02-04 18:59:48 +0100346 if (!dev || !dev->enabled) {
Patrick Rudolph3660c0f2015-07-28 08:01:02 +0200347 printk(BIOS_DEBUG, "Disabling PEG11.\n");
348 reg &= ~DEVEN_PEG11;
349 }
350 dev = dev_find_slot(0, PCI_DEVFN(1, 0));
Nico Huber2dc15e92016-02-04 18:59:48 +0100351 if (!dev || !dev->enabled) {
Patrick Rudolph3660c0f2015-07-28 08:01:02 +0200352 printk(BIOS_DEBUG, "Disabling PEG10.\n");
353 reg &= ~DEVEN_PEG10;
354 }
355 dev = dev_find_slot(0, PCI_DEVFN(2, 0));
Nico Huber2dc15e92016-02-04 18:59:48 +0100356 if (!dev || !dev->enabled) {
Patrick Rudolph3660c0f2015-07-28 08:01:02 +0200357 printk(BIOS_DEBUG, "Disabling IGD.\n");
358 reg &= ~DEVEN_IGD;
359 }
Patrick Rudolphecd4be82017-05-14 12:40:50 +0200360 dev = dev_find_slot(0, PCI_DEVFN(4, 0));
361 if (!dev || !dev->enabled) {
362 printk(BIOS_DEBUG, "Disabling Device 4.\n");
363 reg &= ~DEVEN_D4EN;
364 }
Patrick Rudolph3660c0f2015-07-28 08:01:02 +0200365 dev = dev_find_slot(0, PCI_DEVFN(6, 0));
Nico Huber2dc15e92016-02-04 18:59:48 +0100366 if (!dev || !dev->enabled) {
Patrick Rudolph3660c0f2015-07-28 08:01:02 +0200367 printk(BIOS_DEBUG, "Disabling PEG60.\n");
368 reg &= ~DEVEN_PEG60;
369 }
Patrick Rudolphecd4be82017-05-14 12:40:50 +0200370 dev = dev_find_slot(0, PCI_DEVFN(7, 0));
371 if (!dev || !dev->enabled) {
372 printk(BIOS_DEBUG, "Disabling Device 7.\n");
373 reg &= ~DEVEN_D7EN;
374 }
Patrick Rudolph3660c0f2015-07-28 08:01:02 +0200375
376 dev = dev_find_slot(0, PCI_DEVFN(0, 0));
377 pci_write_config32(dev, DEVEN, reg);
378 if (!(reg & (DEVEN_PEG60 | DEVEN_PEG10 | DEVEN_PEG11 | DEVEN_PEG12))) {
379 /* Set the PEG clock gating bit.
380 * Disables the IO clock on all PEG devices. */
381 MCHBAR32(0x7010) = MCHBAR32(0x7010) | 0x01;
382 printk(BIOS_DEBUG, "Disabling PEG IO clock.\n");
383 }
384}
385
Stefan Reinauer00636b02012-04-04 00:08:51 +0200386static void northbridge_init(struct device *dev)
387{
388 u8 bios_reset_cpl;
Duncan Lauriefe7b5d22012-06-23 20:14:07 -0700389 u32 bridge_type;
Stefan Reinauer00636b02012-04-04 00:08:51 +0200390
391 northbridge_dmi_init(dev);
392
Duncan Lauriefe7b5d22012-06-23 20:14:07 -0700393 bridge_type = MCHBAR32(0x5f10);
394 bridge_type &= ~0xff;
395
396 if ((bridge_silicon_revision() & BASE_REV_MASK) == BASE_REV_IVB) {
397 /* Enable Power Aware Interrupt Routing */
398 u8 pair = MCHBAR8(0x5418);
399 pair &= ~0xf; /* Clear 3:0 */
400 pair |= 0x4; /* Fixed Priority */
401 MCHBAR8(0x5418) = pair;
402
403 /* 30h for IvyBridge */
404 bridge_type |= 0x30;
405 } else {
406 /* 20h for Sandybridge */
407 bridge_type |= 0x20;
408 }
409 MCHBAR32(0x5f10) = bridge_type;
410
Patrick Rudolphaad34cd2015-10-21 18:05:01 +0200411 /* Turn off unused devices. Has to be done before
412 * setting BIOS_RESET_CPL.
413 */
414 disable_peg();
415
Stefan Reinauer00636b02012-04-04 00:08:51 +0200416 /*
417 * Set bit 0 of BIOS_RESET_CPL to indicate to the CPU
418 * that BIOS has initialized memory and power management
419 */
420 bios_reset_cpl = MCHBAR8(BIOS_RESET_CPL);
421 bios_reset_cpl |= 1;
422 MCHBAR8(BIOS_RESET_CPL) = bios_reset_cpl;
423 printk(BIOS_DEBUG, "Set BIOS_RESET_CPL\n");
424
425 /* Configure turbo power limits 1ms after reset complete bit */
426 mdelay(1);
427 set_power_limits(28);
428
Duncan Laurie77dbbac2012-06-25 09:51:59 -0700429 /*
430 * CPUs with configurable TDP also need power limits set
431 * in MCHBAR. Use same values from MSR_PKG_POWER_LIMIT.
432 */
433 if (cpu_config_tdp_levels()) {
434 msr_t msr = rdmsr(MSR_PKG_POWER_LIMIT);
435 MCHBAR32(0x59A0) = msr.lo;
436 MCHBAR32(0x59A4) = msr.hi;
437 }
438
Stefan Reinauer00636b02012-04-04 00:08:51 +0200439 /* Set here before graphics PM init */
440 MCHBAR32(0x5500) = 0x00100001;
441}
442
Vladimir Serbinenkoc16e9dfa2015-05-29 16:18:01 +0200443static u32 northbridge_get_base_reg(device_t dev, int reg)
444{
445 u32 value;
446
447 value = pci_read_config32(dev, reg);
448 /* Base registers are at 1MiB granularity. */
449 value &= ~((1 << 20) - 1);
450 return value;
451}
452
Nico Huber6f8b7df2016-10-08 18:42:46 +0200453u32 northbridge_get_tseg_base(void)
Vladimir Serbinenkoc16e9dfa2015-05-29 16:18:01 +0200454{
Nico Huber6f8b7df2016-10-08 18:42:46 +0200455 const device_t dev = dev_find_slot(0, PCI_DEVFN(0, 0));
Vladimir Serbinenkoc16e9dfa2015-05-29 16:18:01 +0200456
Nico Huber6f8b7df2016-10-08 18:42:46 +0200457 return northbridge_get_base_reg(dev, TSEG);
Vladimir Serbinenkoc16e9dfa2015-05-29 16:18:01 +0200458}
459
460void northbridge_write_smram(u8 smram)
461{
462 pci_write_config8(dev_find_slot(0, PCI_DEVFN(0, 0)), SMRAM, smram);
463}
464
Stefan Reinauer00636b02012-04-04 00:08:51 +0200465static struct pci_operations intel_pci_ops = {
466 .set_subsystem = intel_set_subsystem,
467};
468
469static struct device_operations mc_ops = {
470 .read_resources = mc_read_resources,
Kyösti Mälkki27198ac2016-12-02 14:38:13 +0200471 .set_resources = pci_dev_set_resources,
Stefan Reinauer00636b02012-04-04 00:08:51 +0200472 .enable_resources = pci_dev_enable_resources,
473 .init = northbridge_init,
Stefan Reinauer00636b02012-04-04 00:08:51 +0200474 .scan_bus = 0,
475 .ops_pci = &intel_pci_ops,
Vladimir Serbinenko0a669912014-10-05 14:34:17 +0200476 .acpi_fill_ssdt_generator = generate_cpu_entries,
Stefan Reinauer00636b02012-04-04 00:08:51 +0200477};
478
Walter Murphy496f4a02012-04-23 11:08:03 -0700479static const struct pci_driver mc_driver_0100 __pci_driver = {
480 .ops = &mc_ops,
481 .vendor = PCI_VENDOR_ID_INTEL,
482 .device = 0x0100,
483};
484
Stefan Reinauer00636b02012-04-04 00:08:51 +0200485static const struct pci_driver mc_driver __pci_driver = {
486 .ops = &mc_ops,
487 .vendor = PCI_VENDOR_ID_INTEL,
488 .device = 0x0104, /* Sandy bridge */
489};
490
Damien Zammit35170382014-10-29 00:11:53 +1100491static const struct pci_driver mc_driver_150 __pci_driver = {
492 .ops = &mc_ops,
493 .vendor = PCI_VENDOR_ID_INTEL,
494 .device = 0x0150, /* Ivy bridge */
495};
496
Stefan Reinauer00636b02012-04-04 00:08:51 +0200497static const struct pci_driver mc_driver_1 __pci_driver = {
498 .ops = &mc_ops,
499 .vendor = PCI_VENDOR_ID_INTEL,
500 .device = 0x0154, /* Ivy bridge */
501};
502
503static void cpu_bus_init(device_t dev)
504{
505 initialize_cpus(dev->link_list);
506}
507
Stefan Reinauer00636b02012-04-04 00:08:51 +0200508static struct device_operations cpu_bus_ops = {
Edward O'Callaghan9f744622014-10-31 08:12:34 +1100509 .read_resources = DEVICE_NOOP,
510 .set_resources = DEVICE_NOOP,
511 .enable_resources = DEVICE_NOOP,
Stefan Reinauer00636b02012-04-04 00:08:51 +0200512 .init = cpu_bus_init,
513 .scan_bus = 0,
514};
515
516static void enable_dev(device_t dev)
517{
518 /* Set the operations if it is a special bus type */
Stefan Reinauer4aff4452013-02-12 14:17:15 -0800519 if (dev->path.type == DEVICE_PATH_DOMAIN) {
Stefan Reinauer00636b02012-04-04 00:08:51 +0200520 dev->ops = &pci_domain_ops;
Stefan Reinauer0aa37c42013-02-12 15:20:54 -0800521 } else if (dev->path.type == DEVICE_PATH_CPU_CLUSTER) {
Stefan Reinauer00636b02012-04-04 00:08:51 +0200522 dev->ops = &cpu_bus_ops;
523 }
524}
525
526struct chip_operations northbridge_intel_sandybridge_ops = {
Damien Zammit35170382014-10-29 00:11:53 +1100527 CHIP_NAME("Intel SandyBridge/IvyBridge integrated Northbridge")
Stefan Reinauer00636b02012-04-04 00:08:51 +0200528 .enable_dev = enable_dev,
529};