blob: 7ee71985cd3604dc7f30f1abf1e3010b6b26d44a [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) 2007-2009 coresystems GmbH
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
19#include <arch/io.h>
Kyösti Mälkki823020d2016-07-22 22:53:19 +030020#include <arch/cpu.h>
Kyösti Mälkkicb08e162013-10-15 17:19:41 +030021#include <cbmem.h>
22#include "i945.h"
Arthur Heymans874a8f92016-05-19 16:06:09 +020023#include <console/console.h>
Kyösti Mälkkia4ffe9d2016-06-27 13:24:11 +030024#include <cpu/intel/romstage.h>
Kyösti Mälkki823020d2016-07-22 22:53:19 +030025#include <cpu/x86/mtrr.h>
26#include <program_loading.h>
Kyösti Mälkkicb08e162013-10-15 17:19:41 +030027
Arthur Heymansf6d14772018-01-26 11:50:04 +010028/* Decodes TSEG region size to bytes. */
29u32 decode_tseg_size(const u8 esmramc)
30{
31 if (!(esmramc & 1))
32 return 0;
33 switch ((esmramc >> 1) & 3) {
34 case 0:
35 return 1 << 20;
36 case 1:
37 return 2 << 20;
38 case 2:
39 return 8 << 20;
40 case 3:
41 default:
42 die("Bad TSEG setting.\n");
43 }
44}
45
Kyösti Mälkkif1e3c762014-12-22 12:28:07 +020046static uintptr_t smm_region_start(void)
Kyösti Mälkkicb08e162013-10-15 17:19:41 +030047{
Kyösti Mälkkif1e3c762014-12-22 12:28:07 +020048 uintptr_t tom;
Kyösti Mälkkicb08e162013-10-15 17:19:41 +030049
Arthur Heymans70a8e342017-03-09 11:30:23 +010050 if (pci_read_config8(PCI_DEV(0, 0x0, 0), DEVEN) & (DEVEN_D2F0 | DEVEN_D2F1))
Kyösti Mälkkicb08e162013-10-15 17:19:41 +030051 /* IGD enabled, get top of Memory from BSM register */
Arthur Heymans70a8e342017-03-09 11:30:23 +010052 tom = pci_read_config32(PCI_DEV(0, 2, 0), BSM);
53 else
54 tom = (pci_read_config8(PCI_DEV(0, 0, 0), TOLUD) & 0xf7) << 24;
Kyösti Mälkkicb08e162013-10-15 17:19:41 +030055
Arthur Heymansf6d14772018-01-26 11:50:04 +010056 /* subsctract TSEG size */
57 tom -= decode_tseg_size(pci_read_config8(PCI_DEV(0, 0, 0), ESMRAMC));
Kyösti Mälkkif1e3c762014-12-22 12:28:07 +020058 return tom;
59}
60
Kyösti Mälkki811932a2016-07-22 22:53:19 +030061/* Depending of UMA and TSEG configuration, TSEG might start at any
Elyes HAOUAS64f6b712018-08-07 12:16:56 +020062 * 1 MiB alignment. As this may cause very greedy MTRR setup, push
Kyösti Mälkki811932a2016-07-22 22:53:19 +030063 * CBMEM top downwards to 4 MiB boundary.
64 */
Kyösti Mälkkif1e3c762014-12-22 12:28:07 +020065void *cbmem_top(void)
66{
Kyösti Mälkki811932a2016-07-22 22:53:19 +030067 uintptr_t top_of_ram = ALIGN_DOWN(smm_region_start(), 4*MiB);
68 return (void *) top_of_ram;
Kyösti Mälkkicb08e162013-10-15 17:19:41 +030069}
Arthur Heymans874a8f92016-05-19 16:06:09 +020070
71/** Decodes used Graphics Mode Select (GMS) to kilobytes. */
72u32 decode_igd_memory_size(const u32 gms)
73{
74 static const u16 ggc2uma[] = { 0, 1, 4, 8, 16, 32,
75 48, 64 };
76
77 if (gms > ARRAY_SIZE(ggc2uma))
78 die("Bad Graphics Mode Select (GMS) setting.\n");
79
80 return ggc2uma[gms] << 10;
81}
Kyösti Mälkkia4ffe9d2016-06-27 13:24:11 +030082
Kyösti Mälkki823020d2016-07-22 22:53:19 +030083#define ROMSTAGE_RAM_STACK_SIZE 0x5000
84
Arthur Heymans2dcc3a52018-06-03 10:39:16 +020085/* platform_enter_postcar() determines the stack to use after
86 * cache-as-ram is torn down as well as the MTRR settings to use,
87 * and continues execution in postcar stage. */
88void platform_enter_postcar(void)
Kyösti Mälkkia4ffe9d2016-06-27 13:24:11 +030089{
Kyösti Mälkki823020d2016-07-22 22:53:19 +030090 struct postcar_frame pcf;
91 uintptr_t top_of_ram;
92
93 if (postcar_frame_init(&pcf, ROMSTAGE_RAM_STACK_SIZE))
94 die("Unable to initialize postcar frame.\n");
95
96 /* Cache the ROM as WP just below 4GiB. */
Nico Huber089b9082018-05-27 14:37:32 +020097 postcar_frame_add_romcache(&pcf, MTRR_TYPE_WRPROT);
Kyösti Mälkki823020d2016-07-22 22:53:19 +030098
99 /* Cache RAM as WB from 0 -> CACHE_TMP_RAMTOP. */
100 postcar_frame_add_mtrr(&pcf, 0, CACHE_TMP_RAMTOP, MTRR_TYPE_WRBACK);
101
102 /* Cache two separate 4 MiB regions below the top of ram, this
103 * satisfies MTRR alignment requirements. If you modify this to
104 * cover TSEG, make sure UMA region is not set with WRBACK as it
105 * causes hard-to-recover boot failures.
106 */
107 top_of_ram = (uintptr_t)cbmem_top();
108 postcar_frame_add_mtrr(&pcf, top_of_ram - 4*MiB, 4*MiB, MTRR_TYPE_WRBACK);
109 postcar_frame_add_mtrr(&pcf, top_of_ram - 8*MiB, 4*MiB, MTRR_TYPE_WRBACK);
110
Arthur Heymans2dcc3a52018-06-03 10:39:16 +0200111 run_postcar_phase(&pcf);
112
113 /* We do not return here. */
Kyösti Mälkkia4ffe9d2016-06-27 13:24:11 +0300114}