mirror of
https://github.com/espressif/esp-idf.git
synced 2025-07-30 10:47:19 +02:00
feat(psram): support bss on psram on p4
This commit is contained in:
@ -11,6 +11,7 @@
|
|||||||
* When we add more types of external RAM memory, this can be made into a more intelligent dispatcher.
|
* When we add more types of external RAM memory, this can be made into a more intelligent dispatcher.
|
||||||
*----------------------------------------------------------------------------------------------------*/
|
*----------------------------------------------------------------------------------------------------*/
|
||||||
#include <sys/param.h>
|
#include <sys/param.h>
|
||||||
|
#include <string.h>
|
||||||
#include "sdkconfig.h"
|
#include "sdkconfig.h"
|
||||||
#include "esp_attr.h"
|
#include "esp_attr.h"
|
||||||
#include "esp_err.h"
|
#include "esp_err.h"
|
||||||
@ -521,3 +522,11 @@ bool esp_psram_extram_test(void)
|
|||||||
|
|
||||||
return true;
|
return true;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
void esp_psram_bss_init(void)
|
||||||
|
{
|
||||||
|
#if CONFIG_SPIRAM_ALLOW_BSS_SEG_EXTERNAL_MEMORY
|
||||||
|
size_t size = (&_ext_ram_bss_end - &_ext_ram_bss_start) * sizeof(_ext_ram_bss_start);
|
||||||
|
memset(&_ext_ram_bss_start, 0, size);
|
||||||
|
#endif
|
||||||
|
}
|
||||||
|
@ -1,5 +1,5 @@
|
|||||||
/*
|
/*
|
||||||
* SPDX-FileCopyrightText: 2022 Espressif Systems (Shanghai) CO LTD
|
* SPDX-FileCopyrightText: 2022-2024 Espressif Systems (Shanghai) CO LTD
|
||||||
*
|
*
|
||||||
* SPDX-License-Identifier: Apache-2.0
|
* SPDX-License-Identifier: Apache-2.0
|
||||||
*/
|
*/
|
||||||
@ -55,6 +55,11 @@ esp_err_t esp_psram_extram_reserve_dma_pool(size_t size);
|
|||||||
*/
|
*/
|
||||||
bool esp_psram_extram_test(void);
|
bool esp_psram_extram_test(void);
|
||||||
|
|
||||||
|
/**
|
||||||
|
* @brief Init .bss on psram
|
||||||
|
*/
|
||||||
|
void esp_psram_bss_init(void);
|
||||||
|
|
||||||
#if CONFIG_IDF_TARGET_ESP32
|
#if CONFIG_IDF_TARGET_ESP32
|
||||||
/**
|
/**
|
||||||
* @brief Force a writeback of the data in the PSRAM cache. This is to be called whenever
|
* @brief Force a writeback of the data in the PSRAM cache. This is to be called whenever
|
||||||
|
@ -103,6 +103,9 @@ MEMORY
|
|||||||
This segment is placed at the beginning of LP RAM, as the end of LP RAM is occupied by LP ROM stack/data
|
This segment is placed at the beginning of LP RAM, as the end of LP RAM is occupied by LP ROM stack/data
|
||||||
*/
|
*/
|
||||||
lp_reserved_seg(RW) : org = 0x50108000, len = RESERVE_RTC_MEM
|
lp_reserved_seg(RW) : org = 0x50108000, len = RESERVE_RTC_MEM
|
||||||
|
|
||||||
|
/* PSRAM seg */
|
||||||
|
extern_ram_seg(RWX) : org = 0x48000000, len = IDROM_SEG_SIZE
|
||||||
}
|
}
|
||||||
|
|
||||||
/* Heap ends at top of dram0_0_seg */
|
/* Heap ends at top of dram0_0_seg */
|
||||||
@ -135,6 +138,12 @@ REGION_ALIAS("rtc_reserved_seg", lp_reserved_seg );
|
|||||||
REGION_ALIAS("rodata_seg_high", sram_high);
|
REGION_ALIAS("rodata_seg_high", sram_high);
|
||||||
#endif // CONFIG_APP_BUILD_USE_FLASH_SECTIONS
|
#endif // CONFIG_APP_BUILD_USE_FLASH_SECTIONS
|
||||||
|
|
||||||
|
#if CONFIG_SPIRAM_XIP_FROM_PSRAM
|
||||||
|
REGION_ALIAS("ext_ram_seg", drom_seg);
|
||||||
|
#else
|
||||||
|
REGION_ALIAS("ext_ram_seg", extern_ram_seg);
|
||||||
|
#endif //#if CONFIG_SPIRAM_XIP_FROM_PSRAM
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* If rodata default segment is placed in `drom_seg`, then flash's first rodata section must
|
* If rodata default segment is placed in `drom_seg`, then flash's first rodata section must
|
||||||
* also be first in the segment.
|
* also be first in the segment.
|
||||||
|
@ -475,6 +475,28 @@ SECTIONS
|
|||||||
mapping[rodata_noload]
|
mapping[rodata_noload]
|
||||||
} > rodata_seg_low
|
} > rodata_seg_low
|
||||||
|
|
||||||
|
#if CONFIG_SPIRAM_ALLOW_BSS_SEG_EXTERNAL_MEMORY
|
||||||
|
#if CONFIG_SPIRAM_XIP_FROM_PSRAM
|
||||||
|
/**
|
||||||
|
* This section is required to skip flash sections, because `extern_ram_seg`
|
||||||
|
* and `drom_seg` / `irom_seg` are on the same bus when xip on psram
|
||||||
|
*/
|
||||||
|
.ext_ram.dummy (NOLOAD):
|
||||||
|
{
|
||||||
|
. = ORIGIN(ext_ram_seg) + (_rodata_reserved_end - _flash_rodata_dummy_start);
|
||||||
|
. = ALIGN (0x10000);
|
||||||
|
} > ext_ram_seg
|
||||||
|
#endif //CONFIG_SPIRAM_XIP_FROM_PSRAM
|
||||||
|
|
||||||
|
/* This section holds .ext_ram.bss data, and will be put in PSRAM */
|
||||||
|
.ext_ram.bss (NOLOAD) :
|
||||||
|
{
|
||||||
|
_ext_ram_bss_start = ABSOLUTE(.);
|
||||||
|
mapping[extern_ram]
|
||||||
|
ALIGNED_SYMBOL(4, _ext_ram_bss_end)
|
||||||
|
} > ext_ram_seg
|
||||||
|
#endif //CONFIG_SPIRAM_ALLOW_BSS_SEG_EXTERNAL_MEMORY
|
||||||
|
|
||||||
.dram0.bss (NOLOAD) :
|
.dram0.bss (NOLOAD) :
|
||||||
{
|
{
|
||||||
ALIGNED_SYMBOL(4, _bss_start_low)
|
ALIGNED_SYMBOL(4, _bss_start_low)
|
||||||
|
@ -148,11 +148,6 @@ extern int _mtvt_table;
|
|||||||
|
|
||||||
static const char *TAG = "cpu_start";
|
static const char *TAG = "cpu_start";
|
||||||
|
|
||||||
#if CONFIG_SPIRAM_ALLOW_BSS_SEG_EXTERNAL_MEMORY
|
|
||||||
extern int _ext_ram_bss_start;
|
|
||||||
extern int _ext_ram_bss_end;
|
|
||||||
#endif
|
|
||||||
|
|
||||||
#ifdef CONFIG_ESP32_IRAM_AS_8BIT_ACCESSIBLE_MEMORY
|
#ifdef CONFIG_ESP32_IRAM_AS_8BIT_ACCESSIBLE_MEMORY
|
||||||
extern int _iram_bss_start;
|
extern int _iram_bss_start;
|
||||||
extern int _iram_bss_end;
|
extern int _iram_bss_end;
|
||||||
@ -684,7 +679,7 @@ void IRAM_ATTR call_start_cpu0(void)
|
|||||||
#endif // !CONFIG_APP_BUILD_TYPE_PURE_RAM_APP
|
#endif // !CONFIG_APP_BUILD_TYPE_PURE_RAM_APP
|
||||||
|
|
||||||
#if CONFIG_SPIRAM_ALLOW_BSS_SEG_EXTERNAL_MEMORY
|
#if CONFIG_SPIRAM_ALLOW_BSS_SEG_EXTERNAL_MEMORY
|
||||||
memset(&_ext_ram_bss_start, 0, (&_ext_ram_bss_end - &_ext_ram_bss_start) * sizeof(_ext_ram_bss_start));
|
esp_psram_bss_init();
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
//Enable trace memory and immediately start trace.
|
//Enable trace memory and immediately start trace.
|
||||||
|
Reference in New Issue
Block a user