2019-06-13 17:55:51 +08:00
|
|
|
idf_build_get_property(target IDF_TARGET)
|
|
|
|
|
2021-06-03 11:59:00 +08:00
|
|
|
set(include_dirs "include" "include/${target}")
|
|
|
|
|
|
|
|
set(private_required_comp "")
|
|
|
|
|
|
|
|
set(sources "")
|
|
|
|
|
|
|
|
if(target STREQUAL "linux")
|
|
|
|
list(APPEND sources "${target}/esp_rom_sys.c"
|
|
|
|
"${target}/esp_rom_crc.c"
|
|
|
|
"${target}/esp_rom_md5.c"
|
|
|
|
"${target}/esp_rom_efuse.c")
|
|
|
|
else()
|
|
|
|
list(APPEND include_dirs "${target}")
|
|
|
|
list(APPEND sources "patches/esp_rom_crc.c"
|
|
|
|
"patches/esp_rom_sys.c"
|
2021-08-27 15:28:48 +08:00
|
|
|
"patches/esp_rom_uart.c"
|
2021-09-28 19:35:36 +08:00
|
|
|
"patches/esp_rom_spiflash.c"
|
2021-08-27 15:28:48 +08:00
|
|
|
"patches/esp_rom_tjpgd.c")
|
2021-06-03 11:59:00 +08:00
|
|
|
list(APPEND private_required_comp soc hal)
|
|
|
|
endif()
|
2021-04-08 12:16:17 +08:00
|
|
|
|
2021-06-11 11:56:58 +08:00
|
|
|
if(CONFIG_IDF_TARGET_ARCH_XTENSA)
|
2021-04-08 12:16:17 +08:00
|
|
|
list(APPEND sources "patches/esp_rom_longjmp.S")
|
|
|
|
endif()
|
|
|
|
|
|
|
|
idf_component_register(SRCS ${sources}
|
2021-06-03 11:59:00 +08:00
|
|
|
INCLUDE_DIRS ${include_dirs}
|
2021-09-28 19:35:36 +08:00
|
|
|
PRIV_REQUIRES ${private_required_comp}
|
|
|
|
LDFRAGMENTS linker.lf)
|
2019-11-28 21:10:31 +08:00
|
|
|
|
2021-10-25 11:46:16 +08:00
|
|
|
if(target STREQUAL "esp32h2")
|
|
|
|
if(CONFIG_IDF_TARGET_ESP32H2_BETA_VERSION_1)
|
2021-11-16 20:15:12 +08:00
|
|
|
set(ld_folder "ld/rev1")
|
2021-10-25 11:46:16 +08:00
|
|
|
elseif(CONFIG_IDF_TARGET_ESP32H2_BETA_VERSION_2)
|
2021-11-16 20:15:12 +08:00
|
|
|
set(ld_folder "ld/rev2")
|
2021-10-25 11:46:16 +08:00
|
|
|
endif()
|
|
|
|
else()
|
2021-11-16 20:15:12 +08:00
|
|
|
set(ld_folder "ld")
|
2021-10-25 11:46:16 +08:00
|
|
|
endif()
|
|
|
|
|
2020-11-18 10:28:10 +11:00
|
|
|
# Append a target linker script at the target-specific path,
|
|
|
|
# only the 'name' part is different for each script
|
|
|
|
function(rom_linker_script name)
|
2021-11-16 20:15:12 +08:00
|
|
|
target_linker_script(${COMPONENT_LIB} INTERFACE "${target}/${ld_folder}/${target}.rom.${name}.ld")
|
2020-11-18 10:28:10 +11:00
|
|
|
endfunction()
|
|
|
|
|
2021-06-03 11:59:00 +08:00
|
|
|
if(target STREQUAL "linux")
|
|
|
|
# We need to disable some warnings due to the ROM code's printf implementation
|
2021-11-16 00:06:57 +01:00
|
|
|
if(CMAKE_C_COMPILER_ID STREQUAL "GNU" AND ${CMAKE_CXX_COMPILER_VERSION} GREATER "7.0.0")
|
|
|
|
target_compile_options(${COMPONENT_LIB} PRIVATE -Wimplicit-fallthrough=0 -Wno-shift-count-overflow)
|
|
|
|
endif()
|
|
|
|
if(CMAKE_C_COMPILER_ID MATCHES "Clang") # Clang or AppleClang
|
|
|
|
target_compile_options(${COMPONENT_LIB} PRIVATE -Wno-integer-overflow -Wno-shift-count-overflow)
|
2021-06-03 11:59:00 +08:00
|
|
|
endif()
|
|
|
|
else()
|
2021-11-16 20:15:12 +08:00
|
|
|
target_linker_script(${COMPONENT_LIB} INTERFACE "${target}/${ld_folder}/${target}.rom.ld")
|
2021-06-03 11:59:00 +08:00
|
|
|
rom_linker_script("api")
|
|
|
|
rom_linker_script("libgcc")
|
|
|
|
endif()
|
2020-11-18 10:28:10 +11:00
|
|
|
|
2022-01-06 18:02:09 +01:00
|
|
|
idf_build_get_property(time_t_size TIME_T_SIZE)
|
|
|
|
|
2019-03-14 17:29:32 +08:00
|
|
|
if(BOOTLOADER_BUILD)
|
2020-11-18 10:28:10 +11:00
|
|
|
if(target STREQUAL "esp32")
|
|
|
|
rom_linker_script("newlib-funcs")
|
2021-09-02 05:12:49 +10:00
|
|
|
if(NOT CONFIG_SPI_FLASH_ROM_DRIVER_PATCH)
|
|
|
|
rom_linker_script("spiflash")
|
|
|
|
endif()
|
2020-11-18 10:28:10 +11:00
|
|
|
if(CONFIG_ESP32_REV_MIN_3)
|
|
|
|
rom_linker_script("eco3")
|
|
|
|
endif()
|
2020-11-26 15:47:32 +11:00
|
|
|
|
2020-11-18 10:28:10 +11:00
|
|
|
elseif(target STREQUAL "esp32s2")
|
|
|
|
rom_linker_script("newlib-funcs")
|
|
|
|
rom_linker_script("spiflash")
|
2019-08-08 13:44:24 +10:00
|
|
|
|
2020-11-18 10:28:10 +11:00
|
|
|
elseif(target STREQUAL "esp32s3")
|
2021-03-17 18:48:05 +08:00
|
|
|
rom_linker_script("newlib")
|
2020-06-10 19:07:48 +08:00
|
|
|
|
2020-11-18 10:28:10 +11:00
|
|
|
elseif(target STREQUAL "esp32c3")
|
2020-12-22 18:24:39 +11:00
|
|
|
rom_linker_script("newlib")
|
2021-06-10 12:53:34 +08:00
|
|
|
|
|
|
|
elseif(target STREQUAL "esp32h2")
|
|
|
|
rom_linker_script("newlib")
|
2021-11-06 17:21:57 +08:00
|
|
|
|
2022-01-18 10:32:56 +08:00
|
|
|
elseif(target STREQUAL "esp32c2")
|
2021-11-06 17:21:57 +08:00
|
|
|
rom_linker_script("newlib")
|
|
|
|
rom_linker_script("mbedtls")
|
2020-11-26 15:47:32 +11:00
|
|
|
endif()
|
2019-06-13 17:55:51 +08:00
|
|
|
|
2020-11-18 10:28:10 +11:00
|
|
|
else() # Regular app build
|
2019-11-28 21:10:31 +08:00
|
|
|
if(target STREQUAL "esp32")
|
2020-11-18 10:28:10 +11:00
|
|
|
rom_linker_script("newlib-data")
|
|
|
|
rom_linker_script("syscalls")
|
2019-03-14 17:29:32 +08:00
|
|
|
|
2019-05-27 14:29:43 +08:00
|
|
|
if(NOT CONFIG_SPIRAM_CACHE_WORKAROUND)
|
2022-01-06 18:02:09 +01:00
|
|
|
# ESP32 only: these ROM functions may only be used if PSRAM cache workaround is disabled.
|
|
|
|
# Otherwise we need to link to a multilib version of libc compiled with PSRAM workaround.
|
2020-11-18 10:28:10 +11:00
|
|
|
rom_linker_script("newlib-funcs")
|
2022-01-06 18:02:09 +01:00
|
|
|
|
|
|
|
if(time_t_size EQUAL 4)
|
|
|
|
# The ROM functions listed in this linker script depend on sizeof(time_t).
|
|
|
|
# Since ROM for ESP32 was compiled for 32-bit time_t, only link these functions
|
|
|
|
# if the toolchain is also using 32-bit time_t.
|
2020-11-18 10:28:10 +11:00
|
|
|
rom_linker_script("newlib-time")
|
2019-03-14 17:29:32 +08:00
|
|
|
|
esp_rom: remove functions which depend on sizeof(struct stat)
...and all their callers.
With the upcoming switch from sizeof(time_t)==4 to sizeof(time_t)==8,
sizeof(struct stat) is also increasing.
A few newlib functions present in ROM allocate 'struct stat' on the
stack and call _fstat_r on this structure. The implementation of
fstat is provided in ESP-IDF. This implementation will often do
memset(st, 0, sizeof(*st)), where st is 'struct stat*', before setting
some fields of this structure. If IDF is built with sizeof(st)
different from sizeof(st) which ROM was built with, this will lead
to an out-of-bounds write and a stack corruption.
This commit removes problematic ROM functions from the linker script.
Here are the functions which allocate 'struct stat':
* _isatty_r (in ROM)
* __swhatbuf_r, called by __smakebuf_r, called by __swsetup_r and
__srefill_r (in ROM)
* _fseeko_r (not in ROM)
* glob2 (not in ROM)
* _gettemp (not in ROM)
As a result, these functions are used from libc.a, and use correct
size of 'stat' structure.
Closes https://github.com/espressif/esp-idf/issues/7980
2022-01-06 15:20:04 +01:00
|
|
|
if(CONFIG_NEWLIB_NANO_FORMAT)
|
2022-01-06 18:02:09 +01:00
|
|
|
# nano formatting functions in ROM are also built for 32-bit time_t.
|
esp_rom: remove functions which depend on sizeof(struct stat)
...and all their callers.
With the upcoming switch from sizeof(time_t)==4 to sizeof(time_t)==8,
sizeof(struct stat) is also increasing.
A few newlib functions present in ROM allocate 'struct stat' on the
stack and call _fstat_r on this structure. The implementation of
fstat is provided in ESP-IDF. This implementation will often do
memset(st, 0, sizeof(*st)), where st is 'struct stat*', before setting
some fields of this structure. If IDF is built with sizeof(st)
different from sizeof(st) which ROM was built with, this will lead
to an out-of-bounds write and a stack corruption.
This commit removes problematic ROM functions from the linker script.
Here are the functions which allocate 'struct stat':
* _isatty_r (in ROM)
* __swhatbuf_r, called by __smakebuf_r, called by __swsetup_r and
__srefill_r (in ROM)
* _fseeko_r (not in ROM)
* glob2 (not in ROM)
* _gettemp (not in ROM)
As a result, these functions are used from libc.a, and use correct
size of 'stat' structure.
Closes https://github.com/espressif/esp-idf/issues/7980
2022-01-06 15:20:04 +01:00
|
|
|
rom_linker_script("newlib-nano")
|
|
|
|
endif()
|
|
|
|
endif()
|
2019-05-27 14:29:43 +08:00
|
|
|
endif()
|
2019-03-14 17:29:32 +08:00
|
|
|
|
2019-05-27 14:29:43 +08:00
|
|
|
if(NOT CONFIG_SPI_FLASH_ROM_DRIVER_PATCH)
|
2020-11-18 10:28:10 +11:00
|
|
|
rom_linker_script("spiflash")
|
2019-05-27 14:29:43 +08:00
|
|
|
endif()
|
2019-03-29 12:37:51 +08:00
|
|
|
|
2020-02-25 01:21:41 +05:30
|
|
|
if(CONFIG_ESP32_REV_MIN_3)
|
2020-11-18 10:28:10 +11:00
|
|
|
rom_linker_script("eco3")
|
2020-02-25 01:21:41 +05:30
|
|
|
endif()
|
|
|
|
|
2020-01-17 11:47:08 +08:00
|
|
|
elseif(target STREQUAL "esp32s2")
|
2020-11-18 10:28:10 +11:00
|
|
|
rom_linker_script("newlib-funcs")
|
|
|
|
rom_linker_script("newlib-data")
|
|
|
|
rom_linker_script("spiflash")
|
2020-01-23 18:02:29 +01:00
|
|
|
|
2022-01-06 18:02:09 +01:00
|
|
|
if(time_t_size EQUAL 4)
|
|
|
|
# The ROM functions listed in this linker script depend on sizeof(time_t).
|
|
|
|
# Since ROM for ESP32-S2 was compiled for 32-bit time_t, only link these functions
|
|
|
|
# if the toolchain is also using 32-bit time_t.
|
|
|
|
rom_linker_script("newlib-time")
|
esp_rom: remove functions which depend on sizeof(struct stat)
...and all their callers.
With the upcoming switch from sizeof(time_t)==4 to sizeof(time_t)==8,
sizeof(struct stat) is also increasing.
A few newlib functions present in ROM allocate 'struct stat' on the
stack and call _fstat_r on this structure. The implementation of
fstat is provided in ESP-IDF. This implementation will often do
memset(st, 0, sizeof(*st)), where st is 'struct stat*', before setting
some fields of this structure. If IDF is built with sizeof(st)
different from sizeof(st) which ROM was built with, this will lead
to an out-of-bounds write and a stack corruption.
This commit removes problematic ROM functions from the linker script.
Here are the functions which allocate 'struct stat':
* _isatty_r (in ROM)
* __swhatbuf_r, called by __smakebuf_r, called by __swsetup_r and
__srefill_r (in ROM)
* _fseeko_r (not in ROM)
* glob2 (not in ROM)
* _gettemp (not in ROM)
As a result, these functions are used from libc.a, and use correct
size of 'stat' structure.
Closes https://github.com/espressif/esp-idf/issues/7980
2022-01-06 15:20:04 +01:00
|
|
|
|
|
|
|
if(CONFIG_NEWLIB_NANO_FORMAT)
|
2022-01-06 18:02:09 +01:00
|
|
|
# nano formatting functions in ROM are also built for 32-bit time_t.
|
esp_rom: remove functions which depend on sizeof(struct stat)
...and all their callers.
With the upcoming switch from sizeof(time_t)==4 to sizeof(time_t)==8,
sizeof(struct stat) is also increasing.
A few newlib functions present in ROM allocate 'struct stat' on the
stack and call _fstat_r on this structure. The implementation of
fstat is provided in ESP-IDF. This implementation will often do
memset(st, 0, sizeof(*st)), where st is 'struct stat*', before setting
some fields of this structure. If IDF is built with sizeof(st)
different from sizeof(st) which ROM was built with, this will lead
to an out-of-bounds write and a stack corruption.
This commit removes problematic ROM functions from the linker script.
Here are the functions which allocate 'struct stat':
* _isatty_r (in ROM)
* __swhatbuf_r, called by __smakebuf_r, called by __swsetup_r and
__srefill_r (in ROM)
* _fseeko_r (not in ROM)
* glob2 (not in ROM)
* _gettemp (not in ROM)
As a result, these functions are used from libc.a, and use correct
size of 'stat' structure.
Closes https://github.com/espressif/esp-idf/issues/7980
2022-01-06 15:20:04 +01:00
|
|
|
rom_linker_script("newlib-nano")
|
|
|
|
endif()
|
2020-01-23 18:02:29 +01:00
|
|
|
endif()
|
2020-06-10 19:07:48 +08:00
|
|
|
|
|
|
|
elseif(target STREQUAL "esp32s3")
|
2021-03-17 18:48:05 +08:00
|
|
|
rom_linker_script("newlib")
|
|
|
|
rom_linker_script("version")
|
2020-06-10 19:07:48 +08:00
|
|
|
|
2022-01-06 18:02:09 +01:00
|
|
|
if(time_t_size EQUAL 4)
|
|
|
|
# The ROM functions listed in this linker script depend on sizeof(time_t).
|
|
|
|
# Since ROM for ESP32-S3 was compiled for 32-bit time_t, only link these functions
|
|
|
|
# if the toolchain is also using 32-bit time_t.
|
|
|
|
rom_linker_script("newlib-time")
|
esp_rom: remove functions which depend on sizeof(struct stat)
...and all their callers.
With the upcoming switch from sizeof(time_t)==4 to sizeof(time_t)==8,
sizeof(struct stat) is also increasing.
A few newlib functions present in ROM allocate 'struct stat' on the
stack and call _fstat_r on this structure. The implementation of
fstat is provided in ESP-IDF. This implementation will often do
memset(st, 0, sizeof(*st)), where st is 'struct stat*', before setting
some fields of this structure. If IDF is built with sizeof(st)
different from sizeof(st) which ROM was built with, this will lead
to an out-of-bounds write and a stack corruption.
This commit removes problematic ROM functions from the linker script.
Here are the functions which allocate 'struct stat':
* _isatty_r (in ROM)
* __swhatbuf_r, called by __smakebuf_r, called by __swsetup_r and
__srefill_r (in ROM)
* _fseeko_r (not in ROM)
* glob2 (not in ROM)
* _gettemp (not in ROM)
As a result, these functions are used from libc.a, and use correct
size of 'stat' structure.
Closes https://github.com/espressif/esp-idf/issues/7980
2022-01-06 15:20:04 +01:00
|
|
|
|
|
|
|
if(CONFIG_NEWLIB_NANO_FORMAT)
|
2022-01-06 18:02:09 +01:00
|
|
|
# nano formatting functions in ROM are also built for 32-bit time_t.
|
esp_rom: remove functions which depend on sizeof(struct stat)
...and all their callers.
With the upcoming switch from sizeof(time_t)==4 to sizeof(time_t)==8,
sizeof(struct stat) is also increasing.
A few newlib functions present in ROM allocate 'struct stat' on the
stack and call _fstat_r on this structure. The implementation of
fstat is provided in ESP-IDF. This implementation will often do
memset(st, 0, sizeof(*st)), where st is 'struct stat*', before setting
some fields of this structure. If IDF is built with sizeof(st)
different from sizeof(st) which ROM was built with, this will lead
to an out-of-bounds write and a stack corruption.
This commit removes problematic ROM functions from the linker script.
Here are the functions which allocate 'struct stat':
* _isatty_r (in ROM)
* __swhatbuf_r, called by __smakebuf_r, called by __swsetup_r and
__srefill_r (in ROM)
* _fseeko_r (not in ROM)
* glob2 (not in ROM)
* _gettemp (not in ROM)
As a result, these functions are used from libc.a, and use correct
size of 'stat' structure.
Closes https://github.com/espressif/esp-idf/issues/7980
2022-01-06 15:20:04 +01:00
|
|
|
rom_linker_script("newlib-nano")
|
|
|
|
endif()
|
2020-06-10 19:07:48 +08:00
|
|
|
endif()
|
|
|
|
|
2020-11-26 15:47:32 +11:00
|
|
|
elseif(target STREQUAL "esp32c3")
|
2020-11-18 10:28:10 +11:00
|
|
|
rom_linker_script("newlib")
|
|
|
|
rom_linker_script("version")
|
2020-11-26 15:47:32 +11:00
|
|
|
|
2022-01-06 18:02:09 +01:00
|
|
|
if(time_t_size EQUAL 4)
|
|
|
|
# The ROM functions listed in this linker script depend on sizeof(time_t).
|
|
|
|
# Since ROM for ESP32-C3 was compiled for 32-bit time_t, only link these functions
|
|
|
|
# if the toolchain is also using 32-bit time_t.
|
|
|
|
rom_linker_script("newlib-time")
|
esp_rom: remove functions which depend on sizeof(struct stat)
...and all their callers.
With the upcoming switch from sizeof(time_t)==4 to sizeof(time_t)==8,
sizeof(struct stat) is also increasing.
A few newlib functions present in ROM allocate 'struct stat' on the
stack and call _fstat_r on this structure. The implementation of
fstat is provided in ESP-IDF. This implementation will often do
memset(st, 0, sizeof(*st)), where st is 'struct stat*', before setting
some fields of this structure. If IDF is built with sizeof(st)
different from sizeof(st) which ROM was built with, this will lead
to an out-of-bounds write and a stack corruption.
This commit removes problematic ROM functions from the linker script.
Here are the functions which allocate 'struct stat':
* _isatty_r (in ROM)
* __swhatbuf_r, called by __smakebuf_r, called by __swsetup_r and
__srefill_r (in ROM)
* _fseeko_r (not in ROM)
* glob2 (not in ROM)
* _gettemp (not in ROM)
As a result, these functions are used from libc.a, and use correct
size of 'stat' structure.
Closes https://github.com/espressif/esp-idf/issues/7980
2022-01-06 15:20:04 +01:00
|
|
|
|
|
|
|
if(CONFIG_NEWLIB_NANO_FORMAT)
|
2022-01-06 18:02:09 +01:00
|
|
|
# nano formatting functions in ROM are also built for 32-bit time_t.
|
esp_rom: remove functions which depend on sizeof(struct stat)
...and all their callers.
With the upcoming switch from sizeof(time_t)==4 to sizeof(time_t)==8,
sizeof(struct stat) is also increasing.
A few newlib functions present in ROM allocate 'struct stat' on the
stack and call _fstat_r on this structure. The implementation of
fstat is provided in ESP-IDF. This implementation will often do
memset(st, 0, sizeof(*st)), where st is 'struct stat*', before setting
some fields of this structure. If IDF is built with sizeof(st)
different from sizeof(st) which ROM was built with, this will lead
to an out-of-bounds write and a stack corruption.
This commit removes problematic ROM functions from the linker script.
Here are the functions which allocate 'struct stat':
* _isatty_r (in ROM)
* __swhatbuf_r, called by __smakebuf_r, called by __swsetup_r and
__srefill_r (in ROM)
* _fseeko_r (not in ROM)
* glob2 (not in ROM)
* _gettemp (not in ROM)
As a result, these functions are used from libc.a, and use correct
size of 'stat' structure.
Closes https://github.com/espressif/esp-idf/issues/7980
2022-01-06 15:20:04 +01:00
|
|
|
rom_linker_script("newlib-nano")
|
|
|
|
endif()
|
2020-11-26 15:47:32 +11:00
|
|
|
endif()
|
2021-03-03 11:57:58 +08:00
|
|
|
|
|
|
|
if(CONFIG_ESP32C3_REV_MIN_3)
|
|
|
|
rom_linker_script("eco3")
|
|
|
|
endif()
|
2021-06-10 12:53:34 +08:00
|
|
|
|
|
|
|
elseif(target STREQUAL "esp32h2")
|
|
|
|
rom_linker_script("newlib")
|
|
|
|
rom_linker_script("version")
|
|
|
|
|
2022-01-06 18:02:09 +01:00
|
|
|
if(CONFIG_NEWLIB_NANO_FORMAT AND time_t_size EQUAL 4)
|
|
|
|
# nano formatting functions in ROM are built for 32-bit time_t,
|
|
|
|
# only link them if the toolchain is also using 32-bit time_t and nano formatting was requested.
|
|
|
|
rom_linker_script("newlib-nano")
|
2021-11-06 17:21:57 +08:00
|
|
|
endif()
|
|
|
|
|
2022-01-18 10:32:56 +08:00
|
|
|
elseif(target STREQUAL "esp32c2")
|
2021-11-06 17:21:57 +08:00
|
|
|
rom_linker_script("newlib")
|
|
|
|
rom_linker_script("version")
|
|
|
|
rom_linker_script("mbedtls")
|
|
|
|
|
2022-01-06 18:02:09 +01:00
|
|
|
if(CONFIG_NEWLIB_NANO_FORMAT AND time_t_size EQUAL 4)
|
|
|
|
# nano formatting functions in ROM are built for 32-bit time_t,
|
|
|
|
# only link them if the toolchain is also using 32-bit time_t and nano formatting was requested.
|
|
|
|
rom_linker_script("newlib-nano")
|
2021-06-10 12:53:34 +08:00
|
|
|
endif()
|
2019-03-14 17:29:32 +08:00
|
|
|
endif()
|
2019-05-27 14:29:43 +08:00
|
|
|
|
2021-06-11 11:56:58 +08:00
|
|
|
if(CONFIG_IDF_TARGET_ARCH_XTENSA)
|
2021-04-08 12:16:17 +08:00
|
|
|
target_link_libraries(${COMPONENT_LIB} INTERFACE "-Wl,--wrap=longjmp")
|
|
|
|
endif()
|
2019-03-14 17:29:32 +08:00
|
|
|
endif()
|
2020-04-30 15:19:56 +02:00
|
|
|
|
|
|
|
if(target STREQUAL "esp32s2")
|
|
|
|
target_sources(${COMPONENT_LIB} PRIVATE "esp32s2/usb_descriptors.c")
|
|
|
|
endif()
|