26014bb404
- Fix incorrect setting in the edge interrupt acknowledgement API - Avoid executing the service call dispatcher in the U-mode ecall, rather execute `mret` to jump it - Avoid `t1` register corruption when processing `ecall` - Switch back to the bootloader stack from TEE stack after the execution of the entire TEE initialization routine
39 lines
1.1 KiB
C
39 lines
1.1 KiB
C
/*
|
|
* SPDX-FileCopyrightText: 2021-2025 Espressif Systems (Shanghai) CO LTD
|
|
*
|
|
* SPDX-License-Identifier: Apache-2.0
|
|
*/
|
|
|
|
#include <stdarg.h>
|
|
#include "esp_tee.h"
|
|
|
|
/* U-mode interrupt handler */
|
|
extern int _tee_interrupt_handler(void);
|
|
/* U-to-M mode switch */
|
|
extern uint32_t _u2m_switch(int argc, va_list ap);
|
|
/* REE IRAM end */
|
|
extern uint32_t _iram_text_end;
|
|
/* REE IROM end */
|
|
extern uint32_t _instruction_reserved_end;
|
|
/* REE DROM start */
|
|
extern uint32_t _rodata_reserved_start;
|
|
/* REE DROM end */
|
|
extern uint32_t _rodata_reserved_end;
|
|
|
|
esp_tee_config_t esp_tee_app_config __attribute__((section(".esp_tee_app_cfg"))) = {
|
|
.magic_word = ESP_TEE_APP_CFG_MAGIC,
|
|
.api_major_version = ESP_TEE_API_MAJOR_VER,
|
|
.api_minor_version = ESP_TEE_API_MINOR_VER,
|
|
|
|
/* s_intr_handler is NULL in the REE image, but will be written by
|
|
* the TEE before it loads the binary
|
|
*/
|
|
|
|
.ns_int_handler = &_tee_interrupt_handler,
|
|
.ns_entry_addr = &_u2m_switch,
|
|
.ns_iram_end = &_iram_text_end,
|
|
.ns_irom_end = &_instruction_reserved_end,
|
|
.ns_drom_start = &_rodata_reserved_start,
|
|
.ns_drom_end = &_rodata_reserved_end,
|
|
};
|