mirror of
https://github.com/tinygo-org/tinygo.git
synced 2026-08-07 20:43:40 +00:00
esp32s3: add flash XIP boot assembly with cache/MMU init
The ESP32-S3 ROM bootloader loads IRAM/DRAM into SRAM but does not configure the flash cache or MMU. Previously the target incorrectly reused the ESP32 boot assembly (esp32.S) which lacks flash XIP support. Add a dedicated esp32s3.S boot assembly that: - Sets up windowed-ABI registers, stack, and FPU - Disables all watchdog timers (RTC, TIMG0, TIMG1, Super WDT) - Configures VECBASE and clears PS.EXCM before any callx4 - Calls ROM functions to configure cache modes: rom_config_instruction_cache_mode (16KB, 8-way, 32B line) rom_config_data_cache_mode (32KB, 8-way, 32B line) - Initializes MMU, maps flash page 0 for IROM and DROM, clears bus-shut bits, and enables both caches - Jumps to runtime.main in IROM (flash) Update the linker script (esp32s3.ld) to place .text and .rodata in flash-mapped regions (IROM/DROM) with proper alignment for the MMU page size. Update esp32s3-interrupts.S with proper exception vector handlers. Point esp32s3.json at the new esp32s3.S instead of esp32.S. Signed-off-by: deadprogram <ron@hybridgroup.com>
This commit is contained in:
@@ -0,0 +1,317 @@
|
||||
// Startup code for the ESP32-S3 (Xtensa LX7, windowed ABI).
|
||||
//
|
||||
// The ROM bootloader loads IRAM/DRAM segments into SRAM but does NOT
|
||||
// configure flash cache/MMU. We must:
|
||||
// 1. Set up the windowed-ABI register file and stack pointer.
|
||||
// 2. Set VECBASE and clear PS.EXCM (needed for callx4 window overflows).
|
||||
// 3. Disable watchdog timers.
|
||||
// 4. Configure the flash cache and MMU so IROM/DROM are accessible.
|
||||
// 5. Jump to runtime.main (in IROM).
|
||||
//
|
||||
// Cache/MMU init sequence (from NuttX esp_loader.c / ESP-IDF bootloader / esp-hal):
|
||||
// Phase A — configure cache modes:
|
||||
// a. rom_config_instruction_cache_mode(16KB, 8-way, 32B)
|
||||
// b. rom_Cache_Suspend_DCache()
|
||||
// c. rom_config_data_cache_mode(32KB, 8-way, 32B)
|
||||
// d. Cache_Resume_DCache(0)
|
||||
// Phase B — map flash pages:
|
||||
// e. Disable caches
|
||||
// f. Cache_MMU_Init() — reset all MMU entries to invalid
|
||||
// g. Cache_Set_IDROM_MMU_Size() — set IROM/DROM entry split
|
||||
// h. Write MMU entries mapping flash page 0 for IROM and DROM
|
||||
// i. Clear bus-shut bits
|
||||
// j. Enable caches + isync
|
||||
|
||||
#define PS_WOE 0x00040000
|
||||
|
||||
// -----------------------------------------------------------------------
|
||||
// Boot entry point — placed in IRAM by the linker.
|
||||
// -----------------------------------------------------------------------
|
||||
.section .text.call_start_cpu0
|
||||
.literal_position
|
||||
.align 4
|
||||
.Lstack_top_addr:
|
||||
.long _stack_top
|
||||
.Lmain_addr:
|
||||
.long main
|
||||
.Lvector_table_addr:
|
||||
.long _vector_table
|
||||
// WDT register addresses
|
||||
.Lwdt_key:
|
||||
.long 0x50D83AA1
|
||||
.Lrtc_wdt_protect:
|
||||
.long 0x600080B0
|
||||
.Lrtc_wdt_config0:
|
||||
.long 0x60008098
|
||||
.Ltimg0_wdt_protect:
|
||||
.long 0x6001F064
|
||||
.Ltimg0_wdt_config0:
|
||||
.long 0x6001F048
|
||||
.Ltimg1_wdt_protect:
|
||||
.long 0x60020064
|
||||
.Ltimg1_wdt_config0:
|
||||
.long 0x60020048
|
||||
.Lswd_protect:
|
||||
.long 0x600080B8
|
||||
.Lswd_key:
|
||||
.long 0x8F1D312A
|
||||
.Lswd_conf:
|
||||
.long 0x600080B4
|
||||
.Lswd_disable:
|
||||
.long 0x40000000
|
||||
// ROM function addresses (from ESP-IDF esp32s3.rom.ld)
|
||||
.Lrom_config_icache:
|
||||
.long 0x40001a1c
|
||||
.Lrom_config_dcache:
|
||||
.long 0x40001a28
|
||||
.Lrom_suspend_dcache:
|
||||
.long 0x400018b4
|
||||
.LCache_Resume_DCache:
|
||||
.long 0x400018c0
|
||||
.LCache_Disable_ICache:
|
||||
.long 0x4000186c
|
||||
.LCache_Disable_DCache:
|
||||
.long 0x40001884
|
||||
.LCache_MMU_Init:
|
||||
.long 0x40001998
|
||||
.LCache_Set_IDROM_MMU_Size:
|
||||
.long 0x40001914
|
||||
.LCache_Enable_ICache:
|
||||
.long 0x40001878
|
||||
.LCache_Enable_DCache:
|
||||
.long 0x40001890
|
||||
// Cache/MMU register addresses
|
||||
.Lmmu_table_base:
|
||||
.long 0x600C5000
|
||||
.Licache_ctrl1_reg:
|
||||
.long 0x600C4064
|
||||
.Ldcache_ctrl1_reg:
|
||||
.long 0x600C4004
|
||||
|
||||
.global call_start_cpu0
|
||||
call_start_cpu0:
|
||||
|
||||
// ---- 1. Windowed-ABI register file setup ----
|
||||
|
||||
// Disable WOE so we can safely manipulate WINDOWSTART.
|
||||
rsr.ps a2
|
||||
movi a3, ~(PS_WOE)
|
||||
and a2, a2, a3
|
||||
wsr.ps a2
|
||||
rsync
|
||||
|
||||
// Set WINDOWSTART to 1 << WINDOWBASE (mark only current window as valid).
|
||||
rsr.windowbase a2
|
||||
ssl a2
|
||||
movi a2, 1
|
||||
sll a2, a2
|
||||
wsr.windowstart a2
|
||||
rsync
|
||||
|
||||
// Load stack pointer.
|
||||
l32r a1, .Lstack_top_addr
|
||||
|
||||
// Re-enable WOE.
|
||||
rsr.ps a2
|
||||
movi a3, PS_WOE
|
||||
or a2, a2, a3
|
||||
wsr.ps a2
|
||||
rsync
|
||||
|
||||
// Enable FPU (coprocessor 0).
|
||||
movi a2, 1
|
||||
wsr.cpenable a2
|
||||
rsync
|
||||
|
||||
// ---- 2. Disable all watchdog timers (IMMEDIATELY, before any delay) ----
|
||||
l32r a3, .Lwdt_key
|
||||
movi a4, 0
|
||||
|
||||
// RTC WDT
|
||||
l32r a2, .Lrtc_wdt_protect
|
||||
memw
|
||||
s32i a3, a2, 0
|
||||
l32r a5, .Lrtc_wdt_config0
|
||||
memw
|
||||
s32i a4, a5, 0
|
||||
memw
|
||||
s32i a4, a2, 0
|
||||
|
||||
// TIMG0 WDT
|
||||
l32r a2, .Ltimg0_wdt_protect
|
||||
memw
|
||||
s32i a3, a2, 0
|
||||
l32r a5, .Ltimg0_wdt_config0
|
||||
memw
|
||||
s32i a4, a5, 0
|
||||
memw
|
||||
s32i a4, a2, 0
|
||||
|
||||
// TIMG1 WDT
|
||||
l32r a2, .Ltimg1_wdt_protect
|
||||
memw
|
||||
s32i a3, a2, 0
|
||||
l32r a5, .Ltimg1_wdt_config0
|
||||
memw
|
||||
s32i a4, a5, 0
|
||||
memw
|
||||
s32i a4, a2, 0
|
||||
|
||||
// Super WDT
|
||||
l32r a2, .Lswd_protect
|
||||
l32r a3, .Lswd_key
|
||||
memw
|
||||
s32i a3, a2, 0
|
||||
l32r a5, .Lswd_conf
|
||||
l32r a6, .Lswd_disable
|
||||
memw
|
||||
s32i a6, a5, 0
|
||||
memw
|
||||
s32i a4, a2, 0
|
||||
|
||||
// ---- 3. Set VECBASE and clear PS.EXCM ----
|
||||
// VECBASE must be set before any callx4 so that window overflow
|
||||
// exceptions (triggered by register window rotation) route to our
|
||||
// handlers in IRAM, not the ROM's default vectors.
|
||||
l32r a8, .Lvector_table_addr
|
||||
wsr.vecbase a8
|
||||
rsync
|
||||
|
||||
// Clear PS.EXCM (bit 4) and PS.INTLEVEL (bits 0-3).
|
||||
// The ROM bootloader may leave EXCM=1; with EXCM set any callx4
|
||||
// window overflow would become a double exception.
|
||||
// Set PS.UM (bit 5) so level-1 exceptions route to User vector.
|
||||
rsr.ps a2
|
||||
movi a3, ~0x1F
|
||||
and a2, a2, a3
|
||||
movi a3, 0x20
|
||||
or a2, a2, a3
|
||||
wsr.ps a2
|
||||
rsync
|
||||
|
||||
// ---- 4. Configure flash cache and MMU ----
|
||||
//
|
||||
// ROM function calls use callx4 (windowed ABI):
|
||||
// a4 = target address (overwritten with return addr by call mechanism)
|
||||
// a5 = stack pointer for callee (becomes callee's a1 via entry)
|
||||
// a6 = first argument (becomes callee's a2)
|
||||
// a7 = second argument (becomes callee's a3)
|
||||
// a8 = third argument (becomes callee's a4)
|
||||
// Registers a0-a3 are preserved across callx4; a4-a11 may be clobbered.
|
||||
|
||||
// Phase A: Configure cache modes (required for cache hardware to function).
|
||||
// Without this, the cache doesn't know its size/associativity/line-size
|
||||
// and cannot service flash accesses.
|
||||
|
||||
// 4a. Configure ICache mode: 16KB, 8-way, 32-byte line
|
||||
movi a6, 0x4000 // cache_size = 16KB
|
||||
movi a7, 8 // ways = 8
|
||||
movi a8, 32 // line_size = 32
|
||||
mov a5, a1
|
||||
l32r a4, .Lrom_config_icache
|
||||
callx4 a4
|
||||
|
||||
// 4b. Suspend DCache before configuring it
|
||||
mov a5, a1
|
||||
l32r a4, .Lrom_suspend_dcache
|
||||
callx4 a4
|
||||
|
||||
// 4c. Configure DCache mode: 32KB, 8-way, 32-byte line
|
||||
movi a6, 0x8000 // cache_size = 32KB
|
||||
movi a7, 8 // ways = 8
|
||||
movi a8, 32 // line_size = 32
|
||||
mov a5, a1
|
||||
l32r a4, .Lrom_config_dcache
|
||||
callx4 a4
|
||||
|
||||
// 4d. Resume DCache
|
||||
movi a6, 0
|
||||
mov a5, a1
|
||||
l32r a4, .LCache_Resume_DCache
|
||||
callx4 a4
|
||||
|
||||
// Phase B: Map flash pages into MMU.
|
||||
|
||||
// 4e. Disable ICache
|
||||
mov a5, a1
|
||||
l32r a4, .LCache_Disable_ICache
|
||||
callx4 a4
|
||||
|
||||
// 4f. Disable DCache
|
||||
mov a5, a1
|
||||
l32r a4, .LCache_Disable_DCache
|
||||
callx4 a4
|
||||
|
||||
// 4g. Initialize MMU (resets all 512 entries to invalid = 0x4000)
|
||||
mov a5, a1
|
||||
l32r a4, .LCache_MMU_Init
|
||||
callx4 a4
|
||||
|
||||
// 4h. Set IDROM MMU size: even 256/256 split.
|
||||
// Each entry is 4 bytes, so 256 entries = 0x400 bytes per region.
|
||||
movi a6, 0x400 // irom_mmu_size (256 entries × 4 bytes)
|
||||
movi a7, 0x400 // drom_mmu_size (256 entries × 4 bytes)
|
||||
mov a5, a1
|
||||
l32r a4, .LCache_Set_IDROM_MMU_Size
|
||||
callx4 a4
|
||||
|
||||
// 4i. Write MMU entries: map flash page 0 for both IROM and DROM.
|
||||
// MMU table at 0x600C5000: entries 0-255 = ICache, 256-511 = DCache.
|
||||
// Entry value 0 = flash page 0, valid (SOC_MMU_VALID = 0).
|
||||
// Our .text (IROM, VMA 0x42000xxx) and .rodata (DROM, VMA 0x3C000xxx)
|
||||
// both reside in flash page 0 (first 64KB).
|
||||
l32r a8, .Lmmu_table_base // a8 = 0x600C5000
|
||||
movi a9, 0 // flash page 0
|
||||
s32i a9, a8, 0 // Entry 0: ICache VMA 0x42000000
|
||||
addmi a10, a8, 0x400 // a10 = 0x600C5400 (entry 256)
|
||||
s32i a9, a10, 0 // Entry 256: DCache VMA 0x3C000000
|
||||
memw
|
||||
|
||||
// 4j. Clear bus-shut bits so core 0 can access ICache and DCache buses.
|
||||
l32r a8, .Licache_ctrl1_reg // 0x600C4064
|
||||
movi a9, 0
|
||||
s32i a9, a8, 0 // Clear all ICACHE_CTRL1 shut bits
|
||||
l32r a8, .Ldcache_ctrl1_reg // 0x600C4004
|
||||
s32i a9, a8, 0 // Clear all DCACHE_CTRL1 shut bits
|
||||
memw
|
||||
|
||||
// 4k. Enable ICache (arg: autoload = 0)
|
||||
movi a6, 0
|
||||
mov a5, a1
|
||||
l32r a4, .LCache_Enable_ICache
|
||||
callx4 a4
|
||||
|
||||
// 4l. Enable DCache (arg: autoload = 0)
|
||||
movi a6, 0
|
||||
mov a5, a1
|
||||
l32r a4, .LCache_Enable_DCache
|
||||
callx4 a4
|
||||
|
||||
// Flush instruction pipeline so new cache/MMU config takes effect.
|
||||
isync
|
||||
|
||||
// ---- 5. Jump to main (in IROM) ----
|
||||
// Re-clear PS.EXCM in case ROM calls changed processor state.
|
||||
rsr.ps a2
|
||||
movi a3, ~0x1F
|
||||
and a2, a2, a3
|
||||
movi a3, 0x20
|
||||
or a2, a2, a3
|
||||
wsr.ps a2
|
||||
rsync
|
||||
|
||||
mov a5, a1
|
||||
l32r a4, .Lmain_addr
|
||||
callx4 a4
|
||||
|
||||
// If main returns, loop forever.
|
||||
1: j 1b
|
||||
|
||||
// -----------------------------------------------------------------------
|
||||
// tinygo_scanCurrentStack — tail-jump to tinygo_scanstack.
|
||||
// -----------------------------------------------------------------------
|
||||
.section .text.tinygo_scanCurrentStack
|
||||
|
||||
.global tinygo_scanCurrentStack
|
||||
tinygo_scanCurrentStack:
|
||||
j tinygo_scanstack
|
||||
Reference in New Issue
Block a user