the following patch was just integrated into master:
commit f961becc433bf23fc8744fdfd757f0cdb75c2c62
Author: Timothy Pearson <tpearson(a)raptorengineeringinc.com>
Date: Tue Mar 29 13:17:02 2016 -0500
nb/amd/mct_ddr3: Enable DIMM parity when RDIMMs installed
This resolves a long-standing issue with RDIMM control word
configuration failure, likely due to random parity failure.
Change-Id: If8b8dc5b8b99f4c2fe29b3a133b064631e4693be
Signed-off-by: Timothy Pearson <tpearson(a)raptorengineeringinc.com>
Reviewed-on: https://review.coreboot.org/14184
Tested-by: build bot (Jenkins)
Tested-by: Raptor Engineering Automated Test Stand <noreply(a)raptorengineeringinc.com>
Reviewed-by: Martin Roth <martinroth(a)google.com>
See https://review.coreboot.org/14184 for details.
-gerrit
Martin Roth (martinroth(a)google.com) just uploaded a new patch set to gerrit, which you can find at https://review.coreboot.org/14190
-gerrit
commit ca2ce7c62185af53ae139cb6b924703da06a4945
Author: Martin Roth <martinroth(a)google.com>
Date: Wed Mar 30 10:53:35 2016 -0600
do not submit: jenkins test 2
Change-Id: I3e5fb3bd1bbb4b9ac0ec40ef2720cd485108477f
Signed-off-by: Martin Roth <martinroth(a)google.com>
---
src/mainboard/google/storm/romstage.c | 1 +
1 file changed, 1 insertion(+)
diff --git a/src/mainboard/google/storm/romstage.c b/src/mainboard/google/storm/romstage.c
index efebc95..9b50072 100644
--- a/src/mainboard/google/storm/romstage.c
+++ b/src/mainboard/google/storm/romstage.c
@@ -23,6 +23,7 @@
void main(void)
{
THIS WILL BREAK THE BUILDS
+ SO WILL THIS.
console_init();
initialize_dram();
Martin Roth (martinroth(a)google.com) just uploaded a new patch set to gerrit, which you can find at https://review.coreboot.org/14189
-gerrit
commit 6d317b8a5150fa5e3ad766b98788f871912c1037
Author: Martin Roth <martinroth(a)google.com>
Date: Wed Mar 30 10:23:57 2016 -0600
do not submit - jenkins test
Change-Id: I57346486d1b543fae293655950c6a29da11b7032
Signed-off-by: Martin Roth <martinroth(a)google.com>
---
src/mainboard/google/storm/romstage.c | 2 ++
1 file changed, 2 insertions(+)
diff --git a/src/mainboard/google/storm/romstage.c b/src/mainboard/google/storm/romstage.c
index c1b8654..efebc95 100644
--- a/src/mainboard/google/storm/romstage.c
+++ b/src/mainboard/google/storm/romstage.c
@@ -22,6 +22,8 @@
void main(void)
{
+ THIS WILL BREAK THE BUILDS
+
console_init();
initialize_dram();
the following patch was just integrated into master:
commit 33aaa921f7538761816900652e186b610d2ab35b
Author: Damien Zammit <damien(a)zamaudio.com>
Date: Wed Feb 10 14:01:36 2016 +1100
northbridge/amd/amdfam10: Add family15h model10h-1fh (Trinity)
Change-Id: I96d695ed10176276116fcf3a2b77605fb3f2d5db
Signed-off-by: Damien Zammit <damien(a)zamaudio.com>
Reviewed-on: https://review.coreboot.org/13710
Tested-by: build bot (Jenkins)
Tested-by: Raptor Engineering Automated Test Stand <noreply(a)raptorengineeringinc.com>
Reviewed-by: Martin Roth <martinroth(a)google.com>
See https://review.coreboot.org/13710 for details.
-gerrit
the following patch was just integrated into master:
commit 27e085a8eea7f34ed4987b83c513d2f1818b33a1
Author: Patrick Rudolph <siro(a)das-labor.org>
Date: Sat Mar 26 10:59:02 2016 +0100
nb/intel/sandybridge/raminit: move ram training into seperate function
In order to add a fallback mechanism, move the ram training code
into a new function. This function will be called multiple times
and must return error or success to the calling function.
Change-Id: I5ee1b3a528290d8252d236b9152b81291736958a
Signed-off-by: Patrick Rudolph <siro(a)das-labor.org>
Reviewed-on: https://review.coreboot.org/14169
Tested-by: build bot (Jenkins)
Reviewed-by: Martin Roth <martinroth(a)google.com>
See https://review.coreboot.org/14169 for details.
-gerrit
Christopher Spinrath (christopher.spinrath(a)rwth-aachen.de) just uploaded a new patch set to gerrit, which you can find at https://review.coreboot.org/14183
-gerrit
commit 2f85bbb47aedff1b35494c29493c5b3ac92d3c0d
Author: Christopher Spinrath <christopher.spinrath(a)rwth-aachen.de>
Date: Thu Mar 24 20:45:13 2016 +0100
ec/lenovo/h8: do not reset volume on s3 wakeup
On s3 wakeup h8_enable is called which resets the (audio) volume. But the
volume should be the same as before the s3 state. In particular, userland
programs (e.g. pulseaudio) may be out of sync, if the volume can be changed
by hardware buttons also emitting acpi events. Hence, do not reset the
volume on s3 wakeup.
Tested on a Lenovo ThinkPad X220.
Change-Id: I2af08dea1a3f14a40734d67d372e845cc18c5e09
Signed-off-by: Christopher Spinrath <christopher.spinrath(a)rwth-aachen.de>
---
src/ec/lenovo/h8/h8.c | 3 ++-
1 file changed, 2 insertions(+), 1 deletion(-)
diff --git a/src/ec/lenovo/h8/h8.c b/src/ec/lenovo/h8/h8.c
index 4f882c1..943bdd4 100644
--- a/src/ec/lenovo/h8/h8.c
+++ b/src/ec/lenovo/h8/h8.c
@@ -13,6 +13,7 @@
* GNU General Public License for more details.
*/
+#include <arch/acpi.h>
#include <arch/io.h>
#include <console/console.h>
#include <device/device.h>
@@ -258,7 +259,7 @@ static void h8_enable(struct device *dev)
h8_trackpoint_enable(1);
h8_usb_power_enable(1);
- if (get_option(&val, "volume") == CB_SUCCESS)
+ if (get_option(&val, "volume") == CB_SUCCESS && !acpi_is_wakeup_s3())
ec_write(H8_VOLUME_CONTROL, val);
if (get_option(&val, "bluetooth") != CB_SUCCESS)