the following patch was just integrated into master:
commit 09e3bfbd8b886f9c4803271bcd87db15fdb89ab6
Author: Timothy Pearson <tpearson(a)raptorengineeringinc.com>
Date: Wed Apr 27 12:46:57 2016 -0500
nb/amd/mct_ddr3: Restart system on training failure instead of using die()
DIMM training can sporadically fail due to external influences or various
errata. In these cases, restarting to retry training is a more appropriate
response than halting the system and requiring manual intervention.
Change-Id: Id49f7419f56e0640a84448cc06ecbaf62bed145e
Signed-off-by: Timothy Pearson <tpearson(a)raptorengineeringinc.com>
Reviewed-on: https://review.coreboot.org/14529
Tested-by: build bot (Jenkins)
Reviewed-by: Martin Roth <martinroth(a)google.com>
Tested-by: Raptor Engineering Automated Test Stand <noreply(a)raptorengineeringinc.com>
Reviewed-by: Paul Menzel <paulepanter(a)users.sourceforge.net>
See https://review.coreboot.org/14529 for details.
-gerrit
the following patch was just integrated into master:
commit 8f407f695ec9fa2aa52e3685a8f225f03dfecc1d
Author: Jonathan Neuschäfer <j.neuschaefer(a)gmx.net>
Date: Tue Apr 26 16:40:55 2016 +0200
Add board URLs for the RISC-V boards
Change-Id: Ifdf40986c2407d8c5b0097654b42e056f4498d39
Signed-off-by: Jonathan Neuschäfer <j.neuschaefer(a)gmx.net>
Reviewed-on: https://review.coreboot.org/14518
Tested-by: build bot (Jenkins)
Reviewed-by: Martin Roth <martinroth(a)google.com>
See https://review.coreboot.org/14518 for details.
-gerrit
the following patch was just integrated into master:
commit d6d50099e04d3b0840f0736e15d37eecfd9c5261
Author: Jonathan Neuschäfer <j.neuschaefer(a)gmx.net>
Date: Tue Apr 26 16:40:55 2016 +0200
Fix "Spike RISCV" board name
Change-Id: If0f835e69862a78433e7c1a34efa4706cc27b214
Signed-off-by: Jonathan Neuschäfer <j.neuschaefer(a)gmx.net>
Reviewed-on: https://review.coreboot.org/14517
Tested-by: build bot (Jenkins)
Reviewed-by: Martin Roth <martinroth(a)google.com>
See https://review.coreboot.org/14517 for details.
-gerrit
the following patch was just integrated into master:
commit 7611e7e2f197bf2e13652b07020e1e254a396ed2
Author: Werner Zeh <werner.zeh(a)siemens.com>
Date: Thu Apr 28 09:39:34 2016 +0200
fsp_baytrail: Fix missing "$" when using Kconfig switch
To include gfx.c in ramstage, there is a Kconfig option
(FSP_BAYTRAIL_GFX_INIT) which can be activated on demand.
Unfortunately, the "$"-character is missing so that this switch is
never active.
Change-Id: I0c3c562b3caca53ac6510c2c5dc30e7f606f5ad0
Signed-off-by: Werner Zeh <werner.zeh(a)siemens.com>
Reviewed-on: https://review.coreboot.org/14532
Tested-by: build bot (Jenkins)
Reviewed-by: Aaron Durbin <adurbin(a)chromium.org>
See https://review.coreboot.org/14532 for details.
-gerrit
Furquan Shaikh (furquan(a)google.com) just uploaded a new patch set to gerrit, which you can find at https://review.coreboot.org/14533
-gerrit
commit 3f215117fe847eb5e9f5a32c45332be2065e5ae5
Author: Furquan Shaikh <furquan(a)google.com>
Date: Wed Apr 27 22:06:47 2016 -0700
x86/memlayout.h: Do not include data/bss sections in C_ENVIRONMENT_BOOTBLOCK
C_ENVIRONMENT_BOOTBLOCK on x86 is like romstage and uses cache-as-ram
separately. It does not use any data/bss sections.
Change-Id: I8957f467f01e754fa2d95783466a01daa6c4e51a
Signed-off-by: Furquan Shaikh <furquan(a)google.com>
---
src/arch/x86/include/arch/memlayout.h | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/src/arch/x86/include/arch/memlayout.h b/src/arch/x86/include/arch/memlayout.h
index 451feb9..840ceb0 100644
--- a/src/arch/x86/include/arch/memlayout.h
+++ b/src/arch/x86/include/arch/memlayout.h
@@ -18,7 +18,7 @@
#include <rules.h>
-#if ENV_ROMSTAGE || ENV_VERSTAGE
+#if ENV_BOOTBLOCK || ENV_ROMSTAGE || ENV_VERSTAGE
/* No .data or .bss sections. Cache as ram is handled separately. */
#define ARCH_STAGE_HAS_DATA_SECTION 0
#define ARCH_STAGE_HAS_BSS_SECTION 0