blob: f565f53f8288d48c6045e07e631d37fbd7e20749 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
|
/* SPDX-License-Identifier: GPL-2.0-only */
#include <soc/dramc_param.h>
const struct sdram_info *get_sdram_config(void)
{
/*
* The MT8186 platform supports "dram adaptive" feature to
* automatically detect dram information, including channel, rank, die size...,
* and can automatically configure EMI settings.
* So we will be passing a placeholder param blob.
*/
static struct sdram_info params;
return ¶ms;
}
|