mb/intel/d510mo: Add romstage timestamps
Change-Id: I324edce44ad82217ac1fba177f4a0bb3c799308c Signed-off-by: Arthur Heymans <arthur@aheymans.xyz> Reviewed-on: https://review.coreboot.org/19426 Tested-by: build bot (Jenkins) Reviewed-by: Kyösti Mälkki <kyosti.malkki@gmail.com> Reviewed-by: Paul Menzel <paulepanter@users.sourceforge.net>
This commit is contained in:
parent
58ab3bed82
commit
0c0b79689a
|
@ -33,6 +33,7 @@
|
||||||
#include <arch/stages.h>
|
#include <arch/stages.h>
|
||||||
#include <cbmem.h>
|
#include <cbmem.h>
|
||||||
#include <romstage_handoff.h>
|
#include <romstage_handoff.h>
|
||||||
|
#include <timestamp.h>
|
||||||
|
|
||||||
#define SERIAL_DEV PNP_DEV(0x4e, W83627THG_SP1)
|
#define SERIAL_DEV PNP_DEV(0x4e, W83627THG_SP1)
|
||||||
#define SUPERIO_DEV PNP_DEV(0x4e, 0)
|
#define SUPERIO_DEV PNP_DEV(0x4e, 0)
|
||||||
|
@ -105,6 +106,9 @@ void mainboard_romstage_entry(unsigned long bist)
|
||||||
int s3resume = 0;
|
int s3resume = 0;
|
||||||
int boot_path;
|
int boot_path;
|
||||||
|
|
||||||
|
timestamp_init(get_initial_timestamp());
|
||||||
|
timestamp_add_now(TS_START_ROMSTAGE);
|
||||||
|
|
||||||
if (bist == 0)
|
if (bist == 0)
|
||||||
enable_lapic();
|
enable_lapic();
|
||||||
|
|
||||||
|
@ -137,7 +141,9 @@ void mainboard_romstage_entry(unsigned long bist)
|
||||||
}
|
}
|
||||||
|
|
||||||
printk(BIOS_DEBUG, "Initializing memory\n");
|
printk(BIOS_DEBUG, "Initializing memory\n");
|
||||||
|
timestamp_add_now(TS_BEFORE_INITRAM);
|
||||||
sdram_initialize(boot_path, spd_addrmap);
|
sdram_initialize(boot_path, spd_addrmap);
|
||||||
|
timestamp_add_now(TS_AFTER_INITRAM);
|
||||||
printk(BIOS_DEBUG, "Memory initialized\n");
|
printk(BIOS_DEBUG, "Memory initialized\n");
|
||||||
|
|
||||||
post_code(0x31);
|
post_code(0x31);
|
||||||
|
|
Loading…
Reference in New Issue