blob: 14e81fe2fecd99ed7631c51e3dfc8d58bdfdfac4 [file] [log] [blame]
/* SPDX-License-Identifier: GPL-2.0-only */
#include <soc/meminit.h>
#include <variant/romstage.h>
void variant_configure_fspm(FSPM_UPD *memupd)
{
const struct mb_cfg board_cfg = {
.type = MEM_TYPE_DDR4,
};
const struct mem_spd spd_info = {
.topo = MEM_TOPO_MIXED,
.cbfs_index = 0,
.smbus[1] = { .addr_dimm[0] = 0x52, },
};
const bool half_populated = false;
memcfg_init(memupd, &board_cfg, &spd_info, half_populated);
}