summaryrefslogtreecommitdiffstats
path: root/src/mainboard/google/dragonegg/romstage_fsp_params.c
blob: 575e89dbe14f057f88290b3a950a349a683f8e36 (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
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
/* SPDX-License-Identifier: GPL-2.0-only */
/* This file is part of the coreboot project. */

#include <assert.h>
#include <baseboard/variants.h>
#include <cbfs.h>
#include <console/console.h>
#include <soc/romstage.h>

static uintptr_t mainboard_get_spd_data(void)
{
	char *spd_file;
	size_t spd_file_len;
	int spd_index;
	const size_t spd_len = CONFIG_DIMM_SPD_SIZE;
	const char *spd_bin = "spd.bin";

	spd_index = variant_memory_sku();
	assert(spd_index >= 0);
	printk(BIOS_INFO, "SPD index %d\n", spd_index);

	/* Load SPD data from CBFS */
	spd_file = cbfs_boot_map_with_leak(spd_bin, CBFS_TYPE_SPD,
					   &spd_file_len);
	if (!spd_file)
		die("SPD data not found.");

	/* make sure we have at least one SPD in the file. */
	if (spd_file_len < spd_len)
		die("Missing SPD data.");

	/* Make sure we did not overrun the buffer */
	if (spd_file_len < ((spd_index + 1) * spd_len))
		die("Invalid SPD index.");

	spd_index *= spd_len;

	return (uintptr_t)(spd_file + spd_index);
}

void mainboard_memory_init_params(FSPM_UPD *mupd)
{
	FSP_M_CONFIG *mem_cfg = &mupd->FspmConfig;
	struct lpddr4_config mem_params;

	memset(&mem_params, 0, sizeof(mem_params));
	variant_memory_params(&mem_params);

	if (mem_params.dq_map && mem_params.dq_map_size)
		memcpy(&mem_cfg->DqByteMapCh0, mem_params.dq_map,
				mem_params.dq_map_size);

	if (mem_params.dqs_map && mem_params.dqs_map_size)
		memcpy(&mem_cfg->DqsMapCpu2DramCh0, mem_params.dqs_map,
				mem_params.dqs_map_size);

	memcpy(&mem_cfg->RcompResistor, mem_params.rcomp_resistor,
		mem_params.rcomp_resistor_size);

	memcpy(&mem_cfg->RcompTarget, mem_params.rcomp_target,
			mem_params.rcomp_target_size);

	mem_cfg->MemorySpdPtr00 = mainboard_get_spd_data();
	mem_cfg->MemorySpdPtr10 = mem_cfg->MemorySpdPtr00;
	mem_cfg->MemorySpdDataLen = CONFIG_DIMM_SPD_SIZE;
	mem_cfg->DqPinsInterleaved = 0;
	mem_cfg->CaVrefConfig = 0x2;
	mem_cfg->ECT = 1; /* Early Command Training Enabled */
	mem_cfg->RefClk = 0; /* Auto Select CLK freq */
	mem_cfg->SpdAddressTable[0] = 0x0;
	mem_cfg->SpdAddressTable[1] = 0x0;
	mem_cfg->SpdAddressTable[2] = 0x0;
	mem_cfg->SpdAddressTable[3] = 0x0;
}