Marc Jones has posted comments on this change. ( https://review.coreboot.org/22568 )
Change subject: amd/stoneyridge: Transfer functions from early_setup.c to southbridge.c
......................................................................
Patch Set 1:
This should be two patches. One for the transfer and one for new functions.
--
To view, visit https://review.coreboot.org/22568
To unsubscribe, visit https://review.coreboot.org/settings
Gerrit-Project: coreboot
Gerrit-Branch: master
Gerrit-MessageType: comment
Gerrit-Change-Id: Ibe1d87cb3e0eb3e8ed4d2dc2adbddf2e13557c9e
Gerrit-Change-Number: 22568
Gerrit-PatchSet: 1
Gerrit-Owner: Richard Spiegel <richard.spiegel(a)silverbackltd.com>
Gerrit-Reviewer: Marc Jones <marc(a)marcjonesconsulting.com>
Gerrit-Reviewer: build bot (Jenkins) <no-reply(a)coreboot.org>
Gerrit-Comment-Date: Thu, 23 Nov 2017 00:40:05 +0000
Gerrit-HasComments: No
Marc Jones has uploaded this change for review. ( https://review.coreboot.org/22575
Change subject: lib/spd_bin: Only build when CONFIG option is set
......................................................................
lib/spd_bin: Only build when CONFIG option is set
Only build spd_bin.c when GENERIC_SPD_BIN is selected. This issue
was found by Coverity scan, which fails 10 test when the dependent
MAX_DIMMS KCONFIG option is not built.
BUG=b:69669995
TEST=Build test.
Change-Id: I97a4d810199c96912d13737046e6041b74315164
Signed-off-by: Marc Jones <marcj303(a)gmail.com>
---
M src/lib/Makefile.inc
1 file changed, 2 insertions(+), 1 deletion(-)
git pull ssh://review.coreboot.org:29418/coreboot refs/changes/75/22575/1
diff --git a/src/lib/Makefile.inc b/src/lib/Makefile.inc
index 25537d2..a041b32 100644
--- a/src/lib/Makefile.inc
+++ b/src/lib/Makefile.inc
@@ -309,9 +309,10 @@
endif # CONFIG_RAMSTAGE_LIBHWBASE
-romstage-y += spd_bin.c
ifeq ($(CONFIG_GENERIC_SPD_BIN),y)
+romstage-y += spd_bin.c
+
LIB_SPD_BIN = $(obj)/spd.bin
LIB_SPD_DEPS = $(foreach f, $(SPD_SOURCES), src/mainboard/$(MAINBOARDDIR)/spd/$(f).spd.hex)
--
To view, visit https://review.coreboot.org/22575
To unsubscribe, visit https://review.coreboot.org/settings
Gerrit-Project: coreboot
Gerrit-Branch: master
Gerrit-MessageType: newchange
Gerrit-Change-Id: I97a4d810199c96912d13737046e6041b74315164
Gerrit-Change-Number: 22575
Gerrit-PatchSet: 1
Gerrit-Owner: Marc Jones <marc(a)marcjonesconsulting.com>
Martin Roth has posted comments on this change. ( https://review.coreboot.org/22569 )
Change subject: amd/stoneyridge: Delete early_setup.c
......................................................................
Patch Set 1:
(1 comment)
https://review.coreboot.org/#/c/22569/1/src/mainboard/google/kahlee/ec.c
File src/mainboard/google/kahlee/ec.c:
https://review.coreboot.org/#/c/22569/1/src/mainboard/google/kahlee/ec.c@55
PS1, Line 55: printk(BIOS_DEBUG, "Failed to assign a range\n");
What's the impact of a failure here? Should this maybe be a higher debug level than BIOS_DEBUG?
printk(BIOS_WARNING, "ERROR: Failed to assign a range\n");
die("ERROR: Failed to assign a range\n");
--
To view, visit https://review.coreboot.org/22569
To unsubscribe, visit https://review.coreboot.org/settings
Gerrit-Project: coreboot
Gerrit-Branch: master
Gerrit-MessageType: comment
Gerrit-Change-Id: Ibe75a2d5cc46641e9d0af462a8a0ba5bb7a0f9c3
Gerrit-Change-Number: 22569
Gerrit-PatchSet: 1
Gerrit-Owner: Richard Spiegel <richard.spiegel(a)silverbackltd.com>
Gerrit-Reviewer: Martin Roth <martinroth(a)google.com>
Gerrit-Reviewer: build bot (Jenkins) <no-reply(a)coreboot.org>
Gerrit-Comment-Date: Thu, 23 Nov 2017 00:15:04 +0000
Gerrit-HasComments: Yes