blob: c1cdea54287c95d1c823e7be9868855bae22cb7d [file] [log] [blame]
Angel Pons6e5aabd2020-03-23 23:44:42 +01001/* SPDX-License-Identifier: GPL-2.0-only */
Stefan Reinauer00636b02012-04-04 00:08:51 +02002
3#include <console/console.h>
Furquan Shaikh76cedd22020-05-02 10:24:23 -07004#include <acpi/acpi.h>
Kyösti Mälkkif1b58b72019-03-01 13:43:02 +02005#include <device/pci_ops.h>
Stefan Reinauer00636b02012-04-04 00:08:51 +02006#include <stdint.h>
7#include <delay.h>
8#include <cpu/intel/model_206ax/model_206ax.h>
Duncan Laurie77dbbac2012-06-25 09:51:59 -07009#include <cpu/x86/msr.h>
Stefan Reinauer00636b02012-04-04 00:08:51 +020010#include <device/device.h>
11#include <device/pci.h>
12#include <device/pci_ids.h>
Stefan Reinauer00636b02012-04-04 00:08:51 +020013#include "chip.h"
14#include "sandybridge.h"
Kyösti Mälkkif091f4d2019-08-14 03:49:21 +030015#include <cpu/intel/smm_reloc.h>
Stefan Reinauer00636b02012-04-04 00:08:51 +020016
17static int bridge_revision_id = -1;
18
Kyösti Mälkkif7bfc342013-10-18 11:02:46 +030019/* IGD UMA memory */
20static uint64_t uma_memory_base = 0;
21static uint64_t uma_memory_size = 0;
22
Stefan Reinauer00636b02012-04-04 00:08:51 +020023int bridge_silicon_revision(void)
24{
25 if (bridge_revision_id < 0) {
Angel Pons7c49cb82020-03-16 23:17:32 +010026 uint8_t stepping = cpuid_eax(1) & 0x0f;
27 uint8_t bridge_id = pci_read_config16(pcidev_on_root(0, 0), PCI_DEVICE_ID);
28 bridge_revision_id = (bridge_id & 0xf0) | stepping;
Stefan Reinauer00636b02012-04-04 00:08:51 +020029 }
30 return bridge_revision_id;
31}
32
33/* Reserve everything between A segment and 1MB:
34 *
35 * 0xa0000 - 0xbffff: legacy VGA
36 * 0xc0000 - 0xcffff: VGA OPROM (needed by kernel)
37 * 0xe0000 - 0xfffff: SeaBIOS, if used, otherwise DMI
38 */
39static const int legacy_hole_base_k = 0xa0000 / 1024;
40static const int legacy_hole_size_k = 384;
41
Kyösti Mälkkie25b5ef2016-12-02 08:56:05 +020042static int get_pcie_bar(u32 *base)
Stefan Reinauer00636b02012-04-04 00:08:51 +020043{
Elyes HAOUASab8743c2018-02-09 08:21:40 +010044 struct device *dev;
Stefan Reinauer00636b02012-04-04 00:08:51 +020045 u32 pciexbar_reg;
46
47 *base = 0;
Stefan Reinauer00636b02012-04-04 00:08:51 +020048
Kyösti Mälkkic70eed12018-05-22 02:18:00 +030049 dev = pcidev_on_root(0, 0);
Stefan Reinauer00636b02012-04-04 00:08:51 +020050 if (!dev)
51 return 0;
52
53 pciexbar_reg = pci_read_config32(dev, PCIEXBAR);
54
Angel Pons7c49cb82020-03-16 23:17:32 +010055 /* MMCFG not supported or not enabled */
Stefan Reinauer00636b02012-04-04 00:08:51 +020056 if (!(pciexbar_reg & (1 << 0)))
57 return 0;
58
59 switch ((pciexbar_reg >> 1) & 3) {
Angel Pons7c49cb82020-03-16 23:17:32 +010060 case 0: /* 256MB */
61 *base = pciexbar_reg & (0xffffffffULL << 28);
Kyösti Mälkkie25b5ef2016-12-02 08:56:05 +020062 return 256;
Angel Pons7c49cb82020-03-16 23:17:32 +010063 case 1: /* 128M */
64 *base = pciexbar_reg & (0xffffffffULL << 27);
Kyösti Mälkkie25b5ef2016-12-02 08:56:05 +020065 return 128;
Angel Pons7c49cb82020-03-16 23:17:32 +010066 case 2: /* 64M */
67 *base = pciexbar_reg & (0xffffffffULL << 26);
Kyösti Mälkkie25b5ef2016-12-02 08:56:05 +020068 return 64;
Stefan Reinauer00636b02012-04-04 00:08:51 +020069 }
70
71 return 0;
72}
73
Aaron Durbin1ca24332020-05-13 11:38:35 -060074static const char *northbridge_acpi_name(const struct device *dev)
75{
76 if (dev->path.type == DEVICE_PATH_DOMAIN)
77 return "PCI0";
78
79 if (dev->path.type != DEVICE_PATH_PCI)
80 return NULL;
81
82 switch (dev->path.pci.devfn) {
83 case PCI_DEVFN(0, 0):
84 return "MCHC";
85 }
86
87 return NULL;
88}
89
90/*
91 * TODO We could determine how many PCIe busses we need in the bar.
92 * For now, that number is hardcoded to a max of 64.
93 */
94static struct device_operations pci_domain_ops = {
95 .read_resources = pci_domain_read_resources,
96 .set_resources = pci_domain_set_resources,
97 .scan_bus = pci_domain_scan_bus,
98 .write_acpi_tables = northbridge_write_acpi_tables,
99 .acpi_name = northbridge_acpi_name,
100};
101
Stefan Reinauer00636b02012-04-04 00:08:51 +0200102static void add_fixed_resources(struct device *dev, int index)
103{
Kyösti Mälkki7f189cc2012-07-27 13:12:03 +0300104 mmio_resource(dev, index++, uma_memory_base >> 10, uma_memory_size >> 10);
Stefan Reinauer00636b02012-04-04 00:08:51 +0200105
Angel Pons7c49cb82020-03-16 23:17:32 +0100106 mmio_resource(dev, index++, legacy_hole_base_k, (0xc0000 >> 10) - legacy_hole_base_k);
107
108 reserved_ram_resource(dev, index++, 0xc0000 >> 10, (0x100000 - 0xc0000) >> 10);
Kyösti Mälkki1ec5e742012-07-26 23:51:20 +0300109
Julius Wernercd49cce2019-03-05 16:53:33 -0800110#if CONFIG(CHROMEOS_RAMOOPS)
Aaron Durbinc9650762013-03-22 22:03:09 -0500111 reserved_ram_resource(dev, index++,
112 CONFIG_CHROMEOS_RAMOOPS_RAM_START >> 10,
Angel Pons7c49cb82020-03-16 23:17:32 +0100113 CONFIG_CHROMEOS_RAMOOPS_RAM_SIZE >> 10);
Kyösti Mälkki1ec5e742012-07-26 23:51:20 +0300114#endif
115
Nico Huber593e7de2015-11-04 15:46:00 +0100116 if ((bridge_silicon_revision() & BASE_REV_MASK) == BASE_REV_SNB) {
117 /* Required for SandyBridge sighting 3715511 */
118 bad_ram_resource(dev, index++, 0x20000000 >> 10, 0x00200000 >> 10);
119 bad_ram_resource(dev, index++, 0x40000000 >> 10, 0x00200000 >> 10);
120 }
Nico Huberbb9469c2015-10-21 11:49:23 +0200121
122 /* Reserve IOMMU BARs */
Angel Pons7c49cb82020-03-16 23:17:32 +0100123 const u32 capid0_a = pci_read_config32(dev, CAPID0_A);
Nico Huberbb9469c2015-10-21 11:49:23 +0200124 if (!(capid0_a & (1 << 23))) {
Angel Pons7c49cb82020-03-16 23:17:32 +0100125 mmio_resource(dev, index++, GFXVT_BASE >> 10, 4);
126 mmio_resource(dev, index++, VTVC0_BASE >> 10, 4);
Nico Huberbb9469c2015-10-21 11:49:23 +0200127 }
Stefan Reinauer00636b02012-04-04 00:08:51 +0200128}
129
Aaron Durbin1ca24332020-05-13 11:38:35 -0600130static void mc_read_resources(struct device *dev)
Stefan Reinauer00636b02012-04-04 00:08:51 +0200131{
Aaron Durbin1ca24332020-05-13 11:38:35 -0600132 u32 pcie_config_base;
133 int buses;
Stefan Reinauer00636b02012-04-04 00:08:51 +0200134 uint64_t tom, me_base, touud;
135 uint32_t tseg_base, uma_size, tolud;
136 uint16_t ggc;
137 unsigned long long tomk;
138
Aaron Durbin1ca24332020-05-13 11:38:35 -0600139 pci_dev_read_resources(dev);
140
141 buses = get_pcie_bar(&pcie_config_base);
142 if (buses) {
143 struct resource *resource = new_resource(dev, PCIEXBAR);
144 mmconf_resource_init(resource, pcie_config_base, buses);
145 }
146
Stefan Reinauer00636b02012-04-04 00:08:51 +0200147 /* Total Memory 2GB example:
148 *
149 * 00000000 0000MB-1992MB 1992MB RAM (writeback)
150 * 7c800000 1992MB-2000MB 8MB TSEG (SMRR)
151 * 7d000000 2000MB-2002MB 2MB GFX GTT (uncached)
152 * 7d200000 2002MB-2034MB 32MB GFX UMA (uncached)
153 * 7f200000 2034MB TOLUD
154 * 7f800000 2040MB MEBASE
155 * 7f800000 2040MB-2048MB 8MB ME UMA (uncached)
156 * 80000000 2048MB TOM
157 * 100000000 4096MB-4102MB 6MB RAM (writeback)
158 *
159 * Total Memory 4GB example:
160 *
161 * 00000000 0000MB-2768MB 2768MB RAM (writeback)
162 * ad000000 2768MB-2776MB 8MB TSEG (SMRR)
163 * ad800000 2776MB-2778MB 2MB GFX GTT (uncached)
164 * ada00000 2778MB-2810MB 32MB GFX UMA (uncached)
165 * afa00000 2810MB TOLUD
166 * ff800000 4088MB MEBASE
167 * ff800000 4088MB-4096MB 8MB ME UMA (uncached)
168 * 100000000 4096MB TOM
169 * 100000000 4096MB-5374MB 1278MB RAM (writeback)
170 * 14fe00000 5368MB TOUUD
171 */
172
173 /* Top of Upper Usable DRAM, including remap */
Aaron Durbin1ca24332020-05-13 11:38:35 -0600174 touud = pci_read_config32(dev, TOUUD + 4);
Stefan Reinauer00636b02012-04-04 00:08:51 +0200175 touud <<= 32;
Aaron Durbin1ca24332020-05-13 11:38:35 -0600176 touud |= pci_read_config32(dev, TOUUD);
Stefan Reinauer00636b02012-04-04 00:08:51 +0200177
178 /* Top of Lower Usable DRAM */
Aaron Durbin1ca24332020-05-13 11:38:35 -0600179 tolud = pci_read_config32(dev, TOLUD);
Stefan Reinauer00636b02012-04-04 00:08:51 +0200180
181 /* Top of Memory - does not account for any UMA */
Aaron Durbin1ca24332020-05-13 11:38:35 -0600182 tom = pci_read_config32(dev, TOM + 4);
Stefan Reinauer00636b02012-04-04 00:08:51 +0200183 tom <<= 32;
Aaron Durbin1ca24332020-05-13 11:38:35 -0600184 tom |= pci_read_config32(dev, TOM);
Stefan Reinauer00636b02012-04-04 00:08:51 +0200185
186 printk(BIOS_DEBUG, "TOUUD 0x%llx TOLUD 0x%08x TOM 0x%llx\n",
187 touud, tolud, tom);
188
Angel Pons7c49cb82020-03-16 23:17:32 +0100189 /* ME UMA needs excluding if total memory < 4GB */
Aaron Durbin1ca24332020-05-13 11:38:35 -0600190 me_base = pci_read_config32(dev, MESEG_BASE + 4);
Stefan Reinauer00636b02012-04-04 00:08:51 +0200191 me_base <<= 32;
Aaron Durbin1ca24332020-05-13 11:38:35 -0600192 me_base |= pci_read_config32(dev, MESEG_BASE);
Stefan Reinauer00636b02012-04-04 00:08:51 +0200193
194 printk(BIOS_DEBUG, "MEBASE 0x%llx\n", me_base);
195
Patrick Rudolph240766a2015-10-15 15:33:25 +0200196 uma_memory_base = tolud;
Stefan Reinauer00636b02012-04-04 00:08:51 +0200197 tomk = tolud >> 10;
198 if (me_base == tolud) {
199 /* ME is from MEBASE-TOM */
200 uma_size = (tom - me_base) >> 10;
201 /* Increment TOLUD to account for ME as RAM */
202 tolud += uma_size << 10;
203 /* UMA starts at old TOLUD */
204 uma_memory_base = tomk * 1024ULL;
205 uma_memory_size = uma_size * 1024ULL;
206 printk(BIOS_DEBUG, "ME UMA base 0x%llx size %uM\n",
207 me_base, uma_size >> 10);
208 }
209
210 /* Graphics memory comes next */
Aaron Durbin1ca24332020-05-13 11:38:35 -0600211 ggc = pci_read_config16(dev, GGC);
Stefan Reinauer00636b02012-04-04 00:08:51 +0200212 if (!(ggc & 2)) {
213 printk(BIOS_DEBUG, "IGD decoded, subtracting ");
214
215 /* Graphics memory */
216 uma_size = ((ggc >> 3) & 0x1f) * 32 * 1024ULL;
217 printk(BIOS_DEBUG, "%uM UMA", uma_size >> 10);
218 tomk -= uma_size;
219 uma_memory_base = tomk * 1024ULL;
220 uma_memory_size += uma_size * 1024ULL;
221
222 /* GTT Graphics Stolen Memory Size (GGMS) */
223 uma_size = ((ggc >> 8) & 0x3) * 1024ULL;
224 tomk -= uma_size;
225 uma_memory_base = tomk * 1024ULL;
226 uma_memory_size += uma_size * 1024ULL;
227 printk(BIOS_DEBUG, " and %uM GTT\n", uma_size >> 10);
228 }
229
230 /* Calculate TSEG size from its base which must be below GTT */
Aaron Durbin1ca24332020-05-13 11:38:35 -0600231 tseg_base = pci_read_config32(dev, TSEGMB);
Stefan Reinauer00636b02012-04-04 00:08:51 +0200232 uma_size = (uma_memory_base - tseg_base) >> 10;
233 tomk -= uma_size;
234 uma_memory_base = tomk * 1024ULL;
235 uma_memory_size += uma_size * 1024ULL;
Angel Pons7c49cb82020-03-16 23:17:32 +0100236 printk(BIOS_DEBUG, "TSEG base 0x%08x size %uM\n", tseg_base, uma_size >> 10);
Stefan Reinauer00636b02012-04-04 00:08:51 +0200237
238 printk(BIOS_INFO, "Available memory below 4GB: %lluM\n", tomk >> 10);
239
240 /* Report the memory regions */
241 ram_resource(dev, 3, 0, legacy_hole_base_k);
242 ram_resource(dev, 4, legacy_hole_base_k + legacy_hole_size_k,
Angel Pons7c49cb82020-03-16 23:17:32 +0100243 (tomk - (legacy_hole_base_k + legacy_hole_size_k)));
Stefan Reinauer00636b02012-04-04 00:08:51 +0200244
245 /*
Angel Pons7c49cb82020-03-16 23:17:32 +0100246 * If >= 4GB installed, then memory from TOLUD to 4GB is remapped above TOM.
247 * TOUUD will account for both memory chunks.
Stefan Reinauer00636b02012-04-04 00:08:51 +0200248 */
249 touud >>= 10; /* Convert to KB */
250 if (touud > 4096 * 1024) {
251 ram_resource(dev, 5, 4096 * 1024, touud - (4096 * 1024));
Angel Pons7c49cb82020-03-16 23:17:32 +0100252 printk(BIOS_INFO, "Available memory above 4GB: %lluM\n", (touud >> 10) - 4096);
Stefan Reinauer00636b02012-04-04 00:08:51 +0200253 }
254
255 add_fixed_resources(dev, 6);
Stefan Reinauer00636b02012-04-04 00:08:51 +0200256}
257
Stefan Reinauer00636b02012-04-04 00:08:51 +0200258static void northbridge_dmi_init(struct device *dev)
259{
260 u32 reg32;
261
262 /* Clear error status bits */
263 DMIBAR32(0x1c4) = 0xffffffff;
264 DMIBAR32(0x1d0) = 0xffffffff;
265
266 /* Steps prior to DMI ASPM */
Vincent Palatin0ff99b72012-03-28 16:10:29 -0700267 if ((bridge_silicon_revision() & BASE_REV_MASK) == BASE_REV_SNB) {
268 reg32 = DMIBAR32(0x250);
Angel Pons7c49cb82020-03-16 23:17:32 +0100269 reg32 &= ~((1 << 22) | (1 << 20));
Vincent Palatin0ff99b72012-03-28 16:10:29 -0700270 reg32 |= (1 << 21);
271 DMIBAR32(0x250) = reg32;
272 }
Stefan Reinauer00636b02012-04-04 00:08:51 +0200273
274 reg32 = DMIBAR32(0x238);
275 reg32 |= (1 << 29);
276 DMIBAR32(0x238) = reg32;
277
278 if (bridge_silicon_revision() >= SNB_STEP_D0) {
279 reg32 = DMIBAR32(0x1f8);
280 reg32 |= (1 << 16);
281 DMIBAR32(0x1f8) = reg32;
Angel Pons7c49cb82020-03-16 23:17:32 +0100282
Stefan Reinauer00636b02012-04-04 00:08:51 +0200283 } else if (bridge_silicon_revision() >= SNB_STEP_D1) {
284 reg32 = DMIBAR32(0x1f8);
285 reg32 &= ~(1 << 26);
286 reg32 |= (1 << 16);
287 DMIBAR32(0x1f8) = reg32;
288
289 reg32 = DMIBAR32(0x1fc);
290 reg32 |= (1 << 12) | (1 << 23);
291 DMIBAR32(0x1fc) = reg32;
292 }
293
294 /* Enable ASPM on SNB link, should happen before PCH link */
Vincent Palatin0ff99b72012-03-28 16:10:29 -0700295 if ((bridge_silicon_revision() & BASE_REV_MASK) == BASE_REV_SNB) {
296 reg32 = DMIBAR32(0xd04);
297 reg32 |= (1 << 4);
298 DMIBAR32(0xd04) = reg32;
299 }
Stefan Reinauer00636b02012-04-04 00:08:51 +0200300
301 reg32 = DMIBAR32(0x88);
302 reg32 |= (1 << 1) | (1 << 0);
303 DMIBAR32(0x88) = reg32;
304}
305
Patrick Rudolph3660c0f2015-07-28 08:01:02 +0200306/* Disable unused PEG devices based on devicetree */
307static void disable_peg(void)
308{
309 struct device *dev;
310 u32 reg;
311
Kyösti Mälkkic70eed12018-05-22 02:18:00 +0300312 dev = pcidev_on_root(0, 0);
Patrick Rudolph3660c0f2015-07-28 08:01:02 +0200313 reg = pci_read_config32(dev, DEVEN);
314
Kyösti Mälkkic70eed12018-05-22 02:18:00 +0300315 dev = pcidev_on_root(1, 2);
Nico Huber2dc15e92016-02-04 18:59:48 +0100316 if (!dev || !dev->enabled) {
Patrick Rudolph3660c0f2015-07-28 08:01:02 +0200317 printk(BIOS_DEBUG, "Disabling PEG12.\n");
318 reg &= ~DEVEN_PEG12;
319 }
Kyösti Mälkkic70eed12018-05-22 02:18:00 +0300320 dev = pcidev_on_root(1, 1);
Nico Huber2dc15e92016-02-04 18:59:48 +0100321 if (!dev || !dev->enabled) {
Patrick Rudolph3660c0f2015-07-28 08:01:02 +0200322 printk(BIOS_DEBUG, "Disabling PEG11.\n");
323 reg &= ~DEVEN_PEG11;
324 }
Kyösti Mälkkic70eed12018-05-22 02:18:00 +0300325 dev = pcidev_on_root(1, 0);
Nico Huber2dc15e92016-02-04 18:59:48 +0100326 if (!dev || !dev->enabled) {
Patrick Rudolph3660c0f2015-07-28 08:01:02 +0200327 printk(BIOS_DEBUG, "Disabling PEG10.\n");
328 reg &= ~DEVEN_PEG10;
329 }
Kyösti Mälkkic70eed12018-05-22 02:18:00 +0300330 dev = pcidev_on_root(2, 0);
Nico Huber2dc15e92016-02-04 18:59:48 +0100331 if (!dev || !dev->enabled) {
Patrick Rudolph3660c0f2015-07-28 08:01:02 +0200332 printk(BIOS_DEBUG, "Disabling IGD.\n");
333 reg &= ~DEVEN_IGD;
334 }
Kyösti Mälkkic70eed12018-05-22 02:18:00 +0300335 dev = pcidev_on_root(4, 0);
Patrick Rudolphecd4be82017-05-14 12:40:50 +0200336 if (!dev || !dev->enabled) {
337 printk(BIOS_DEBUG, "Disabling Device 4.\n");
338 reg &= ~DEVEN_D4EN;
339 }
Kyösti Mälkkic70eed12018-05-22 02:18:00 +0300340 dev = pcidev_on_root(6, 0);
Nico Huber2dc15e92016-02-04 18:59:48 +0100341 if (!dev || !dev->enabled) {
Patrick Rudolph3660c0f2015-07-28 08:01:02 +0200342 printk(BIOS_DEBUG, "Disabling PEG60.\n");
343 reg &= ~DEVEN_PEG60;
344 }
Kyösti Mälkkic70eed12018-05-22 02:18:00 +0300345 dev = pcidev_on_root(7, 0);
Patrick Rudolphecd4be82017-05-14 12:40:50 +0200346 if (!dev || !dev->enabled) {
347 printk(BIOS_DEBUG, "Disabling Device 7.\n");
348 reg &= ~DEVEN_D7EN;
349 }
Patrick Rudolph3660c0f2015-07-28 08:01:02 +0200350
Kyösti Mälkkic70eed12018-05-22 02:18:00 +0300351 dev = pcidev_on_root(0, 0);
Patrick Rudolph3660c0f2015-07-28 08:01:02 +0200352 pci_write_config32(dev, DEVEN, reg);
Angel Pons7c49cb82020-03-16 23:17:32 +0100353
Patrick Rudolph3660c0f2015-07-28 08:01:02 +0200354 if (!(reg & (DEVEN_PEG60 | DEVEN_PEG10 | DEVEN_PEG11 | DEVEN_PEG12))) {
Angel Pons7c49cb82020-03-16 23:17:32 +0100355 /*
356 * Set the PEG clock gating bit. Disables the IO clock on all PEG devices.
357 *
Angel Pons78b43c82020-03-17 23:55:18 +0100358 * FIXME: Never clock gate on Ivy Bridge stepping A0!
Angel Pons7c49cb82020-03-16 23:17:32 +0100359 */
360 MCHBAR32_OR(PEGCTL, 1);
Patrick Rudolph3660c0f2015-07-28 08:01:02 +0200361 printk(BIOS_DEBUG, "Disabling PEG IO clock.\n");
Angel Pons78b43c82020-03-17 23:55:18 +0100362 } else {
363 MCHBAR32_AND(PEGCTL, ~1);
Patrick Rudolph3660c0f2015-07-28 08:01:02 +0200364 }
365}
366
Stefan Reinauer00636b02012-04-04 00:08:51 +0200367static void northbridge_init(struct device *dev)
368{
369 u8 bios_reset_cpl;
Duncan Lauriefe7b5d22012-06-23 20:14:07 -0700370 u32 bridge_type;
Stefan Reinauer00636b02012-04-04 00:08:51 +0200371
372 northbridge_dmi_init(dev);
373
Angel Pons88521882020-01-05 20:21:20 +0100374 bridge_type = MCHBAR32(SAPMTIMERS);
Duncan Lauriefe7b5d22012-06-23 20:14:07 -0700375 bridge_type &= ~0xff;
376
377 if ((bridge_silicon_revision() & BASE_REV_MASK) == BASE_REV_IVB) {
378 /* Enable Power Aware Interrupt Routing */
Angel Pons7c49cb82020-03-16 23:17:32 +0100379 u8 pair = MCHBAR8(INTRDIRCTL);
380 pair &= ~0x0f; /* Clear 3:0 */
381 pair |= 0x04; /* Fixed Priority */
382 MCHBAR8(INTRDIRCTL) = pair;
Duncan Lauriefe7b5d22012-06-23 20:14:07 -0700383
384 /* 30h for IvyBridge */
385 bridge_type |= 0x30;
386 } else {
387 /* 20h for Sandybridge */
388 bridge_type |= 0x20;
389 }
Angel Pons88521882020-01-05 20:21:20 +0100390 MCHBAR32(SAPMTIMERS) = bridge_type;
Duncan Lauriefe7b5d22012-06-23 20:14:07 -0700391
Angel Pons7c49cb82020-03-16 23:17:32 +0100392 /* Turn off unused devices. Has to be done before setting BIOS_RESET_CPL. */
Patrick Rudolphaad34cd2015-10-21 18:05:01 +0200393 disable_peg();
394
Stefan Reinauer00636b02012-04-04 00:08:51 +0200395 /*
396 * Set bit 0 of BIOS_RESET_CPL to indicate to the CPU
397 * that BIOS has initialized memory and power management
398 */
399 bios_reset_cpl = MCHBAR8(BIOS_RESET_CPL);
400 bios_reset_cpl |= 1;
401 MCHBAR8(BIOS_RESET_CPL) = bios_reset_cpl;
402 printk(BIOS_DEBUG, "Set BIOS_RESET_CPL\n");
403
404 /* Configure turbo power limits 1ms after reset complete bit */
405 mdelay(1);
406 set_power_limits(28);
407
Duncan Laurie77dbbac2012-06-25 09:51:59 -0700408 /*
Angel Pons7c49cb82020-03-16 23:17:32 +0100409 * CPUs with configurable TDP also need power limits set in MCHBAR.
410 * Use the same values from MSR_PKG_POWER_LIMIT.
Duncan Laurie77dbbac2012-06-25 09:51:59 -0700411 */
412 if (cpu_config_tdp_levels()) {
413 msr_t msr = rdmsr(MSR_PKG_POWER_LIMIT);
Angel Pons7c49cb82020-03-16 23:17:32 +0100414 MCHBAR32(MCH_PKG_POWER_LIMIT_LO) = msr.lo;
415 MCHBAR32(MCH_PKG_POWER_LIMIT_HI) = msr.hi;
Duncan Laurie77dbbac2012-06-25 09:51:59 -0700416 }
417
Stefan Reinauer00636b02012-04-04 00:08:51 +0200418 /* Set here before graphics PM init */
Angel Pons7c49cb82020-03-16 23:17:32 +0100419 MCHBAR32(PAVP_MSG) = 0x00100001;
Stefan Reinauer00636b02012-04-04 00:08:51 +0200420}
421
Vladimir Serbinenkoc16e9dfa2015-05-29 16:18:01 +0200422void northbridge_write_smram(u8 smram)
423{
Kyösti Mälkkic70eed12018-05-22 02:18:00 +0300424 pci_write_config8(pcidev_on_root(0, 0), SMRAM, smram);
Vladimir Serbinenkoc16e9dfa2015-05-29 16:18:01 +0200425}
426
Stefan Reinauer00636b02012-04-04 00:08:51 +0200427static struct pci_operations intel_pci_ops = {
Angel Pons7c49cb82020-03-16 23:17:32 +0100428 .set_subsystem = pci_dev_set_subsystem,
Stefan Reinauer00636b02012-04-04 00:08:51 +0200429};
430
431static struct device_operations mc_ops = {
Nico Huber68680dd2020-03-31 17:34:52 +0200432 .read_resources = mc_read_resources,
433 .set_resources = pci_dev_set_resources,
434 .enable_resources = pci_dev_enable_resources,
435 .init = northbridge_init,
Nico Huber68680dd2020-03-31 17:34:52 +0200436 .ops_pci = &intel_pci_ops,
437 .acpi_fill_ssdt = generate_cpu_entries,
Stefan Reinauer00636b02012-04-04 00:08:51 +0200438};
439
Jonathan A. Kollaschbda161b2020-02-13 13:04:48 -0600440static const unsigned short pci_device_ids[] = {
Jonathan A. Kollaschd346a192020-02-11 09:03:48 -0600441 0x0100, 0x0104, 0x0108, /* Sandy Bridge */
Jonathan A. Kollaschbda161b2020-02-13 13:04:48 -0600442 0x0150, 0x0154, 0x0158, /* Ivy Bridge */
443 0
Walter Murphy496f4a02012-04-23 11:08:03 -0700444};
445
Stefan Reinauer00636b02012-04-04 00:08:51 +0200446static const struct pci_driver mc_driver __pci_driver = {
Angel Pons7c49cb82020-03-16 23:17:32 +0100447 .ops = &mc_ops,
448 .vendor = PCI_VENDOR_ID_INTEL,
Jonathan A. Kollaschbda161b2020-02-13 13:04:48 -0600449 .devices = pci_device_ids,
Vagiz Trakhanov1dd448c2017-09-28 14:42:11 +0000450};
451
Stefan Reinauer00636b02012-04-04 00:08:51 +0200452static struct device_operations cpu_bus_ops = {
Nico Huber2f8ba692020-04-05 14:05:24 +0200453 .read_resources = noop_read_resources,
454 .set_resources = noop_set_resources,
Kyösti Mälkkib3267e02019-08-13 16:44:04 +0300455 .init = mp_cpu_bus_init,
Stefan Reinauer00636b02012-04-04 00:08:51 +0200456};
457
Elyes HAOUASab8743c2018-02-09 08:21:40 +0100458static void enable_dev(struct device *dev)
Stefan Reinauer00636b02012-04-04 00:08:51 +0200459{
460 /* Set the operations if it is a special bus type */
Stefan Reinauer4aff4452013-02-12 14:17:15 -0800461 if (dev->path.type == DEVICE_PATH_DOMAIN) {
Stefan Reinauer00636b02012-04-04 00:08:51 +0200462 dev->ops = &pci_domain_ops;
Stefan Reinauer0aa37c42013-02-12 15:20:54 -0800463 } else if (dev->path.type == DEVICE_PATH_CPU_CLUSTER) {
Stefan Reinauer00636b02012-04-04 00:08:51 +0200464 dev->ops = &cpu_bus_ops;
465 }
466}
467
468struct chip_operations northbridge_intel_sandybridge_ops = {
Damien Zammit35170382014-10-29 00:11:53 +1100469 CHIP_NAME("Intel SandyBridge/IvyBridge integrated Northbridge")
Stefan Reinauer00636b02012-04-04 00:08:51 +0200470 .enable_dev = enable_dev,
471};