2021-11-06 05:23:21 -04:00
|
|
|
/*
|
2022-01-17 21:32:56 -05:00
|
|
|
* SPDX-FileCopyrightText: 2015-2022 Espressif Systems (Shanghai) CO LTD
|
2021-11-06 05:23:21 -04:00
|
|
|
*
|
|
|
|
* SPDX-License-Identifier: Apache-2.0
|
|
|
|
*/
|
2019-01-08 05:29:25 -05:00
|
|
|
|
2017-05-23 22:35:12 -04:00
|
|
|
#include <stdarg.h>
|
2019-08-08 01:27:22 -04:00
|
|
|
#include "sdkconfig.h"
|
2019-01-08 05:29:25 -05:00
|
|
|
#include "esp_flash.h"
|
2019-08-08 01:27:22 -04:00
|
|
|
#include "esp_attr.h"
|
2017-05-23 22:35:12 -04:00
|
|
|
|
2020-07-21 01:07:34 -04:00
|
|
|
#include "esp_rom_sys.h"
|
2019-11-27 20:20:00 -05:00
|
|
|
#if CONFIG_IDF_TARGET_ESP32
|
2019-01-08 05:29:25 -05:00
|
|
|
#include "esp32/rom/cache.h"
|
2020-01-16 22:47:08 -05:00
|
|
|
#elif CONFIG_IDF_TARGET_ESP32S2
|
|
|
|
#include "esp32s2/rom/cache.h"
|
2020-07-29 01:13:51 -04:00
|
|
|
#elif CONFIG_IDF_TARGET_ESP32S3
|
|
|
|
#include "esp32s3/rom/ets_sys.h"
|
|
|
|
#include "esp32s3/rom/cache.h"
|
2020-11-26 03:56:13 -05:00
|
|
|
#elif CONFIG_IDF_TARGET_ESP32C3
|
|
|
|
#include "esp32c3/rom/ets_sys.h"
|
|
|
|
#include "esp32c3/rom/cache.h"
|
2022-01-17 21:32:56 -05:00
|
|
|
#elif CONFIG_IDF_TARGET_ESP32C2
|
|
|
|
#include "esp32c2/rom/ets_sys.h"
|
|
|
|
#include "esp32c2/rom/cache.h"
|
2022-07-12 09:19:35 -04:00
|
|
|
#elif CONFIG_IDF_TARGET_ESP32C6
|
|
|
|
#include "esp32c6/rom/ets_sys.h"
|
|
|
|
#include "esp32c6/rom/cache.h"
|
2022-12-28 22:01:13 -05:00
|
|
|
#elif CONFIG_IDF_TARGET_ESP32H2
|
|
|
|
#include "esp32h2/rom/ets_sys.h"
|
|
|
|
#include "esp32h2/rom/cache.h"
|
2019-08-08 01:27:22 -04:00
|
|
|
#endif
|
2019-01-08 05:29:25 -05:00
|
|
|
|
2019-11-27 20:20:00 -05:00
|
|
|
#include "esp_attr.h"
|
|
|
|
|
2020-07-29 01:13:51 -04:00
|
|
|
#if CONFIG_IDF_TARGET_ESP32S2 || CONFIG_IDF_TARGET_ESP32S3
|
2019-11-27 20:20:00 -05:00
|
|
|
typedef struct {
|
|
|
|
uint32_t icache_autoload;
|
|
|
|
uint32_t dcache_autoload;
|
2020-04-29 22:37:35 -04:00
|
|
|
} spi_noos_arg_t;
|
2019-11-27 20:20:00 -05:00
|
|
|
|
2020-12-15 22:50:13 -05:00
|
|
|
static DRAM_ATTR spi_noos_arg_t spi_arg = { 0 };
|
2023-04-13 02:32:25 -04:00
|
|
|
#elif CONFIG_IDF_TARGET_ESP32C3 || CONFIG_IDF_TARGET_ESP32C2 || CONFIG_IDF_TARGET_ESP32C6 || CONFIG_IDF_TARGET_ESP32H2
|
2020-12-15 22:50:13 -05:00
|
|
|
typedef struct {
|
|
|
|
uint32_t icache_autoload;
|
|
|
|
} spi_noos_arg_t;
|
|
|
|
|
2019-11-27 20:20:00 -05:00
|
|
|
static DRAM_ATTR spi_noos_arg_t spi_arg = { 0 };
|
|
|
|
#endif
|
2019-09-11 14:41:00 -04:00
|
|
|
|
|
|
|
static IRAM_ATTR esp_err_t start(void *arg)
|
2017-05-23 22:35:12 -04:00
|
|
|
{
|
2019-11-27 20:20:00 -05:00
|
|
|
#if CONFIG_IDF_TARGET_ESP32
|
2019-01-08 05:29:25 -05:00
|
|
|
Cache_Read_Disable(0);
|
|
|
|
Cache_Read_Disable(1);
|
2020-07-29 01:13:51 -04:00
|
|
|
#elif CONFIG_IDF_TARGET_ESP32S2 || CONFIG_IDF_TARGET_ESP32S3
|
2019-11-27 20:20:00 -05:00
|
|
|
spi_noos_arg_t *spi_arg = arg;
|
|
|
|
spi_arg->icache_autoload = Cache_Suspend_ICache();
|
|
|
|
spi_arg->dcache_autoload = Cache_Suspend_DCache();
|
2023-04-13 02:32:25 -04:00
|
|
|
#elif CONFIG_IDF_TARGET_ESP32C3 || CONFIG_IDF_TARGET_ESP32C2 || CONFIG_IDF_TARGET_ESP32C6 || CONFIG_IDF_TARGET_ESP32H2
|
2020-12-15 22:50:13 -05:00
|
|
|
spi_noos_arg_t *spi_arg = arg;
|
|
|
|
spi_arg->icache_autoload = Cache_Suspend_ICache();
|
2019-11-27 20:20:00 -05:00
|
|
|
#endif
|
2019-01-08 05:29:25 -05:00
|
|
|
return ESP_OK;
|
2017-05-23 22:35:12 -04:00
|
|
|
}
|
2019-09-11 14:41:00 -04:00
|
|
|
|
|
|
|
static IRAM_ATTR esp_err_t end(void *arg)
|
2017-05-23 22:35:12 -04:00
|
|
|
{
|
2019-11-27 20:20:00 -05:00
|
|
|
#if CONFIG_IDF_TARGET_ESP32
|
2019-01-08 05:29:25 -05:00
|
|
|
Cache_Read_Enable(0);
|
|
|
|
Cache_Read_Enable(1);
|
2020-07-29 01:13:51 -04:00
|
|
|
#elif CONFIG_IDF_TARGET_ESP32S2 || CONFIG_IDF_TARGET_ESP32S3
|
2019-11-27 20:20:00 -05: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);
|
2023-04-13 02:32:25 -04:00
|
|
|
#elif CONFIG_IDF_TARGET_ESP32C3 || CONFIG_IDF_TARGET_ESP32C2 || CONFIG_IDF_TARGET_ESP32C6 || CONFIG_IDF_TARGET_ESP32H2
|
2020-11-26 03:56:13 -05:00
|
|
|
spi_noos_arg_t *spi_arg = arg;
|
|
|
|
Cache_Invalidate_ICache_All();
|
|
|
|
Cache_Resume_ICache(spi_arg->icache_autoload);
|
2019-11-27 20:20:00 -05:00
|
|
|
#endif
|
2019-01-08 05:29:25 -05:00
|
|
|
return ESP_OK;
|
2017-05-23 22:35:12 -04:00
|
|
|
}
|
|
|
|
|
2020-08-21 00:09:52 -04:00
|
|
|
static IRAM_ATTR esp_err_t delay_us(void *arg, uint32_t us)
|
2017-05-23 22:35:12 -04:00
|
|
|
{
|
2020-07-21 01:07:34 -04:00
|
|
|
esp_rom_delay_us(us);
|
2019-01-08 05:29:25 -05:00
|
|
|
return ESP_OK;
|
2017-05-23 22:35:12 -04:00
|
|
|
}
|
|
|
|
|
2020-12-15 22:50:13 -05: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-11 14:41:00 -04:00
|
|
|
const DRAM_ATTR esp_flash_os_functions_t esp_flash_noos_functions = {
|
2017-05-23 22:35:12 -04:00
|
|
|
.start = start,
|
|
|
|
.end = end,
|
2020-05-08 05:35:22 -04:00
|
|
|
.delay_us = delay_us,
|
2019-09-11 14:41:00 -04:00
|
|
|
.region_protected = NULL,
|
2020-07-29 05:39:56 -04: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 15:52:48 -04:00
|
|
|
.yield = NULL,
|
2017-05-23 22:35:12 -04:00
|
|
|
};
|
2019-09-11 14:41:00 -04: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-27 20:20:00 -05:00
|
|
|
|
2020-11-26 03:56:13 -05:00
|
|
|
#if !CONFIG_IDF_TARGET_ESP32
|
2019-11-27 20:20:00 -05:00
|
|
|
chip->os_func_data = &spi_arg;
|
|
|
|
#endif
|
|
|
|
|
2019-09-11 14:41:00 -04:00
|
|
|
return ESP_OK;
|
|
|
|
}
|