2019-05-09 23:34:06 -04:00
|
|
|
/*
|
2022-01-12 02:03:50 -05:00
|
|
|
* SPDX-FileCopyrightText: 2015-2022 Espressif Systems (Shanghai) CO LTD
|
2021-06-02 10:34:38 -04:00
|
|
|
*
|
|
|
|
* SPDX-License-Identifier: Apache-2.0
|
|
|
|
*/
|
2019-05-09 23:34:06 -04:00
|
|
|
|
2022-01-12 02:03:50 -05:00
|
|
|
|
|
|
|
/*----------------------------------------------------------------------------------------------------
|
|
|
|
* Abstraction layer for PSRAM. PSRAM device related registers and MMU/Cache related code shouls be
|
|
|
|
* abstracted to lower layers.
|
|
|
|
*
|
|
|
|
* When we add more types of external RAM memory, this can be made into a more intelligent dispatcher.
|
|
|
|
*----------------------------------------------------------------------------------------------------*/
|
2019-05-09 23:34:06 -04:00
|
|
|
#include <sys/param.h>
|
|
|
|
#include "sdkconfig.h"
|
|
|
|
#include "esp_attr.h"
|
|
|
|
#include "esp_err.h"
|
|
|
|
#include "esp_log.h"
|
|
|
|
#include "freertos/FreeRTOS.h"
|
|
|
|
#include "freertos/xtensa_api.h"
|
|
|
|
#include "esp_heap_caps_init.h"
|
2022-01-12 02:03:50 -05:00
|
|
|
#include "esp32s2/spiram.h"
|
|
|
|
#include "esp_private/mmu_psram.h"
|
|
|
|
#include "spiram_psram.h"
|
2019-05-09 23:34:06 -04:00
|
|
|
|
|
|
|
#define PSRAM_MODE PSRAM_VADDR_MODE_NORMAL
|
|
|
|
|
2019-06-05 00:34:19 -04:00
|
|
|
#if CONFIG_SPIRAM
|
2019-05-09 23:34:06 -04:00
|
|
|
|
2019-08-22 02:17:46 -04:00
|
|
|
#if CONFIG_SPIRAM_SPEED_40M
|
|
|
|
#define PSRAM_SPEED PSRAM_CACHE_S40M
|
|
|
|
#elif CONFIG_SPIRAM_SPEED_80M
|
|
|
|
#define PSRAM_SPEED PSRAM_CACHE_S80M
|
2019-05-09 23:34:06 -04:00
|
|
|
#else
|
2019-08-22 02:17:46 -04:00
|
|
|
#define PSRAM_SPEED PSRAM_CACHE_S20M
|
2019-05-09 23:34:06 -04:00
|
|
|
#endif
|
|
|
|
|
2022-01-12 02:03:50 -05:00
|
|
|
#define MMU_PAGE_TO_BYTES(page_id) ((page_id) << 16)
|
2019-05-09 23:34:06 -04:00
|
|
|
|
2021-08-25 04:06:28 -04:00
|
|
|
|
|
|
|
#if CONFIG_SPIRAM_ALLOW_BSS_SEG_EXTERNAL_MEMORY
|
2022-01-12 02:03:50 -05:00
|
|
|
extern uint8_t _ext_ram_bss_start;
|
|
|
|
extern uint8_t _ext_ram_bss_end;
|
|
|
|
#endif //#if CONFIG_SPIRAM_ALLOW_BSS_SEG_EXTERNAL_MEMORY
|
2020-04-20 07:35:16 -04:00
|
|
|
|
2022-01-12 02:03:50 -05:00
|
|
|
//These variables are in bytes
|
|
|
|
static uint32_t s_allocable_vaddr_start;
|
|
|
|
static uint32_t s_allocable_vaddr_end;
|
2020-04-20 07:35:16 -04:00
|
|
|
|
2022-01-12 02:03:50 -05:00
|
|
|
static bool spiram_inited=false;
|
|
|
|
static const char* TAG = "spiram";
|
2020-04-20 07:35:16 -04:00
|
|
|
|
2022-01-12 02:03:50 -05:00
|
|
|
bool esp_spiram_test(uint32_t v_start, uint32_t size);
|
2020-04-20 07:35:16 -04:00
|
|
|
|
2019-05-09 23:34:06 -04:00
|
|
|
|
2019-08-11 22:06:07 -04:00
|
|
|
esp_err_t esp_spiram_init(void)
|
2019-05-09 23:34:06 -04:00
|
|
|
{
|
|
|
|
esp_err_t r;
|
|
|
|
r = psram_enable(PSRAM_SPEED, PSRAM_MODE);
|
|
|
|
if (r != ESP_OK) {
|
|
|
|
#if CONFIG_SPIRAM_IGNORE_NOTFOUND
|
|
|
|
ESP_EARLY_LOGE(TAG, "SPI RAM enabled but initialization failed. Bailing out.");
|
|
|
|
#endif
|
|
|
|
return r;
|
|
|
|
}
|
|
|
|
|
2020-06-16 00:52:10 -04:00
|
|
|
spiram_inited = true;
|
|
|
|
|
2022-01-12 02:03:50 -05:00
|
|
|
//TODO IDF-4380
|
|
|
|
size_t spiram_size = esp_spiram_get_size();
|
2020-03-18 05:49:34 -04:00
|
|
|
#if (CONFIG_SPIRAM_SIZE != -1)
|
2020-06-16 00:52:10 -04:00
|
|
|
if (spiram_size != CONFIG_SPIRAM_SIZE) {
|
|
|
|
ESP_EARLY_LOGE(TAG, "Expected %dKiB chip but found %dKiB chip. Bailing out..", CONFIG_SPIRAM_SIZE/1024, spiram_size/1024);
|
2020-03-18 05:49:34 -04:00
|
|
|
return ESP_ERR_INVALID_SIZE;
|
|
|
|
}
|
|
|
|
#endif
|
|
|
|
|
2020-03-17 09:59:11 -04:00
|
|
|
ESP_EARLY_LOGI(TAG, "Found %dMBit SPI RAM device",
|
2020-06-16 00:52:10 -04:00
|
|
|
(spiram_size*8)/(1024*1024));
|
2019-08-22 02:17:46 -04:00
|
|
|
ESP_EARLY_LOGI(TAG, "SPI RAM mode: %s", PSRAM_SPEED == PSRAM_CACHE_S40M ? "sram 40m" : \
|
|
|
|
PSRAM_SPEED == PSRAM_CACHE_S80M ? "sram 80m" : "sram 20m");
|
2019-05-09 23:34:06 -04:00
|
|
|
ESP_EARLY_LOGI(TAG, "PSRAM initialized, cache is in %s mode.", \
|
|
|
|
(PSRAM_MODE==PSRAM_VADDR_MODE_EVENODD)?"even/odd (2-core)": \
|
|
|
|
(PSRAM_MODE==PSRAM_VADDR_MODE_LOWHIGH)?"low/high (2-core)": \
|
|
|
|
(PSRAM_MODE==PSRAM_VADDR_MODE_NORMAL)?"normal (1-core)":"ERROR");
|
2021-08-25 04:06:28 -04:00
|
|
|
|
2022-01-12 02:03:50 -05:00
|
|
|
uint32_t psram_available_size = spiram_size;
|
|
|
|
/**
|
|
|
|
* `start_page` is the psram physical address in MMU page size.
|
|
|
|
* MMU page size on ESP32S2 is 64KB
|
|
|
|
* e.g.: psram physical address 16 is in page 0
|
|
|
|
*
|
|
|
|
* Here we plan to copy FLASH instructions to psram physical address 0, which is the No.0 page.
|
|
|
|
*/
|
|
|
|
uint32_t start_page = 0;
|
2021-08-25 04:06:28 -04:00
|
|
|
#if CONFIG_SPIRAM_FETCH_INSTRUCTIONS || CONFIG_SPIRAM_RODATA
|
2022-01-12 02:03:50 -05:00
|
|
|
uint32_t used_page = 0;
|
2021-08-25 04:06:28 -04:00
|
|
|
#endif
|
2019-05-09 23:34:06 -04:00
|
|
|
|
2022-01-12 02:03:50 -05:00
|
|
|
//------------------------------------Copy Flash .text to PSRAM-------------------------------------//
|
|
|
|
#if CONFIG_SPIRAM_FETCH_INSTRUCTIONS
|
|
|
|
r = mmu_config_psram_text_segment(start_page, spiram_size, &used_page);
|
|
|
|
if (r != ESP_OK) {
|
|
|
|
ESP_EARLY_LOGE(TAG, "No enough psram memory for instructon!");
|
|
|
|
abort();
|
|
|
|
}
|
|
|
|
start_page += used_page;
|
|
|
|
psram_available_size -= MMU_PAGE_TO_BYTES(used_page);
|
|
|
|
ESP_EARLY_LOGV(TAG, "after copy .text, used page is %d, start_page is %d, psram_available_size is %d B", used_page, start_page, psram_available_size);
|
|
|
|
#endif //#if CONFIG_SPIRAM_FETCH_INSTRUCTIONS
|
|
|
|
|
|
|
|
//------------------------------------Copy Flash .rodata to PSRAM-------------------------------------//
|
|
|
|
#if CONFIG_SPIRAM_RODATA
|
|
|
|
r = mmu_config_psram_rodata_segment(start_page, spiram_size, &used_page);
|
|
|
|
if (r != ESP_OK) {
|
|
|
|
ESP_EARLY_LOGE(TAG, "No enough psram memory for rodata!");
|
|
|
|
abort();
|
|
|
|
}
|
|
|
|
start_page += used_page;
|
|
|
|
psram_available_size -= MMU_PAGE_TO_BYTES(used_page);
|
|
|
|
ESP_EARLY_LOGV(TAG, "after copy .rodata, used page is %d, start_page is %d, psram_available_size is %d B", used_page, start_page, psram_available_size);
|
|
|
|
#endif //#if CONFIG_SPIRAM_RODATA
|
|
|
|
|
|
|
|
//Map the PSRAM physical range to MMU
|
|
|
|
static DRAM_ATTR uint32_t vaddr_start = 0;
|
|
|
|
mmu_map_psram(MMU_PAGE_TO_BYTES(start_page), MMU_PAGE_TO_BYTES(start_page) + psram_available_size, &vaddr_start);
|
|
|
|
if (r != ESP_OK) {
|
|
|
|
ESP_EARLY_LOGE(TAG, "MMU PSRAM mapping wrong!");
|
|
|
|
abort();
|
2019-05-09 23:34:06 -04:00
|
|
|
}
|
2021-01-06 00:34:29 -05:00
|
|
|
|
2022-01-12 02:03:50 -05:00
|
|
|
#if CONFIG_SPIRAM_MEMTEST
|
|
|
|
//After mapping, simple test SPIRAM first
|
|
|
|
bool ext_ram_ok = esp_spiram_test(vaddr_start, psram_available_size);
|
|
|
|
if (!ext_ram_ok) {
|
|
|
|
ESP_EARLY_LOGE(TAG, "External RAM failed memory test!");
|
|
|
|
abort();
|
2021-01-06 00:34:29 -05:00
|
|
|
}
|
2022-01-12 02:03:50 -05:00
|
|
|
#endif //#if CONFIG_SPIRAM_MEMTEST
|
2021-01-06 00:34:29 -05:00
|
|
|
|
2022-01-12 02:03:50 -05:00
|
|
|
/*------------------------------------------------------------------------------
|
|
|
|
* After mapping, we DON'T care about the PSRAM PHYSICAL ADDRESSS ANYMORE!
|
|
|
|
*----------------------------------------------------------------------------*/
|
|
|
|
s_allocable_vaddr_start = vaddr_start;
|
|
|
|
s_allocable_vaddr_end = vaddr_start + psram_available_size;
|
|
|
|
|
|
|
|
//------------------------------------Configure .bss in PSRAM-------------------------------------//
|
|
|
|
#if CONFIG_SPIRAM_ALLOW_BSS_SEG_EXTERNAL_MEMORY
|
|
|
|
//should never be negative number
|
|
|
|
uint32_t ext_bss_size = ((intptr_t)&_ext_ram_bss_end - (intptr_t)&_ext_ram_bss_start);
|
|
|
|
ESP_EARLY_LOGV(TAG, "ext_bss_size is %d", ext_bss_size);
|
|
|
|
|
|
|
|
s_allocable_vaddr_start += ext_bss_size;
|
|
|
|
#endif //#if CONFIG_SPIRAM_ALLOW_BSS_SEG_EXTERNAL_MEMORY
|
|
|
|
|
|
|
|
ESP_EARLY_LOGV(TAG, "s_allocable_vaddr_start is 0x%x, s_allocable_vaddr_end is 0x%x", s_allocable_vaddr_start, s_allocable_vaddr_end);
|
|
|
|
return ESP_OK;
|
|
|
|
}
|
|
|
|
|
|
|
|
esp_err_t esp_spiram_add_to_heapalloc(void)
|
|
|
|
{
|
|
|
|
return heap_caps_add_region(s_allocable_vaddr_start, s_allocable_vaddr_end - 1);
|
2019-05-09 23:34:06 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
static uint8_t *dma_heap;
|
|
|
|
|
|
|
|
esp_err_t esp_spiram_reserve_dma_pool(size_t size) {
|
|
|
|
if (size==0) return ESP_OK; //no-op
|
|
|
|
ESP_EARLY_LOGI(TAG, "Reserving pool of %dK of internal memory for DMA/internal allocations", size/1024);
|
|
|
|
dma_heap=heap_caps_malloc(size, MALLOC_CAP_DMA|MALLOC_CAP_INTERNAL);
|
|
|
|
if (!dma_heap) return ESP_ERR_NO_MEM;
|
|
|
|
uint32_t caps[]={MALLOC_CAP_DMA|MALLOC_CAP_INTERNAL, 0, MALLOC_CAP_8BIT|MALLOC_CAP_32BIT};
|
|
|
|
return heap_caps_add_region_with_caps(caps, (intptr_t) dma_heap, (intptr_t) dma_heap+size-1);
|
|
|
|
}
|
|
|
|
|
2022-01-12 02:03:50 -05:00
|
|
|
//TODO IDF-4380
|
2019-08-11 22:06:07 -04:00
|
|
|
size_t esp_spiram_get_size(void)
|
2019-05-09 23:34:06 -04:00
|
|
|
{
|
2020-07-03 10:08:44 -04:00
|
|
|
if (!spiram_inited) {
|
|
|
|
ESP_EARLY_LOGE(TAG, "SPI RAM not initialized");
|
|
|
|
abort();
|
|
|
|
}
|
|
|
|
|
2020-03-17 09:59:11 -04:00
|
|
|
psram_size_t size=psram_get_size();
|
|
|
|
if (size==PSRAM_SIZE_16MBITS) return 2*1024*1024;
|
|
|
|
if (size==PSRAM_SIZE_32MBITS) return 4*1024*1024;
|
|
|
|
if (size==PSRAM_SIZE_64MBITS) return 8*1024*1024;
|
2019-05-09 23:34:06 -04:00
|
|
|
return CONFIG_SPIRAM_SIZE;
|
|
|
|
}
|
|
|
|
|
|
|
|
/*
|
|
|
|
Before flushing the cache, if psram is enabled as a memory-mapped thing, we need to write back the data in the cache to the psram first,
|
|
|
|
otherwise it will get lost. For now, we just read 64/128K of random PSRAM memory to do this.
|
|
|
|
*/
|
2019-08-11 22:06:07 -04:00
|
|
|
void IRAM_ATTR esp_spiram_writeback_cache(void)
|
2019-05-09 23:34:06 -04:00
|
|
|
{
|
|
|
|
extern void Cache_WriteBack_All(void);
|
|
|
|
Cache_WriteBack_All();
|
|
|
|
}
|
|
|
|
|
2021-07-29 00:45:29 -04:00
|
|
|
/**
|
|
|
|
* @brief If SPI RAM(PSRAM) has been initialized
|
|
|
|
*
|
|
|
|
* @return true SPI RAM has been initialized successfully
|
|
|
|
* @return false SPI RAM hasn't been initialized or initialized failed
|
|
|
|
*/
|
|
|
|
bool esp_spiram_is_initialized(void)
|
|
|
|
{
|
|
|
|
return spiram_inited;
|
|
|
|
}
|
2020-01-08 21:33:40 -05:00
|
|
|
|
2021-07-02 09:46:49 -04:00
|
|
|
uint8_t esp_spiram_get_cs_io(void)
|
|
|
|
{
|
|
|
|
return psram_get_cs_io();
|
|
|
|
}
|
|
|
|
|
2021-08-25 04:06:28 -04:00
|
|
|
/*
|
|
|
|
Simple RAM test. Writes a word every 32 bytes. Takes about a second to complete for 4MiB. Returns
|
|
|
|
true when RAM seems OK, false when test fails. WARNING: Do not run this before the 2nd cpu has been
|
|
|
|
initialized (in a two-core system) or after the heap allocator has taken ownership of the memory.
|
|
|
|
*/
|
2022-01-12 02:03:50 -05:00
|
|
|
bool esp_spiram_test(uint32_t v_start, uint32_t size)
|
2021-08-25 04:06:28 -04:00
|
|
|
{
|
2022-01-12 02:03:50 -05:00
|
|
|
volatile int *spiram = (volatile int *)v_start;
|
|
|
|
|
|
|
|
size_t s = size;
|
2021-08-25 04:06:28 -04:00
|
|
|
size_t p;
|
2022-01-12 02:03:50 -05:00
|
|
|
int errct = 0;
|
|
|
|
int initial_err = -1;
|
|
|
|
|
|
|
|
for (p = 0; p < (s / sizeof(int)); p += 8) {
|
|
|
|
spiram[p] = p ^ 0xAAAAAAAA;
|
2021-08-25 04:06:28 -04:00
|
|
|
}
|
2022-01-12 02:03:50 -05:00
|
|
|
for (p = 0; p < (s / sizeof(int)); p += 8) {
|
|
|
|
if (spiram[p] != (p ^ 0xAAAAAAAA)) {
|
2021-08-25 04:06:28 -04:00
|
|
|
errct++;
|
2022-01-12 02:03:50 -05:00
|
|
|
if (errct == 1) {
|
|
|
|
initial_err = p * 4;
|
|
|
|
}
|
2021-08-25 04:06:28 -04:00
|
|
|
if (errct < 4) {
|
2022-01-12 02:03:50 -05:00
|
|
|
ESP_EARLY_LOGE(TAG, "SPI SRAM error@%08x:%08x/%08x \n", &spiram[p], spiram[p], p ^ 0xAAAAAAAA);
|
2021-08-25 04:06:28 -04:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
if (errct) {
|
2022-01-12 02:03:50 -05:00
|
|
|
ESP_EARLY_LOGE(TAG, "SPI SRAM memory test fail. %d/%d writes failed, first @ %X\n", errct, s / 32, initial_err + SOC_EXTRAM_DATA_LOW);
|
2021-08-25 04:06:28 -04:00
|
|
|
return false;
|
|
|
|
} else {
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
}
|
2022-01-12 02:03:50 -05:00
|
|
|
#endif //#if CONFIG_SPIRAM
|