2016-12-14 21:10:21 +01:00
|
|
|
/*
|
|
|
|
* This file is part of the coreboot project.
|
|
|
|
*
|
|
|
|
* Copyright (C) 2016 Google Inc.
|
|
|
|
*
|
|
|
|
* 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>
|
2017-04-15 20:36:07 +02:00
|
|
|
#include <baseboard/variants.h>
|
2016-12-14 21:10:21 +01:00
|
|
|
#include <device/device.h>
|
|
|
|
#include <ec/ec.h>
|
2017-01-13 18:00:01 +01:00
|
|
|
#include <soc/nhlt.h>
|
2016-12-14 21:10:21 +01:00
|
|
|
#include <vendorcode/google/chromeos/chromeos.h>
|
|
|
|
|
|
|
|
static void mainboard_init(device_t dev)
|
|
|
|
{
|
|
|
|
mainboard_ec_init();
|
|
|
|
}
|
|
|
|
|
2017-01-13 18:00:01 +01:00
|
|
|
static unsigned long mainboard_write_acpi_tables(device_t device,
|
|
|
|
unsigned long current, acpi_rsdp_t *rsdp)
|
|
|
|
{
|
|
|
|
uintptr_t start_addr;
|
|
|
|
uintptr_t end_addr;
|
|
|
|
struct nhlt *nhlt;
|
2017-04-15 20:36:07 +02:00
|
|
|
const char *oem_id = NULL;
|
|
|
|
const char *oem_table_id = NULL;
|
|
|
|
uint32_t oem_revision = 0;
|
2017-01-13 18:00:01 +01:00
|
|
|
|
|
|
|
start_addr = current;
|
|
|
|
|
|
|
|
nhlt = nhlt_init();
|
|
|
|
|
|
|
|
if (nhlt == NULL)
|
|
|
|
return start_addr;
|
|
|
|
|
2017-04-15 20:36:07 +02:00
|
|
|
variant_nhlt_init(nhlt);
|
|
|
|
variant_nhlt_oem_overrides(&oem_id, &oem_table_id, &oem_revision);
|
2017-01-13 18:00:01 +01:00
|
|
|
|
|
|
|
end_addr = nhlt_soc_serialize_oem_overrides(nhlt, start_addr,
|
2017-04-15 20:36:07 +02:00
|
|
|
oem_id, oem_table_id, oem_revision);
|
2017-01-13 18:00:01 +01:00
|
|
|
|
|
|
|
if (end_addr != start_addr)
|
|
|
|
acpi_add_table(rsdp, (void *)start_addr);
|
|
|
|
|
|
|
|
return end_addr;
|
|
|
|
}
|
|
|
|
|
2016-12-14 21:10:21 +01:00
|
|
|
static void mainboard_enable(device_t dev)
|
|
|
|
{
|
|
|
|
dev->ops->init = mainboard_init;
|
|
|
|
dev->ops->acpi_inject_dsdt_generator = chromeos_dsdt_generator;
|
2017-01-13 18:00:01 +01:00
|
|
|
dev->ops->write_acpi_tables = mainboard_write_acpi_tables;
|
2016-12-14 21:10:21 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
struct chip_operations mainboard_ops = {
|
|
|
|
.enable_dev = mainboard_enable,
|
|
|
|
};
|