blob: b1d86db51a03463f4d254e50b5758c9fc3fc513b [file] [log] [blame]
Kyösti Mälkkicb08e162013-10-15 17:19:41 +03001/*
2 * This file is part of the coreboot project.
3 *
4 * Copyright (C) 2011 Google Inc.
5 *
6 * This program is free software; you can redistribute it and/or modify
7 * it under the terms of the GNU General Public License as published by
8 * the Free Software Foundation; version 2 of the License.
9 *
10 * This program is distributed in the hope that it will be useful,
11 * but WITHOUT ANY WARRANTY; without even the implied warranty of
12 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
13 * GNU General Public License for more details.
Kyösti Mälkkicb08e162013-10-15 17:19:41 +030014 */
15
16// Use simple device model for this file even in ramstage
17#define __SIMPLE_DEVICE__
18
Kyösti Mälkkia963acd2019-08-16 20:34:25 +030019#include <arch/romstage.h>
Kyösti Mälkkie2e1f122019-08-09 09:34:23 +030020#include <console/console.h>
21#include <cpu/x86/mtrr.h>
Kyösti Mälkkif1b58b72019-03-01 13:43:02 +020022#include <device/pci_ops.h>
Kyösti Mälkkicb08e162013-10-15 17:19:41 +030023#include <cbmem.h>
Kyösti Mälkkie2e1f122019-08-09 09:34:23 +030024#include <cpu/intel/romstage.h>
Kyösti Mälkki825646e2019-08-02 06:14:50 +030025#include <stage_cache.h>
Kyösti Mälkkicb08e162013-10-15 17:19:41 +030026#include "haswell.h"
27
Kyösti Mälkkif1e3c762014-12-22 12:28:07 +020028static uintptr_t smm_region_start(void)
Kyösti Mälkkicb08e162013-10-15 17:19:41 +030029{
30 /*
31 * Base of TSEG is top of usable DRAM below 4GiB. The register has
Martin Roth128c1042016-11-18 09:29:03 -070032 * 1 MiB alignment.
Kyösti Mälkkicb08e162013-10-15 17:19:41 +030033 */
Kyösti Mälkkif1e3c762014-12-22 12:28:07 +020034 uintptr_t tom = pci_read_config32(PCI_DEV(0,0,0), TSEG);
35 return tom & ~((1 << 20) - 1);
36}
37
38void *cbmem_top(void)
39{
40 return (void *)smm_region_start();
Kyösti Mälkkicb08e162013-10-15 17:19:41 +030041}
Kyösti Mälkki825646e2019-08-02 06:14:50 +030042
43/* Region of SMM space is reserved for multipurpose use. It falls below
44 * the IED region and above the SMM handler. */
45#define RESERVED_SMM_OFFSET \
46 (CONFIG_SMM_TSEG_SIZE - CONFIG_IED_REGION_SIZE - CONFIG_SMM_RESERVED_SIZE)
47
48void stage_cache_external_region(void **base, size_t *size)
49{
50 /* The ramstage cache lives in the TSEG region at RESERVED_SMM_OFFSET.
51 * The top of RAM is defined to be the TSEG base address. */
52 *size = CONFIG_SMM_RESERVED_SIZE;
53 *base = (void *)((uint32_t)cbmem_top() + RESERVED_SMM_OFFSET);
54}
Kyösti Mälkkie2e1f122019-08-09 09:34:23 +030055
Kyösti Mälkki5bc641a2019-08-09 09:37:49 +030056void fill_postcar_frame(struct postcar_frame *pcf)
Kyösti Mälkkie2e1f122019-08-09 09:34:23 +030057{
Kyösti Mälkkie2e1f122019-08-09 09:34:23 +030058 uintptr_t top_of_ram;
59
Kyösti Mälkkie2e1f122019-08-09 09:34:23 +030060 /* Cache at least 8 MiB below the top of ram, and at most 8 MiB
61 * above top of the ram. This satisfies MTRR alignment requirement
62 * with different TSEG size configurations.
63 */
64 top_of_ram = ALIGN_DOWN((uintptr_t)cbmem_top(), 8*MiB);
Kyösti Mälkki5bc641a2019-08-09 09:37:49 +030065 postcar_frame_add_mtrr(pcf, top_of_ram - 8*MiB, 16*MiB,
Kyösti Mälkkie2e1f122019-08-09 09:34:23 +030066 MTRR_TYPE_WRBACK);
Kyösti Mälkkie2e1f122019-08-09 09:34:23 +030067}