mb/google/octopus: Create phaser variant
This creates a phaser variant for octopus. Nothing is set in the variant files here; everything is picked up from baseboard. BUG=b:78572180 TEST=None Change-Id: Ia03e8af91741f1f7aa3a42ac28688b8b6a708932 Signed-off-by: Justin TerAvest <teravest@chromium.org> Reviewed-on: https://review.coreboot.org/25877 Tested-by: build bot (Jenkins) <no-reply@coreboot.org> Reviewed-by: Furquan Shaikh <furquan@google.com> Reviewed-by: Aaron Durbin <adurbin@chromium.org> Reviewed-by: Paul Menzel <paulepanter@users.sourceforge.net>
This commit is contained in:
committed by
Patrick Georgi
parent
036aff9e65
commit
3a2fd57e71
@@ -41,6 +41,7 @@ config VARIANT_DIR
|
|||||||
string
|
string
|
||||||
default "yorp" if BOARD_GOOGLE_YORP
|
default "yorp" if BOARD_GOOGLE_YORP
|
||||||
default "bip" if BOARD_GOOGLE_BIP
|
default "bip" if BOARD_GOOGLE_BIP
|
||||||
|
default "phaser" if BOARD_GOOGLE_PHASER
|
||||||
default "octopus" if BOARD_GOOGLE_OCTOPUS
|
default "octopus" if BOARD_GOOGLE_OCTOPUS
|
||||||
|
|
||||||
config DEVICETREE
|
config DEVICETREE
|
||||||
@@ -51,6 +52,7 @@ config MAINBOARD_PART_NUMBER
|
|||||||
string
|
string
|
||||||
default "Yorp" if BOARD_GOOGLE_YORP
|
default "Yorp" if BOARD_GOOGLE_YORP
|
||||||
default "Bip" if BOARD_GOOGLE_BIP
|
default "Bip" if BOARD_GOOGLE_BIP
|
||||||
|
default "Phaser" if BOARD_GOOGLE_PHASER
|
||||||
default "Octopus" if BOARD_GOOGLE_OCTOPUS
|
default "Octopus" if BOARD_GOOGLE_OCTOPUS
|
||||||
|
|
||||||
config MAINBOARD_FAMILY
|
config MAINBOARD_FAMILY
|
||||||
@@ -62,6 +64,7 @@ config GBB_HWID
|
|||||||
depends on CHROMEOS
|
depends on CHROMEOS
|
||||||
default "YORP TEST 7755" if BOARD_GOOGLE_YORP
|
default "YORP TEST 7755" if BOARD_GOOGLE_YORP
|
||||||
default "BIP TEST 5732" if BOARD_GOOGLE_BIP
|
default "BIP TEST 5732" if BOARD_GOOGLE_BIP
|
||||||
|
default "PHASER TEST 7167" if BOARD_GOOGLE_PHASER
|
||||||
default "OCTOPUS TEST 6859" if BOARD_GOOGLE_OCTOPUS
|
default "OCTOPUS TEST 6859" if BOARD_GOOGLE_OCTOPUS
|
||||||
|
|
||||||
config HAS_TPM
|
config HAS_TPM
|
||||||
|
@@ -10,3 +10,7 @@ config BOARD_GOOGLE_BIP
|
|||||||
bool "Bip"
|
bool "Bip"
|
||||||
select BOARD_GOOGLE_BASEBOARD_OCTOPUS
|
select BOARD_GOOGLE_BASEBOARD_OCTOPUS
|
||||||
select BASEBOARD_OCTOPUS_LAPTOP
|
select BASEBOARD_OCTOPUS_LAPTOP
|
||||||
|
config BOARD_GOOGLE_PHASER
|
||||||
|
bool "Phaser"
|
||||||
|
select BOARD_GOOGLE_BASEBOARD_OCTOPUS
|
||||||
|
select BASEBOARD_OCTOPUS_LAPTOP
|
||||||
|
@@ -0,0 +1,16 @@
|
|||||||
|
/*
|
||||||
|
* This file is part of the coreboot project.
|
||||||
|
*
|
||||||
|
* Copyright 2018 Google LLC
|
||||||
|
*
|
||||||
|
* 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 <baseboard/acpi/dptf.asl>
|
@@ -0,0 +1,21 @@
|
|||||||
|
/*
|
||||||
|
* This file is part of the coreboot project.
|
||||||
|
*
|
||||||
|
* Copyright 2018 Google LLC
|
||||||
|
*
|
||||||
|
* 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.
|
||||||
|
*/
|
||||||
|
|
||||||
|
#ifndef MAINBOARD_EC_H
|
||||||
|
#define MAINBOARD_EC_H
|
||||||
|
|
||||||
|
#include <baseboard/ec.h>
|
||||||
|
|
||||||
|
#endif
|
@@ -0,0 +1,21 @@
|
|||||||
|
/*
|
||||||
|
* This file is part of the coreboot project.
|
||||||
|
*
|
||||||
|
* Copyright 2018 Google LLC
|
||||||
|
*
|
||||||
|
* 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.
|
||||||
|
*/
|
||||||
|
|
||||||
|
#ifndef MAINBOARD_GPIO_H
|
||||||
|
#define MAINBOARD_GPIO_H
|
||||||
|
|
||||||
|
#include <baseboard/gpio.h>
|
||||||
|
|
||||||
|
#endif /* MAINBOARD_GPIO_H */
|
Reference in New Issue
Block a user