aboutsummaryrefslogtreecommitdiff
path: root/src/mainboard/google/mancomb/mainboard.c
diff options
context:
space:
mode:
authorMathew King <mathewk@chromium.org>2020-12-08 11:33:58 -0700
committerPatrick Georgi <pgeorgi@google.com>2021-02-19 08:38:58 +0000
commit422501fb14780090527c9a45bcca6628cd6bba71 (patch)
tree3892b8ffd3ba9ff54e50f73669fab64db08f638e /src/mainboard/google/mancomb/mainboard.c
parente75f1807e1150eaf777a12a0503a9b5b7d302bc7 (diff)
mb/google/mancomb: Add new mainboard
Mancomb is a new Google mainboard with an AMD Cezanne SOC. BUG=b:175143925 TEST=builds Change-Id: I1264f44a0b986f7f7c89ac7b42f1e4e4119a35e6 Signed-off-by: Mathew King <mathewk@chromium.org> Reviewed-on: https://review.coreboot.org/c/coreboot/+/50007 Reviewed-by: Felix Held <felix-coreboot@felixheld.de> Reviewed-by: EricR Lai <ericr_lai@compal.corp-partner.google.com> Tested-by: build bot (Jenkins) <no-reply@coreboot.org>
Diffstat (limited to 'src/mainboard/google/mancomb/mainboard.c')
-rw-r--r--src/mainboard/google/mancomb/mainboard.c18
1 files changed, 18 insertions, 0 deletions
diff --git a/src/mainboard/google/mancomb/mainboard.c b/src/mainboard/google/mancomb/mainboard.c
new file mode 100644
index 0000000000..3dc2c41d69
--- /dev/null
+++ b/src/mainboard/google/mancomb/mainboard.c
@@ -0,0 +1,18 @@
+/* SPDX-License-Identifier: GPL-2.0-or-later */
+
+#include <device/device.h>
+
+static void mainboard_init(void *chip_info)
+{
+ /* TODO: Perform mainboard initialization */
+}
+
+static void mainboard_enable(struct device *dev)
+{
+ /* TODO: Enable mainboard */
+}
+
+struct chip_operations mainboard_ops = {
+ .init = mainboard_init,
+ .enable_dev = mainboard_enable,
+};