mb/google/brya: Create gladios ADL variant
Create the gladios 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:239513596 BRANCH=None TEST=util/abuild/abuild -p none -t google/brya -x -a make sure the build includes GOOGLE_gladios Signed-off-by: Kevin Chiu <kevin.chiu.17802@gmail.com> Change-Id: I3dc99d97d8e30d9641f56616222dd68e3a0d548d Reviewed-on: https://review.coreboot.org/c/coreboot/+/68569 Tested-by: build bot (Jenkins) <no-reply@coreboot.org> Reviewed-by: Nick Vaccaro <nvaccaro@google.com> Reviewed-by: Zhuohao Lee <zhuohao@google.com> Reviewed-by: Angel Pons <th3fanbus@gmail.com>
This commit is contained in:
parent
e1b3864f0e
commit
52163149b4
|
@ -213,6 +213,7 @@ config MAINBOARD_PART_NUMBER
|
||||||
default "Yaviks" if BOARD_GOOGLE_YAVIKS
|
default "Yaviks" if BOARD_GOOGLE_YAVIKS
|
||||||
default "Lisbon" if BOARD_GOOGLE_LISBON
|
default "Lisbon" if BOARD_GOOGLE_LISBON
|
||||||
default "Zydron" if BOARD_GOOGLE_ZYDRON
|
default "Zydron" if BOARD_GOOGLE_ZYDRON
|
||||||
|
default "Gladios" if BOARD_GOOGLE_GLADIOS
|
||||||
|
|
||||||
config VARIANT_DIR
|
config VARIANT_DIR
|
||||||
default "brya0" if BOARD_GOOGLE_BRYA0
|
default "brya0" if BOARD_GOOGLE_BRYA0
|
||||||
|
@ -252,6 +253,7 @@ config VARIANT_DIR
|
||||||
default "yaviks" if BOARD_GOOGLE_YAVIKS
|
default "yaviks" if BOARD_GOOGLE_YAVIKS
|
||||||
default "lisbon" if BOARD_GOOGLE_LISBON
|
default "lisbon" if BOARD_GOOGLE_LISBON
|
||||||
default "zydron" if BOARD_GOOGLE_ZYDRON
|
default "zydron" if BOARD_GOOGLE_ZYDRON
|
||||||
|
default "gladios" if BOARD_GOOGLE_GLADIOS
|
||||||
|
|
||||||
config VBOOT
|
config VBOOT
|
||||||
select VBOOT_EARLY_EC_SYNC if !BOARD_GOOGLE_BASEBOARD_NISSA
|
select VBOOT_EARLY_EC_SYNC if !BOARD_GOOGLE_BASEBOARD_NISSA
|
||||||
|
|
|
@ -281,3 +281,7 @@ config BOARD_GOOGLE_ZYDRON
|
||||||
select DRIVERS_I2C_NAU8825
|
select DRIVERS_I2C_NAU8825
|
||||||
select DRIVERS_INTEL_MIPI_CAMERA
|
select DRIVERS_INTEL_MIPI_CAMERA
|
||||||
select SOC_INTEL_COMMON_BLOCK_IPU
|
select SOC_INTEL_COMMON_BLOCK_IPU
|
||||||
|
|
||||||
|
config BOARD_GOOGLE_GLADIOS
|
||||||
|
bool "-> Gladios"
|
||||||
|
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