Elyes HAOUAS has uploaded a new patch set (#2). ( https://review.coreboot.org/27331 )
Change subject: src: Get rid of non-local header treated as local
......................................................................
src: Get rid of non-local header treated as local
Change-Id: I2c5edadfd035c9af08af9ee326a5a2dc8b840faa
Signed-off-by: Elyes HAOUAS <ehaouas(a)noos.fr>
---
M src/cpu/amd/car/post_cache_as_ram.c
M src/cpu/amd/family_10h-family_15h/model_10xxx_init.c
M src/cpu/intel/haswell/romstage.c
M src/mainboard/amd/serengeti_cheetah_fam10/dsdt.asl
M src/mainboard/asus/kcma-d8/dsdt.asl
M src/mainboard/asus/kfsn4-dre/dsdt.asl
M src/mainboard/asus/kgpe-d16/dsdt.asl
M src/mainboard/asus/p2b-ls/dsdt.asl
M src/mainboard/asus/p2b/dsdt.asl
M src/southbridge/intel/fsp_rangeley/romstage.c
M src/southbridge/intel/lynxpoint/early_pch.c
11 files changed, 25 insertions(+), 25 deletions(-)
git pull ssh://review.coreboot.org:29418/coreboot refs/changes/31/27331/2
--
To view, visit https://review.coreboot.org/27331
To unsubscribe, or for help writing mail filters, visit https://review.coreboot.org/settings
Gerrit-Project: coreboot
Gerrit-Branch: master
Gerrit-MessageType: newpatchset
Gerrit-Change-Id: I2c5edadfd035c9af08af9ee326a5a2dc8b840faa
Gerrit-Change-Number: 27331
Gerrit-PatchSet: 2
Gerrit-Owner: Elyes HAOUAS <ehaouas(a)noos.fr>
Elyes HAOUAS has posted comments on this change. ( https://review.coreboot.org/27330 )
Change subject: intel/i945: add timestamps in romstage
......................................................................
Patch Set 1:
this to remove "timestamp_add_now" from mb/*/*/romstage.c ?
--
To view, visit https://review.coreboot.org/27330
To unsubscribe, or for help writing mail filters, visit https://review.coreboot.org/settings
Gerrit-Project: coreboot
Gerrit-Branch: master
Gerrit-MessageType: comment
Gerrit-Change-Id: Ic95313a19646b66dc1633fb680e54bfc61ec90be
Gerrit-Change-Number: 27330
Gerrit-PatchSet: 1
Gerrit-Owner: Patrick Georgi <pgeorgi(a)google.com>
Gerrit-CC: Elyes HAOUAS <ehaouas(a)noos.fr>
Gerrit-Comment-Date: Tue, 03 Jul 2018 12:32:01 +0000
Gerrit-HasComments: No
Gerrit-HasLabels: No
Patrick Georgi has uploaded this change for review. ( https://review.coreboot.org/27329
Change subject: timestamps: denote "end of romstage" right before loading ramstage
......................................................................
timestamps: denote "end of romstage" right before loading ramstage
Change-Id: I3524a757f5274815d62a17c58a18ed6b9aa726bf
Signed-off-by: Patrick Georgi <pgeorgi(a)chromium.org>
---
M src/arch/x86/cbfs_and_run.c
1 file changed, 2 insertions(+), 0 deletions(-)
git pull ssh://review.coreboot.org:29418/coreboot refs/changes/29/27329/1
diff --git a/src/arch/x86/cbfs_and_run.c b/src/arch/x86/cbfs_and_run.c
index f25052b..d403009 100644
--- a/src/arch/x86/cbfs_and_run.c
+++ b/src/arch/x86/cbfs_and_run.c
@@ -15,8 +15,10 @@
#include <arch/stages.h>
#include <program_loading.h>
+#include <timestamp.h>
asmlinkage void copy_and_run(void)
{
+ timestamp_add_now(TS_END_ROMSTAGE);
run_ramstage();
}
--
To view, visit https://review.coreboot.org/27329
To unsubscribe, or for help writing mail filters, visit https://review.coreboot.org/settings
Gerrit-Project: coreboot
Gerrit-Branch: master
Gerrit-MessageType: newchange
Gerrit-Change-Id: I3524a757f5274815d62a17c58a18ed6b9aa726bf
Gerrit-Change-Number: 27329
Gerrit-PatchSet: 1
Gerrit-Owner: Patrick Georgi <pgeorgi(a)google.com>