Merge branch 'test/add_build_test_for_esp32_psram_2t_mode' into 'master'

psram: fixed esp32 2t mode fail issue

Closes IDF-6904

See merge request espressif/esp-idf!22963
This commit is contained in:
Armando (Dou Yiwen)
2023-03-31 17:50:53 +08:00
3 changed files with 6 additions and 3 deletions

View File

@@ -362,9 +362,7 @@ static int psram_cmd_config(psram_spi_num_t spi_num, psram_cmd_t* pInData)
// Load send buffer // Load send buffer
int len = (pInData->txDataBitLen + 31) / 32; int len = (pInData->txDataBitLen + 31) / 32;
if (p_tx_val != NULL) { if (p_tx_val != NULL) {
for (int i = 0; i < len; i++) { memcpy((void*)SPI_W0_REG(spi_num), p_tx_val, len * 4);
WRITE_PERI_REG(SPI_W0_REG(spi_num), p_tx_val[i]);
}
} }
// Set data send buffer length.Max data length 64 bytes. // Set data send buffer length.Max data length 64 bytes.
SET_PERI_REG_BITS(SPI_MOSI_DLEN_REG(spi_num), SPI_USR_MOSI_DBITLEN, (pInData->txDataBitLen - 1), SET_PERI_REG_BITS(SPI_MOSI_DLEN_REG(spi_num), SPI_USR_MOSI_DBITLEN, (pInData->txDataBitLen - 1),

View File

@@ -11,6 +11,7 @@ from pytest_embedded import Dut
'config', 'config',
[ [
'esp32_release', 'esp32_release',
'esp32_2t',
], ],
indirect=True, indirect=True,
) )

View File

@@ -0,0 +1,4 @@
CONFIG_IDF_TARGET="esp32"
CONFIG_SPIRAM=y
CONFIG_SPIRAM_2T_MODE=y
CONFIG_SPIRAM_BANKSWITCH_ENABLE=n