the following patch was just integrated into master:
commit 38ab6f2839b9a38fb05f56ae99f535ab3f162681
Author: Kyösti Mälkki <kyosti.malkki(a)gmail.com>
Date: Sat Oct 1 12:54:01 2016 +0300
samsung/lumpy: Swap SPD assignments
On-board memory is on channel 1.
This fixes native raminit with 4GiB SO-DIMM installed.
Change-Id: If1b94e050d7e8d0dbd349c0415a182730aa5fa90
Signed-off-by: Kyösti Mälkki <kyosti.malkki(a)gmail.com>
Reviewed-on: https://review.coreboot.org/16845
Tested-by: build bot (Jenkins)
Reviewed-by: Patrick Rudolph <siro(a)das-labor.org>
Reviewed-by: Paul Menzel <paulepanter(a)users.sourceforge.net>
See https://review.coreboot.org/16845 for details.
-gerrit
Werner Zeh (werner.zeh(a)siemens.com) just uploaded a new patch set to gerrit, which you can find at https://review.coreboot.org/16875
-gerrit
commit 0ff64715f95d38052d2121a65c06b12bf2d71863
Author: Werner Zeh <werner.zeh(a)siemens.com>
Date: Tue Oct 4 11:59:59 2016 +0200
siemens/mc_tcu3: Increase LCD backlight turn-on delay to 500 ms
Due to different LCD panel requirements the delay between LVDS becomes
active and the backlight is switched on needs to be increased to 500 ms.
Change-Id: I09029624469aef412141c7b46224d48557ba4af1
Signed-off-by: Werner Zeh <werner.zeh(a)siemens.com>
---
src/mainboard/siemens/mc_tcu3/ptn3460.c | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/src/mainboard/siemens/mc_tcu3/ptn3460.c b/src/mainboard/siemens/mc_tcu3/ptn3460.c
index 21847bd..bcf8d2c 100644
--- a/src/mainboard/siemens/mc_tcu3/ptn3460.c
+++ b/src/mainboard/siemens/mc_tcu3/ptn3460.c
@@ -80,7 +80,7 @@ int ptn3460_init(char *hwi_block)
cfg.lvds_interface_ctrl2 = 0x03; /* no clock spreading, 300 mV LVDS swing */
cfg.lvds_interface_ctrl3 = 0x00; /* no LVDS signal swap */
cfg.t2_delay = 1; /* Delay T2 (VDD to LVDS active) by 16 ms */
- cfg.t3_timing = 5; /* 250 ms from LVDS to backlight active */
+ cfg.t3_timing = 10; /* 500 ms from LVDS to backlight active */
cfg.t12_timing = 20; /* 1 second re-power delay */
cfg.t4_timing = 3; /* 150 ms backlight off to LVDS inactive */
cfg.t5_delay = 1; /* Delay T5 (LVDS to VDD inactive) by 16 ms */
Anson Tseng (anson.tseng(a)intel.com) just uploaded a new patch set to gerrit, which you can find at https://review.coreboot.org/16874
-gerrit
commit 64c2e4040bedfd2e623b6d6a62b3731cc700b557
Author: Anson Tseng <anson.tseng(a)intel.com>
Date: Tue Oct 4 15:32:55 2016 +0800
Test: Check access of gerrit account
Dummy commit
Change-Id: I9bf54c6f2d2444ac7006712098b5ecb40e940334
Signed-off-by: Anson Tseng <anson.tseng(a)intel.com>
---
src/mainboard/google/reef/variants/test_board1/dummy.txt | 1 +
1 file changed, 1 insertion(+)
diff --git a/src/mainboard/google/reef/variants/test_board1/dummy.txt b/src/mainboard/google/reef/variants/test_board1/dummy.txt
new file mode 100644
index 0000000..589f08e
--- /dev/null
+++ b/src/mainboard/google/reef/variants/test_board1/dummy.txt
@@ -0,0 +1 @@
+Only for the review server account test.
Furquan Shaikh (furquan(a)google.com) just uploaded a new patch set to gerrit, which you can find at https://review.coreboot.org/16871
-gerrit
commit 032ae7efc8944ec28048c62fec36f80b717b158f
Author: Furquan Shaikh <furquan(a)chromium.org>
Date: Mon Oct 3 23:30:14 2016 -0700
x86/acpi_device: Fix writing of array property
Array property contains a table type at the start of the list. This
table type is ignored in acpi_dp_write_value however it is counted as an
element in acpi_dp_write_array. This results in wrong number of elements
being passed in Package(xx). In order to fix this, call
acpi_dp_write_array with prop->array->next thus pointing to the first
element whose value is actually written.
BUG=chrome-os-partner:55988
BRANCH=None
TEST=Verified that the correct number of elements are passed for
add_gpio in maxim sdmode-gpio.
Change-Id: I8e1e540d66086971de2edf0bb83494d3b1dbd176
Signed-off-by: Furquan Shaikh <furquan(a)chromium.org>
---
src/arch/x86/acpi_device.c | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/src/arch/x86/acpi_device.c b/src/arch/x86/acpi_device.c
index 2982999..a1b3753 100644
--- a/src/arch/x86/acpi_device.c
+++ b/src/arch/x86/acpi_device.c
@@ -505,7 +505,7 @@ static void acpi_dp_write_value(const struct acpi_dp *prop)
acpigen_emit_namestring(prop->string);
break;
case ACPI_DP_TYPE_ARRAY:
- acpi_dp_write_array(prop->array);
+ acpi_dp_write_array(prop->array->next);
break;
default:
break;