blob: 787a62b2eebce348c0121bc61e67fa4c40a76003 [file] [log] [blame]
Duncan Lauriec88c54c2014-04-30 16:36:13 -07001/*
2 * This file is part of the coreboot project.
3 *
4 * Copyright (C) 2007-2009 coresystems GmbH
5 * Copyright (C) 2014 Google Inc.
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.
15 *
16 * You should have received a copy of the GNU General Public License
17 * along with this program; if not, write to the Free Software
18 * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA
19 */
20
21#include <console/console.h>
22#include <arch/acpi.h>
23#include <arch/io.h>
24#include <stdint.h>
25#include <delay.h>
26#include <device/device.h>
27#include <device/pci.h>
28#include <device/pci_ids.h>
29#include <stdlib.h>
30#include <string.h>
31#include <cbmem.h>
32#include <romstage_handoff.h>
33#include <vendorcode/google/chromeos/chromeos.h>
34#include <broadwell/cpu.h>
35#include <broadwell/iomap.h>
Duncan Laurie61680272014-05-05 12:42:35 -050036#include <broadwell/pci_devs.h>
Duncan Lauriec88c54c2014-04-30 16:36:13 -070037#include <broadwell/ramstage.h>
38#include <broadwell/systemagent.h>
39
40static int get_pcie_bar(device_t dev, unsigned int index, u32 *base, u32 *len)
41{
42 u32 pciexbar_reg;
43
44 *base = 0;
45 *len = 0;
46
47 pciexbar_reg = pci_read_config32(dev, index);
48
49 if (!(pciexbar_reg & (1 << 0)))
50 return 0;
51
52 switch ((pciexbar_reg >> 1) & 3) {
53 case 0: // 256MB
54 *base = pciexbar_reg & ((1 << 31)|(1 << 30)|(1 << 29)|
55 (1 << 28));
56 *len = 256 * 1024 * 1024;
57 return 1;
58 case 1: // 128M
59 *base = pciexbar_reg & ((1 << 31)|(1 << 30)|(1 << 29)|
60 (1 << 28)|(1 << 27));
61 *len = 128 * 1024 * 1024;
62 return 1;
63 case 2: // 64M
64 *base = pciexbar_reg & ((1 << 31)|(1 << 30)|(1 << 29)|
65 (1 << 28)|(1 << 27)|(1 << 26));
66 *len = 64 * 1024 * 1024;
67 return 1;
68 }
69
70 return 0;
71}
72
73static int get_bar(device_t dev, unsigned int index, u32 *base, u32 *len)
74{
75 u32 bar;
76
77 bar = pci_read_config32(dev, index);
78
79 /* If not enabled don't report it. */
80 if (!(bar & 0x1))
81 return 0;
82
83 /* Knock down the enable bit. */
84 *base = bar & ~1;
85
86 return 1;
87}
88
89/* There are special BARs that actually are programmed in the MCHBAR. These
90 * Intel special features, but they do consume resources that need to be
91 * accounted for. */
92static int get_bar_in_mchbar(device_t dev, unsigned int index, u32 *base,
93 u32 *len)
94{
95 u32 bar;
96
97 bar = MCHBAR32(index);
98
99 /* If not enabled don't report it. */
100 if (!(bar & 0x1))
101 return 0;
102
103 /* Knock down the enable bit. */
104 *base = bar & ~1;
105
106 return 1;
107}
108
109struct fixed_mmio_descriptor {
110 unsigned int index;
111 u32 size;
112 int (*get_resource)(device_t dev, unsigned int index,
113 u32 *base, u32 *size);
114 const char *description;
115};
116
117struct fixed_mmio_descriptor mc_fixed_resources[] = {
118 { PCIEXBAR, 0, get_pcie_bar, "PCIEXBAR" },
119 { MCHBAR, MCH_BASE_SIZE, get_bar, "MCHBAR" },
120 { DMIBAR, DMI_BASE_SIZE, get_bar, "DMIBAR" },
121 { EPBAR, EP_BASE_SIZE, get_bar, "EPBAR" },
122 { GDXCBAR, GDXC_BASE_SIZE, get_bar_in_mchbar, "GDXCBAR" },
123 { EDRAMBAR, EDRAM_BASE_SIZE, get_bar_in_mchbar, "EDRAMBAR" },
124};
125
126/*
127 * Add all known fixed MMIO ranges that hang off the host bridge/memory
128 * controller device.
129 */
130static void mc_add_fixed_mmio_resources(device_t dev)
131{
132 int i;
133
134 for (i = 0; i < ARRAY_SIZE(mc_fixed_resources); i++) {
135 u32 base;
136 u32 size;
137 struct resource *resource;
138 unsigned int index;
139
140 size = mc_fixed_resources[i].size;
141 index = mc_fixed_resources[i].index;
142 if (!mc_fixed_resources[i].get_resource(dev, index,
143 &base, &size))
144 continue;
145
146 resource = new_resource(dev, mc_fixed_resources[i].index);
147 resource->flags = IORESOURCE_MEM | IORESOURCE_FIXED |
148 IORESOURCE_STORED | IORESOURCE_RESERVE |
149 IORESOURCE_ASSIGNED;
150 resource->base = base;
151 resource->size = size;
152 printk(BIOS_DEBUG, "%s: Adding %s @ %x 0x%08lx-0x%08lx.\n",
153 __func__, mc_fixed_resources[i].description, index,
154 (unsigned long)base, (unsigned long)(base + size - 1));
155 }
156}
157
158/* Host Memory Map:
159 *
160 * +--------------------------+ TOUUD
161 * | |
162 * +--------------------------+ 4GiB
163 * | PCI Address Space |
164 * +--------------------------+ TOLUD (also maps into MC address space)
165 * | iGD |
166 * +--------------------------+ BDSM
167 * | GTT |
168 * +--------------------------+ BGSM
169 * | TSEG |
170 * +--------------------------+ TSEGMB
171 * | Usage DRAM |
172 * +--------------------------+ 0
173 *
174 * Some of the base registers above can be equal making the size of those
175 * regions 0. The reason is because the memory controller internally subtracts
176 * the base registers from each other to determine sizes of the regions. In
177 * other words, the memory map is in a fixed order no matter what.
178 */
179
180struct map_entry {
181 int reg;
182 int is_64_bit;
183 int is_limit;
184 const char *description;
185};
186
187static void read_map_entry(device_t dev, struct map_entry *entry,
188 uint64_t *result)
189{
190 uint64_t value;
191 uint64_t mask;
192
193 /* All registers are on a 1MiB granularity. */
194 mask = ((1ULL<<20)-1);
195 mask = ~mask;
196
197 value = 0;
198
199 if (entry->is_64_bit) {
200 value = pci_read_config32(dev, entry->reg + 4);
201 value <<= 32;
202 }
203
204 value |= pci_read_config32(dev, entry->reg);
205 value &= mask;
206
207 if (entry->is_limit)
208 value |= ~mask;
209
210 *result = value;
211}
212
213#define MAP_ENTRY(reg_, is_64_, is_limit_, desc_) \
214 { \
215 .reg = reg_, \
216 .is_64_bit = is_64_, \
217 .is_limit = is_limit_, \
218 .description = desc_, \
219 }
220
221#define MAP_ENTRY_BASE_64(reg_, desc_) \
222 MAP_ENTRY(reg_, 1, 0, desc_)
223#define MAP_ENTRY_LIMIT_64(reg_, desc_) \
224 MAP_ENTRY(reg_, 1, 1, desc_)
225#define MAP_ENTRY_BASE_32(reg_, desc_) \
226 MAP_ENTRY(reg_, 0, 0, desc_)
227
228enum {
229 TOM_REG,
230 TOUUD_REG,
231 MESEG_BASE_REG,
232 MESEG_LIMIT_REG,
233 REMAP_BASE_REG,
234 REMAP_LIMIT_REG,
235 TOLUD_REG,
236 BGSM_REG,
237 BDSM_REG,
238 TSEG_REG,
239 // Must be last.
240 NUM_MAP_ENTRIES
241};
242
243static struct map_entry memory_map[NUM_MAP_ENTRIES] = {
244 [TOM_REG] = MAP_ENTRY_BASE_64(TOM, "TOM"),
245 [TOUUD_REG] = MAP_ENTRY_BASE_64(TOUUD, "TOUUD"),
246 [MESEG_BASE_REG] = MAP_ENTRY_BASE_64(MESEG_BASE, "MESEG_BASE"),
247 [MESEG_LIMIT_REG] = MAP_ENTRY_LIMIT_64(MESEG_LIMIT, "MESEG_LIMIT"),
248 [REMAP_BASE_REG] = MAP_ENTRY_BASE_64(REMAPBASE, "REMAP_BASE"),
249 [REMAP_LIMIT_REG] = MAP_ENTRY_LIMIT_64(REMAPLIMIT, "REMAP_LIMIT"),
250 [TOLUD_REG] = MAP_ENTRY_BASE_32(TOLUD, "TOLUD"),
251 [BDSM_REG] = MAP_ENTRY_BASE_32(BDSM, "BDSM"),
252 [BGSM_REG] = MAP_ENTRY_BASE_32(BGSM, "BGSM"),
253 [TSEG_REG] = MAP_ENTRY_BASE_32(TSEG, "TESGMB"),
254};
255
256static void mc_read_map_entries(device_t dev, uint64_t *values)
257{
258 int i;
259 for (i = 0; i < NUM_MAP_ENTRIES; i++) {
260 read_map_entry(dev, &memory_map[i], &values[i]);
261 }
262}
263
264static void mc_report_map_entries(device_t dev, uint64_t *values)
265{
266 int i;
267 for (i = 0; i < NUM_MAP_ENTRIES; i++) {
268 printk(BIOS_DEBUG, "MC MAP: %s: 0x%llx\n",
269 memory_map[i].description, values[i]);
270 }
271 /* One can validate the BDSM and BGSM against the GGC. */
272 printk(BIOS_DEBUG, "MC MAP: GGC: 0x%x\n", pci_read_config16(dev, GGC));
273}
274
275static void mc_add_dram_resources(device_t dev)
276{
277 unsigned long base_k, size_k;
278 unsigned long touud_k;
279 unsigned long index;
280 struct resource *resource;
281 uint64_t mc_values[NUM_MAP_ENTRIES];
Duncan Laurie61680272014-05-05 12:42:35 -0500282 unsigned long dpr_size = 0;
283 u32 dpr_reg;
Duncan Lauriec88c54c2014-04-30 16:36:13 -0700284
285 /* Read in the MAP registers and report their values. */
286 mc_read_map_entries(dev, &mc_values[0]);
287 mc_report_map_entries(dev, &mc_values[0]);
288
289 /*
Duncan Laurie61680272014-05-05 12:42:35 -0500290 * DMA Protected Range can be reserved below TSEG for PCODE patch
291 * or TXT/BootGuard related data. Rather than report a base address
292 * the DPR register reports the TOP of the region, which is the same
293 * as TSEG base. The region size is reported in MiB in bits 11:4.
294 */
295 dpr_reg = pci_read_config32(SA_DEV_ROOT, DPR);
296 if (dpr_reg & DPR_EPM) {
297 dpr_size = (dpr_reg & DPR_SIZE_MASK) << 16;
298 printk(BIOS_INFO, "DPR SIZE: 0x%lx\n", dpr_size);
299 }
300
301 /*
Duncan Lauriec88c54c2014-04-30 16:36:13 -0700302 * These are the host memory ranges that should be added:
303 * - 0 -> 0xa0000: cacheable
304 * - 0xc0000 -> TSEG : cacheable
305 * - TESG -> BGSM: cacheable with standard MTRRs and reserved
306 * - BGSM -> TOLUD: not cacheable with standard MTRRs and reserved
307 * - 4GiB -> TOUUD: cacheable
308 *
309 * The default SMRAM space is reserved so that the range doesn't
310 * have to be saved during S3 Resume. Once marked reserved the OS
311 * cannot use the memory. This is a bit of an odd place to reserve
312 * the region, but the CPU devices don't have dev_ops->read_resources()
313 * called on them.
314 *
315 * The range 0xa0000 -> 0xc0000 does not have any resources
316 * associated with it to handle legacy VGA memory. If this range
317 * is not omitted the mtrr code will setup the area as cacheable
318 * causing VGA access to not work.
319 *
320 * The TSEG region is mapped as cacheable so that one can perform
321 * SMRAM relocation faster. Once the SMRR is enabled the SMRR takes
322 * precedence over the existing MTRRs covering this region.
323 *
324 * It should be noted that cacheable entry types need to be added in
325 * order. The reason is that the current MTRR code assumes this and
326 * falls over itself if it isn't.
327 *
328 * The resource index starts low and should not meet or exceed
329 * PCI_BASE_ADDRESS_0.
330 */
331 index = 0;
332
333 /* 0 - > 0xa0000 */
334 base_k = 0;
335 size_k = (0xa0000 >> 10) - base_k;
336 ram_resource(dev, index++, base_k, size_k);
337
Duncan Laurie61680272014-05-05 12:42:35 -0500338 /* 0xc0000 -> TSEG - DPR */
Duncan Lauriec88c54c2014-04-30 16:36:13 -0700339 base_k = 0xc0000 >> 10;
340 size_k = (unsigned long)(mc_values[TSEG_REG] >> 10) - base_k;
Duncan Laurie61680272014-05-05 12:42:35 -0500341 size_k -= dpr_size >> 10;
Duncan Lauriec88c54c2014-04-30 16:36:13 -0700342 ram_resource(dev, index++, base_k, size_k);
343
Duncan Laurie61680272014-05-05 12:42:35 -0500344 /* TSEG - DPR -> BGSM */
Duncan Lauriec88c54c2014-04-30 16:36:13 -0700345 resource = new_resource(dev, index++);
Duncan Laurie61680272014-05-05 12:42:35 -0500346 resource->base = mc_values[TSEG_REG] - dpr_size;
Duncan Lauriec88c54c2014-04-30 16:36:13 -0700347 resource->size = mc_values[BGSM_REG] - resource->base;
348 resource->flags = IORESOURCE_MEM | IORESOURCE_FIXED |
349 IORESOURCE_STORED | IORESOURCE_RESERVE |
350 IORESOURCE_ASSIGNED | IORESOURCE_CACHEABLE;
351
352 /* BGSM -> TOLUD */
353 resource = new_resource(dev, index++);
354 resource->base = mc_values[BGSM_REG];
355 resource->size = mc_values[TOLUD_REG] - resource->base;
356 resource->flags = IORESOURCE_MEM | IORESOURCE_FIXED |
357 IORESOURCE_STORED | IORESOURCE_RESERVE |
358 IORESOURCE_ASSIGNED;
359
360 /* 4GiB -> TOUUD */
361 base_k = 4096 * 1024; /* 4GiB */
362 touud_k = mc_values[TOUUD_REG] >> 10;
363 size_k = touud_k - base_k;
364 if (touud_k > base_k)
365 ram_resource(dev, index++, base_k, size_k);
366
367 /* Reserve everything between A segment and 1MB:
368 *
369 * 0xa0000 - 0xbffff: legacy VGA
370 * 0xc0000 - 0xfffff: RAM
371 */
372 mmio_resource(dev, index++, (0xa0000 >> 10), (0xc0000 - 0xa0000) >> 10);
373 reserved_ram_resource(dev, index++, (0xc0000 >> 10),
374 (0x100000 - 0xc0000) >> 10);
375
376 chromeos_reserve_ram_oops(dev, index++);
377}
378
379static void systemagent_read_resources(device_t dev)
380{
381 /* Read standard PCI resources. */
382 pci_dev_read_resources(dev);
383
384 /* Add all fixed MMIO resources. */
385 mc_add_fixed_mmio_resources(dev);
386
387 /* Calculate and add DRAM resources. */
388 mc_add_dram_resources(dev);
389}
390
391static void systemagent_init(struct device *dev)
392{
393 u8 bios_reset_cpl, pair;
394
395 /* Enable Power Aware Interrupt Routing */
396 pair = MCHBAR8(MCH_PAIR);
397 pair &= ~0x7; /* Clear 2:0 */
398 pair |= 0x4; /* Fixed Priority */
399 MCHBAR8(MCH_PAIR) = pair;
400
401 /*
402 * Set bits 0+1 of BIOS_RESET_CPL to indicate to the CPU
403 * that BIOS has initialized memory and power management
404 */
405 bios_reset_cpl = MCHBAR8(BIOS_RESET_CPL);
406 bios_reset_cpl |= 3;
407 MCHBAR8(BIOS_RESET_CPL) = bios_reset_cpl;
408 printk(BIOS_DEBUG, "Set BIOS_RESET_CPL\n");
409
410 /* Configure turbo power limits 1ms after reset complete bit */
411 mdelay(1);
412 set_power_limits(28);
413}
414
415static void systemagent_enable(device_t dev)
416{
417#if CONFIG_HAVE_ACPI_RESUME
418 struct romstage_handoff *handoff;
419
420 handoff = cbmem_find(CBMEM_ID_ROMSTAGE_INFO);
421
422 if (handoff == NULL) {
423 printk(BIOS_DEBUG, "Unknown boot method, assuming normal.\n");
424 acpi_slp_type = 0;
425 } else if (handoff->s3_resume) {
426 printk(BIOS_DEBUG, "S3 Resume.\n");
427 acpi_slp_type = 3;
428 } else {
429 printk(BIOS_DEBUG, "Normal boot.\n");
430 acpi_slp_type = 0;
431 }
432#endif
433}
434
435static struct device_operations systemagent_ops = {
436 .read_resources = &systemagent_read_resources,
437 .set_resources = &pci_dev_set_resources,
438 .enable_resources = &pci_dev_enable_resources,
439 .init = &systemagent_init,
440 .enable = &systemagent_enable,
441 .ops_pci = &broadwell_pci_ops,
442};
443
444static const unsigned short systemagent_ids[] = {
445 0x0a04, /* Haswell ULT */
446 0x1604, /* Broadwell-U/Y */
447 0x1610, /* Broadwell-H Desktop */
448 0x1614, /* Broadwell-H Mobile */
449 0
450};
451
452static const struct pci_driver systemagent_driver __pci_driver = {
453 .ops = &systemagent_ops,
454 .vendor = PCI_VENDOR_ID_INTEL,
455 .devices = systemagent_ids
456};