google/enguarde: Adapt to current tree
Some changes were made in upstream in the meantime that broke the build: - CHROMEOS_VBNV_CMOS was renamed to VBOOT_VBNV_CMOS - recovery_move_enabled() -> vboot_recovery_mode_enabled() - chromeos.asl was replaced by an acpi generator Change-Id: Icd4ed5111cce9db79e12efb0cb7e898bba725c20 Signed-off-by: Patrick Georgi <pgeorgi@chromium.org> Reviewed-on: https://review.coreboot.org/16683 Tested-by: build bot (Jenkins) Reviewed-by: Paul Menzel <paulepanter@users.sourceforge.net> Reviewed-by: Nico Huber <nico.h@gmx.de>
This commit is contained in:
parent
904538bcc1
commit
8aa20193a6
5 changed files with 15 additions and 35 deletions
|
@ -13,7 +13,7 @@ config BOARD_SPECIFIC_OPTIONS
|
|||
select MAINBOARD_HAS_LPC_TPM
|
||||
|
||||
config CHROMEOS
|
||||
select CHROMEOS_VBNV_CMOS
|
||||
select VBOOT_VBNV_CMOS
|
||||
select LID_SWITCH
|
||||
select EC_SOFTWARE_SYNC
|
||||
select VIRTUAL_DEV_SWITCH
|
||||
|
|
|
@ -1,32 +0,0 @@
|
|||
/*
|
||||
* This file is part of the coreboot project.
|
||||
*
|
||||
* Copyright (C) 2014 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.
|
||||
*/
|
||||
|
||||
/*
|
||||
* Fields are in the following order.
|
||||
* - Type: recovery = 1 developer mode = 2 write protect = 3
|
||||
* - Active Level - if -1 not a valid gpio
|
||||
* - GPIO number encoding - if -1 not a valid gpio
|
||||
* - Chipset Name
|
||||
*
|
||||
* Note: On Bay Trail we need to encode gpios within the 3 separate banks
|
||||
* with the MMIO offset of each banks space. e.g. GPIO_SUS[8] would be encoded
|
||||
* as 0x2008 where the SUS offset (IO_BASE_OFFSET_GPSSUS) is 0x2000.
|
||||
*/
|
||||
|
||||
Name(OIPG, Package() {
|
||||
// No physical recovery button
|
||||
Package () { 0x0001, 0, 0xFFFFFFFF, "BayTrail" },
|
||||
Package () { 0x0003, 1, 0x2006, "BayTrail" },
|
||||
})
|
|
@ -19,6 +19,7 @@
|
|||
#include <device/device.h>
|
||||
#include <device/pci.h>
|
||||
#include <soc/gpio.h>
|
||||
#include <vendorcode/google/chromeos/chromeos.h>
|
||||
|
||||
#if CONFIG_EC_GOOGLE_CHROMEEC
|
||||
#include "ec.h"
|
||||
|
@ -35,7 +36,7 @@ void fill_lb_gpios(struct lb_gpios *gpios)
|
|||
{
|
||||
struct lb_gpio chromeos_gpios[] = {
|
||||
{-1, ACTIVE_HIGH, get_write_protect_state(), "write protect"},
|
||||
{-1, ACTIVE_HIGH, recovery_mode_enabled(), "recovery"},
|
||||
{-1, ACTIVE_HIGH, vboot_recovery_mode_enabled(), "recovery"},
|
||||
{-1, ACTIVE_HIGH, get_developer_mode_switch(), "developer"},
|
||||
{-1, ACTIVE_HIGH, get_lid_switch(), "lid"},
|
||||
{-1, ACTIVE_HIGH, 0, "power"},
|
||||
|
@ -110,3 +111,13 @@ int get_write_protect_state(void)
|
|||
/* WP is enabled when the pin is reading high. */
|
||||
return ssus_get_gpio(WP_STATUS_PAD);
|
||||
}
|
||||
|
||||
static const struct cros_gpio cros_gpios[] = {
|
||||
CROS_GPIO_REC_AL(CROS_GPIO_VIRTUAL, CROS_GPIO_DEVICE_NAME),
|
||||
CROS_GPIO_WP_AH(0x2006, CROS_GPIO_DEVICE_NAME),
|
||||
};
|
||||
|
||||
void mainboard_chromeos_acpi_generate(void)
|
||||
{
|
||||
chromeos_acpi_gpio_generate(cros_gpios, ARRAY_SIZE(cros_gpios));
|
||||
}
|
||||
|
|
|
@ -44,7 +44,6 @@ DefinitionBlock(
|
|||
#include "acpi/dptf.asl"
|
||||
}
|
||||
|
||||
#include "acpi/chromeos.asl"
|
||||
#include <vendorcode/google/chromeos/acpi/chromeos.asl>
|
||||
|
||||
/* Chipset specific sleep states */
|
||||
|
|
|
@ -34,6 +34,7 @@
|
|||
#include "onboard.h"
|
||||
#include <soc/gpio.h>
|
||||
#include <bootstate.h>
|
||||
#include <vendorcode/google/chromeos/chromeos.h>
|
||||
|
||||
void mainboard_suspend_resume(void)
|
||||
{
|
||||
|
@ -154,6 +155,7 @@ static void mainboard_enable(device_t dev)
|
|||
{
|
||||
dev->ops->init = mainboard_init;
|
||||
dev->ops->get_smbios_data = mainboard_smbios_data;
|
||||
dev->ops->acpi_inject_dsdt_generator = chromeos_dsdt_generator;
|
||||
#if CONFIG_VGA_ROM_RUN
|
||||
/* Install custom int15 handler for VGA OPROM */
|
||||
mainboard_interrupt_handlers(0x15, &int15_handler);
|
||||
|
|
Loading…
Reference in a new issue