aboutsummaryrefslogtreecommitdiff
path: root/src/mainboard/google/guybrush/mainboard.c
diff options
context:
space:
mode:
authorMathew King <mathewk@chromium.org>2020-12-08 11:33:58 -0700
committerHung-Te Lin <hungte@chromium.org>2020-12-17 06:23:08 +0000
commit2e2fc7a4f0e9d14591ce2868840af3043d5147f3 (patch)
treea3f65f4e316232c7444418ae5bbc5c0f51e4258c /src/mainboard/google/guybrush/mainboard.c
parent2031221fbda5100556933fb225f9199b88aeebac (diff)
mb/google/guybrush: Add new mainboard
Guybrush is a new Google mainboard with an AMD SOC. BUG=b:175143925 TEST=builds Change-Id: I1792f21ff7616f364ddc8b0c04481049b2a5fb04 Signed-off-by: Mathew King <mathewk@chromium.org> Reviewed-on: https://review.coreboot.org/c/coreboot/+/48479 Reviewed-by: Furquan Shaikh <furquan@google.com> Reviewed-by: Karthik Ramasubramanian <kramasub@google.com> Tested-by: build bot (Jenkins) <no-reply@coreboot.org>
Diffstat (limited to 'src/mainboard/google/guybrush/mainboard.c')
-rw-r--r--src/mainboard/google/guybrush/mainboard.c18
1 files changed, 18 insertions, 0 deletions
diff --git a/src/mainboard/google/guybrush/mainboard.c b/src/mainboard/google/guybrush/mainboard.c
new file mode 100644
index 0000000000..3dc2c41d69
--- /dev/null
+++ b/src/mainboard/google/guybrush/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,
+};