aboutsummaryrefslogtreecommitdiff
path: root/src/mainboard/intel/tglrvp/variants
diff options
context:
space:
mode:
authorSrinidhi N Kaushik <srinidhi.n.kaushik@intel.com>2020-03-06 16:46:39 -0800
committerPatrick Georgi <pgeorgi@google.com>2020-03-09 08:08:26 +0000
commit9900cf80091ad1796c78c04b6ef6302410444480 (patch)
tree9b67ea743db43287125b5635c0d85fafa2250645 /src/mainboard/intel/tglrvp/variants
parent7e303581bcda7d7a4a90d75a9b6f6698d55287ce (diff)
mb/intel/tglrvp: Add memory config for Tiger Lake UP4
Add LPDDR4 memory configuration for Tiger Lake UP4 platform which includes 1. DQ/DQs Mapping 2. Board id Support 3. SPD indexing BUG=none BRANCH=none TEST= Build TGL UP4 successfully Signed-off-by: Srinidhi N Kaushik <srinidhi.n.kaushik@intel.com> Change-Id: Ibbd7036919c1a91ef12049d2af657f0a3597b57e Reviewed-on: https://review.coreboot.org/c/coreboot/+/39365 Reviewed-by: Nick Vaccaro <nvaccaro@google.com> Reviewed-by: Wonkyu Kim <wonkyu.kim@intel.com> Tested-by: build bot (Jenkins) <no-reply@coreboot.org>
Diffstat (limited to 'src/mainboard/intel/tglrvp/variants')
-rw-r--r--src/mainboard/intel/tglrvp/variants/tglrvp_up4/memory.c34
1 files changed, 17 insertions, 17 deletions
diff --git a/src/mainboard/intel/tglrvp/variants/tglrvp_up4/memory.c b/src/mainboard/intel/tglrvp/variants/tglrvp_up4/memory.c
index 67979b649b..f3a8a48d45 100644
--- a/src/mainboard/intel/tglrvp/variants/tglrvp_up4/memory.c
+++ b/src/mainboard/intel/tglrvp/variants/tglrvp_up4/memory.c
@@ -25,28 +25,28 @@ size_t __weak variant_memory_sku(void)
static const struct mb_lpddr4x_cfg mem_config = {
/* DQ byte map */
.dq_map = {
- { 0, 1, 6, 7, 3, 2, 5, 4, /* Byte 0 */
- 15, 8, 9, 14, 12, 11, 10, 13 }, /* Byte 1 */
- { 11, 12, 8, 15, 9, 14, 10, 13, /* Byte 2 */
- 3, 4, 7, 0, 6, 1, 5, 2 }, /* Byte 3 */
- { 4, 5, 3, 2, 7, 1, 0, 6, /* Byte 4 */
- 11, 10, 12, 13, 8, 9, 14, 15 }, /* Byte 5 */
- { 12, 11, 8, 13, 14, 15, 9, 10, /* Byte 6 */
- 4, 7, 3, 2, 1, 6, 0, 5 }, /* Byte 7 */
- { 11, 10, 9, 8, 12, 13, 15, 14, /* Byte 0 */
- 4, 5, 6, 7, 3, 2, 0, 1 }, /* Byte 1 */
- { 0, 7, 1, 6, 3, 5, 2, 4, /* Byte 2 */
- 9, 8, 10, 11, 14, 15, 13, 12 }, /* Byte 3 */
- { 4, 5, 6, 1, 3, 2, 7, 0, /* Byte 4 */
- 10, 13, 12, 11, 14, 9, 15, 8 }, /* Byte 5 */
- { 10, 12, 9, 15, 8, 11, 13, 14, /* Byte 6 */
- 3, 4, 1, 2, 6, 0, 5, 7 } /* Byte 7 */
+ { 8, 9, 12, 11, 13, 15, 10, 14, /* Byte 0 */
+ 4, 6, 0, 2, 5, 7, 1, 3 }, /* Byte 1 */
+ { 2, 3, 0, 6, 1, 7, 5, 4, /* Byte 2 */
+ 15, 14, 13, 8, 12, 11, 9, 10 }, /* Byte 3 */
+ { 1, 0, 3, 2, 5, 4, 7, 6, /* Byte 4 */
+ 14, 15, 12, 13, 8, 10, 9, 11 }, /* Byte 5 */
+ { 8, 10, 11, 9, 15, 12, 14, 13, /* Byte 6 */
+ 4, 7, 6, 5, 2, 0, 1, 3 }, /* Byte 7 */
+ { 8, 9, 10, 11, 13, 12, 15, 14, /* Byte 0 */
+ 7, 6, 4, 5, 0, 2, 1, 3 }, /* Byte 1 */
+ { 1, 3, 0, 2, 6, 4, 5, 7, /* Byte 2 */
+ 14, 15, 10, 12, 8, 13, 11, 9 }, /* Byte 3 */
+ { 1, 0, 2, 4, 5, 3, 7, 6, /* Byte 4 */
+ 12, 14, 15, 13, 9, 10, 8, 11 }, /* Byte 5 */
+ { 11, 9, 8, 13, 12, 14, 15, 10, /* Byte 6 */
+ 4, 7, 5, 1, 2, 6, 3, 0 } /* Byte 7 */
},
/* DQS CPU<>DRAM map */
.dqs_map = {
/* Ch 0 1 2 3 */
- { 0, 1 }, { 1, 0 }, { 0, 1 }, { 1, 0 },
+ { 1, 0 }, { 0, 1 }, { 0, 1 }, { 1, 0 },
{ 1, 0 }, { 0, 1 }, { 0, 1 }, { 1, 0 }
},