mirror of
https://github.com/espressif/esp-idf.git
synced 2024-10-05 20:47:46 -04:00
a8a3756b38
This commit makes changes to cpu_ll.h, cpu_hal.h, and interrupt_controller_hal.h: - Moved to esp_hw_support in order to be deprecated in the future - HAL/LL API now route their calls to esp_cpu.h functions instead Also updated soc_hal.h as follows: - Removed __SOC_HAL_..._OTHER_CORES() macros as they dependend on cpu_hal.h - Made soc_hal.h and soc_ll.h interfaces always inline, and removed soc_hal.c. This commit also updates the XCHAL_ERRATUM_572 workaround by - Removing it's HAL function and invoking the workaround it directly the bootloader - Added missing workaround for the ESP32-S3
31 lines
972 B
Plaintext
31 lines
972 B
Plaintext
[mapping:hal]
|
|
archive: libhal.a
|
|
entries:
|
|
mmu_hal (noflash)
|
|
if IDF_TARGET_ESP32 = n:
|
|
cache_hal (noflash)
|
|
spi_hal_iram (noflash)
|
|
spi_slave_hal_iram (noflash)
|
|
if UART_ISR_IN_IRAM = y || ESP_PANIC_HANDLER_IRAM = y:
|
|
uart_hal_iram (noflash)
|
|
else:
|
|
uart_hal_iram (default)
|
|
spi_flash_hal_iram (noflash)
|
|
spi_flash_encrypt_hal_iram (noflash)
|
|
ledc_hal_iram (noflash)
|
|
i2c_hal_iram (noflash)
|
|
if HAL_WDT_USE_ROM_IMPL = n:
|
|
wdt_hal_iram (noflash)
|
|
if SOC_SYSTIMER_SUPPORTED = y && HAL_SYSTIMER_USE_ROM_IMPL = n:
|
|
systimer_hal (noflash)
|
|
if TWAI_ISR_IN_IRAM = y:
|
|
twai_hal_iram (noflash)
|
|
if IDF_TARGET_ESP32 = n:
|
|
spi_flash_hal_gpspi (noflash)
|
|
if GPTIMER_CTRL_FUNC_IN_IRAM = y:
|
|
timer_hal_iram (noflash)
|
|
if GPIO_CTRL_FUNC_IN_IRAM = y:
|
|
gpio_hal: gpio_hal_intr_disable (noflash)
|
|
if LCD_RGB_ISR_IRAM_SAFE = y:
|
|
lcd_hal: lcd_hal_cal_pclk_freq (noflash)
|