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 <soc/romstage.h>
4 
5 void mainboard_memory_init_params(FSPM_UPD *mupd)
6 {
7  FSP_M_CONFIG *m_cfg = &mupd->FspmConfig;
8 
9  m_cfg->KtiLinkSpeedMode = 0;
10 }
#define FSP_M_CONFIG
Definition: fsp_upd.h:8
void mainboard_memory_init_params(FSPM_UPD *mupd)
Definition: romstage.c:22