blob: 4d00d738cdf135edf0e218def10cced6ff734e90 [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>
Kyösti Mälkkif1b58b72019-03-01 13:43:02 +020020#include <device/pci_ops.h>
Stefan Reinauer00636b02012-04-04 00:08:51 +020021#include <stdint.h>
22#include <delay.h>
23#include <cpu/intel/model_206ax/model_206ax.h>
Duncan Laurie77dbbac2012-06-25 09:51:59 -070024#include <cpu/x86/msr.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 Reinauer00636b02012-04-04 00:08:51 +020031#include "chip.h"
32#include "sandybridge.h"
Vladimir Serbinenkoc16e9dfa2015-05-29 16:18:01 +020033#include <cpu/intel/smm/gen1/smi.h>
Stefan Reinauer00636b02012-04-04 00:08:51 +020034
35static int bridge_revision_id = -1;
36
Kyösti Mälkkif7bfc342013-10-18 11:02:46 +030037/* IGD UMA memory */
38static uint64_t uma_memory_base = 0;
39static uint64_t uma_memory_size = 0;
40
Stefan Reinauer00636b02012-04-04 00:08:51 +020041int bridge_silicon_revision(void)
42{
43 if (bridge_revision_id < 0) {
44 uint8_t stepping = cpuid_eax(1) & 0xf;
45 uint8_t bridge_id = pci_read_config16(
Kyösti Mälkkic70eed12018-05-22 02:18:00 +030046 pcidev_on_root(0, 0),
Stefan Reinauer00636b02012-04-04 00:08:51 +020047 PCI_DEVICE_ID) & 0xf0;
48 bridge_revision_id = bridge_id | stepping;
49 }
50 return bridge_revision_id;
51}
52
53/* Reserve everything between A segment and 1MB:
54 *
55 * 0xa0000 - 0xbffff: legacy VGA
56 * 0xc0000 - 0xcffff: VGA OPROM (needed by kernel)
57 * 0xe0000 - 0xfffff: SeaBIOS, if used, otherwise DMI
58 */
59static const int legacy_hole_base_k = 0xa0000 / 1024;
60static const int legacy_hole_size_k = 384;
61
Kyösti Mälkkie25b5ef2016-12-02 08:56:05 +020062static int get_pcie_bar(u32 *base)
Stefan Reinauer00636b02012-04-04 00:08:51 +020063{
Elyes HAOUASab8743c2018-02-09 08:21:40 +010064 struct device *dev;
Stefan Reinauer00636b02012-04-04 00:08:51 +020065 u32 pciexbar_reg;
66
67 *base = 0;
Stefan Reinauer00636b02012-04-04 00:08:51 +020068
Kyösti Mälkkic70eed12018-05-22 02:18:00 +030069 dev = pcidev_on_root(0, 0);
Stefan Reinauer00636b02012-04-04 00:08:51 +020070 if (!dev)
71 return 0;
72
73 pciexbar_reg = pci_read_config32(dev, PCIEXBAR);
74
75 if (!(pciexbar_reg & (1 << 0)))
76 return 0;
77
78 switch ((pciexbar_reg >> 1) & 3) {
79 case 0: // 256MB
80 *base = pciexbar_reg & ((1 << 31)|(1 << 30)|(1 << 29)|(1 << 28));
Kyösti Mälkkie25b5ef2016-12-02 08:56:05 +020081 return 256;
Stefan Reinauer00636b02012-04-04 00:08:51 +020082 case 1: // 128M
83 *base = pciexbar_reg & ((1 << 31)|(1 << 30)|(1 << 29)|(1 << 28)|(1 << 27));
Kyösti Mälkkie25b5ef2016-12-02 08:56:05 +020084 return 128;
Stefan Reinauer00636b02012-04-04 00:08:51 +020085 case 2: // 64M
86 *base = pciexbar_reg & ((1 << 31)|(1 << 30)|(1 << 29)|(1 << 28)|(1 << 27)|(1 << 26));
Kyösti Mälkkie25b5ef2016-12-02 08:56:05 +020087 return 64;
Stefan Reinauer00636b02012-04-04 00:08:51 +020088 }
89
90 return 0;
91}
92
Stefan Reinauer00636b02012-04-04 00:08:51 +020093static void add_fixed_resources(struct device *dev, int index)
94{
Kyösti Mälkki7f189cc2012-07-27 13:12:03 +030095 mmio_resource(dev, index++, uma_memory_base >> 10, uma_memory_size >> 10);
Stefan Reinauer00636b02012-04-04 00:08:51 +020096
Aaron Durbinc9650762013-03-22 22:03:09 -050097 mmio_resource(dev, index++, legacy_hole_base_k,
98 (0xc0000 >> 10) - legacy_hole_base_k);
99 reserved_ram_resource(dev, index++, 0xc0000 >> 10,
100 (0x100000 - 0xc0000) >> 10);
Kyösti Mälkki1ec5e742012-07-26 23:51:20 +0300101
Martin Roth33232602017-06-24 14:48:50 -0600102#if IS_ENABLED(CONFIG_CHROMEOS_RAMOOPS)
Aaron Durbinc9650762013-03-22 22:03:09 -0500103 reserved_ram_resource(dev, index++,
104 CONFIG_CHROMEOS_RAMOOPS_RAM_START >> 10,
Kyösti Mälkki1ec5e742012-07-26 23:51:20 +0300105 CONFIG_CHROMEOS_RAMOOPS_RAM_SIZE >> 10);
106#endif
107
Nico Huber593e7de2015-11-04 15:46:00 +0100108 if ((bridge_silicon_revision() & BASE_REV_MASK) == BASE_REV_SNB) {
109 /* Required for SandyBridge sighting 3715511 */
110 bad_ram_resource(dev, index++, 0x20000000 >> 10, 0x00200000 >> 10);
111 bad_ram_resource(dev, index++, 0x40000000 >> 10, 0x00200000 >> 10);
112 }
Nico Huberbb9469c2015-10-21 11:49:23 +0200113
114 /* Reserve IOMMU BARs */
115 const u32 capid0_a = pci_read_config32(dev, 0xe4);
116 if (!(capid0_a & (1 << 23))) {
117 mmio_resource(dev, index++, IOMMU_BASE1 >> 10, 4);
118 mmio_resource(dev, index++, IOMMU_BASE2 >> 10, 4);
119 }
Stefan Reinauer00636b02012-04-04 00:08:51 +0200120}
121
Elyes HAOUASab8743c2018-02-09 08:21:40 +0100122static void pci_domain_set_resources(struct device *dev)
Stefan Reinauer00636b02012-04-04 00:08:51 +0200123{
124 uint64_t tom, me_base, touud;
125 uint32_t tseg_base, uma_size, tolud;
126 uint16_t ggc;
127 unsigned long long tomk;
128
129 /* Total Memory 2GB example:
130 *
131 * 00000000 0000MB-1992MB 1992MB RAM (writeback)
132 * 7c800000 1992MB-2000MB 8MB TSEG (SMRR)
133 * 7d000000 2000MB-2002MB 2MB GFX GTT (uncached)
134 * 7d200000 2002MB-2034MB 32MB GFX UMA (uncached)
135 * 7f200000 2034MB TOLUD
136 * 7f800000 2040MB MEBASE
137 * 7f800000 2040MB-2048MB 8MB ME UMA (uncached)
138 * 80000000 2048MB TOM
139 * 100000000 4096MB-4102MB 6MB RAM (writeback)
140 *
141 * Total Memory 4GB example:
142 *
143 * 00000000 0000MB-2768MB 2768MB RAM (writeback)
144 * ad000000 2768MB-2776MB 8MB TSEG (SMRR)
145 * ad800000 2776MB-2778MB 2MB GFX GTT (uncached)
146 * ada00000 2778MB-2810MB 32MB GFX UMA (uncached)
147 * afa00000 2810MB TOLUD
148 * ff800000 4088MB MEBASE
149 * ff800000 4088MB-4096MB 8MB ME UMA (uncached)
150 * 100000000 4096MB TOM
151 * 100000000 4096MB-5374MB 1278MB RAM (writeback)
152 * 14fe00000 5368MB TOUUD
153 */
154
Kyösti Mälkkic70eed12018-05-22 02:18:00 +0300155 struct device *mch = pcidev_on_root(0, 0);
Arthur Heymans17041202018-06-26 21:06:25 +0200156
Stefan Reinauer00636b02012-04-04 00:08:51 +0200157 /* Top of Upper Usable DRAM, including remap */
Arthur Heymans17041202018-06-26 21:06:25 +0200158 touud = pci_read_config32(mch, TOUUD+4);
Stefan Reinauer00636b02012-04-04 00:08:51 +0200159 touud <<= 32;
Arthur Heymans17041202018-06-26 21:06:25 +0200160 touud |= pci_read_config32(mch, TOUUD);
Stefan Reinauer00636b02012-04-04 00:08:51 +0200161
162 /* Top of Lower Usable DRAM */
Arthur Heymans17041202018-06-26 21:06:25 +0200163 tolud = pci_read_config32(mch, TOLUD);
Stefan Reinauer00636b02012-04-04 00:08:51 +0200164
165 /* Top of Memory - does not account for any UMA */
Arthur Heymans17041202018-06-26 21:06:25 +0200166 tom = pci_read_config32(mch, 0xa4);
Stefan Reinauer00636b02012-04-04 00:08:51 +0200167 tom <<= 32;
Arthur Heymans17041202018-06-26 21:06:25 +0200168 tom |= pci_read_config32(mch, 0xa0);
Stefan Reinauer00636b02012-04-04 00:08:51 +0200169
170 printk(BIOS_DEBUG, "TOUUD 0x%llx TOLUD 0x%08x TOM 0x%llx\n",
171 touud, tolud, tom);
172
173 /* ME UMA needs excluding if total memory <4GB */
Arthur Heymans17041202018-06-26 21:06:25 +0200174 me_base = pci_read_config32(mch, 0x74);
Stefan Reinauer00636b02012-04-04 00:08:51 +0200175 me_base <<= 32;
Arthur Heymans17041202018-06-26 21:06:25 +0200176 me_base |= pci_read_config32(mch, 0x70);
Stefan Reinauer00636b02012-04-04 00:08:51 +0200177
178 printk(BIOS_DEBUG, "MEBASE 0x%llx\n", me_base);
179
Patrick Rudolph240766a2015-10-15 15:33:25 +0200180 uma_memory_base = tolud;
Stefan Reinauer00636b02012-04-04 00:08:51 +0200181 tomk = tolud >> 10;
182 if (me_base == tolud) {
183 /* ME is from MEBASE-TOM */
184 uma_size = (tom - me_base) >> 10;
185 /* Increment TOLUD to account for ME as RAM */
186 tolud += uma_size << 10;
187 /* UMA starts at old TOLUD */
188 uma_memory_base = tomk * 1024ULL;
189 uma_memory_size = uma_size * 1024ULL;
190 printk(BIOS_DEBUG, "ME UMA base 0x%llx size %uM\n",
191 me_base, uma_size >> 10);
192 }
193
194 /* Graphics memory comes next */
Arthur Heymans17041202018-06-26 21:06:25 +0200195 ggc = pci_read_config16(mch, GGC);
Stefan Reinauer00636b02012-04-04 00:08:51 +0200196 if (!(ggc & 2)) {
197 printk(BIOS_DEBUG, "IGD decoded, subtracting ");
198
199 /* Graphics memory */
200 uma_size = ((ggc >> 3) & 0x1f) * 32 * 1024ULL;
201 printk(BIOS_DEBUG, "%uM UMA", uma_size >> 10);
202 tomk -= uma_size;
203 uma_memory_base = tomk * 1024ULL;
204 uma_memory_size += uma_size * 1024ULL;
205
206 /* GTT Graphics Stolen Memory Size (GGMS) */
207 uma_size = ((ggc >> 8) & 0x3) * 1024ULL;
208 tomk -= uma_size;
209 uma_memory_base = tomk * 1024ULL;
210 uma_memory_size += uma_size * 1024ULL;
211 printk(BIOS_DEBUG, " and %uM GTT\n", uma_size >> 10);
212 }
213
214 /* Calculate TSEG size from its base which must be below GTT */
Arthur Heymans17041202018-06-26 21:06:25 +0200215 tseg_base = pci_read_config32(mch, 0xb8);
Stefan Reinauer00636b02012-04-04 00:08:51 +0200216 uma_size = (uma_memory_base - tseg_base) >> 10;
217 tomk -= uma_size;
218 uma_memory_base = tomk * 1024ULL;
219 uma_memory_size += uma_size * 1024ULL;
220 printk(BIOS_DEBUG, "TSEG base 0x%08x size %uM\n",
221 tseg_base, uma_size >> 10);
222
223 printk(BIOS_INFO, "Available memory below 4GB: %lluM\n", tomk >> 10);
224
225 /* Report the memory regions */
226 ram_resource(dev, 3, 0, legacy_hole_base_k);
227 ram_resource(dev, 4, legacy_hole_base_k + legacy_hole_size_k,
228 (tomk - (legacy_hole_base_k + legacy_hole_size_k)));
229
230 /*
231 * If >= 4GB installed then memory from TOLUD to 4GB
232 * is remapped above TOM, TOUUD will account for both
233 */
234 touud >>= 10; /* Convert to KB */
235 if (touud > 4096 * 1024) {
236 ram_resource(dev, 5, 4096 * 1024, touud - (4096 * 1024));
237 printk(BIOS_INFO, "Available memory above 4GB: %lluM\n",
238 (touud >> 10) - 4096);
239 }
240
241 add_fixed_resources(dev, 6);
242
243 assign_resources(dev->link_list);
Stefan Reinauer00636b02012-04-04 00:08:51 +0200244}
245
Aaron Durbinaa090cb2017-09-13 16:01:52 -0600246static const char *northbridge_acpi_name(const struct device *dev)
Patrick Rudolph3e47fc92017-06-07 09:44:07 +0200247{
248 if (dev->path.type == DEVICE_PATH_DOMAIN)
249 return "PCI0";
250
251 if (dev->path.type != DEVICE_PATH_PCI)
252 return NULL;
253
254 switch (dev->path.pci.devfn) {
255 case PCI_DEVFN(0, 0):
256 return "MCHC";
257 }
258
259 return NULL;
260}
261
Stefan Reinauer00636b02012-04-04 00:08:51 +0200262 /* TODO We could determine how many PCIe busses we need in
263 * the bar. For now that number is hardcoded to a max of 64.
264 * See e7525/northbridge.c for an example.
265 */
266static struct device_operations pci_domain_ops = {
267 .read_resources = pci_domain_read_resources,
268 .set_resources = pci_domain_set_resources,
269 .enable_resources = NULL,
270 .init = NULL,
271 .scan_bus = pci_domain_scan_bus,
Nico Huber9d9ce0d2015-10-26 12:59:49 +0100272 .write_acpi_tables = northbridge_write_acpi_tables,
Patrick Rudolph3e47fc92017-06-07 09:44:07 +0200273 .acpi_name = northbridge_acpi_name,
Stefan Reinauer00636b02012-04-04 00:08:51 +0200274};
275
Elyes HAOUASab8743c2018-02-09 08:21:40 +0100276static void mc_read_resources(struct device *dev)
Stefan Reinauer00636b02012-04-04 00:08:51 +0200277{
Kyösti Mälkkie25b5ef2016-12-02 08:56:05 +0200278 u32 pcie_config_base;
279 int buses;
Stefan Reinauer00636b02012-04-04 00:08:51 +0200280
281 pci_dev_read_resources(dev);
282
Kyösti Mälkkie25b5ef2016-12-02 08:56:05 +0200283 buses = get_pcie_bar(&pcie_config_base);
284 if (buses) {
Kyösti Mälkki27198ac2016-12-02 14:38:13 +0200285 struct resource *resource = new_resource(dev, PCIEXBAR);
Kyösti Mälkkie25b5ef2016-12-02 08:56:05 +0200286 mmconf_resource_init(resource, pcie_config_base, buses);
287 }
Stefan Reinauer00636b02012-04-04 00:08:51 +0200288}
289
Elyes HAOUASb60920d2018-09-20 17:38:38 +0200290static void intel_set_subsystem(struct device *dev, unsigned int vendor,
291 unsigned int device)
Stefan Reinauer00636b02012-04-04 00:08:51 +0200292{
293 if (!vendor || !device) {
294 pci_write_config32(dev, PCI_SUBSYSTEM_VENDOR_ID,
295 pci_read_config32(dev, PCI_VENDOR_ID));
296 } else {
297 pci_write_config32(dev, PCI_SUBSYSTEM_VENDOR_ID,
298 ((device & 0xffff) << 16) | (vendor & 0xffff));
299 }
300}
301
302static void northbridge_dmi_init(struct device *dev)
303{
304 u32 reg32;
305
306 /* Clear error status bits */
307 DMIBAR32(0x1c4) = 0xffffffff;
308 DMIBAR32(0x1d0) = 0xffffffff;
309
310 /* Steps prior to DMI ASPM */
Vincent Palatin0ff99b72012-03-28 16:10:29 -0700311 if ((bridge_silicon_revision() & BASE_REV_MASK) == BASE_REV_SNB) {
312 reg32 = DMIBAR32(0x250);
313 reg32 &= ~((1 << 22)|(1 << 20));
314 reg32 |= (1 << 21);
315 DMIBAR32(0x250) = reg32;
316 }
Stefan Reinauer00636b02012-04-04 00:08:51 +0200317
318 reg32 = DMIBAR32(0x238);
319 reg32 |= (1 << 29);
320 DMIBAR32(0x238) = reg32;
321
322 if (bridge_silicon_revision() >= SNB_STEP_D0) {
323 reg32 = DMIBAR32(0x1f8);
324 reg32 |= (1 << 16);
325 DMIBAR32(0x1f8) = reg32;
326 } else if (bridge_silicon_revision() >= SNB_STEP_D1) {
327 reg32 = DMIBAR32(0x1f8);
328 reg32 &= ~(1 << 26);
329 reg32 |= (1 << 16);
330 DMIBAR32(0x1f8) = reg32;
331
332 reg32 = DMIBAR32(0x1fc);
333 reg32 |= (1 << 12) | (1 << 23);
334 DMIBAR32(0x1fc) = reg32;
335 }
336
337 /* Enable ASPM on SNB link, should happen before PCH link */
Vincent Palatin0ff99b72012-03-28 16:10:29 -0700338 if ((bridge_silicon_revision() & BASE_REV_MASK) == BASE_REV_SNB) {
339 reg32 = DMIBAR32(0xd04);
340 reg32 |= (1 << 4);
341 DMIBAR32(0xd04) = reg32;
342 }
Stefan Reinauer00636b02012-04-04 00:08:51 +0200343
344 reg32 = DMIBAR32(0x88);
345 reg32 |= (1 << 1) | (1 << 0);
346 DMIBAR32(0x88) = reg32;
347}
348
Patrick Rudolph3660c0f2015-07-28 08:01:02 +0200349/* Disable unused PEG devices based on devicetree */
350static void disable_peg(void)
351{
352 struct device *dev;
353 u32 reg;
354
Kyösti Mälkkic70eed12018-05-22 02:18:00 +0300355 dev = pcidev_on_root(0, 0);
Patrick Rudolph3660c0f2015-07-28 08:01:02 +0200356 reg = pci_read_config32(dev, DEVEN);
357
Kyösti Mälkkic70eed12018-05-22 02:18:00 +0300358 dev = pcidev_on_root(1, 2);
Nico Huber2dc15e92016-02-04 18:59:48 +0100359 if (!dev || !dev->enabled) {
Patrick Rudolph3660c0f2015-07-28 08:01:02 +0200360 printk(BIOS_DEBUG, "Disabling PEG12.\n");
361 reg &= ~DEVEN_PEG12;
362 }
Kyösti Mälkkic70eed12018-05-22 02:18:00 +0300363 dev = pcidev_on_root(1, 1);
Nico Huber2dc15e92016-02-04 18:59:48 +0100364 if (!dev || !dev->enabled) {
Patrick Rudolph3660c0f2015-07-28 08:01:02 +0200365 printk(BIOS_DEBUG, "Disabling PEG11.\n");
366 reg &= ~DEVEN_PEG11;
367 }
Kyösti Mälkkic70eed12018-05-22 02:18:00 +0300368 dev = pcidev_on_root(1, 0);
Nico Huber2dc15e92016-02-04 18:59:48 +0100369 if (!dev || !dev->enabled) {
Patrick Rudolph3660c0f2015-07-28 08:01:02 +0200370 printk(BIOS_DEBUG, "Disabling PEG10.\n");
371 reg &= ~DEVEN_PEG10;
372 }
Kyösti Mälkkic70eed12018-05-22 02:18:00 +0300373 dev = pcidev_on_root(2, 0);
Nico Huber2dc15e92016-02-04 18:59:48 +0100374 if (!dev || !dev->enabled) {
Patrick Rudolph3660c0f2015-07-28 08:01:02 +0200375 printk(BIOS_DEBUG, "Disabling IGD.\n");
376 reg &= ~DEVEN_IGD;
377 }
Kyösti Mälkkic70eed12018-05-22 02:18:00 +0300378 dev = pcidev_on_root(4, 0);
Patrick Rudolphecd4be82017-05-14 12:40:50 +0200379 if (!dev || !dev->enabled) {
380 printk(BIOS_DEBUG, "Disabling Device 4.\n");
381 reg &= ~DEVEN_D4EN;
382 }
Kyösti Mälkkic70eed12018-05-22 02:18:00 +0300383 dev = pcidev_on_root(6, 0);
Nico Huber2dc15e92016-02-04 18:59:48 +0100384 if (!dev || !dev->enabled) {
Patrick Rudolph3660c0f2015-07-28 08:01:02 +0200385 printk(BIOS_DEBUG, "Disabling PEG60.\n");
386 reg &= ~DEVEN_PEG60;
387 }
Kyösti Mälkkic70eed12018-05-22 02:18:00 +0300388 dev = pcidev_on_root(7, 0);
Patrick Rudolphecd4be82017-05-14 12:40:50 +0200389 if (!dev || !dev->enabled) {
390 printk(BIOS_DEBUG, "Disabling Device 7.\n");
391 reg &= ~DEVEN_D7EN;
392 }
Patrick Rudolph3660c0f2015-07-28 08:01:02 +0200393
Kyösti Mälkkic70eed12018-05-22 02:18:00 +0300394 dev = pcidev_on_root(0, 0);
Patrick Rudolph3660c0f2015-07-28 08:01:02 +0200395 pci_write_config32(dev, DEVEN, reg);
396 if (!(reg & (DEVEN_PEG60 | DEVEN_PEG10 | DEVEN_PEG11 | DEVEN_PEG12))) {
397 /* Set the PEG clock gating bit.
398 * Disables the IO clock on all PEG devices. */
399 MCHBAR32(0x7010) = MCHBAR32(0x7010) | 0x01;
400 printk(BIOS_DEBUG, "Disabling PEG IO clock.\n");
401 }
402}
403
Stefan Reinauer00636b02012-04-04 00:08:51 +0200404static void northbridge_init(struct device *dev)
405{
406 u8 bios_reset_cpl;
Duncan Lauriefe7b5d22012-06-23 20:14:07 -0700407 u32 bridge_type;
Stefan Reinauer00636b02012-04-04 00:08:51 +0200408
409 northbridge_dmi_init(dev);
410
Duncan Lauriefe7b5d22012-06-23 20:14:07 -0700411 bridge_type = MCHBAR32(0x5f10);
412 bridge_type &= ~0xff;
413
414 if ((bridge_silicon_revision() & BASE_REV_MASK) == BASE_REV_IVB) {
415 /* Enable Power Aware Interrupt Routing */
416 u8 pair = MCHBAR8(0x5418);
417 pair &= ~0xf; /* Clear 3:0 */
418 pair |= 0x4; /* Fixed Priority */
419 MCHBAR8(0x5418) = pair;
420
421 /* 30h for IvyBridge */
422 bridge_type |= 0x30;
423 } else {
424 /* 20h for Sandybridge */
425 bridge_type |= 0x20;
426 }
427 MCHBAR32(0x5f10) = bridge_type;
428
Patrick Rudolphaad34cd2015-10-21 18:05:01 +0200429 /* Turn off unused devices. Has to be done before
430 * setting BIOS_RESET_CPL.
431 */
432 disable_peg();
433
Stefan Reinauer00636b02012-04-04 00:08:51 +0200434 /*
435 * Set bit 0 of BIOS_RESET_CPL to indicate to the CPU
436 * that BIOS has initialized memory and power management
437 */
438 bios_reset_cpl = MCHBAR8(BIOS_RESET_CPL);
439 bios_reset_cpl |= 1;
440 MCHBAR8(BIOS_RESET_CPL) = bios_reset_cpl;
441 printk(BIOS_DEBUG, "Set BIOS_RESET_CPL\n");
442
443 /* Configure turbo power limits 1ms after reset complete bit */
444 mdelay(1);
445 set_power_limits(28);
446
Duncan Laurie77dbbac2012-06-25 09:51:59 -0700447 /*
448 * CPUs with configurable TDP also need power limits set
449 * in MCHBAR. Use same values from MSR_PKG_POWER_LIMIT.
450 */
451 if (cpu_config_tdp_levels()) {
452 msr_t msr = rdmsr(MSR_PKG_POWER_LIMIT);
453 MCHBAR32(0x59A0) = msr.lo;
454 MCHBAR32(0x59A4) = msr.hi;
455 }
456
Stefan Reinauer00636b02012-04-04 00:08:51 +0200457 /* Set here before graphics PM init */
458 MCHBAR32(0x5500) = 0x00100001;
459}
460
Elyes HAOUASab8743c2018-02-09 08:21:40 +0100461static u32 northbridge_get_base_reg(struct device *dev, int reg)
Vladimir Serbinenkoc16e9dfa2015-05-29 16:18:01 +0200462{
463 u32 value;
464
465 value = pci_read_config32(dev, reg);
466 /* Base registers are at 1MiB granularity. */
467 value &= ~((1 << 20) - 1);
468 return value;
469}
470
Nico Huber6f8b7df2016-10-08 18:42:46 +0200471u32 northbridge_get_tseg_base(void)
Vladimir Serbinenkoc16e9dfa2015-05-29 16:18:01 +0200472{
Kyösti Mälkkic70eed12018-05-22 02:18:00 +0300473 struct device *dev = pcidev_on_root(0, 0);
Vladimir Serbinenkoc16e9dfa2015-05-29 16:18:01 +0200474
Nico Huber6f8b7df2016-10-08 18:42:46 +0200475 return northbridge_get_base_reg(dev, TSEG);
Vladimir Serbinenkoc16e9dfa2015-05-29 16:18:01 +0200476}
477
Arthur Heymansaade90e2018-01-25 00:33:45 +0100478u32 northbridge_get_tseg_size(void)
479{
480 return CONFIG_SMM_TSEG_SIZE;
481}
482
Vladimir Serbinenkoc16e9dfa2015-05-29 16:18:01 +0200483void northbridge_write_smram(u8 smram)
484{
Kyösti Mälkkic70eed12018-05-22 02:18:00 +0300485 pci_write_config8(pcidev_on_root(0, 0), SMRAM, smram);
Vladimir Serbinenkoc16e9dfa2015-05-29 16:18:01 +0200486}
487
Stefan Reinauer00636b02012-04-04 00:08:51 +0200488static struct pci_operations intel_pci_ops = {
489 .set_subsystem = intel_set_subsystem,
490};
491
492static struct device_operations mc_ops = {
493 .read_resources = mc_read_resources,
Kyösti Mälkki27198ac2016-12-02 14:38:13 +0200494 .set_resources = pci_dev_set_resources,
Stefan Reinauer00636b02012-04-04 00:08:51 +0200495 .enable_resources = pci_dev_enable_resources,
496 .init = northbridge_init,
Stefan Reinauer00636b02012-04-04 00:08:51 +0200497 .scan_bus = 0,
498 .ops_pci = &intel_pci_ops,
Vladimir Serbinenko0a669912014-10-05 14:34:17 +0200499 .acpi_fill_ssdt_generator = generate_cpu_entries,
Stefan Reinauer00636b02012-04-04 00:08:51 +0200500};
501
Walter Murphy496f4a02012-04-23 11:08:03 -0700502static const struct pci_driver mc_driver_0100 __pci_driver = {
503 .ops = &mc_ops,
504 .vendor = PCI_VENDOR_ID_INTEL,
505 .device = 0x0100,
506};
507
Stefan Reinauer00636b02012-04-04 00:08:51 +0200508static const struct pci_driver mc_driver __pci_driver = {
509 .ops = &mc_ops,
510 .vendor = PCI_VENDOR_ID_INTEL,
511 .device = 0x0104, /* Sandy bridge */
512};
513
Damien Zammit35170382014-10-29 00:11:53 +1100514static const struct pci_driver mc_driver_150 __pci_driver = {
515 .ops = &mc_ops,
516 .vendor = PCI_VENDOR_ID_INTEL,
517 .device = 0x0150, /* Ivy bridge */
518};
519
Stefan Reinauer00636b02012-04-04 00:08:51 +0200520static const struct pci_driver mc_driver_1 __pci_driver = {
521 .ops = &mc_ops,
522 .vendor = PCI_VENDOR_ID_INTEL,
523 .device = 0x0154, /* Ivy bridge */
524};
525
Vagiz Trakhanov1dd448c2017-09-28 14:42:11 +0000526static const struct pci_driver mc_driver_158 __pci_driver = {
527 .ops = &mc_ops,
528 .vendor = PCI_VENDOR_ID_INTEL,
529 .device = 0x0158, /* Ivy bridge */
530};
531
Elyes HAOUASab8743c2018-02-09 08:21:40 +0100532static void cpu_bus_init(struct device *dev)
Stefan Reinauer00636b02012-04-04 00:08:51 +0200533{
Arthur Heymansedbf5d92018-01-25 20:03:42 +0100534 bsp_init_and_start_aps(dev->link_list);
Stefan Reinauer00636b02012-04-04 00:08:51 +0200535}
536
Stefan Reinauer00636b02012-04-04 00:08:51 +0200537static struct device_operations cpu_bus_ops = {
Edward O'Callaghan9f744622014-10-31 08:12:34 +1100538 .read_resources = DEVICE_NOOP,
539 .set_resources = DEVICE_NOOP,
540 .enable_resources = DEVICE_NOOP,
Stefan Reinauer00636b02012-04-04 00:08:51 +0200541 .init = cpu_bus_init,
542 .scan_bus = 0,
543};
544
Elyes HAOUASab8743c2018-02-09 08:21:40 +0100545static void enable_dev(struct device *dev)
Stefan Reinauer00636b02012-04-04 00:08:51 +0200546{
547 /* Set the operations if it is a special bus type */
Stefan Reinauer4aff4452013-02-12 14:17:15 -0800548 if (dev->path.type == DEVICE_PATH_DOMAIN) {
Stefan Reinauer00636b02012-04-04 00:08:51 +0200549 dev->ops = &pci_domain_ops;
Stefan Reinauer0aa37c42013-02-12 15:20:54 -0800550 } else if (dev->path.type == DEVICE_PATH_CPU_CLUSTER) {
Stefan Reinauer00636b02012-04-04 00:08:51 +0200551 dev->ops = &cpu_bus_ops;
552 }
553}
554
555struct chip_operations northbridge_intel_sandybridge_ops = {
Damien Zammit35170382014-10-29 00:11:53 +1100556 CHIP_NAME("Intel SandyBridge/IvyBridge integrated Northbridge")
Stefan Reinauer00636b02012-04-04 00:08:51 +0200557 .enable_dev = enable_dev,
558};