summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorArtyom Skrobov <tyomitch@gmail.com>2021-03-13 07:03:36 -0500
committerArtyom Skrobov <tyomitch@gmail.com>2021-03-23 02:11:54 -0400
commit3b613ff97c1e9e96bb71a6685fd19be5049499e0 (patch)
tree42a803f58a5f933c481aec19e1bdc94f032b8b2d
parent98425c9a9d594d05249bcf4e8edf47075d613111 (diff)
[spi_flash] handle reentrance gracefully
Report failure instead of deadlocking the device
-rw-r--r--supervisor/shared/external_flash/spi_flash.c24
1 files changed, 16 insertions, 8 deletions
diff --git a/supervisor/shared/external_flash/spi_flash.c b/supervisor/shared/external_flash/spi_flash.c
index 3ddd92b5e..4f7d5f6d3 100644
--- a/supervisor/shared/external_flash/spi_flash.c
+++ b/supervisor/shared/external_flash/spi_flash.c
@@ -42,10 +42,12 @@ const external_flash_device *flash_device;
uint32_t spi_flash_baudrate;
// Enable the flash over SPI.
-static void flash_enable(void) {
- while (!common_hal_busio_spi_try_lock(&supervisor_flash_spi_bus)) {
+static bool flash_enable(void) {
+ if (common_hal_busio_spi_try_lock(&supervisor_flash_spi_bus)) {
+ common_hal_digitalio_digitalinout_set_value(&cs_pin, false);
+ return true;
}
- common_hal_digitalio_digitalinout_set_value(&cs_pin, false);
+ return false;
}
// Disable the flash over SPI.
@@ -54,8 +56,10 @@ static void flash_disable(void) {
common_hal_busio_spi_unlock(&supervisor_flash_spi_bus);
}
-static bool transfer(uint8_t *command, uint32_t command_length, uint8_t *data_in, uint8_t *data_out, uint32_t data_length) {
- flash_enable();
+static bool transfer(uint8_t* command, uint32_t command_length, uint8_t* data_in, uint8_t* data_out, uint32_t data_length) {
+ if (!flash_enable()) {
+ return false;
+ }
bool status = common_hal_busio_spi_write(&supervisor_flash_spi_bus, command, command_length);
if (status) {
if (data_in != NULL && data_out != NULL) {
@@ -103,7 +107,9 @@ bool spi_flash_write_data(uint32_t address, uint8_t *data, uint32_t data_length)
uint8_t request[4] = {CMD_PAGE_PROGRAM, 0x00, 0x00, 0x00};
// Write the SPI flash write address into the bytes following the command byte.
address_to_bytes(address, request + 1);
- flash_enable();
+ if (!flash_enable()) {
+ return false;
+ }
common_hal_busio_spi_configure(&supervisor_flash_spi_bus, spi_flash_baudrate, 0, 0, 8);
bool status = common_hal_busio_spi_write(&supervisor_flash_spi_bus, request, 4);
if (status) {
@@ -120,9 +126,11 @@ bool spi_flash_read_data(uint32_t address, uint8_t *data, uint32_t data_length)
request[0] = CMD_FAST_READ_DATA;
command_length = 5;
}
- // Write the SPI flash write address into the bytes following the command byte.
+ // Write the SPI flash read address into the bytes following the command byte.
address_to_bytes(address, request + 1);
- flash_enable();
+ if (!flash_enable()) {
+ return false;
+ }
common_hal_busio_spi_configure(&supervisor_flash_spi_bus, spi_flash_baudrate, 0, 0, 8);
bool status = common_hal_busio_spi_write(&supervisor_flash_spi_bus, request, command_length);
if (status) {