blob: 4a8419a32ce7bd7c1af140d83353baf6d13b2062 [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>
Stefan Reinauer00636b02012-04-04 00:08:51 +020024#include <device/device.h>
25#include <device/pci.h>
26#include <device/pci_ids.h>
Stefan Reinauer00636b02012-04-04 00:08:51 +020027#include <stdlib.h>
28#include <string.h>
Stefan Reinauer00636b02012-04-04 00:08:51 +020029#include <cpu/cpu.h>
Stefan Reinauer00636b02012-04-04 00:08:51 +020030#include "chip.h"
31#include "sandybridge.h"
Vladimir Serbinenkoc16e9dfa2015-05-29 16:18:01 +020032#include <cpu/intel/smm/gen1/smi.h>
Stefan Reinauer00636b02012-04-04 00:08:51 +020033
34static int bridge_revision_id = -1;
35
Kyösti Mälkkif7bfc342013-10-18 11:02:46 +030036/* IGD UMA memory */
37static uint64_t uma_memory_base = 0;
38static uint64_t uma_memory_size = 0;
39
Stefan Reinauer00636b02012-04-04 00:08:51 +020040int bridge_silicon_revision(void)
41{
42 if (bridge_revision_id < 0) {
43 uint8_t stepping = cpuid_eax(1) & 0xf;
44 uint8_t bridge_id = pci_read_config16(
Kyösti Mälkkic70eed12018-05-22 02:18:00 +030045 pcidev_on_root(0, 0),
Stefan Reinauer00636b02012-04-04 00:08:51 +020046 PCI_DEVICE_ID) & 0xf0;
47 bridge_revision_id = bridge_id | stepping;
48 }
49 return bridge_revision_id;
50}
51
52/* Reserve everything between A segment and 1MB:
53 *
54 * 0xa0000 - 0xbffff: legacy VGA
55 * 0xc0000 - 0xcffff: VGA OPROM (needed by kernel)
56 * 0xe0000 - 0xfffff: SeaBIOS, if used, otherwise DMI
57 */
58static const int legacy_hole_base_k = 0xa0000 / 1024;
59static const int legacy_hole_size_k = 384;
60
Kyösti Mälkkie25b5ef2016-12-02 08:56:05 +020061static int get_pcie_bar(u32 *base)
Stefan Reinauer00636b02012-04-04 00:08:51 +020062{
Elyes HAOUASab8743c2018-02-09 08:21:40 +010063 struct device *dev;
Stefan Reinauer00636b02012-04-04 00:08:51 +020064 u32 pciexbar_reg;
65
66 *base = 0;
Stefan Reinauer00636b02012-04-04 00:08:51 +020067
Kyösti Mälkkic70eed12018-05-22 02:18:00 +030068 dev = pcidev_on_root(0, 0);
Stefan Reinauer00636b02012-04-04 00:08:51 +020069 if (!dev)
70 return 0;
71
72 pciexbar_reg = pci_read_config32(dev, PCIEXBAR);
73
74 if (!(pciexbar_reg & (1 << 0)))
75 return 0;
76
77 switch ((pciexbar_reg >> 1) & 3) {
78 case 0: // 256MB
79 *base = pciexbar_reg & ((1 << 31)|(1 << 30)|(1 << 29)|(1 << 28));
Kyösti Mälkkie25b5ef2016-12-02 08:56:05 +020080 return 256;
Stefan Reinauer00636b02012-04-04 00:08:51 +020081 case 1: // 128M
82 *base = pciexbar_reg & ((1 << 31)|(1 << 30)|(1 << 29)|(1 << 28)|(1 << 27));
Kyösti Mälkkie25b5ef2016-12-02 08:56:05 +020083 return 128;
Stefan Reinauer00636b02012-04-04 00:08:51 +020084 case 2: // 64M
85 *base = pciexbar_reg & ((1 << 31)|(1 << 30)|(1 << 29)|(1 << 28)|(1 << 27)|(1 << 26));
Kyösti Mälkkie25b5ef2016-12-02 08:56:05 +020086 return 64;
Stefan Reinauer00636b02012-04-04 00:08:51 +020087 }
88
89 return 0;
90}
91
Stefan Reinauer00636b02012-04-04 00:08:51 +020092static void add_fixed_resources(struct device *dev, int index)
93{
Kyösti Mälkki7f189cc2012-07-27 13:12:03 +030094 mmio_resource(dev, index++, uma_memory_base >> 10, uma_memory_size >> 10);
Stefan Reinauer00636b02012-04-04 00:08:51 +020095
Aaron Durbinc9650762013-03-22 22:03:09 -050096 mmio_resource(dev, index++, legacy_hole_base_k,
97 (0xc0000 >> 10) - legacy_hole_base_k);
98 reserved_ram_resource(dev, index++, 0xc0000 >> 10,
99 (0x100000 - 0xc0000) >> 10);
Kyösti Mälkki1ec5e742012-07-26 23:51:20 +0300100
Martin Roth33232602017-06-24 14:48:50 -0600101#if IS_ENABLED(CONFIG_CHROMEOS_RAMOOPS)
Aaron Durbinc9650762013-03-22 22:03:09 -0500102 reserved_ram_resource(dev, index++,
103 CONFIG_CHROMEOS_RAMOOPS_RAM_START >> 10,
Kyösti Mälkki1ec5e742012-07-26 23:51:20 +0300104 CONFIG_CHROMEOS_RAMOOPS_RAM_SIZE >> 10);
105#endif
106
Nico Huber593e7de2015-11-04 15:46:00 +0100107 if ((bridge_silicon_revision() & BASE_REV_MASK) == BASE_REV_SNB) {
108 /* Required for SandyBridge sighting 3715511 */
109 bad_ram_resource(dev, index++, 0x20000000 >> 10, 0x00200000 >> 10);
110 bad_ram_resource(dev, index++, 0x40000000 >> 10, 0x00200000 >> 10);
111 }
Nico Huberbb9469c2015-10-21 11:49:23 +0200112
113 /* Reserve IOMMU BARs */
114 const u32 capid0_a = pci_read_config32(dev, 0xe4);
115 if (!(capid0_a & (1 << 23))) {
116 mmio_resource(dev, index++, IOMMU_BASE1 >> 10, 4);
117 mmio_resource(dev, index++, IOMMU_BASE2 >> 10, 4);
118 }
Stefan Reinauer00636b02012-04-04 00:08:51 +0200119}
120
Elyes HAOUASab8743c2018-02-09 08:21:40 +0100121static void pci_domain_set_resources(struct device *dev)
Stefan Reinauer00636b02012-04-04 00:08:51 +0200122{
123 uint64_t tom, me_base, touud;
124 uint32_t tseg_base, uma_size, tolud;
125 uint16_t ggc;
126 unsigned long long tomk;
127
128 /* Total Memory 2GB example:
129 *
130 * 00000000 0000MB-1992MB 1992MB RAM (writeback)
131 * 7c800000 1992MB-2000MB 8MB TSEG (SMRR)
132 * 7d000000 2000MB-2002MB 2MB GFX GTT (uncached)
133 * 7d200000 2002MB-2034MB 32MB GFX UMA (uncached)
134 * 7f200000 2034MB TOLUD
135 * 7f800000 2040MB MEBASE
136 * 7f800000 2040MB-2048MB 8MB ME UMA (uncached)
137 * 80000000 2048MB TOM
138 * 100000000 4096MB-4102MB 6MB RAM (writeback)
139 *
140 * Total Memory 4GB example:
141 *
142 * 00000000 0000MB-2768MB 2768MB RAM (writeback)
143 * ad000000 2768MB-2776MB 8MB TSEG (SMRR)
144 * ad800000 2776MB-2778MB 2MB GFX GTT (uncached)
145 * ada00000 2778MB-2810MB 32MB GFX UMA (uncached)
146 * afa00000 2810MB TOLUD
147 * ff800000 4088MB MEBASE
148 * ff800000 4088MB-4096MB 8MB ME UMA (uncached)
149 * 100000000 4096MB TOM
150 * 100000000 4096MB-5374MB 1278MB RAM (writeback)
151 * 14fe00000 5368MB TOUUD
152 */
153
Kyösti Mälkkic70eed12018-05-22 02:18:00 +0300154 struct device *mch = pcidev_on_root(0, 0);
Arthur Heymans17041202018-06-26 21:06:25 +0200155
Stefan Reinauer00636b02012-04-04 00:08:51 +0200156 /* Top of Upper Usable DRAM, including remap */
Arthur Heymans17041202018-06-26 21:06:25 +0200157 touud = pci_read_config32(mch, TOUUD+4);
Stefan Reinauer00636b02012-04-04 00:08:51 +0200158 touud <<= 32;
Arthur Heymans17041202018-06-26 21:06:25 +0200159 touud |= pci_read_config32(mch, TOUUD);
Stefan Reinauer00636b02012-04-04 00:08:51 +0200160
161 /* Top of Lower Usable DRAM */
Arthur Heymans17041202018-06-26 21:06:25 +0200162 tolud = pci_read_config32(mch, TOLUD);
Stefan Reinauer00636b02012-04-04 00:08:51 +0200163
164 /* Top of Memory - does not account for any UMA */
Arthur Heymans17041202018-06-26 21:06:25 +0200165 tom = pci_read_config32(mch, 0xa4);
Stefan Reinauer00636b02012-04-04 00:08:51 +0200166 tom <<= 32;
Arthur Heymans17041202018-06-26 21:06:25 +0200167 tom |= pci_read_config32(mch, 0xa0);
Stefan Reinauer00636b02012-04-04 00:08:51 +0200168
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 */
Arthur Heymans17041202018-06-26 21:06:25 +0200173 me_base = pci_read_config32(mch, 0x74);
Stefan Reinauer00636b02012-04-04 00:08:51 +0200174 me_base <<= 32;
Arthur Heymans17041202018-06-26 21:06:25 +0200175 me_base |= pci_read_config32(mch, 0x70);
Stefan Reinauer00636b02012-04-04 00:08:51 +0200176
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 */
Arthur Heymans17041202018-06-26 21:06:25 +0200194 ggc = pci_read_config16(mch, GGC);
Stefan Reinauer00636b02012-04-04 00:08:51 +0200195 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 */
Arthur Heymans17041202018-06-26 21:06:25 +0200214 tseg_base = pci_read_config32(mch, 0xb8);
Stefan Reinauer00636b02012-04-04 00:08:51 +0200215 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
Aaron Durbinaa090cb2017-09-13 16:01:52 -0600245static const char *northbridge_acpi_name(const struct device *dev)
Patrick Rudolph3e47fc92017-06-07 09:44:07 +0200246{
247 if (dev->path.type == DEVICE_PATH_DOMAIN)
248 return "PCI0";
249
250 if (dev->path.type != DEVICE_PATH_PCI)
251 return NULL;
252
253 switch (dev->path.pci.devfn) {
254 case PCI_DEVFN(0, 0):
255 return "MCHC";
256 }
257
258 return NULL;
259}
260
Stefan Reinauer00636b02012-04-04 00:08:51 +0200261 /* TODO We could determine how many PCIe busses we need in
262 * the bar. For now that number is hardcoded to a max of 64.
263 * See e7525/northbridge.c for an example.
264 */
265static struct device_operations pci_domain_ops = {
266 .read_resources = pci_domain_read_resources,
267 .set_resources = pci_domain_set_resources,
268 .enable_resources = NULL,
269 .init = NULL,
270 .scan_bus = pci_domain_scan_bus,
Nico Huber9d9ce0d2015-10-26 12:59:49 +0100271 .write_acpi_tables = northbridge_write_acpi_tables,
Patrick Rudolph3e47fc92017-06-07 09:44:07 +0200272 .acpi_name = northbridge_acpi_name,
Stefan Reinauer00636b02012-04-04 00:08:51 +0200273};
274
Elyes HAOUASab8743c2018-02-09 08:21:40 +0100275static void mc_read_resources(struct device *dev)
Stefan Reinauer00636b02012-04-04 00:08:51 +0200276{
Kyösti Mälkkie25b5ef2016-12-02 08:56:05 +0200277 u32 pcie_config_base;
278 int buses;
Stefan Reinauer00636b02012-04-04 00:08:51 +0200279
280 pci_dev_read_resources(dev);
281
Kyösti Mälkkie25b5ef2016-12-02 08:56:05 +0200282 buses = get_pcie_bar(&pcie_config_base);
283 if (buses) {
Kyösti Mälkki27198ac2016-12-02 14:38:13 +0200284 struct resource *resource = new_resource(dev, PCIEXBAR);
Kyösti Mälkkie25b5ef2016-12-02 08:56:05 +0200285 mmconf_resource_init(resource, pcie_config_base, buses);
286 }
Stefan Reinauer00636b02012-04-04 00:08:51 +0200287}
288
Elyes HAOUASb60920d2018-09-20 17:38:38 +0200289static void intel_set_subsystem(struct device *dev, unsigned int vendor,
290 unsigned int device)
Stefan Reinauer00636b02012-04-04 00:08:51 +0200291{
292 if (!vendor || !device) {
293 pci_write_config32(dev, PCI_SUBSYSTEM_VENDOR_ID,
294 pci_read_config32(dev, PCI_VENDOR_ID));
295 } else {
296 pci_write_config32(dev, PCI_SUBSYSTEM_VENDOR_ID,
297 ((device & 0xffff) << 16) | (vendor & 0xffff));
298 }
299}
300
301static void northbridge_dmi_init(struct device *dev)
302{
303 u32 reg32;
304
305 /* Clear error status bits */
306 DMIBAR32(0x1c4) = 0xffffffff;
307 DMIBAR32(0x1d0) = 0xffffffff;
308
309 /* Steps prior to DMI ASPM */
Vincent Palatin0ff99b72012-03-28 16:10:29 -0700310 if ((bridge_silicon_revision() & BASE_REV_MASK) == BASE_REV_SNB) {
311 reg32 = DMIBAR32(0x250);
312 reg32 &= ~((1 << 22)|(1 << 20));
313 reg32 |= (1 << 21);
314 DMIBAR32(0x250) = reg32;
315 }
Stefan Reinauer00636b02012-04-04 00:08:51 +0200316
317 reg32 = DMIBAR32(0x238);
318 reg32 |= (1 << 29);
319 DMIBAR32(0x238) = reg32;
320
321 if (bridge_silicon_revision() >= SNB_STEP_D0) {
322 reg32 = DMIBAR32(0x1f8);
323 reg32 |= (1 << 16);
324 DMIBAR32(0x1f8) = reg32;
325 } else if (bridge_silicon_revision() >= SNB_STEP_D1) {
326 reg32 = DMIBAR32(0x1f8);
327 reg32 &= ~(1 << 26);
328 reg32 |= (1 << 16);
329 DMIBAR32(0x1f8) = reg32;
330
331 reg32 = DMIBAR32(0x1fc);
332 reg32 |= (1 << 12) | (1 << 23);
333 DMIBAR32(0x1fc) = reg32;
334 }
335
336 /* Enable ASPM on SNB link, should happen before PCH link */
Vincent Palatin0ff99b72012-03-28 16:10:29 -0700337 if ((bridge_silicon_revision() & BASE_REV_MASK) == BASE_REV_SNB) {
338 reg32 = DMIBAR32(0xd04);
339 reg32 |= (1 << 4);
340 DMIBAR32(0xd04) = reg32;
341 }
Stefan Reinauer00636b02012-04-04 00:08:51 +0200342
343 reg32 = DMIBAR32(0x88);
344 reg32 |= (1 << 1) | (1 << 0);
345 DMIBAR32(0x88) = reg32;
346}
347
Patrick Rudolph3660c0f2015-07-28 08:01:02 +0200348/* Disable unused PEG devices based on devicetree */
349static void disable_peg(void)
350{
351 struct device *dev;
352 u32 reg;
353
Kyösti Mälkkic70eed12018-05-22 02:18:00 +0300354 dev = pcidev_on_root(0, 0);
Patrick Rudolph3660c0f2015-07-28 08:01:02 +0200355 reg = pci_read_config32(dev, DEVEN);
356
Kyösti Mälkkic70eed12018-05-22 02:18:00 +0300357 dev = pcidev_on_root(1, 2);
Nico Huber2dc15e92016-02-04 18:59:48 +0100358 if (!dev || !dev->enabled) {
Patrick Rudolph3660c0f2015-07-28 08:01:02 +0200359 printk(BIOS_DEBUG, "Disabling PEG12.\n");
360 reg &= ~DEVEN_PEG12;
361 }
Kyösti Mälkkic70eed12018-05-22 02:18:00 +0300362 dev = pcidev_on_root(1, 1);
Nico Huber2dc15e92016-02-04 18:59:48 +0100363 if (!dev || !dev->enabled) {
Patrick Rudolph3660c0f2015-07-28 08:01:02 +0200364 printk(BIOS_DEBUG, "Disabling PEG11.\n");
365 reg &= ~DEVEN_PEG11;
366 }
Kyösti Mälkkic70eed12018-05-22 02:18:00 +0300367 dev = pcidev_on_root(1, 0);
Nico Huber2dc15e92016-02-04 18:59:48 +0100368 if (!dev || !dev->enabled) {
Patrick Rudolph3660c0f2015-07-28 08:01:02 +0200369 printk(BIOS_DEBUG, "Disabling PEG10.\n");
370 reg &= ~DEVEN_PEG10;
371 }
Kyösti Mälkkic70eed12018-05-22 02:18:00 +0300372 dev = pcidev_on_root(2, 0);
Nico Huber2dc15e92016-02-04 18:59:48 +0100373 if (!dev || !dev->enabled) {
Patrick Rudolph3660c0f2015-07-28 08:01:02 +0200374 printk(BIOS_DEBUG, "Disabling IGD.\n");
375 reg &= ~DEVEN_IGD;
376 }
Kyösti Mälkkic70eed12018-05-22 02:18:00 +0300377 dev = pcidev_on_root(4, 0);
Patrick Rudolphecd4be82017-05-14 12:40:50 +0200378 if (!dev || !dev->enabled) {
379 printk(BIOS_DEBUG, "Disabling Device 4.\n");
380 reg &= ~DEVEN_D4EN;
381 }
Kyösti Mälkkic70eed12018-05-22 02:18:00 +0300382 dev = pcidev_on_root(6, 0);
Nico Huber2dc15e92016-02-04 18:59:48 +0100383 if (!dev || !dev->enabled) {
Patrick Rudolph3660c0f2015-07-28 08:01:02 +0200384 printk(BIOS_DEBUG, "Disabling PEG60.\n");
385 reg &= ~DEVEN_PEG60;
386 }
Kyösti Mälkkic70eed12018-05-22 02:18:00 +0300387 dev = pcidev_on_root(7, 0);
Patrick Rudolphecd4be82017-05-14 12:40:50 +0200388 if (!dev || !dev->enabled) {
389 printk(BIOS_DEBUG, "Disabling Device 7.\n");
390 reg &= ~DEVEN_D7EN;
391 }
Patrick Rudolph3660c0f2015-07-28 08:01:02 +0200392
Kyösti Mälkkic70eed12018-05-22 02:18:00 +0300393 dev = pcidev_on_root(0, 0);
Patrick Rudolph3660c0f2015-07-28 08:01:02 +0200394 pci_write_config32(dev, DEVEN, reg);
395 if (!(reg & (DEVEN_PEG60 | DEVEN_PEG10 | DEVEN_PEG11 | DEVEN_PEG12))) {
396 /* Set the PEG clock gating bit.
397 * Disables the IO clock on all PEG devices. */
398 MCHBAR32(0x7010) = MCHBAR32(0x7010) | 0x01;
399 printk(BIOS_DEBUG, "Disabling PEG IO clock.\n");
400 }
401}
402
Stefan Reinauer00636b02012-04-04 00:08:51 +0200403static void northbridge_init(struct device *dev)
404{
405 u8 bios_reset_cpl;
Duncan Lauriefe7b5d22012-06-23 20:14:07 -0700406 u32 bridge_type;
Stefan Reinauer00636b02012-04-04 00:08:51 +0200407
408 northbridge_dmi_init(dev);
409
Duncan Lauriefe7b5d22012-06-23 20:14:07 -0700410 bridge_type = MCHBAR32(0x5f10);
411 bridge_type &= ~0xff;
412
413 if ((bridge_silicon_revision() & BASE_REV_MASK) == BASE_REV_IVB) {
414 /* Enable Power Aware Interrupt Routing */
415 u8 pair = MCHBAR8(0x5418);
416 pair &= ~0xf; /* Clear 3:0 */
417 pair |= 0x4; /* Fixed Priority */
418 MCHBAR8(0x5418) = pair;
419
420 /* 30h for IvyBridge */
421 bridge_type |= 0x30;
422 } else {
423 /* 20h for Sandybridge */
424 bridge_type |= 0x20;
425 }
426 MCHBAR32(0x5f10) = bridge_type;
427
Patrick Rudolphaad34cd2015-10-21 18:05:01 +0200428 /* Turn off unused devices. Has to be done before
429 * setting BIOS_RESET_CPL.
430 */
431 disable_peg();
432
Stefan Reinauer00636b02012-04-04 00:08:51 +0200433 /*
434 * Set bit 0 of BIOS_RESET_CPL to indicate to the CPU
435 * that BIOS has initialized memory and power management
436 */
437 bios_reset_cpl = MCHBAR8(BIOS_RESET_CPL);
438 bios_reset_cpl |= 1;
439 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
Duncan Laurie77dbbac2012-06-25 09:51:59 -0700446 /*
447 * CPUs with configurable TDP also need power limits set
448 * in MCHBAR. Use same values from MSR_PKG_POWER_LIMIT.
449 */
450 if (cpu_config_tdp_levels()) {
451 msr_t msr = rdmsr(MSR_PKG_POWER_LIMIT);
452 MCHBAR32(0x59A0) = msr.lo;
453 MCHBAR32(0x59A4) = msr.hi;
454 }
455
Stefan Reinauer00636b02012-04-04 00:08:51 +0200456 /* Set here before graphics PM init */
457 MCHBAR32(0x5500) = 0x00100001;
458}
459
Elyes HAOUASab8743c2018-02-09 08:21:40 +0100460static u32 northbridge_get_base_reg(struct device *dev, int reg)
Vladimir Serbinenkoc16e9dfa2015-05-29 16:18:01 +0200461{
462 u32 value;
463
464 value = pci_read_config32(dev, reg);
465 /* Base registers are at 1MiB granularity. */
466 value &= ~((1 << 20) - 1);
467 return value;
468}
469
Nico Huber6f8b7df2016-10-08 18:42:46 +0200470u32 northbridge_get_tseg_base(void)
Vladimir Serbinenkoc16e9dfa2015-05-29 16:18:01 +0200471{
Kyösti Mälkkic70eed12018-05-22 02:18:00 +0300472 struct device *dev = pcidev_on_root(0, 0);
Vladimir Serbinenkoc16e9dfa2015-05-29 16:18:01 +0200473
Nico Huber6f8b7df2016-10-08 18:42:46 +0200474 return northbridge_get_base_reg(dev, TSEG);
Vladimir Serbinenkoc16e9dfa2015-05-29 16:18:01 +0200475}
476
Arthur Heymansaade90e2018-01-25 00:33:45 +0100477u32 northbridge_get_tseg_size(void)
478{
479 return CONFIG_SMM_TSEG_SIZE;
480}
481
Vladimir Serbinenkoc16e9dfa2015-05-29 16:18:01 +0200482void northbridge_write_smram(u8 smram)
483{
Kyösti Mälkkic70eed12018-05-22 02:18:00 +0300484 pci_write_config8(pcidev_on_root(0, 0), SMRAM, smram);
Vladimir Serbinenkoc16e9dfa2015-05-29 16:18:01 +0200485}
486
Stefan Reinauer00636b02012-04-04 00:08:51 +0200487static struct pci_operations intel_pci_ops = {
488 .set_subsystem = intel_set_subsystem,
489};
490
491static struct device_operations mc_ops = {
492 .read_resources = mc_read_resources,
Kyösti Mälkki27198ac2016-12-02 14:38:13 +0200493 .set_resources = pci_dev_set_resources,
Stefan Reinauer00636b02012-04-04 00:08:51 +0200494 .enable_resources = pci_dev_enable_resources,
495 .init = northbridge_init,
Stefan Reinauer00636b02012-04-04 00:08:51 +0200496 .scan_bus = 0,
497 .ops_pci = &intel_pci_ops,
Vladimir Serbinenko0a669912014-10-05 14:34:17 +0200498 .acpi_fill_ssdt_generator = generate_cpu_entries,
Stefan Reinauer00636b02012-04-04 00:08:51 +0200499};
500
Walter Murphy496f4a02012-04-23 11:08:03 -0700501static const struct pci_driver mc_driver_0100 __pci_driver = {
502 .ops = &mc_ops,
503 .vendor = PCI_VENDOR_ID_INTEL,
504 .device = 0x0100,
505};
506
Stefan Reinauer00636b02012-04-04 00:08:51 +0200507static const struct pci_driver mc_driver __pci_driver = {
508 .ops = &mc_ops,
509 .vendor = PCI_VENDOR_ID_INTEL,
510 .device = 0x0104, /* Sandy bridge */
511};
512
Damien Zammit35170382014-10-29 00:11:53 +1100513static const struct pci_driver mc_driver_150 __pci_driver = {
514 .ops = &mc_ops,
515 .vendor = PCI_VENDOR_ID_INTEL,
516 .device = 0x0150, /* Ivy bridge */
517};
518
Stefan Reinauer00636b02012-04-04 00:08:51 +0200519static const struct pci_driver mc_driver_1 __pci_driver = {
520 .ops = &mc_ops,
521 .vendor = PCI_VENDOR_ID_INTEL,
522 .device = 0x0154, /* Ivy bridge */
523};
524
Vagiz Trakhanov1dd448c2017-09-28 14:42:11 +0000525static const struct pci_driver mc_driver_158 __pci_driver = {
526 .ops = &mc_ops,
527 .vendor = PCI_VENDOR_ID_INTEL,
528 .device = 0x0158, /* Ivy bridge */
529};
530
Elyes HAOUASab8743c2018-02-09 08:21:40 +0100531static void cpu_bus_init(struct device *dev)
Stefan Reinauer00636b02012-04-04 00:08:51 +0200532{
Arthur Heymans68f68882018-04-11 13:03:34 +0200533 initialize_cpus(dev->link_list);
Stefan Reinauer00636b02012-04-04 00:08:51 +0200534}
535
Stefan Reinauer00636b02012-04-04 00:08:51 +0200536static struct device_operations cpu_bus_ops = {
Edward O'Callaghan9f744622014-10-31 08:12:34 +1100537 .read_resources = DEVICE_NOOP,
538 .set_resources = DEVICE_NOOP,
539 .enable_resources = DEVICE_NOOP,
Stefan Reinauer00636b02012-04-04 00:08:51 +0200540 .init = cpu_bus_init,
541 .scan_bus = 0,
542};
543
Elyes HAOUASab8743c2018-02-09 08:21:40 +0100544static void enable_dev(struct device *dev)
Stefan Reinauer00636b02012-04-04 00:08:51 +0200545{
546 /* Set the operations if it is a special bus type */
Stefan Reinauer4aff4452013-02-12 14:17:15 -0800547 if (dev->path.type == DEVICE_PATH_DOMAIN) {
Stefan Reinauer00636b02012-04-04 00:08:51 +0200548 dev->ops = &pci_domain_ops;
Stefan Reinauer0aa37c42013-02-12 15:20:54 -0800549 } else if (dev->path.type == DEVICE_PATH_CPU_CLUSTER) {
Stefan Reinauer00636b02012-04-04 00:08:51 +0200550 dev->ops = &cpu_bus_ops;
551 }
552}
553
554struct chip_operations northbridge_intel_sandybridge_ops = {
Damien Zammit35170382014-10-29 00:11:53 +1100555 CHIP_NAME("Intel SandyBridge/IvyBridge integrated Northbridge")
Stefan Reinauer00636b02012-04-04 00:08:51 +0200556 .enable_dev = enable_dev,
557};