summaryrefslogtreecommitdiff
path: root/firmware
diff options
context:
space:
mode:
authorJens Arnold <amiconn@rockbox.org>2011-06-19 17:23:18 +0000
committerJens Arnold <amiconn@rockbox.org>2011-06-19 17:23:18 +0000
commit91ce4b2a60c4cbe8e3568f79c3a73572461ff40d (patch)
tree863cf4142841fee4dd53e2849d060d2c559cca55 /firmware
parente9e0cf59085cb3b3d77c8a2962fd8b80ac4d0c9d (diff)
downloadrockbox-91ce4b2a60c4cbe8e3568f79c3a73572461ff40d.tar.gz
rockbox-91ce4b2a60c4cbe8e3568f79c3a73572461ff40d.zip
Optional dual-boot support in iAudio X5 and M5 bootloader, based on FS#5289.
In order to enable it, #define HAVE_DUALBOOT when building the bootloader. Do not use the automatically created x5_fw.bin or m5_fw.bin, but use mkboot to create a new firmware file from an OF x5_fw.bin resp. m5_fw.bin and bootloader.bin. The dual-boot bootloader boots the OF when pressing Play (main or remote) for more than 3 seconds. Hold it a bit longer because the OF also checks buttons. Short press boots rockbox. As a bonus, the Play button read (for hold check) is done a bit earlier for single-boot mode as well. git-svn-id: svn://svn.rockbox.org/rockbox/trunk@30018 a1c6a512-1295-4272-9138-f99709370657
Diffstat (limited to 'firmware')
-rw-r--r--firmware/target/coldfire/crt0.S53
-rw-r--r--firmware/target/coldfire/iaudio/boot.lds6
2 files changed, 56 insertions, 3 deletions
diff --git a/firmware/target/coldfire/crt0.S b/firmware/target/coldfire/crt0.S
index e6717710b1..881fcf908f 100644
--- a/firmware/target/coldfire/crt0.S
+++ b/firmware/target/coldfire/crt0.S
@@ -26,11 +26,51 @@
26 .global start 26 .global start
27start: 27start:
28 28
29#if defined(BOOTLOADER) && defined(HAVE_DUALBOOT) \
30 && (defined(IAUDIO_X5) || defined(IAUDIO_M5))
31
32 /* 8 byte dualboot signature */
33 bra.b 1f /* 0x6006 */
34 .short 0x4442 /* DB */
35#if defined(IAUDIO_X5)
36 .long 0x69617835 /* iax5 */
37#elif defined(IAUDIO_M5)
38 .long 0x69616d35 /* iam5 */
39#else
40#error Dualboot signature not defined
41#endif
421:
43 /* As the control registers are write-only, we're relying on MBAR2 being */
44 /* set up correctly by the preloader for button check */
45 /* Only use scratch regs until we're sure that we will boot rockbox */
46 lea MBAR2, %a1
47 move.l (%a1), %a0 /* store GPIO_READ result for button check in main() */
48
49 /* Wait ~3 seconds for ON-button release. We need roughly 300ns per
50 iteration, so we check 10000000 times to reach the desired delay */
51 move.l #10000000, %d0
52.on_button_test:
53 move.l (%a1), %d1 /* GPIO_READ */
54 and.l #0x06000000, %d1 /* Check main (bit 25=0) and remote (bit 26=0) */
55 cmp.l #0x06000000, %d1 /* ON buttons simultaneously */
56 beq.b .loadrockbox
57 subq.l #1, %d0
58 bne.b .on_button_test
59
60.loadoriginal:
61 jmp 0x10010
62
63.loadrockbox:
64 move.l %a0, %d7 /* keep initial GPIO_READ value in %d7 for now */
65
66#endif /* defined(BOOTLOADER && defined(HAVE_DUALBOOT)
67 && (defined(IAUDIO_X5) || defined(IAUDIO_M5)) */
68
29 move.w #0x2700,%sr 69 move.w #0x2700,%sr
30 70
31 move.l #vectors,%d0 71 move.l #vectors,%d0
32 movec.l %d0,%vbr 72 movec.l %d0,%vbr
33 73
34 move.l #MBAR+1,%d0 74 move.l #MBAR+1,%d0
35 movec.l %d0,%mbar 75 movec.l %d0,%mbar
36 76
@@ -39,7 +79,12 @@ start:
39 79
40 lea MBAR,%a0 80 lea MBAR,%a0
41 lea MBAR2,%a1 81 lea MBAR2,%a1
42 82
83#if defined(BOOTLOADER) && !defined(HAVE_DUALBOOT) \
84 && (defined(IAUDIO_X5) || defined(IAUDIO_M5))
85 move.l (%a1), %d7 /* store GPIO_READ result for button check in main() */
86#endif
87
43 clr.l (0x180,%a1) /* PLLCR = 0 */ 88 clr.l (0x180,%a1) /* PLLCR = 0 */
44 89
45 /* 64K DMA-capable SRAM at 0x10000000 90 /* 64K DMA-capable SRAM at 0x10000000
@@ -318,6 +363,10 @@ start:
318 move.l %d0,(%a2)+ 363 move.l %d0,(%a2)+
319 cmp.l %a2,%a4 364 cmp.l %a2,%a4
320 bhi.b .mungeloop 365 bhi.b .mungeloop
366
367#if defined(BOOTLOADER) && (defined(IAUDIO_X5) || defined(IAUDIO_M5))
368 move.l %d7, initial_gpio_read
369#endif
321 370
322 jsr main 371 jsr main
323.hoo: 372.hoo:
diff --git a/firmware/target/coldfire/iaudio/boot.lds b/firmware/target/coldfire/iaudio/boot.lds
index 4cd0e8eaab..9288a6c18b 100644
--- a/firmware/target/coldfire/iaudio/boot.lds
+++ b/firmware/target/coldfire/iaudio/boot.lds
@@ -14,8 +14,12 @@ STARTUP(target/coldfire/crt0.o)
14#define IRAMSIZE 0x18000 14#define IRAMSIZE 0x18000
15#endif 15#endif
16#define DRAMORIG 0x31000000 16#define DRAMORIG 0x31000000
17#ifdef HAVE_DUALBOOT
18#define FLASHORIG 0x00150000
19#else
17#define FLASHORIG 0x00010000 20#define FLASHORIG 0x00010000
18#define FLASHSIZE 4M 21#endif
22#define FLASHSIZE 4M - FLASHORIG
19 23
20MEMORY 24MEMORY
21{ 25{