aboutsummaryrefslogtreecommitdiff
path: root/src/mainboard/google/fizz/variants/endeavour/board.c
diff options
context:
space:
mode:
authorJeff Chase <jnchase@google.com>2020-06-04 17:24:59 -0400
committerPatrick Georgi <pgeorgi@google.com>2020-06-14 16:43:05 +0000
commitad1a835c694954a103e3b023c89bb0892a30497c (patch)
tree1861be80757850c0d51acc233cbf57174bb8f191 /src/mainboard/google/fizz/variants/endeavour/board.c
parent3380faa283cf2c58a9d1c1170549e9a34969eb45 (diff)
mb/google/fizz: add variant chipset display init
The Endeavour variant does not have a DisplayPort input so there's no need to wait for it. BUG=b:147830399 BRANCH=none TEST=boot endeavour; check coreboot logs Signed-off-by: Jeff Chase <jnchase@google.com> Change-Id: I30c7c47f19a61ce66c6c923864d80870d2761859 Reviewed-on: https://review.coreboot.org/c/coreboot/+/42085 Tested-by: build bot (Jenkins) <no-reply@coreboot.org> Reviewed-by: Shelley Chen <shchen@google.com>
Diffstat (limited to 'src/mainboard/google/fizz/variants/endeavour/board.c')
-rw-r--r--src/mainboard/google/fizz/variants/endeavour/board.c19
1 files changed, 19 insertions, 0 deletions
diff --git a/src/mainboard/google/fizz/variants/endeavour/board.c b/src/mainboard/google/fizz/variants/endeavour/board.c
new file mode 100644
index 0000000000..0fdc914cf8
--- /dev/null
+++ b/src/mainboard/google/fizz/variants/endeavour/board.c
@@ -0,0 +1,19 @@
+/* SPDX-License-Identifier: GPL-2.0-only */
+#include <baseboard/variants.h>
+#include <console/console.h>
+#include <nhlt.h>
+#include <soc/nhlt.h>
+
+void variant_nhlt_oem_overrides(const char **oem_id,
+ const char **oem_table_id,
+ uint32_t *oem_revision)
+{
+ *oem_id = "GOOGLE";
+ *oem_table_id = "ENDEAVOUR";
+ *oem_revision = 0;
+}
+
+void variant_chip_display_init(void)
+{
+
+}