summaryrefslogtreecommitdiffstats
path: root/src/soc/intel/apollolake/exit_car_fsp.S
blob: fbf2d31dc3d23cd548eddcc904aa63d82c68773a (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
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
/*
 * This file is part of the coreboot project.
 *
 * Copyright (C) 2016 Intel Corp.
 *
 * This program is free software; you can redistribute it and/or
 * modify it under the terms of the GNU General Public License as
 * published by the Free Software Foundation; version 2 of
 * the License.
 *
 * This program is distributed in the hope that it will be useful,
 * but WITHOUT ANY WARRANTY; without even the implied warranty of
 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
 * GNU General Public License for more details.
 */

#include <cpu/x86/mtrr.h>
#include <cpu/x86/cr.h>

/*
 * This path for CAR teardown is taken when CONFIG_FSP_CAR is employed.
 * This version of chipset_teardown_car sets up the stack, then bypasses
 * the rest of arch/x86/exit_car.S and calls main() itself instead of
 * returning to _start. In main(), the TempRamExit FSP API is called
 * to tear down the CAR and set up caching which can be overwritten
 * after the API call.  More info can be found in the Apollo Lake FSP
 * Integration Guide included with the FSP binary.  The below
 * caching settings are based on an 8MiB Flash Size given as a
 * parameter to TempRamInit.
 *
 *	TempRamExit MTRR Settings:
 *	0x00000000  - 0x0009FFFF           | Write Back
 *	0x000C0000  - Top of Low Memory    | Write Back
 *	0xFF800000  - 0xFFFFFFFF Flash Reg | Write Protect
 *	0x100000000 - Top of High Memory   | Write Back
 */

.text
.global chipset_teardown_car
chipset_teardown_car:

	/* Set up new stack. */
	mov	post_car_stack_top, %esp

	/* Call C code */
	call	main