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"
42 #include "powermgmt.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 battery_voltage
, batt_int
, batt_frac
;
172 battery_voltage
= battery_adc_voltage();
173 batt_int
= battery_voltage
/ 1000;
174 batt_frac
= (battery_voltage
% 1000) / 10;
176 printf("Batt: %d.%02dV", batt_int
, batt_frac
);
178 if (battery_voltage
<= 310)
180 printf("WARNING! BATTERY LOW!!");
185 #ifdef HAVE_EEPROM_SETTINGS
186 void initialize_eeprom(void)
188 if (detect_original_firmware())
191 if (!eeprom_settings_init())
193 recovery_mode
= true;
197 /* If bootloader version has not been reset, disk might
199 if (firmware_settings
.bl_version
|| !firmware_settings
.disk_clean
)
201 firmware_settings
.disk_clean
= false;
202 recovery_mode
= true;
205 firmware_settings
.bl_version
= EEPROM_SETTINGS_BL_MINVER
;
206 eeprom_settings_store();
209 void try_flashboot(void)
211 if (!firmware_settings
.initialized
)
214 switch (firmware_settings
.bootmethod
)
220 start_flashed_romimage();
221 recovery_mode
= true;
225 start_flashed_ramimage();
226 recovery_mode
= true;
230 recovery_mode
= true;
235 static const char *options
[] = {
242 #define FAILSAFE_OPTIONS 4
243 void failsafe_menu(void)
254 printf("Bootloader %s", version
);
256 printf("=========================");
257 line
+= FAILSAFE_OPTIONS
;
259 printf(" [NAVI] to confirm.");
260 printf(" [REC] to set as default.");
263 if (firmware_settings
.initialized
)
265 defopt
= firmware_settings
.bootmethod
;
266 if (defopt
< 0 || defopt
>= FAILSAFE_OPTIONS
)
274 for (i
= 0; i
< FAILSAFE_OPTIONS
; i
++)
284 printf("%s %s %s", arrow
, options
[i
], def
);
287 snprintf(buf
, sizeof(buf
), "Time left: %ds", timeout
);
288 lcd_puts(0, 10, buf
);
290 button
= button_get_w_tmo(HZ
);
292 if (button
== BUTTON_NONE
)
299 /* Ignore the ON/PLAY -button because it can cause trouble
300 with the RTC alarm mod. */
301 switch (button
& ~(BUTTON_ON
))
311 if (option
< FAILSAFE_OPTIONS
-1)
322 if (firmware_settings
.initialized
)
324 firmware_settings
.bootmethod
= option
;
325 eeprom_settings_store();
332 lcd_puts(0, 10, "Executing command...");
343 start_flashed_ramimage();
344 printf("Image not found");
348 start_flashed_romimage();
349 printf("Image not found");
361 bool rc_on_button
= false;
362 bool on_button
= false;
363 bool rec_button
= false;
364 bool hold_status
= false;
366 extern int line
; /* From common.c */
367 extern int remote_line
; /* From common.c */
369 /* We want to read the buttons as early as possible, before the user
370 releases the ON button */
372 /* Set GPIO33, GPIO37, GPIO38 and GPIO52 as general purpose inputs
373 (The ON and Hold buttons on the main unit and the remote) */
374 or_l(0x00100062, &GPIO1_FUNCTION
);
375 and_l(~0x00100062, &GPIO1_ENABLE
);
378 if ((data
& 0x20) == 0)
381 if ((data
& 0x40) == 0)
384 /* Set the default state of the hard drive power to OFF */
385 ide_power_enable(false);
389 /* Turn off if neither ON button is pressed */
390 if(!(on_button
|| rc_on_button
|| (usb_detect() == USB_INSERTED
)))
396 /* Start with the main backlight OFF. */
400 /* Remote backlight ON */
401 #ifdef HAVE_REMOTE_LCD
402 _remote_backlight_on();
408 #ifdef HAVE_ADJUSTABLE_CPU_FREQ
409 /* Set up waitstates for the peripherals */
410 set_cpu_frequency(0); /* PLL off */
412 coldfire_set_pllcr_audio_bits(DEFAULT_PLLCR_AUDIO_BITS
);
417 #ifdef HAVE_EEPROM_SETTINGS
424 if ((on_button
&& button_hold()) ||
425 (rc_on_button
&& remote_button_hold()))
430 /* Power on the hard drive early, to speed up the loading. */
432 # ifdef HAVE_EEPROM_SETTINGS
437 ide_power_enable(true);
440 # ifdef EEPROM_SETTINGS
441 if (!hold_status
&& (usb_detect() != USB_INSERTED
) && !recovery_mode
)
448 /* get rid of a nasty humming sound during boot
450 or_l(1<<29, &GPIO_OUT
);
451 or_l(1<<29, &GPIO_ENABLE
);
452 or_l(1<<29, &GPIO_FUNCTION
);
454 and_l(~(1<<29), &GPIO_OUT
);
458 #ifdef HAVE_REMOTE_LCD
463 lcd_setfont(FONT_SYSFIXED
);
465 printf("Rockbox boot loader");
466 printf("Version %s", version
);
468 sleep(HZ
/50); /* Allow the button driver to check the buttons */
469 rec_button
= ((button_status() & BUTTON_REC
) == BUTTON_REC
)
470 || ((button_status() & BUTTON_RC_REC
) == BUTTON_RC_REC
);
474 /* Don't start if the Hold button is active on the device you
476 if ((usb_detect() != USB_INSERTED
) && (hold_status
477 #ifdef HAVE_EEPROM_SETTINGS
482 if (detect_original_firmware())
484 printf("Hold switch on");
488 #ifdef HAVE_EEPROM_SETTINGS
493 /* Holding REC while starting runs the original firmware */
494 if (detect_original_firmware() && rec_button
)
496 printf("Starting original firmware...");
502 /* A hack to enter USB mode without using the USB thread */
503 if(usb_detect() == USB_INSERTED
)
505 const char msg
[] = "Bootloader USB mode";
507 font_getstringsize(msg
, &w
, &h
, FONT_SYSFIXED
);
509 lcd_putsxy((LCD_WIDTH
-w
)/2, (LCD_HEIGHT
-h
)/2, msg
);
512 #ifdef HAVE_REMOTE_LCD
513 lcd_remote_puts(0, 3, msg
);
517 #ifdef HAVE_EEPROM_SETTINGS
518 if (firmware_settings
.initialized
)
520 firmware_settings
.disk_clean
= false;
521 eeprom_settings_store();
524 ide_power_enable(true);
529 while (usb_detect() == USB_INSERTED
)
531 /* Print the battery status. */
536 ata_spin(); /* Prevent the drive from spinning down */
543 cpu_idle_mode(false);
554 printf("ATA error: %d", rc
);
555 printf("Insert USB cable and press");
557 while(!(button_get(true) & BUTTON_REL
));
563 rc
= disk_mount_all();
567 printf("No partition found");
568 while(button_get(true) != SYS_USB_CONNECTED
) {};
571 printf("Loading firmware");
572 i
= load_firmware((unsigned char *)DRAM_START
, BOOTFILE
, MAX_LOADSIZE
);
574 printf("Error: %s", strerror(i
));
579 if (!detect_original_firmware())
581 printf("No firmware found on disk");
591 /* These functions are present in the firmware library, but we reimplement
592 them here because the originals do a lot more than we want */
593 void screen_dump(void)
602 unsigned short *bidi_l2v(const unsigned char *str
, int orientation
)
604 static unsigned short utf16_buf
[SCROLL_LINE_SIZE
];
605 unsigned short *target
;
611 str
= utf8decode(str
, target
++);