blob: 752c8f901cfdf0b0c91701fa6412759d06f760f9 [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
Kyösti Mälkkif1b58b72019-03-01 13:43:02 +020019#include <device/pci_ops.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>
Arthur Heymanscf3076e2018-04-10 12:57:42 +020027#include <cpu/intel/smm/gen1/smi.h>
Kyösti Mälkkicb08e162013-10-15 17:19:41 +030028
Arthur Heymansf6d14772018-01-26 11:50:04 +010029/* Decodes TSEG region size to bytes. */
30u32 decode_tseg_size(const u8 esmramc)
31{
32 if (!(esmramc & 1))
33 return 0;
34 switch ((esmramc >> 1) & 3) {
35 case 0:
36 return 1 << 20;
37 case 1:
38 return 2 << 20;
39 case 2:
40 return 8 << 20;
41 case 3:
42 default:
43 die("Bad TSEG setting.\n");
44 }
45}
46
Arthur Heymanscf3076e2018-04-10 12:57:42 +020047u32 northbridge_get_tseg_base(void)
Kyösti Mälkkicb08e162013-10-15 17:19:41 +030048{
Kyösti Mälkkif1e3c762014-12-22 12:28:07 +020049 uintptr_t tom;
Kyösti Mälkkicb08e162013-10-15 17:19:41 +030050
Arthur Heymans70a8e342017-03-09 11:30:23 +010051 if (pci_read_config8(PCI_DEV(0, 0x0, 0), DEVEN) & (DEVEN_D2F0 | DEVEN_D2F1))
Kyösti Mälkkicb08e162013-10-15 17:19:41 +030052 /* IGD enabled, get top of Memory from BSM register */
Arthur Heymans70a8e342017-03-09 11:30:23 +010053 tom = pci_read_config32(PCI_DEV(0, 2, 0), BSM);
54 else
55 tom = (pci_read_config8(PCI_DEV(0, 0, 0), TOLUD) & 0xf7) << 24;
Kyösti Mälkkicb08e162013-10-15 17:19:41 +030056
Arthur Heymansf6d14772018-01-26 11:50:04 +010057 /* subsctract TSEG size */
58 tom -= decode_tseg_size(pci_read_config8(PCI_DEV(0, 0, 0), ESMRAMC));
Kyösti Mälkkif1e3c762014-12-22 12:28:07 +020059 return tom;
60}
61
Arthur Heymanscf3076e2018-04-10 12:57:42 +020062u32 northbridge_get_tseg_size(void)
63{
64 const u8 esmramc = pci_read_config8(PCI_DEV(0, 0, 0), ESMRAMC);
65 return decode_tseg_size(esmramc);
66}
67
68/*
69 * Depending of UMA and TSEG configuration, TSEG might start at any
Elyes HAOUAS64f6b712018-08-07 12:16:56 +020070 * 1 MiB alignment. As this may cause very greedy MTRR setup, push
Kyösti Mälkki811932a2016-07-22 22:53:19 +030071 * CBMEM top downwards to 4 MiB boundary.
72 */
Kyösti Mälkkif1e3c762014-12-22 12:28:07 +020073void *cbmem_top(void)
74{
Arthur Heymanscf3076e2018-04-10 12:57:42 +020075 uintptr_t top_of_ram = ALIGN_DOWN(northbridge_get_tseg_base(), 4*MiB);
Kyösti Mälkki811932a2016-07-22 22:53:19 +030076 return (void *) top_of_ram;
Kyösti Mälkkicb08e162013-10-15 17:19:41 +030077}
Arthur Heymans874a8f92016-05-19 16:06:09 +020078
79/** Decodes used Graphics Mode Select (GMS) to kilobytes. */
80u32 decode_igd_memory_size(const u32 gms)
81{
82 static const u16 ggc2uma[] = { 0, 1, 4, 8, 16, 32,
83 48, 64 };
84
Jacob Garberf74f6cb2019-04-08 17:54:35 -060085 if (gms >= ARRAY_SIZE(ggc2uma))
Arthur Heymans874a8f92016-05-19 16:06:09 +020086 die("Bad Graphics Mode Select (GMS) setting.\n");
87
88 return ggc2uma[gms] << 10;
89}
Kyösti Mälkkia4ffe9d2016-06-27 13:24:11 +030090
Kyösti Mälkki823020d2016-07-22 22:53:19 +030091#define ROMSTAGE_RAM_STACK_SIZE 0x5000
92
Arthur Heymans2dcc3a52018-06-03 10:39:16 +020093/* platform_enter_postcar() determines the stack to use after
94 * cache-as-ram is torn down as well as the MTRR settings to use,
95 * and continues execution in postcar stage. */
96void platform_enter_postcar(void)
Kyösti Mälkkia4ffe9d2016-06-27 13:24:11 +030097{
Kyösti Mälkki823020d2016-07-22 22:53:19 +030098 struct postcar_frame pcf;
99 uintptr_t top_of_ram;
100
101 if (postcar_frame_init(&pcf, ROMSTAGE_RAM_STACK_SIZE))
102 die("Unable to initialize postcar frame.\n");
103
104 /* Cache the ROM as WP just below 4GiB. */
Nico Huber089b9082018-05-27 14:37:32 +0200105 postcar_frame_add_romcache(&pcf, MTRR_TYPE_WRPROT);
Kyösti Mälkki823020d2016-07-22 22:53:19 +0300106
107 /* Cache RAM as WB from 0 -> CACHE_TMP_RAMTOP. */
108 postcar_frame_add_mtrr(&pcf, 0, CACHE_TMP_RAMTOP, MTRR_TYPE_WRBACK);
109
Arthur Heymanscf3076e2018-04-10 12:57:42 +0200110 /* Cache 8 MiB region below the top of ram and 2 MiB above top of
111 * ram to cover both cbmem as the TSEG region.
Kyösti Mälkki823020d2016-07-22 22:53:19 +0300112 */
113 top_of_ram = (uintptr_t)cbmem_top();
Arthur Heymanscf3076e2018-04-10 12:57:42 +0200114 postcar_frame_add_mtrr(&pcf, top_of_ram - 8*MiB, 8*MiB,
115 MTRR_TYPE_WRBACK);
116 postcar_frame_add_mtrr(&pcf, northbridge_get_tseg_base(),
117 northbridge_get_tseg_size(), MTRR_TYPE_WRBACK);
Kyösti Mälkki823020d2016-07-22 22:53:19 +0300118
Arthur Heymans2dcc3a52018-06-03 10:39:16 +0200119 run_postcar_phase(&pcf);
120
121 /* We do not return here. */
Kyösti Mälkkia4ffe9d2016-06-27 13:24:11 +0300122}