summaryrefslogtreecommitdiff
path: root/rbutil
diff options
context:
space:
mode:
authorRafaël Carré <funman@videolan.org>2012-01-31 14:18:25 -0500
committerRafaël Carré <funman@videolan.org>2012-01-31 14:23:53 -0500
commit88cda7eb2677a5d36141cd4d0b94c98457213ccb (patch)
treeb7fe49d7411aa451e9e92b71adb15a987b70c498 /rbutil
parent54044fd6e9739376cd0df28c26afea66f295a4d3 (diff)
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
Diffstat (limited to 'rbutil')
-rw-r--r--rbutil/mkamsboot/mkamsboot.c18
1 files 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;