mirror of
https://github.com/espressif/esp-idf
synced 2025-03-09 17:19:09 -04:00
doc(spi_flash): hide unsupported optional features
This commit is contained in:
parent
c32a56fe3b
commit
31201cc947
@ -101,7 +101,6 @@ menu "Bootloader config"
|
||||
config BOOTLOADER_FLASH_XMC_SUPPORT
|
||||
bool "Enable the support for flash chips of XMC (READ DOCS FIRST)"
|
||||
default y
|
||||
depends on !IDF_ENV_BRINGUP
|
||||
help
|
||||
Perform the startup flow recommended by XMC. Please consult XMC for the details of this flow.
|
||||
XMC chips will be forbidden to be used, when this option is disabled.
|
||||
@ -119,7 +118,7 @@ menu "Bootloader config"
|
||||
|
||||
config BOOTLOADER_CACHE_32BIT_ADDR_OCTAL_FLASH
|
||||
bool
|
||||
default y if ESPTOOLPY_OCT_FLASH && SPI_FLASH_32BIT_ADDRESS
|
||||
default y if ESPTOOLPY_OCT_FLASH && BOOTLOADER_FLASH_32BIT_ADDR
|
||||
default n
|
||||
|
||||
endmenu
|
||||
|
@ -24,6 +24,4 @@ CONFIG_FLASH_ENCRYPTION_UART_BOOTLOADER_ALLOW_CACHE CONFIG_SECURE_FLASH_
|
||||
# Secure Boot Scheme
|
||||
CONFIG_SECURE_BOOT_ENABLED CONFIG_SECURE_BOOT_V1_ENABLED
|
||||
|
||||
CONFIG_SPI_FLASH_32BIT_ADDR_ENABLE CONFIG_BOOTLOADER_CACHE_32BIT_ADDR_QUAD_FLASH
|
||||
CONFIG_SPI_FLASH_QUAD_32BIT_ADDR_ENABLE CONFIG_BOOTLOADER_CACHE_32BIT_ADDR_QUAD_FLASH
|
||||
CONFIG_SPI_FLASH_OCTAL_32BIT_ADDR_ENABLE CONFIG_BOOTLOADER_CACHE_32BIT_ADDR_OCTAL_FLASH
|
||||
|
@ -109,7 +109,7 @@ extern const bootloader_qio_info_t __attribute__((weak)) bootloader_flash_qe_sup
|
||||
*/
|
||||
esp_err_t __attribute__((weak)) bootloader_flash_unlock(void);
|
||||
|
||||
#if CONFIG_SPI_FLASH_OCTAL_32BIT_ADDR_ENABLE
|
||||
#if CONFIG_BOOTLOADER_CACHE_32BIT_ADDR_OCTAL_FLASH
|
||||
/**
|
||||
* @brief Enable 32bits address flash(larger than 16MB) can map to cache.
|
||||
*
|
||||
|
@ -415,7 +415,7 @@ esp_err_t bootloader_flash_erase_range(uint32_t start_addr, uint32_t size)
|
||||
return spi_to_esp_err(rc);
|
||||
}
|
||||
|
||||
#if CONFIG_SPI_FLASH_OCTAL_32BIT_ADDR_ENABLE
|
||||
#if CONFIG_BOOTLOADER_CACHE_32BIT_ADDR_OCTAL_FLASH
|
||||
void bootloader_flash_32bits_address_map_enable(esp_rom_spiflash_read_mode_t flash_mode)
|
||||
{
|
||||
esp_rom_opiflash_spi0rd_t cache_rd = {};
|
||||
|
@ -220,7 +220,7 @@ static esp_err_t bootloader_init_spi_flash(void)
|
||||
#if CONFIG_ESPTOOLPY_FLASHMODE_QIO || CONFIG_ESPTOOLPY_FLASHMODE_QOUT
|
||||
bootloader_enable_qio_mode();
|
||||
#endif
|
||||
#if CONFIG_SPI_FLASH_OCTAL_32BIT_ADDR_ENABLE
|
||||
#if CONFIG_BOOTLOADER_CACHE_32BIT_ADDR_OCTAL_FLASH
|
||||
bootloader_flash_32bits_address_map_enable(bootloader_flash_get_spi_mode());
|
||||
#endif
|
||||
print_flash_info(&bootloader_image_hdr);
|
||||
|
@ -28,28 +28,29 @@ Some features are not supported on all ESP chips and Flash chips. You can check
|
||||
Auto Suspend & Resume
|
||||
---------------------
|
||||
|
||||
This feature is only supported on ESP32-C3 for now.
|
||||
|
||||
The support for ESP32-S3, ESP32-C2 may be added in the future.
|
||||
|
||||
.. only:: esp32c3
|
||||
|
||||
You can refer to :ref:`auto-suspend` for more information about this feature. The support list is as follows.
|
||||
|
||||
ESP Chips List:
|
||||
|
||||
1. ESP32C3
|
||||
|
||||
Flash Chips List:
|
||||
List of Flash chips that support this feature:
|
||||
|
||||
1. XM25QxxC series.
|
||||
|
||||
.. attention::
|
||||
|
||||
There are multiple limitations about the auto-suspend feature, please do read :ref:`auto-suspend` for more information before you enable this feature.
|
||||
|
||||
Flash unique ID
|
||||
---------------
|
||||
|
||||
This feature is supported on all Espressif chips.
|
||||
|
||||
Unique ID is not flash id, which means flash has 64-Bit unique ID for each device. The instruction to read the unique ID (4Bh) accesses a factory-set read-only 64-bit number that is unique to each flash device. This ID number helps you to recognize each single device. Not all flash vendors support this feature. If you try to read the unique ID on a chip which does not have this feature, the behavior is not determined. The support list is as follows.
|
||||
|
||||
ESP Chips Lists:
|
||||
|
||||
ALL
|
||||
|
||||
Flash Chips List:
|
||||
List of Flash chips that support this feature:
|
||||
|
||||
1. ISSI
|
||||
2. GD
|
||||
@ -62,6 +63,12 @@ Flash Chips List:
|
||||
High performance mode
|
||||
---------------------
|
||||
|
||||
This featuer is only supported on ESP32-S3 for now.
|
||||
|
||||
The support for ESP32-S2, ESP32-C3 may be added in the future.
|
||||
|
||||
.. only:: esp32s3
|
||||
|
||||
.. note::
|
||||
|
||||
This section is provided for Dual mode (DOUT/DIO) and Quad mode (QIO/QOUT) flash chips. Octal flash used on ESP-chips support High performance mode by default so far, you can refer to the octal flash support list below.
|
||||
@ -102,12 +109,6 @@ Check whether the bootloader supports `DC Aware` in the following way:
|
||||
|
||||
- For versions below v4.4.4, the bootloader doesn't support `DC Aware`.
|
||||
|
||||
ESP Chips List:
|
||||
|
||||
1. ESP32S3
|
||||
|
||||
(The SW support for other chips haven't been done yet)
|
||||
|
||||
.. _hpm_dc_support_list:
|
||||
|
||||
Quad Flash HPM support list
|
||||
@ -118,7 +119,6 @@ Flash chips that don't need HPM-DC:
|
||||
1. GD25Q64C (ID: 0xC84017)
|
||||
2. GD25Q32C (ID: 0xC84016)
|
||||
3. ZB25VQ32B (ID: 0x5E4016)
|
||||
4. GD25LQ255E (ID: 0xC86019)
|
||||
|
||||
Following flash chips also have HPM feature, but requires the bootloader to support `DC Aware`:
|
||||
|
||||
@ -130,6 +130,8 @@ Following flash chips also have HPM feature, but requires the bootloader to supp
|
||||
OPI flash support
|
||||
-----------------
|
||||
|
||||
This feature is only supporetd on ESP32-S3 for now.
|
||||
|
||||
OPI flash means that the flash chip supports octal peripheral interface, which has octal I/O pins. Different octal flash has different configurations and different commands. Hence, it is necessary to carefully check the support list.
|
||||
|
||||
.. only:: esp32s3
|
||||
@ -138,24 +140,19 @@ OPI flash means that the flash chip supports octal peripheral interface, which h
|
||||
|
||||
To know how to configure menuconfig for a board with different Flash and PSRAM, please refer to the :ref:`SPI Flash and External SPI RAM Configuration <flash-psram-configuration>`
|
||||
|
||||
ESP Chips List:
|
||||
|
||||
1. ESP32S3
|
||||
|
||||
Flash Chips List:
|
||||
List of Flash chips that support this feature:
|
||||
|
||||
1. MX25UM25645G
|
||||
2. MX25UM12345G
|
||||
|
||||
32-bit Address Flash Chips
|
||||
--------------------------
|
||||
|
||||
This feature is supported on all Espressif chips (with various restrictions to application).
|
||||
|
||||
Most NOR flash chips used by Espressif chips use 24-bits address, which can cover 16 MBytes memory. However, for larger memory (usually equal to or larger than 16 MBytes), flash uses a 32-bits address to address larger memory. Regretfully, 32-bits address chips have vendor-specific commands, so we need to support the chips one by one.
|
||||
|
||||
ESP Chips List:
|
||||
|
||||
ALL ESP Chips support this.
|
||||
|
||||
Flash Chips List:
|
||||
List of Flash chips that support this feature:
|
||||
|
||||
1. W25Q256
|
||||
2. GD25Q256
|
||||
|
Loading…
x
Reference in New Issue
Block a user