Do some #ifdef'ing to make the Player happy.
[kugel-rb.git] / firmware / rolo.c
blob316d23f8e1a33208d72428b308e9fc0e496614ba
1 /***************************************************************************
2 * __________ __ ___.
3 * Open \______ \ ____ ____ | | _\_ |__ _______ ___
4 * Source | _// _ \_/ ___\| |/ /| __ \ / _ \ \/ /
5 * Jukebox | | ( <_> ) \___| < | \_\ ( <_> > < <
6 * Firmware |____|_ /\____/ \___ >__|_ \|___ /\____/__/\_ \
7 * \/ \/ \/ \/ \/
8 * $Id$
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 ****************************************************************************/
22 #include "config.h"
23 #include "lcd.h"
24 #include "lcd-remote.h"
25 #include "thread.h"
26 #include "kernel.h"
27 #include "sprintf.h"
28 #include "button.h"
29 #include "file.h"
30 #include "audio.h"
31 #include "system.h"
32 #include "i2c.h"
33 #include "adc.h"
34 #include "string.h"
35 #include "buffer.h"
36 #include "rolo.h"
38 #ifdef MI4_FORMAT
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
44 #endif
46 #if !defined(IRIVER_IFP7XX_SERIES) && \
47 (CONFIG_CPU != PP5002)
48 /* FIX: this doesn't work on iFP, 3rd Gen ipods */
50 #define IRQ0_EDGE_TRIGGER 0x80
52 #ifdef CPU_PP
53 /* Handle the COP properly - it needs to jump to a function outside SDRAM while
54 * the new firmware is being loaded, and then jump to the start of SDRAM
55 * TODO: Use the mailboxes built into the PP processor for this
58 #if NUM_CORES > 1
59 volatile unsigned char IDATA_ATTR cpu_message = 0;
60 volatile unsigned char IDATA_ATTR cpu_reply = 0;
61 extern int cop_idlestackbegin[];
63 void rolo_restart_cop(void) ICODE_ATTR;
64 void rolo_restart_cop(void)
66 if (CURRENT_CORE == CPU)
68 /* There should be free thread slots aplenty */
69 create_thread(rolo_restart_cop, cop_idlestackbegin, IDLE_STACK_SIZE,
70 0, "rolo COP" IF_PRIO(, PRIORITY_REALTIME)
71 IF_COP(, COP));
72 return;
75 COP_INT_DIS = -1;
77 /* Invalidate cache */
78 cpucache_invalidate();
80 /* Disable cache */
81 CACHE_CTL = CACHE_CTL_DISABLE;
83 /* Tell the main core that we're ready to reload */
84 cpu_reply = 1;
86 /* Wait while RoLo loads the image into SDRAM */
87 /* TODO: Accept checksum failure gracefully */
88 while(cpu_message != 1);
90 /* Acknowledge the CPU and then reload */
91 cpu_reply = 2;
93 asm volatile(
94 "mov r0, #0x10000000 \n"
95 "mov pc, r0 \n"
98 #endif /* NUM_CORES > 1 */
99 #endif /* CPU_PP */
101 static void rolo_error(const char *text)
103 lcd_clear_display();
104 lcd_puts(0, 0, "ROLO error:");
105 lcd_puts_scroll(0, 1, text);
106 lcd_update();
107 button_get(true);
108 button_get(true);
109 button_get(true);
110 lcd_stop_scroll();
113 #if CONFIG_CPU == SH7034 || CONFIG_CPU == IMX31L
114 /* these are in assembler file "descramble.S" for SH7034 */
115 extern unsigned short descramble(const unsigned char* source,
116 unsigned char* dest, int length);
117 /* this is in firmware/target/arm/imx31/rolo_restart.S for IMX31 */
118 extern void rolo_restart(const unsigned char* source, unsigned char* dest,
119 int length);
120 #else
122 /* explicitly put this code in iram, ICODE_ATTR is defined to be null for some
123 targets that are low on iram, like the gigabeat F/X */
124 void rolo_restart(const unsigned char* source, unsigned char* dest,
125 long length) __attribute__ ((section(".icode")));
126 void rolo_restart(const unsigned char* source, unsigned char* dest,
127 long length)
129 long i;
130 unsigned char* localdest = dest;
132 /* This is the equivalent of a call to memcpy() but this must be done from
133 iram to avoid overwriting itself and we don't want to depend on memcpy()
134 always being in iram */
135 for(i = 0;i < length;i++)
136 *localdest++ = *source++;
138 #if defined(CPU_COLDFIRE)
139 asm (
140 "movec.l %0,%%vbr \n"
141 "move.l (%0)+,%%sp \n"
142 "move.l (%0),%0 \n"
143 "jmp (%0) \n"
144 : : "a"(dest)
146 #elif defined(CPU_PP502x)
147 CPU_INT_DIS = -1;
149 /* Flush cache */
150 cpucache_flush();
152 /* Disable cache */
153 CACHE_CTL = CACHE_CTL_DISABLE;
155 /* Reset the memory mapping registers to zero */
157 volatile unsigned long *mmap_reg;
158 for (mmap_reg = &MMAP_FIRST; mmap_reg <= &MMAP_LAST; mmap_reg++)
159 *mmap_reg = 0;
162 #if NUM_CORES > 1
163 /* Tell the COP it's safe to continue rebooting */
164 cpu_message = 1;
166 /* Wait for the COP to tell us it is rebooting */
167 while(cpu_reply != 2);
168 #endif
170 asm volatile(
171 "mov r0, #0x10000000 \n"
172 "mov pc, r0 \n"
175 #elif defined(CPU_TCC780X) || (CONFIG_CPU == S3C2440) || (CONFIG_CPU==DM320)
176 /* Flush and invalidate caches */
177 cpucache_invalidate();
179 asm volatile(
180 "mov pc, %0 \n"
181 : : "r"(dest)
183 #elif defined(CPU_MIPS)
184 __dcache_writeback_all();
185 asm volatile(
186 "jr %0 \n"
187 : : "r"(dest)
189 #endif
191 #endif
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)
204 int fd;
205 long length;
206 #if defined(CPU_COLDFIRE) || defined(CPU_ARM) || defined(CPU_MIPS)
207 #if !defined(MI4_FORMAT)
208 int i;
209 #endif
210 unsigned long checksum,file_checksum;
211 #else
212 long file_length;
213 unsigned short checksum,file_checksum;
214 #endif
215 unsigned char* ramstart = (void*)&loadaddress;
217 lcd_clear_display();
218 lcd_puts(0, 0, "ROLO...");
219 lcd_puts(0, 1, "Loading");
220 lcd_update();
221 #ifdef HAVE_REMOTE_LCD
222 lcd_remote_clear_display();
223 lcd_remote_puts(0, 0, "ROLO...");
224 lcd_remote_puts(0, 1, "Loading");
225 lcd_remote_update();
226 #endif
228 audio_stop();
230 fd = open(filename, O_RDONLY);
231 if(-1 == fd) {
232 rolo_error("File not found");
233 return -1;
236 length = filesize(fd) - FIRMWARE_OFFSET_FILE_DATA;
238 #if defined(CPU_COLDFIRE) || defined(CPU_PP) || (CONFIG_CPU==DM320) \
239 || defined(CPU_TCC780X) || (CONFIG_CPU==IMX31L) || (CONFIG_CPU == S3C2440) \
240 || (CONFIG_CPU==AS3525) || (CONFIG_CPU==JZ4732)
241 /* Read and save checksum */
242 lseek(fd, FIRMWARE_OFFSET_FILE_CRC, SEEK_SET);
243 if (read(fd, &file_checksum, 4) != 4) {
244 rolo_error("Error Reading checksum");
245 return -1;
248 #if !defined(MI4_FORMAT)
249 /* Rockbox checksums are big-endian */
250 file_checksum = betoh32(file_checksum);
251 #endif
253 #if defined(CPU_PP) && NUM_CORES > 1
254 lcd_puts(0, 2, "Waiting for coprocessor...");
255 lcd_update();
256 rolo_restart_cop();
257 /* Wait for COP to be in safe code */
258 while(cpu_reply != 1);
259 lcd_puts(0, 2, " ");
260 lcd_update();
261 #endif
263 lseek(fd, FIRMWARE_OFFSET_FILE_DATA, SEEK_SET);
265 if (read(fd, audiobuf, length) != length) {
266 rolo_error("Error Reading File");
267 return -1;
270 #ifdef MI4_FORMAT
271 /* Check CRC32 to see if we have a valid file */
272 chksum_crc32gentab();
273 checksum = chksum_crc32 (audiobuf, length);
274 #else
275 checksum = MODEL_NUMBER;
277 for(i = 0;i < length;i++) {
278 checksum += audiobuf[i];
280 #endif
282 /* Verify checksum against file header */
283 if (checksum != file_checksum) {
284 rolo_error("Checksum Error");
285 return -1;
288 lcd_puts(0, 1, "Executing");
289 lcd_update();
290 #ifdef HAVE_REMOTE_LCD
291 lcd_remote_puts(0, 1, "Executing");
292 lcd_remote_update();
293 #endif
294 adc_close();
296 #ifdef CPU_ARM
297 /* Should do these together since some ARM version should never have
298 * FIQ disabled and not IRQ (imx31 errata). */
299 disable_interrupt(IRQ_FIQ_STATUS);
300 #else
301 /* Some targets have a higher disable level than HIGEST_IRQ_LEVEL */
302 set_irq_level(DISABLE_INTERRUPTS);
303 #endif
305 #elif CONFIG_CPU == SH7034
306 /* Read file length from header and compare to real file length */
307 lseek(fd, FIRMWARE_OFFSET_FILE_LENGTH, SEEK_SET);
308 if(read(fd, &file_length, 4) != 4) {
309 rolo_error("Error Reading File Length");
310 return -1;
312 if (length != file_length) {
313 rolo_error("File length mismatch");
314 return -1;
317 /* Read and save checksum */
318 lseek(fd, FIRMWARE_OFFSET_FILE_CRC, SEEK_SET);
319 if (read(fd, &file_checksum, 2) != 2) {
320 rolo_error("Error Reading checksum");
321 return -1;
323 lseek(fd, FIRMWARE_OFFSET_FILE_DATA, SEEK_SET);
325 /* verify that file can be read and descrambled */
326 if ((audiobuf + (2*length)+4) >= audiobufend) {
327 rolo_error("Not enough room to load file");
328 return -1;
331 if (read(fd, &audiobuf[length], length) != (int)length) {
332 rolo_error("Error Reading File");
333 return -1;
336 lcd_puts(0, 1, "Descramble");
337 lcd_update();
339 checksum = descramble(audiobuf + length, audiobuf, length);
341 /* Verify checksum against file header */
342 if (checksum != file_checksum) {
343 rolo_error("Checksum Error");
344 return -1;
347 lcd_puts(0, 1, "Executing ");
348 lcd_update();
350 set_irq_level(HIGHEST_IRQ_LEVEL);
352 /* Calling these 2 initialization routines was necessary to get the
353 the origional Archos version of the firmware to load and execute. */
354 system_init(); /* Initialize system for restart */
355 i2c_init(); /* Init i2c bus - it seems like a good idea */
356 ICR = IRQ0_EDGE_TRIGGER; /* Make IRQ0 edge triggered */
357 TSTR = 0xE0; /* disable all timers */
358 /* model-specific de-init, needed when flashed */
359 /* Especially the Archos software is picky about this */
360 #if defined(ARCHOS_RECORDER) || defined(ARCHOS_RECORDERV2) || \
361 defined(ARCHOS_FMRECORDER)
362 PAIOR = 0x0FA0;
363 #endif
364 #endif
365 rolo_restart(audiobuf, ramstart, length);
367 return 0; /* this is never reached */
368 (void)checksum; (void)file_checksum;
370 #else /* !defined(IRIVER_IFP7XX_SERIES) */
371 int rolo_load(const char* filename)
373 /* dummy */
374 (void)filename;
375 return 0;
378 #endif /* !defined(IRIVER_IFP7XX_SERIES) */