aboutsummaryrefslogtreecommitdiff
path: root/src/mainboard/facebook/watson/mainboard.c
diff options
context:
space:
mode:
authorDavid Hendricks <dhendricks@fb.com>2018-04-24 14:37:38 -0700
committerPhilipp Deppenwiese <zaolin.daisuki@gmail.com>2018-06-26 15:17:29 +0000
commit5f187dbe6344d0e3dad4277e64efaf0f0092b559 (patch)
tree9c4dae08cf98b398f12c33051f5ccfaadc08da16 /src/mainboard/facebook/watson/mainboard.c
parentc1072f2fc73926bbe73b507dda2e9346d39e041f (diff)
facebook/watson: Initial commit
This adds another camelbackmountain_fsp derivative, along with a .fmd file for the board. For now it's been tested to build and boot. Change-Id: I9e8804264967c19f6b51fc44575b0db36f600f88 Signed-off-by: David Hendricks <dhendricks@fb.com> Reviewed-on: https://review.coreboot.org/25884 Tested-by: build bot (Jenkins) <no-reply@coreboot.org> Reviewed-by: Patrick Rudolph <siro@das-labor.org>
Diffstat (limited to 'src/mainboard/facebook/watson/mainboard.c')
-rw-r--r--src/mainboard/facebook/watson/mainboard.c30
1 files changed, 30 insertions, 0 deletions
diff --git a/src/mainboard/facebook/watson/mainboard.c b/src/mainboard/facebook/watson/mainboard.c
new file mode 100644
index 0000000000..e6b78501a4
--- /dev/null
+++ b/src/mainboard/facebook/watson/mainboard.c
@@ -0,0 +1,30 @@
+/*
+ * This file is part of the coreboot project.
+ *
+ * Copyright (C) 2007-2009 coresystems GmbH
+ * Copyright (C) 2011 Google Inc.
+ *
+ * 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.
+ */
+
+#include <device/device.h>
+
+/*
+ * mainboard_enable is executed as first thing after enumerate_buses().
+ * This is the earliest point to add customization.
+ */
+static void mainboard_enable(struct device *dev)
+{
+
+}
+
+struct chip_operations mainboard_ops = {
+ .enable_dev = mainboard_enable,
+};