1 /***************************************************************************
3 * Open \______ \ ____ ____ | | _\_ |__ _______ ___
4 * Source | _// _ \_/ ___\| |/ /| __ \ / _ \ \/ /
5 * Jukebox | | ( <_> ) \___| < | \_\ ( <_> > < <
6 * Firmware |____|_ /\____/ \___ >__|_ \|___ /\____/__/\_ \
10 * Copyright (C) 2002 Randy D. Wood
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.
17 * This software is distributed on an "AS IS" basis, WITHOUT WARRANTY OF ANY
18 * KIND, either express or implied.
20 ****************************************************************************/
24 #include "lcd-remote.h"
39 #include "crc32-mi4.h"
40 #undef FIRMWARE_OFFSET_FILE_CRC
41 #undef FIRMWARE_OFFSET_FILE_DATA
42 #define FIRMWARE_OFFSET_FILE_CRC 0xC
43 #define FIRMWARE_OFFSET_FILE_DATA 0x200
46 #if !defined(IRIVER_IFP7XX_SERIES)
47 /* FIX: this doesn't work on iFP */
49 #define IRQ0_EDGE_TRIGGER 0x80
52 /* Handle the COP properly - it needs to jump to a function outside SDRAM while
53 * the new firmware is being loaded, and then jump to the start of SDRAM
54 * TODO: Use the mailboxes built into the PP processor for this
58 volatile unsigned char IDATA_ATTR cpu_message
= 0;
59 volatile unsigned char IDATA_ATTR cpu_reply
= 0;
60 extern int cop_idlestackbegin
[];
62 void rolo_restart_cop(void) ICODE_ATTR
;
63 void rolo_restart_cop(void)
65 if (CURRENT_CORE
== CPU
)
67 /* There should be free thread slots aplenty */
68 create_thread(rolo_restart_cop
, cop_idlestackbegin
, IDLE_STACK_SIZE
,
69 0, "rolo COP" IF_PRIO(, PRIORITY_REALTIME
)
76 /* Invalidate cache */
77 cpucache_invalidate();
80 CACHE_CTL
= CACHE_CTL_DISABLE
;
82 /* Tell the main core that we're ready to reload */
85 /* Wait while RoLo loads the image into SDRAM */
86 /* TODO: Accept checksum failure gracefully */
87 while(cpu_message
!= 1);
89 /* Acknowledge the CPU and then reload */
97 #endif /* NUM_CORES > 1 */
100 static void rolo_error(const char *text
)
103 lcd_puts(0, 0, "ROLO error:");
104 lcd_puts_scroll(0, 1, text
);
112 #if CONFIG_CPU == SH7034 || CONFIG_CPU == IMX31L
113 /* these are in assembler file "descramble.S" for SH7034 */
114 extern unsigned short descramble(const unsigned char* source
,
115 unsigned char* dest
, int length
);
116 /* this is in firmware/target/arm/imx31/rolo_restart.c for IMX31 */
117 extern void rolo_restart(const unsigned char* source
, unsigned char* dest
,
121 /* explicitly put this code in iram, ICODE_ATTR is defined to be null for some
122 targets that are low on iram, like the gigabeat F/X */
123 void rolo_restart(const unsigned char* source
, unsigned char* dest
,
124 long length
) __attribute__ ((section(".icode")));
125 void rolo_restart(const unsigned char* source
, unsigned char* dest
,
129 unsigned char* localdest
= dest
;
131 /* This is the equivalent of a call to memcpy() but this must be done from
132 iram to avoid overwriting itself and we don't want to depend on memcpy()
133 always being in iram */
134 for(i
= 0;i
< length
;i
++)
135 *localdest
++ = *source
++;
137 #if defined(CPU_COLDFIRE)
139 "movec.l %0,%%vbr \n"
140 "move.l (%0)+,%%sp \n"
145 #elif defined(CPU_PP)
152 CACHE_CTL
= CACHE_CTL_DISABLE
;
154 /* Reset the memory mapping registers to zero */
156 volatile unsigned long *mmap_reg
;
157 for (mmap_reg
= &MMAP_FIRST
; mmap_reg
<= &MMAP_LAST
; mmap_reg
++)
162 /* Tell the COP it's safe to continue rebooting */
165 /* Wait for the COP to tell us it is rebooting */
166 while(cpu_reply
!= 2);
174 #elif defined(CPU_ARM)
175 #ifdef HAVE_CPUCACHE_INVALIDATE
176 /* Flush and invalidate caches */
177 cpucache_invalidate();
183 #elif defined(CPU_MIPS)
184 __dcache_writeback_all();
193 /* This is assigned in the linker control file */
194 extern unsigned long loadaddress
;
196 /***************************************************************************
198 * Name: rolo_load_app(char *filename,int scrambled)
199 * Filename must be a fully defined filename including the path and extension
201 ***************************************************************************/
202 int rolo_load(const char* filename
)
206 #if defined(CPU_COLDFIRE) || defined(CPU_ARM) || defined(CPU_MIPS)
207 #if !defined(MI4_FORMAT)
210 unsigned long checksum
,file_checksum
;
213 unsigned short checksum
,file_checksum
;
215 unsigned char* ramstart
= (void*)&loadaddress
;
218 lcd_puts(0, 0, "ROLO...");
219 lcd_puts(0, 1, "Loading");
221 #ifdef HAVE_REMOTE_LCD
222 lcd_remote_clear_display();
223 lcd_remote_puts(0, 0, "ROLO...");
224 lcd_remote_puts(0, 1, "Loading");
230 fd
= open(filename
, O_RDONLY
);
232 rolo_error("File not found");
236 length
= filesize(fd
) - FIRMWARE_OFFSET_FILE_DATA
;
238 #if CONFIG_CPU != SH7034
239 /* Read and save checksum */
240 lseek(fd
, FIRMWARE_OFFSET_FILE_CRC
, SEEK_SET
);
241 if (read(fd
, &file_checksum
, 4) != 4) {
242 rolo_error("Error Reading checksum");
246 #if !defined(MI4_FORMAT)
247 /* Rockbox checksums are big-endian */
248 file_checksum
= betoh32(file_checksum
);
251 #if defined(CPU_PP) && NUM_CORES > 1
252 lcd_puts(0, 2, "Waiting for coprocessor...");
255 /* Wait for COP to be in safe code */
256 while(cpu_reply
!= 1);
261 lseek(fd
, FIRMWARE_OFFSET_FILE_DATA
, SEEK_SET
);
263 if (read(fd
, audiobuf
, length
) != length
) {
264 rolo_error("Error Reading File");
269 /* Check CRC32 to see if we have a valid file */
270 chksum_crc32gentab();
271 checksum
= chksum_crc32 (audiobuf
, length
);
273 checksum
= MODEL_NUMBER
;
275 for(i
= 0;i
< length
;i
++) {
276 checksum
+= audiobuf
[i
];
280 /* Verify checksum against file header */
281 if (checksum
!= file_checksum
) {
282 rolo_error("Checksum Error");
286 #ifdef HAVE_STORAGE_FLUSH
287 lcd_puts(0, 1, "Flushing storage buffers");
292 lcd_puts(0, 1, "Executing");
294 #ifdef HAVE_REMOTE_LCD
295 lcd_remote_puts(0, 1, "Executing");
300 #if CONFIG_CPU != IMX31L /* We're not finished yet */
302 /* Should do these together since some ARM version should never have
303 * FIQ disabled and not IRQ (imx31 errata). */
304 disable_interrupt(IRQ_FIQ_STATUS
);
306 /* Some targets have a higher disable level than HIGEST_IRQ_LEVEL */
307 set_irq_level(DISABLE_INTERRUPTS
);
309 #endif /* CONFIG_CPU == IMX31L */
311 #else /* CONFIG_CPU == SH7034 */
312 /* Read file length from header and compare to real file length */
313 lseek(fd
, FIRMWARE_OFFSET_FILE_LENGTH
, SEEK_SET
);
314 if(read(fd
, &file_length
, 4) != 4) {
315 rolo_error("Error Reading File Length");
318 if (length
!= file_length
) {
319 rolo_error("File length mismatch");
323 /* Read and save checksum */
324 lseek(fd
, FIRMWARE_OFFSET_FILE_CRC
, SEEK_SET
);
325 if (read(fd
, &file_checksum
, 2) != 2) {
326 rolo_error("Error Reading checksum");
329 lseek(fd
, FIRMWARE_OFFSET_FILE_DATA
, SEEK_SET
);
331 /* verify that file can be read and descrambled */
332 if ((audiobuf
+ (2*length
)+4) >= audiobufend
) {
333 rolo_error("Not enough room to load file");
337 if (read(fd
, &audiobuf
[length
], length
) != (int)length
) {
338 rolo_error("Error Reading File");
342 lcd_puts(0, 1, "Descramble");
345 checksum
= descramble(audiobuf
+ length
, audiobuf
, length
);
347 /* Verify checksum against file header */
348 if (checksum
!= file_checksum
) {
349 rolo_error("Checksum Error");
353 #ifdef HAVE_STORAGE_FLUSH
354 lcd_puts(0, 1, "Flushing ");
359 lcd_puts(0, 1, "Executing ");
362 set_irq_level(HIGHEST_IRQ_LEVEL
);
364 /* Calling these 2 initialization routines was necessary to get the
365 the origional Archos version of the firmware to load and execute. */
366 system_init(); /* Initialize system for restart */
367 i2c_init(); /* Init i2c bus - it seems like a good idea */
368 ICR
= IRQ0_EDGE_TRIGGER
; /* Make IRQ0 edge triggered */
369 TSTR
= 0xE0; /* disable all timers */
370 /* model-specific de-init, needed when flashed */
371 /* Especially the Archos software is picky about this */
372 #if defined(ARCHOS_RECORDER) || defined(ARCHOS_RECORDERV2) || \
373 defined(ARCHOS_FMRECORDER)
377 rolo_restart(audiobuf
, ramstart
, length
);
379 return 0; /* this is never reached */
380 (void)checksum
; (void)file_checksum
;
382 #else /* !defined(IRIVER_IFP7XX_SERIES) */
383 int rolo_load(const char* filename
)
390 #endif /* !defined(IRIVER_IFP7XX_SERIES) */