blob: 032e500dc3bdb56b26a1a277ebb291be3ee58faf [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
Arthur Heymansf8daf862021-02-24 19:21:33 +01003#include <cpu/cpu.h>
Stefan Reinauer00636b02012-04-04 00:08:51 +02004#include <console/console.h>
Furquan Shaikh76cedd22020-05-02 10:24:23 -07005#include <acpi/acpi.h>
Arthur Heymansf8daf862021-02-24 19:21:33 +01006#include <acpi/acpigen.h>
Angel Pons20905cf2020-08-03 14:18:41 +02007#include <commonlib/helpers.h>
Kyösti Mälkkif1b58b72019-03-01 13:43:02 +02008#include <device/pci_ops.h>
Stefan Reinauer00636b02012-04-04 00:08:51 +02009#include <delay.h>
10#include <cpu/intel/model_206ax/model_206ax.h>
Duncan Laurie77dbbac2012-06-25 09:51:59 -070011#include <cpu/x86/msr.h>
Stefan Reinauer00636b02012-04-04 00:08:51 +020012#include <device/device.h>
13#include <device/pci.h>
14#include <device/pci_ids.h>
Angel Pons964d91f2020-12-07 13:11:17 +010015#include <types.h>
Stefan Reinauer00636b02012-04-04 00:08:51 +020016#include "chip.h"
17#include "sandybridge.h"
Kyösti Mälkkif091f4d2019-08-14 03:49:21 +030018#include <cpu/intel/smm_reloc.h>
Michał Żygowskiede87182021-11-21 11:53:42 +010019#include <security/intel/txt/txt_platform.h>
Stefan Reinauer00636b02012-04-04 00:08:51 +020020
Kyösti Mälkkif7bfc342013-10-18 11:02:46 +030021/* IGD UMA memory */
22static uint64_t uma_memory_base = 0;
23static uint64_t uma_memory_size = 0;
24
Angel Pons964d91f2020-12-07 13:11:17 +010025bool is_sandybridge(void)
Stefan Reinauer00636b02012-04-04 00:08:51 +020026{
Angel Pons964d91f2020-12-07 13:11:17 +010027 const uint16_t bridge_id = pci_read_config16(pcidev_on_root(0, 0), PCI_DEVICE_ID);
28
29 return (bridge_id & BASE_REV_MASK) == BASE_REV_SNB;
Stefan Reinauer00636b02012-04-04 00:08:51 +020030}
31
32/* Reserve everything between A segment and 1MB:
33 *
34 * 0xa0000 - 0xbffff: legacy VGA
35 * 0xc0000 - 0xcffff: VGA OPROM (needed by kernel)
36 * 0xe0000 - 0xfffff: SeaBIOS, if used, otherwise DMI
37 */
38static const int legacy_hole_base_k = 0xa0000 / 1024;
39static const int legacy_hole_size_k = 384;
40
Aaron Durbin1ca24332020-05-13 11:38:35 -060041static const char *northbridge_acpi_name(const struct device *dev)
42{
43 if (dev->path.type == DEVICE_PATH_DOMAIN)
44 return "PCI0";
45
46 if (dev->path.type != DEVICE_PATH_PCI)
47 return NULL;
48
49 switch (dev->path.pci.devfn) {
50 case PCI_DEVFN(0, 0):
51 return "MCHC";
52 }
53
54 return NULL;
55}
56
Aaron Durbin1ca24332020-05-13 11:38:35 -060057static struct device_operations pci_domain_ops = {
58 .read_resources = pci_domain_read_resources,
59 .set_resources = pci_domain_set_resources,
60 .scan_bus = pci_domain_scan_bus,
61 .write_acpi_tables = northbridge_write_acpi_tables,
62 .acpi_name = northbridge_acpi_name,
63};
64
Stefan Reinauer00636b02012-04-04 00:08:51 +020065static void add_fixed_resources(struct device *dev, int index)
66{
Kyösti Mälkki27d62992022-05-24 20:25:58 +030067 mmio_resource_kb(dev, index++, uma_memory_base >> 10, uma_memory_size >> 10);
Stefan Reinauer00636b02012-04-04 00:08:51 +020068
Kyösti Mälkki27d62992022-05-24 20:25:58 +030069 mmio_resource_kb(dev, index++, legacy_hole_base_k, (0xc0000 >> 10) - legacy_hole_base_k);
Angel Pons7c49cb82020-03-16 23:17:32 +010070
Kyösti Mälkki27d62992022-05-24 20:25:58 +030071 reserved_ram_resource_kb(dev, index++, 0xc0000 >> 10, (0x100000 - 0xc0000) >> 10);
Kyösti Mälkki1ec5e742012-07-26 23:51:20 +030072
Angel Pons964d91f2020-12-07 13:11:17 +010073 if (is_sandybridge()) {
Nico Huber593e7de2015-11-04 15:46:00 +010074 /* Required for SandyBridge sighting 3715511 */
Kyösti Mälkki27d62992022-05-24 20:25:58 +030075 bad_ram_resource_kb(dev, index++, 0x20000000 >> 10, 0x00200000 >> 10);
76 bad_ram_resource_kb(dev, index++, 0x40000000 >> 10, 0x00200000 >> 10);
Nico Huber593e7de2015-11-04 15:46:00 +010077 }
Nico Huberbb9469c2015-10-21 11:49:23 +020078
79 /* Reserve IOMMU BARs */
Angel Pons7c49cb82020-03-16 23:17:32 +010080 const u32 capid0_a = pci_read_config32(dev, CAPID0_A);
Nico Huberbb9469c2015-10-21 11:49:23 +020081 if (!(capid0_a & (1 << 23))) {
Kyösti Mälkki27d62992022-05-24 20:25:58 +030082 mmio_resource_kb(dev, index++, GFXVT_BASE >> 10, 4);
83 mmio_resource_kb(dev, index++, VTVC0_BASE >> 10, 4);
Nico Huberbb9469c2015-10-21 11:49:23 +020084 }
Stefan Reinauer00636b02012-04-04 00:08:51 +020085}
86
Arthur Heymansf8daf862021-02-24 19:21:33 +010087static uint64_t get_touud(const struct device *dev)
88{
89 uint64_t touud = pci_read_config32(dev, TOUUD + 4);
90 touud <<= 32;
91 touud |= pci_read_config32(dev, TOUUD);
92 return touud;
93}
94
Aaron Durbin1ca24332020-05-13 11:38:35 -060095static void mc_read_resources(struct device *dev)
Stefan Reinauer00636b02012-04-04 00:08:51 +020096{
97 uint64_t tom, me_base, touud;
98 uint32_t tseg_base, uma_size, tolud;
Michał Żygowskiede87182021-11-21 11:53:42 +010099 uint32_t dpr_base_k, dpr_size_k;
Stefan Reinauer00636b02012-04-04 00:08:51 +0200100 uint16_t ggc;
101 unsigned long long tomk;
Angel Pons14ea2fc2020-05-13 21:46:46 +0200102 unsigned long index = 3;
Michał Żygowskiede87182021-11-21 11:53:42 +0100103 const union dpr_register dpr = txt_get_chipset_dpr();
Stefan Reinauer00636b02012-04-04 00:08:51 +0200104
Aaron Durbin1ca24332020-05-13 11:38:35 -0600105 pci_dev_read_resources(dev);
106
Angel Pons10f9b832021-01-20 14:58:32 +0100107 mmconf_resource(dev, PCIEXBAR);
Aaron Durbin1ca24332020-05-13 11:38:35 -0600108
Stefan Reinauer00636b02012-04-04 00:08:51 +0200109 /* Total Memory 2GB example:
110 *
111 * 00000000 0000MB-1992MB 1992MB RAM (writeback)
112 * 7c800000 1992MB-2000MB 8MB TSEG (SMRR)
113 * 7d000000 2000MB-2002MB 2MB GFX GTT (uncached)
114 * 7d200000 2002MB-2034MB 32MB GFX UMA (uncached)
115 * 7f200000 2034MB TOLUD
116 * 7f800000 2040MB MEBASE
117 * 7f800000 2040MB-2048MB 8MB ME UMA (uncached)
118 * 80000000 2048MB TOM
119 * 100000000 4096MB-4102MB 6MB RAM (writeback)
120 *
121 * Total Memory 4GB example:
122 *
123 * 00000000 0000MB-2768MB 2768MB RAM (writeback)
124 * ad000000 2768MB-2776MB 8MB TSEG (SMRR)
125 * ad800000 2776MB-2778MB 2MB GFX GTT (uncached)
126 * ada00000 2778MB-2810MB 32MB GFX UMA (uncached)
127 * afa00000 2810MB TOLUD
128 * ff800000 4088MB MEBASE
129 * ff800000 4088MB-4096MB 8MB ME UMA (uncached)
130 * 100000000 4096MB TOM
131 * 100000000 4096MB-5374MB 1278MB RAM (writeback)
132 * 14fe00000 5368MB TOUUD
133 */
134
135 /* Top of Upper Usable DRAM, including remap */
Arthur Heymansf8daf862021-02-24 19:21:33 +0100136 touud = get_touud(dev);
Stefan Reinauer00636b02012-04-04 00:08:51 +0200137
138 /* Top of Lower Usable DRAM */
Aaron Durbin1ca24332020-05-13 11:38:35 -0600139 tolud = pci_read_config32(dev, TOLUD);
Stefan Reinauer00636b02012-04-04 00:08:51 +0200140
141 /* Top of Memory - does not account for any UMA */
Aaron Durbin1ca24332020-05-13 11:38:35 -0600142 tom = pci_read_config32(dev, TOM + 4);
Stefan Reinauer00636b02012-04-04 00:08:51 +0200143 tom <<= 32;
Aaron Durbin1ca24332020-05-13 11:38:35 -0600144 tom |= pci_read_config32(dev, TOM);
Stefan Reinauer00636b02012-04-04 00:08:51 +0200145
146 printk(BIOS_DEBUG, "TOUUD 0x%llx TOLUD 0x%08x TOM 0x%llx\n",
147 touud, tolud, tom);
148
Angel Pons7c49cb82020-03-16 23:17:32 +0100149 /* ME UMA needs excluding if total memory < 4GB */
Aaron Durbin1ca24332020-05-13 11:38:35 -0600150 me_base = pci_read_config32(dev, MESEG_BASE + 4);
Stefan Reinauer00636b02012-04-04 00:08:51 +0200151 me_base <<= 32;
Aaron Durbin1ca24332020-05-13 11:38:35 -0600152 me_base |= pci_read_config32(dev, MESEG_BASE);
Stefan Reinauer00636b02012-04-04 00:08:51 +0200153
154 printk(BIOS_DEBUG, "MEBASE 0x%llx\n", me_base);
155
Patrick Rudolph240766a2015-10-15 15:33:25 +0200156 uma_memory_base = tolud;
Stefan Reinauer00636b02012-04-04 00:08:51 +0200157 tomk = tolud >> 10;
158 if (me_base == tolud) {
159 /* ME is from MEBASE-TOM */
160 uma_size = (tom - me_base) >> 10;
161 /* Increment TOLUD to account for ME as RAM */
162 tolud += uma_size << 10;
163 /* UMA starts at old TOLUD */
164 uma_memory_base = tomk * 1024ULL;
165 uma_memory_size = uma_size * 1024ULL;
166 printk(BIOS_DEBUG, "ME UMA base 0x%llx size %uM\n",
167 me_base, uma_size >> 10);
168 }
169
170 /* Graphics memory comes next */
Aaron Durbin1ca24332020-05-13 11:38:35 -0600171 ggc = pci_read_config16(dev, GGC);
Stefan Reinauer00636b02012-04-04 00:08:51 +0200172 if (!(ggc & 2)) {
173 printk(BIOS_DEBUG, "IGD decoded, subtracting ");
174
175 /* Graphics memory */
176 uma_size = ((ggc >> 3) & 0x1f) * 32 * 1024ULL;
177 printk(BIOS_DEBUG, "%uM UMA", uma_size >> 10);
178 tomk -= uma_size;
179 uma_memory_base = tomk * 1024ULL;
180 uma_memory_size += uma_size * 1024ULL;
181
182 /* GTT Graphics Stolen Memory Size (GGMS) */
183 uma_size = ((ggc >> 8) & 0x3) * 1024ULL;
184 tomk -= uma_size;
185 uma_memory_base = tomk * 1024ULL;
186 uma_memory_size += uma_size * 1024ULL;
187 printk(BIOS_DEBUG, " and %uM GTT\n", uma_size >> 10);
188 }
189
190 /* Calculate TSEG size from its base which must be below GTT */
Aaron Durbin1ca24332020-05-13 11:38:35 -0600191 tseg_base = pci_read_config32(dev, TSEGMB);
Stefan Reinauer00636b02012-04-04 00:08:51 +0200192 uma_size = (uma_memory_base - tseg_base) >> 10;
193 tomk -= uma_size;
194 uma_memory_base = tomk * 1024ULL;
195 uma_memory_size += uma_size * 1024ULL;
Angel Pons7c49cb82020-03-16 23:17:32 +0100196 printk(BIOS_DEBUG, "TSEG base 0x%08x size %uM\n", tseg_base, uma_size >> 10);
Stefan Reinauer00636b02012-04-04 00:08:51 +0200197
Michał Żygowskiede87182021-11-21 11:53:42 +0100198 /* Calculate DMA Protected Region if enabled */
199 if (dpr.epm && dpr.size) {
200 dpr_size_k = dpr.size * MiB / KiB;
201 tomk -= dpr_size_k;
202 dpr_base_k = (tseg_base - dpr.size * MiB) / KiB;
Kyösti Mälkki27d62992022-05-24 20:25:58 +0300203 reserved_ram_resource_kb(dev, index++, dpr_base_k, dpr_size_k);
Michał Żygowskiede87182021-11-21 11:53:42 +0100204 printk(BIOS_DEBUG, "DPR base 0x%08x size %uM\n", dpr_base_k * KiB, dpr.size);
205 }
206
Stefan Reinauer00636b02012-04-04 00:08:51 +0200207 printk(BIOS_INFO, "Available memory below 4GB: %lluM\n", tomk >> 10);
208
209 /* Report the memory regions */
Kyösti Mälkki27d62992022-05-24 20:25:58 +0300210 ram_resource_kb(dev, index++, 0, legacy_hole_base_k);
211 ram_resource_kb(dev, index++, legacy_hole_base_k + legacy_hole_size_k,
Angel Pons14ea2fc2020-05-13 21:46:46 +0200212 (tomk - (legacy_hole_base_k + legacy_hole_size_k)));
Stefan Reinauer00636b02012-04-04 00:08:51 +0200213
214 /*
Angel Pons7c49cb82020-03-16 23:17:32 +0100215 * If >= 4GB installed, then memory from TOLUD to 4GB is remapped above TOM.
216 * TOUUD will account for both memory chunks.
Stefan Reinauer00636b02012-04-04 00:08:51 +0200217 */
218 touud >>= 10; /* Convert to KB */
219 if (touud > 4096 * 1024) {
Kyösti Mälkki27d62992022-05-24 20:25:58 +0300220 ram_resource_kb(dev, index++, 4096 * 1024, touud - (4096 * 1024));
Angel Pons7c49cb82020-03-16 23:17:32 +0100221 printk(BIOS_INFO, "Available memory above 4GB: %lluM\n", (touud >> 10) - 4096);
Stefan Reinauer00636b02012-04-04 00:08:51 +0200222 }
223
Angel Pons14ea2fc2020-05-13 21:46:46 +0200224 add_fixed_resources(dev, index++);
Stefan Reinauer00636b02012-04-04 00:08:51 +0200225}
226
Stefan Reinauer00636b02012-04-04 00:08:51 +0200227static void northbridge_dmi_init(struct device *dev)
228{
Angel Pons964d91f2020-12-07 13:11:17 +0100229 const bool is_sandy = is_sandybridge();
230
Angel Pons77516ca2020-12-10 16:43:25 +0100231 const u8 stepping = cpu_stepping();
Stefan Reinauer00636b02012-04-04 00:08:51 +0200232
Stefan Reinauer00636b02012-04-04 00:08:51 +0200233 /* Steps prior to DMI ASPM */
Angel Pons964d91f2020-12-07 13:11:17 +0100234 if (is_sandy) {
Angel Pons66780a02021-03-26 13:33:22 +0100235 dmibar_clrsetbits32(0x250, 7 << 20, 2 << 20);
Vincent Palatin0ff99b72012-03-28 16:10:29 -0700236 }
Stefan Reinauer00636b02012-04-04 00:08:51 +0200237
Angel Pons66780a02021-03-26 13:33:22 +0100238 dmibar_setbits32(DMILLTC, 1 << 29);
Stefan Reinauer00636b02012-04-04 00:08:51 +0200239
Angel Pons77516ca2020-12-10 16:43:25 +0100240 if (is_sandy && stepping == SNB_STEP_C0) {
Angel Pons66780a02021-03-26 13:33:22 +0100241 dmibar_clrsetbits32(0xbc8, 0xfff << 7, 0x7d3 << 7);
Angel Pons77516ca2020-12-10 16:43:25 +0100242 }
Angel Pons7c49cb82020-03-16 23:17:32 +0100243
Angel Pons77516ca2020-12-10 16:43:25 +0100244 if (!is_sandy || stepping >= SNB_STEP_D1) {
Angel Pons0acfe222021-03-26 13:08:23 +0100245 dmibar_clrsetbits32(0x1f8, 1 << 26, 1 << 16);
Stefan Reinauer00636b02012-04-04 00:08:51 +0200246
Angel Pons66780a02021-03-26 13:33:22 +0100247 dmibar_setbits32(0x1fc, 1 << 12 | 1 << 23);
Angel Pons77516ca2020-12-10 16:43:25 +0100248
249 } else if (stepping >= SNB_STEP_D0) {
Angel Pons66780a02021-03-26 13:33:22 +0100250 dmibar_setbits32(0x1f8, 1 << 16);
Stefan Reinauer00636b02012-04-04 00:08:51 +0200251 }
252
Angel Pons77516ca2020-12-10 16:43:25 +0100253 /* Clear error status bits */
Angel Pons66780a02021-03-26 13:33:22 +0100254 dmibar_write32(DMIUESTS, 0xffffffff);
255 dmibar_write32(DMICESTS, 0xffffffff);
Angel Pons77516ca2020-12-10 16:43:25 +0100256
257 if (!is_sandy)
Angel Pons66780a02021-03-26 13:33:22 +0100258 dmibar_write32(0xc34, 0xffffffff);
Angel Pons77516ca2020-12-10 16:43:25 +0100259
Stefan Reinauer00636b02012-04-04 00:08:51 +0200260 /* Enable ASPM on SNB link, should happen before PCH link */
Angel Pons964d91f2020-12-07 13:11:17 +0100261 if (is_sandy) {
Angel Pons66780a02021-03-26 13:33:22 +0100262 dmibar_setbits32(0xd04, 1 << 4);
Vincent Palatin0ff99b72012-03-28 16:10:29 -0700263 }
Stefan Reinauer00636b02012-04-04 00:08:51 +0200264
Angel Pons66780a02021-03-26 13:33:22 +0100265 dmibar_setbits32(DMILCTL, 1 << 1 | 1 << 0);
Stefan Reinauer00636b02012-04-04 00:08:51 +0200266}
267
Patrick Rudolph3660c0f2015-07-28 08:01:02 +0200268/* Disable unused PEG devices based on devicetree */
269static void disable_peg(void)
270{
271 struct device *dev;
272 u32 reg;
273
Kyösti Mälkkic70eed12018-05-22 02:18:00 +0300274 dev = pcidev_on_root(0, 0);
Patrick Rudolph3660c0f2015-07-28 08:01:02 +0200275 reg = pci_read_config32(dev, DEVEN);
276
Kyösti Mälkkic70eed12018-05-22 02:18:00 +0300277 dev = pcidev_on_root(1, 2);
Nico Huber2dc15e92016-02-04 18:59:48 +0100278 if (!dev || !dev->enabled) {
Patrick Rudolph3660c0f2015-07-28 08:01:02 +0200279 printk(BIOS_DEBUG, "Disabling PEG12.\n");
280 reg &= ~DEVEN_PEG12;
281 }
Kyösti Mälkkic70eed12018-05-22 02:18:00 +0300282 dev = pcidev_on_root(1, 1);
Nico Huber2dc15e92016-02-04 18:59:48 +0100283 if (!dev || !dev->enabled) {
Patrick Rudolph3660c0f2015-07-28 08:01:02 +0200284 printk(BIOS_DEBUG, "Disabling PEG11.\n");
285 reg &= ~DEVEN_PEG11;
286 }
Kyösti Mälkkic70eed12018-05-22 02:18:00 +0300287 dev = pcidev_on_root(1, 0);
Nico Huber2dc15e92016-02-04 18:59:48 +0100288 if (!dev || !dev->enabled) {
Patrick Rudolph3660c0f2015-07-28 08:01:02 +0200289 printk(BIOS_DEBUG, "Disabling PEG10.\n");
290 reg &= ~DEVEN_PEG10;
291 }
Kyösti Mälkkic70eed12018-05-22 02:18:00 +0300292 dev = pcidev_on_root(2, 0);
Nico Huber2dc15e92016-02-04 18:59:48 +0100293 if (!dev || !dev->enabled) {
Patrick Rudolph3660c0f2015-07-28 08:01:02 +0200294 printk(BIOS_DEBUG, "Disabling IGD.\n");
295 reg &= ~DEVEN_IGD;
296 }
Kyösti Mälkkic70eed12018-05-22 02:18:00 +0300297 dev = pcidev_on_root(4, 0);
Patrick Rudolphecd4be82017-05-14 12:40:50 +0200298 if (!dev || !dev->enabled) {
299 printk(BIOS_DEBUG, "Disabling Device 4.\n");
300 reg &= ~DEVEN_D4EN;
301 }
Kyösti Mälkkic70eed12018-05-22 02:18:00 +0300302 dev = pcidev_on_root(6, 0);
Nico Huber2dc15e92016-02-04 18:59:48 +0100303 if (!dev || !dev->enabled) {
Patrick Rudolph3660c0f2015-07-28 08:01:02 +0200304 printk(BIOS_DEBUG, "Disabling PEG60.\n");
305 reg &= ~DEVEN_PEG60;
306 }
Kyösti Mälkkic70eed12018-05-22 02:18:00 +0300307 dev = pcidev_on_root(7, 0);
Patrick Rudolphecd4be82017-05-14 12:40:50 +0200308 if (!dev || !dev->enabled) {
309 printk(BIOS_DEBUG, "Disabling Device 7.\n");
310 reg &= ~DEVEN_D7EN;
311 }
Patrick Rudolph3660c0f2015-07-28 08:01:02 +0200312
Kyösti Mälkkic70eed12018-05-22 02:18:00 +0300313 dev = pcidev_on_root(0, 0);
Patrick Rudolph3660c0f2015-07-28 08:01:02 +0200314 pci_write_config32(dev, DEVEN, reg);
Angel Pons7c49cb82020-03-16 23:17:32 +0100315
Patrick Rudolph3660c0f2015-07-28 08:01:02 +0200316 if (!(reg & (DEVEN_PEG60 | DEVEN_PEG10 | DEVEN_PEG11 | DEVEN_PEG12))) {
Angel Pons7c49cb82020-03-16 23:17:32 +0100317 /*
318 * Set the PEG clock gating bit. Disables the IO clock on all PEG devices.
319 *
Angel Pons78b43c82020-03-17 23:55:18 +0100320 * FIXME: Never clock gate on Ivy Bridge stepping A0!
Angel Pons7c49cb82020-03-16 23:17:32 +0100321 */
Angel Pons66780a02021-03-26 13:33:22 +0100322 mchbar_setbits32(PEGCTL, 1);
Patrick Rudolph3660c0f2015-07-28 08:01:02 +0200323 printk(BIOS_DEBUG, "Disabling PEG IO clock.\n");
Angel Pons78b43c82020-03-17 23:55:18 +0100324 } else {
Angel Pons66780a02021-03-26 13:33:22 +0100325 mchbar_clrbits32(PEGCTL, 1);
Patrick Rudolph3660c0f2015-07-28 08:01:02 +0200326 }
327}
328
Stefan Reinauer00636b02012-04-04 00:08:51 +0200329static void northbridge_init(struct device *dev)
330{
Duncan Lauriefe7b5d22012-06-23 20:14:07 -0700331 u32 bridge_type;
Stefan Reinauer00636b02012-04-04 00:08:51 +0200332
333 northbridge_dmi_init(dev);
334
Angel Pons66780a02021-03-26 13:33:22 +0100335 bridge_type = mchbar_read32(SAPMTIMERS);
Duncan Lauriefe7b5d22012-06-23 20:14:07 -0700336 bridge_type &= ~0xff;
337
Angel Pons964d91f2020-12-07 13:11:17 +0100338 if (is_sandybridge()) {
339 /* 20h for Sandybridge */
340 bridge_type |= 0x20;
341 } else {
Duncan Lauriefe7b5d22012-06-23 20:14:07 -0700342 /* Enable Power Aware Interrupt Routing */
Angel Pons66780a02021-03-26 13:33:22 +0100343 mchbar_clrsetbits8(INTRDIRCTL, 0xf, 0x4); /* Clear 3:0, set Fixed Priority */
Duncan Lauriefe7b5d22012-06-23 20:14:07 -0700344
345 /* 30h for IvyBridge */
346 bridge_type |= 0x30;
Duncan Lauriefe7b5d22012-06-23 20:14:07 -0700347 }
Angel Pons66780a02021-03-26 13:33:22 +0100348 mchbar_write32(SAPMTIMERS, bridge_type);
Duncan Lauriefe7b5d22012-06-23 20:14:07 -0700349
Angel Pons7c49cb82020-03-16 23:17:32 +0100350 /* Turn off unused devices. Has to be done before setting BIOS_RESET_CPL. */
Patrick Rudolphaad34cd2015-10-21 18:05:01 +0200351 disable_peg();
352
Stefan Reinauer00636b02012-04-04 00:08:51 +0200353 /*
354 * Set bit 0 of BIOS_RESET_CPL to indicate to the CPU
355 * that BIOS has initialized memory and power management
356 */
Angel Pons66780a02021-03-26 13:33:22 +0100357 mchbar_setbits8(BIOS_RESET_CPL, 1 << 0);
Stefan Reinauer00636b02012-04-04 00:08:51 +0200358 printk(BIOS_DEBUG, "Set BIOS_RESET_CPL\n");
359
360 /* Configure turbo power limits 1ms after reset complete bit */
361 mdelay(1);
362 set_power_limits(28);
363
Duncan Laurie77dbbac2012-06-25 09:51:59 -0700364 /*
Angel Pons7c49cb82020-03-16 23:17:32 +0100365 * CPUs with configurable TDP also need power limits set in MCHBAR.
366 * Use the same values from MSR_PKG_POWER_LIMIT.
Duncan Laurie77dbbac2012-06-25 09:51:59 -0700367 */
368 if (cpu_config_tdp_levels()) {
369 msr_t msr = rdmsr(MSR_PKG_POWER_LIMIT);
Angel Pons66780a02021-03-26 13:33:22 +0100370 mchbar_write32(MCH_PKG_POWER_LIMIT_LO, msr.lo);
371 mchbar_write32(MCH_PKG_POWER_LIMIT_HI, msr.hi);
Duncan Laurie77dbbac2012-06-25 09:51:59 -0700372 }
373
Stefan Reinauer00636b02012-04-04 00:08:51 +0200374 /* Set here before graphics PM init */
Angel Pons66780a02021-03-26 13:33:22 +0100375 mchbar_write32(PAVP_MSG, 0x00100001);
Stefan Reinauer00636b02012-04-04 00:08:51 +0200376}
377
Vladimir Serbinenkoc16e9dfa2015-05-29 16:18:01 +0200378void northbridge_write_smram(u8 smram)
379{
Kyösti Mälkkic70eed12018-05-22 02:18:00 +0300380 pci_write_config8(pcidev_on_root(0, 0), SMRAM, smram);
Vladimir Serbinenkoc16e9dfa2015-05-29 16:18:01 +0200381}
382
Arthur Heymansf8daf862021-02-24 19:21:33 +0100383static void set_above_4g_pci(const struct device *dev)
384{
385 const uint64_t touud = get_touud(dev);
386 const uint64_t len = POWER_OF_2(cpu_phys_address_size()) - touud;
387
388 acpigen_write_scope("\\");
389 acpigen_write_name_qword("A4GB", touud);
390 acpigen_write_name_qword("A4GS", len);
391 acpigen_pop_len();
392
393 printk(BIOS_DEBUG, "PCI space above 4GB MMIO is at 0x%llx, len = 0x%llx\n", touud, len);
394}
395
396static void mc_gen_ssdt(const struct device *dev)
397{
398 generate_cpu_entries(dev);
399 set_above_4g_pci(dev);
400}
401
Stefan Reinauer00636b02012-04-04 00:08:51 +0200402static struct device_operations mc_ops = {
Nico Huber68680dd2020-03-31 17:34:52 +0200403 .read_resources = mc_read_resources,
404 .set_resources = pci_dev_set_resources,
405 .enable_resources = pci_dev_enable_resources,
406 .init = northbridge_init,
Angel Pons1fc0edd2020-05-31 00:03:28 +0200407 .ops_pci = &pci_dev_ops_pci,
Arthur Heymansf8daf862021-02-24 19:21:33 +0100408 .acpi_fill_ssdt = mc_gen_ssdt,
Stefan Reinauer00636b02012-04-04 00:08:51 +0200409};
410
Jonathan A. Kollaschbda161b2020-02-13 13:04:48 -0600411static const unsigned short pci_device_ids[] = {
Jonathan A. Kollaschd346a192020-02-11 09:03:48 -0600412 0x0100, 0x0104, 0x0108, /* Sandy Bridge */
Jonathan A. Kollaschbda161b2020-02-13 13:04:48 -0600413 0x0150, 0x0154, 0x0158, /* Ivy Bridge */
414 0
Walter Murphy496f4a02012-04-23 11:08:03 -0700415};
416
Stefan Reinauer00636b02012-04-04 00:08:51 +0200417static const struct pci_driver mc_driver __pci_driver = {
Angel Pons7c49cb82020-03-16 23:17:32 +0100418 .ops = &mc_ops,
Felix Singer43b7f412022-03-07 04:34:52 +0100419 .vendor = PCI_VID_INTEL,
Jonathan A. Kollaschbda161b2020-02-13 13:04:48 -0600420 .devices = pci_device_ids,
Vagiz Trakhanov1dd448c2017-09-28 14:42:11 +0000421};
422
Stefan Reinauer00636b02012-04-04 00:08:51 +0200423static struct device_operations cpu_bus_ops = {
Nico Huber2f8ba692020-04-05 14:05:24 +0200424 .read_resources = noop_read_resources,
425 .set_resources = noop_set_resources,
Kyösti Mälkkib3267e02019-08-13 16:44:04 +0300426 .init = mp_cpu_bus_init,
Stefan Reinauer00636b02012-04-04 00:08:51 +0200427};
428
Elyes HAOUASab8743c2018-02-09 08:21:40 +0100429static void enable_dev(struct device *dev)
Stefan Reinauer00636b02012-04-04 00:08:51 +0200430{
431 /* Set the operations if it is a special bus type */
Stefan Reinauer4aff4452013-02-12 14:17:15 -0800432 if (dev->path.type == DEVICE_PATH_DOMAIN) {
Stefan Reinauer00636b02012-04-04 00:08:51 +0200433 dev->ops = &pci_domain_ops;
Stefan Reinauer0aa37c42013-02-12 15:20:54 -0800434 } else if (dev->path.type == DEVICE_PATH_CPU_CLUSTER) {
Stefan Reinauer00636b02012-04-04 00:08:51 +0200435 dev->ops = &cpu_bus_ops;
436 }
437}
438
439struct chip_operations northbridge_intel_sandybridge_ops = {
Damien Zammit35170382014-10-29 00:11:53 +1100440 CHIP_NAME("Intel SandyBridge/IvyBridge integrated Northbridge")
Stefan Reinauer00636b02012-04-04 00:08:51 +0200441 .enable_dev = enable_dev,
442};