2020-04-05 13:22:20 +02:00
|
|
|
/* SPDX-License-Identifier: GPL-2.0-only */
|
|
|
|
/* This file is part of the coreboot project. */
|
2018-02-10 03:35:17 +01:00
|
|
|
|
|
|
|
#include <arch/acpi.h>
|
|
|
|
#include <baseboard/variants.h>
|
|
|
|
#include <boardid.h>
|
2019-06-06 23:57:47 +02:00
|
|
|
#include <bootstate.h>
|
2018-02-10 03:35:17 +01:00
|
|
|
#include <console/console.h>
|
|
|
|
#include <device/device.h>
|
2018-08-08 22:30:44 +02:00
|
|
|
#include <device/pci_def.h>
|
|
|
|
#include <device/pci_ops.h>
|
2018-07-20 22:50:16 +02:00
|
|
|
#include <ec/google/chromeec/ec.h>
|
2018-02-10 03:35:17 +01:00
|
|
|
#include <ec/ec.h>
|
2019-06-06 23:57:47 +02:00
|
|
|
#include <intelblocks/xhci.h>
|
2018-02-10 03:35:17 +01:00
|
|
|
#include <nhlt.h>
|
2018-07-20 22:50:16 +02:00
|
|
|
#include <smbios.h>
|
2018-07-25 16:06:21 +02:00
|
|
|
#include <soc/cpu.h>
|
2018-02-10 03:35:17 +01:00
|
|
|
#include <soc/gpio.h>
|
|
|
|
#include <soc/nhlt.h>
|
2018-08-08 22:30:44 +02:00
|
|
|
#include <soc/pci_devs.h>
|
|
|
|
#include <stdint.h>
|
2018-07-20 22:50:16 +02:00
|
|
|
#include <string.h>
|
2018-02-10 03:35:17 +01:00
|
|
|
#include <vendorcode/google/chromeos/chromeos.h>
|
|
|
|
#include <variant/ec.h>
|
|
|
|
#include <variant/gpio.h>
|
|
|
|
|
2018-08-08 22:30:44 +02:00
|
|
|
static bool is_cnvi_held_in_reset(void)
|
|
|
|
{
|
2018-06-21 15:20:55 +02:00
|
|
|
struct device *dev = pcidev_path_on_root(PCH_DEVFN_CNVI);
|
2018-08-08 22:30:44 +02:00
|
|
|
uint32_t reg = pci_read_config32(dev, PCI_VENDOR_ID);
|
|
|
|
|
|
|
|
/*
|
|
|
|
* If vendor/device ID for CNVi reads as 0xffffffff, then it is safe to
|
|
|
|
* assume that it is being held in reset.
|
|
|
|
*/
|
|
|
|
if (reg == 0xffffffff)
|
|
|
|
return true;
|
|
|
|
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
2018-08-09 19:11:26 +02:00
|
|
|
static void disable_wifi_wake(void)
|
|
|
|
{
|
|
|
|
static const struct pad_config wifi_wake_gpio[] = {
|
|
|
|
PAD_NC(GPIO_119, UP_20K),
|
|
|
|
};
|
|
|
|
|
|
|
|
gpio_configure_pads(wifi_wake_gpio, ARRAY_SIZE(wifi_wake_gpio));
|
|
|
|
}
|
|
|
|
|
2018-02-10 03:35:17 +01:00
|
|
|
static void mainboard_init(void *chip_info)
|
|
|
|
{
|
|
|
|
int boardid;
|
2018-07-25 23:30:59 +02:00
|
|
|
const struct pad_config *base_pads;
|
|
|
|
const struct pad_config *override_pads;
|
|
|
|
size_t base_num, override_num;
|
2018-02-10 03:35:17 +01:00
|
|
|
|
|
|
|
boardid = board_id();
|
|
|
|
printk(BIOS_INFO, "Board ID: %d\n", boardid);
|
|
|
|
|
2018-07-25 23:30:59 +02:00
|
|
|
base_pads = variant_base_gpio_table(&base_num);
|
|
|
|
override_pads = variant_override_gpio_table(&override_num);
|
|
|
|
|
|
|
|
gpio_configure_pads_with_override(base_pads, base_num,
|
|
|
|
override_pads, override_num);
|
2018-02-10 03:35:17 +01:00
|
|
|
|
2018-08-09 19:11:26 +02:00
|
|
|
if (!is_cnvi_held_in_reset())
|
|
|
|
disable_wifi_wake();
|
|
|
|
|
2018-02-10 03:35:17 +01:00
|
|
|
mainboard_ec_init();
|
|
|
|
}
|
|
|
|
|
|
|
|
static unsigned long mainboard_write_acpi_tables(
|
2020-04-24 15:41:18 +02:00
|
|
|
const struct device *device, unsigned long current, acpi_rsdp_t *rsdp)
|
2018-02-10 03:35:17 +01:00
|
|
|
{
|
|
|
|
uintptr_t start_addr;
|
|
|
|
uintptr_t end_addr;
|
|
|
|
struct nhlt *nhlt;
|
|
|
|
|
|
|
|
start_addr = current;
|
|
|
|
|
|
|
|
nhlt = nhlt_init();
|
|
|
|
|
|
|
|
if (nhlt == NULL)
|
|
|
|
return start_addr;
|
|
|
|
|
|
|
|
variant_nhlt_init(nhlt);
|
|
|
|
|
|
|
|
end_addr = nhlt_soc_serialize(nhlt, start_addr);
|
|
|
|
|
|
|
|
if (end_addr != start_addr)
|
|
|
|
acpi_add_table(rsdp, (void *)start_addr);
|
|
|
|
|
|
|
|
return end_addr;
|
|
|
|
}
|
|
|
|
|
2018-05-04 20:23:33 +02:00
|
|
|
static void mainboard_enable(struct device *dev)
|
2018-02-10 03:35:17 +01:00
|
|
|
{
|
|
|
|
dev->ops->write_acpi_tables = mainboard_write_acpi_tables;
|
2020-03-31 17:34:52 +02:00
|
|
|
dev->ops->acpi_inject_dsdt = chromeos_dsdt_generator;
|
2018-02-10 03:35:17 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
struct chip_operations mainboard_ops = {
|
|
|
|
.init = mainboard_init,
|
|
|
|
.enable_dev = mainboard_enable,
|
|
|
|
};
|
2018-07-20 22:50:16 +02:00
|
|
|
|
2018-07-25 16:06:21 +02:00
|
|
|
void __weak variant_update_devtree(struct device *dev)
|
|
|
|
{
|
|
|
|
/* Place holder for common updates. */
|
|
|
|
}
|
|
|
|
|
2018-08-08 22:30:44 +02:00
|
|
|
/*
|
|
|
|
* Check if CNVi PCI device is released from reset. If yes, then the system is
|
|
|
|
* booting with CNVi module. In this case, the PCIe device for WiFi needs to
|
|
|
|
* be disabled. If CNVi device is held in reset, then disable it.
|
|
|
|
*/
|
|
|
|
static void wifi_device_update(void)
|
|
|
|
{
|
|
|
|
struct device *dev;
|
|
|
|
unsigned int devfn;
|
|
|
|
|
|
|
|
if (is_cnvi_held_in_reset())
|
|
|
|
devfn = PCH_DEVFN_CNVI;
|
|
|
|
else
|
|
|
|
devfn = PCH_DEVFN_PCIE1;
|
|
|
|
|
2018-06-21 15:20:55 +02:00
|
|
|
dev = pcidev_path_on_root(devfn);
|
2018-08-20 19:27:39 +02:00
|
|
|
if (dev)
|
|
|
|
dev->enabled = 0;
|
2018-08-08 22:30:44 +02:00
|
|
|
}
|
|
|
|
|
2018-07-25 16:06:21 +02:00
|
|
|
void mainboard_devtree_update(struct device *dev)
|
|
|
|
{
|
2018-08-08 22:30:44 +02:00
|
|
|
/* Apply common devtree updates. */
|
|
|
|
wifi_device_update();
|
|
|
|
|
2018-07-25 16:06:21 +02:00
|
|
|
/* Defer to variant for board-specific updates. */
|
|
|
|
variant_update_devtree(dev);
|
|
|
|
}
|
2018-11-06 10:38:57 +01:00
|
|
|
|
2019-06-06 23:57:47 +02:00
|
|
|
bool __weak variant_ext_usb_status(unsigned int port_type, unsigned int port_id)
|
|
|
|
{
|
|
|
|
/* All externally visible USB ports are present */
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
|
|
|
static void disable_unused_devices(void *unused)
|
|
|
|
{
|
|
|
|
usb_xhci_disable_unused(variant_ext_usb_status);
|
|
|
|
}
|
|
|
|
|
|
|
|
BOOT_STATE_INIT_ENTRY(BS_DEV_INIT, BS_ON_EXIT, disable_unused_devices, NULL);
|