1 /* SPDX-License-Identifier: GPL-2.0-or-later */
3 #include <baseboard/variants.h>
4 #include <baseboard/gpio.h>
6 #include <soc/meminit.h>
7 #include <soc/romstage.h>
9 static const struct mb_cfg board_memcfg_cfg
= {
28 * The dqs_map arrays map the ddr4 pins to the SoC pins
31 * the index = pin number on SoC
32 * the value = pin number on LPDDR4 part
34 .dqs_map
[DDR_CH0
] = {0, 3, 2, 1, 7, 5, 4, 6},
35 .dqs_map
[DDR_CH1
] = {3, 1, 2, 0, 4, 7, 6, 5},
37 /* Disable Early Command Training */
41 .UserBd
= BOARD_TYPE_MOBILE
,
44 const struct mb_cfg
*variant_memcfg_config(void)
46 return &board_memcfg_cfg
;