diff options
author | lilacious <yuchenhe126@gmail.com> | 2023-06-21 23:24:14 +0200 |
---|---|---|
committer | Felix Held <felix-coreboot@felixheld.de> | 2023-06-23 15:06:04 +0000 |
commit | 40cb3fe94dacfba0b146aae2be9c03c0a0ddb691 (patch) | |
tree | 9dc68ba4ab1d8033939e1a872b374fc2ef3ba504 /src/lib | |
parent | bb4bc777b7b6566cd030f2c4eef4b5e2c8425349 (diff) |
commonlib/console/post_code.h: Change post code prefix to POSTCODE
The prefix POSTCODE makes it clear that the macro is a post code.
Hence, replace related macros starting with POST to POSTCODE and
also replace every instance the macros are invoked with the new
name.
The files was changed by running the following bash script from the
top level directory.
sed -i'' '30,${s/#define POST/#define POSTCODE/g;}' \
src/commonlib/include/commonlib/console/post_codes.h;
myArray=`grep -e "^#define POSTCODE_" \
src/commonlib/include/commonlib/console/post_codes.h | \
grep -v "POST_CODES_H" | tr '\t' ' ' | cut -d ' ' -f 2`;
for str in ${myArray[@]}; do
splitstr=`echo $str | cut -d '_' -f2-`
grep -r POST_$splitstr src | \
cut -d ':' -f 1 | xargs sed -i'' -e "s/POST_$splitstr/$str/g";
grep -r "POST_$splitstr" util/cbfstool | \
cut -d ':' -f 1 | xargs sed -i'' -e "s/POST_$splitstr/$str/g";
done
Change-Id: I25db79fa15f032c08678f66d86c10c928b7de9b8
Signed-off-by: lilacious <yuchenhe126@gmail.com>
Reviewed-on: https://review.coreboot.org/c/coreboot/+/76043
Tested-by: build bot (Jenkins) <no-reply@coreboot.org>
Reviewed-by: Subrata Banik <subratabanik@google.com>
Diffstat (limited to 'src/lib')
-rw-r--r-- | src/lib/hardwaremain.c | 6 | ||||
-rw-r--r-- | src/lib/prog_loaders.c | 10 | ||||
-rw-r--r-- | src/lib/ramtest.c | 4 |
3 files changed, 10 insertions, 10 deletions
diff --git a/src/lib/hardwaremain.c b/src/lib/hardwaremain.c index 47022ac858..cee48ab8f2 100644 --- a/src/lib/hardwaremain.c +++ b/src/lib/hardwaremain.c @@ -60,7 +60,7 @@ struct boot_state { { \ .name = #state_, \ .id = state_, \ - .post_code = POST_ ## state_, \ + .post_code = POSTCODE_ ## state_, \ .phases = { { NULL, 0 }, { NULL, 0 } }, \ .run_state = run_func_, \ .arg = NULL, \ @@ -444,7 +444,7 @@ void main(void) /* console_init() MUST PRECEDE ALL printk()! Additionally, ensure * it is the very first thing done in ramstage.*/ console_init(); - post_code(POST_CONSOLE_READY); + post_code(POSTCODE_CONSOLE_READY); exception_init(); @@ -455,7 +455,7 @@ void main(void) cbmem_initialize(); timestamp_add_now(TS_RAMSTAGE_START); - post_code(POST_ENTRY_HARDWAREMAIN); + post_code(POSTCODE_ENTRY_HARDWAREMAIN); /* Handoff sleep type from romstage. */ acpi_is_wakeup_s3(); diff --git a/src/lib/prog_loaders.c b/src/lib/prog_loaders.c index 08ba66a0c5..17d946eac9 100644 --- a/src/lib/prog_loaders.c +++ b/src/lib/prog_loaders.c @@ -39,7 +39,7 @@ void run_romstage(void) fail: if (CONFIG(BOOTBLOCK_CONSOLE)) - die_with_post_code(POST_INVALID_ROM, + die_with_post_code(POSTCODE_INVALID_ROM, "Couldn't load romstage.\n"); halt(); } @@ -123,7 +123,7 @@ void __noreturn run_ramstage(void) prog_run(&ramstage); fail: - die_with_post_code(POST_INVALID_ROM, "Ramstage was not loaded!\n"); + die_with_post_code(POSTCODE_INVALID_ROM, "Ramstage was not loaded!\n"); } #if ENV_PAYLOAD_LOADER // gc-sections should take care of this @@ -166,7 +166,7 @@ void payload_load(void) } __fallthrough; default: - die_with_post_code(POST_INVALID_ROM, + die_with_post_code(POSTCODE_INVALID_ROM, "Unsupported payload type %d.\n", payload->cbfs_type); break; } @@ -174,7 +174,7 @@ void payload_load(void) cbfs_unmap(mapping); out: if (prog_entry(payload) == NULL) - die_with_post_code(POST_INVALID_ROM, "Payload not loaded.\n"); + die_with_post_code(POSTCODE_INVALID_ROM, "Payload not loaded.\n"); } void payload_run(void) @@ -187,7 +187,7 @@ void payload_run(void) printk(BIOS_DEBUG, "Jumping to boot code at %p(%p)\n", prog_entry(payload), prog_entry_arg(payload)); - post_code(POST_ENTER_ELF_BOOT); + post_code(POSTCODE_ENTER_ELF_BOOT); timestamp_add_now(TS_SELFBOOT_JUMP); diff --git a/src/lib/ramtest.c b/src/lib/ramtest.c index a3b2528878..90fc777a25 100644 --- a/src/lib/ramtest.c +++ b/src/lib/ramtest.c @@ -110,7 +110,7 @@ static int ram_bitset_nodie(uintptr_t start) } } if (failures) { - post_code(POST_RAM_FAILURE); + post_code(POSTCODE_RAM_FAILURE); printk(BIOS_DEBUG, "\nDRAM did _NOT_ verify!\n"); return 1; } @@ -200,7 +200,7 @@ void quick_ram_check_or_die(uintptr_t dst) write_phys(dst, backup); if (fail) { - post_code(POST_RAM_FAILURE); + post_code(POSTCODE_RAM_FAILURE); die("RAM INIT FAILURE!\n"); } phys_memory_barrier(); |