[prev in list] [next in list] [prev in thread] [next in thread] 

List:       openocd-development
Subject:    [PATCH]: 36f60ed57f target: add Espressif ESP32-S3 basic support
From:       gerrit () openocd ! org
Date:       2022-05-22 22:37:44
Message-ID: 20220522223744.CE81C101 () openocd ! org
[Download RAW message or body]

This is an automated email from Gerrit.

"Erhan Kurubas <erhan.kurubas@espressif.com>" just uploaded a new patch set to \
Gerrit, which you can find at https://review.openocd.org/c/openocd/+/6990

-- gerrit

commit 36f60ed57fb1a131451a3d45fc36b9ed1fc90cd8
Author: Erhan Kurubas <erhan.kurubas@espressif.com>
Date:   Sun May 22 23:17:48 2022 +0200

    target: add Espressif ESP32-S3 basic support
    
    ESP32-S3 is a dual core Xtensa SoC
    Not full featured yet. Some of the missing functionality:
    -Semihosting
    -Flash breakpoints
    -Flash loader
    -Apptrace
    -FreeRTOS
    
    Signed-off-by: Erhan Kurubas <erhan.kurubas@espressif.com>
    Change-Id: I44e17088030c96a9be9809f6579a4f16dbfc5794

diff --git a/doc/openocd.texi b/doc/openocd.texi
index 9bf179163f..113c430bcb 100644
--- a/doc/openocd.texi
+++ b/doc/openocd.texi
@@ -4895,8 +4895,9 @@ compact Thumb2 instruction set. Supports also ARMv6-M and \
ARMv8-M cores  @item @code{dsp5680xx} -- implements Freescale's 5680x DSP.
 @item @code{esirisc} -- this is an EnSilica eSi-RISC core.
 The current implementation supports eSi-32xx cores.
-@item @code{esp32} -- this is a dual-core SoC with Xtensa core.
-@item @code{esp32s2} -- this is a single-core SoC with Xtensa core.
+@item @code{esp32} -- this is an Espressif SoC with dual Xtensa cores.
+@item @code{esp32s2} -- this is an Espressif SoC with single Xtensa core.
+@item @code{esp32s3} -- this is an Espressif SoC with dual Xtensa cores.
 @item @code{fa526} -- resembles arm920 (w/o Thumb).
 @item @code{feroceon} -- resembles arm926.
 @item @code{hla_target} -- a Cortex-M alternative to work with HL adapters like \
                ST-Link.
diff --git a/src/target/espressif/Makefile.am b/src/target/espressif/Makefile.am
index 2a9045b8ad..2ea31d82c0 100644
--- a/src/target/espressif/Makefile.am
+++ b/src/target/espressif/Makefile.am
@@ -4,7 +4,9 @@ noinst_LTLIBRARIES += %D%/libespressif.la
        %D%/esp_xtensa.h \
        %D%/esp_xtensa_smp.c \
        %D%/esp_xtensa_smp.h \
+       %D%/esp32.c \
+       %D%/esp32.h \
        %D%/esp32s2.c \
        %D%/esp32s2.h \
-       %D%/esp32.c \
-       %D%/esp32.h
+       %D%/esp32s3.c \
+       %D%/esp32s3.h
diff --git a/src/target/espressif/esp32s3.c b/src/target/espressif/esp32s3.c
new file mode 100644
index 0000000000..3dbb3ab390
--- /dev/null
+++ b/src/target/espressif/esp32s3.c
@@ -0,0 +1,678 @@
+/***************************************************************************
+ *   ESP32-S3 target API for OpenOCD                                       *
+ *   Copyright (C) 2020 Espressif Systems Ltd.                             *
+ *                                                                         *
+ *   This program is free software; you can redistribute it and/or modify  *
+ *   it under the terms of the GNU General Public License as published by  *
+ *   the Free Software Foundation; either version 2 of the License, or     *
+ *   (at your option) any later version.                                   *
+ *                                                                         *
+ *   This program is distributed in the hope that it will be useful,       *
+ *   but WITHOUT ANY WARRANTY; without even the implied warranty of        *
+ *   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the         *
+ *   GNU General Public License for more details.                          *
+ *                                                                         *
+ *   You should have received a copy of the GNU General Public License     *
+ *   along with this program.  If not, see <http://www.gnu.org/licenses/>. *
+ ***************************************************************************/
+
+#ifdef HAVE_CONFIG_H
+#include "config.h"
+#endif
+
+#include <target/target.h>
+#include <target/target_type.h>
+#include <target/smp.h>
+#include "assert.h"
+#include "esp32s3.h"
+#include "esp_xtensa_smp.h"
+
+/*
+This is a JTAG driver for the ESP32_S3, the are two Tensilica cores inside
+the ESP32_S3 chip. For more information please have a look into ESP32_S3 target
+implementation.
+*/
+
+/* ESP32_S3 memory map */
+#define ESP32_S3_IRAM_LOW               0x40370000
+#define ESP32_S3_IRAM_HIGH              0x403E0000
+#define ESP32_S3_IROM_MASK_LOW          0x40000000
+#define ESP32_S3_IROM_MASK_HIGH         0x40060000
+#define ESP32_S3_DRAM_LOW               0x3FC88000
+#define ESP32_S3_DRAM_HIGH              0x3FD00000
+#define ESP32_S3_RTC_IRAM_LOW           0x600FE000
+#define ESP32_S3_RTC_IRAM_HIGH          0x60100000
+#define ESP32_S3_RTC_DRAM_LOW           0x600FE000
+#define ESP32_S3_RTC_DRAM_HIGH          0x60100000
+#define ESP32_S3_RTC_DATA_LOW           0x50000000
+#define ESP32_S3_RTC_DATA_HIGH          0x50002000
+#define ESP32_S3_EXTRAM_DATA_LOW        0x3D000000
+#define ESP32_S3_EXTRAM_DATA_HIGH       0x3E000000
+#define ESP32_S3_SYS_RAM_LOW            0x60000000UL
+#define ESP32_S3_SYS_RAM_HIGH           (ESP32_S3_SYS_RAM_LOW + 0x10000000UL)
+
+/* ESP32_S3 WDT */
+#define ESP32_S3_WDT_WKEY_VALUE       0x50D83AA1
+#define ESP32_S3_TIMG0_BASE           0x6001F000
+#define ESP32_S3_TIMG1_BASE           0x60020000
+#define ESP32_S3_TIMGWDT_CFG0_OFF     0x48
+#define ESP32_S3_TIMGWDT_PROTECT_OFF  0x64
+#define ESP32_S3_TIMG0WDT_CFG0        (ESP32_S3_TIMG0_BASE + \
ESP32_S3_TIMGWDT_CFG0_OFF) +#define ESP32_S3_TIMG1WDT_CFG0        \
(ESP32_S3_TIMG1_BASE + ESP32_S3_TIMGWDT_CFG0_OFF) +#define ESP32_S3_TIMG0WDT_PROTECT  \
(ESP32_S3_TIMG0_BASE + ESP32_S3_TIMGWDT_PROTECT_OFF) +#define \
ESP32_S3_TIMG1WDT_PROTECT     (ESP32_S3_TIMG1_BASE + ESP32_S3_TIMGWDT_PROTECT_OFF) \
+#define ESP32_S3_RTCCNTL_BASE         0x60008000 +#define ESP32_S3_RTCWDT_CFG_OFF    \
0x98 +#define ESP32_S3_RTCWDT_PROTECT_OFF   0xB0
+#define ESP32_S3_SWD_CONF_OFF         0xB0
+#define ESP32_S3_SWD_WPROTECT_OFF     0xB4
+#define ESP32_S3_RTCWDT_CFG           (ESP32_S3_RTCCNTL_BASE + \
ESP32_S3_RTCWDT_CFG_OFF) +#define ESP32_S3_RTCWDT_PROTECT       \
(ESP32_S3_RTCCNTL_BASE + ESP32_S3_RTCWDT_PROTECT_OFF) +#define ESP32_S3_SWD_CONF_REG  \
(ESP32_S3_RTCCNTL_BASE + ESP32_S3_SWD_CONF_OFF) +#define ESP32_S3_SWD_WPROTECT_REG    \
(ESP32_S3_RTCCNTL_BASE + ESP32_S3_SWD_WPROTECT_OFF) +#define \
ESP32_S3_SWD_AUTO_FEED_EN_M   BIT(31) +#define ESP32_S3_SWD_WKEY_VALUE       \
0x8F1D312AU +
+#define ESP32_S3_TRACEMEM_BLOCK_SZ    0x4000
+
+/* ESP32_S3 dport regs */
+#define ESP32_S3_DR_REG_SYSTEM_BASE                0x600c0000
+#define ESP32_S3_SYSTEM_CORE_1_CONTROL_0_REG       (ESP32_S3_DR_REG_SYSTEM_BASE + \
0x014) +#define ESP32_S3_SYSTEM_CONTROL_CORE_1_CLKGATE_EN  BIT(1)
+
+/* ESP32_S3 RTC regs */
+#define ESP32_S3_RTC_CNTL_SW_CPU_STALL_REG (ESP32_S3_RTCCNTL_BASE + 0xBC)
+#define ESP32_S3_RTC_CNTL_SW_CPU_STALL_DEF 0x0
+
+/* this should map local reg IDs to GDB reg mapping as defined in xtensa-config.c \
'rmap' in + *xtensa-overlay */
+static const unsigned int esp32s3_gdb_regs_mapping[ESP32_S3_NUM_REGS] = {
+	XT_REG_IDX_PC,
+	XT_REG_IDX_AR0, XT_REG_IDX_AR1, XT_REG_IDX_AR2, XT_REG_IDX_AR3,
+	XT_REG_IDX_AR4, XT_REG_IDX_AR5, XT_REG_IDX_AR6, XT_REG_IDX_AR7,
+	XT_REG_IDX_AR8, XT_REG_IDX_AR9, XT_REG_IDX_AR10, XT_REG_IDX_AR11,
+	XT_REG_IDX_AR12, XT_REG_IDX_AR13, XT_REG_IDX_AR14, XT_REG_IDX_AR15,
+	XT_REG_IDX_AR16, XT_REG_IDX_AR17, XT_REG_IDX_AR18, XT_REG_IDX_AR19,
+	XT_REG_IDX_AR20, XT_REG_IDX_AR21, XT_REG_IDX_AR22, XT_REG_IDX_AR23,
+	XT_REG_IDX_AR24, XT_REG_IDX_AR25, XT_REG_IDX_AR26, XT_REG_IDX_AR27,
+	XT_REG_IDX_AR28, XT_REG_IDX_AR29, XT_REG_IDX_AR30, XT_REG_IDX_AR31,
+	XT_REG_IDX_AR32, XT_REG_IDX_AR33, XT_REG_IDX_AR34, XT_REG_IDX_AR35,
+	XT_REG_IDX_AR36, XT_REG_IDX_AR37, XT_REG_IDX_AR38, XT_REG_IDX_AR39,
+	XT_REG_IDX_AR40, XT_REG_IDX_AR41, XT_REG_IDX_AR42, XT_REG_IDX_AR43,
+	XT_REG_IDX_AR44, XT_REG_IDX_AR45, XT_REG_IDX_AR46, XT_REG_IDX_AR47,
+	XT_REG_IDX_AR48, XT_REG_IDX_AR49, XT_REG_IDX_AR50, XT_REG_IDX_AR51,
+	XT_REG_IDX_AR52, XT_REG_IDX_AR53, XT_REG_IDX_AR54, XT_REG_IDX_AR55,
+	XT_REG_IDX_AR56, XT_REG_IDX_AR57, XT_REG_IDX_AR58, XT_REG_IDX_AR59,
+	XT_REG_IDX_AR60, XT_REG_IDX_AR61, XT_REG_IDX_AR62, XT_REG_IDX_AR63,
+	XT_REG_IDX_LBEG, XT_REG_IDX_LEND, XT_REG_IDX_LCOUNT, XT_REG_IDX_SAR,
+	XT_REG_IDX_WINDOWBASE, XT_REG_IDX_WINDOWSTART, XT_REG_IDX_CONFIGID0, \
XT_REG_IDX_CONFIGID1, +	XT_REG_IDX_PS, XT_REG_IDX_THREADPTR, XT_REG_IDX_BR, \
XT_REG_IDX_SCOMPARE1, +	XT_REG_IDX_ACCLO, XT_REG_IDX_ACCHI,
+	XT_REG_IDX_M0, XT_REG_IDX_M1, XT_REG_IDX_M2, XT_REG_IDX_M3,
+	ESP32_S3_REG_IDX_GPIOOUT,
+	XT_REG_IDX_F0, XT_REG_IDX_F1, XT_REG_IDX_F2, XT_REG_IDX_F3,
+	XT_REG_IDX_F4, XT_REG_IDX_F5, XT_REG_IDX_F6, XT_REG_IDX_F7,
+	XT_REG_IDX_F8, XT_REG_IDX_F9, XT_REG_IDX_F10, XT_REG_IDX_F11,
+	XT_REG_IDX_F12, XT_REG_IDX_F13, XT_REG_IDX_F14, XT_REG_IDX_F15,
+	XT_REG_IDX_FCR, XT_REG_IDX_FSR,
+	ESP32_S3_REG_IDX_ACCX_0, ESP32_S3_REG_IDX_ACCX_1,
+	ESP32_S3_REG_IDX_QACC_H_0, ESP32_S3_REG_IDX_QACC_H_1, ESP32_S3_REG_IDX_QACC_H_2,
+	ESP32_S3_REG_IDX_QACC_H_3, ESP32_S3_REG_IDX_QACC_H_4,
+	ESP32_S3_REG_IDX_QACC_L_0, ESP32_S3_REG_IDX_QACC_L_1, ESP32_S3_REG_IDX_QACC_L_2,
+	ESP32_S3_REG_IDX_QACC_L_3, ESP32_S3_REG_IDX_QACC_L_4,
+	ESP32_S3_REG_IDX_SAR_BYTE, ESP32_S3_REG_IDX_FFT_BIT_WIDTH,
+	ESP32_S3_REG_IDX_UA_STATE_0, ESP32_S3_REG_IDX_UA_STATE_1, \
ESP32_S3_REG_IDX_UA_STATE_2, +	ESP32_S3_REG_IDX_UA_STATE_3,
+	ESP32_S3_REG_IDX_Q0, ESP32_S3_REG_IDX_Q1, ESP32_S3_REG_IDX_Q2, ESP32_S3_REG_IDX_Q3,
+	ESP32_S3_REG_IDX_Q4, ESP32_S3_REG_IDX_Q5, ESP32_S3_REG_IDX_Q6, ESP32_S3_REG_IDX_Q7,
+
+	XT_REG_IDX_MMID, XT_REG_IDX_IBREAKENABLE,
+	XT_REG_IDX_MEMCTL, XT_REG_IDX_ATOMCTL, XT_REG_IDX_OCD_DDR,
+	XT_REG_IDX_IBREAKA0, XT_REG_IDX_IBREAKA1, XT_REG_IDX_DBREAKA0, XT_REG_IDX_DBREAKA1,
+	XT_REG_IDX_DBREAKC0, XT_REG_IDX_DBREAKC1,
+	XT_REG_IDX_EPC1, XT_REG_IDX_EPC2, XT_REG_IDX_EPC3, XT_REG_IDX_EPC4,
+	XT_REG_IDX_EPC5, XT_REG_IDX_EPC6, XT_REG_IDX_EPC7, XT_REG_IDX_DEPC,
+	XT_REG_IDX_EPS2, XT_REG_IDX_EPS3, XT_REG_IDX_EPS4, XT_REG_IDX_EPS5,
+	XT_REG_IDX_EPS6, XT_REG_IDX_EPS7,
+	XT_REG_IDX_EXCSAVE1, XT_REG_IDX_EXCSAVE2, XT_REG_IDX_EXCSAVE3, XT_REG_IDX_EXCSAVE4,
+	XT_REG_IDX_EXCSAVE5, XT_REG_IDX_EXCSAVE6, XT_REG_IDX_EXCSAVE7, XT_REG_IDX_CPENABLE,
+	XT_REG_IDX_INTERRUPT, XT_REG_IDX_INTSET, XT_REG_IDX_INTCLEAR, XT_REG_IDX_INTENABLE,
+	XT_REG_IDX_VECBASE, XT_REG_IDX_EXCCAUSE, XT_REG_IDX_DEBUGCAUSE, XT_REG_IDX_CCOUNT,
+	XT_REG_IDX_PRID, XT_REG_IDX_ICOUNT, XT_REG_IDX_ICOUNTLEVEL, XT_REG_IDX_EXCVADDR,
+	XT_REG_IDX_CCOMPARE0, XT_REG_IDX_CCOMPARE1, XT_REG_IDX_CCOMPARE2,
+	XT_REG_IDX_MISC0, XT_REG_IDX_MISC1, XT_REG_IDX_MISC2, XT_REG_IDX_MISC3,
+
+	XT_REG_IDX_PWRCTL, XT_REG_IDX_PWRSTAT, XT_REG_IDX_ERISTAT,
+	XT_REG_IDX_CS_ITCTRL, XT_REG_IDX_CS_CLAIMSET, XT_REG_IDX_CS_CLAIMCLR,
+	XT_REG_IDX_CS_LOCKACCESS, XT_REG_IDX_CS_LOCKSTATUS, XT_REG_IDX_CS_AUTHSTATUS,
+	XT_REG_IDX_FAULT_INFO,
+	XT_REG_IDX_TRAX_ID, XT_REG_IDX_TRAX_CTRL, XT_REG_IDX_TRAX_STAT,
+	XT_REG_IDX_TRAX_DATA, XT_REG_IDX_TRAX_ADDR, XT_REG_IDX_TRAX_PCTRIGGER,
+	XT_REG_IDX_TRAX_PCMATCH, XT_REG_IDX_TRAX_DELAY, XT_REG_IDX_TRAX_MEMSTART,
+	XT_REG_IDX_TRAX_MEMEND,
+	XT_REG_IDX_PMG, XT_REG_IDX_PMPC, XT_REG_IDX_PM0, XT_REG_IDX_PM1,
+	XT_REG_IDX_PMCTRL0, XT_REG_IDX_PMCTRL1, XT_REG_IDX_PMSTAT0, XT_REG_IDX_PMSTAT1,
+	XT_REG_IDX_OCD_ID, XT_REG_IDX_OCD_DCRCLR, XT_REG_IDX_OCD_DCRSET, \
XT_REG_IDX_OCD_DSR, +	XT_REG_IDX_A0, XT_REG_IDX_A1, XT_REG_IDX_A2, XT_REG_IDX_A3,
+	XT_REG_IDX_A4, XT_REG_IDX_A5, XT_REG_IDX_A6, XT_REG_IDX_A7,
+	XT_REG_IDX_A8, XT_REG_IDX_A9, XT_REG_IDX_A10, XT_REG_IDX_A11,
+	XT_REG_IDX_A12, XT_REG_IDX_A13, XT_REG_IDX_A14, XT_REG_IDX_A15,
+};
+
+/* actually this table contains user + TIE registers
+ * TODO: for TIE registers we need to specify custom access functions instead of \
`xtensa_user_reg_xxx_type`*/ +static const struct xtensa_user_reg_desc \
esp32s3_user_regs[ESP32_S3_NUM_REGS - XT_NUM_REGS] = { +	{ "gpio_out", 0x00, 0, 32, \
&xtensa_user_reg_u32_type }, +	{ "accx_0", 0x01, 0, 32, &xtensa_user_reg_u32_type },
+	{ "accx_1", 0x02, 0, 32, &xtensa_user_reg_u32_type },
+	{ "qacc_h_0", 0x03, 0, 32, &xtensa_user_reg_u32_type },
+	{ "qacc_h_1", 0x04, 0, 32, &xtensa_user_reg_u32_type },
+	{ "qacc_h_2", 0x05, 0, 32, &xtensa_user_reg_u32_type },
+	{ "qacc_h_3", 0x06, 0, 32, &xtensa_user_reg_u32_type },
+	{ "qacc_h_4", 0x07, 0, 32, &xtensa_user_reg_u32_type },
+	{ "qacc_l_0", 0x08, 0, 32, &xtensa_user_reg_u32_type },
+	{ "qacc_l_1", 0x09, 0, 32, &xtensa_user_reg_u32_type },
+	{ "qacc_l_2", 0x0A, 0, 32, &xtensa_user_reg_u32_type },
+	{ "qacc_l_3", 0x0B, 0, 32, &xtensa_user_reg_u32_type },
+	{ "qacc_l_4", 0x0C, 0, 32, &xtensa_user_reg_u32_type },
+	{ "sar_byte", 0x0D, 0, 32, &xtensa_user_reg_u32_type },
+	{ "fft_bit_width", 0x0E, 0, 32, &xtensa_user_reg_u32_type },
+	{ "ua_state_0", 0x0F, 0, 32, &xtensa_user_reg_u32_type },
+	{ "ua_state_1", 0x10, 0, 32, &xtensa_user_reg_u32_type },
+	{ "ua_state_2", 0x11, 0, 32, &xtensa_user_reg_u32_type },
+	{ "ua_state_3", 0x12, 0, 32, &xtensa_user_reg_u32_type },
+	{ "q0", 0x13, 0, 128, &xtensa_user_reg_u128_type },
+	{ "q1", 0x14, 0, 128, &xtensa_user_reg_u128_type },
+	{ "q2", 0x15, 0, 128, &xtensa_user_reg_u128_type },
+	{ "q3", 0x16, 0, 128, &xtensa_user_reg_u128_type },
+	{ "q4", 0x17, 0, 128, &xtensa_user_reg_u128_type },
+	{ "q5", 0x18, 0, 128, &xtensa_user_reg_u128_type },
+	{ "q6", 0x19, 0, 128, &xtensa_user_reg_u128_type },
+	{ "q7", 0x20, 0, 128, &xtensa_user_reg_u128_type },
+};
+
+struct esp32s3_common {
+	struct esp_xtensa_smp_common esp_xtensa_smp;
+};
+
+static int esp32s3_fetch_user_regs(struct target *target);
+static int esp32s3_queue_write_dirty_user_regs(struct target *target);
+
+static const struct xtensa_config esp32s3_xtensa_cfg = {
+	.density = true,
+	.aregs_num = XT_AREGS_NUM_MAX,
+	.windowed = true,
+	.coproc = true,
+	.fp_coproc = true,
+	.loop = true,
+	.miscregs_num = 4,
+	.threadptr = true,
+	.boolean = true,
+	.reloc_vec = true,
+	.proc_id = true,
+	.cond_store = true,
+	.mac16 = true,
+	.user_regs_num = ARRAY_SIZE(esp32s3_user_regs),
+	.user_regs = esp32s3_user_regs,
+	.fetch_user_regs = esp32s3_fetch_user_regs,
+	.queue_write_dirty_user_regs = esp32s3_queue_write_dirty_user_regs,
+	.gdb_general_regs_num = ESP32_S3_NUM_REGS_G_COMMAND,
+	.gdb_regs_mapping = esp32s3_gdb_regs_mapping,
+	.irom = {
+		.count = 2,
+		.regions = {
+			{
+				.base = ESP32_S3_IROM_LOW,
+				.size = ESP32_S3_IROM_HIGH - ESP32_S3_IROM_LOW,
+				.access = XT_MEM_ACCESS_READ,
+			},
+			{
+				.base = ESP32_S3_IROM_MASK_LOW,
+				.size = ESP32_S3_IROM_MASK_HIGH - ESP32_S3_IROM_MASK_LOW,
+				.access = XT_MEM_ACCESS_READ,
+			}
+		}
+	},
+	.iram = {
+		.count = 2,
+		.regions = {
+			{
+				.base = ESP32_S3_IRAM_LOW,
+				.size = ESP32_S3_IRAM_HIGH - ESP32_S3_IRAM_LOW,
+				.access = XT_MEM_ACCESS_READ | XT_MEM_ACCESS_WRITE,
+			},
+			{
+				.base = ESP32_S3_RTC_IRAM_LOW,
+				.size = ESP32_S3_RTC_IRAM_HIGH - ESP32_S3_RTC_IRAM_LOW,
+				.access = XT_MEM_ACCESS_READ | XT_MEM_ACCESS_WRITE,
+			},
+		}
+	},
+	.drom = {
+		.count = 1,
+		.regions = {
+			{
+				.base = ESP32_S3_DROM_LOW,
+				.size = ESP32_S3_DROM_HIGH - ESP32_S3_DROM_LOW,
+				.access = XT_MEM_ACCESS_READ,
+			},
+		}
+	},
+	.dram = {
+		.count = 4,
+		.regions = {
+			{
+				.base = ESP32_S3_DRAM_LOW,
+				.size = ESP32_S3_DRAM_HIGH - ESP32_S3_DRAM_LOW,
+				.access = XT_MEM_ACCESS_READ | XT_MEM_ACCESS_WRITE,
+			},
+			{
+				.base = ESP32_S3_RTC_DATA_LOW,
+				.size = ESP32_S3_RTC_DATA_HIGH - ESP32_S3_RTC_DATA_LOW,
+				.access = XT_MEM_ACCESS_READ | XT_MEM_ACCESS_WRITE,
+			},
+			{
+				.base = ESP32_S3_RTC_DATA_LOW,
+				.size = ESP32_S3_RTC_DATA_HIGH - ESP32_S3_RTC_DATA_LOW,
+				.access = XT_MEM_ACCESS_READ | XT_MEM_ACCESS_WRITE,
+			},
+			{
+				.base = ESP32_S3_SYS_RAM_LOW,
+				.size = ESP32_S3_SYS_RAM_HIGH - ESP32_S3_SYS_RAM_LOW,
+				.access = XT_MEM_ACCESS_READ | XT_MEM_ACCESS_WRITE,
+			},
+		}
+	},
+	.exc = {
+		.enabled = true,
+	},
+	.irq = {
+		.enabled = true,
+		.irq_num = 32,
+	},
+	.high_irq = {
+		.enabled = true,
+		.excm_level = 3,
+		.nmi_num = 1,
+	},
+	.tim_irq = {
+		.enabled = true,
+		.comp_num = 3,
+	},
+	.debug = {
+		.enabled = true,
+		.irq_level = 6,
+		.ibreaks_num = 2,
+		.dbreaks_num = 2,
+		.icount_sz = 32,
+	},
+	.trace = {
+		.enabled = true,
+		.mem_sz = ESP32_S3_TRACEMEM_BLOCK_SZ,
+	},
+};
+
+static int esp32s3_fetch_user_regs(struct target *target)
+{
+	LOG_DEBUG("%s: user regs fetching is not implemented!", target_name(target));
+	return ERROR_OK;
+}
+
+static int esp32s3_queue_write_dirty_user_regs(struct target *target)
+{
+	LOG_DEBUG("%s: user regs writing is not implemented!", target_name(target));
+	return ERROR_OK;
+}
+
+/* Reset ESP32-S3's peripherals.
+ * 1. OpenOCD makes sure the target is halted; if not, tries to halt it.
+ *    If that fails, tries to reset it (via OCD) and then halt.
+ * 2. OpenOCD loads the stub code into RTC_SLOW_MEM.
+ * 3. Executes the stub code from address 0x50000004.
+ * 4. The stub code changes the reset vector to 0x50000000, and triggers
+ *    a system reset using RTC_CNTL_SW_SYS_RST bit.
+ * 5. Once the PRO CPU is out of reset, it executes the stub code from address \
0x50000000. + *    The stub code disables the watchdog, re-enables JTAG and the APP \
CPU, + *    restores the reset vector, and enters an infinite loop.
+ * 6. OpenOCD waits until it can talk to the OCD module again, then halts the \
target. + * 7. OpenOCD restores the contents of RTC_SLOW_MEM.
+ *
+ * End result: all the peripherals except RTC_CNTL are reset, CPU's PC is undefined,
+ * PRO CPU is halted, APP CPU is in reset.
+ */
+static int esp32s3_soc_reset(struct target *target)
+{
+	int res;
+	struct target_list *head;
+	struct xtensa *xtensa;
+
+	LOG_DEBUG("start");
+	/* In order to write to peripheral registers, target must be halted first */
+	if (target->state != TARGET_HALTED) {
+		LOG_DEBUG("Target not halted before SoC reset, trying to halt it first");
+		xtensa_halt(target);
+		res = target_wait_state(target, TARGET_HALTED, 1000);
+		if (res != ERROR_OK) {
+			LOG_DEBUG("Couldn't halt target before SoC reset, trying to do reset-halt");
+			res = xtensa_assert_reset(target);
+			if (res != ERROR_OK) {
+				LOG_ERROR(
+					"Couldn't halt target before SoC reset! (xtensa_assert_reset returned %d)",
+					res);
+				return res;
+			}
+			alive_sleep(10);
+			xtensa_poll(target);
+			bool reset_halt_save = target->reset_halt;
+			target->reset_halt = true;
+			res = xtensa_deassert_reset(target);
+			target->reset_halt = reset_halt_save;
+			if (res != ERROR_OK) {
+				LOG_ERROR(
+					"Couldn't halt target before SoC reset! (xtensa_deassert_reset returned %d)",
+					res);
+				return res;
+			}
+			alive_sleep(10);
+			xtensa_poll(target);
+			xtensa_halt(target);
+			res = target_wait_state(target, TARGET_HALTED, 1000);
+			if (res != ERROR_OK) {
+				LOG_ERROR("Couldn't halt target before SoC reset");
+				return res;
+			}
+		}
+	}
+	assert(target->state == TARGET_HALTED);
+
+	if (target->smp) {
+		foreach_smp_target(head, target->smp_targets) {
+			xtensa = target_to_xtensa(head->target);
+			/* if any of the cores is stalled unstall them */
+			if (xtensa_dm_core_is_stalled(&xtensa->dbg_mod)) {
+				LOG_TARGET_DEBUG(head->target, "Unstall CPUs before SW reset!");
+				res = target_write_u32(target,
+					ESP32_S3_RTC_CNTL_SW_CPU_STALL_REG,
+					ESP32_S3_RTC_CNTL_SW_CPU_STALL_DEF);
+				if (res != ERROR_OK) {
+					LOG_TARGET_ERROR(head->target, "Failed to unstall CPUs before SW reset!");
+					return res;
+				}
+				break;	/* both cores are unstalled now, so exit the loop */
+			}
+		}
+	}
+
+	/* This this the stub code compiled from esp32s3_cpu_reset_handler.S.
+	   To compile it, run:
+	       xtensa-esp32s3-elf-gcc -c -mtext-section-literals -o stub.o \
esp32s3_cpu_reset_handler.S +	       xtensa-esp32s3-elf-objcopy -j .text -O binary \
stub.o stub.bin +	   These steps are not included into OpenOCD build process so that \
a +	   dependency on xtensa-esp32s3-elf toolchain is not introduced.
+	*/
+	const uint8_t esp32s3_reset_stub_code[] = {
+		0x06, 0x23, 0x00, 0x00, 0x06, 0x18, 0x00, 0x00, 0x38, 0x80, 0x00, 0x60,
+		0xc0, 0x80, 0x00, 0x60, 0xc4, 0x80, 0x00, 0x60, 0x90, 0x80, 0x00, 0x60,
+		0x74, 0x80, 0x00, 0x60, 0x18, 0x32, 0x58, 0x01, 0x00, 0xa0, 0x00, 0x9c,
+		0x00, 0x80, 0x00, 0x60, 0xa1, 0x3a, 0xd8, 0x50, 0xac, 0x80, 0x00, 0x60,
+		0x64, 0xf0, 0x01, 0x60, 0x64, 0x00, 0x02, 0x60, 0x94, 0x80, 0x00, 0x60,
+		0x48, 0xf0, 0x01, 0x60, 0x48, 0x00, 0x02, 0x60, 0xb4, 0x80, 0x00, 0x60,
+		0x2a, 0x31, 0x1d, 0x8f, 0xb0, 0x80, 0x00, 0x60, 0x00, 0x00, 0xb0, 0x84,
+		0x04, 0x00, 0x0c, 0x60, 0x00, 0x00, 0x0c, 0x60, 0x00, 0x00, 0x0c, 0x60,
+		0x38, 0x80, 0x00, 0x60, 0x00, 0x30, 0x00, 0x00, 0x50, 0x55, 0x30, 0x41,
+		0xe7, 0xff, 0x59, 0x04, 0x41, 0xe7, 0xff, 0x59, 0x04, 0x41, 0xe6, 0xff,
+		0x59, 0x04, 0x41, 0xe6, 0xff, 0x59, 0x04, 0x41, 0xe6, 0xff, 0x31, 0xe6,
+		0xff, 0x39, 0x04, 0x31, 0xe6, 0xff, 0x41, 0xe6, 0xff, 0x39, 0x04, 0x00,
+		0x60, 0xeb, 0x03, 0x60, 0x61, 0x04, 0x56, 0x26, 0x05, 0x50, 0x55, 0x30,
+		0x31, 0xe3, 0xff, 0x41, 0xe3, 0xff, 0x39, 0x04, 0x41, 0xe3, 0xff, 0x39,
+		0x04, 0x41, 0xe2, 0xff, 0x39, 0x04, 0x41, 0xe2, 0xff, 0x59, 0x04, 0x41,
+		0xe2, 0xff, 0x59, 0x04, 0x41, 0xe2, 0xff, 0x59, 0x04, 0x41, 0xe1, 0xff,
+		0x31, 0xe2, 0xff, 0x39, 0x04, 0x41, 0xe1, 0xff, 0x31, 0xe2, 0xff, 0x39,
+		0x04, 0x41, 0xe1, 0xff, 0x59, 0x04, 0x41, 0xe1, 0xff, 0x0c, 0x23, 0x39,
+		0x04, 0x41, 0xe0, 0xff, 0x0c, 0x43, 0x39, 0x04, 0x52, 0x64, 0x00, 0x41,
+		0xdf, 0xff, 0x31, 0xdf, 0xff, 0x32, 0x64, 0x00, 0x00, 0x70, 0x00, 0x46,
+		0xfe, 0xff
+	};
+
+	LOG_DEBUG("Loading stub code into RTC RAM");
+	uint8_t slow_mem_save[sizeof(esp32s3_reset_stub_code)];
+
+	const int RTC_SLOW_MEM_BASE = 0x50000000;
+	/* Save contents of RTC_SLOW_MEM which we are about to overwrite */
+	res = target_read_buffer(target, RTC_SLOW_MEM_BASE, sizeof(slow_mem_save), \
slow_mem_save); +	if (res != ERROR_OK) {
+		LOG_ERROR("Failed to save contents of RTC_SLOW_MEM (%d)!", res);
+		return res;
+	}
+
+	/* Write stub code into RTC_SLOW_MEM */
+	res = target_write_buffer(target, RTC_SLOW_MEM_BASE, \
sizeof(esp32s3_reset_stub_code), esp32s3_reset_stub_code); +	if (res != ERROR_OK) {
+		LOG_ERROR("Failed to write stub (%d)!", res);
+		return res;
+	}
+
+	LOG_DEBUG("Resuming the target");
+	xtensa = target_to_xtensa(target);
+	xtensa->suppress_dsr_errors = true;
+	res = xtensa_resume(target, 0, RTC_SLOW_MEM_BASE + 4, 0, 0);
+	if (res != ERROR_OK) {
+		LOG_ERROR("Failed to run stub (%d)!", res);
+		return res;
+	}
+	xtensa->suppress_dsr_errors = false;
+	LOG_DEBUG("resume done, waiting for the target to come alive");
+
+	/* Wait for SoC to reset */
+	alive_sleep(100);
+	int timeout = 100;
+	while (target->state != TARGET_RESET && target->state != TARGET_RUNNING && \
--timeout > 0) { +		alive_sleep(10);
+		xtensa_poll(target);
+	}
+	if (timeout == 0) {
+		LOG_ERROR("Timed out waiting for CPU to be reset, target state=%d", \
target->state); +		return ERROR_TARGET_TIMEOUT;
+	}
+
+	/* Halt the CPU again */
+	LOG_DEBUG("halting the target");
+	xtensa_halt(target);
+	res = target_wait_state(target, TARGET_HALTED, 1000);
+	if (res != ERROR_OK) {
+		LOG_ERROR("Timed out waiting for CPU to be halted after SoC reset");
+		return res;
+	}
+
+	/* Restore the original contents of RTC_SLOW_MEM */
+	LOG_DEBUG("restoring RTC_SLOW_MEM");
+	res = target_write_buffer(target, RTC_SLOW_MEM_BASE, sizeof(slow_mem_save), \
slow_mem_save); +	if (res != ERROR_OK) {
+		LOG_ERROR("Failed to restore contents of RTC_SLOW_MEM (%d)!", res);
+		return res;
+	}
+
+	return ERROR_OK;
+}
+
+static int esp32s3_disable_wdts(struct target *target)
+{
+	/* TIMG1 WDT */
+	int res = target_write_u32(target, ESP32_S3_TIMG0WDT_PROTECT, \
ESP32_S3_WDT_WKEY_VALUE); +	if (res != ERROR_OK) {
+		LOG_ERROR("Failed to write ESP32_S3_TIMG0WDT_PROTECT (%d)!", res);
+		return res;
+	}
+	res = target_write_u32(target, ESP32_S3_TIMG0WDT_CFG0, 0);
+	if (res != ERROR_OK) {
+		LOG_ERROR("Failed to write ESP32_S3_TIMG0WDT_CFG0 (%d)!", res);
+		return res;
+	}
+	/* TIMG2 WDT */
+	res = target_write_u32(target, ESP32_S3_TIMG1WDT_PROTECT, ESP32_S3_WDT_WKEY_VALUE);
+	if (res != ERROR_OK) {
+		LOG_ERROR("Failed to write ESP32_S3_TIMG1WDT_PROTECT (%d)!", res);
+		return res;
+	}
+	res = target_write_u32(target, ESP32_S3_TIMG1WDT_CFG0, 0);
+	if (res != ERROR_OK) {
+		LOG_ERROR("Failed to write ESP32_S3_TIMG1WDT_CFG0 (%d)!", res);
+		return res;
+	}
+	/* RTC WDT */
+	res = target_write_u32(target, ESP32_S3_RTCWDT_PROTECT, ESP32_S3_WDT_WKEY_VALUE);
+	if (res != ERROR_OK) {
+		LOG_ERROR("Failed to write ESP32_S3_RTCWDT_PROTECT (%d)!", res);
+		return res;
+	}
+	res = target_write_u32(target, ESP32_S3_RTCWDT_CFG, 0);
+	if (res != ERROR_OK) {
+		LOG_ERROR("Failed to write ESP32_S3_RTCWDT_CFG (%d)!", res);
+		return res;
+	}
+	/* Enable SWD auto-feed */
+	res = target_write_u32(target, ESP32_S3_SWD_WPROTECT_REG, ESP32_S3_SWD_WKEY_VALUE);
+	if (res != ERROR_OK) {
+		LOG_ERROR("Failed to write ESP32_S3_SWD_WPROTECT_REG (%d)!", res);
+		return res;
+	}
+	uint32_t swd_conf_reg = 0;
+	res = target_read_u32(target, ESP32_S3_SWD_CONF_REG, &swd_conf_reg);
+	if (res != ERROR_OK) {
+		LOG_ERROR("Failed to read ESP32_S3_SWD_CONF_REG (%d)!", res);
+		return res;
+	}
+	swd_conf_reg |= ESP32_S3_SWD_AUTO_FEED_EN_M;
+	res = target_write_u32(target, ESP32_S3_SWD_CONF_REG, swd_conf_reg);
+	if (res != ERROR_OK) {
+		LOG_ERROR("Failed to write ESP32_S3_SWD_CONF_REG (%d)!", res);
+		return res;
+	}
+	return ERROR_OK;
+}
+
+static int esp32s3_on_halt(struct target *target)
+{
+	return esp32s3_disable_wdts(target);
+}
+
+static int esp32s3_arch_state(struct target *target)
+{
+	return ERROR_OK;
+}
+
+static int esp32s3_virt2phys(struct target *target,
+	target_addr_t virtual, target_addr_t *physical)
+{
+	*physical = virtual;
+	return ERROR_OK;
+}
+
+static int esp32s3_target_init(struct command_context *cmd_ctx, struct target \
*target) +{
+	return esp_xtensa_target_init(cmd_ctx, target);
+}
+
+static const struct xtensa_debug_ops esp32s3_dbg_ops = {
+	.queue_enable = xtensa_dm_queue_enable,
+	.queue_reg_read = xtensa_dm_queue_reg_read,
+	.queue_reg_write = xtensa_dm_queue_reg_write
+};
+
+static const struct xtensa_power_ops esp32s3_pwr_ops = {
+	.queue_reg_read = xtensa_dm_queue_pwr_reg_read,
+	.queue_reg_write = xtensa_dm_queue_pwr_reg_write
+};
+
+static const struct esp_xtensa_smp_chip_ops esp32s3_chip_ops = {
+	.reset = esp32s3_soc_reset,
+	.on_halt = esp32s3_on_halt
+};
+
+static int esp32s3_target_create(struct target *target, Jim_Interp *interp)
+{
+	struct xtensa_debug_module_config esp32s3_dm_cfg = {
+		.dbg_ops = &esp32s3_dbg_ops,
+		.pwr_ops = &esp32s3_pwr_ops,
+		.tap = target->tap,
+		.queue_tdi_idle = NULL,
+		.queue_tdi_idle_arg = NULL
+	};
+
+	struct esp32s3_common *esp32s3 = calloc(1, sizeof(struct esp32s3_common));
+	if (!esp32s3) {
+		LOG_ERROR("Failed to alloc memory for arch info!");
+		return ERROR_FAIL;
+	}
+
+	int ret = esp_xtensa_smp_init_arch_info(target,
+		&esp32s3->esp_xtensa_smp,
+		&esp32s3_xtensa_cfg,
+		&esp32s3_dm_cfg,
+		&esp32s3_chip_ops);
+	if (ret != ERROR_OK) {
+		LOG_ERROR("Failed to init arch info!");
+		free(esp32s3);
+		return ret;
+	}
+
+	/* Assume running target. If different, the first poll will fix this. */
+	target->state = TARGET_RUNNING;
+	target->debug_reason = DBG_REASON_NOTHALTED;
+	return ERROR_OK;
+}
+
+static const struct command_registration esp32s3_command_handlers[] = {
+	{
+		.usage = "",
+		.chain = esp_xtensa_smp_command_handlers,
+	},
+	{
+		.name = "esp32",
+		.usage = "",
+		.chain = smp_command_handlers,
+	},
+	COMMAND_REGISTRATION_DONE
+};
+
+/** Holds methods for Xtensa targets. */
+struct target_type esp32s3_target = {
+	.name = "esp32s3",
+
+	.poll = esp_xtensa_smp_poll,
+	.arch_state = esp32s3_arch_state,
+
+	.halt = xtensa_halt,
+	.resume = esp_xtensa_smp_resume,
+	.step = esp_xtensa_smp_step,
+
+	.assert_reset = esp_xtensa_smp_assert_reset,
+	.deassert_reset = esp_xtensa_smp_deassert_reset,
+	.soft_reset_halt = esp_xtensa_smp_soft_reset_halt,
+
+	.virt2phys = esp32s3_virt2phys,
+	.mmu = xtensa_mmu_is_enabled,
+	.read_memory = xtensa_read_memory,
+	.write_memory = xtensa_write_memory,
+
+	.read_buffer = xtensa_read_buffer,
+	.write_buffer = xtensa_write_buffer,
+
+	.checksum_memory = xtensa_checksum_memory,
+
+	.get_gdb_arch = xtensa_get_gdb_arch,
+	.get_gdb_reg_list = xtensa_get_gdb_reg_list,
+
+	.add_breakpoint = esp_xtensa_breakpoint_add,
+	.remove_breakpoint = esp_xtensa_breakpoint_remove,
+
+	.add_watchpoint = esp_xtensa_smp_watchpoint_add,
+	.remove_watchpoint = esp_xtensa_smp_watchpoint_remove,
+
+	.target_create = esp32s3_target_create,
+	.init_target = esp32s3_target_init,
+	.examine = xtensa_examine,
+	.deinit_target = esp_xtensa_target_deinit,
+
+	.commands = esp32s3_command_handlers,
+};
diff --git a/src/target/espressif/esp32s3.h b/src/target/espressif/esp32s3.h
new file mode 100644
index 0000000000..0ba1101156
--- /dev/null
+++ b/src/target/espressif/esp32s3.h
@@ -0,0 +1,65 @@
+/***************************************************************************
+ *   ESP32-S3 target for OpenOCD                                           *
+ *   Copyright (C) 2020 Espressif Systems Ltd.                             *
+ *                                                                         *
+ *   This program is free software; you can redistribute it and/or modify  *
+ *   it under the terms of the GNU General Public License as published by  *
+ *   the Free Software Foundation; either version 2 of the License, or     *
+ *   (at your option) any later version.                                   *
+ *                                                                         *
+ *   This program is distributed in the hope that it will be useful,       *
+ *   but WITHOUT ANY WARRANTY; without even the implied warranty of        *
+ *   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the         *
+ *   GNU General Public License for more details.                          *
+ *                                                                         *
+ *   You should have received a copy of the GNU General Public License     *
+ *   along with this program.  If not, see <http://www.gnu.org/licenses/>. *
+ ***************************************************************************/
+
+#ifndef OPENOCD_TARGET_ESP32S3_H
+#define OPENOCD_TARGET_ESP32S3_H
+
+#include <target/xtensa/xtensa_regs.h>
+
+#define ESP32_S3_DROM_LOW             0x3C000000
+#define ESP32_S3_DROM_HIGH            0x3D000000
+#define ESP32_S3_IROM_LOW             0x42000000
+#define ESP32_S3_IROM_HIGH            0x44000000
+
+/*Number of registers returned directly by the G command
+ *Corresponds to the amount of regs listed in regformats/reg-xtensa.dat in the gdb \
source */ +#define ESP32_S3_NUM_REGS_G_COMMAND   128
+
+enum esp32s3_reg_id {
+	/* chip specific registers that extend ISA go after ISA-defined ones */
+	ESP32_S3_REG_IDX_GPIOOUT = XT_NUM_REGS,
+	ESP32_S3_REG_IDX_ACCX_0,
+	ESP32_S3_REG_IDX_ACCX_1,
+	ESP32_S3_REG_IDX_QACC_H_0,
+	ESP32_S3_REG_IDX_QACC_H_1,
+	ESP32_S3_REG_IDX_QACC_H_2,
+	ESP32_S3_REG_IDX_QACC_H_3,
+	ESP32_S3_REG_IDX_QACC_H_4,
+	ESP32_S3_REG_IDX_QACC_L_0,
+	ESP32_S3_REG_IDX_QACC_L_1,
+	ESP32_S3_REG_IDX_QACC_L_2,
+	ESP32_S3_REG_IDX_QACC_L_3,
+	ESP32_S3_REG_IDX_QACC_L_4,
+	ESP32_S3_REG_IDX_SAR_BYTE,
+	ESP32_S3_REG_IDX_FFT_BIT_WIDTH,
+	ESP32_S3_REG_IDX_UA_STATE_0,
+	ESP32_S3_REG_IDX_UA_STATE_1,
+	ESP32_S3_REG_IDX_UA_STATE_2,
+	ESP32_S3_REG_IDX_UA_STATE_3,
+	ESP32_S3_REG_IDX_Q0,
+	ESP32_S3_REG_IDX_Q1,
+	ESP32_S3_REG_IDX_Q2,
+	ESP32_S3_REG_IDX_Q3,
+	ESP32_S3_REG_IDX_Q4,
+	ESP32_S3_REG_IDX_Q5,
+	ESP32_S3_REG_IDX_Q6,
+	ESP32_S3_REG_IDX_Q7,
+	ESP32_S3_NUM_REGS,
+};
+
+#endif	/* OPENOCD_TARGET_ESP32S3_H */
diff --git a/src/target/espressif/esp32s3_cpu_reset_handler.S \
b/src/target/espressif/esp32s3_cpu_reset_handler.S new file mode 100644
index 0000000000..e70ac9ca7b
--- /dev/null
+++ b/src/target/espressif/esp32s3_cpu_reset_handler.S
@@ -0,0 +1,152 @@
+/***************************************************************************
+ *   Reset stub used by esp32s3 target                                     *
+ *   Copyright (C) 2020 Espressif Systems (Shanghai) Co. Ltd.              *
+ *                                                                         *
+ *   This program is free software; you can redistribute it and/or modify  *
+ *   it under the terms of the GNU General Public License as published by  *
+ *   the Free Software Foundation; either version 2 of the License, or     *
+ *   (at your option) any later version.                                   *
+ *                                                                         *
+ *   This program is distributed in the hope that it will be useful,       *
+ *   but WITHOUT ANY WARRANTY; without even the implied warranty of        *
+ *   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the         *
+ *   GNU General Public License for more details.                          *
+ *                                                                         *
+ *   You should have received a copy of the GNU General Public License     *
+ *   along with this program.  If not, see <http://www.gnu.org/licenses/>. *
+ ***************************************************************************/
+
+#define RTC_CNTL_RESET_STATE_REG            0x60008038
+#define RTC_CNTL_RESET_STATE_DEF            0x3000
+#define RTC_CNTL_CLK_CONF_REG               0x60008074
+#define RTC_CNTL_CLK_CONF_DEF               0x1583218
+#define RTC_CNTL_STORE4_REG                 0x600080C0
+#define RTC_CNTL_STORE5_REG                 0x600080C4
+#define WDT_WKEY_VALUE                      0x50D83AA1
+#define TIMG0_WDTWPROTECT_REG               0x6001F064
+#define TIMG0_WDTCONFIG0_REG                0x6001F048
+#define TIMG1_WDTWPROTECT_REG               0x60020064
+#define TIMG1_WDTCONFIG0_REG                0x60020048
+#define RTC_CNTL_WDTCONFIG0_REG             0x60008094
+#define RTC_CNTL_WDTWPROTECT_REG            0x600080AC
+#define RTC_CNTL_OPTIONS0_REG               0x60008000
+#define RTC_CNTL_OPTIONS0_DEF               0x1C00A000
+#define RTC_CNTL_SW_SYS_RST                 0x80000000
+#define RTC_CNTL_DIG_PWC_REG                0x60008090
+#define RTC_CNTL_SWD_CONF_REG               0x600080B0
+#define RTC_CNTL_SWD_CONF_VAL               0x84B00000
+#define RTC_CNTL_SWD_WPROTECT_REG           0x600080B4
+#define RTC_CNTL_SWD_WKEY_VALUE             0x8F1D312A
+#define SYSTEM_CORE_1_CONTROL_0_REG         0x600C0000
+#define SYSTEM_CONTROL_CORE_1_RESETING      0x4
+#define SYSTEM_CONTROL_CORE_1_CLKGATE_EN    0x2
+#define SYSTEM_CORE_1_CONTROL_1_REG         0x600C0004
+
+
+/* This stub is copied to RTC_SLOW_MEM by OpenOCD, and the CPU starts executing
+ * it instead of the ROM code (0x40000400). This stub disables watchdogs and
+ * goes into a loop.
+ * OpenOCD will then halt the target and perform CPU reset using OCD.
+ */
+
+
+/* Has to be at offset 0. This is the entry point of the CPU, once
+ * RTC_CNTL_PROCPU_STAT_VECTOR_SEL is cleared.
+ * CPU will come here after the system reset, triggered by RTC_CNTL_SW_SYS_RST.
+ */
+    .global     cpu_at_start_handler
+    .type       cpu_at_start_handler,@function
+    .align      4
+cpu_at_start_handler:
+    j start
+
+
+/* Has to be at offset 4. Once the stub code has been uploaded into RTC Slow
+ * memory, OpenOCD will set the PC to this address, and resume execution.
+ * The stub will then jump to 'reset' label and perform the reset.
+ */
+    .global     cpu_reset_handler
+    .type       cpu_reset_handler,@function
+    .align      4
+cpu_reset_handler:
+    j reset
+
+    .align 4
+    .literal_position
+
+    .align 4
+reset:
+    /* Use a5 as a zero register */
+    xor a5, a5, a5
+    /* Select static reset vector 0 (XCHAL_RESET_VECTOR0_VADDR, 0x50000000) */
+    movi a4, RTC_CNTL_RESET_STATE_REG
+    s32i a5, a4, 0
+    /* Set some clock-related RTC registers to the default values */
+    movi a4, RTC_CNTL_STORE4_REG
+    s32i a5, a4, 0
+    movi a4, RTC_CNTL_STORE5_REG
+    s32i a5, a4, 0
+    movi a4, RTC_CNTL_DIG_PWC_REG
+    s32i a5, a4, 0
+    movi a4, RTC_CNTL_CLK_CONF_REG
+    movi a3, RTC_CNTL_CLK_CONF_DEF
+    s32i a3, a4, 0
+    /* Reset the digital part of the chip (RTC controller doesn't get reset) */
+    movi a3, (RTC_CNTL_OPTIONS0_DEF | RTC_CNTL_SW_SYS_RST)
+    movi a4, RTC_CNTL_OPTIONS0_REG
+    s32i a3, a4, 0
+    /* Doesn't reach beyond this instruction */
+
+    .align 4
+start:
+    /* If running on the APP CPU, skip directly to the parking loop */
+    rsr.prid a6
+    extui a6, a6, 1, 1
+    bnez a6, parking_loop
+
+    /* Use a5 as a zero register */
+    xor a5, a5, a5
+    /* Disable the watchdogs */
+    movi a3, WDT_WKEY_VALUE
+    movi a4, RTC_CNTL_WDTWPROTECT_REG
+    s32i.n a3, a4, 0
+    movi a4, TIMG0_WDTWPROTECT_REG
+    s32i.n a3, a4, 0
+    movi a4, TIMG1_WDTWPROTECT_REG
+    s32i.n a3, a4, 0
+    movi a4, RTC_CNTL_WDTCONFIG0_REG
+    s32i.n a5, a4, 0
+    movi a4, TIMG0_WDTCONFIG0_REG
+    s32i.n a5, a4, 0
+    movi a4, TIMG1_WDTCONFIG0_REG
+    s32i.n a5, a4, 0
+    movi a4, RTC_CNTL_SWD_WPROTECT_REG
+    movi a3, RTC_CNTL_SWD_WKEY_VALUE
+    s32i.n a3, a4, 0
+    movi a4, RTC_CNTL_SWD_CONF_REG
+    movi a3, RTC_CNTL_SWD_CONF_VAL
+    s32i.n a3, a4, 0
+    /* Clear APP_CPU boot address */
+    movi a4, SYSTEM_CORE_1_CONTROL_1_REG
+    s32i.n a5, a4, 0
+    /* Clear APP_CPU clock gating */
+    movi a4, SYSTEM_CORE_1_CONTROL_0_REG
+    movi a3, SYSTEM_CONTROL_CORE_1_CLKGATE_EN
+    s32i.n a3, a4, 0
+    /* Set and clear APP_CPU reset */
+    movi a4, SYSTEM_CORE_1_CONTROL_0_REG
+    movi a3, SYSTEM_CONTROL_CORE_1_RESETING
+    s32i.n a3, a4, 0
+    s32i.n a5, a4, 0
+    /* Restore the reset vector to ROM */
+    movi a4, RTC_CNTL_RESET_STATE_REG
+    movi a3, RTC_CNTL_RESET_STATE_DEF
+    s32i.n a3, a4, 0
+
+
+parking_loop:
+    /* PRO and APP CPU will be in this loop, until OpenOCD
+     * finds the JTAG taps and puts the CPUs into debug mode.
+     */
+    waiti 0
+    j parking_loop
diff --git a/src/target/target.c b/src/target/target.c
index 74f6d3d8b2..50b8cd0e2a 100644
--- a/src/target/target.c
+++ b/src/target/target.c
@@ -107,6 +107,7 @@ extern struct target_type nds32_v3_target;
 extern struct target_type nds32_v3m_target;
 extern struct target_type esp32_target;
 extern struct target_type esp32s2_target;
+extern struct target_type esp32s3_target;
 extern struct target_type or1k_target;
 extern struct target_type quark_x10xx_target;
 extern struct target_type quark_d20xx_target;
@@ -145,6 +146,7 @@ static struct target_type *target_types[] = {
 	&nds32_v3m_target,
 	&esp32_target,
 	&esp32s2_target,
+	&esp32s3_target,
 	&or1k_target,
 	&quark_x10xx_target,
 	&quark_d20xx_target,
diff --git a/tcl/board/esp32s3-ftdi.cfg b/tcl/board/esp32s3-ftdi.cfg
new file mode 100644
index 0000000000..c99ed45a67
--- /dev/null
+++ b/tcl/board/esp32s3-ftdi.cfg
@@ -0,0 +1,13 @@
+# SPDX-License-Identifier: GPL-2.0-or-later
+#
+# Example OpenOCD configuration file for ESP32-S3 connected via ESP-Prog.
+#
+# For example, OpenOCD can be started for ESP32-S3 debugging on
+#
+#   openocd -f board/esp32s3-ftdi.cfg
+#
+
+# Source the JTAG interface configuration file
+source [find interface/ftdi/esp32_devkitj_v1.cfg]
+# Source the ESP32-S3 configuration file
+source [find target/esp32s3.cfg]
diff --git a/tcl/mmr_helpers.tcl b/tcl/mmr_helpers.tcl
index d9b6e63834..24d7ab02ea 100644
--- a/tcl/mmr_helpers.tcl
+++ b/tcl/mmr_helpers.tcl
@@ -70,3 +70,22 @@ proc show_mmr_bitfield { MSB LSB VAL FIELDNAME FIELDVALUES } {
     }
     echo [format "%-15s: %d (0x%0*x) %s" $FIELDNAME $nval $width $nval $sval ]
 }
+
+# Give: ADDR - address of the register.
+#       BIT - bit's number.
+
+proc mmr_get_bit { ADDR BIT } {
+	set val [memread32 $ADDR]
+    set bit_val [expr {$val & [expr {1 << $BIT}]}]
+    return $bit_val
+}
+
+
+# Give: ADDR - address of the register.
+#       MSB - MSB bit's number.
+#       LSB - LSB bit's number.
+
+proc mmr_get_bitfield { ADDR MSB LSB } {
+	set rval [memread32 $ADDR]
+    return normalize_bitfield $rval $MSB $LSB
+}
diff --git a/tcl/target/esp32s3.cfg b/tcl/target/esp32s3.cfg
new file mode 100644
index 0000000000..5f1612b5fa
--- /dev/null
+++ b/tcl/target/esp32s3.cfg
@@ -0,0 +1,128 @@
+# SPDX-License-Identifier: GPL-2.0-or-later
+#
+# The ESP32-S3 only supports JTAG.
+transport select jtag
+
+set CPU_MAX_ADDRESS 0xFFFFFFFF
+source [find bitsbytes.tcl]
+source [find memory.tcl]
+source [find mmr_helpers.tcl]
+
+if { [info exists CHIPNAME] } {
+	set _CHIPNAME $CHIPNAME
+} else {
+	set _CHIPNAME esp32s3
+}
+
+if { [info exists CPUTAPID] } {
+	set _CPUTAPID $CPUTAPID
+} else {
+	set _CPUTAPID 0x120034e5
+}
+
+if { [info exists ESP32_S3_ONLYCPU] } {
+	set _ONLYCPU $ESP32_S3_ONLYCPU
+} else {
+	set _ONLYCPU 2
+}
+
+set _CPU0NAME cpu0
+set _CPU1NAME cpu1
+set _TARGETNAME_0 $_CHIPNAME.$_CPU0NAME
+set _TARGETNAME_1 $_CHIPNAME.$_CPU1NAME
+
+jtag newtap $_CHIPNAME $_CPU0NAME -irlen 5 -expected-id $_CPUTAPID
+if { $_ONLYCPU != 1 } {
+	jtag newtap $_CHIPNAME $_CPU1NAME -irlen 5 -expected-id $_CPUTAPID
+} else {
+	jtag newtap $_CHIPNAME $_CPU1NAME -irlen 5 -disable -expected-id $_CPUTAPID
+}
+
+proc esp32s3_memprot_is_enabled { } {
+	# SENSITIVE_CORE_X_IRAM0_DRAM0_DMA_SPLIT_LINE_CONSTRAIN_0_REG
+	if { [mmr_get_bit 0x600C10C0 0] != 0 } {
+		return 1
+	}
+	# SENSITIVE_CORE_0_PIF_PMS_CONSTRAIN_0_REG
+	if { [mmr_get_bit 0x600C1124 0] != 0 } {
+		return 1
+	}
+	# SENSITIVE_CORE_1_PIF_PMS_CONSTRAIN_0_REG
+	if { [mmr_get_bit 0x600C11D0 0] != 0 } {
+		return 1
+	}
+    # IRAM0, SENSITIVE_CORE_X_IRAM0_PMS_CONSTRAIN_0_REG
+    if { [mmr_get_bit 0x600C10D8 0] != 0 } {
+		return 1
+    }
+	# DRAM0, SENSITIVE_CORE_X_DRAM0_PMS_CONSTRAIN_0_REG
+    if { [mmr_get_bit 0x600C10FC 0] != 0 } {
+		return 1
+    }
+    # SENSITIVE_CORE_0_IRAM0_PMS_MONITOR_0_REG
+    if { [mmr_get_bit 0x600C10E4 0] != 0 } {
+		return 1
+    }
+	# SENSITIVE_CORE_1_IRAM0_PMS_MONITOR_0_REG
+    if { [mmr_get_bit 0x600C10F0 0] != 0 } {
+		return 1
+    }
+	# SENSITIVE_CORE_0_DRAM0_PMS_MONITOR_0_REG
+	if { [mmr_get_bit 0x600C1104 0] != 0 } {
+		return 1
+    }
+	# SENSITIVE_CORE_1_DRAM0_PMS_MONITOR_0_REG
+	if { [mmr_get_bit 0x600C1114 0] != 0 } {
+		return 1
+    }
+	# SENSITIVE_CORE_0_PIF_PMS_MONITOR_0_REG
+	if { [mmr_get_bit 0x600C119C 0] != 0 } {
+		return 1
+    }
+	# SENSITIVE_CORE_1_PIF_PMS_MONITOR_0_REG
+	if { [mmr_get_bit 0x600C1248 0] != 0 } {
+		return 1
+    }
+	return 0
+}
+
+# PRO-CPU
+target create $_TARGETNAME_0 $_CHIPNAME -endian little -chain-position \
$_TARGETNAME_0 -coreid 0 +# APP-CPU
+if { $_ONLYCPU != 1 } {
+	target create $_TARGETNAME_1 $_CHIPNAME -endian little -chain-position \
$_TARGETNAME_1 -coreid 1 +	target smp $_TARGETNAME_0 $_TARGETNAME_1
+}
+
+$_TARGETNAME_0 xtensa maskisr on
+$_TARGETNAME_0 xtensa smpbreak BreakIn BreakOut
+
+$_TARGETNAME_0 configure -event gdb-attach {
+	$_TARGETNAME_0 xtensa smpbreak BreakIn BreakOut
+	# necessary to auto-probe flash bank when GDB is connected
+	halt
+	if { [esp32s3_memprot_is_enabled] } {
+		# 'reset halt' to disable memory protection and allow flasher to work correctly
+		echo "Memory protection is enabled. Reset target to disable it..."
+		reset halt
+    }
+}
+$_TARGETNAME_0 configure -event reset-assert-post { soft_reset_halt }
+
+if { $_ONLYCPU != 1 } {
+	$_TARGETNAME_1 configure -event gdb-attach {
+		$_TARGETNAME_1 xtensa smpbreak BreakIn BreakOut
+		# necessary to auto-probe flash bank when GDB is connected
+		halt
+		if { [esp32s3_memprot_is_enabled] } {
+			# 'reset halt' to disable memory protection and allow flasher to work correctly
+			echo "Memory protection is enabled. Reset target to disable it..."
+			reset halt
+		}
+	}
+	$_TARGETNAME_1 configure -event reset-assert-post { soft_reset_halt }
+}
+
+gdb_breakpoint_override hard
+
+adapter speed 20000

-- 


[prev in list] [next in list] [prev in thread] [next in thread] 

Configure | About | News | Add a list | Sponsored by KoreLogic