blob: 73b0287e012908d9ecc1def60db960438e673d97 [file] [log] [blame]
/*
* This file is part of the coreboot project.
*
* Copyright 2019 Google LLC
*
* This program is free software; you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation; version 2 of the License.
*
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
*/
#include <arch/acpi.h>
#include <boardid.h>
#include <ec/google/chromeec/ec.h>
#include <drivers/intel/gma/opregion.h>
#include <baseboard/variants.h>
#include <delay.h>
#include <gpio.h>
#include <variant/sku.h>
#include <soc/intel/apollolake/chip.h>
const char *mainboard_vbt_filename(void)
{
uint32_t sku_id;
sku_id = get_board_sku();
switch (sku_id) {
case SKU_9_HDMI:
case SKU_19_HDMI_TS:
return "vbt_garg_hdmi.bin";
case SKU_49_2A2C_TS:
case SKU_51_2A2C:
return "vbt_garfour.bin";
case SKU_50_HDMI:
case SKU_52_HDMI_TS:
return "vbt_garfour_hdmi.bin";
default:
return "vbt.bin";
}
}
void variant_smi_sleep(u8 slp_typ)
{
/* Currently use cases here all target to S5 therefore we do early return
* here for saving one transaction to the EC for getting SKU ID. */
if (slp_typ != ACPI_S5)
return;
switch (get_board_sku()) {
case SKU_17_LTE:
case SKU_18_LTE_TS:
case SKU_39_1A2C_360_LTE_TS_NO_STYLUES:
power_off_lte_module();
return;
default:
return;
}
}
void variant_update_devtree(struct device *dev)
{
struct soc_intel_apollolake_config *cfg = NULL;
cfg = (struct soc_intel_apollolake_config *)dev->chip_info;
if (cfg != NULL && (cfg->disable_xhci_lfps_pm != 1)) {
switch (get_board_sku()) {
case SKU_17_LTE:
case SKU_18_LTE_TS:
case SKU_39_1A2C_360_LTE_TS_NO_STYLUES:
cfg->disable_xhci_lfps_pm = 1;
return;
default:
return;
}
}
}