mirror of
https://github.com/espressif/esp-idf.git
synced 2024-10-05 20:47:46 -04:00
2b7681ec4f
There used to be dummy phase before out phase in common command transactions. This corrupts the data. The code before never actually operate (clear) the QE bit, once it finds the QE bit is set. It's hard to check whether the QE set/disable functions work well. This commit: 1. Cancel the dummy phase 2. Set and clear the QE bit according to chip settings, allowing tests for QE bits. However for some chips (Winbond for example), it's not forced to clear the QE bit if not able to. 3. Also refactor to allow chip_generic and other chips to share the same code to read and write qe bit; let common command and read command share configure_host_io_mode. 4. Rename read mode to io mode since maybe we will write data with quad mode one day.
43 lines
1.3 KiB
CMake
43 lines
1.3 KiB
CMake
set(priv_requires bootloader_support soc)
|
|
if(BOOTLOADER_BUILD)
|
|
# Bootloader needs SPIUnlock from this file, but doesn't
|
|
# need other parts of this component
|
|
set(srcs "spi_flash_rom_patch.c")
|
|
set(cache_srcs "")
|
|
else()
|
|
set(cache_srcs
|
|
"cache_utils.c"
|
|
"flash_mmap.c"
|
|
"flash_ops.c"
|
|
)
|
|
set(srcs
|
|
"partition.c"
|
|
"spi_flash_rom_patch.c"
|
|
)
|
|
# New implementation
|
|
list(APPEND cache_srcs
|
|
"esp_flash_api.c"
|
|
"esp_flash_spi_init.c"
|
|
"spi_flash_os_func_app.c"
|
|
"spi_flash_os_func_noos.c"
|
|
)
|
|
list(APPEND srcs
|
|
"spi_flash_chip_drivers.c"
|
|
"spi_flash_chip_generic.c"
|
|
"spi_flash_chip_issi.c"
|
|
"memspi_host_driver.c"
|
|
)
|
|
list(APPEND srcs ${cache_srcs})
|
|
set(priv_requires bootloader_support app_update soc)
|
|
endif()
|
|
|
|
idf_component_register(SRCS "${srcs}"
|
|
PRIV_REQUIRES "${priv_requires}"
|
|
INCLUDE_DIRS include
|
|
PRIV_INCLUDE_DIRS private_include
|
|
LDFRAGMENTS linker.lf)
|
|
|
|
# Avoid cache miss by unexpected inlineing when built by -Os
|
|
set_source_files_properties(${cache_srcs} PROPERTIES COMPILE_FLAGS
|
|
"-fno-inline-functions -fno-inline-small-functions -fno-inline-functions-called-once")
|