coreboot
coreboot is an Open Source project aimed at replacing the proprietary BIOS found in most computers.
sdram_configs.c
Go to the documentation of this file.
1 /* SPDX-License-Identifier: GPL-2.0-only */
2 
3 #include <soc/dramc_param.h>
4 
5 const struct sdram_info *get_sdram_config(void)
6 {
7  /*
8  * The MT8195 platform supports "dram adaptive" feature to
9  * automatically detect dram information, including channel, rank, die size...,
10  * and can automatically configure EMI settings.
11  * So we will be passing a placeholder param blob.
12  */
13  static struct sdram_info params;
14  return &params;
15 }
const struct sdram_info * get_sdram_config(void)
Definition: sdram_configs.c:85
static struct sdram_params params
Definition: sdram_configs.c:77