aboutsummaryrefslogtreecommitdiff
path: root/src/mainboard/google/octopus/variants/meep/include/variant
diff options
context:
space:
mode:
authorWisley Chen <wisley.chen@quantatw.com>2019-07-23 14:33:04 +0800
committerFurquan Shaikh <furquan@google.com>2019-07-31 01:56:59 +0000
commita0a83e1a6c526d5877c83122a1682704c6ec178d (patch)
tree7bb8fe2fffbeb9008195d5a2678892b9b3b42019 /src/mainboard/google/octopus/variants/meep/include/variant
parent3b3417783099f65cea3ae0130c34fa897052327e (diff)
mb/google/octopus: Override DDI1 DDC SDA/SCL for HDMI
The device Dorp uses the variant Meep, and supports HDMI. -sku33 (HDMI) -sku34 (HDMI + keyboard backlight) -sku35 (HDMI + Touchscreen) -sku36 (HDMI + keyboard backlight + Touchscreen) BUG=b:136522841 BRANCH=octopus TEST=emerge-octopus coreboot Change-Id: I59ba2e56cf2f83ca9d533454570bcdd39c0a2e7c Signed-off-by: Wisley Chen <wisley.chen@quantatw.com> Reviewed-on: https://review.coreboot.org/c/coreboot/+/34509 Reviewed-by: Marco Chen <marcochen@google.com> Reviewed-by: Justin TerAvest <teravest@chromium.org> Tested-by: build bot (Jenkins) <no-reply@coreboot.org>
Diffstat (limited to 'src/mainboard/google/octopus/variants/meep/include/variant')
-rw-r--r--src/mainboard/google/octopus/variants/meep/include/variant/sku.h27
1 files changed, 27 insertions, 0 deletions
diff --git a/src/mainboard/google/octopus/variants/meep/include/variant/sku.h b/src/mainboard/google/octopus/variants/meep/include/variant/sku.h
new file mode 100644
index 0000000000..1fd17efdd1
--- /dev/null
+++ b/src/mainboard/google/octopus/variants/meep/include/variant/sku.h
@@ -0,0 +1,27 @@
+/*
+ * This file is part of the coreboot project.
+ *
+ * Copyright 2019 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_SKU_H__
+#define __MAINBOARD_SKU_H__
+
+enum {
+
+ SKU_33_DORP = 33, /* HDMI */
+ SKU_34_DORP = 34, /* HDMI+Kblight */
+ SKU_35_DORP = 35, /* HDMI+TS */
+ SKU_36_DORP = 36, /* HDMI+TS+KBlight */
+};
+
+#endif /* __MAINBOARD_SKU_H__ */