summaryrefslogtreecommitdiff
path: root/board/kukui_scp/board.h
diff options
context:
space:
mode:
Diffstat (limited to 'board/kukui_scp/board.h')
-rw-r--r--board/kukui_scp/board.h41
1 files changed, 41 insertions, 0 deletions
diff --git a/board/kukui_scp/board.h b/board/kukui_scp/board.h
new file mode 100644
index 0000000000..db456f9d9b
--- /dev/null
+++ b/board/kukui_scp/board.h
@@ -0,0 +1,41 @@
+/* Copyright 2018 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.
+ */
+
+/* Kukui SCP configuration */
+
+#ifndef __CROS_EC_BOARD_H
+#define __CROS_EC_BOARD_H
+
+#define CONFIG_FLASH_SIZE 0x40000 /* Image file size: 256KB */
+#undef CONFIG_LID_SWITCH
+#undef CONFIG_FW_INCLUDE_RO
+
+#undef CONFIG_UART_CONSOLE
+/*
+ * CONFIG_UART_CONSOLE
+ * 0 - SCP UART0
+ * 1 - SCP UART1
+ * 2 - share with AP UART0
+ */
+#define CONFIG_UART_CONSOLE 0
+#define UART0_PINMUX_11_12
+#undef UART0_PINMUX_110_112
+
+/*
+ * Allow dangerous commands all the time, since we don't have a write protect
+ * switch.
+ */
+#define CONFIG_SYSTEM_UNLOCKED
+/* Debugging features */
+#define CONFIG_DEBUG_EXCEPTIONS
+#define CONFIG_DEBUG_STACK_OVERFLOW
+#define CONFIG_CMD_GPIO_EXTENDED
+
+#ifndef __ASSEMBLER__
+
+#include "gpio_signal.h"
+
+#endif /* !__ASSEMBLER__ */
+#endif /* __CROS_EC_BOARD_H */