PBell vibe 500: fix the modelname (first commit test)
[kugel-rb.git] / rbutil / mkamsboot / dualboot / dualboot.S
blobfe1a64befbb1dbcca19be985bad407e6a021ae85
1 /***************************************************************************
2  *             __________               __   ___.
3  *   Open      \______   \ ____   ____ |  | _\_ |__   _______  ___
4  *   Source     |       _//  _ \_/ ___\|  |/ /| __ \ /  _ \  \/  /
5  *   Jukebox    |    |   (  <_> )  \___|    < | \_\ (  <_> > <  <
6  *   Firmware   |____|_  /\____/ \___  >__|_ \|___  /\____/__/\_ \
7  *                     \/            \/     \/    \/            \/
8  * $Id$
9  *
10  * Copyright (C) 2008 Rafaël Carré
11  *
12  * This program is free software; you can redistribute it and/or
13  * modify it under the terms of the GNU General Public License
14  * as published by the Free Software Foundation; either version 2
15  * of the License, or (at your option) any later version.
16  *
17  * This software is distributed on an "AS IS" basis, WITHOUT WARRANTY OF ANY
18  * KIND, either express or implied.
19  *
20  ****************************************************************************/
22 .text
24 #if defined(SANSA_CLIPV2) || defined(SANSA_CLIPPLUS)
25 .set RAM_SIZE, 0x100000 /* Use 1MB of SDRAM on v2 firmwares (bigger firmware) */
26 #else
27 .set RAM_SIZE, 0x50000  /* Use full IRAM on v1 firmwares */
28 #endif
30 /* AS3525 hardware registers */
31 .set GPIOA,     0xC80B0000
32 .set GPIOB,     0xC80C0000
33 .set GPIOC,     0xC80D0000
34 .set GPIOD,     0xC80E0000
35 .set CGU_PERI,  0xC80F0014
38 /* Vectors */
40         ldr   pc, =start    /* reset vector */
41         /* next vectors are unused */
42         .word   0
43         .word   0
44         .word   0
45         .word   0
46         .word   0
47         .word   0
48         .word   0
50 /* These values are filled in by mkamsboot - don't move them from offset 0x20 */
52 uclunpack_end:   .word   0 /* End of the ucl_unpack function */
53 uclunpack_size:  .word   0 /* Size in bytes of the ucl_unpack function */
55 ucl_of_end:      .word   0 /* End of the ucl-compressed OF image */
56 ucl_of_size:     .word   0 /* Size in bytes of the compressed OF image */
58 ucl_rb_end:      .word   0 /* End of the ucl-compressed RB image */
59 ucl_rb_size:     .word   0 /* Size in bytes of the compressed RB image */
62 start:
63         /* First copy the UCL unpack function to the end of RAM */
64         ldr     r0, uclunpack_end   /* Source */
65         ldr     r1, uclunpack_size  /* Source length */
66         sub     r2, r0, r1          /* Source start - 1*/
68         ldr     r3, =(RAM_SIZE-1)  /* Destination end */
70 uclcopy:
71         ldrb    r4, [r0], #-1
72         strb    r4, [r3], #-1
73         cmp     r2, r0
74         bne     uclcopy
76         add     r5, r3, #2          /* r5 is entry point of copy of uclunpack */
77                                     /* function, plus one (for thumb mode */
79         /* enable gpio clock */
80         ldr     r0, =CGU_PERI
81         ldr     r1, [r0]
82         orr     r1, r1, #(1<<16)
83         str     r1, [r0]
86 /* TODO : M200V4 */
87 #if defined(SANSA_C200V2)
88 #define USB_PIN 1
89 #elif defined(SANSA_CLIP) || defined(SANSA_CLIPV2)
90 #define USB_PIN 6
91 #elif defined(SANSA_FUZE) || defined(SANSA_E200V2)
92 #define USB_PIN 3
93 #endif
95 #ifdef USB_PIN  /* TODO : remove this check when we'll have an USB driver */
96         ldr     r0, =GPIOA
97         mov     r1, #0
98         str     r1, [r0, #0x400]
99         ldr     r1, [r0, #(4*(1<<USB_PIN))]
100         cmp     r1, #0
101         bne     boot_of
102 #endif
104         /* Here are model specific tests, for dual boot without a computer */
105         /* All models use left button */
106         /* /!\ Right button for c200v2 (left button is unkwown) */
108 #ifdef SANSA_CLIP
109 .set row, (1<<5) /* enable output on C5 */
110 .set col, (1<<0) /* read keyscan column B0 */
112         ldr     r0, =GPIOC
113         mov     r1, #row
114         str     r1, [r0, #0x400]
115         str     r1, [r0, #(4*row)]
117         ldr     r0, =GPIOB
118         mov     r1, #0
119         str     r1, [r0, #0x400]
120         ldr     r1, [r0, #(4*col)]
122         cmp     r1, #0
123         bne     boot_of
124 #elif defined(SANSA_CLIPV2)
125 .set row, (1<<4) /* enable output on D4 */
126 .set col, (1<<0) /* read keyscan column D0 */
128         ldr     r0, =GPIOD
129         mov     r1, #((1<<5)|(1<<4)|(1<<3)) /* all rows as output */
130         str     r1, [r0, #0x400]
132         /* all rows high */
133         mov     r1, #(1<<3)
134         str     r1, [r0, #(4*(1<<3))]
135         mov     r1, #(1<<4)
136         str     r1, [r0, #(4*(1<<4))]
137         mov     r1, #(1<<5)
138         str     r1, [r0, #(4*(1<<5))]
140         mov     r1, #0                      /* button row low */
141         str     r1, [r0, #(4*row)]
143         mov     r1, #5                      /* small delay */
144 1:      subs    r1, r1, #1
145         bne     1b
147         ldr     r1, [r0, #(4*col)]
149         cmp     r1, #0
150         beq     boot_of
151 #elif defined(SANSA_E200V2) || defined(SANSA_FUZE)
152         ldr     r0, =GPIOC
153         mov     r1, #0
154         str     r1, [r0, #0x400]
155         ldr     r1, [r0, #0x20]    /* read pin C3 */
157         cmp     r1, #0             /* C3 = #0 means button pressed */
158         beq     boot_of
159 #elif defined(SANSA_CLIPPLUS)
160         /* TODO */
161         mov     r0, #0x500000       /* Approximately 5 seconds */
162 1:      subs    r0, r0, #1          /* just to prove we are running */
163         bne     1b
164         b       boot_of             /* branch to OF */
165 #elif defined(SANSA_C200V2)
166         /* check for RIGHT on C6, should changed to LEFT as soon as it
167          * known in which pin that is in order for consistency  */
168         ldr     r0, =GPIOC
169         mov     r1, #0
170         str     r1, [r0, #0x400]      /* set pin to output */
172         ldr     r1, [r0, #256]        /* 1<<(6+2) */
173         cmp     r1, #0                /* C6 low means button pressed */
174         beq     boot_of
175 #elif defined(SANSA_M200V4)
176 .set row, (1<<5) /* enable output on A5 */
177 .set col, (1<<0) /* read keyscan column A0 */
179         ldr     r0, =GPIOA
180         mov     r1, #row
181         str     r1, [r0, #0x400]
182         str     r1, [r0, #(4*row)]
184         ldr     r2, [r0, #(4*col)]
186         /* check value read (1 means button pressed) */
187         cmp     r2, #0
188         bne     boot_of
189 #else
190         #error No target-specific key check defined!
191 #endif
194         /* The dualboot button was not held, so we boot rockbox */
195         ldr     r0, ucl_rb_end      /* Address of compressed image */
196         ldr     r1, ucl_rb_size     /* Compressed size */
197         b       decompress
199 boot_of:
200         ldr     r0, ucl_of_end      /* Address of compressed image */
201         ldr     r1, ucl_of_size     /* Compressed size */
204 decompress:
205         /* At this point:                                              */
206         /* r5 = entry point (plus one for thumb) of uclunpack function */
207         /* r3 = destination_end for copy of UCL image                  */
208         /* r0 = source_end for UCL image to copy                       */
209         /* r1 = size of UCL image to copy                              */
211         sub     r4, r3, r1      /* r4 := destination_start - 1 */
213 fw_copy:
214         ldrb    r2, [r0], #-1
215         strb    r2, [r3], #-1
216         cmp     r3, r4          /* Stop when we reached dest_start-1 */
217         bne     fw_copy
219         /* Call the ucl decompress function, which will branch to 0x0 */
220         /* on completion */
221         add     r0, r3, #1      /* r0 := Start of compressed image */
222                                 /* r1 already contains compressed size */
223         mov     r2, #0          /* r2 := Destination for unpacking */
224         bx      r5              /* Branch to uclunpack, switching to thumb */
226         /* never reached : uclunpack will branch to the reset vector (0x0) */