Skip to content

Commit e9d7adf

Browse files
committed
Merge branch 'test/re_enable_c5_80m_psram_tests' into 'master'
psram: re-enable 80M psram tests on C5 ECO2 See merge request espressif/esp-idf!39347
2 parents 8925459 + 2f8cd61 commit e9d7adf

File tree

5 files changed

+5
-3
lines changed

5 files changed

+5
-3
lines changed

components/bootloader_support/bootloader_flash/src/bootloader_flash_config_esp32c5.c

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -55,6 +55,7 @@ void IRAM_ATTR bootloader_init_mspi_clock(void)
5555
// SPLL clock on C5 is 480MHz , and mspi_pll needs 80MHz
5656
// in this stage, set divider as 6
5757
_mspi_timing_ll_set_flash_clk_src(0, FLASH_CLK_SRC_SPLL);
58+
// MSPI0 and MSPI1 share this core clock register, but only setting to MSPI0 register is valid
5859
mspi_timing_ll_set_core_clock(MSPI_TIMING_LL_MSPI_ID_0, MSPI_TIMING_LL_CORE_CLOCK_MHZ_DEFAULT);
5960
}
6061

components/bootloader_support/bootloader_flash/src/bootloader_flash_config_esp32c61.c

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -52,6 +52,7 @@ void IRAM_ATTR bootloader_init_mspi_clock(void)
5252
// SPLL clock on C61 is 480MHz , and mspi_pll needs 80MHz
5353
// in this stage, set divider as 6
5454
_mspi_timing_ll_set_flash_clk_src(0, FLASH_CLK_SRC_DEFAULT);
55+
// MSPI0 and MSPI1 share this core clock register, but only setting to MSPI0 register is valid
5556
mspi_timing_ll_set_core_clock(MSPI_TIMING_LL_MSPI_ID_0, MSPI_TIMING_LL_CORE_CLOCK_MHZ_DEFAULT);
5657
}
5758

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,3 @@
11
CONFIG_SPIRAM=y
2-
CONFIG_SPIRAM_SPEED_40M=y
2+
CONFIG_SPIRAM_SPEED_80M=y
33
CONFIG_SPIRAM_MALLOC_ALWAYSINTERNAL=0
Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,3 @@
11
CONFIG_SPIRAM=y
2-
CONFIG_SPIRAM_SPEED_40M=y
2+
CONFIG_SPIRAM_SPEED_80M=y
33
CONFIG_SPIRAM_MALLOC_ALWAYSINTERNAL=0

examples/peripherals/lcd/parlio_simulate/sdkconfig.defaults.esp32c5

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
CONFIG_SPIRAM=y
2-
CONFIG_SPIRAM_SPEED_40M=y
2+
CONFIG_SPIRAM_SPEED_80M=y
33
# Enabling the following configurations can help increase the PCLK frequency in the case when
44
# the Frame Buffer is allocated from the PSRAM and fetched by EDMA
55
CONFIG_SPIRAM_XIP_FROM_PSRAM=y

0 commit comments

Comments
 (0)