summaryrefslogtreecommitdiffstats
path: root/src/mainboard/google/kukui/sdram_configs.c
blob: 73bd2f83fa3d88ca303d4686ed893476dd12d772 (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
26
27
28
29
30
31
32
/* SPDX-License-Identifier: GPL-2.0-only */
/* This file is part of the coreboot project. */

#include <boardid.h>
#include <cbfs.h>
#include <console/console.h>
#include <soc/emi.h>

static const char *const sdram_configs[] = {
	[1] = "sdram-lpddr4x-H9HCNNNCPMALHR-4GB",
	[2] = "sdram-lpddr4x-MT53E1G32D4NQ-4GB",
	[3] = "sdram-lpddr4x-KMDH6001DA-B422-4GB",
	[4] = "sdram-lpddr4x-KMDP6001DA-B425-4GB",
	[5] = "sdram-lpddr4x-MT29VZZZAD8DQKSL-4GB",
	[6] = "sdram-lpddr4x-KMDV6001DA-B620-4GB",
	[7] = "sdram-lpddr4x-SDADA4CR-128G-4GB",
	[8] = "sdram-lpddr4x-K4UBE3D4AA-MGCL-4GB",
};

static struct sdram_params params;

const struct sdram_params *get_sdram_config(void)
{
	uint32_t ramcode = ram_code();

	if (ramcode >= ARRAY_SIZE(sdram_configs) ||
	    cbfs_boot_load_file(sdram_configs[ramcode], &params, sizeof(params),
				CBFS_TYPE_STRUCT) != sizeof(params))
		die("Cannot load SDRAM parameter file!");

	return &params;
}