mirror of
https://github.com/espressif/esp-idf.git
synced 2024-10-05 20:47:46 -04:00
Merge branch 'bugfix/fix_16mbit_psram_id_read_error_v3.2' into 'release/v3.2'
psram: fix 16mbit psram id read error (backport v3.2) See merge request espressif/esp-idf!9442
This commit is contained in:
commit
8cd3209f74
@ -398,11 +398,9 @@ static void psram_disable_qio_mode(psram_spi_num_t spi_num)
|
|||||||
psram_cmd_end(spi_num);
|
psram_cmd_end(spi_num);
|
||||||
}
|
}
|
||||||
|
|
||||||
//read psram id
|
//read psram id, should issue `psram_disable_qio_mode` before calling this
|
||||||
static void psram_read_id(uint64_t* dev_id)
|
static void psram_read_id(psram_spi_num_t spi_num, uint64_t* dev_id)
|
||||||
{
|
{
|
||||||
psram_spi_num_t spi_num = PSRAM_SPI_1;
|
|
||||||
psram_disable_qio_mode(spi_num);
|
|
||||||
uint32_t dummy_bits = 0 + extra_dummy;
|
uint32_t dummy_bits = 0 + extra_dummy;
|
||||||
uint32_t psram_id[2] = {0};
|
uint32_t psram_id[2] = {0};
|
||||||
psram_cmd_t ps_cmd;
|
psram_cmd_t ps_cmd;
|
||||||
@ -895,9 +893,20 @@ esp_err_t IRAM_ATTR psram_enable(psram_cache_mode_t mode, psram_vaddr_mode_t vad
|
|||||||
bootloader_common_vddsdio_configure();
|
bootloader_common_vddsdio_configure();
|
||||||
// GPIO related settings
|
// GPIO related settings
|
||||||
psram_gpio_config(&psram_io, mode);
|
psram_gpio_config(&psram_io, mode);
|
||||||
psram_read_id(&s_psram_id);
|
|
||||||
|
psram_spi_num_t spi_num = PSRAM_SPI_1;
|
||||||
|
psram_disable_qio_mode(spi_num);
|
||||||
|
psram_read_id(spi_num, &s_psram_id);
|
||||||
if (!PSRAM_IS_VALID(s_psram_id)) {
|
if (!PSRAM_IS_VALID(s_psram_id)) {
|
||||||
return ESP_FAIL;
|
/* 16Mbit psram ID read error workaround:
|
||||||
|
* treat the first read id as a dummy one as the pre-condition,
|
||||||
|
* Send Read ID command again
|
||||||
|
*/
|
||||||
|
psram_read_id(spi_num, &s_psram_id);
|
||||||
|
if (!PSRAM_IS_VALID(s_psram_id)) {
|
||||||
|
ESP_EARLY_LOGE(TAG, "PSRAM ID read error: 0x%08x", (uint32_t)s_psram_id);
|
||||||
|
return ESP_FAIL;
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
if (PSRAM_IS_32MBIT_VER0(s_psram_id)) {
|
if (PSRAM_IS_32MBIT_VER0(s_psram_id)) {
|
||||||
|
Loading…
Reference in New Issue
Block a user