summaryrefslogtreecommitdiff
path: root/src/mainboard/google/glados/variants/caroline
diff options
context:
space:
mode:
authorJacob Garber <jgarber1@ualberta.ca>2019-05-29 10:59:30 -0600
committerPatrick Georgi <pgeorgi@google.com>2019-08-20 15:17:08 +0000
commited316bc39cfb1f6dffcc76a245580b43ad5d0225 (patch)
tree4a0fde142d4cf157aeabea04805a2601e24fc9b0 /src/mainboard/google/glados/variants/caroline
parent12ef4f2d7173dc73ec802f6175fa05531a46df00 (diff)
downloadcoreboot-ed316bc39cfb1f6dffcc76a245580b43ad5d0225.tar.xz
mb/google/{eve,glados}: Copy channel arrays separately
DqByteMapCh0 and DqByteMapCh1 are declared adjacently in the FSP_M_CONFIG struct, so it is tempting to begin memcpy at the address of the first array and overwrite both of them at once. However, FSP_M_CONFIG is not declared with the packed attribute, so this is not guaranteed to work and is undefined behaviour to boot. It is cleaner and less tricky to copy them independently. The same is true for DqsMapCpu2DramCh0 and DqsMapCpu2DramCh1, so we change those as well. Change-Id: If394f14c4a39d6787ae31868241229646c26be7a Signed-off-by: Jacob Garber <jgarber1@ualberta.ca> Found-by: Coverity CID 1365730, 14013{38,39,40,42,43} Reviewed-on: https://review.coreboot.org/c/coreboot/+/33066 Tested-by: build bot (Jenkins) <no-reply@coreboot.org> Reviewed-by: Patrick Georgi <pgeorgi@google.com> Reviewed-by: Angel Pons <th3fanbus@gmail.com>
Diffstat (limited to 'src/mainboard/google/glados/variants/caroline')
-rw-r--r--src/mainboard/google/glados/variants/caroline/variant.c12
1 files changed, 8 insertions, 4 deletions
diff --git a/src/mainboard/google/glados/variants/caroline/variant.c b/src/mainboard/google/glados/variants/caroline/variant.c
index d61a538d56..ab6bd2c1bd 100644
--- a/src/mainboard/google/glados/variants/caroline/variant.c
+++ b/src/mainboard/google/glados/variants/caroline/variant.c
@@ -41,10 +41,14 @@ void variant_memory_init_params(
/* Rcomp target */
const u16 RcompTarget[5] = { 100, 40, 40, 23, 40 };
- memcpy(memory_params->DqByteMapCh0, dq_map,
- sizeof(memory_params->DqByteMapCh0) * 2);
- memcpy(memory_params->DqsMapCpu2DramCh0, dqs_map,
- sizeof(memory_params->DqsMapCpu2DramCh0) * 2);
+ memcpy(memory_params->DqByteMapCh0, dq_map[0],
+ sizeof(memory_params->DqByteMapCh0));
+ memcpy(memory_params->DqByteMapCh1, dq_map[1],
+ sizeof(memory_params->DqByteMapCh1));
+ memcpy(memory_params->DqsMapCpu2DramCh0, dqs_map[0],
+ sizeof(memory_params->DqsMapCpu2DramCh0));
+ memcpy(memory_params->DqsMapCpu2DramCh1, dqs_map[1],
+ sizeof(memory_params->DqsMapCpu2DramCh1));
memcpy(memory_params->RcompResistor, RcompResistor,
sizeof(memory_params->RcompResistor));
memcpy(memory_params->RcompTarget, RcompTarget,