Skip to content

Commit 6982eaf

Browse files
committed
soc/intel/adl: Only use channel 0 for mem-down DDR4
Fixes: c0ba116 ("soc/intel/adl,mtl: Use channel 0 only for memory down in mixed topo") Change-Id: I56e7d51b4a06519376d8fe7a345bb434c6f1a24a Signed-off-by: Tim Crawford <[email protected]>
1 parent 2384747 commit 6982eaf

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/soc/intel/alderlake/meminit.c

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -54,8 +54,8 @@ static const struct soc_mem_cfg soc_mem_cfg[] = {
5454
* configuration.
5555
*/
5656
.half_channel = BIT(0),
57-
/* In mixed topologies, either channel 0 or 1 can be memory-down. */
58-
.mixed_topo = BIT(0) | BIT(1),
57+
/* In mixed topologies, channel 0 is memory-down. */
58+
.mixed_topo = BIT(0),
5959
},
6060
},
6161
[MEM_TYPE_DDR5] = {

0 commit comments

Comments
 (0)