summaryrefslogtreecommitdiff
path: root/board/waddledoo/board.c
diff options
context:
space:
mode:
authorAseda Aboagye <aaboagye@google.com>2020-01-06 12:16:21 -0800
committerJustin TerAvest <teravest@chromium.org>2020-01-07 18:46:01 +0000
commit38f229344c427f9db05a6ed760314b96998acff4 (patch)
tree9d0c8456a6f9bb942387e547a73e7d94438df7be /board/waddledoo/board.c
parent628b59688aaa9e5b9b38264d42b66c57b9b889ee (diff)
downloadchrome-ec-38f229344c427f9db05a6ed760314b96998acff4.tar.gz
waddledoo: Initial commit
This is the initial commit for waddledoo, the NPCX796FC variant of dedede. This commit adds ADC channels and i2c ports and some scaffolding such that the board will compile. More features will be coming in subsequent commits. BUG=b:146172102 BRANCH=None TEST=`make -j BOARD=waddledoo` Change-Id: I8277f6ce843fc155bd97f7f46fd96ab98cfe0881 Signed-off-by: Aseda Aboagye <aaboagye@google.com> Reviewed-on: https://chromium-review.googlesource.com/c/chromiumos/platform/ec/+/1988596 Tested-by: Aseda Aboagye <aaboagye@chromium.org> Reviewed-by: Diana Z <dzigterman@chromium.org> Commit-Queue: Aseda Aboagye <aaboagye@chromium.org> Auto-Submit: Aseda Aboagye <aaboagye@chromium.org>
Diffstat (limited to 'board/waddledoo/board.c')
-rw-r--r--board/waddledoo/board.c17
1 files changed, 17 insertions, 0 deletions
diff --git a/board/waddledoo/board.c b/board/waddledoo/board.c
new file mode 100644
index 0000000000..019849bd94
--- /dev/null
+++ b/board/waddledoo/board.c
@@ -0,0 +1,17 @@
+/* Copyright 2020 The Chromium OS Authors. All rights reserved.
+ * Use of this source code is governed by a BSD-style license that can be
+ * found in the LICENSE file.
+ */
+
+/* Waddledoo board-specific configuration */
+
+#include "adc_chip.h"
+#include "common.h"
+#include "compile_time_macros.h"
+#include "gpio.h"
+#include "i2c.h"
+#include "lid_switch.h"
+#include "power_button.h"
+#include "switch.h"
+
+#include "gpio_list.h"