|
|
@@ -1,16 +1,8 @@
|
|
|
-// Copyright 2015-2019 Espressif Systems (Shanghai) PTE LTD
|
|
|
-//
|
|
|
-// Licensed under the Apache License, Version 2.0 (the "License");
|
|
|
-// you may not use this file except in compliance with the License.
|
|
|
-// You may obtain a copy of the License at
|
|
|
-//
|
|
|
-// http://www.apache.org/licenses/LICENSE-2.0
|
|
|
-//
|
|
|
-// Unless required by applicable law or agreed to in writing, software
|
|
|
-// distributed under the License is distributed on an "AS IS" BASIS,
|
|
|
-// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
|
-// See the License for the specific language governing permissions and
|
|
|
-// limitations under the License.
|
|
|
+/*
|
|
|
+ * SPDX-FileCopyrightText: 2015-2022 Espressif Systems (Shanghai) CO LTD
|
|
|
+ *
|
|
|
+ * SPDX-License-Identifier: Apache-2.0
|
|
|
+ */
|
|
|
|
|
|
#include <stdlib.h>
|
|
|
#include <string.h>
|
|
|
@@ -20,6 +12,7 @@
|
|
|
#include "hal/spi_flash_encrypt_hal.h"
|
|
|
#include "esp_log.h"
|
|
|
#include "esp_attr.h"
|
|
|
+#include "esp_private/spi_flash_os.h"
|
|
|
|
|
|
typedef struct flash_chip_dummy {
|
|
|
uint8_t dio_dummy_bitlen;
|
|
|
@@ -69,6 +62,12 @@ const DRAM_ATTR flash_chip_op_timeout_t spi_flash_chip_generic_timeout = {
|
|
|
.page_program_timeout = SPI_FLASH_GENERIC_PAGE_PROGRAM_TIMEOUT_MS * 1000,
|
|
|
};
|
|
|
|
|
|
+#define SET_FLASH_ERASE_STATUS(CHIP, status) do { \
|
|
|
+ if (CHIP->os_func->set_flash_op_status) { \
|
|
|
+ CHIP->os_func->set_flash_op_status(status); \
|
|
|
+ } \
|
|
|
+} while(0)
|
|
|
+
|
|
|
static const char TAG[] = "chip_generic";
|
|
|
|
|
|
#ifndef CONFIG_SPI_FLASH_ROM_IMPL
|
|
|
@@ -130,6 +129,7 @@ esp_err_t spi_flash_chip_generic_erase_chip(esp_flash_t *chip)
|
|
|
}
|
|
|
//The chip didn't accept the previous write command. Ignore this in preparation stage.
|
|
|
if (err == ESP_OK || err == ESP_ERR_NOT_SUPPORTED) {
|
|
|
+ SET_FLASH_ERASE_STATUS(chip, SPI_FLASH_OS_IS_ERASING_STATUS_FLAG);
|
|
|
chip->host->driver->erase_chip(chip->host);
|
|
|
chip->busy = 1;
|
|
|
#ifdef CONFIG_SPI_FLASH_CHECK_ERASE_TIMEOUT_DISABLED
|
|
|
@@ -137,6 +137,7 @@ esp_err_t spi_flash_chip_generic_erase_chip(esp_flash_t *chip)
|
|
|
#else
|
|
|
err = chip->chip_drv->wait_idle(chip, chip->chip_drv->timeout->chip_erase_timeout);
|
|
|
#endif
|
|
|
+ SET_FLASH_ERASE_STATUS(chip, 0);
|
|
|
}
|
|
|
// Ensure WEL is 0, even if the erase failed.
|
|
|
if (err == ESP_ERR_NOT_SUPPORTED) {
|
|
|
@@ -154,6 +155,7 @@ esp_err_t spi_flash_chip_generic_erase_sector(esp_flash_t *chip, uint32_t start_
|
|
|
}
|
|
|
//The chip didn't accept the previous write command. Ignore this in preparationstage.
|
|
|
if (err == ESP_OK || err == ESP_ERR_NOT_SUPPORTED) {
|
|
|
+ SET_FLASH_ERASE_STATUS(chip, SPI_FLASH_OS_IS_ERASING_STATUS_FLAG);
|
|
|
chip->host->driver->erase_sector(chip->host, start_address);
|
|
|
chip->busy = 1;
|
|
|
#ifdef CONFIG_SPI_FLASH_CHECK_ERASE_TIMEOUT_DISABLED
|
|
|
@@ -161,6 +163,7 @@ esp_err_t spi_flash_chip_generic_erase_sector(esp_flash_t *chip, uint32_t start_
|
|
|
#else
|
|
|
err = chip->chip_drv->wait_idle(chip, chip->chip_drv->timeout->sector_erase_timeout);
|
|
|
#endif
|
|
|
+ SET_FLASH_ERASE_STATUS(chip, 0);
|
|
|
}
|
|
|
// Ensure WEL is 0, even if the erase failed.
|
|
|
if (err == ESP_ERR_NOT_SUPPORTED) {
|
|
|
@@ -178,6 +181,7 @@ esp_err_t spi_flash_chip_generic_erase_block(esp_flash_t *chip, uint32_t start_a
|
|
|
}
|
|
|
//The chip didn't accept the previous write command. Ignore this in preparationstage.
|
|
|
if (err == ESP_OK || err == ESP_ERR_NOT_SUPPORTED) {
|
|
|
+ SET_FLASH_ERASE_STATUS(chip, SPI_FLASH_OS_IS_ERASING_STATUS_FLAG);
|
|
|
chip->host->driver->erase_block(chip->host, start_address);
|
|
|
chip->busy = 1;
|
|
|
#ifdef CONFIG_SPI_FLASH_CHECK_ERASE_TIMEOUT_DISABLED
|
|
|
@@ -185,6 +189,7 @@ esp_err_t spi_flash_chip_generic_erase_block(esp_flash_t *chip, uint32_t start_a
|
|
|
#else
|
|
|
err = chip->chip_drv->wait_idle(chip, chip->chip_drv->timeout->block_erase_timeout);
|
|
|
#endif
|
|
|
+ SET_FLASH_ERASE_STATUS(chip, 0);
|
|
|
}
|
|
|
// Ensure WEL is 0, even if the erase failed.
|
|
|
if (err == ESP_ERR_NOT_SUPPORTED) {
|