summaryrefslogtreecommitdiff
path: root/board/volteer/board.h
diff options
context:
space:
mode:
authorKeith Short <keithshort@chromium.org>2019-08-15 13:04:43 -0600
committerCommit Bot <commit-bot@chromium.org>2019-08-20 15:32:39 +0000
commit6fe0f643a1012d6aff2fe9874619238aa2e2284b (patch)
tree9890f9553e67cc2e3fd4193baa345371ad7b7934 /board/volteer/board.h
parentd7bb1b0e0a24571f01ca048185bd8b9d882c4f8f (diff)
downloadchrome-ec-6fe0f643a1012d6aff2fe9874619238aa2e2284b.tar.gz
Volteer: initial EC board setup
Create Volteer skeleton build. Only includes base NPCX7 configuration required to build. BUG=none BRANCH=none TEST=make BOARD=volteer, make buildall TEST=Booted skeleton volteer EC image on careena board. Change-Id: I07769edfac9818320f18bbc9d0ebcd8f345fb8bb Signed-off-by: Keith Short <keithshort@chromium.org> Reviewed-on: https://chromium-review.googlesource.com/c/chromiumos/platform/ec/+/1758532 Reviewed-by: Abe Levkoy <alevkoy@chromium.org> Reviewed-by: Jett Rink <jettrink@chromium.org>
Diffstat (limited to 'board/volteer/board.h')
-rw-r--r--board/volteer/board.h58
1 files changed, 58 insertions, 0 deletions
diff --git a/board/volteer/board.h b/board/volteer/board.h
new file mode 100644
index 0000000000..f8d899c8b4
--- /dev/null
+++ b/board/volteer/board.h
@@ -0,0 +1,58 @@
+/* Copyright 2019 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.
+ */
+
+/* Volteer board configuration */
+
+#ifndef __CROS_EC_BOARD_H
+#define __CROS_EC_BOARD_H
+
+/* Baseboard features */
+#include "baseboard.h"
+
+/* Optional features */
+#define CONFIG_SYSTEM_UNLOCKED /* Allow dangerous commands while in dev. */
+
+/* Config options automatically enabled by NPCX, re-enable once support added */
+#undef CONFIG_ADC
+#undef CONFIG_SWITCH
+
+#undef CONFIG_UART_TX_BUF_SIZE
+#define CONFIG_UART_TX_BUF_SIZE 4096
+
+/* Keyboard features */
+
+/* Sensors */
+
+/* USB Type C and USB PD defines */
+
+/* USB Type A Features */
+
+/* BC 1.2 */
+
+/* Volume Button feature */
+
+/* Fan features */
+
+/*
+ * Macros for GPIO signals used in common code that don't match the
+ * schematic names. Signal names in gpio.inc match the schematic and are
+ * then redefined here to so it's more clear which signal is being used for
+ * which purpose.
+ */
+#define GPIO_ENTERING_RW GPIO_EC_ENTERING_RW
+#define GPIO_LID_OPEN GPIO_EC_LID_OPEN
+#define GPIO_WP_L GPIO_EC_WP_L
+
+
+
+#ifndef __ASSEMBLER__
+
+#include "gpio_signal.h"
+#include "registers.h"
+
+
+#endif /* !__ASSEMBLER__ */
+
+#endif /* __CROS_EC_BOARD_H */