soc/amd: Define post codes

For the most part, this doesn't change any post codes, simply making the
existing post-codes into macros.

picasso/romstage.c did get a couple of post codes removed to match the
other files.

The POST_ROMSTAGE and POST_BOOTBLOCK codes are intended to become global
at some point, while the POST_AGESA and POST_PSP codes would stay AMD
specific.

Change-Id: I007a09b6a3ed3280bac674cd74e298ec5c408ab7
Signed-off-by: Martin Roth <gaumless@gmail.com>
Reviewed-on: https://review.coreboot.org/c/coreboot/+/69867
Tested-by: build bot (Jenkins) <no-reply@coreboot.org>
Reviewed-by: Felix Held <felix-coreboot@felixheld.de>
This commit is contained in:
Martin Roth 2022-11-20 20:30:18 -07:00 committed by Felix Held
parent 5e3798ca48
commit 8180427a16
11 changed files with 66 additions and 25 deletions

View File

@ -4,6 +4,7 @@
#include <amdblocks/acpimmio.h> #include <amdblocks/acpimmio.h>
#include <amdblocks/memmap.h> #include <amdblocks/memmap.h>
#include <amdblocks/pmlib.h> #include <amdblocks/pmlib.h>
#include <amdblocks/post_codes.h>
#include <console/console.h> #include <console/console.h>
#include <cpu/cpu.h> #include <cpu/cpu.h>
#include <fsp/api.h> #include <fsp/api.h>
@ -12,7 +13,7 @@
void __noreturn romstage_main(void) void __noreturn romstage_main(void)
{ {
post_code(0x40); post_code(POST_ROMSTAGE_MAIN);
/* Snapshot chipset state prior to any FSP call */ /* Snapshot chipset state prior to any FSP call */
fill_chipset_state(); fill_chipset_state();

View File

@ -8,6 +8,7 @@
****************************************************************************** ******************************************************************************
*/ */
#include <amdblocks/post_codes.h>
#include <cpu/x86/post_code.h> #include <cpu/x86/post_code.h>
.section .init .section .init
@ -27,7 +28,7 @@ _cache_as_ram_setup:
.global bootblock_pre_c_entry .global bootblock_pre_c_entry
bootblock_pre_c_entry: bootblock_pre_c_entry:
post_code(0xa0) post_code(POST_BOOTBLOCK_PRE_C_ENTRY)
AMD_ENABLE_STACK AMD_ENABLE_STACK
@ -41,7 +42,7 @@ bootblock_pre_c_entry:
pushl %eax /* tsc[31:0] */ pushl %eax /* tsc[31:0] */
before_carstage: before_carstage:
post_code(0xa2) post_code(POST_BOOTBLOCK_PRE_C_DONE)
call bootblock_c_entry call bootblock_c_entry
/* Never reached */ /* Never reached */

View File

@ -1,12 +1,13 @@
/* SPDX-License-Identifier: GPL-2.0-only */ /* SPDX-License-Identifier: GPL-2.0-only */
#include <amdblocks/post_codes.h>
#include <cpu/x86/post_code.h> #include <cpu/x86/post_code.h>
.section .init, "ax", @progbits .section .init, "ax", @progbits
.global bootblock_resume_entry .global bootblock_resume_entry
bootblock_resume_entry: bootblock_resume_entry:
post_code(0xb0) post_code(POST_BOOTBLOCK_RESUME_ENTRY)
/* Get an early timestamp */ /* Get an early timestamp */
rdtsc rdtsc
@ -23,7 +24,7 @@ bootblock_resume_entry:
.global bootblock_pre_c_entry .global bootblock_pre_c_entry
bootblock_pre_c_entry: bootblock_pre_c_entry:
post_code(0xa0) post_code(POST_BOOTBLOCK_PRE_C_ENTRY)
#if ENV_X86_64 #if ENV_X86_64
#include <cpu/x86/64bit/entry64.inc> #include <cpu/x86/64bit/entry64.inc>
@ -56,7 +57,7 @@ bootblock_pre_c_entry:
pushl %eax /* tsc[31:0] */ pushl %eax /* tsc[31:0] */
#endif #endif
post_code(0xa2) post_code(POST_BOOTBLOCK_PRE_C_DONE)
call bootblock_c_entry call bootblock_c_entry
/* Never reached */ /* Never reached */

View File

@ -0,0 +1,33 @@
/* SPDX-License-Identifier: GPL-2.0-only */
#ifndef AMD_BLOCK_POST_CODES_H
#define AMD_BLOCK_POST_CODES_H
#define POST_AGESA_AMDINITRESET 0x37
#define POST_AGESA_AMDINITEARLY 0x38
#define POST_ROMSTAGE_MAIN 0x40
#define POST_AGESA_AMDINITPOST 0x40
#define POST_AGESA_AMDINITPOST_DONE 0x41
#define POST_PSP_NOTIFY_DRAM 0x42
#define POST_PSP_NOTIFY_DRAM_DONE 0x43
#define POST_ROMSTAGE_RUN_POSTCAR 0x44
#define POST_PSP_LOAD_SMU 0x46
#define POST_AGESA_AMDINITENV 0x47
#define POST_AGESA_AMDS3LATERESTORE 0x48
#define POST_AGESA_AMDINITRESUME 0x60
#define POST_AGESA_AMDINITRESUME_DONE 0x61
#define POST_BOOTBLOCK_SOC_EARLY_INIT 0x90
#define POST_BOOTBLOCK_RESUME_ENTRY 0xb0
#define POST_BOOTBLOCK_PRE_C_ENTRY 0xa0
#define POST_BOOTBLOCK_PRE_C_DONE 0xa2
#endif

View File

@ -4,6 +4,7 @@
#include <amdblocks/acpimmio.h> #include <amdblocks/acpimmio.h>
#include <amdblocks/memmap.h> #include <amdblocks/memmap.h>
#include <amdblocks/pmlib.h> #include <amdblocks/pmlib.h>
#include <amdblocks/post_codes.h>
#include <console/console.h> #include <console/console.h>
#include <cpu/cpu.h> #include <cpu/cpu.h>
#include <fsp/api.h> #include <fsp/api.h>
@ -12,7 +13,7 @@
void __noreturn romstage_main(void) void __noreturn romstage_main(void)
{ {
post_code(0x40); post_code(POST_ROMSTAGE_MAIN);
/* Snapshot chipset state prior to any FSP call */ /* Snapshot chipset state prior to any FSP call */
fill_chipset_state(); fill_chipset_state();

View File

@ -6,6 +6,7 @@
#include <amdblocks/acpimmio.h> #include <amdblocks/acpimmio.h>
#include <amdblocks/memmap.h> #include <amdblocks/memmap.h>
#include <amdblocks/pmlib.h> #include <amdblocks/pmlib.h>
#include <amdblocks/post_codes.h>
#include <amdblocks/stb.h> #include <amdblocks/stb.h>
#include <console/console.h> #include <console/console.h>
#include <cpu/cpu.h> #include <cpu/cpu.h>
@ -15,7 +16,7 @@
void __noreturn romstage_main(void) void __noreturn romstage_main(void)
{ {
post_code(0x40); post_code(POST_ROMSTAGE_MAIN);
if (CONFIG(WRITE_STB_BUFFER_TO_CONSOLE)) if (CONFIG(WRITE_STB_BUFFER_TO_CONSOLE))
write_stb_to_console(); write_stb_to_console();

View File

@ -4,6 +4,7 @@
#include <amdblocks/acpimmio.h> #include <amdblocks/acpimmio.h>
#include <amdblocks/memmap.h> #include <amdblocks/memmap.h>
#include <amdblocks/pmlib.h> #include <amdblocks/pmlib.h>
#include <amdblocks/post_codes.h>
#include <console/console.h> #include <console/console.h>
#include <cpu/cpu.h> #include <cpu/cpu.h>
#include <fsp/api.h> #include <fsp/api.h>
@ -12,7 +13,7 @@
void __noreturn romstage_main(void) void __noreturn romstage_main(void)
{ {
post_code(0x40); post_code(POST_ROMSTAGE_MAIN);
/* Snapshot chipset state prior to any FSP call */ /* Snapshot chipset state prior to any FSP call */
fill_chipset_state(); fill_chipset_state();

View File

@ -3,6 +3,7 @@
#include <acpi/acpi.h> #include <acpi/acpi.h>
#include <amdblocks/memmap.h> #include <amdblocks/memmap.h>
#include <amdblocks/pmlib.h> #include <amdblocks/pmlib.h>
#include <amdblocks/post_codes.h>
#include <commonlib/helpers.h> #include <commonlib/helpers.h>
#include <console/console.h> #include <console/console.h>
#include <cpu/cpu.h> #include <cpu/cpu.h>
@ -13,16 +14,14 @@
void __noreturn romstage_main(void) void __noreturn romstage_main(void)
{ {
post_code(0x40); post_code(POST_ROMSTAGE_MAIN);
/* Snapshot chipset state prior to any FSP call. */ /* Snapshot chipset state prior to any FSP call. */
fill_chipset_state(); fill_chipset_state();
post_code(0x43);
fsp_memory_init(acpi_is_wakeup_s3()); fsp_memory_init(acpi_is_wakeup_s3());
memmap_stash_early_dram_usage(); memmap_stash_early_dram_usage();
post_code(0x44);
run_ramstage(); run_ramstage();
} }

View File

@ -13,6 +13,7 @@
#include <amdblocks/amd_pci_mmconf.h> #include <amdblocks/amd_pci_mmconf.h>
#include <amdblocks/biosram.h> #include <amdblocks/biosram.h>
#include <amdblocks/iomap.h> #include <amdblocks/iomap.h>
#include <amdblocks/post_codes.h>
#include <soc/pci_devs.h> #include <soc/pci_devs.h>
#include <soc/cpu.h> #include <soc/cpu.h>
#include <soc/southbridge.h> #include <soc/southbridge.h>
@ -77,7 +78,7 @@ asmlinkage void bootblock_c_entry(uint64_t base_timestamp)
void bootblock_soc_early_init(void) void bootblock_soc_early_init(void)
{ {
bootblock_fch_early_init(); bootblock_fch_early_init();
post_code(0x90); post_code(POST_BOOTBLOCK_SOC_EARLY_INIT);
} }
void bootblock_soc_init(void) void bootblock_soc_init(void)

View File

@ -15,6 +15,7 @@
#include <amdblocks/agesawrapper.h> #include <amdblocks/agesawrapper.h>
#include <amdblocks/agesawrapper_call.h> #include <amdblocks/agesawrapper_call.h>
#include <amdblocks/i2c.h> #include <amdblocks/i2c.h>
#include <amdblocks/post_codes.h>
#include "chip.h" #include "chip.h"
@ -115,15 +116,15 @@ struct chip_operations soc_amd_stoneyridge_ops = {
static void earliest_ramstage(void *unused) static void earliest_ramstage(void *unused)
{ {
if (!acpi_is_wakeup_s3()) { if (!acpi_is_wakeup_s3()) {
post_code(0x46); post_code(POST_PSP_LOAD_SMU);
if (CONFIG(SOC_AMD_PSP_SELECTABLE_SMU_FW)) if (CONFIG(SOC_AMD_PSP_SELECTABLE_SMU_FW))
psp_load_named_blob(BLOB_SMU_FW2, "smu_fw2"); psp_load_named_blob(BLOB_SMU_FW2, "smu_fw2");
post_code(0x47); post_code(POST_AGESA_AMDINITENV);
do_agesawrapper(AMD_INIT_ENV, "amdinitenv"); do_agesawrapper(AMD_INIT_ENV, "amdinitenv");
} else { } else {
/* Complete the initial system restoration */ /* Complete the initial system restoration */
post_code(0x46); post_code(POST_AGESA_AMDS3LATERESTORE);
do_agesawrapper(AMD_S3LATE_RESTORE, "amds3laterestore"); do_agesawrapper(AMD_S3LATE_RESTORE, "amds3laterestore");
} }
} }

View File

@ -5,6 +5,7 @@
#include <amdblocks/agesawrapper_call.h> #include <amdblocks/agesawrapper_call.h>
#include <amdblocks/agesawrapper.h> #include <amdblocks/agesawrapper.h>
#include <amdblocks/biosram.h> #include <amdblocks/biosram.h>
#include <amdblocks/post_codes.h>
#include <amdblocks/psp.h> #include <amdblocks/psp.h>
#include <arch/romstage.h> #include <arch/romstage.h>
#include <cbmem.h> #include <cbmem.h>
@ -35,10 +36,10 @@ void __weak mainboard_romstage_entry(void)
static void agesa_call(void) static void agesa_call(void)
{ {
post_code(0x37); post_code(POST_AGESA_AMDINITRESET);
do_agesawrapper(AMD_INIT_RESET, "amdinitreset"); do_agesawrapper(AMD_INIT_RESET, "amdinitreset");
post_code(0x38); post_code(POST_AGESA_AMDINITEARLY);
/* APs will not exit amdinitearly */ /* APs will not exit amdinitearly */
do_agesawrapper(AMD_INIT_EARLY, "amdinitearly"); do_agesawrapper(AMD_INIT_EARLY, "amdinitearly");
} }
@ -66,10 +67,10 @@ void __noreturn romstage_main(void)
bsp_agesa_call(); bsp_agesa_call();
if (!s3_resume) { if (!s3_resume) {
post_code(0x40); post_code(POST_AGESA_AMDINITPOST);
do_agesawrapper(AMD_INIT_POST, "amdinitpost"); do_agesawrapper(AMD_INIT_POST, "amdinitpost");
post_code(0x41); post_code(POST_AGESA_AMDINITPOST_DONE);
/* /*
* TODO: This is a hack to work around current AGESA behavior. * TODO: This is a hack to work around current AGESA behavior.
* AGESA needs to change to reflect that coreboot owns * AGESA needs to change to reflect that coreboot owns
@ -99,16 +100,16 @@ void __noreturn romstage_main(void)
wrmsr(SYSCFG_MSR, sys_cfg); wrmsr(SYSCFG_MSR, sys_cfg);
} else { } else {
printk(BIOS_INFO, "S3 detected\n"); printk(BIOS_INFO, "S3 detected\n");
post_code(0x60); post_code(POST_AGESA_AMDINITRESUME);
do_agesawrapper(AMD_INIT_RESUME, "amdinitresume"); do_agesawrapper(AMD_INIT_RESUME, "amdinitresume");
post_code(0x61); post_code(POST_AGESA_AMDINITRESUME_DONE);
} }
post_code(0x42); post_code(POST_PSP_NOTIFY_DRAM);
psp_notify_dram(); psp_notify_dram();
post_code(0x43); post_code(POST_PSP_NOTIFY_DRAM_DONE);
if (cbmem_recovery(s3_resume)) if (cbmem_recovery(s3_resume))
printk(BIOS_CRIT, "Failed to recover cbmem\n"); printk(BIOS_CRIT, "Failed to recover cbmem\n");
if (romstage_handoff_init(s3_resume)) if (romstage_handoff_init(s3_resume))
@ -117,7 +118,7 @@ void __noreturn romstage_main(void)
if (CONFIG(SMM_TSEG)) if (CONFIG(SMM_TSEG))
smm_list_regions(); smm_list_regions();
post_code(0x44); post_code(POST_ROMSTAGE_RUN_POSTCAR);
prepare_and_run_postcar(); prepare_and_run_postcar();
} }