blob: 8f1db9791b63593a4e59ca323a6517f853687be9 [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>
Angel Pons20905cf2020-08-03 14:18:41 +02005#include <commonlib/helpers.h>
Kyösti Mälkkif1b58b72019-03-01 13:43:02 +02006#include <device/pci_ops.h>
Stefan Reinauer00636b02012-04-04 00:08:51 +02007#include <stdint.h>
8#include <delay.h>
9#include <cpu/intel/model_206ax/model_206ax.h>
Duncan Laurie77dbbac2012-06-25 09:51:59 -070010#include <cpu/x86/msr.h>
Stefan Reinauer00636b02012-04-04 00:08:51 +020011#include <device/device.h>
12#include <device/pci.h>
13#include <device/pci_ids.h>
Stefan Reinauer00636b02012-04-04 00:08:51 +020014#include "chip.h"
15#include "sandybridge.h"
Kyösti Mälkkif091f4d2019-08-14 03:49:21 +030016#include <cpu/intel/smm_reloc.h>
Stefan Reinauer00636b02012-04-04 00:08:51 +020017
18static int bridge_revision_id = -1;
19
Kyösti Mälkkif7bfc342013-10-18 11:02:46 +030020/* IGD UMA memory */
21static uint64_t uma_memory_base = 0;
22static uint64_t uma_memory_size = 0;
23
Stefan Reinauer00636b02012-04-04 00:08:51 +020024int bridge_silicon_revision(void)
25{
26 if (bridge_revision_id < 0) {
Angel Pons7c49cb82020-03-16 23:17:32 +010027 uint8_t stepping = cpuid_eax(1) & 0x0f;
28 uint8_t bridge_id = pci_read_config16(pcidev_on_root(0, 0), PCI_DEVICE_ID);
29 bridge_revision_id = (bridge_id & 0xf0) | stepping;
Stefan Reinauer00636b02012-04-04 00:08:51 +020030 }
31 return bridge_revision_id;
32}
33
34/* Reserve everything between A segment and 1MB:
35 *
36 * 0xa0000 - 0xbffff: legacy VGA
37 * 0xc0000 - 0xcffff: VGA OPROM (needed by kernel)
38 * 0xe0000 - 0xfffff: SeaBIOS, if used, otherwise DMI
39 */
40static const int legacy_hole_base_k = 0xa0000 / 1024;
41static const int legacy_hole_size_k = 384;
42
Angel Pons20905cf2020-08-03 14:18:41 +020043static int decode_pcie_bar(u32 *const base, u32 *const len)
Stefan Reinauer00636b02012-04-04 00:08:51 +020044{
Stefan Reinauer00636b02012-04-04 00:08:51 +020045 *base = 0;
Angel Pons20905cf2020-08-03 14:18:41 +020046 *len = 0;
Stefan Reinauer00636b02012-04-04 00:08:51 +020047
Angel Pons20905cf2020-08-03 14:18:41 +020048 struct device *dev = pcidev_on_root(0, 0);
Stefan Reinauer00636b02012-04-04 00:08:51 +020049 if (!dev)
50 return 0;
51
Angel Pons20905cf2020-08-03 14:18:41 +020052 const u32 pciexbar_reg = pci_read_config32(dev, PCIEXBAR);
Stefan Reinauer00636b02012-04-04 00:08:51 +020053
Angel Pons7c49cb82020-03-16 23:17:32 +010054 /* MMCFG not supported or not enabled */
Stefan Reinauer00636b02012-04-04 00:08:51 +020055 if (!(pciexbar_reg & (1 << 0)))
56 return 0;
57
58 switch ((pciexbar_reg >> 1) & 3) {
Angel Pons7c49cb82020-03-16 23:17:32 +010059 case 0: /* 256MB */
Angel Pons20905cf2020-08-03 14:18:41 +020060 *base = pciexbar_reg & (0x0f << 28);
61 *len = 256 * MiB;
62 return 1;
Angel Pons7c49cb82020-03-16 23:17:32 +010063 case 1: /* 128M */
Angel Pons20905cf2020-08-03 14:18:41 +020064 *base = pciexbar_reg & (0x1f << 27);
65 *len = 128 * MiB;
66 return 1;
Angel Pons7c49cb82020-03-16 23:17:32 +010067 case 2: /* 64M */
Angel Pons20905cf2020-08-03 14:18:41 +020068 *base = pciexbar_reg & (0x3f << 26);
69 *len = 64 * MiB;
70 return 1;
Stefan Reinauer00636b02012-04-04 00:08:51 +020071 }
72
73 return 0;
74}
75
Aaron Durbin1ca24332020-05-13 11:38:35 -060076static const char *northbridge_acpi_name(const struct device *dev)
77{
78 if (dev->path.type == DEVICE_PATH_DOMAIN)
79 return "PCI0";
80
81 if (dev->path.type != DEVICE_PATH_PCI)
82 return NULL;
83
84 switch (dev->path.pci.devfn) {
85 case PCI_DEVFN(0, 0):
86 return "MCHC";
87 }
88
89 return NULL;
90}
91
92/*
93 * TODO We could determine how many PCIe busses we need in the bar.
94 * For now, that number is hardcoded to a max of 64.
95 */
96static struct device_operations pci_domain_ops = {
97 .read_resources = pci_domain_read_resources,
98 .set_resources = pci_domain_set_resources,
99 .scan_bus = pci_domain_scan_bus,
100 .write_acpi_tables = northbridge_write_acpi_tables,
101 .acpi_name = northbridge_acpi_name,
102};
103
Stefan Reinauer00636b02012-04-04 00:08:51 +0200104static void add_fixed_resources(struct device *dev, int index)
105{
Kyösti Mälkki7f189cc2012-07-27 13:12:03 +0300106 mmio_resource(dev, index++, uma_memory_base >> 10, uma_memory_size >> 10);
Stefan Reinauer00636b02012-04-04 00:08:51 +0200107
Angel Pons7c49cb82020-03-16 23:17:32 +0100108 mmio_resource(dev, index++, legacy_hole_base_k, (0xc0000 >> 10) - legacy_hole_base_k);
109
110 reserved_ram_resource(dev, index++, 0xc0000 >> 10, (0x100000 - 0xc0000) >> 10);
Kyösti Mälkki1ec5e742012-07-26 23:51:20 +0300111
Julius Wernercd49cce2019-03-05 16:53:33 -0800112#if CONFIG(CHROMEOS_RAMOOPS)
Aaron Durbinc9650762013-03-22 22:03:09 -0500113 reserved_ram_resource(dev, index++,
114 CONFIG_CHROMEOS_RAMOOPS_RAM_START >> 10,
Angel Pons7c49cb82020-03-16 23:17:32 +0100115 CONFIG_CHROMEOS_RAMOOPS_RAM_SIZE >> 10);
Kyösti Mälkki1ec5e742012-07-26 23:51:20 +0300116#endif
117
Nico Huber593e7de2015-11-04 15:46:00 +0100118 if ((bridge_silicon_revision() & BASE_REV_MASK) == BASE_REV_SNB) {
119 /* Required for SandyBridge sighting 3715511 */
120 bad_ram_resource(dev, index++, 0x20000000 >> 10, 0x00200000 >> 10);
121 bad_ram_resource(dev, index++, 0x40000000 >> 10, 0x00200000 >> 10);
122 }
Nico Huberbb9469c2015-10-21 11:49:23 +0200123
124 /* Reserve IOMMU BARs */
Angel Pons7c49cb82020-03-16 23:17:32 +0100125 const u32 capid0_a = pci_read_config32(dev, CAPID0_A);
Nico Huberbb9469c2015-10-21 11:49:23 +0200126 if (!(capid0_a & (1 << 23))) {
Angel Pons7c49cb82020-03-16 23:17:32 +0100127 mmio_resource(dev, index++, GFXVT_BASE >> 10, 4);
128 mmio_resource(dev, index++, VTVC0_BASE >> 10, 4);
Nico Huberbb9469c2015-10-21 11:49:23 +0200129 }
Stefan Reinauer00636b02012-04-04 00:08:51 +0200130}
131
Aaron Durbin1ca24332020-05-13 11:38:35 -0600132static void mc_read_resources(struct device *dev)
Stefan Reinauer00636b02012-04-04 00:08:51 +0200133{
Angel Pons20905cf2020-08-03 14:18:41 +0200134 u32 pcie_config_base, pcie_config_len;
Stefan Reinauer00636b02012-04-04 00:08:51 +0200135 uint64_t tom, me_base, touud;
136 uint32_t tseg_base, uma_size, tolud;
137 uint16_t ggc;
138 unsigned long long tomk;
Angel Pons14ea2fc2020-05-13 21:46:46 +0200139 unsigned long index = 3;
Stefan Reinauer00636b02012-04-04 00:08:51 +0200140
Aaron Durbin1ca24332020-05-13 11:38:35 -0600141 pci_dev_read_resources(dev);
142
Angel Pons20905cf2020-08-03 14:18:41 +0200143 if (decode_pcie_bar(&pcie_config_base, &pcie_config_len)) {
144 const int buses = pcie_config_len / MiB;
Aaron Durbin1ca24332020-05-13 11:38:35 -0600145 struct resource *resource = new_resource(dev, PCIEXBAR);
146 mmconf_resource_init(resource, pcie_config_base, buses);
147 }
148
Stefan Reinauer00636b02012-04-04 00:08:51 +0200149 /* Total Memory 2GB example:
150 *
151 * 00000000 0000MB-1992MB 1992MB RAM (writeback)
152 * 7c800000 1992MB-2000MB 8MB TSEG (SMRR)
153 * 7d000000 2000MB-2002MB 2MB GFX GTT (uncached)
154 * 7d200000 2002MB-2034MB 32MB GFX UMA (uncached)
155 * 7f200000 2034MB TOLUD
156 * 7f800000 2040MB MEBASE
157 * 7f800000 2040MB-2048MB 8MB ME UMA (uncached)
158 * 80000000 2048MB TOM
159 * 100000000 4096MB-4102MB 6MB RAM (writeback)
160 *
161 * Total Memory 4GB example:
162 *
163 * 00000000 0000MB-2768MB 2768MB RAM (writeback)
164 * ad000000 2768MB-2776MB 8MB TSEG (SMRR)
165 * ad800000 2776MB-2778MB 2MB GFX GTT (uncached)
166 * ada00000 2778MB-2810MB 32MB GFX UMA (uncached)
167 * afa00000 2810MB TOLUD
168 * ff800000 4088MB MEBASE
169 * ff800000 4088MB-4096MB 8MB ME UMA (uncached)
170 * 100000000 4096MB TOM
171 * 100000000 4096MB-5374MB 1278MB RAM (writeback)
172 * 14fe00000 5368MB TOUUD
173 */
174
175 /* Top of Upper Usable DRAM, including remap */
Aaron Durbin1ca24332020-05-13 11:38:35 -0600176 touud = pci_read_config32(dev, TOUUD + 4);
Stefan Reinauer00636b02012-04-04 00:08:51 +0200177 touud <<= 32;
Aaron Durbin1ca24332020-05-13 11:38:35 -0600178 touud |= pci_read_config32(dev, TOUUD);
Stefan Reinauer00636b02012-04-04 00:08:51 +0200179
180 /* Top of Lower Usable DRAM */
Aaron Durbin1ca24332020-05-13 11:38:35 -0600181 tolud = pci_read_config32(dev, TOLUD);
Stefan Reinauer00636b02012-04-04 00:08:51 +0200182
183 /* Top of Memory - does not account for any UMA */
Aaron Durbin1ca24332020-05-13 11:38:35 -0600184 tom = pci_read_config32(dev, TOM + 4);
Stefan Reinauer00636b02012-04-04 00:08:51 +0200185 tom <<= 32;
Aaron Durbin1ca24332020-05-13 11:38:35 -0600186 tom |= pci_read_config32(dev, TOM);
Stefan Reinauer00636b02012-04-04 00:08:51 +0200187
188 printk(BIOS_DEBUG, "TOUUD 0x%llx TOLUD 0x%08x TOM 0x%llx\n",
189 touud, tolud, tom);
190
Angel Pons7c49cb82020-03-16 23:17:32 +0100191 /* ME UMA needs excluding if total memory < 4GB */
Aaron Durbin1ca24332020-05-13 11:38:35 -0600192 me_base = pci_read_config32(dev, MESEG_BASE + 4);
Stefan Reinauer00636b02012-04-04 00:08:51 +0200193 me_base <<= 32;
Aaron Durbin1ca24332020-05-13 11:38:35 -0600194 me_base |= pci_read_config32(dev, MESEG_BASE);
Stefan Reinauer00636b02012-04-04 00:08:51 +0200195
196 printk(BIOS_DEBUG, "MEBASE 0x%llx\n", me_base);
197
Patrick Rudolph240766a2015-10-15 15:33:25 +0200198 uma_memory_base = tolud;
Stefan Reinauer00636b02012-04-04 00:08:51 +0200199 tomk = tolud >> 10;
200 if (me_base == tolud) {
201 /* ME is from MEBASE-TOM */
202 uma_size = (tom - me_base) >> 10;
203 /* Increment TOLUD to account for ME as RAM */
204 tolud += uma_size << 10;
205 /* UMA starts at old TOLUD */
206 uma_memory_base = tomk * 1024ULL;
207 uma_memory_size = uma_size * 1024ULL;
208 printk(BIOS_DEBUG, "ME UMA base 0x%llx size %uM\n",
209 me_base, uma_size >> 10);
210 }
211
212 /* Graphics memory comes next */
Aaron Durbin1ca24332020-05-13 11:38:35 -0600213 ggc = pci_read_config16(dev, GGC);
Stefan Reinauer00636b02012-04-04 00:08:51 +0200214 if (!(ggc & 2)) {
215 printk(BIOS_DEBUG, "IGD decoded, subtracting ");
216
217 /* Graphics memory */
218 uma_size = ((ggc >> 3) & 0x1f) * 32 * 1024ULL;
219 printk(BIOS_DEBUG, "%uM UMA", uma_size >> 10);
220 tomk -= uma_size;
221 uma_memory_base = tomk * 1024ULL;
222 uma_memory_size += uma_size * 1024ULL;
223
224 /* GTT Graphics Stolen Memory Size (GGMS) */
225 uma_size = ((ggc >> 8) & 0x3) * 1024ULL;
226 tomk -= uma_size;
227 uma_memory_base = tomk * 1024ULL;
228 uma_memory_size += uma_size * 1024ULL;
229 printk(BIOS_DEBUG, " and %uM GTT\n", uma_size >> 10);
230 }
231
232 /* Calculate TSEG size from its base which must be below GTT */
Aaron Durbin1ca24332020-05-13 11:38:35 -0600233 tseg_base = pci_read_config32(dev, TSEGMB);
Stefan Reinauer00636b02012-04-04 00:08:51 +0200234 uma_size = (uma_memory_base - tseg_base) >> 10;
235 tomk -= uma_size;
236 uma_memory_base = tomk * 1024ULL;
237 uma_memory_size += uma_size * 1024ULL;
Angel Pons7c49cb82020-03-16 23:17:32 +0100238 printk(BIOS_DEBUG, "TSEG base 0x%08x size %uM\n", tseg_base, uma_size >> 10);
Stefan Reinauer00636b02012-04-04 00:08:51 +0200239
240 printk(BIOS_INFO, "Available memory below 4GB: %lluM\n", tomk >> 10);
241
242 /* Report the memory regions */
Angel Pons14ea2fc2020-05-13 21:46:46 +0200243 ram_resource(dev, index++, 0, legacy_hole_base_k);
244 ram_resource(dev, index++, legacy_hole_base_k + legacy_hole_size_k,
245 (tomk - (legacy_hole_base_k + legacy_hole_size_k)));
Stefan Reinauer00636b02012-04-04 00:08:51 +0200246
247 /*
Angel Pons7c49cb82020-03-16 23:17:32 +0100248 * If >= 4GB installed, then memory from TOLUD to 4GB is remapped above TOM.
249 * TOUUD will account for both memory chunks.
Stefan Reinauer00636b02012-04-04 00:08:51 +0200250 */
251 touud >>= 10; /* Convert to KB */
252 if (touud > 4096 * 1024) {
Angel Pons14ea2fc2020-05-13 21:46:46 +0200253 ram_resource(dev, index++, 4096 * 1024, touud - (4096 * 1024));
Angel Pons7c49cb82020-03-16 23:17:32 +0100254 printk(BIOS_INFO, "Available memory above 4GB: %lluM\n", (touud >> 10) - 4096);
Stefan Reinauer00636b02012-04-04 00:08:51 +0200255 }
256
Angel Pons14ea2fc2020-05-13 21:46:46 +0200257 add_fixed_resources(dev, index++);
Stefan Reinauer00636b02012-04-04 00:08:51 +0200258}
259
Stefan Reinauer00636b02012-04-04 00:08:51 +0200260static void northbridge_dmi_init(struct device *dev)
261{
262 u32 reg32;
263
264 /* Clear error status bits */
265 DMIBAR32(0x1c4) = 0xffffffff;
266 DMIBAR32(0x1d0) = 0xffffffff;
267
268 /* Steps prior to DMI ASPM */
Vincent Palatin0ff99b72012-03-28 16:10:29 -0700269 if ((bridge_silicon_revision() & BASE_REV_MASK) == BASE_REV_SNB) {
270 reg32 = DMIBAR32(0x250);
Angel Pons7c49cb82020-03-16 23:17:32 +0100271 reg32 &= ~((1 << 22) | (1 << 20));
Vincent Palatin0ff99b72012-03-28 16:10:29 -0700272 reg32 |= (1 << 21);
273 DMIBAR32(0x250) = reg32;
274 }
Stefan Reinauer00636b02012-04-04 00:08:51 +0200275
276 reg32 = DMIBAR32(0x238);
277 reg32 |= (1 << 29);
278 DMIBAR32(0x238) = reg32;
279
280 if (bridge_silicon_revision() >= SNB_STEP_D0) {
281 reg32 = DMIBAR32(0x1f8);
282 reg32 |= (1 << 16);
283 DMIBAR32(0x1f8) = reg32;
Angel Pons7c49cb82020-03-16 23:17:32 +0100284
Stefan Reinauer00636b02012-04-04 00:08:51 +0200285 } else if (bridge_silicon_revision() >= SNB_STEP_D1) {
286 reg32 = DMIBAR32(0x1f8);
287 reg32 &= ~(1 << 26);
288 reg32 |= (1 << 16);
289 DMIBAR32(0x1f8) = reg32;
290
291 reg32 = DMIBAR32(0x1fc);
292 reg32 |= (1 << 12) | (1 << 23);
293 DMIBAR32(0x1fc) = reg32;
294 }
295
296 /* Enable ASPM on SNB link, should happen before PCH link */
Vincent Palatin0ff99b72012-03-28 16:10:29 -0700297 if ((bridge_silicon_revision() & BASE_REV_MASK) == BASE_REV_SNB) {
298 reg32 = DMIBAR32(0xd04);
299 reg32 |= (1 << 4);
300 DMIBAR32(0xd04) = reg32;
301 }
Stefan Reinauer00636b02012-04-04 00:08:51 +0200302
303 reg32 = DMIBAR32(0x88);
304 reg32 |= (1 << 1) | (1 << 0);
305 DMIBAR32(0x88) = reg32;
306}
307
Patrick Rudolph3660c0f2015-07-28 08:01:02 +0200308/* Disable unused PEG devices based on devicetree */
309static void disable_peg(void)
310{
311 struct device *dev;
312 u32 reg;
313
Kyösti Mälkkic70eed12018-05-22 02:18:00 +0300314 dev = pcidev_on_root(0, 0);
Patrick Rudolph3660c0f2015-07-28 08:01:02 +0200315 reg = pci_read_config32(dev, DEVEN);
316
Kyösti Mälkkic70eed12018-05-22 02:18:00 +0300317 dev = pcidev_on_root(1, 2);
Nico Huber2dc15e92016-02-04 18:59:48 +0100318 if (!dev || !dev->enabled) {
Patrick Rudolph3660c0f2015-07-28 08:01:02 +0200319 printk(BIOS_DEBUG, "Disabling PEG12.\n");
320 reg &= ~DEVEN_PEG12;
321 }
Kyösti Mälkkic70eed12018-05-22 02:18:00 +0300322 dev = pcidev_on_root(1, 1);
Nico Huber2dc15e92016-02-04 18:59:48 +0100323 if (!dev || !dev->enabled) {
Patrick Rudolph3660c0f2015-07-28 08:01:02 +0200324 printk(BIOS_DEBUG, "Disabling PEG11.\n");
325 reg &= ~DEVEN_PEG11;
326 }
Kyösti Mälkkic70eed12018-05-22 02:18:00 +0300327 dev = pcidev_on_root(1, 0);
Nico Huber2dc15e92016-02-04 18:59:48 +0100328 if (!dev || !dev->enabled) {
Patrick Rudolph3660c0f2015-07-28 08:01:02 +0200329 printk(BIOS_DEBUG, "Disabling PEG10.\n");
330 reg &= ~DEVEN_PEG10;
331 }
Kyösti Mälkkic70eed12018-05-22 02:18:00 +0300332 dev = pcidev_on_root(2, 0);
Nico Huber2dc15e92016-02-04 18:59:48 +0100333 if (!dev || !dev->enabled) {
Patrick Rudolph3660c0f2015-07-28 08:01:02 +0200334 printk(BIOS_DEBUG, "Disabling IGD.\n");
335 reg &= ~DEVEN_IGD;
336 }
Kyösti Mälkkic70eed12018-05-22 02:18:00 +0300337 dev = pcidev_on_root(4, 0);
Patrick Rudolphecd4be82017-05-14 12:40:50 +0200338 if (!dev || !dev->enabled) {
339 printk(BIOS_DEBUG, "Disabling Device 4.\n");
340 reg &= ~DEVEN_D4EN;
341 }
Kyösti Mälkkic70eed12018-05-22 02:18:00 +0300342 dev = pcidev_on_root(6, 0);
Nico Huber2dc15e92016-02-04 18:59:48 +0100343 if (!dev || !dev->enabled) {
Patrick Rudolph3660c0f2015-07-28 08:01:02 +0200344 printk(BIOS_DEBUG, "Disabling PEG60.\n");
345 reg &= ~DEVEN_PEG60;
346 }
Kyösti Mälkkic70eed12018-05-22 02:18:00 +0300347 dev = pcidev_on_root(7, 0);
Patrick Rudolphecd4be82017-05-14 12:40:50 +0200348 if (!dev || !dev->enabled) {
349 printk(BIOS_DEBUG, "Disabling Device 7.\n");
350 reg &= ~DEVEN_D7EN;
351 }
Patrick Rudolph3660c0f2015-07-28 08:01:02 +0200352
Kyösti Mälkkic70eed12018-05-22 02:18:00 +0300353 dev = pcidev_on_root(0, 0);
Patrick Rudolph3660c0f2015-07-28 08:01:02 +0200354 pci_write_config32(dev, DEVEN, reg);
Angel Pons7c49cb82020-03-16 23:17:32 +0100355
Patrick Rudolph3660c0f2015-07-28 08:01:02 +0200356 if (!(reg & (DEVEN_PEG60 | DEVEN_PEG10 | DEVEN_PEG11 | DEVEN_PEG12))) {
Angel Pons7c49cb82020-03-16 23:17:32 +0100357 /*
358 * Set the PEG clock gating bit. Disables the IO clock on all PEG devices.
359 *
Angel Pons78b43c82020-03-17 23:55:18 +0100360 * FIXME: Never clock gate on Ivy Bridge stepping A0!
Angel Pons7c49cb82020-03-16 23:17:32 +0100361 */
362 MCHBAR32_OR(PEGCTL, 1);
Patrick Rudolph3660c0f2015-07-28 08:01:02 +0200363 printk(BIOS_DEBUG, "Disabling PEG IO clock.\n");
Angel Pons78b43c82020-03-17 23:55:18 +0100364 } else {
365 MCHBAR32_AND(PEGCTL, ~1);
Patrick Rudolph3660c0f2015-07-28 08:01:02 +0200366 }
367}
368
Stefan Reinauer00636b02012-04-04 00:08:51 +0200369static void northbridge_init(struct device *dev)
370{
371 u8 bios_reset_cpl;
Duncan Lauriefe7b5d22012-06-23 20:14:07 -0700372 u32 bridge_type;
Stefan Reinauer00636b02012-04-04 00:08:51 +0200373
374 northbridge_dmi_init(dev);
375
Angel Pons88521882020-01-05 20:21:20 +0100376 bridge_type = MCHBAR32(SAPMTIMERS);
Duncan Lauriefe7b5d22012-06-23 20:14:07 -0700377 bridge_type &= ~0xff;
378
379 if ((bridge_silicon_revision() & BASE_REV_MASK) == BASE_REV_IVB) {
380 /* Enable Power Aware Interrupt Routing */
Angel Pons7c49cb82020-03-16 23:17:32 +0100381 u8 pair = MCHBAR8(INTRDIRCTL);
382 pair &= ~0x0f; /* Clear 3:0 */
383 pair |= 0x04; /* Fixed Priority */
384 MCHBAR8(INTRDIRCTL) = pair;
Duncan Lauriefe7b5d22012-06-23 20:14:07 -0700385
386 /* 30h for IvyBridge */
387 bridge_type |= 0x30;
388 } else {
389 /* 20h for Sandybridge */
390 bridge_type |= 0x20;
391 }
Angel Pons88521882020-01-05 20:21:20 +0100392 MCHBAR32(SAPMTIMERS) = bridge_type;
Duncan Lauriefe7b5d22012-06-23 20:14:07 -0700393
Angel Pons7c49cb82020-03-16 23:17:32 +0100394 /* Turn off unused devices. Has to be done before setting BIOS_RESET_CPL. */
Patrick Rudolphaad34cd2015-10-21 18:05:01 +0200395 disable_peg();
396
Stefan Reinauer00636b02012-04-04 00:08:51 +0200397 /*
398 * Set bit 0 of BIOS_RESET_CPL to indicate to the CPU
399 * that BIOS has initialized memory and power management
400 */
401 bios_reset_cpl = MCHBAR8(BIOS_RESET_CPL);
402 bios_reset_cpl |= 1;
403 MCHBAR8(BIOS_RESET_CPL) = bios_reset_cpl;
404 printk(BIOS_DEBUG, "Set BIOS_RESET_CPL\n");
405
406 /* Configure turbo power limits 1ms after reset complete bit */
407 mdelay(1);
408 set_power_limits(28);
409
Duncan Laurie77dbbac2012-06-25 09:51:59 -0700410 /*
Angel Pons7c49cb82020-03-16 23:17:32 +0100411 * CPUs with configurable TDP also need power limits set in MCHBAR.
412 * Use the same values from MSR_PKG_POWER_LIMIT.
Duncan Laurie77dbbac2012-06-25 09:51:59 -0700413 */
414 if (cpu_config_tdp_levels()) {
415 msr_t msr = rdmsr(MSR_PKG_POWER_LIMIT);
Angel Pons7c49cb82020-03-16 23:17:32 +0100416 MCHBAR32(MCH_PKG_POWER_LIMIT_LO) = msr.lo;
417 MCHBAR32(MCH_PKG_POWER_LIMIT_HI) = msr.hi;
Duncan Laurie77dbbac2012-06-25 09:51:59 -0700418 }
419
Stefan Reinauer00636b02012-04-04 00:08:51 +0200420 /* Set here before graphics PM init */
Angel Pons7c49cb82020-03-16 23:17:32 +0100421 MCHBAR32(PAVP_MSG) = 0x00100001;
Stefan Reinauer00636b02012-04-04 00:08:51 +0200422}
423
Vladimir Serbinenkoc16e9dfa2015-05-29 16:18:01 +0200424void northbridge_write_smram(u8 smram)
425{
Kyösti Mälkkic70eed12018-05-22 02:18:00 +0300426 pci_write_config8(pcidev_on_root(0, 0), SMRAM, smram);
Vladimir Serbinenkoc16e9dfa2015-05-29 16:18:01 +0200427}
428
Stefan Reinauer00636b02012-04-04 00:08:51 +0200429static struct device_operations mc_ops = {
Nico Huber68680dd2020-03-31 17:34:52 +0200430 .read_resources = mc_read_resources,
431 .set_resources = pci_dev_set_resources,
432 .enable_resources = pci_dev_enable_resources,
433 .init = northbridge_init,
Angel Pons1fc0edd2020-05-31 00:03:28 +0200434 .ops_pci = &pci_dev_ops_pci,
Nico Huber68680dd2020-03-31 17:34:52 +0200435 .acpi_fill_ssdt = generate_cpu_entries,
Stefan Reinauer00636b02012-04-04 00:08:51 +0200436};
437
Jonathan A. Kollaschbda161b2020-02-13 13:04:48 -0600438static const unsigned short pci_device_ids[] = {
Jonathan A. Kollaschd346a192020-02-11 09:03:48 -0600439 0x0100, 0x0104, 0x0108, /* Sandy Bridge */
Jonathan A. Kollaschbda161b2020-02-13 13:04:48 -0600440 0x0150, 0x0154, 0x0158, /* Ivy Bridge */
441 0
Walter Murphy496f4a02012-04-23 11:08:03 -0700442};
443
Stefan Reinauer00636b02012-04-04 00:08:51 +0200444static const struct pci_driver mc_driver __pci_driver = {
Angel Pons7c49cb82020-03-16 23:17:32 +0100445 .ops = &mc_ops,
446 .vendor = PCI_VENDOR_ID_INTEL,
Jonathan A. Kollaschbda161b2020-02-13 13:04:48 -0600447 .devices = pci_device_ids,
Vagiz Trakhanov1dd448c2017-09-28 14:42:11 +0000448};
449
Stefan Reinauer00636b02012-04-04 00:08:51 +0200450static struct device_operations cpu_bus_ops = {
Nico Huber2f8ba692020-04-05 14:05:24 +0200451 .read_resources = noop_read_resources,
452 .set_resources = noop_set_resources,
Kyösti Mälkkib3267e02019-08-13 16:44:04 +0300453 .init = mp_cpu_bus_init,
Stefan Reinauer00636b02012-04-04 00:08:51 +0200454};
455
Elyes HAOUASab8743c2018-02-09 08:21:40 +0100456static void enable_dev(struct device *dev)
Stefan Reinauer00636b02012-04-04 00:08:51 +0200457{
458 /* Set the operations if it is a special bus type */
Stefan Reinauer4aff4452013-02-12 14:17:15 -0800459 if (dev->path.type == DEVICE_PATH_DOMAIN) {
Stefan Reinauer00636b02012-04-04 00:08:51 +0200460 dev->ops = &pci_domain_ops;
Stefan Reinauer0aa37c42013-02-12 15:20:54 -0800461 } else if (dev->path.type == DEVICE_PATH_CPU_CLUSTER) {
Stefan Reinauer00636b02012-04-04 00:08:51 +0200462 dev->ops = &cpu_bus_ops;
463 }
464}
465
466struct chip_operations northbridge_intel_sandybridge_ops = {
Damien Zammit35170382014-10-29 00:11:53 +1100467 CHIP_NAME("Intel SandyBridge/IvyBridge integrated Northbridge")
Stefan Reinauer00636b02012-04-04 00:08:51 +0200468 .enable_dev = enable_dev,
469};