spi_flash: only link flash vendor which is officially supported to save IRAM

This commit is contained in:
Cao Sen Miao
2023-02-06 19:23:10 +08:00
parent 2e55775f95
commit 0f8f13d21d
20 changed files with 337 additions and 10 deletions

View File

@@ -140,6 +140,7 @@ The following options will reduce IRAM usage of some ESP-IDF features:
- Disabling :ref:`CONFIG_ESP_EVENT_POST_FROM_IRAM_ISR` prevents posting ``esp_event`` events from :ref:`iram-safe-interrupt-handlers` but will save some IRAM.
- Disabling :ref:`CONFIG_SPI_MASTER_ISR_IN_IRAM` prevents spi_master interrupts from being serviced while writing to flash, and may otherwise reduce spi_master performance, but will save some IRAM.
- Setting :ref:`CONFIG_HAL_DEFAULT_ASSERTION_LEVEL` to disable assertion for HAL component will save some IRAM especially for HAL code who calls `HAL_ASSERT` a lot and resides in IRAM.
- Refer to sdkconfig menu ``Auto-detect flash chips`` and you can disable flash drivers which you don't need to save some IRAM.
.. only:: esp32c3

View File

@@ -47,6 +47,10 @@ Quad mode (QIO/QOUT) is supported on following chip types:
6. XMC
7. BOYA
.. note::
For every flash chip vendor listed above will only be supported by default when the flash is officially supported. If you want to enable/disable the flash series you can go through Kconfig manu ``Auto-detect flash chips``.
Optional Features
^^^^^^^^^^^^^^^^^