mb/google/brya: Create kinox variant
Create the kinox variant of the brask reference board by copying the template files to a new directory named for the variant. (Auto-Generated by create_coreboot_variant.sh version 4.5.0). BUG=b:215049181 BRANCH=None TEST=util/abuild/abuild -p none -t google/brya -x -a make sure the build includes GOOGLE_KINOX Signed-off-by: Dtrain Hsu <dtrain_hsu@compal.corp-partner.google.com> Change-Id: I68cac421f6299a5f82f2ab51633173648c993060 Reviewed-on: https://review.coreboot.org/c/coreboot/+/61789 Reviewed-by: Zhuohao Lee <zhuohao@google.com> Tested-by: build bot (Jenkins) <no-reply@coreboot.org>
This commit is contained in:
parent
92d449902e
commit
e8c160e6af
|
@ -115,6 +115,7 @@ config DRIVER_TPM_I2C_BUS
|
||||||
default 0x3 if BOARD_GOOGLE_AGAH
|
default 0x3 if BOARD_GOOGLE_AGAH
|
||||||
default 0x1 if BOARD_GOOGLE_VOLMAR
|
default 0x1 if BOARD_GOOGLE_VOLMAR
|
||||||
default 0x1 if BOARD_GOOGLE_BANSHEE
|
default 0x1 if BOARD_GOOGLE_BANSHEE
|
||||||
|
default 0x1 if BOARD_GOOGLE_KINOX
|
||||||
|
|
||||||
config DRIVER_TPM_I2C_ADDR
|
config DRIVER_TPM_I2C_ADDR
|
||||||
hex
|
hex
|
||||||
|
@ -165,6 +166,7 @@ config MAINBOARD_PART_NUMBER
|
||||||
default "Banshee" if BOARD_GOOGLE_BANSHEE
|
default "Banshee" if BOARD_GOOGLE_BANSHEE
|
||||||
default "Crota" if BOARD_GOOGLE_CROTA
|
default "Crota" if BOARD_GOOGLE_CROTA
|
||||||
default "Moli" if BOARD_GOOGLE_MOLI
|
default "Moli" if BOARD_GOOGLE_MOLI
|
||||||
|
default "Kinox" if BOARD_GOOGLE_KINOX
|
||||||
|
|
||||||
config VARIANT_DIR
|
config VARIANT_DIR
|
||||||
default "brya0" if BOARD_GOOGLE_BRYA0
|
default "brya0" if BOARD_GOOGLE_BRYA0
|
||||||
|
@ -191,6 +193,7 @@ config VARIANT_DIR
|
||||||
default "banshee" if BOARD_GOOGLE_BANSHEE
|
default "banshee" if BOARD_GOOGLE_BANSHEE
|
||||||
default "crota" if BOARD_GOOGLE_CROTA
|
default "crota" if BOARD_GOOGLE_CROTA
|
||||||
default "moli" if BOARD_GOOGLE_MOLI
|
default "moli" if BOARD_GOOGLE_MOLI
|
||||||
|
default "kinox" if BOARD_GOOGLE_KINOX
|
||||||
|
|
||||||
config VBOOT
|
config VBOOT
|
||||||
select VBOOT_EARLY_EC_SYNC
|
select VBOOT_EARLY_EC_SYNC
|
||||||
|
|
|
@ -178,3 +178,7 @@ config BOARD_GOOGLE_CROTA
|
||||||
config BOARD_GOOGLE_MOLI
|
config BOARD_GOOGLE_MOLI
|
||||||
bool "-> Moli"
|
bool "-> Moli"
|
||||||
select BOARD_GOOGLE_BASEBOARD_BRASK
|
select BOARD_GOOGLE_BASEBOARD_BRASK
|
||||||
|
|
||||||
|
config BOARD_GOOGLE_KINOX
|
||||||
|
bool "-> Kinox"
|
||||||
|
select BOARD_GOOGLE_BASEBOARD_BRASK
|
||||||
|
|
|
@ -0,0 +1,8 @@
|
||||||
|
/* SPDX-License-Identifier: GPL-2.0-or-later */
|
||||||
|
|
||||||
|
#ifndef __VARIANT_EC_H__
|
||||||
|
#define __VARIANT_EC_H__
|
||||||
|
|
||||||
|
#include <baseboard/ec.h>
|
||||||
|
|
||||||
|
#endif
|
|
@ -0,0 +1,8 @@
|
||||||
|
/* SPDX-License-Identifier: GPL-2.0-or-later */
|
||||||
|
|
||||||
|
#ifndef VARIANT_GPIO_H
|
||||||
|
#define VARIANT_GPIO_H
|
||||||
|
|
||||||
|
#include <baseboard/gpio.h>
|
||||||
|
|
||||||
|
#endif
|
|
@ -0,0 +1,6 @@
|
||||||
|
chip soc/intel/alderlake
|
||||||
|
|
||||||
|
device domain 0 on
|
||||||
|
end
|
||||||
|
|
||||||
|
end
|
Loading…
Reference in New Issue