Keith Hui has uploaded this change for review. ( https://review.coreboot.org/c/coreboot/+/38382 )
Change subject: intel/i440bx: Add timestamp to RAM init ......................................................................
intel/i440bx: Add timestamp to RAM init
Change-Id: I27b2fcf6fea18e03dddb015eb017acc5db1db540 Signed-off-by: Keith Hui buurin@gmail.com --- M src/northbridge/intel/i440bx/raminit.c 1 file changed, 3 insertions(+), 0 deletions(-)
git pull ssh://review.coreboot.org:29418/coreboot refs/changes/82/38382/1
diff --git a/src/northbridge/intel/i440bx/raminit.c b/src/northbridge/intel/i440bx/raminit.c index 597ba94..d5c23cf 100644 --- a/src/northbridge/intel/i440bx/raminit.c +++ b/src/northbridge/intel/i440bx/raminit.c @@ -22,6 +22,7 @@ #include <device/pci_ops.h> #include <device/pci_def.h> #include <console/console.h> +#include <timestamp.h> #include "i440bx.h" #include "raminit.h"
@@ -1043,6 +1044,7 @@
void sdram_initialize(void) { + timestamp_add_now(TS_BEFORE_INITRAM); enable_spd();
dump_spd_registers(); @@ -1051,4 +1053,5 @@ sdram_enable();
disable_spd(); + timestamp_add_now(TS_AFTER_INITRAM); }
Paul Menzel has posted comments on this change. ( https://review.coreboot.org/c/coreboot/+/38382 )
Change subject: intel/i440bx: Add timestamp to RAM init ......................................................................
Patch Set 1: Code-Review+1
Angel Pons has posted comments on this change. ( https://review.coreboot.org/c/coreboot/+/38382 )
Change subject: intel/i440bx: Add timestamp to RAM init ......................................................................
Patch Set 1: Code-Review+2
Kyösti Mälkki has submitted this change. ( https://review.coreboot.org/c/coreboot/+/38382 )
Change subject: intel/i440bx: Add timestamp to RAM init ......................................................................
intel/i440bx: Add timestamp to RAM init
Change-Id: I27b2fcf6fea18e03dddb015eb017acc5db1db540 Signed-off-by: Keith Hui buurin@gmail.com Reviewed-on: https://review.coreboot.org/c/coreboot/+/38382 Tested-by: build bot (Jenkins) no-reply@coreboot.org Reviewed-by: Paul Menzel paulepanter@users.sourceforge.net Reviewed-by: Angel Pons th3fanbus@gmail.com --- M src/northbridge/intel/i440bx/raminit.c 1 file changed, 3 insertions(+), 0 deletions(-)
Approvals: build bot (Jenkins): Verified Paul Menzel: Looks good to me, but someone else must approve Angel Pons: Looks good to me, approved
diff --git a/src/northbridge/intel/i440bx/raminit.c b/src/northbridge/intel/i440bx/raminit.c index 597ba94..d5c23cf 100644 --- a/src/northbridge/intel/i440bx/raminit.c +++ b/src/northbridge/intel/i440bx/raminit.c @@ -22,6 +22,7 @@ #include <device/pci_ops.h> #include <device/pci_def.h> #include <console/console.h> +#include <timestamp.h> #include "i440bx.h" #include "raminit.h"
@@ -1043,6 +1044,7 @@
void sdram_initialize(void) { + timestamp_add_now(TS_BEFORE_INITRAM); enable_spd();
dump_spd_registers(); @@ -1051,4 +1053,5 @@ sdram_enable();
disable_spd(); + timestamp_add_now(TS_AFTER_INITRAM); }