1 /***************************************************************************
3 * Open \______ \ ____ ____ | | _\_ |__ _______ ___
4 * Source | _// _ \_/ ___\| |/ /| __ \ / _ \ \/ /
5 * Jukebox | | ( <_> ) \___| < | \_\ ( <_> > < <
6 * Firmware |____|_ /\____/ \___ >__|_ \|___ /\____/__/\_ \
10 * Copyright (C) 2005 by Linus Nielsen Feltzing
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 ****************************************************************************/
28 #include "lcd-remote.h"
29 #include "scroll_engine.h"
37 #include "backlight.h"
38 #include "backlight-target.h"
44 #include "eeprom_settings.h"
45 #include "rbunicode.h"
50 /* Maximum allowed firmware image size. 10MB is more than enough */
51 #define MAX_LOADSIZE (10*1024*1024)
53 #define DRAM_START 0x31000000
55 #ifdef HAVE_EEPROM_SETTINGS
56 static bool recovery_mode
= false;
59 char version
[] = APPSVERSION
;
61 /* Reset the cookie for the crt0 crash check */
62 inline void __reset_cookie(void)
64 asm(" move.l #0,%d0");
65 asm(" move.l %d0,0x10017ffc");
68 void start_iriver_fw(void)
70 asm(" move.w #0x2700,%sr");
72 asm(" movec.l %d0,%vbr");
78 void start_firmware(void)
80 asm(" move.w #0x2700,%sr");
82 asm(" move.l %0,%%d0" :: "i"(DRAM_START
));
83 asm(" movec.l %d0,%vbr");
84 asm(" move.l %0,%%sp" :: "m"(*(int *)DRAM_START
));
85 asm(" move.l %0,%%a0" :: "m"(*(int *)(DRAM_START
+4)));
89 #ifdef IRIVER_H100_SERIES
90 void start_flashed_romimage(void)
92 uint8_t *src
= (uint8_t *)FLASH_ROMIMAGE_ENTRY
;
95 if (!detect_flashed_romimage())
98 reset_vector
= (int *)(&src
[sizeof(struct flash_header
)+4]);
100 asm(" move.w #0x2700,%sr");
103 asm(" move.l %0,%%d0" :: "i"(DRAM_START
));
104 asm(" movec.l %d0,%vbr");
105 asm(" move.l %0,%%sp" :: "m"(reset_vector
[0]));
106 asm(" move.l %0,%%a0" :: "m"(reset_vector
[1]));
113 void start_flashed_ramimage(void)
115 struct flash_header hdr
;
116 unsigned char *buf
= (unsigned char *)DRAM_START
;
117 uint8_t *src
= (uint8_t *)FLASH_RAMIMAGE_ENTRY
;
119 if (!detect_flashed_ramimage())
122 /* Load firmware from flash */
124 memcpy(&hdr
, src
, sizeof(struct flash_header
));
125 src
+= sizeof(struct flash_header
);
126 memcpy(buf
, src
, hdr
.length
);
134 #endif /* IRIVER_H100_SERIES */
138 printf("Shutting down...");
139 #ifdef HAVE_EEPROM_SETTINGS
140 /* Reset the rockbox crash check. */
141 firmware_settings
.bl_version
= 0;
142 eeprom_settings_store();
145 /* We need to gracefully spin down the disk to prevent clicks. */
148 /* Make sure ATA has been initialized. */
151 /* And put the disk into sleep immediately. */
159 #ifdef HAVE_REMOTE_LCD
160 __remote_backlight_off();
167 /* Print the battery voltage (and a warning message). */
168 void check_battery(void)
170 int adc_battery
, battery_voltage
, batt_int
, batt_frac
;
172 adc_battery
= adc_read(ADC_BATTERY
);
174 battery_voltage
= (adc_battery
* BATTERY_SCALE_FACTOR
) / 10000;
175 batt_int
= battery_voltage
/ 100;
176 batt_frac
= battery_voltage
% 100;
178 printf("Batt: %d.%02dV", batt_int
, batt_frac
);
180 if (battery_voltage
<= 310)
182 printf("WARNING! BATTERY LOW!!");
187 #ifdef HAVE_EEPROM_SETTINGS
188 void initialize_eeprom(void)
190 if (detect_original_firmware())
193 if (!eeprom_settings_init())
195 recovery_mode
= true;
199 /* If bootloader version has not been reset, disk might
201 if (firmware_settings
.bl_version
|| !firmware_settings
.disk_clean
)
203 firmware_settings
.disk_clean
= false;
204 recovery_mode
= true;
207 firmware_settings
.bl_version
= EEPROM_SETTINGS_BL_MINVER
;
208 eeprom_settings_store();
211 void try_flashboot(void)
213 if (!firmware_settings
.initialized
)
216 switch (firmware_settings
.bootmethod
)
222 start_flashed_romimage();
223 recovery_mode
= true;
227 start_flashed_ramimage();
228 recovery_mode
= true;
232 recovery_mode
= true;
237 static const char *options
[] = {
244 #define FAILSAFE_OPTIONS 4
245 void failsafe_menu(void)
256 printf("Bootloader %s", version
);
258 printf("=========================");
259 line
+= FAILSAFE_OPTIONS
;
261 printf(" [NAVI] to confirm.");
262 printf(" [REC] to set as default.");
265 if (firmware_settings
.initialized
)
267 defopt
= firmware_settings
.bootmethod
;
268 if (defopt
< 0 || defopt
>= FAILSAFE_OPTIONS
)
276 for (i
= 0; i
< FAILSAFE_OPTIONS
; i
++)
286 printf("%s %s %s", arrow
, options
[i
], def
);
289 snprintf(buf
, sizeof(buf
), "Time left: %ds", timeout
);
290 lcd_puts(0, 10, buf
);
292 button
= button_get_w_tmo(HZ
);
294 if (button
== BUTTON_NONE
)
301 /* Ignore the ON/PLAY -button because it can cause trouble
302 with the RTC alarm mod. */
303 switch (button
& ~(BUTTON_ON
))
313 if (option
< FAILSAFE_OPTIONS
-1)
324 if (firmware_settings
.initialized
)
326 firmware_settings
.bootmethod
= option
;
327 eeprom_settings_store();
334 lcd_puts(0, 10, "Executing command...");
345 start_flashed_ramimage();
346 printf("Image not found");
350 start_flashed_romimage();
351 printf("Image not found");
363 bool rc_on_button
= false;
364 bool on_button
= false;
365 bool rec_button
= false;
366 bool hold_status
= false;
368 extern int line
; /* From common.c */
369 extern int remote_line
; /* From common.c */
371 /* We want to read the buttons as early as possible, before the user
372 releases the ON button */
374 /* Set GPIO33, GPIO37, GPIO38 and GPIO52 as general purpose inputs
375 (The ON and Hold buttons on the main unit and the remote) */
376 or_l(0x00100062, &GPIO1_FUNCTION
);
377 and_l(~0x00100062, &GPIO1_ENABLE
);
380 if ((data
& 0x20) == 0)
383 if ((data
& 0x40) == 0)
386 /* Set the default state of the hard drive power to OFF */
387 ide_power_enable(false);
391 /* Turn off if neither ON button is pressed */
392 if(!(on_button
|| rc_on_button
|| usb_detect()))
398 /* Start with the main backlight OFF. */
402 /* Remote backlight ON */
403 #ifdef HAVE_REMOTE_LCD
404 __remote_backlight_on();
410 #ifdef HAVE_ADJUSTABLE_CPU_FREQ
411 /* Set up waitstates for the peripherals */
412 set_cpu_frequency(0); /* PLL off */
414 coldfire_set_pllcr_audio_bits(DEFAULT_PLLCR_AUDIO_BITS
);
419 #ifdef HAVE_EEPROM_SETTINGS
426 if ((on_button
&& button_hold()) ||
427 (rc_on_button
&& remote_button_hold()))
432 /* Power on the hard drive early, to speed up the loading. */
434 # ifdef HAVE_EEPROM_SETTINGS
439 ide_power_enable(true);
442 # ifdef EEPROM_SETTINGS
443 if (!hold_status
&& !usb_detect() && !recovery_mode
)
453 #ifdef HAVE_REMOTE_LCD
458 lcd_setfont(FONT_SYSFIXED
);
460 printf("Rockbox boot loader");
461 printf("Version %s", version
);
463 sleep(HZ
/50); /* Allow the button driver to check the buttons */
464 rec_button
= ((button_status() & BUTTON_REC
) == BUTTON_REC
)
465 || ((button_status() & BUTTON_RC_REC
) == BUTTON_RC_REC
);
469 /* Don't start if the Hold button is active on the device you
471 if (!usb_detect() && (hold_status
472 #ifdef HAVE_EEPROM_SETTINGS
477 if (detect_original_firmware())
479 printf("Hold switch on");
483 #ifdef HAVE_EEPROM_SETTINGS
488 /* Holding REC while starting runs the original firmware */
489 if (detect_original_firmware() && rec_button
)
491 printf("Starting original firmware...");
497 /* A hack to enter USB mode without using the USB thread */
500 const char msg
[] = "Bootloader USB mode";
502 font_getstringsize(msg
, &w
, &h
, FONT_SYSFIXED
);
504 lcd_putsxy((LCD_WIDTH
-w
)/2, (LCD_HEIGHT
-h
)/2, msg
);
507 #ifdef HAVE_REMOTE_LCD
508 lcd_remote_puts(0, 3, msg
);
512 #ifdef HAVE_EEPROM_SETTINGS
513 if (firmware_settings
.initialized
)
515 firmware_settings
.disk_clean
= false;
516 eeprom_settings_store();
519 ide_power_enable(true);
526 /* Print the battery status. */
531 ata_spin(); /* Prevent the drive from spinning down */
538 cpu_idle_mode(false);
549 printf("ATA error: %d", rc
);
550 printf("Insert USB cable and press");
552 while(!(button_get(true) & BUTTON_REL
));
558 rc
= disk_mount_all();
562 printf("No partition found");
563 while(button_get(true) != SYS_USB_CONNECTED
) {};
566 printf("Loading firmware");
567 i
= load_firmware((unsigned char *)DRAM_START
, BOOTFILE
, MAX_LOADSIZE
);
569 printf("Error: %s", strerror(i
));
574 if (!detect_original_firmware())
576 printf("No firmware found on disk");
586 /* These functions are present in the firmware library, but we reimplement
587 them here because the originals do a lot more than we want */
588 void screen_dump(void)
597 unsigned short *bidi_l2v(const unsigned char *str
, int orientation
)
599 static unsigned short utf16_buf
[SCROLL_LINE_SIZE
];
600 unsigned short *target
;
606 str
= utf8decode(str
, target
++);