summaryrefslogtreecommitdiff
path: root/board/cr50/board.c
diff options
context:
space:
mode:
Diffstat (limited to 'board/cr50/board.c')
-rw-r--r--board/cr50/board.c7
1 files changed, 7 insertions, 0 deletions
diff --git a/board/cr50/board.c b/board/cr50/board.c
index 139b550087..4640064c81 100644
--- a/board/cr50/board.c
+++ b/board/cr50/board.c
@@ -15,6 +15,7 @@
#include "usb_descriptor.h"
#include "usb_hid.h"
#include "util.h"
+#include "spi.h"
/* Define interrupt and gpio structs */
#include "gpio_list.h"
@@ -123,6 +124,12 @@ const void * const usb_strings[] = {
BUILD_ASSERT(ARRAY_SIZE(usb_strings) == USB_STR_COUNT);
#endif
+/* SPI devices */
+const struct spi_device_t spi_devices[] = {
+ [CONFIG_SPI_FLASH_PORT] = {0, 4, GPIO_COUNT}
+};
+const unsigned int spi_devices_used = ARRAY_SIZE(spi_devices);
+
int flash_regions_to_enable(struct g_flash_region *regions,
int max_regions)
{