coreboot
coreboot is an Open Source project aimed at replacing the proprietary BIOS found in most computers.
romstage.c
Go to the documentation of this file.
1 /* SPDX-License-Identifier: GPL-2.0-only */
2 
3 #include <baseboard/variants.h>
4 #include <soc/cnl_memcfg_init.h>
5 #include <soc/romstage.h>
6 
7 void mainboard_memory_init_params(FSPM_UPD *memupd)
8 {
9  cannonlake_memcfg_init(&memupd->FspmConfig, variant_memcfg_config());
10 }
void cannonlake_memcfg_init(FSP_M_CONFIG *mem_cfg, const struct cnl_mb_cfg *cnl_cfg)
const struct mb_cfg * variant_memcfg_config(void)
Definition: memory.c:46
void mainboard_memory_init_params(FSPM_UPD *mupd)
Definition: romstage.c:22