mb/google/hatch: Add new SKU ID 3 and 4

1. SKU ID 1 and 3 for eMMC
2. SKU ID 2 and 4 for SSD

BUG=b:144815890
BRANCH=firmware-hatch-12672.B
TEST=FW_NAME="akemi" emerge-hatch coreboot
chromeos-bootimage

Signed-off-by: Peichao Wang <peichao.wang@bitland.corp-partner.google.com>
Change-Id: I25f0c4142be024ba55f671491601d1f6ec26d68a
Reviewed-on: https://review.coreboot.org/c/coreboot/+/37498
Reviewed-by: Paul Fagerburg <pfagerburg@chromium.org>
Reviewed-by: Philip Chen <philipchen@google.com>
Tested-by: build bot (Jenkins) <no-reply@coreboot.org>
This commit is contained in:
Peichao Wang 2019-12-05 13:56:17 +08:00 committed by Patrick Georgi
parent 3012948b39
commit 4240e32980
2 changed files with 5 additions and 5 deletions

View File

@ -164,7 +164,7 @@ const struct pad_config *override_gpio_table(size_t *num)
{
uint32_t sku_id = get_board_sku();
/* For SSD SKU */
if (sku_id == 2) {
if ((sku_id == 2) || (sku_id == 4)) {
*num = ARRAY_SIZE(ssd_sku_gpio_table);
return ssd_sku_gpio_table;
}

View File

@ -27,17 +27,17 @@ void variant_devtree_update(void)
emmc_host = pcidev_path_on_root(PCH_DEVFN_EMMC);
ssd_host = pcidev_path_on_root(PCH_DEVFN_SATA);
/* SKU ID 2 doesn't have a eMMC device, hence disable it. */
/* SKU ID 2 and 4 do not have eMMC, hence disable it. */
sku_id = get_board_sku();
if (sku_id == 2) {
if ((sku_id == 2) || (sku_id == 4)) {
if (emmc_host == NULL)
return;
emmc_host->enabled = 0;
cfg->ScsEmmcHs400Enabled = 0;
}
/* SKU ID 1 doesn't have a SSD device, hence disable it. */
if (sku_id == 1) {
/* SKU ID 1 and 3 do not have SSD, hence disable it. */
if ((sku_id == 1) || (sku_id == 3)) {
if (ssd_host == NULL)
return;
ssd_host->enabled = 0;