commit | 4a86b3b0368c6955d791a8a4d57da3741712b01e | [log] [tgz] |
---|---|---|
author | Nico Huber <nico.h@gmx.de> | Sun Aug 11 16:28:05 2019 +0200 |
committer | Patrick Georgi <pgeorgi@google.com> | Mon Aug 26 07:12:13 2019 +0000 |
tree | f6948393a3f49f2983a5e678fe74da6c75c46f6a | |
parent | c99d3afe3e78565937c215f882bd4b7fc586f66e [diff] |
nb/intel/gm45: Call ddr3_calibrate_zq() only for DDR3 :) Change-Id: I7d00ddf727e7250b767a1c4b58bf11b17e900fc1 Signed-off-by: Nico Huber <nico.h@gmx.de> Reviewed-on: https://review.coreboot.org/c/coreboot/+/34828 Reviewed-by: Angel Pons <th3fanbus@gmail.com> Tested-by: build bot (Jenkins) <no-reply@coreboot.org>
diff --git a/src/northbridge/intel/gm45/raminit.c b/src/northbridge/intel/gm45/raminit.c index b7ccdec..7a30b76 100644 --- a/src/northbridge/intel/gm45/raminit.c +++ b/src/northbridge/intel/gm45/raminit.c
@@ -1799,7 +1799,8 @@ /* Perform ZQ calibration for DDR3. */ - ddr3_calibrate_zq(); + if (sysinfo->spd_type == DDR3) + ddr3_calibrate_zq(); /* Perform receive-enable calibration. */ raminit_receive_enable_calibration(timings, dimms);