summaryrefslogtreecommitdiff
path: root/board/deltaur/board.c
diff options
context:
space:
mode:
Diffstat (limited to 'board/deltaur/board.c')
-rw-r--r--board/deltaur/board.c29
1 files changed, 29 insertions, 0 deletions
diff --git a/board/deltaur/board.c b/board/deltaur/board.c
new file mode 100644
index 0000000000..28483c6315
--- /dev/null
+++ b/board/deltaur/board.c
@@ -0,0 +1,29 @@
+/* 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.
+ */
+
+/* Deltaur board-specific configuration */
+
+#include "common.h"
+#include "system.h"
+#include "task.h"
+#include "spi.h"
+#include "util.h"
+
+#include "gpio_list.h" /* Must come after other header files. */
+
+/*
+ * TODO(b/148160415): Evaluate if hibernate wake signals are needed
+ */
+const enum gpio_signal hibernate_wake_pins[] = {};
+const int hibernate_wake_pins_used;
+
+/******************************************************************************/
+/* SPI devices */
+/*
+ * TODO(b/148160415): Evaluate if external flash needs to be set here
+ */
+const struct spi_device_t spi_devices[] = {
+};
+const unsigned int spi_devices_used = ARRAY_SIZE(spi_devices);