68680dd7cd
These two identifiers were always very confusing. We're not filling and injecting generators. We are filling SSDTs and injecting into the DSDT. So drop the `_generator` suffix. Hopefully, this also makes ACPI look a little less scary. Change-Id: I6f0e79632c9c855f38fe24c0186388a25990c44d Signed-off-by: Nico Huber <nico.huber@secunet.com> Reviewed-on: https://review.coreboot.org/c/coreboot/+/39977 Reviewed-by: Felix Held <felix-coreboot@felixheld.de> Reviewed-by: David Guckian Reviewed-by: HAOUAS Elyes <ehaouas@noos.fr> Reviewed-by: Paul Menzel <paulepanter@users.sourceforge.net> Reviewed-by: Angel Pons <th3fanbus@gmail.com> Tested-by: build bot (Jenkins) <no-reply@coreboot.org>
46 lines
1.1 KiB
C
46 lines
1.1 KiB
C
/*
|
|
* This file is part of the coreboot project.
|
|
*
|
|
*
|
|
* SPDX-License-Identifier: GPL-2.0-or-later
|
|
*/
|
|
|
|
#include <console/console.h>
|
|
#include <arch/acpi.h>
|
|
#include <baseboard/variants.h>
|
|
#include <device/device.h>
|
|
#include <ec/ec.h>
|
|
#include <ec/google/chromeec/ec.h>
|
|
#include <soc/gpio.h>
|
|
#include <smbios.h>
|
|
#include <vendorcode/google/chromeos/chromeos.h>
|
|
#include <variant/gpio.h>
|
|
|
|
static void mainboard_init(struct device *dev)
|
|
{
|
|
mainboard_ec_init();
|
|
}
|
|
|
|
static void mainboard_enable(struct device *dev)
|
|
{
|
|
dev->ops->init = mainboard_init;
|
|
dev->ops->acpi_inject_dsdt = chromeos_dsdt_generator;
|
|
}
|
|
|
|
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,
|
|
};
|