aboutsummaryrefslogtreecommitdiff
path: root/src/drivers/intel/fsp2_0/fspt_report.c
blob: 7fa3205e3d0df36c883f2c5ca3326d53ad9b179c (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
/* SPDX-License-Identifier: GPL-2.0-only */

#include <arch/symbols.h>
#include <console/console.h>
#include <fsp/util.h>

/* filled in assembly after FSP-T ran */
uintptr_t temp_memory_start;
uintptr_t temp_memory_end;

void report_fspt_output(void)
{
	const struct region fsp_car_region = {
		.offset = temp_memory_start,
		.size = temp_memory_end - temp_memory_start,
	};
	const struct region coreboot_car_region = {
		.offset = (uintptr_t)_car_region_start,
		.size = (uintptr_t)_car_region_size,
	};
	printk(BIOS_DEBUG, "FSP-T: reported temp_mem region: [0x%08lx,0x%08lx)\n",
	       temp_memory_start, temp_memory_end);
	if (!region_is_subregion(&fsp_car_region, &coreboot_car_region)) {
		printk(BIOS_ERR, "Wrong CAR region used!\n");
		printk(BIOS_ERR, "Adapt CONFIG_DCACHE_RAM_BASE and CONFIG_DCACHE_RAM_SIZE to match FSP-T\n");
	}
}