diff options
author | David Wu <david_wu@quanta.corp-partner.google.com> | 2024-03-08 16:17:45 +0800 |
---|---|---|
committer | Martin L Roth <gaumless@gmail.com> | 2024-03-11 16:00:04 +0000 |
commit | c4e68f6080a3ca0f678efce14d778b5602120865 (patch) | |
tree | 029441b9e7a2ac50fcc861526a34b4a7cb3a7f9b /src/mainboard/google/brya/variants/nova | |
parent | 7c58dd6ce898dd6b10c244849fefb710983154f2 (diff) |
mb/google/brya: Create nova variant
Create the nova 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:328711879
BRANCH=None
TEST=util/abuild/abuild -p none -t google/brya -x -a
make sure the build includes GOOGLE_NOVA
Change-Id: Ie1cee43f0e2545288130bcc5152075603695c395
Signed-off-by: David Wu <david_wu@quanta.corp-partner.google.com>
Reviewed-on: https://review.coreboot.org/c/coreboot/+/81132
Tested-by: build bot (Jenkins) <no-reply@coreboot.org>
Reviewed-by: Kenneth Chan <kenneth.chan@quanta.corp-partner.google.com>
Diffstat (limited to 'src/mainboard/google/brya/variants/nova')
3 files changed, 22 insertions, 0 deletions
diff --git a/src/mainboard/google/brya/variants/nova/include/variant/ec.h b/src/mainboard/google/brya/variants/nova/include/variant/ec.h new file mode 100644 index 0000000000..7a2a6ff8b7 --- /dev/null +++ b/src/mainboard/google/brya/variants/nova/include/variant/ec.h @@ -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 diff --git a/src/mainboard/google/brya/variants/nova/include/variant/gpio.h b/src/mainboard/google/brya/variants/nova/include/variant/gpio.h new file mode 100644 index 0000000000..c4fe342621 --- /dev/null +++ b/src/mainboard/google/brya/variants/nova/include/variant/gpio.h @@ -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 diff --git a/src/mainboard/google/brya/variants/nova/overridetree.cb b/src/mainboard/google/brya/variants/nova/overridetree.cb new file mode 100644 index 0000000000..4f2c04a57a --- /dev/null +++ b/src/mainboard/google/brya/variants/nova/overridetree.cb @@ -0,0 +1,6 @@ +chip soc/intel/alderlake + + device domain 0 on + end + +end |