blob: 9337470e1edc4c86c64a3e39bd16ad3a9bdc0cda [file] [log] [blame]
Patrick Georgi2efc8802012-11-06 11:03:53 +01001/*
2 * This file is part of the coreboot project.
3 *
4 * Copyright (C) 2012 secunet Security Networks AG
5 *
6 * This program is free software; you can redistribute it and/or
7 * modify it under the terms of the GNU General Public License as
8 * published by the Free Software Foundation; version 2 of
9 * 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.
Patrick Georgi2efc8802012-11-06 11:03:53 +010015 */
16
Kyösti Mälkkief844012013-06-25 23:17:43 +030017// Use simple device model for this file even in ramstage
18#define __SIMPLE_DEVICE__
19
Patrick Georgi2efc8802012-11-06 11:03:53 +010020#include <stdint.h>
Kyösti Mälkki823020d2016-07-22 22:53:19 +030021#include <arch/cpu.h>
Kyösti Mälkkif1b58b72019-03-01 13:43:02 +020022#include <device/pci_ops.h>
Patrick Georgi2efc8802012-11-06 11:03:53 +010023#include <device/pci_def.h>
24#include <console/console.h>
Kyösti Mälkkia4ffe9d2016-06-27 13:24:11 +030025#include <cpu/intel/romstage.h>
Kyösti Mälkki823020d2016-07-22 22:53:19 +030026#include <cpu/x86/mtrr.h>
Kyösti Mälkkidcb688e2013-09-04 01:11:16 +030027#include <cbmem.h>
Kyösti Mälkki823020d2016-07-22 22:53:19 +030028#include <program_loading.h>
Kyösti Mälkkiaba8fb12019-08-02 06:11:28 +030029#include <stage_cache.h>
Arthur Heymans009518e2018-11-27 14:06:21 +010030#include <cpu/intel/smm/gen1/smi.h>
Patrick Georgi2efc8802012-11-06 11:03:53 +010031#include "gm45.h"
32
Arthur Heymanseeaf9e42016-11-12 20:13:07 +010033/*
34 * Decodes used Graphics Mode Select (GMS) to kilobytes.
35 * The options for 1M, 4M, 8M and 16M preallocated igd memory are
36 * undocumented but are verified to work.
37 */
Patrick Georgi2efc8802012-11-06 11:03:53 +010038u32 decode_igd_memory_size(const u32 gms)
39{
Arthur Heymanseeaf9e42016-11-12 20:13:07 +010040 static const u16 ggc2uma[] = { 0, 1, 4, 8, 16, 32, 48, 64, 128, 256,
41 96, 160, 224, 352 };
42
Jacob Garberf74f6cb2019-04-08 17:54:35 -060043 if (gms >= ARRAY_SIZE(ggc2uma))
Patrick Georgi2efc8802012-11-06 11:03:53 +010044 die("Bad Graphics Mode Select (GMS) setting.\n");
Arthur Heymanseeaf9e42016-11-12 20:13:07 +010045
46 return ggc2uma[gms] << 10;
Patrick Georgi2efc8802012-11-06 11:03:53 +010047}
48
49/** Decodes used Graphics Stolen Memory (GSM) to kilobytes. */
50u32 decode_igd_gtt_size(const u32 gsm)
51{
52 switch (gsm) {
53 case 0:
54 return 0 << 10;
55 case 1:
56 return 1 << 10;
57 case 3:
58 case 9:
59 return 2 << 10;
60 case 10:
61 return 3 << 10;
62 case 11:
63 return 4 << 10;
64 default:
65 die("Bad Graphics Stolen Memory (GSM) setting.\n");
66 return 0;
67 }
68}
69
Arthur Heymans8b766052018-01-24 23:25:13 +010070/* Decodes TSEG region size to kilobytes. */
71u32 decode_tseg_size(u8 esmramc)
72{
73 if (!(esmramc & 1))
74 return 0;
75 switch ((esmramc >> 1) & 3) {
76 case 0:
77 return 1 << 10;
78 case 1:
79 return 2 << 10;
80 case 2:
81 return 8 << 10;
82 case 3:
83 default:
84 die("Bad TSEG setting.\n");
85 }
86}
87
Arthur Heymans009518e2018-11-27 14:06:21 +010088u32 northbridge_get_tseg_base(void)
Patrick Georgi2efc8802012-11-06 11:03:53 +010089{
Kyösti Mälkki3f9a62e2013-06-20 20:25:21 +030090 const pci_devfn_t dev = PCI_DEV(0, 0, 0);
Patrick Georgi2efc8802012-11-06 11:03:53 +010091
92 u32 tor;
93
94 /* Top of Lower Usable DRAM */
95 tor = (pci_read_config16(dev, D0F0_TOLUD) & 0xfff0) << 16;
96
97 /* Graphics memory comes next */
98 const u32 ggc = pci_read_config16(dev, D0F0_GGC);
Arthur Heymans8b766052018-01-24 23:25:13 +010099 const u8 esmramc = pci_read_config8(dev, D0F0_ESMRAMC);
Patrick Georgi2efc8802012-11-06 11:03:53 +0100100 if (!(ggc & 2)) {
101 /* Graphics memory */
102 tor -= decode_igd_memory_size((ggc >> 4) & 0xf) << 10;
103 /* GTT Graphics Stolen Memory Size (GGMS) */
104 tor -= decode_igd_gtt_size((ggc >> 8) & 0xf) << 10;
105 }
Arthur Heymans8b766052018-01-24 23:25:13 +0100106 /* TSEG size */
107 tor -= decode_tseg_size(esmramc) << 10;
Patrick Georgi2efc8802012-11-06 11:03:53 +0100108 return tor;
109}
Kyösti Mälkkif1e3c762014-12-22 12:28:07 +0200110
Arthur Heymans009518e2018-11-27 14:06:21 +0100111u32 northbridge_get_tseg_size(void)
112{
113 const u8 esmramc = pci_read_config8(PCI_DEV(0, 0, 0), D0F0_ESMRAMC);
114 return decode_tseg_size(esmramc) << 10;
115}
116
Kyösti Mälkki811932a2016-07-22 22:53:19 +0300117/* Depending of UMA and TSEG configuration, TSEG might start at any
Elyes HAOUAS64f6b712018-08-07 12:16:56 +0200118 * 1 MiB alignment. As this may cause very greedy MTRR setup, push
Kyösti Mälkki811932a2016-07-22 22:53:19 +0300119 * CBMEM top downwards to 4 MiB boundary.
120 */
Kyösti Mälkkif1e3c762014-12-22 12:28:07 +0200121void *cbmem_top(void)
122{
Arthur Heymans009518e2018-11-27 14:06:21 +0100123 uintptr_t top_of_ram = ALIGN_DOWN(northbridge_get_tseg_base(), 4*MiB);
Kyösti Mälkki811932a2016-07-22 22:53:19 +0300124 return (void *) top_of_ram;
Kyösti Mälkkif1e3c762014-12-22 12:28:07 +0200125}
Kyösti Mälkkia4ffe9d2016-06-27 13:24:11 +0300126
Kyösti Mälkkiaba8fb12019-08-02 06:11:28 +0300127void stage_cache_external_region(void **base, size_t *size)
128{
Kyösti Mälkkibccd2b62019-08-02 06:12:03 +0300129 /* The stage cache lives at the end of the TSEG region.
Kyösti Mälkkiaba8fb12019-08-02 06:11:28 +0300130 * The top of RAM is defined to be the TSEG base address.
131 */
132 *size = CONFIG_SMM_RESERVED_SIZE;
Kyösti Mälkkibccd2b62019-08-02 06:12:03 +0300133 *base = (void *)((uintptr_t)northbridge_get_tseg_base()
134 + northbridge_get_tseg_size() - CONFIG_SMM_RESERVED_SIZE);
Kyösti Mälkkiaba8fb12019-08-02 06:11:28 +0300135}
136
Kyösti Mälkki5bc641a2019-08-09 09:37:49 +0300137void fill_postcar_frame(struct postcar_frame *pcf)
Kyösti Mälkkia4ffe9d2016-06-27 13:24:11 +0300138{
Kyösti Mälkki823020d2016-07-22 22:53:19 +0300139 uintptr_t top_of_ram;
140
Kyösti Mälkki823020d2016-07-22 22:53:19 +0300141
142 /* Cache the ROM as WP just below 4GiB. */
Kyösti Mälkki5bc641a2019-08-09 09:37:49 +0300143 postcar_frame_add_romcache(pcf, MTRR_TYPE_WRPROT);
Kyösti Mälkki823020d2016-07-22 22:53:19 +0300144
145 /* Cache RAM as WB from 0 -> CACHE_TMP_RAMTOP. */
Kyösti Mälkki5bc641a2019-08-09 09:37:49 +0300146 postcar_frame_add_mtrr(pcf, 0, CACHE_TMP_RAMTOP, MTRR_TYPE_WRBACK);
Kyösti Mälkki823020d2016-07-22 22:53:19 +0300147
Arthur Heymans009518e2018-11-27 14:06:21 +0100148 /* Cache 8 MiB region below the top of ram and 2 MiB above top of
Arthur Heymansaade90e2018-01-25 00:33:45 +0100149 * ram to cover both cbmem as the TSEG region.
Kyösti Mälkki823020d2016-07-22 22:53:19 +0300150 */
151 top_of_ram = (uintptr_t)cbmem_top();
Kyösti Mälkki5bc641a2019-08-09 09:37:49 +0300152 postcar_frame_add_mtrr(pcf, top_of_ram - 8*MiB, 8*MiB,
Arthur Heymans009518e2018-11-27 14:06:21 +0100153 MTRR_TYPE_WRBACK);
Kyösti Mälkki5bc641a2019-08-09 09:37:49 +0300154 postcar_frame_add_mtrr(pcf, northbridge_get_tseg_base(),
Arthur Heymans009518e2018-11-27 14:06:21 +0100155 northbridge_get_tseg_size(), MTRR_TYPE_WRBACK);
Kyösti Mälkki823020d2016-07-22 22:53:19 +0300156
Kyösti Mälkkia4ffe9d2016-06-27 13:24:11 +0300157}