mirror of
				https://github.com/espressif/esp-idf.git
				synced 2025-10-30 20:51:41 +00:00 
			
		
		
		
	 6005cc9163
			
		
	
	6005cc9163
	
	
	
		
			
			This commit marks all functions in interrupt_controller_hal.h, cpu_ll.h and cpu_hal.h as deprecated. Users should use functions from esp_cpu.h instead.
		
			
				
	
	
		
			220 lines
		
	
	
		
			5.9 KiB
		
	
	
	
		
			C
		
	
	
	
	
	
			
		
		
	
	
			220 lines
		
	
	
		
			5.9 KiB
		
	
	
	
		
			C
		
	
	
	
	
	
| /*
 | |
|  * SPDX-FileCopyrightText: 2015-2022 Espressif Systems (Shanghai) CO LTD
 | |
|  *
 | |
|  * SPDX-License-Identifier: Apache-2.0
 | |
|  */
 | |
| 
 | |
| #include <string.h>
 | |
| #include "esp_gdbstub_common.h"
 | |
| #include "soc/soc_memory_layout.h"
 | |
| #include "xtensa/config/specreg.h"
 | |
| #include "sdkconfig.h"
 | |
| #include "esp_cpu.h"
 | |
| #include "esp_ipc_isr.h"
 | |
| #include "esp_private/crosscore_int.h"
 | |
| 
 | |
| #if !XCHAL_HAVE_WINDOWED
 | |
| #warning "gdbstub_xtensa: revisit the implementation for Call0 ABI"
 | |
| #endif
 | |
| 
 | |
| extern int _invalid_pc_placeholder;
 | |
| 
 | |
| static void init_regfile(esp_gdbstub_gdb_regfile_t *dst)
 | |
| {
 | |
|     memset(dst, 0, sizeof(*dst));
 | |
| }
 | |
| 
 | |
| static void update_regfile_common(esp_gdbstub_gdb_regfile_t *dst)
 | |
| {
 | |
|     if (dst->a[0] & 0x8000000U) {
 | |
|         dst->a[0] = (uint32_t)esp_cpu_pc_to_addr(dst->a[0]);
 | |
|     }
 | |
|     if (!esp_stack_ptr_is_sane(dst->a[1])) {
 | |
|         dst->a[1] = 0xDEADBEEF;
 | |
|     }
 | |
|     dst->windowbase = 0;
 | |
|     dst->windowstart = 0x1;
 | |
|     RSR(CONFIGID0, dst->configid0);
 | |
|     RSR(CONFIGID1, dst->configid1);
 | |
| }
 | |
| 
 | |
| void esp_gdbstub_frame_to_regfile(const esp_gdbstub_frame_t *frame, esp_gdbstub_gdb_regfile_t *dst)
 | |
| {
 | |
|     init_regfile(dst);
 | |
|     const uint32_t *a_regs = (const uint32_t *) &frame->a0;
 | |
|     if (!(esp_ptr_executable(esp_cpu_pc_to_addr(frame->pc)) && (frame->pc & 0xC0000000U))) {
 | |
|         /* Xtensa ABI sets the 2 MSBs of the PC according to the windowed call size
 | |
|          * Incase the PC is invalid, GDB will fail to translate addresses to function names
 | |
|          * Hence replacing the PC to a placeholder address in case of invalid PC
 | |
|          */
 | |
|         dst->pc = (uint32_t)&_invalid_pc_placeholder;
 | |
|     } else {
 | |
|         dst->pc = (uint32_t)esp_cpu_pc_to_addr(frame->pc);
 | |
|     }
 | |
| 
 | |
|     for (int i = 0; i < 16; i++) {
 | |
|         dst->a[i] = a_regs[i];
 | |
|     }
 | |
|     for (int i = 16; i < 64; i++) {
 | |
|         dst->a[i] = 0xDEADBEEF;
 | |
|     }
 | |
| 
 | |
| #if XCHAL_HAVE_LOOPS
 | |
|     dst->lbeg = frame->lbeg;
 | |
|     dst->lend = frame->lend;
 | |
|     dst->lcount = frame->lcount;
 | |
| #endif
 | |
| 
 | |
|     dst->ps = (frame->ps & PS_UM) ? (frame->ps & ~PS_EXCM) : frame->ps;
 | |
|     dst->sar = frame->sar;
 | |
|     update_regfile_common(dst);
 | |
| }
 | |
| 
 | |
| #ifdef CONFIG_ESP_GDBSTUB_SUPPORT_TASKS
 | |
| 
 | |
| static void solicited_frame_to_regfile(const XtSolFrame *frame, esp_gdbstub_gdb_regfile_t *dst)
 | |
| {
 | |
|     init_regfile(dst);
 | |
|     const uint32_t *a_regs = (const uint32_t *) &frame->a0;
 | |
|     if (!(esp_ptr_executable(esp_cpu_pc_to_addr(frame->pc)) && (frame->pc & 0xC0000000U))) {
 | |
|         dst->pc = (uint32_t)&_invalid_pc_placeholder;
 | |
|     } else {
 | |
|         dst->pc = (uint32_t)esp_cpu_pc_to_addr(frame->pc);
 | |
|     }
 | |
| 
 | |
|     /* only 4 registers saved in the solicited frame */
 | |
|     for (int i = 0; i < 4; i++) {
 | |
|         dst->a[i] = a_regs[i];
 | |
|     }
 | |
|     for (int i = 4; i < 64; i++) {
 | |
|         dst->a[i] = 0xDEADBEEF;
 | |
|     }
 | |
| 
 | |
|     dst->ps = (frame->ps & PS_UM) ? (frame->ps & ~PS_EXCM) : frame->ps;
 | |
|     update_regfile_common(dst);
 | |
| }
 | |
| 
 | |
| /* Represents FreeRTOS TCB structure */
 | |
| typedef struct {
 | |
|     uint8_t *top_of_stack;
 | |
|     /* Other members aren't needed */
 | |
| } dummy_tcb_t;
 | |
| 
 | |
| 
 | |
| void esp_gdbstub_tcb_to_regfile(TaskHandle_t tcb, esp_gdbstub_gdb_regfile_t *dst)
 | |
| {
 | |
|     const dummy_tcb_t *dummy_tcb = (const dummy_tcb_t *) tcb;
 | |
| 
 | |
|     const XtExcFrame *frame = (XtExcFrame *) dummy_tcb->top_of_stack;
 | |
|     if (frame->exit != 0) {
 | |
|         esp_gdbstub_frame_to_regfile(frame, dst);
 | |
|     } else {
 | |
|         const XtSolFrame *taskFrame = (const XtSolFrame *) dummy_tcb->top_of_stack;
 | |
|         solicited_frame_to_regfile(taskFrame, dst);
 | |
|     }
 | |
| }
 | |
| 
 | |
| #endif // CONFIG_ESP_GDBSTUB_SUPPORT_TASKS
 | |
| 
 | |
| int esp_gdbstub_get_signal(const esp_gdbstub_frame_t *frame)
 | |
| {
 | |
|     const char exccause_to_signal[] = {4, 31, 11, 11, 2, 6, 8, 0, 6, 7, 0, 0, 7, 7, 7, 7};
 | |
|     if (frame->exccause >= sizeof(exccause_to_signal)) {
 | |
|         return 11;
 | |
|     }
 | |
|     return (int) exccause_to_signal[frame->exccause];
 | |
| }
 | |
| 
 | |
| /** @brief Init dport for GDB
 | |
|  * Init dport for iterprocessor communications
 | |
|  * */
 | |
| void esp_gdbstub_init_dports(void)
 | |
| {
 | |
| }
 | |
| 
 | |
| #if CONFIG_IDF_TARGET_ARCH_XTENSA && (!CONFIG_FREERTOS_UNICORE) && CONFIG_ESP_SYSTEM_GDBSTUB_RUNTIME
 | |
| static bool stall_started = false;
 | |
| #endif
 | |
| 
 | |
| /** @brief GDB stall other CPU
 | |
|  * GDB stall other CPU
 | |
|  * */
 | |
| void esp_gdbstub_stall_other_cpus_start()
 | |
| {
 | |
| #if CONFIG_IDF_TARGET_ARCH_XTENSA && (!CONFIG_FREERTOS_UNICORE) && CONFIG_ESP_SYSTEM_GDBSTUB_RUNTIME
 | |
|     if (stall_started == false) {
 | |
|         esp_ipc_isr_stall_other_cpu();
 | |
|         stall_started = true;
 | |
|     }
 | |
| #endif
 | |
| }
 | |
| 
 | |
| /** @brief GDB end stall other CPU
 | |
|  * GDB end stall other CPU
 | |
|  * */
 | |
| void esp_gdbstub_stall_other_cpus_end()
 | |
| {
 | |
| #if CONFIG_IDF_TARGET_ARCH_XTENSA && (!CONFIG_FREERTOS_UNICORE) && CONFIG_ESP_SYSTEM_GDBSTUB_RUNTIME
 | |
|     if (stall_started == true) {
 | |
|         esp_ipc_isr_release_other_cpu();
 | |
|         stall_started = false;
 | |
|     }
 | |
| #endif
 | |
| }
 | |
| 
 | |
| /** @brief GDB clear step
 | |
|  * GDB clear step registers
 | |
|  * */
 | |
| void esp_gdbstub_clear_step(void)
 | |
| {
 | |
|     WSR(ICOUNT, 0);
 | |
|     WSR(ICOUNTLEVEL, 0);
 | |
| }
 | |
| 
 | |
| /** @brief GDB do step
 | |
|  * GDB do one step
 | |
|  * */
 | |
| void esp_gdbstub_do_step(void)
 | |
| {
 | |
|     // We have gdbstub uart interrupt, and if we will call step, with ICOUNTLEVEL=2 or higher, from uart interrupt, the
 | |
|     // application will hang because it will try to step uart interrupt. That's why we have to set ICOUNTLEVEL=1
 | |
|     // If we will stop by the breakpoint inside interrupt, we will handle this interrupt with ICOUNTLEVEL=ps.intlevel+1
 | |
| 
 | |
|     uint32_t level = s_scratch.regfile.ps;
 | |
|     level &= 0x7;
 | |
|     level += 1;
 | |
| 
 | |
|     WSR(ICOUNTLEVEL, level);
 | |
|     WSR(ICOUNT, -2);
 | |
| }
 | |
| 
 | |
| /** @brief GDB trigger other CPU
 | |
|  * GDB trigger other CPU
 | |
|  * */
 | |
| void esp_gdbstub_trigger_cpu(void)
 | |
| {
 | |
| #if !CONFIG_FREERTOS_UNICORE
 | |
|     if (0 == esp_cpu_get_core_id()) {
 | |
|         esp_crosscore_int_send_gdb_call(1);
 | |
|     } else {
 | |
|         esp_crosscore_int_send_gdb_call(0);
 | |
|     }
 | |
| #endif
 | |
| }
 | |
| 
 | |
| /** @brief GDB set register in frame
 | |
|  * Set register in frame with address to value
 | |
|  *
 | |
|  * */
 | |
| void esp_gdbstub_set_register(esp_gdbstub_frame_t *frame, uint32_t reg_index, uint32_t value)
 | |
| {
 | |
|     switch (reg_index) {
 | |
|     case 0:
 | |
|         frame->pc = value;
 | |
|         break;
 | |
|     default:
 | |
|         (&frame->a0)[reg_index - 1] = value;
 | |
|         break;
 | |
|     }
 | |
| }
 |