From 9f19c926cb0b64cd5e0603f6df0680578a0e46e8 Mon Sep 17 00:00:00 2001 From: SashegDev Date: Tue, 15 Sep 2026 02:33:24 +0000 Subject: [PATCH] sbl_uni: prog 200K samples, DDRHI-ext2/3 creep runway --- tools/sbl_uni.py | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/tools/sbl_uni.py b/tools/sbl_uni.py index 7a36f72..3fd89a4 100644 --- a/tools/sbl_uni.py +++ b/tools/sbl_uni.py @@ -32,6 +32,8 @@ RAMS = [ (0x08600000, 0x00010000), # IMEM (0x08610000, 0x00FF0000), # DDRHI (QEMU parity; IMEM-stack spillover) (0x09600000, 0x01000000), # DDRHI-ext (tier spillover; zeros) + (0x0A600000, 0x01000000), # DDRHI-ext2 (creep runway; zeros) + (0x0B600000, 0x01000000), # DDRHI-ext3 (creep runway; zeros) (0x80000000, 0x07C00000), # DDRHIGH_A (0x87C00000, 0x00800000), # SMEM(+SBL BSS) (0x07800000, 0x000AF000), # leak-sink HI (S12 frame march; @@ -149,7 +151,7 @@ def main(): def hook_code(mu, addr, size, data): count[0] += 1 last[0] = addr - if count[0] % 2000000 == 0: + if count[0] % 200000 == 0: from unicorn.arm_const import UC_ARM_REG_SP as _SX print('prog:', count[0], hex(addr), hex(mu.reg_read(_SX)), flush=True) _pp = _prev[0]