2021-11-06 17:23:21 +08:00
|
|
|
/*
|
2022-01-18 10:32:56 +08:00
|
|
|
* SPDX-FileCopyrightText: 2015-2022 Espressif Systems (Shanghai) CO LTD
|
2021-11-06 17:23:21 +08:00
|
|
|
*
|
|
|
|
* SPDX-License-Identifier: Apache-2.0
|
|
|
|
*/
|
2019-01-08 18:29:25 +08:00
|
|
|
|
2017-05-24 12:35:12 +10:00
|
|
|
#include <stdarg.h>
|
2019-08-08 15:27:22 +10:00
|
|
|
#include "sdkconfig.h"
|
2019-01-08 18:29:25 +08:00
|
|
|
#include "esp_flash.h"
|
2019-08-08 15:27:22 +10:00
|
|
|
#include "esp_attr.h"
|
2017-05-24 12:35:12 +10:00
|
|
|
|
2020-07-21 13:07:34 +08:00
|
|
|
#include "esp_rom_sys.h"
|
2019-11-28 09:20:00 +08:00
|
|
|
#if CONFIG_IDF_TARGET_ESP32
|
2019-01-08 18:29:25 +08:00
|
|
|
#include "esp32/rom/cache.h"
|
2020-01-17 11:47:08 +08:00
|
|
|
#elif CONFIG_IDF_TARGET_ESP32S2
|
|
|
|
#include "esp32s2/rom/cache.h"
|
2020-07-29 13:13:51 +08:00
|
|
|
#elif CONFIG_IDF_TARGET_ESP32S3
|
|
|
|
#include "esp32s3/rom/ets_sys.h"
|
|
|
|
#include "esp32s3/rom/cache.h"
|
2020-11-26 19:56:13 +11:00
|
|
|
#elif CONFIG_IDF_TARGET_ESP32C3
|
|
|
|
#include "esp32c3/rom/ets_sys.h"
|
|
|
|
#include "esp32c3/rom/cache.h"
|
2021-06-10 19:47:41 +08:00
|
|
|
#elif CONFIG_IDF_TARGET_ESP32H2
|
|
|
|
#include "esp32h2/rom/ets_sys.h"
|
|
|
|
#include "esp32h2/rom/cache.h"
|
2022-01-18 10:32:56 +08:00
|
|
|
#elif CONFIG_IDF_TARGET_ESP32C2
|
|
|
|
#include "esp32c2/rom/ets_sys.h"
|
|
|
|
#include "esp32c2/rom/cache.h"
|
2019-08-08 15:27:22 +10:00
|
|
|
#endif
|
2019-01-08 18:29:25 +08:00
|
|
|
|
2019-11-28 09:20:00 +08:00
|
|
|
#include "esp_attr.h"
|
|
|
|
|
2020-07-29 13:13:51 +08:00
|
|
|
#if CONFIG_IDF_TARGET_ESP32S2 || CONFIG_IDF_TARGET_ESP32S3
|
2019-11-28 09:20:00 +08:00
|
|
|
typedef struct {
|
|
|
|
uint32_t icache_autoload;
|
|
|
|
uint32_t dcache_autoload;
|
2020-04-30 10:37:35 +08:00
|
|
|
} spi_noos_arg_t;
|
2019-11-28 09:20:00 +08:00
|
|
|
|
2020-12-16 14:50:13 +11:00
|
|
|
static DRAM_ATTR spi_noos_arg_t spi_arg = { 0 };
|
2022-01-18 10:32:56 +08:00
|
|
|
#elif CONFIG_IDF_TARGET_ESP32C3 || CONFIG_IDF_TARGET_ESP32H2 || CONFIG_IDF_TARGET_ESP32C2
|
2020-12-16 14:50:13 +11:00
|
|
|
typedef struct {
|
|
|
|
uint32_t icache_autoload;
|
|
|
|
} spi_noos_arg_t;
|
|
|
|
|
2019-11-28 09:20:00 +08:00
|
|
|
static DRAM_ATTR spi_noos_arg_t spi_arg = { 0 };
|
|
|
|
#endif
|
2019-09-12 02:41:00 +08:00
|
|
|
|
|
|
|
static IRAM_ATTR esp_err_t start(void *arg)
|
2017-05-24 12:35:12 +10:00
|
|
|
{
|
2019-11-28 09:20:00 +08:00
|
|
|
#if CONFIG_IDF_TARGET_ESP32
|
2019-01-08 18:29:25 +08:00
|
|
|
Cache_Read_Disable(0);
|
|
|
|
Cache_Read_Disable(1);
|
2020-07-29 13:13:51 +08:00
|
|
|
#elif CONFIG_IDF_TARGET_ESP32S2 || CONFIG_IDF_TARGET_ESP32S3
|
2019-11-28 09:20:00 +08:00
|
|
|
spi_noos_arg_t *spi_arg = arg;
|
|
|
|
spi_arg->icache_autoload = Cache_Suspend_ICache();
|
|
|
|
spi_arg->dcache_autoload = Cache_Suspend_DCache();
|
2022-01-18 10:32:56 +08:00
|
|
|
#elif CONFIG_IDF_TARGET_ESP32C3 || CONFIG_IDF_TARGET_ESP32H2 || CONFIG_IDF_TARGET_ESP32C2
|
2020-12-16 14:50:13 +11:00
|
|
|
spi_noos_arg_t *spi_arg = arg;
|
|
|
|
spi_arg->icache_autoload = Cache_Suspend_ICache();
|
2019-11-28 09:20:00 +08:00
|
|
|
#endif
|
2019-01-08 18:29:25 +08:00
|
|
|
return ESP_OK;
|
2017-05-24 12:35:12 +10:00
|
|
|
}
|
2019-09-12 02:41:00 +08:00
|
|
|
|
|
|
|
static IRAM_ATTR esp_err_t end(void *arg)
|
2017-05-24 12:35:12 +10:00
|
|
|
{
|
2019-11-28 09:20:00 +08:00
|
|
|
#if CONFIG_IDF_TARGET_ESP32
|
2019-01-08 18:29:25 +08:00
|
|
|
Cache_Flush(0);
|
|
|
|
Cache_Flush(1);
|
|
|
|
Cache_Read_Enable(0);
|
|
|
|
Cache_Read_Enable(1);
|
2020-07-29 13:13:51 +08:00
|
|
|
#elif CONFIG_IDF_TARGET_ESP32S2 || CONFIG_IDF_TARGET_ESP32S3
|
2019-11-28 09:20:00 +08:00
|
|
|
spi_noos_arg_t *spi_arg = arg;
|
|
|
|
Cache_Invalidate_ICache_All();
|
|
|
|
Cache_Resume_ICache(spi_arg->icache_autoload);
|
|
|
|
Cache_Resume_DCache(spi_arg->dcache_autoload);
|
2022-01-18 10:32:56 +08:00
|
|
|
#elif CONFIG_IDF_TARGET_ESP32C3 || CONFIG_IDF_TARGET_ESP32H2 || CONFIG_IDF_TARGET_ESP32C2
|
2020-11-26 19:56:13 +11:00
|
|
|
spi_noos_arg_t *spi_arg = arg;
|
|
|
|
Cache_Invalidate_ICache_All();
|
|
|
|
Cache_Resume_ICache(spi_arg->icache_autoload);
|
2019-11-28 09:20:00 +08:00
|
|
|
#endif
|
2019-01-08 18:29:25 +08:00
|
|
|
return ESP_OK;
|
2017-05-24 12:35:12 +10:00
|
|
|
}
|
|
|
|
|
2020-08-21 12:09:52 +08:00
|
|
|
static IRAM_ATTR esp_err_t delay_us(void *arg, uint32_t us)
|
2017-05-24 12:35:12 +10:00
|
|
|
{
|
2020-07-21 13:07:34 +08:00
|
|
|
esp_rom_delay_us(us);
|
2019-01-08 18:29:25 +08:00
|
|
|
return ESP_OK;
|
2017-05-24 12:35:12 +10:00
|
|
|
}
|
|
|
|
|
2020-12-16 14:50:13 +11:00
|
|
|
// Currently when the os is not up yet, the caller is supposed to call esp_flash APIs with proper
|
|
|
|
// buffers.
|
|
|
|
IRAM_ATTR void* get_temp_buffer_not_supported(void* arg, size_t reqest_size, size_t* out_size)
|
|
|
|
{
|
|
|
|
return NULL;
|
|
|
|
}
|
|
|
|
|
2019-09-12 02:41:00 +08:00
|
|
|
const DRAM_ATTR esp_flash_os_functions_t esp_flash_noos_functions = {
|
2017-05-24 12:35:12 +10:00
|
|
|
.start = start,
|
|
|
|
.end = end,
|
2020-05-08 17:35:22 +08:00
|
|
|
.delay_us = delay_us,
|
2019-09-12 02:41:00 +08:00
|
|
|
.region_protected = NULL,
|
2020-07-29 11:39:56 +02:00
|
|
|
/* the caller is supposed to call esp_flash_read/esp_flash_write APIs with buffers in DRAM */
|
|
|
|
.get_temp_buffer = NULL,
|
|
|
|
.release_temp_buffer = NULL,
|
2020-05-29 21:52:48 +02:00
|
|
|
.yield = NULL,
|
2017-05-24 12:35:12 +10:00
|
|
|
};
|
2019-09-12 02:41:00 +08:00
|
|
|
|
|
|
|
esp_err_t IRAM_ATTR esp_flash_app_disable_os_functions(esp_flash_t* chip)
|
|
|
|
{
|
|
|
|
chip->os_func = &esp_flash_noos_functions;
|
2019-11-28 09:20:00 +08:00
|
|
|
|
2020-11-26 19:56:13 +11:00
|
|
|
#if !CONFIG_IDF_TARGET_ESP32
|
2019-11-28 09:20:00 +08:00
|
|
|
chip->os_func_data = &spi_arg;
|
|
|
|
#endif
|
|
|
|
|
2019-09-12 02:41:00 +08:00
|
|
|
return ESP_OK;
|
|
|
|
}
|