coreboot
coreboot is an Open Source project aimed at replacing the proprietary BIOS found in most computers.
variants.h
Go to the documentation of this file.
1 /* SPDX-License-Identifier: GPL-2.0-only */
2 
3 #ifndef BASEBOARD_VARIANTS_H
4 #define BASEBOARD_VARIANTS_H
5 
6 #include <fsp/api.h>
7 #include <soc/cnl_memcfg_init.h>
8 
9 void variant_mainboard_post_init_params(FSPM_UPD *mupd);
10 
11 /* Return board specific memory configuration */
12 const struct cnl_mb_cfg *get_variant_memory_cfg(struct cnl_mb_cfg *mem_cfg);
13 
14 #endif /* BASEBOARD_VARIANTS_H */
void variant_mainboard_post_init_params(FSPM_UPD *mupd)
Definition: gpio.c:259
const struct cnl_mb_cfg * get_variant_memory_cfg(struct cnl_mb_cfg *mem_cfg)
Definition: memory.c:17