|
|
@@ -306,11 +306,9 @@ bool psram_support_wrap_size(uint32_t wrap_size)
|
|
|
|
|
|
}
|
|
|
|
|
|
-//read psram id
|
|
|
-static void psram_read_id(uint32_t* dev_id)
|
|
|
+//read psram id, should issue `psram_disable_qio_mode` before calling this
|
|
|
+static void psram_read_id(int spi_num, uint32_t* dev_id)
|
|
|
{
|
|
|
- int spi_num = PSRAM_SPI_1;
|
|
|
- psram_disable_qio_mode(spi_num);
|
|
|
psram_exec_cmd(spi_num, PSRAM_CMD_SPI,
|
|
|
PSRAM_DEVICE_ID, 8, /* command and command bit len*/
|
|
|
0, 24, /* address and address bit len*/
|
|
|
@@ -433,14 +431,19 @@ esp_err_t IRAM_ATTR psram_enable(psram_cache_mode_t mode, psram_vaddr_mode_t vad
|
|
|
psram_set_clk_mode(_SPI_FLASH_PORT, PSRAM_CLK_MODE_A1C);
|
|
|
psram_set_spi1_cmd_cs_timing(PSRAM_CLK_MODE_A1C);
|
|
|
|
|
|
- /* 16Mbit psram ID read error
|
|
|
- * workaround: Issue a pre-condition of dummy read id, then Read ID command
|
|
|
- */
|
|
|
- psram_read_id(&s_psram_id);
|
|
|
- psram_read_id(&s_psram_id);
|
|
|
+ int 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)) {
|
|
|
- ESP_EARLY_LOGE(TAG, "PSRAM ID read error: 0x%08x", 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", s_psram_id);
|
|
|
+ return ESP_FAIL;
|
|
|
+ }
|
|
|
}
|
|
|
|
|
|
psram_clk_mode_t clk_mode = PSRAM_CLK_MODE_MAX;
|