summaryrefslogtreecommitdiffstats
path: root/src/mainboard/google/rex/mainboard.c
diff options
context:
space:
mode:
authorEric Lai <eric_lai@quanta.corp-partner.google.com>2022-05-23 15:47:20 +0800
committerSubrata Banik <subratabanik@google.com>2022-07-01 07:23:19 +0000
commitf6c52f46846b4d6157bc1cddbadbbece8a872afc (patch)
treecb76e1c8c85ae35d8ee777905ae5753bf5838d1f /src/mainboard/google/rex/mainboard.c
parent03b392355c84a5c868a96470e1b96e3d422fb85a (diff)
downloadcoreboot-f6c52f46846b4d6157bc1cddbadbbece8a872afc.tar.gz
coreboot-f6c52f46846b4d6157bc1cddbadbbece8a872afc.tar.bz2
coreboot-f6c52f46846b4d6157bc1cddbadbbece8a872afc.zip
mb/google/rex: Add entry stubs of each stage
Add entry point stubs of each stage for Rex. More functionalities will be added later. BUG=b:224325352 TEST=util/abuild/abuild -p none -t google/rex -a -c max Signed-off-by: Eric Lai <eric_lai@quanta.corp-partner.google.com> Change-Id: I2310e58ab92bdb0ce86a9f7284cc0b3e04a2889f Reviewed-on: https://review.coreboot.org/c/coreboot/+/64591 Reviewed-by: Tarun Tuli <taruntuli@google.com> Tested-by: build bot (Jenkins) <no-reply@coreboot.org>
Diffstat (limited to 'src/mainboard/google/rex/mainboard.c')
-rw-r--r--src/mainboard/google/rex/mainboard.c18
1 files changed, 18 insertions, 0 deletions
diff --git a/src/mainboard/google/rex/mainboard.c b/src/mainboard/google/rex/mainboard.c
new file mode 100644
index 000000000000..3dc2c41d6996
--- /dev/null
+++ b/src/mainboard/google/rex/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,
+};