From 88cda7eb2677a5d36141cd4d0b94c98457213ccb Mon Sep 17 00:00:00 2001 From: =?utf8?q?Rafa=C3=ABl=20Carr=C3=A9?= Date: Tue, 31 Jan 2012 14:18:25 -0500 Subject: [PATCH] mkamsboot: fix some Clipv2 that we used to brick On those models the software bootloader is entered through the SWI vector, not through the reset vector like we thought. Use put_uint32le() instead of memcpy Use mov pc, #0x200 instead of b 0x200, so we can use the same instruction for both vectors. Tested on Clipv2 and Clip Zip Change-Id: I99dc24167dde5558d34fe9795c65b44ff91aa665 --- rbutil/mkamsboot/mkamsboot.c | 18 +++++++++--------- 1 file changed, 9 insertions(+), 9 deletions(-) diff --git a/rbutil/mkamsboot/mkamsboot.c b/rbutil/mkamsboot/mkamsboot.c index 2897e48657..05b862376a 100644 --- a/rbutil/mkamsboot/mkamsboot.c +++ b/rbutil/mkamsboot/mkamsboot.c @@ -474,15 +474,15 @@ void patch_firmware( memcpy(buf + 0x600, ams_identity[model].bootloader, ams_identity[model].bootloader_size); /* Insert vectors, they won't overwrite the OF version string */ - - /* Reset vector: branch 0x200 bytes away, to our dualboot code */ - static const uint8_t b_0x200[4] = { 0x7e, 0x00, 0x00, 0xea }; // b 0x200 - memcpy(buf + 0x400, b_0x200, sizeof(b_0x200)); - - /* Other vectors: infinite loops */ - static const uint8_t b_1b[4] = { 0xfe, 0xff, 0xff, 0xea }; // 1: b 1b - for (i=1; i < 8; i++) - memcpy(buf + 0x400 + 4*i, b_1b, sizeof(b_1b)); + static const uint32_t goto_start = 0xe3a0fc02; // mov pc, #0x200 + static const uint32_t infinite_loop = 0xeafffffe; // 1: b 1b + /* ALL vectors: infinite loop */ + for (i=0; i < 8; i++) + put_uint32le(buf + 0x400 + 4*i, infinite_loop); + /* Now change only the interesting vectors */ + /* Reset/SWI vectors: branch to our dualboot code at 0x200 */ + put_uint32le(buf + 0x400 + 4*0, goto_start); // Reset + put_uint32le(buf + 0x400 + 4*2, goto_start); // SWI /* We are filling the firmware buffer backwards from the end */ p = buf + 0x400 + firmware_size; -- 2.11.4.GIT