summaryrefslogtreecommitdiff
path: root/board/brya/board.c
diff options
context:
space:
mode:
authorCaveh Jalali <caveh@chromium.org>2020-10-16 00:52:52 -0700
committerCommit Bot <commit-bot@chromium.org>2020-11-19 20:52:57 +0000
commitc6002497c6ac39f84541686836de0aa6488802f7 (patch)
treee2958d2eb7f8cabe9c4ca76cb8d7e8ae6d7ec3f0 /board/brya/board.c
parent82a761da1b46229283672fb94ad617327d7149b1 (diff)
downloadchrome-ec-c6002497c6ac39f84541686836de0aa6488802f7.tar.gz
brya: add skeletal board and baseboard build
this adds a minimal build for a new board called brya. brya will be the basis for a family of boards, so this also introduces a new baseboard called brya. the primary goal is to introduce a build target to enable iterative development of this board. BRANCH=none BUG=b:173575131 TEST=make BOARD=brya, make buildall, verified ec.bin is generated Change-Id: I27a64594b84c69ee43ee91227c47391a801dee44 Signed-off-by: Caveh Jalali <caveh@chromium.org> Reviewed-on: https://chromium-review.googlesource.com/c/chromiumos/platform/ec/+/2546802 Reviewed-by: Keith Short <keithshort@chromium.org>
Diffstat (limited to 'board/brya/board.c')
-rw-r--r--board/brya/board.c12
1 files changed, 12 insertions, 0 deletions
diff --git a/board/brya/board.c b/board/brya/board.c
new file mode 100644
index 0000000000..6e945463ee
--- /dev/null
+++ b/board/brya/board.c
@@ -0,0 +1,12 @@
+/* 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.
+ */
+
+#include "registers.h"
+
+static void fake_gpio_interrupt(enum gpio_signal signal)
+{
+}
+
+#include "gpio_list.h"