mb/google/brya: Enable DDR4 SODIMM for brask
Enable SMBus to support DDR4 SODIMM for brask. Enable 'smbus' in brask device tree and add SPD addressese for the two DIMMs. Separate the Kconfig items of brya and brask. Move HAVE_SPD_IN_CBFS and CHROMEOS_DRAM_PART_NUMBER_IN_CBI to brya and add config SPD_CACHE_IN_FMAP to brask. Add a new section RW_SPD_CACHE to fmd for caching SPD data. The renamed romstage.c is used by both brya and brask and a new function variant_get_spd_info is provided to support the different SPD source types. BUG=b:194055762 BRANCH=None TEST=build pass Change-Id: I41c57a3df127356b8c7e619c4d6144dc73aeac72 Signed-off-by: Alan Huang <alan-huang@quanta.corp-partner.google.com> Reviewed-on: https://review.coreboot.org/c/coreboot/+/56539 Tested-by: build bot (Jenkins) <no-reply@coreboot.org> Reviewed-by: Tim Wawrzynczak <twawrzynczak@chromium.org>
This commit is contained in:
parent
4a48dbe60b
commit
126162c38f
|
@ -1,10 +1,12 @@
|
|||
config BOARD_GOOGLE_BASEBOARD_BRYA
|
||||
def_bool n
|
||||
select ROMSTAGE_SPD_CBFS
|
||||
select CHROMEOS_DRAM_PART_NUMBER_IN_CBI if CHROMEOS
|
||||
select HAVE_SPD_IN_CBFS
|
||||
select SYSTEM_TYPE_LAPTOP
|
||||
|
||||
config BOARD_GOOGLE_BASEBOARD_BRASK
|
||||
def_bool n
|
||||
select SPD_CACHE_IN_FMAP
|
||||
|
||||
if BOARD_GOOGLE_BASEBOARD_BRYA || BOARD_GOOGLE_BASEBOARD_BRASK
|
||||
|
||||
|
@ -50,7 +52,6 @@ config BASEBOARD_DIR
|
|||
default "brask" if BOARD_GOOGLE_BASEBOARD_BRASK
|
||||
|
||||
config CHROMEOS
|
||||
select CHROMEOS_DRAM_PART_NUMBER_IN_CBI
|
||||
select EC_GOOGLE_CHROMEEC_SWITCHES
|
||||
select HAS_RECOVERY_MRC_CACHE
|
||||
select VBOOT_LID_SWITCH
|
||||
|
@ -118,10 +119,6 @@ config UART_FOR_CONSOLE
|
|||
int
|
||||
default 0
|
||||
|
||||
config ROMSTAGE_SPD_CBFS
|
||||
def_bool n
|
||||
select HAVE_SPD_IN_CBFS
|
||||
|
||||
config HAVE_WWAN_POWER_SEQUENCE
|
||||
def_bool n
|
||||
help
|
||||
|
|
|
@ -3,7 +3,7 @@ bootblock-y += bootblock.c
|
|||
verstage-$(CONFIG_CHROMEOS) += chromeos.c
|
||||
|
||||
romstage-$(CONFIG_CHROMEOS) += chromeos.c
|
||||
romstage-$(CONFIG_ROMSTAGE_SPD_CBFS) += romstage_spd_cbfs.c
|
||||
romstage-y += romstage.c
|
||||
|
||||
ramstage-$(CONFIG_CHROMEOS) += chromeos.c
|
||||
ramstage-y += mainboard.c
|
||||
|
@ -15,7 +15,7 @@ BASEBOARD_DIR:=$(call strip_quotes,$(CONFIG_BASEBOARD_DIR))
|
|||
subdirs-y += variants/baseboard/$(BASEBOARD_DIR)
|
||||
subdirs-y += variants/$(VARIANT_DIR)
|
||||
subdirs-y += variants/$(VARIANT_DIR)/memory
|
||||
subdirs-$(CONFIG_ROMSTAGE_SPD_CBFS) += spd
|
||||
subdirs-$(CONFIG_HAVE_SPD_IN_CBFS) += spd
|
||||
|
||||
CPPFLAGS_common += -I$(src)/mainboard/$(MAINBOARDDIR)/variants/baseboard/include
|
||||
CPPFLAGS_common += -I$(src)/mainboard/$(MAINBOARDDIR)/variants/baseboard/$(BASEBOARD_DIR)/include
|
||||
|
|
|
@ -21,6 +21,11 @@ FLASH 32M {
|
|||
SHARED_DATA 8K
|
||||
VBLOCK_DEV 8K
|
||||
}
|
||||
# The RW_SPD_CACHE region is only used for brya variants that use DDRx memory.
|
||||
# It is placed in the common `chromeos.fmd` file because it is only 4K and there
|
||||
# is free space in the RW_MISC region that cannot be easily reclaimed because
|
||||
# the RW_SECTION_B must start on the 16M boundary.
|
||||
RW_SPD_CACHE(PRESERVE) 4K
|
||||
RW_VPD(PRESERVE) 8K
|
||||
RW_NVRAM(PRESERVE) 24K
|
||||
}
|
||||
|
|
|
@ -5,15 +5,17 @@
|
|||
#include <fsp/api.h>
|
||||
#include <gpio.h>
|
||||
#include <soc/romstage.h>
|
||||
#include <string.h>
|
||||
|
||||
void mainboard_memory_init_params(FSP_M_CONFIG *m_cfg)
|
||||
{
|
||||
const struct mb_cfg *mem_config = variant_memory_params();
|
||||
bool half_populated = variant_is_half_populated();
|
||||
const struct mem_spd spd_info = {
|
||||
.topo = MEM_TOPO_MEMORY_DOWN,
|
||||
.cbfs_index = variant_memory_sku(),
|
||||
};
|
||||
struct mem_spd spd_info;
|
||||
|
||||
memset(&spd_info, 0, sizeof(spd_info));
|
||||
variant_get_spd_info(&spd_info);
|
||||
|
||||
const struct pad_config *pads;
|
||||
size_t pads_num;
|
||||
|
|
@ -1,5 +1,6 @@
|
|||
bootblock-y += gpio.c
|
||||
|
||||
romstage-y += memory.c
|
||||
romstage-y += gpio.c
|
||||
|
||||
ramstage-y += gpio.c
|
||||
|
|
|
@ -149,5 +149,6 @@ chip soc/intel/alderlake
|
|||
end
|
||||
end
|
||||
device ref hda on end
|
||||
device ref smbus on end
|
||||
end
|
||||
end
|
||||
|
|
|
@ -0,0 +1,43 @@
|
|||
/* SPDX-License-Identifier: GPL-2.0-or-later */
|
||||
|
||||
#include <baseboard/gpio.h>
|
||||
#include <baseboard/variants.h>
|
||||
#include <gpio.h>
|
||||
#include <soc/romstage.h>
|
||||
|
||||
static const struct mb_cfg ddr4_mem_config = {
|
||||
.type = MEM_TYPE_DDR4,
|
||||
|
||||
.rcomp = {
|
||||
/* Baseboard uses only 100ohm Rcomp resistors */
|
||||
.resistor = 100,
|
||||
|
||||
/* Baseboard Rcomp target values */
|
||||
.targets = {50, 20, 25, 25, 25},
|
||||
},
|
||||
|
||||
.ect = 1, /* Early Command Training */
|
||||
|
||||
.UserBd = BOARD_TYPE_MOBILE,
|
||||
|
||||
.ddr_config = {
|
||||
.dq_pins_interleaved = 1,
|
||||
},
|
||||
};
|
||||
|
||||
const struct mb_cfg *__weak variant_memory_params(void)
|
||||
{
|
||||
return &ddr4_mem_config;
|
||||
}
|
||||
|
||||
bool __weak variant_is_half_populated(void)
|
||||
{
|
||||
return false;
|
||||
}
|
||||
|
||||
void __weak variant_get_spd_info(struct mem_spd *spd_info)
|
||||
{
|
||||
spd_info->topo = MEM_TOPO_DIMM_MODULE;
|
||||
spd_info->smbus[0].addr_dimm[0] = 0x50;
|
||||
spd_info->smbus[1].addr_dimm[0] = 0x52;
|
||||
}
|
|
@ -95,3 +95,9 @@ bool __weak variant_is_half_populated(void)
|
|||
/* GPIO_MEM_CH_SEL GPP_E13 */
|
||||
return gpio_get(GPP_E13);
|
||||
}
|
||||
|
||||
void __weak variant_get_spd_info(struct mem_spd *spd_info)
|
||||
{
|
||||
spd_info->topo = MEM_TOPO_MEMORY_DOWN;
|
||||
spd_info->cbfs_index = variant_memory_sku();
|
||||
}
|
||||
|
|
|
@ -19,6 +19,7 @@ const struct cros_gpio *variant_cros_gpios(size_t *num);
|
|||
const struct pad_config *variant_romstage_gpio_table(size_t *num);
|
||||
|
||||
const struct mb_cfg *variant_memory_params(void);
|
||||
void variant_get_spd_info(struct mem_spd *spd_info);
|
||||
int variant_memory_sku(void);
|
||||
bool variant_is_half_populated(void);
|
||||
void variant_update_soc_chip_config(struct soc_intel_alderlake_config *config);
|
||||
|
|
Loading…
Reference in New Issue