Patrick Rudolph has posted comments on this change. ( https://review.coreboot.org/18564 )
Change subject: mainboard: Add Sapphire Pure Platinum H61
......................................................................
Patch Set 13: Code-Review+1
Please provide raminit logs for both failing and working case. Did you try the pending ivybridge raminit patches? They might increase raminit stability.
--
To view, visit https://review.coreboot.org/18564
To unsubscribe, visit https://review.coreboot.org/settings
Gerrit-MessageType: comment
Gerrit-Change-Id: I76aca2cfc4708c1728ae03ee4f6bc59d976c28a0
Gerrit-PatchSet: 13
Gerrit-Project: coreboot
Gerrit-Branch: master
Gerrit-Owner: Nicola Corna <nicola(a)corna.info>
Gerrit-Reviewer: Arthur Heymans <arthur(a)aheymans.xyz>
Gerrit-Reviewer: Felix Held <felix-coreboot(a)felixheld.de>
Gerrit-Reviewer: Martin Roth <martinroth(a)google.com>
Gerrit-Reviewer: Nicola Corna <nicola(a)corna.info>
Gerrit-Reviewer: Patrick Rudolph <siro(a)das-labor.org>
Gerrit-Reviewer: Paul Menzel <paulepanter(a)users.sourceforge.net>
Gerrit-Reviewer: build bot (Jenkins)
Gerrit-HasComments: No
Hello build bot (Jenkins), Martin Roth,
I'd like you to reexamine a change. Please visit
https://review.coreboot.org/18988
to look at the new patch set (#2).
Change subject: HOLD 3rdparty/blobs: Update for AMD Stoney Ridge
......................................................................
HOLD 3rdparty/blobs: Update for AMD Stoney Ridge
Add the binaryPI file for the FT4 package and add SMU firmware to
be consumed by fanless OPNs.
Change-Id: I1c9b5ded6b494fac1553cc2ec7756a7a47386ecf
Signed-off-by: Marshall Dawson <marshalldawson3rd(a)gmail.com>
---
M 3rdparty/blobs
1 file changed, 1 insertion(+), 1 deletion(-)
git pull ssh://review.coreboot.org:29418/coreboot refs/changes/88/18988/2
--
To view, visit https://review.coreboot.org/18988
To unsubscribe, visit https://review.coreboot.org/settings
Gerrit-MessageType: newpatchset
Gerrit-Change-Id: I1c9b5ded6b494fac1553cc2ec7756a7a47386ecf
Gerrit-PatchSet: 2
Gerrit-Project: coreboot
Gerrit-Branch: master
Gerrit-Owner: Marshall Dawson <marshalldawson3rd(a)gmail.com>
Gerrit-Reviewer: Martin Roth <martinroth(a)google.com>
Gerrit-Reviewer: build bot (Jenkins)
Martin Roth has posted comments on this change. ( https://review.coreboot.org/18988 )
Change subject: HOLD 3rdparty/blobs: Update for AMD Stoney Ridge
......................................................................
Patch Set 1:
Is this trying to update the blobs tree after the new blobs are merged? I think that's confusing the builder because it can't actually pull them yet.
--
To view, visit https://review.coreboot.org/18988
To unsubscribe, visit https://review.coreboot.org/settings
Gerrit-MessageType: comment
Gerrit-Change-Id: I1c9b5ded6b494fac1553cc2ec7756a7a47386ecf
Gerrit-PatchSet: 1
Gerrit-Project: coreboot
Gerrit-Branch: master
Gerrit-Owner: Marshall Dawson <marshalldawson3rd(a)gmail.com>
Gerrit-Reviewer: Martin Roth <martinroth(a)google.com>
Gerrit-Reviewer: build bot (Jenkins)
Gerrit-HasComments: No
Martin Roth has submitted this change and it was merged. ( https://review.coreboot.org/18974 )
Change subject: mb/lenovo/s230u: Fix USBDEBUG check
......................................................................
mb/lenovo/s230u: Fix USBDEBUG check
- Change preprocessor #if to standard C if. This will get optimized
out if the config option is disabled, but lets the compiler check the
contents.
- CONFIG_USBDEBUG is always going to be defined even if it's disabled,
so this check is not going to work as expected.
See the coreboot Kconfig documentation in /Documentation/core/Kconfig.md
Change-Id: Ia63438d9525e79307d9229ad3ffa2962978611d8
Signed-off-by: Martin Roth <martinroth(a)google.com>
Reviewed-on: https://review.coreboot.org/18974
Reviewed-by: Patrick Georgi <pgeorgi(a)google.com>
Reviewed-by: Philippe Mathieu-Daudé <philippe.mathieu.daude(a)gmail.com>
Tested-by: build bot (Jenkins)
---
M src/mainboard/lenovo/s230u/romstage.c
1 file changed, 2 insertions(+), 3 deletions(-)
Approvals:
Philippe Mathieu-Daudé: Looks good to me, but someone else must approve
build bot (Jenkins): Verified
Patrick Georgi: Looks good to me, approved
diff --git a/src/mainboard/lenovo/s230u/romstage.c b/src/mainboard/lenovo/s230u/romstage.c
index ce75165..ad5f021 100644
--- a/src/mainboard/lenovo/s230u/romstage.c
+++ b/src/mainboard/lenovo/s230u/romstage.c
@@ -51,10 +51,9 @@
CONFIG_EC_BASE_ADDRESS | 1);
pci_write_config16(PCI_DEV(0, 0x1f, 0), 0xd8, 0xffc0);
- #ifdef CONFIG_USBDEBUG
/* Enable external USB port power. */
- ec_mm_set_bit(0x3b, 4);
- #endif
+ if (IS_ENABLED(CONFIG_USBDEBUG))
+ ec_mm_set_bit(0x3b, 4);
}
void rcba_config(void)
--
To view, visit https://review.coreboot.org/18974
To unsubscribe, visit https://review.coreboot.org/settings
Gerrit-MessageType: merged
Gerrit-Change-Id: Ia63438d9525e79307d9229ad3ffa2962978611d8
Gerrit-PatchSet: 3
Gerrit-Project: coreboot
Gerrit-Branch: master
Gerrit-Owner: Martin Roth <martinroth(a)google.com>
Gerrit-Reviewer: Martin Roth <martinroth(a)google.com>
Gerrit-Reviewer: Patrick Georgi <pgeorgi(a)google.com>
Gerrit-Reviewer: Philippe Mathieu-Daudé <philippe.mathieu.daude(a)gmail.com>
Gerrit-Reviewer: build bot (Jenkins)