blob: b9f5d370a3082fdde1523f9190fa089a855f29ce (
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
|
/* SPDX-License-Identifier: GPL-2.0-only */
#include <console/console.h>
#include <soc/qclib_common.h>
#include <device/mmio.h>
#define LONG_SYS_DCB_REG 0x7801C0
#define FUSE_BIT 15
static int dcb_fuse_longsys1p8(void)
{
unsigned int fuse_value, bit_value;
fuse_value = read32((unsigned int *)LONG_SYS_DCB_REG);
bit_value = (fuse_value >> FUSE_BIT) & 0x1;
return bit_value;
}
const char *qclib_file(enum qclib_cbfs_file file)
{
if ((file == QCLIB_CBFS_DCB) && dcb_fuse_longsys1p8()) {
printk(BIOS_INFO, "Using DCB for Longsys 1.8V memory based on fuse setting\n");
return CONFIG_CBFS_PREFIX "/dcb_longsys1p8";
} else {
return qclib_file_default(file);
}
}
int qclib_soc_override(struct qclib_cb_if_table *table)
{
/* Lazor boards need a hack to limit DDR frequency on certain memory parts to work
around a stability issue. */
if (CONFIG(BOARD_GOOGLE_LAZOR))
table->global_attributes |= QCLIB_GA_DDR_FMAX_LIMIT_HYNIX8GB;
return 0;
}
|