2020-07-19 14:00:43 +02:00
|
|
|
/* SPDX-License-Identifier: GPL-2.0-or-later */
|
2020-01-29 03:43:28 +01:00
|
|
|
|
|
|
|
#include <console/console.h>
|
2020-05-02 19:24:23 +02:00
|
|
|
#include <acpi/acpi.h>
|
2020-01-29 03:43:28 +01:00
|
|
|
#include <baseboard/variants.h>
|
|
|
|
#include <device/device.h>
|
|
|
|
#include <ec/ec.h>
|
2020-08-26 00:50:29 +02:00
|
|
|
#include <fw_config.h>
|
2020-01-29 03:43:28 +01:00
|
|
|
#include <soc/gpio.h>
|
|
|
|
#include <vendorcode/google/chromeos/chromeos.h>
|
|
|
|
#include <variant/gpio.h>
|
|
|
|
|
|
|
|
static void mainboard_init(struct device *dev)
|
|
|
|
{
|
|
|
|
mainboard_ec_init();
|
|
|
|
}
|
|
|
|
|
2020-08-26 00:50:29 +02:00
|
|
|
static void add_fw_config_oem_string(const struct fw_config *config, void *arg)
|
|
|
|
{
|
|
|
|
struct smbios_type11 *t;
|
|
|
|
char buffer[64];
|
|
|
|
|
|
|
|
t = (struct smbios_type11 *)arg;
|
|
|
|
|
|
|
|
snprintf(buffer, sizeof(buffer), "%s-%s", config->field_name, config->option_name);
|
|
|
|
t->count = smbios_add_string(t->eos, buffer);
|
|
|
|
}
|
|
|
|
|
|
|
|
static void mainboard_smbios_strings(struct device *dev, struct smbios_type11 *t)
|
|
|
|
{
|
|
|
|
fw_config_for_each_found(add_fw_config_oem_string, t);
|
|
|
|
}
|
|
|
|
|
2020-01-29 03:43:28 +01:00
|
|
|
static void mainboard_enable(struct device *dev)
|
|
|
|
{
|
|
|
|
dev->ops->init = mainboard_init;
|
2020-03-31 17:34:52 +02:00
|
|
|
dev->ops->acpi_inject_dsdt = chromeos_dsdt_generator;
|
2020-08-26 00:50:29 +02:00
|
|
|
dev->ops->get_smbios_strings = mainboard_smbios_strings;
|
2020-01-29 03:43:28 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
static void mainboard_chip_init(void *chip_info)
|
|
|
|
{
|
|
|
|
const struct pad_config *base_pads;
|
|
|
|
const struct pad_config *override_pads;
|
|
|
|
size_t base_num, override_num;
|
|
|
|
|
|
|
|
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);
|
|
|
|
}
|
|
|
|
|
|
|
|
struct chip_operations mainboard_ops = {
|
|
|
|
.init = mainboard_chip_init,
|
|
|
|
.enable_dev = mainboard_enable,
|
|
|
|
};
|