mirror of
https://github.com/espressif/esp-idf.git
synced 2025-07-31 03:07:21 +02:00
patch(spi_flash): cleanup XMC flash chip usage according to new information
This commit is contained in:
@ -1,5 +1,5 @@
|
|||||||
/*
|
/*
|
||||||
* SPDX-FileCopyrightText: 2015-2023 Espressif Systems (Shanghai) CO LTD
|
* SPDX-FileCopyrightText: 2015-2024 Espressif Systems (Shanghai) CO LTD
|
||||||
*
|
*
|
||||||
* SPDX-License-Identifier: Apache-2.0
|
* SPDX-License-Identifier: Apache-2.0
|
||||||
*/
|
*/
|
||||||
@ -686,7 +686,6 @@ void bootloader_spi_flash_reset(void)
|
|||||||
|
|
||||||
#define XMC_SUPPORT CONFIG_BOOTLOADER_FLASH_XMC_SUPPORT
|
#define XMC_SUPPORT CONFIG_BOOTLOADER_FLASH_XMC_SUPPORT
|
||||||
#define XMC_VENDOR_ID_1 0x20
|
#define XMC_VENDOR_ID_1 0x20
|
||||||
#define XMC_VENDOR_ID_2 0x46
|
|
||||||
|
|
||||||
#if BOOTLOADER_BUILD
|
#if BOOTLOADER_BUILD
|
||||||
#define BOOTLOADER_FLASH_LOG(level, ...) ESP_EARLY_LOG##level(TAG, ##__VA_ARGS__)
|
#define BOOTLOADER_FLASH_LOG(level, ...) ESP_EARLY_LOG##level(TAG, ##__VA_ARGS__)
|
||||||
@ -703,7 +702,7 @@ static IRAM_ATTR bool is_xmc_chip_strict(uint32_t rdid)
|
|||||||
uint32_t mfid = BYTESHIFT(rdid, 1);
|
uint32_t mfid = BYTESHIFT(rdid, 1);
|
||||||
uint32_t cpid = BYTESHIFT(rdid, 0);
|
uint32_t cpid = BYTESHIFT(rdid, 0);
|
||||||
|
|
||||||
if (vendor_id != XMC_VENDOR_ID_1 && vendor_id != XMC_VENDOR_ID_2) {
|
if (vendor_id != XMC_VENDOR_ID_1) {
|
||||||
return false;
|
return false;
|
||||||
}
|
}
|
||||||
|
|
||||||
@ -736,7 +735,7 @@ esp_err_t IRAM_ATTR bootloader_flash_xmc_startup(void)
|
|||||||
// Check the Manufacturer ID in SFDP registers (JEDEC standard). If not XMC chip, no need to run the flow
|
// Check the Manufacturer ID in SFDP registers (JEDEC standard). If not XMC chip, no need to run the flow
|
||||||
const int sfdp_mfid_addr = 0x10;
|
const int sfdp_mfid_addr = 0x10;
|
||||||
uint8_t mf_id = (bootloader_flash_read_sfdp(sfdp_mfid_addr, 1) & 0xff);
|
uint8_t mf_id = (bootloader_flash_read_sfdp(sfdp_mfid_addr, 1) & 0xff);
|
||||||
if ((mf_id != XMC_VENDOR_ID_1) && (mf_id != XMC_VENDOR_ID_2)) {
|
if (mf_id != XMC_VENDOR_ID_1) {
|
||||||
BOOTLOADER_FLASH_LOG(D, "non-XMC chip detected by SFDP Read (%02X), skip.", mf_id);
|
BOOTLOADER_FLASH_LOG(D, "non-XMC chip detected by SFDP Read (%02X), skip.", mf_id);
|
||||||
return ESP_OK;
|
return ESP_OK;
|
||||||
}
|
}
|
||||||
@ -768,7 +767,7 @@ esp_err_t IRAM_ATTR bootloader_flash_xmc_startup(void)
|
|||||||
static IRAM_ATTR bool is_xmc_chip(uint32_t rdid)
|
static IRAM_ATTR bool is_xmc_chip(uint32_t rdid)
|
||||||
{
|
{
|
||||||
uint32_t vendor_id = (rdid >> 16) & 0xFF;
|
uint32_t vendor_id = (rdid >> 16) & 0xFF;
|
||||||
return ((vendor_id == XMC_VENDOR_ID_1) || (vendor_id == XMC_VENDOR_ID_2));
|
return (vendor_id == XMC_VENDOR_ID_1);
|
||||||
}
|
}
|
||||||
|
|
||||||
esp_err_t IRAM_ATTR bootloader_flash_xmc_startup(void)
|
esp_err_t IRAM_ATTR bootloader_flash_xmc_startup(void)
|
||||||
|
@ -40,7 +40,7 @@ menu "Main Flash configuration"
|
|||||||
default SPI_FLASH_HPM_AUTO
|
default SPI_FLASH_HPM_AUTO
|
||||||
help
|
help
|
||||||
Whether the High Performance Mode of Flash is enabled. As an optional feature, user needs to manually
|
Whether the High Performance Mode of Flash is enabled. As an optional feature, user needs to manually
|
||||||
enable this option as a confirmation. To be back-compatible with earlier IDF versionn, this option is
|
enable this option as a confirmation. To be back-compatible with earlier IDF version, this option is
|
||||||
automatically enabled with warning when Flash running > 80Mhz.
|
automatically enabled with warning when Flash running > 80Mhz.
|
||||||
|
|
||||||
config SPI_FLASH_HPM_ENA
|
config SPI_FLASH_HPM_ENA
|
||||||
@ -108,6 +108,25 @@ menu "Main Flash configuration"
|
|||||||
Also refer to `Concurrency Constraints for Flash on SPI1` > `Flash Auto Suspend Feature`
|
Also refer to `Concurrency Constraints for Flash on SPI1` > `Flash Auto Suspend Feature`
|
||||||
before enabling this option.
|
before enabling this option.
|
||||||
|
|
||||||
|
config SPI_FLASH_SUSPEND_TSUS_VAL_US
|
||||||
|
int "SPI flash tSUS value (refer to chapter AC CHARACTERISTICS)"
|
||||||
|
default 50
|
||||||
|
range 20 100
|
||||||
|
help
|
||||||
|
This config is used for setting Tsus parameter. Tsus means CS# high to next command after
|
||||||
|
suspend. You can refer to the chapter of AC CHARACTERISTICS of flash datasheet.
|
||||||
|
|
||||||
|
config SPI_FLASH_FORCE_ENABLE_XMC_C_SUSPEND
|
||||||
|
bool "Enable XMC-C series flash chip suspend feature anyway"
|
||||||
|
default n
|
||||||
|
help
|
||||||
|
XMC-C series is regarded as not qualified for the Suspend feature, since its specification
|
||||||
|
has a tRS >= 1ms restriction. We strongly do not suggest using it for the Suspend feature.
|
||||||
|
However, if your product in field has enabled this feature, you may still enable this
|
||||||
|
config option to keep the legacy behavior.
|
||||||
|
|
||||||
|
For new users, DO NOT enable this config.
|
||||||
|
|
||||||
endmenu
|
endmenu
|
||||||
endmenu
|
endmenu
|
||||||
|
|
||||||
@ -242,7 +261,7 @@ menu "SPI Flash driver"
|
|||||||
Please use this configuration together with ``SPI_FLASH_ERASE_YIELD_DURATION_MS`` and
|
Please use this configuration together with ``SPI_FLASH_ERASE_YIELD_DURATION_MS`` and
|
||||||
``SPI_FLASH_ERASE_YIELD_TICKS`` after carefully checking flash datasheet to avoid a
|
``SPI_FLASH_ERASE_YIELD_TICKS`` after carefully checking flash datasheet to avoid a
|
||||||
watchdog timeout.
|
watchdog timeout.
|
||||||
For more information, please check `SPI Flash API` reference documenation
|
For more information, please check `SPI Flash API` reference documentation
|
||||||
under section `OS Function`.
|
under section `OS Function`.
|
||||||
|
|
||||||
config SPI_FLASH_ERASE_YIELD_DURATION_MS
|
config SPI_FLASH_ERASE_YIELD_DURATION_MS
|
||||||
@ -344,7 +363,7 @@ menu "SPI Flash driver"
|
|||||||
|
|
||||||
config SPI_FLASH_SUPPORT_BOYA_CHIP
|
config SPI_FLASH_SUPPORT_BOYA_CHIP
|
||||||
bool "BOYA"
|
bool "BOYA"
|
||||||
# ESP32 doens't usually use this chip, default n to save iram.
|
# ESP32 doesn't usually use this chip, default n to save iram.
|
||||||
default y if SPI_FLASH_VENDOR_BOYA_SUPPORTED
|
default y if SPI_FLASH_VENDOR_BOYA_SUPPORTED
|
||||||
default n
|
default n
|
||||||
help
|
help
|
||||||
@ -354,7 +373,7 @@ menu "SPI Flash driver"
|
|||||||
|
|
||||||
config SPI_FLASH_SUPPORT_TH_CHIP
|
config SPI_FLASH_SUPPORT_TH_CHIP
|
||||||
bool "TH"
|
bool "TH"
|
||||||
# ESP32 doens't usually use this chip, default n to save iram.
|
# ESP32 doesn't usually use this chip, default n to save iram.
|
||||||
default y if SPI_FLASH_VENDOR_TH_SUPPORTED
|
default y if SPI_FLASH_VENDOR_TH_SUPPORTED
|
||||||
default n
|
default n
|
||||||
help
|
help
|
||||||
|
@ -20,7 +20,7 @@ void spi_flash_needs_reset_check(void)
|
|||||||
{
|
{
|
||||||
// Currently only XMC is suggested to reset when brownout
|
// Currently only XMC is suggested to reset when brownout
|
||||||
#if CONFIG_SPI_FLASH_BROWNOUT_RESET_XMC
|
#if CONFIG_SPI_FLASH_BROWNOUT_RESET_XMC
|
||||||
if ((g_rom_flashchip.device_id >> 16) == 0x20 || (g_rom_flashchip.device_id >> 16) == 0x46) {
|
if ((g_rom_flashchip.device_id >> 16) == 0x20) {
|
||||||
flash_brownout_needs_reset = true;
|
flash_brownout_needs_reset = true;
|
||||||
}
|
}
|
||||||
#endif
|
#endif
|
||||||
|
@ -53,6 +53,8 @@
|
|||||||
#define CMD_RST_EN 0x66
|
#define CMD_RST_EN 0x66
|
||||||
#define CMD_RST_DEV 0x99
|
#define CMD_RST_DEV 0x99
|
||||||
|
|
||||||
|
#define CMD_RDSFDP 0x5A /* Read the SFDP of the flash */
|
||||||
|
|
||||||
#define SPI_FLASH_DIO_ADDR_BITLEN 24
|
#define SPI_FLASH_DIO_ADDR_BITLEN 24
|
||||||
#define SPI_FLASH_DIO_DUMMY_BITLEN 4
|
#define SPI_FLASH_DIO_DUMMY_BITLEN 4
|
||||||
#define SPI_FLASH_QIO_ADDR_BITLEN 24
|
#define SPI_FLASH_QIO_ADDR_BITLEN 24
|
||||||
|
@ -510,7 +510,7 @@ esp_err_t spi_flash_chip_generic_write_encrypted(esp_flash_t *chip, const void *
|
|||||||
return ESP_ERR_NOT_SUPPORTED;
|
return ESP_ERR_NOT_SUPPORTED;
|
||||||
}
|
}
|
||||||
|
|
||||||
/* Check if the buffer and length can qualify the requirments */
|
/* Check if the buffer and length can qualify the requirements */
|
||||||
if (esp_flash_encryption->flash_encryption_check(address, length) != true) {
|
if (esp_flash_encryption->flash_encryption_check(address, length) != true) {
|
||||||
return ESP_ERR_NOT_SUPPORTED;
|
return ESP_ERR_NOT_SUPPORTED;
|
||||||
}
|
}
|
||||||
@ -599,8 +599,39 @@ spi_flash_caps_t spi_flash_chip_generic_get_caps(esp_flash_t *chip)
|
|||||||
// 32M-bits address support
|
// 32M-bits address support
|
||||||
|
|
||||||
// flash suspend support
|
// flash suspend support
|
||||||
// Only `XMC` support suspend for now.
|
// XMC-D support suspend
|
||||||
|
if (chip->chip_id >> 16 == 0x46) {
|
||||||
|
caps_flags |= SPI_FLASH_CHIP_CAP_SUSPEND;
|
||||||
|
}
|
||||||
|
|
||||||
|
// XMC-D support suspend (some D series flash chip begin with 0x20, difference checked by SFDP)
|
||||||
if (chip->chip_id >> 16 == 0x20) {
|
if (chip->chip_id >> 16 == 0x20) {
|
||||||
|
uint8_t data = 0;
|
||||||
|
spi_flash_trans_t t = {
|
||||||
|
.command = CMD_RDSFDP,
|
||||||
|
.address_bitlen = 24,
|
||||||
|
.address = 0x32,
|
||||||
|
.mosi_len = 0,
|
||||||
|
.mosi_data = 0,
|
||||||
|
.miso_len = 1,
|
||||||
|
.miso_data = &data,
|
||||||
|
.dummy_bitlen = 8,
|
||||||
|
};
|
||||||
|
chip->host->driver->common_command(chip->host, &t);
|
||||||
|
if((data & 0x8) == 0x8) {
|
||||||
|
caps_flags |= SPI_FLASH_CHIP_CAP_SUSPEND;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
#if CONFIG_SPI_FLASH_FORCE_ENABLE_XMC_C_SUSPEND
|
||||||
|
// XMC-C suspend has big risk. But can enable this anyway.
|
||||||
|
if (chip->chip_id >> 16 == 0x20) {
|
||||||
|
caps_flags |= SPI_FLASH_CHIP_CAP_SUSPEND;
|
||||||
|
}
|
||||||
|
#endif
|
||||||
|
|
||||||
|
// FM support suspend
|
||||||
|
if (chip->chip_id >> 16 == 0xa1) {
|
||||||
caps_flags |= SPI_FLASH_CHIP_CAP_SUSPEND;
|
caps_flags |= SPI_FLASH_CHIP_CAP_SUSPEND;
|
||||||
}
|
}
|
||||||
// flash read unique id.
|
// flash read unique id.
|
||||||
|
Reference in New Issue
Block a user