blob: 43442f1acb291adbe7bc83ed99913fb61da6672e [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.
Kyösti Mälkkibfca6702016-07-22 22:48:35 +03005 * Copyright (C) 2012 ChromeOS Authors
Kyösti Mälkkicb08e162013-10-15 17:19:41 +03006 *
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.
Kyösti Mälkkicb08e162013-10-15 17:19:41 +030015 */
16
17#define __SIMPLE_DEVICE__
18
Kyösti Mälkkibfca6702016-07-22 22:48:35 +030019#include <arch/cpu.h>
Kyösti Mälkkicb08e162013-10-15 17:19:41 +030020#include <arch/io.h>
21#include <cbmem.h>
Kyösti Mälkkib84c8332016-12-01 10:48:43 +020022#include <console/console.h>
Kyösti Mälkkia4ffe9d2016-06-27 13:24:11 +030023#include <cpu/intel/romstage.h>
Kyösti Mälkkibfca6702016-07-22 22:48:35 +030024#include <cpu/x86/mtrr.h>
25#include <program_loading.h>
Kyösti Mälkkicb08e162013-10-15 17:19:41 +030026#include "sandybridge.h"
27
Kyösti Mälkkibfca6702016-07-22 22:48:35 +030028#if (CONFIG_SMM_TSEG_SIZE < 0x800000)
29# error "CONFIG_SMM_TSEG_SIZE must at least be 8MiB"
30#endif
31#if ((CONFIG_SMM_TSEG_SIZE & (CONFIG_SMM_TSEG_SIZE - 1)) != 0)
32# error "CONFIG_SMM_TSEG_SIZE is not a power of 2"
33#endif
34
Kyösti Mälkkif1e3c762014-12-22 12:28:07 +020035static uintptr_t smm_region_start(void)
Kyösti Mälkkicb08e162013-10-15 17:19:41 +030036{
37 /* Base of TSEG is top of usable DRAM */
Kyösti Mälkkif1e3c762014-12-22 12:28:07 +020038 uintptr_t tom = pci_read_config32(PCI_DEV(0,0,0), TSEG);
39 return tom;
40}
41
42void *cbmem_top(void)
43{
44 return (void *) smm_region_start();
Kyösti Mälkkicb08e162013-10-15 17:19:41 +030045}
Kyösti Mälkkia4ffe9d2016-06-27 13:24:11 +030046
Kyösti Mälkkib84c8332016-12-01 10:48:43 +020047#define ROMSTAGE_RAM_STACK_SIZE 0x5000
Kyösti Mälkkibfca6702016-07-22 22:48:35 +030048
49/* setup_stack_and_mtrrs() determines the stack to use after
50 * cache-as-ram is torn down as well as the MTRR settings to use. */
Kyösti Mälkkia4ffe9d2016-06-27 13:24:11 +030051void *setup_stack_and_mtrrs(void)
52{
Kyösti Mälkkib84c8332016-12-01 10:48:43 +020053 struct postcar_frame pcf;
54 uintptr_t top_of_ram;
Kyösti Mälkkibfca6702016-07-22 22:48:35 +030055
Kyösti Mälkkib84c8332016-12-01 10:48:43 +020056 if (postcar_frame_init(&pcf, ROMSTAGE_RAM_STACK_SIZE))
57 die("Unable to initialize postcar frame.\n");
Kyösti Mälkkibfca6702016-07-22 22:48:35 +030058
59 /* Cache the ROM as WP just below 4GiB. */
Kyösti Mälkkib84c8332016-12-01 10:48:43 +020060 postcar_frame_add_mtrr(&pcf, -CACHE_ROM_SIZE, CACHE_ROM_SIZE,
61 MTRR_TYPE_WRPROT);
Kyösti Mälkkibfca6702016-07-22 22:48:35 +030062
63 /* Cache RAM as WB from 0 -> CACHE_TMP_RAMTOP. */
Kyösti Mälkkib84c8332016-12-01 10:48:43 +020064 postcar_frame_add_mtrr(&pcf, 0, CACHE_TMP_RAMTOP, MTRR_TYPE_WRBACK);
Kyösti Mälkkibfca6702016-07-22 22:48:35 +030065
Kyösti Mälkkib84c8332016-12-01 10:48:43 +020066 top_of_ram = (uintptr_t)cbmem_top();
Kyösti Mälkkibfca6702016-07-22 22:48:35 +030067 /* Cache 8MiB below the top of ram. On sandybridge systems the top of
68 * ram under 4GiB is the start of the TSEG region. It is required to
69 * be 8MiB aligned. Set this area as cacheable so it can be used later
70 * for ramstage before setting up the entire RAM as cacheable. */
Kyösti Mälkkib84c8332016-12-01 10:48:43 +020071 postcar_frame_add_mtrr(&pcf, top_of_ram - 8*MiB, 8*MiB, MTRR_TYPE_WRBACK);
Kyösti Mälkkibfca6702016-07-22 22:48:35 +030072
73 /* Cache 8MiB at the top of ram. Top of ram on sandybridge systems
74 * is where the TSEG region resides. However, it is not restricted
75 * to SMM mode until SMM has been relocated. By setting the region
76 * to cacheable it provides faster access when relocating the SMM
77 * handler as well as using the TSEG region for other purposes. */
Kyösti Mälkkib84c8332016-12-01 10:48:43 +020078 postcar_frame_add_mtrr(&pcf, top_of_ram, 8*MiB, MTRR_TYPE_WRBACK);
Kyösti Mälkkibfca6702016-07-22 22:48:35 +030079
80 /* Save the number of MTRRs to setup. Return the stack location
Kyösti Mälkkib84c8332016-12-01 10:48:43 +020081 * pointing to the number of MTRRs.
82 */
83 return postcar_commit_mtrrs(&pcf);
Kyösti Mälkkia4ffe9d2016-06-27 13:24:11 +030084}