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>
This commit is contained in:
@@ -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();
|
||||
|
@@ -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);
|
||||
|
||||
|
@@ -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();
|
||||
|
Reference in New Issue
Block a user