soc/amd: only print CPU family and model in bootblock

Printing this in both bootblock and romstage is redundant, since the CPU
family and model aren't expected to change between bootblock and
romstage entry.

Signed-off-by: Felix Held <felix-coreboot@felixheld.de>
Reported-by: Paul Menzel <pmenzel@molgen.mpg.de>
Change-Id: Id7c6aea0d8a6dac39114593584e534661faea89d
Reviewed-on: https://review.coreboot.org/c/coreboot/+/51062
Tested-by: build bot (Jenkins) <no-reply@coreboot.org>
Reviewed-by: Raul Rangel <rrangel@chromium.org>
This commit is contained in:
Felix Held 2021-02-23 12:36:16 +01:00
parent 28e2353e07
commit ec098b5e7f
2 changed files with 0 additions and 5 deletions

View File

@ -29,9 +29,6 @@ asmlinkage void car_stage_entry(void)
post_code(0x41);
u32 val = cpuid_eax(1);
printk(BIOS_DEBUG, "Family_Model: %08x\n", val);
fsp_memory_init(acpi_is_wakeup_s3());
memmap_stash_early_dram_usage();

View File

@ -147,8 +147,6 @@ asmlinkage void car_stage_entry(void)
console_init();
post_code(0x42);
u32 val = cpuid_eax(1);
printk(BIOS_DEBUG, "Family_Model: %08x\n", val);
/* Snapshot chipset state prior to any FSP call. */
fill_chipset_state();