diff options
author | Kyösti Mälkki <kyosti.malkki@gmail.com> | 2019-08-16 20:34:25 +0300 |
---|---|---|
committer | Kyösti Mälkki <kyosti.malkki@gmail.com> | 2019-08-22 02:50:35 +0000 |
commit | a963acdcc70747911981afcd1474d39d75ca8804 (patch) | |
tree | 57f67998627e588d8523497172512dba7b0032fb /src/drivers | |
parent | 9ede2ffee845d243d8e1515effbc206152fbc7fd (diff) | |
download | coreboot-a963acdcc70747911981afcd1474d39d75ca8804.tar.xz |
arch/x86: Add <arch/romstage.h>
Start with moving all postcar_frame related function
declarations here from <arch/cpu.h>.
Change-Id: I9aeef07f9009e44cc08927c85fe1862edf5c70dc
Signed-off-by: Kyösti Mälkki <kyosti.malkki@gmail.com>
Reviewed-on: https://review.coreboot.org/c/coreboot/+/34911
Reviewed-by: Aaron Durbin <adurbin@chromium.org>
Reviewed-by: HAOUAS Elyes <ehaouas@noos.fr>
Tested-by: build bot (Jenkins) <no-reply@coreboot.org>
Diffstat (limited to 'src/drivers')
-rw-r--r-- | src/drivers/amd/agesa/mtrr_fixme.c | 2 | ||||
-rw-r--r-- | src/drivers/amd/agesa/romstage.c | 1 | ||||
-rw-r--r-- | src/drivers/intel/fsp1_1/car.c | 1 | ||||
-rw-r--r-- | src/drivers/intel/fsp2_0/temp_ram_exit.c | 2 |
4 files changed, 4 insertions, 2 deletions
diff --git a/src/drivers/amd/agesa/mtrr_fixme.c b/src/drivers/amd/agesa/mtrr_fixme.c index fcb353c601..bbb9eb0440 100644 --- a/src/drivers/amd/agesa/mtrr_fixme.c +++ b/src/drivers/amd/agesa/mtrr_fixme.c @@ -11,7 +11,7 @@ * GNU General Public License for more details. */ -#include <arch/cpu.h> +#include <arch/romstage.h> #include <cbmem.h> #include <console/console.h> #include <commonlib/helpers.h> diff --git a/src/drivers/amd/agesa/romstage.c b/src/drivers/amd/agesa/romstage.c index adf6e0d0e3..fad49c305c 100644 --- a/src/drivers/amd/agesa/romstage.c +++ b/src/drivers/amd/agesa/romstage.c @@ -15,6 +15,7 @@ #include <arch/acpi.h> #include <arch/cpu.h> +#include <arch/romstage.h> #include <cbmem.h> #include <cpu/amd/car.h> #include <cpu/x86/bist.h> diff --git a/src/drivers/intel/fsp1_1/car.c b/src/drivers/intel/fsp1_1/car.c index 67fbe69915..fafe8384b4 100644 --- a/src/drivers/intel/fsp1_1/car.c +++ b/src/drivers/intel/fsp1_1/car.c @@ -13,6 +13,7 @@ * GNU General Public License for more details. */ +#include <arch/romstage.h> #include <arch/symbols.h> #include <cbmem.h> #include <console/console.h> diff --git a/src/drivers/intel/fsp2_0/temp_ram_exit.c b/src/drivers/intel/fsp2_0/temp_ram_exit.c index 075e923f84..342fc357fa 100644 --- a/src/drivers/intel/fsp2_0/temp_ram_exit.c +++ b/src/drivers/intel/fsp2_0/temp_ram_exit.c @@ -9,7 +9,7 @@ * (at your option) any later version. */ -#include <arch/cpu.h> +#include <arch/romstage.h> #include <console/console.h> #include <fsp/api.h> #include <fsp/util.h> |