blob: 8eb2e39883f86b11c67d528c9da7212c833e24f8 [file] [log] [blame]
Marc Jones1587dc82017-05-15 18:55:11 -06001/*
2 * This file is part of the coreboot project.
3 *
Marshall Dawsonb6172112017-09-13 17:47:31 -06004 * Copyright (C) 2015 Intel Corp.
5 *
Marc Jones1587dc82017-05-15 18:55:11 -06006 * 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.
14 */
15
16#define __SIMPLE_DEVICE__
17
Marshall Dawsonb6172112017-09-13 17:47:31 -060018#include <assert.h>
Marc Jones1587dc82017-05-15 18:55:11 -060019#include <stdint.h>
Elyes HAOUAS20eaef02019-03-29 17:45:28 +010020#include <console/console.h>
Marshall Dawson94ee9372017-06-15 12:18:23 -060021#include <cpu/x86/msr.h>
Kyösti Mälkkib2a5f0b2019-08-04 19:54:32 +030022#include <cpu/x86/smm.h>
Elyes HAOUAS400ce552018-10-12 10:54:30 +020023#include <cpu/amd/msr.h>
Marshall Dawson94ee9372017-06-15 12:18:23 -060024#include <cpu/amd/mtrr.h>
Marc Jones1587dc82017-05-15 18:55:11 -060025#include <cbmem.h>
Marshall Dawsonf3c57a7c2018-01-29 18:08:16 -070026#include <stage_cache.h>
Marshall Dawson4b0f6fa2018-09-04 13:08:25 -060027#include <arch/bert_storage.h>
Marshall Dawsonb6172112017-09-13 17:47:31 -060028#include <soc/northbridge.h>
Marshall Dawson69486ca2019-05-02 12:03:45 -060029#include <soc/iomap.h>
30#include <amdblocks/acpimmio.h>
Marc Jones1587dc82017-05-15 18:55:11 -060031
32void backup_top_of_low_cacheable(uintptr_t ramtop)
33{
Marshall Dawson22f54c52017-11-29 09:30:23 -070034 biosram_write32(BIOSRAM_CBMEM_TOP, ramtop);
Marc Jones1587dc82017-05-15 18:55:11 -060035}
36
37uintptr_t restore_top_of_low_cacheable(void)
38{
Marshall Dawson22f54c52017-11-29 09:30:23 -070039 return biosram_read32(BIOSRAM_CBMEM_TOP);
Marc Jones1587dc82017-05-15 18:55:11 -060040}
Marshall Dawson94ee9372017-06-15 12:18:23 -060041
Julius Wernercd49cce2019-03-05 16:53:33 -080042#if CONFIG(ACPI_BERT)
Marshall Dawsonf0de2422018-09-10 13:28:49 -060043 #if CONFIG_SMM_TSEG_SIZE == 0x0
44 #define BERT_REGION_MAX_SIZE 0x100000
45 #else
46 /* SMM_TSEG_SIZE must stay on a boundary appropriate for its granularity */
47 #define BERT_REGION_MAX_SIZE CONFIG_SMM_TSEG_SIZE
48 #endif
Marshall Dawson4b0f6fa2018-09-04 13:08:25 -060049#else
Marshall Dawsonf0de2422018-09-10 13:28:49 -060050 #define BERT_REGION_MAX_SIZE 0
Marshall Dawson4b0f6fa2018-09-04 13:08:25 -060051#endif
52
53void bert_reserved_region(void **start, size_t *size)
54{
Julius Wernercd49cce2019-03-05 16:53:33 -080055 if (CONFIG(ACPI_BERT))
Marshall Dawson4b0f6fa2018-09-04 13:08:25 -060056 *start = cbmem_top();
57 else
58 start = NULL;
59 *size = BERT_REGION_MAX_SIZE;
60}
61
Marshall Dawson94ee9372017-06-15 12:18:23 -060062void *cbmem_top(void)
63{
64 msr_t tom = rdmsr(TOP_MEM);
65
66 if (!tom.lo)
67 return 0;
Richard Spiegel8c614f22018-10-23 14:53:23 -070068
69 /* 8MB alignment to keep MTRR usage low */
70 return (void *)ALIGN_DOWN(restore_top_of_low_cacheable()
71 - CONFIG_SMM_TSEG_SIZE
72 - BERT_REGION_MAX_SIZE, 8*MiB);
Marshall Dawsonb6172112017-09-13 17:47:31 -060073}
74
75static uintptr_t smm_region_start(void)
76{
Marshall Dawson4b0f6fa2018-09-04 13:08:25 -060077 return (uintptr_t)cbmem_top() + BERT_REGION_MAX_SIZE;
Marshall Dawsonb6172112017-09-13 17:47:31 -060078}
79
80static size_t smm_region_size(void)
81{
82 return CONFIG_SMM_TSEG_SIZE;
83}
84
Marshall Dawsonf3c57a7c2018-01-29 18:08:16 -070085void stage_cache_external_region(void **base, size_t *size)
86{
87 if (smm_subregion(SMM_SUBREGION_CACHE, base, size)) {
88 printk(BIOS_ERR, "ERROR: No cache SMM subregion.\n");
89 *base = NULL;
90 *size = 0;
91 }
92}
93
Marshall Dawsonb6172112017-09-13 17:47:31 -060094void smm_region_info(void **start, size_t *size)
95{
96 *start = (void *)smm_region_start();
97 *size = smm_region_size();
98}
99
Marshall Dawsonf3c57a7c2018-01-29 18:08:16 -0700100/*
101 * For data stored in TSEG, ensure TValid is clear so R/W access can reach
102 * the DRAM when not in SMM.
103 */
104static void clear_tvalid(void)
105{
106 msr_t hwcr = rdmsr(HWCR_MSR);
Elyes HAOUAS400ce552018-10-12 10:54:30 +0200107 msr_t mask = rdmsr(SMM_MASK_MSR);
Marshall Dawsonf3c57a7c2018-01-29 18:08:16 -0700108 int tvalid = !!(mask.lo & SMM_TSEG_VALID);
109
110 if (hwcr.lo & SMM_LOCK) {
111 if (!tvalid) /* not valid but locked means still accessible */
112 return;
113
114 printk(BIOS_ERR, "Error: can't clear TValid, already locked\n");
115 return;
116 }
117
118 mask.lo &= ~SMM_TSEG_VALID;
Elyes HAOUAS400ce552018-10-12 10:54:30 +0200119 wrmsr(SMM_MASK_MSR, mask);
Marshall Dawsonf3c57a7c2018-01-29 18:08:16 -0700120}
121
Marshall Dawsonb6172112017-09-13 17:47:31 -0600122int smm_subregion(int sub, void **start, size_t *size)
123{
124 uintptr_t sub_base;
125 size_t sub_size;
126 const size_t cache_size = CONFIG_SMM_RESERVED_SIZE;
127
128 sub_base = smm_region_start();
129 sub_size = smm_region_size();
130
131 assert(sub_size > CONFIG_SMM_RESERVED_SIZE);
132
133 switch (sub) {
134 case SMM_SUBREGION_HANDLER:
135 /* Handler starts at the base of TSEG. */
136 sub_size -= cache_size;
137 break;
138 case SMM_SUBREGION_CACHE:
139 /* External cache is in the middle of TSEG. */
140 sub_base += sub_size - cache_size;
141 sub_size = cache_size;
Marshall Dawsonf3c57a7c2018-01-29 18:08:16 -0700142 clear_tvalid();
Marshall Dawsonb6172112017-09-13 17:47:31 -0600143 break;
144 default:
145 return -1;
146 }
147
148 *start = (void *)sub_base;
149 *size = sub_size;
150
151 return 0;
Marshall Dawson94ee9372017-06-15 12:18:23 -0600152}