1 /***************************************************************************
3 * Open \______ \ ____ ____ | | _\_ |__ _______ ___
4 * Source | _// _ \_/ ___\| |/ /| __ \ / _ \ \/ /
5 * Jukebox | | ( <_> ) \___| < | \_\ ( <_> > < <
6 * Firmware |____|_ /\____/ \___ >__|_ \|___ /\____/__/\_ \
10 * Copyright (C) 2002 Randy D. Wood
12 * All files in this archive are subject to the GNU General Public License.
13 * See the file COPYING in the source tree root for full license agreement.
15 * This software is distributed on an "AS IS" basis, WITHOUT WARRANTY OF ANY
16 * KIND, either express or implied.
18 ****************************************************************************/
22 #include "lcd-remote.h"
37 #include "crc32-mi4.h"
38 #undef FIRMWARE_OFFSET_FILE_CRC
39 #undef FIRMWARE_OFFSET_FILE_DATA
40 #define FIRMWARE_OFFSET_FILE_CRC 0xC
41 #define FIRMWARE_OFFSET_FILE_DATA 0x200
44 #if !defined(IRIVER_IFP7XX_SERIES) && \
45 (CONFIG_CPU != PP5002)
46 /* FIX: this doesn't work on iFP, 3rd Gen ipods */
48 #define IRQ0_EDGE_TRIGGER 0x80
51 /* Handle the COP properly - it needs to jump to a function outside SDRAM while
52 * the new firmware is being loaded, and then jump to the start of SDRAM
53 * TODO: Use the mailboxes built into the PP processor for this
57 volatile unsigned char IDATA_ATTR cpu_message
= 0;
58 volatile unsigned char IDATA_ATTR cpu_reply
= 0;
59 extern int cop_idlestackbegin
[];
61 void rolo_restart_cop(void) ICODE_ATTR
;
62 void rolo_restart_cop(void)
64 if (CURRENT_CORE
== CPU
)
66 /* There should be free thread slots aplenty */
67 create_thread(rolo_restart_cop
, cop_idlestackbegin
, IDLE_STACK_SIZE
,
68 0, "rolo COP" IF_PRIO(, PRIORITY_REALTIME
)
75 /* Invalidate cache */
79 CACHE_CTL
= CACHE_CTL_DISABLE
;
81 /* Tell the main core that we're ready to reload */
84 /* Wait while RoLo loads the image into SDRAM */
85 /* TODO: Accept checksum failure gracefully */
86 while(cpu_message
!= 1);
88 /* Acknowledge the CPU and then reload */
92 "mov r0, #0x10000000 \n"
96 #endif /* NUM_CORES > 1 */
99 static void rolo_error(const char *text
)
102 lcd_puts(0, 0, "ROLO error:");
103 lcd_puts_scroll(0, 1, text
);
111 #if CONFIG_CPU == SH7034 || CONFIG_CPU == IMX31L
112 /* these are in assembler file "descramble.S" for SH7034 */
113 extern unsigned short descramble(const unsigned char* source
,
114 unsigned char* dest
, int length
);
115 /* this is in firmware/target/arm/imx31/rolo_restart.S for IMX31 */
116 extern void rolo_restart(const unsigned char* source
, unsigned char* dest
,
120 /* explicitly put this code in iram, ICODE_ATTR is defined to be null for some
121 targets that are low on iram, like the gigabeat F/X */
122 void rolo_restart(const unsigned char* source
, unsigned char* dest
,
123 long length
) __attribute__ ((section(".icode")));
124 void rolo_restart(const unsigned char* source
, unsigned char* dest
,
128 unsigned char* localdest
= dest
;
130 /* This is the equivalent of a call to memcpy() but this must be done from
131 iram to avoid overwriting itself and we don't want to depend on memcpy()
132 always being in iram */
133 for(i
= 0;i
< length
;i
++)
134 *localdest
++ = *source
++;
136 #if defined(CPU_COLDFIRE)
138 "movec.l %0,%%vbr \n"
139 "move.l (%0)+,%%sp \n"
144 #elif defined(CPU_PP502x)
151 CACHE_CTL
= CACHE_CTL_DISABLE
;
153 /* Reset the memory mapping registers to zero */
155 volatile unsigned long *mmap_reg
;
156 for (mmap_reg
= &MMAP_FIRST
; mmap_reg
<= &MMAP_LAST
; mmap_reg
++)
161 /* Tell the COP it's safe to continue rebooting */
164 /* Wait for the COP to tell us it is rebooting */
165 while(cpu_reply
!= 2);
169 "mov r0, #0x10000000 \n"
173 #elif defined(CPU_TCC780X) || (CONFIG_CPU == S3C2440)
174 /* Flush and invalidate caches */
185 /* This is assigned in the linker control file */
186 extern unsigned long loadaddress
;
188 /***************************************************************************
190 * Name: rolo_load_app(char *filename,int scrambled)
191 * Filename must be a fully defined filename including the path and extension
193 ***************************************************************************/
194 int rolo_load(const char* filename
)
198 #if defined(CPU_COLDFIRE) || defined(CPU_ARM)
199 #if !defined(MI4_FORMAT)
202 unsigned long checksum
,file_checksum
;
205 unsigned short checksum
,file_checksum
;
207 unsigned char* ramstart
= (void*)&loadaddress
;
210 lcd_puts(0, 0, "ROLO...");
211 lcd_puts(0, 1, "Loading");
213 #ifdef HAVE_REMOTE_LCD
214 lcd_remote_clear_display();
215 lcd_remote_puts(0, 0, "ROLO...");
216 lcd_remote_puts(0, 1, "Loading");
222 fd
= open(filename
, O_RDONLY
);
224 rolo_error("File not found");
228 length
= filesize(fd
) - FIRMWARE_OFFSET_FILE_DATA
;
230 #if defined(CPU_COLDFIRE) || defined(CPU_PP) || (CONFIG_CPU==DM320) \
231 || defined(CPU_TCC780X) || (CONFIG_CPU==IMX31L) || (CONFIG_CPU == S3C2440)
232 /* Read and save checksum */
233 lseek(fd
, FIRMWARE_OFFSET_FILE_CRC
, SEEK_SET
);
234 if (read(fd
, &file_checksum
, 4) != 4) {
235 rolo_error("Error Reading checksum");
239 #if !defined(MI4_FORMAT)
240 /* Rockbox checksums are big-endian */
241 file_checksum
= betoh32(file_checksum
);
244 #if defined(CPU_PP) && NUM_CORES > 1
245 lcd_puts(0, 2, "Waiting for coprocessor...");
248 /* Wait for COP to be in safe code */
249 while(cpu_reply
!= 1);
254 lseek(fd
, FIRMWARE_OFFSET_FILE_DATA
, SEEK_SET
);
256 if (read(fd
, audiobuf
, length
) != length
) {
257 rolo_error("Error Reading File");
262 /* Check CRC32 to see if we have a valid file */
263 chksum_crc32gentab();
264 checksum
= chksum_crc32 (audiobuf
, length
);
266 checksum
= MODEL_NUMBER
;
268 for(i
= 0;i
< length
;i
++) {
269 checksum
+= audiobuf
[i
];
273 /* Verify checksum against file header */
274 if (checksum
!= file_checksum
) {
275 rolo_error("Checksum Error");
279 lcd_puts(0, 1, "Executing");
281 #ifdef HAVE_REMOTE_LCD
282 lcd_remote_puts(0, 1, "Executing");
288 /* Should do these together since some ARM version should never have
289 * FIQ disabled and not IRQ (imx31 errata). */
290 disable_interrupt(IRQ_FIQ_STATUS
);
292 /* Some targets have a higher disable level than HIGEST_IRQ_LEVEL */
293 set_irq_level(DISABLE_INTERRUPTS
);
296 #elif CONFIG_CPU == SH7034
297 /* Read file length from header and compare to real file length */
298 lseek(fd
, FIRMWARE_OFFSET_FILE_LENGTH
, SEEK_SET
);
299 if(read(fd
, &file_length
, 4) != 4) {
300 rolo_error("Error Reading File Length");
303 if (length
!= file_length
) {
304 rolo_error("File length mismatch");
308 /* Read and save checksum */
309 lseek(fd
, FIRMWARE_OFFSET_FILE_CRC
, SEEK_SET
);
310 if (read(fd
, &file_checksum
, 2) != 2) {
311 rolo_error("Error Reading checksum");
314 lseek(fd
, FIRMWARE_OFFSET_FILE_DATA
, SEEK_SET
);
316 /* verify that file can be read and descrambled */
317 if ((audiobuf
+ (2*length
)+4) >= audiobufend
) {
318 rolo_error("Not enough room to load file");
322 if (read(fd
, &audiobuf
[length
], length
) != (int)length
) {
323 rolo_error("Error Reading File");
327 lcd_puts(0, 1, "Descramble");
330 checksum
= descramble(audiobuf
+ length
, audiobuf
, length
);
332 /* Verify checksum against file header */
333 if (checksum
!= file_checksum
) {
334 rolo_error("Checksum Error");
338 lcd_puts(0, 1, "Executing ");
341 set_irq_level(HIGHEST_IRQ_LEVEL
);
343 /* Calling these 2 initialization routines was necessary to get the
344 the origional Archos version of the firmware to load and execute. */
345 system_init(); /* Initialize system for restart */
346 i2c_init(); /* Init i2c bus - it seems like a good idea */
347 ICR
= IRQ0_EDGE_TRIGGER
; /* Make IRQ0 edge triggered */
348 TSTR
= 0xE0; /* disable all timers */
349 /* model-specific de-init, needed when flashed */
350 /* Especially the Archos software is picky about this */
351 #if defined(ARCHOS_RECORDER) || defined(ARCHOS_RECORDERV2) || \
352 defined(ARCHOS_FMRECORDER)
356 rolo_restart(audiobuf
, ramstart
, length
);
358 return 0; /* this is never reached */
359 (void)checksum
; (void)file_checksum
;
361 #else /* !defined(IRIVER_IFP7XX_SERIES) */
362 int rolo_load(const char* filename
)
369 #endif /* !defined(IRIVER_IFP7XX_SERIES) */