blob: 9efcb32daeed94f1c7b17b099f681c39218a0a16 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
|
/* SPDX-License-Identifier: GPL-2.0-only */
#include <boardid.h>
#include <cbfs.h>
#include <console/console.h>
#include <soc/dramc_param.h>
static const char *const sdram_configs[] = {
[0] = "sdram-lpddr4x-MT29VZZZBD9DQKPR-046-6GB",
[1] = "sdram-lpddr4x-MT29VZZZAD8GQFSL-046-4GB",
};
static struct sdram_info params;
const struct sdram_info *get_sdram_config(void)
{
uint32_t ramcode = ram_code();
if (ramcode >= ARRAY_SIZE(sdram_configs) ||
cbfs_boot_load_file(sdram_configs[ramcode], ¶ms, sizeof(params),
CBFS_TYPE_STRUCT) != sizeof(params))
die("Cannot load SDRAM parameter file for RAM code: %#x", ramcode);
return ¶ms;
}
|