mb/google/dedede/var/beadrix: Correct memory settings
Based on the beadrix's schematic, generate memory settings. BUG=b:204882915, b:210123929 BRANCH=None TEST=Built test coreboot image Signed-off-by: Teddy Shih <teddyshih@ami.corp-partner.google.com> Change-Id: I935581fbf21be4820b03a608ea5bd60b1c000baa Reviewed-on: https://review.coreboot.org/c/coreboot/+/60244 Reviewed-by: Karthik Ramasubramanian <kramasub@google.com> Tested-by: build bot (Jenkins) <no-reply@coreboot.org>
This commit is contained in:
@@ -0,0 +1,3 @@
|
||||
## SPDX-License-Identifier: GPL-2.0-or-later
|
||||
|
||||
romstage-y += memory.c
|
48
src/mainboard/google/dedede/variants/beadrix/memory.c
Normal file
48
src/mainboard/google/dedede/variants/beadrix/memory.c
Normal file
@@ -0,0 +1,48 @@
|
||||
/* SPDX-License-Identifier: GPL-2.0-or-later */
|
||||
|
||||
#include <baseboard/variants.h>
|
||||
#include <baseboard/gpio.h>
|
||||
#include <gpio.h>
|
||||
#include <soc/meminit.h>
|
||||
#include <soc/romstage.h>
|
||||
|
||||
static const struct mb_cfg board_memcfg_cfg = {
|
||||
|
||||
.dq_map[DDR_CH0] = {
|
||||
{0xf, 0xf0},
|
||||
{0xf, 0xf0},
|
||||
{0xff, 0x0},
|
||||
{0x0, 0x0},
|
||||
{0x0, 0x0},
|
||||
{0x0, 0x0}
|
||||
},
|
||||
.dq_map[DDR_CH1] = {
|
||||
{0xf, 0xf0},
|
||||
{0xf, 0xf0},
|
||||
{0xff, 0x0},
|
||||
{0x0, 0x0},
|
||||
{0x00, 0x0},
|
||||
{0x00, 0x0}
|
||||
},
|
||||
|
||||
/*
|
||||
* The dqs_map arrays map the ddr4 pins to the SoC pins
|
||||
* for both channels.
|
||||
*
|
||||
* the index = pin number on SoC
|
||||
* the value = pin number on LPDDR4 part
|
||||
*/
|
||||
.dqs_map[DDR_CH0] = {0, 3, 2, 1, 7, 5, 4, 6},
|
||||
.dqs_map[DDR_CH1] = {3, 1, 2, 0, 4, 7, 6, 5},
|
||||
|
||||
/* Disable Early Command Training */
|
||||
.ect = 1,
|
||||
|
||||
/* User Board Type */
|
||||
.UserBd = BOARD_TYPE_MOBILE,
|
||||
};
|
||||
|
||||
const struct mb_cfg *variant_memcfg_config(void)
|
||||
{
|
||||
return &board_memcfg_cfg;
|
||||
}
|
Reference in New Issue
Block a user