2005-01-28 12:51:10 +00:00
|
|
|
/***************************************************************************
|
|
|
|
* __________ __ ___.
|
|
|
|
* Open \______ \ ____ ____ | | _\_ |__ _______ ___
|
|
|
|
* Source | _// _ \_/ ___\| |/ /| __ \ / _ \ \/ /
|
|
|
|
* Jukebox | | ( <_> ) \___| < | \_\ ( <_> > < <
|
|
|
|
* Firmware |____|_ /\____/ \___ >__|_ \|___ /\____/__/\_ \
|
|
|
|
* \/ \/ \/ \/ \/
|
|
|
|
* $Id$
|
|
|
|
*
|
|
|
|
* Copyright (C) 2005 by Linus Nielsen Feltzing
|
|
|
|
*
|
2008-06-28 18:10:04 +00:00
|
|
|
* This program is free software; you can redistribute it and/or
|
|
|
|
* modify it under the terms of the GNU General Public License
|
|
|
|
* as published by the Free Software Foundation; either version 2
|
|
|
|
* of the License, or (at your option) any later version.
|
2005-01-28 12:51:10 +00:00
|
|
|
*
|
|
|
|
* This software is distributed on an "AS IS" basis, WITHOUT WARRANTY OF ANY
|
|
|
|
* KIND, either express or implied.
|
|
|
|
*
|
|
|
|
****************************************************************************/
|
|
|
|
#include "config.h"
|
|
|
|
|
|
|
|
#include <stdlib.h>
|
|
|
|
#include <stdio.h>
|
2006-08-09 12:04:13 +00:00
|
|
|
#include "inttypes.h"
|
|
|
|
#include "string.h"
|
2005-01-28 12:51:10 +00:00
|
|
|
#include "cpu.h"
|
|
|
|
#include "system.h"
|
|
|
|
#include "lcd.h"
|
2007-01-12 20:45:37 +00:00
|
|
|
#include "lcd-remote.h"
|
2007-07-28 08:45:57 +00:00
|
|
|
#include "scroll_engine.h"
|
2005-01-28 12:51:10 +00:00
|
|
|
#include "kernel.h"
|
|
|
|
#include "thread.h"
|
2008-11-01 16:14:28 +00:00
|
|
|
#include "storage.h"
|
2005-12-06 12:12:29 +00:00
|
|
|
#include "usb.h"
|
2005-01-28 12:51:10 +00:00
|
|
|
#include "disk.h"
|
|
|
|
#include "font.h"
|
|
|
|
#include "adc.h"
|
|
|
|
#include "backlight.h"
|
2007-01-12 20:45:37 +00:00
|
|
|
#include "backlight-target.h"
|
2005-01-28 12:51:10 +00:00
|
|
|
#include "button.h"
|
|
|
|
#include "panic.h"
|
|
|
|
#include "power.h"
|
2007-08-17 07:06:54 +00:00
|
|
|
#include "powermgmt.h"
|
2005-01-28 12:51:10 +00:00
|
|
|
#include "file.h"
|
2006-08-09 12:04:13 +00:00
|
|
|
#include "eeprom_settings.h"
|
2007-03-02 13:58:00 +00:00
|
|
|
#include "rbunicode.h"
|
2007-02-22 15:09:49 +00:00
|
|
|
#include "common.h"
|
2006-03-22 11:45:33 +00:00
|
|
|
|
|
|
|
#include <stdarg.h>
|
|
|
|
|
2007-02-22 15:09:49 +00:00
|
|
|
/* Maximum allowed firmware image size. 10MB is more than enough */
|
|
|
|
#define MAX_LOADSIZE (10*1024*1024)
|
|
|
|
|
2005-07-09 07:46:42 +00:00
|
|
|
#define DRAM_START 0x31000000
|
|
|
|
|
2007-01-13 08:16:02 +00:00
|
|
|
#ifdef HAVE_EEPROM_SETTINGS
|
2007-01-12 20:45:37 +00:00
|
|
|
static bool recovery_mode = false;
|
2007-01-13 08:16:02 +00:00
|
|
|
#endif
|
2007-01-12 20:45:37 +00:00
|
|
|
|
2005-07-15 07:42:25 +00:00
|
|
|
char version[] = APPSVERSION;
|
|
|
|
|
2007-01-12 20:45:37 +00:00
|
|
|
/* Reset the cookie for the crt0 crash check */
|
|
|
|
inline void __reset_cookie(void)
|
2005-01-28 12:51:10 +00:00
|
|
|
{
|
|
|
|
asm(" move.l #0,%d0");
|
2005-02-04 18:24:58 +00:00
|
|
|
asm(" move.l %d0,0x10017ffc");
|
2007-01-12 20:45:37 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
void start_iriver_fw(void)
|
|
|
|
{
|
|
|
|
asm(" move.w #0x2700,%sr");
|
|
|
|
__reset_cookie();
|
2005-01-28 12:51:10 +00:00
|
|
|
asm(" movec.l %d0,%vbr");
|
|
|
|
asm(" move.l 0,%sp");
|
|
|
|
asm(" lea.l 8,%a0");
|
|
|
|
asm(" jmp (%a0)");
|
|
|
|
}
|
|
|
|
|
2007-01-12 20:45:37 +00:00
|
|
|
void start_firmware(void)
|
|
|
|
{
|
|
|
|
asm(" move.w #0x2700,%sr");
|
|
|
|
__reset_cookie();
|
|
|
|
asm(" move.l %0,%%d0" :: "i"(DRAM_START));
|
|
|
|
asm(" movec.l %d0,%vbr");
|
|
|
|
asm(" move.l %0,%%sp" :: "m"(*(int *)DRAM_START));
|
|
|
|
asm(" move.l %0,%%a0" :: "m"(*(int *)(DRAM_START+4)));
|
|
|
|
asm(" jmp (%a0)");
|
|
|
|
}
|
|
|
|
|
|
|
|
#ifdef IRIVER_H100_SERIES
|
|
|
|
void start_flashed_romimage(void)
|
|
|
|
{
|
|
|
|
uint8_t *src = (uint8_t *)FLASH_ROMIMAGE_ENTRY;
|
|
|
|
int *reset_vector;
|
|
|
|
|
|
|
|
if (!detect_flashed_romimage())
|
|
|
|
return ;
|
|
|
|
|
|
|
|
reset_vector = (int *)(&src[sizeof(struct flash_header)+4]);
|
|
|
|
|
|
|
|
asm(" move.w #0x2700,%sr");
|
|
|
|
__reset_cookie();
|
|
|
|
|
|
|
|
asm(" move.l %0,%%d0" :: "i"(DRAM_START));
|
|
|
|
asm(" movec.l %d0,%vbr");
|
|
|
|
asm(" move.l %0,%%sp" :: "m"(reset_vector[0]));
|
|
|
|
asm(" move.l %0,%%a0" :: "m"(reset_vector[1]));
|
|
|
|
asm(" jmp (%a0)");
|
|
|
|
|
|
|
|
/* Failure */
|
|
|
|
power_off();
|
|
|
|
}
|
|
|
|
|
|
|
|
void start_flashed_ramimage(void)
|
2006-08-09 12:04:13 +00:00
|
|
|
{
|
|
|
|
struct flash_header hdr;
|
|
|
|
unsigned char *buf = (unsigned char *)DRAM_START;
|
2007-01-12 20:45:37 +00:00
|
|
|
uint8_t *src = (uint8_t *)FLASH_RAMIMAGE_ENTRY;
|
2006-10-30 11:33:38 +00:00
|
|
|
|
2007-01-12 20:45:37 +00:00
|
|
|
if (!detect_flashed_ramimage())
|
|
|
|
return;
|
|
|
|
|
|
|
|
/* Load firmware from flash */
|
2006-08-09 12:04:13 +00:00
|
|
|
cpu_boost(true);
|
|
|
|
memcpy(&hdr, src, sizeof(struct flash_header));
|
|
|
|
src += sizeof(struct flash_header);
|
|
|
|
memcpy(buf, src, hdr.length);
|
|
|
|
cpu_boost(false);
|
2007-01-12 20:45:37 +00:00
|
|
|
|
|
|
|
start_firmware();
|
2006-08-09 12:04:13 +00:00
|
|
|
|
2007-01-12 20:45:37 +00:00
|
|
|
/* Failure */
|
|
|
|
power_off();
|
2006-08-09 12:04:13 +00:00
|
|
|
}
|
2007-01-12 20:45:37 +00:00
|
|
|
#endif /* IRIVER_H100_SERIES */
|
2006-08-09 12:04:13 +00:00
|
|
|
|
2007-01-12 20:45:37 +00:00
|
|
|
void shutdown(void)
|
|
|
|
{
|
|
|
|
printf("Shutting down...");
|
|
|
|
#ifdef HAVE_EEPROM_SETTINGS
|
|
|
|
/* Reset the rockbox crash check. */
|
|
|
|
firmware_settings.bl_version = 0;
|
|
|
|
eeprom_settings_store();
|
|
|
|
#endif
|
|
|
|
|
|
|
|
/* We need to gracefully spin down the disk to prevent clicks. */
|
|
|
|
if (ide_powered())
|
|
|
|
{
|
|
|
|
/* Make sure ATA has been initialized. */
|
2008-11-01 16:14:28 +00:00
|
|
|
storage_init();
|
2007-01-12 20:45:37 +00:00
|
|
|
|
|
|
|
/* And put the disk into sleep immediately. */
|
2008-11-01 16:14:28 +00:00
|
|
|
storage_sleepnow();
|
2007-01-12 20:45:37 +00:00
|
|
|
}
|
2005-07-08 15:09:44 +00:00
|
|
|
|
2007-01-12 20:45:37 +00:00
|
|
|
sleep(HZ*2);
|
|
|
|
|
|
|
|
/* Backlight OFF */
|
2007-11-12 18:49:53 +00:00
|
|
|
_backlight_off();
|
2007-01-12 20:45:37 +00:00
|
|
|
#ifdef HAVE_REMOTE_LCD
|
2007-11-12 18:49:53 +00:00
|
|
|
_remote_backlight_off();
|
2007-01-12 20:45:37 +00:00
|
|
|
#endif
|
|
|
|
|
|
|
|
__reset_cookie();
|
|
|
|
power_off();
|
|
|
|
}
|
|
|
|
|
|
|
|
/* Print the battery voltage (and a warning message). */
|
|
|
|
void check_battery(void)
|
2005-01-28 12:51:10 +00:00
|
|
|
{
|
2007-08-17 06:45:18 +00:00
|
|
|
int battery_voltage, batt_int, batt_frac;
|
2007-01-12 20:45:37 +00:00
|
|
|
|
2007-08-17 06:45:18 +00:00
|
|
|
battery_voltage = battery_adc_voltage();
|
|
|
|
batt_int = battery_voltage / 1000;
|
|
|
|
batt_frac = (battery_voltage % 1000) / 10;
|
2007-01-12 20:45:37 +00:00
|
|
|
|
|
|
|
printf("Batt: %d.%02dV", batt_int, batt_frac);
|
|
|
|
|
|
|
|
if (battery_voltage <= 310)
|
|
|
|
{
|
|
|
|
printf("WARNING! BATTERY LOW!!");
|
|
|
|
sleep(HZ*2);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
#ifdef HAVE_EEPROM_SETTINGS
|
|
|
|
void initialize_eeprom(void)
|
|
|
|
{
|
|
|
|
if (detect_original_firmware())
|
|
|
|
return ;
|
|
|
|
|
|
|
|
if (!eeprom_settings_init())
|
|
|
|
{
|
|
|
|
recovery_mode = true;
|
|
|
|
return ;
|
|
|
|
}
|
|
|
|
|
|
|
|
/* If bootloader version has not been reset, disk might
|
|
|
|
* not be intact. */
|
|
|
|
if (firmware_settings.bl_version || !firmware_settings.disk_clean)
|
|
|
|
{
|
|
|
|
firmware_settings.disk_clean = false;
|
|
|
|
recovery_mode = true;
|
|
|
|
}
|
|
|
|
|
|
|
|
firmware_settings.bl_version = EEPROM_SETTINGS_BL_MINVER;
|
|
|
|
eeprom_settings_store();
|
2005-01-28 12:51:10 +00:00
|
|
|
}
|
|
|
|
|
2007-01-12 20:45:37 +00:00
|
|
|
void try_flashboot(void)
|
|
|
|
{
|
|
|
|
if (!firmware_settings.initialized)
|
|
|
|
return ;
|
|
|
|
|
|
|
|
switch (firmware_settings.bootmethod)
|
|
|
|
{
|
|
|
|
case BOOT_DISK:
|
|
|
|
return;
|
|
|
|
|
|
|
|
case BOOT_ROM:
|
|
|
|
start_flashed_romimage();
|
|
|
|
recovery_mode = true;
|
|
|
|
break;
|
|
|
|
|
|
|
|
case BOOT_RAM:
|
|
|
|
start_flashed_ramimage();
|
|
|
|
recovery_mode = true;
|
|
|
|
break;
|
|
|
|
|
|
|
|
default:
|
|
|
|
recovery_mode = true;
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
static const char *options[] = {
|
|
|
|
"Boot from disk",
|
|
|
|
"Boot RAM image",
|
|
|
|
"Boot ROM image",
|
|
|
|
"Shutdown"
|
|
|
|
};
|
|
|
|
|
|
|
|
#define FAILSAFE_OPTIONS 4
|
2008-02-09 15:06:09 +00:00
|
|
|
#define TIMEOUT (15*HZ)
|
2007-01-12 20:45:37 +00:00
|
|
|
void failsafe_menu(void)
|
|
|
|
{
|
2008-02-09 15:06:09 +00:00
|
|
|
long start_tick = current_tick;
|
2007-01-12 20:45:37 +00:00
|
|
|
int option = 3;
|
|
|
|
int button;
|
|
|
|
int defopt = -1;
|
|
|
|
char buf[32];
|
|
|
|
int i;
|
2007-02-22 15:09:49 +00:00
|
|
|
extern int line;
|
2007-01-12 20:45:37 +00:00
|
|
|
|
|
|
|
reset_screen();
|
|
|
|
printf("Bootloader %s", version);
|
|
|
|
check_battery();
|
|
|
|
printf("=========================");
|
|
|
|
line += FAILSAFE_OPTIONS;
|
|
|
|
printf("");
|
|
|
|
printf(" [NAVI] to confirm.");
|
|
|
|
printf(" [REC] to set as default.");
|
|
|
|
printf("");
|
|
|
|
|
|
|
|
if (firmware_settings.initialized)
|
|
|
|
{
|
|
|
|
defopt = firmware_settings.bootmethod;
|
|
|
|
if (defopt < 0 || defopt >= FAILSAFE_OPTIONS)
|
|
|
|
defopt = option;
|
|
|
|
}
|
|
|
|
|
2008-02-09 15:06:09 +00:00
|
|
|
while (current_tick - start_tick < TIMEOUT)
|
2007-01-12 20:45:37 +00:00
|
|
|
{
|
|
|
|
/* Draw the menu. */
|
|
|
|
line = 3;
|
|
|
|
for (i = 0; i < FAILSAFE_OPTIONS; i++)
|
|
|
|
{
|
|
|
|
char *def = "[DEF]";
|
|
|
|
char *arrow = "->";
|
|
|
|
|
|
|
|
if (i != defopt)
|
|
|
|
def = "";
|
|
|
|
if (i != option)
|
|
|
|
arrow = " ";
|
|
|
|
|
|
|
|
printf("%s %s %s", arrow, options[i], def);
|
|
|
|
}
|
|
|
|
|
2010-05-06 21:37:03 +00:00
|
|
|
snprintf(buf, sizeof(buf), "Time left: %lds",
|
2008-02-09 15:06:09 +00:00
|
|
|
(TIMEOUT - (current_tick - start_tick)) / HZ);
|
2007-01-12 20:45:37 +00:00
|
|
|
lcd_puts(0, 10, buf);
|
|
|
|
lcd_update();
|
|
|
|
button = button_get_w_tmo(HZ);
|
2008-02-09 15:06:09 +00:00
|
|
|
|
|
|
|
if (button == BUTTON_NONE || button & SYS_EVENT)
|
2007-01-12 20:45:37 +00:00
|
|
|
continue ;
|
|
|
|
|
2008-02-09 15:06:09 +00:00
|
|
|
start_tick = current_tick;
|
|
|
|
|
2007-01-12 20:45:37 +00:00
|
|
|
/* Ignore the ON/PLAY -button because it can cause trouble
|
|
|
|
with the RTC alarm mod. */
|
|
|
|
switch (button & ~(BUTTON_ON))
|
|
|
|
{
|
|
|
|
case BUTTON_UP:
|
|
|
|
case BUTTON_RC_REW:
|
|
|
|
if (option > 0)
|
|
|
|
option--;
|
|
|
|
break ;
|
|
|
|
|
|
|
|
case BUTTON_DOWN:
|
|
|
|
case BUTTON_RC_FF:
|
|
|
|
if (option < FAILSAFE_OPTIONS-1)
|
|
|
|
option++;
|
|
|
|
break ;
|
|
|
|
|
|
|
|
case BUTTON_SELECT:
|
|
|
|
case BUTTON_RC_ON:
|
2008-02-09 15:06:09 +00:00
|
|
|
goto execute;
|
2007-01-12 20:45:37 +00:00
|
|
|
|
|
|
|
case BUTTON_REC:
|
|
|
|
case BUTTON_RC_REC:
|
|
|
|
if (firmware_settings.initialized)
|
|
|
|
{
|
|
|
|
firmware_settings.bootmethod = option;
|
|
|
|
eeprom_settings_store();
|
|
|
|
defopt = option;
|
|
|
|
}
|
|
|
|
break ;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2008-02-09 15:06:09 +00:00
|
|
|
execute:
|
|
|
|
|
2007-01-12 20:45:37 +00:00
|
|
|
lcd_puts(0, 10, "Executing command...");
|
|
|
|
lcd_update();
|
|
|
|
sleep(HZ);
|
|
|
|
reset_screen();
|
|
|
|
|
|
|
|
switch (option)
|
|
|
|
{
|
|
|
|
case BOOT_DISK:
|
|
|
|
return ;
|
|
|
|
|
|
|
|
case BOOT_RAM:
|
|
|
|
start_flashed_ramimage();
|
|
|
|
printf("Image not found");
|
|
|
|
break;
|
|
|
|
|
|
|
|
case BOOT_ROM:
|
|
|
|
start_flashed_romimage();
|
|
|
|
printf("Image not found");
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
|
|
|
|
shutdown();
|
|
|
|
}
|
|
|
|
#endif
|
|
|
|
|
2008-02-09 15:06:09 +00:00
|
|
|
/* get rid of a nasty humming sound during boot
|
|
|
|
-> RESET signal */
|
|
|
|
inline static void __uda1380_reset_hi(void)
|
|
|
|
{
|
|
|
|
#ifdef HAVE_UDA1380
|
|
|
|
or_l(1<<29, &GPIO_OUT);
|
|
|
|
or_l(1<<29, &GPIO_ENABLE);
|
|
|
|
or_l(1<<29, &GPIO_FUNCTION);
|
|
|
|
#endif
|
|
|
|
}
|
|
|
|
|
|
|
|
inline static void __uda1380_reset_lo(void)
|
|
|
|
{
|
|
|
|
#ifdef HAVE_UDA1380
|
|
|
|
and_l(~(1<<29), &GPIO_OUT);
|
|
|
|
#endif
|
|
|
|
}
|
|
|
|
|
2005-02-10 21:55:48 +00:00
|
|
|
void main(void)
|
2005-01-28 12:51:10 +00:00
|
|
|
{
|
|
|
|
int i;
|
|
|
|
int rc;
|
2005-05-20 18:16:45 +00:00
|
|
|
bool rc_on_button = false;
|
|
|
|
bool on_button = false;
|
2006-08-09 12:04:13 +00:00
|
|
|
bool rec_button = false;
|
2007-01-12 20:45:37 +00:00
|
|
|
bool hold_status = false;
|
2005-05-20 18:16:45 +00:00
|
|
|
int data;
|
2007-02-28 08:40:37 +00:00
|
|
|
extern int line; /* From common.c */
|
|
|
|
extern int remote_line; /* From common.c */
|
2007-02-22 21:38:59 +00:00
|
|
|
|
2005-07-19 08:08:33 +00:00
|
|
|
/* We want to read the buttons as early as possible, before the user
|
|
|
|
releases the ON button */
|
2005-05-20 18:16:45 +00:00
|
|
|
|
2005-07-19 08:08:33 +00:00
|
|
|
/* Set GPIO33, GPIO37, GPIO38 and GPIO52 as general purpose inputs
|
|
|
|
(The ON and Hold buttons on the main unit and the remote) */
|
2005-07-12 05:25:42 +00:00
|
|
|
or_l(0x00100062, &GPIO1_FUNCTION);
|
|
|
|
and_l(~0x00100062, &GPIO1_ENABLE);
|
2005-05-20 18:16:45 +00:00
|
|
|
|
|
|
|
data = GPIO1_READ;
|
|
|
|
if ((data & 0x20) == 0)
|
|
|
|
on_button = true;
|
2006-10-30 11:33:38 +00:00
|
|
|
|
2005-05-20 18:16:45 +00:00
|
|
|
if ((data & 0x40) == 0)
|
|
|
|
rc_on_button = true;
|
2005-01-28 12:51:10 +00:00
|
|
|
|
2005-07-19 08:08:33 +00:00
|
|
|
/* Set the default state of the hard drive power to OFF */
|
|
|
|
ide_power_enable(false);
|
2006-10-30 11:33:38 +00:00
|
|
|
|
2005-01-28 12:51:10 +00:00
|
|
|
power_init();
|
2005-07-19 08:08:33 +00:00
|
|
|
|
2005-11-19 01:33:28 +00:00
|
|
|
/* Turn off if neither ON button is pressed */
|
2008-02-09 15:06:09 +00:00
|
|
|
if (!(on_button || rc_on_button))
|
2007-01-12 20:45:37 +00:00
|
|
|
{
|
|
|
|
__reset_cookie();
|
2005-11-19 01:33:28 +00:00
|
|
|
power_off();
|
2007-01-12 20:45:37 +00:00
|
|
|
}
|
2006-10-30 11:33:38 +00:00
|
|
|
|
2008-02-09 15:06:09 +00:00
|
|
|
__uda1380_reset_hi();
|
|
|
|
|
2007-01-12 20:45:37 +00:00
|
|
|
/* Start with the main backlight OFF. */
|
2007-11-12 18:49:53 +00:00
|
|
|
_backlight_init();
|
|
|
|
_backlight_off();
|
2007-01-12 20:45:37 +00:00
|
|
|
|
2005-11-19 01:33:28 +00:00
|
|
|
/* Remote backlight ON */
|
|
|
|
#ifdef HAVE_REMOTE_LCD
|
2007-11-12 18:49:53 +00:00
|
|
|
_remote_backlight_on();
|
2005-12-03 00:54:59 +00:00
|
|
|
#endif
|
2006-10-30 11:33:38 +00:00
|
|
|
|
2005-01-28 12:51:10 +00:00
|
|
|
system_init();
|
|
|
|
kernel_init();
|
2005-05-20 18:16:45 +00:00
|
|
|
|
2008-02-09 15:06:09 +00:00
|
|
|
__uda1380_reset_lo();
|
|
|
|
|
2005-05-20 18:16:45 +00:00
|
|
|
#ifdef HAVE_ADJUSTABLE_CPU_FREQ
|
|
|
|
/* Set up waitstates for the peripherals */
|
|
|
|
set_cpu_frequency(0); /* PLL off */
|
2006-11-06 18:07:30 +00:00
|
|
|
#ifdef CPU_COLDFIRE
|
|
|
|
coldfire_set_pllcr_audio_bits(DEFAULT_PLLCR_AUDIO_BITS);
|
|
|
|
#endif
|
2007-01-12 20:45:37 +00:00
|
|
|
#endif
|
2008-03-26 01:50:41 +00:00
|
|
|
enable_irq();
|
2007-01-12 20:45:37 +00:00
|
|
|
|
|
|
|
#ifdef HAVE_EEPROM_SETTINGS
|
|
|
|
initialize_eeprom();
|
|
|
|
#endif
|
|
|
|
|
2008-02-09 15:06:09 +00:00
|
|
|
usb_init();
|
|
|
|
/* A small delay after usb_init is necessary to read the I/O port correctly
|
|
|
|
(if ports are read _immediately_ after the init). */
|
|
|
|
/* sleep(1); */
|
|
|
|
|
2007-01-12 20:45:37 +00:00
|
|
|
adc_init();
|
|
|
|
button_init();
|
|
|
|
|
2008-02-09 15:06:09 +00:00
|
|
|
/* Only check remote hold status if remote power button was actually used. */
|
|
|
|
if (rc_on_button)
|
|
|
|
{
|
|
|
|
lcd_remote_init();
|
|
|
|
|
|
|
|
/* Allow the button driver to check the buttons */
|
|
|
|
sleep(HZ/50);
|
|
|
|
|
|
|
|
if (remote_button_hold())
|
|
|
|
hold_status = true;
|
|
|
|
}
|
|
|
|
|
|
|
|
/* Check main hold switch status too. */
|
|
|
|
if (on_button && button_hold())
|
2007-01-12 20:45:37 +00:00
|
|
|
{
|
|
|
|
hold_status = true;
|
|
|
|
}
|
|
|
|
|
2007-03-02 11:28:23 +00:00
|
|
|
/* Power on the hard drive early, to speed up the loading. */
|
2007-01-13 09:08:18 +00:00
|
|
|
if (!hold_status
|
|
|
|
# ifdef HAVE_EEPROM_SETTINGS
|
|
|
|
&& !recovery_mode
|
|
|
|
# endif
|
|
|
|
)
|
2007-01-12 20:45:37 +00:00
|
|
|
{
|
|
|
|
ide_power_enable(true);
|
|
|
|
}
|
|
|
|
|
2008-02-09 15:06:09 +00:00
|
|
|
# ifdef HAVE_EEPROM_SETTINGS
|
2007-09-04 08:03:07 +00:00
|
|
|
if (!hold_status && (usb_detect() != USB_INSERTED) && !recovery_mode)
|
2007-01-12 20:45:37 +00:00
|
|
|
try_flashboot();
|
2007-01-13 09:08:18 +00:00
|
|
|
# endif
|
2005-07-12 05:25:42 +00:00
|
|
|
|
2007-01-12 20:45:37 +00:00
|
|
|
backlight_init();
|
2007-11-20 12:09:59 +00:00
|
|
|
|
2006-10-30 11:33:38 +00:00
|
|
|
|
2005-01-28 12:51:10 +00:00
|
|
|
lcd_init();
|
2008-02-09 15:06:09 +00:00
|
|
|
|
|
|
|
if (!rc_on_button)
|
|
|
|
lcd_remote_init();
|
|
|
|
|
|
|
|
/* Bootloader uses simplified backlight thread, so we need to enable
|
|
|
|
remote display here. */
|
|
|
|
if (remote_detect())
|
|
|
|
lcd_remote_on();
|
|
|
|
|
2005-01-28 12:51:10 +00:00
|
|
|
font_init();
|
|
|
|
|
|
|
|
lcd_setfont(FONT_SYSFIXED);
|
2008-02-09 15:06:09 +00:00
|
|
|
|
2006-03-22 11:45:33 +00:00
|
|
|
printf("Rockbox boot loader");
|
|
|
|
printf("Version %s", version);
|
2005-05-20 18:16:45 +00:00
|
|
|
|
2008-02-09 15:06:09 +00:00
|
|
|
/* No need to wait here more because lcd_init and others already do that. */
|
|
|
|
// sleep(HZ/50); /* Allow the button driver to check the buttons */
|
2006-10-30 11:33:38 +00:00
|
|
|
rec_button = ((button_status() & BUTTON_REC) == BUTTON_REC)
|
2006-08-09 12:04:13 +00:00
|
|
|
|| ((button_status() & BUTTON_RC_REC) == BUTTON_RC_REC);
|
2006-10-30 11:33:38 +00:00
|
|
|
|
2007-01-12 20:45:37 +00:00
|
|
|
check_battery();
|
|
|
|
|
2006-08-11 19:59:16 +00:00
|
|
|
/* Don't start if the Hold button is active on the device you
|
|
|
|
are starting with */
|
2007-09-04 08:03:07 +00:00
|
|
|
if ((usb_detect() != USB_INSERTED) && (hold_status
|
2007-01-13 09:08:18 +00:00
|
|
|
#ifdef HAVE_EEPROM_SETTINGS
|
|
|
|
|| recovery_mode
|
|
|
|
#endif
|
|
|
|
))
|
2006-08-09 12:04:13 +00:00
|
|
|
{
|
2007-01-12 20:45:37 +00:00
|
|
|
if (detect_original_firmware())
|
2006-08-09 12:04:13 +00:00
|
|
|
{
|
2007-01-12 20:45:37 +00:00
|
|
|
printf("Hold switch on");
|
|
|
|
shutdown();
|
2006-08-09 12:04:13 +00:00
|
|
|
}
|
2007-01-12 20:45:37 +00:00
|
|
|
|
2007-01-13 09:08:18 +00:00
|
|
|
#ifdef HAVE_EEPROM_SETTINGS
|
2007-01-12 20:45:37 +00:00
|
|
|
failsafe_menu();
|
2006-08-09 12:04:13 +00:00
|
|
|
#endif
|
|
|
|
}
|
2007-01-12 20:45:37 +00:00
|
|
|
|
|
|
|
/* Holding REC while starting runs the original firmware */
|
|
|
|
if (detect_original_firmware() && rec_button)
|
2006-08-09 12:04:13 +00:00
|
|
|
{
|
2007-01-12 20:45:37 +00:00
|
|
|
printf("Starting original firmware...");
|
|
|
|
start_iriver_fw();
|
2005-01-28 12:51:10 +00:00
|
|
|
}
|
|
|
|
|
2005-05-20 18:16:45 +00:00
|
|
|
/* A hack to enter USB mode without using the USB thread */
|
2007-09-04 08:03:07 +00:00
|
|
|
if(usb_detect() == USB_INSERTED)
|
2005-05-20 18:16:45 +00:00
|
|
|
{
|
2005-12-06 12:12:29 +00:00
|
|
|
const char msg[] = "Bootloader USB mode";
|
|
|
|
int w, h;
|
|
|
|
font_getstringsize(msg, &w, &h, FONT_SYSFIXED);
|
2007-01-12 20:45:37 +00:00
|
|
|
reset_screen();
|
2005-12-06 12:12:29 +00:00
|
|
|
lcd_putsxy((LCD_WIDTH-w)/2, (LCD_HEIGHT-h)/2, msg);
|
2005-05-20 18:16:45 +00:00
|
|
|
lcd_update();
|
|
|
|
|
2007-02-28 08:40:37 +00:00
|
|
|
#ifdef HAVE_REMOTE_LCD
|
|
|
|
lcd_remote_puts(0, 3, msg);
|
|
|
|
lcd_remote_update();
|
|
|
|
#endif
|
|
|
|
|
2006-08-15 22:54:06 +00:00
|
|
|
#ifdef HAVE_EEPROM_SETTINGS
|
2006-08-09 12:04:13 +00:00
|
|
|
if (firmware_settings.initialized)
|
|
|
|
{
|
|
|
|
firmware_settings.disk_clean = false;
|
|
|
|
eeprom_settings_store();
|
|
|
|
}
|
|
|
|
#endif
|
2007-02-28 00:06:35 +00:00
|
|
|
ide_power_enable(true);
|
2008-11-01 16:14:28 +00:00
|
|
|
storage_enable(false);
|
2007-02-28 00:06:35 +00:00
|
|
|
sleep(HZ/20);
|
2005-05-20 18:16:45 +00:00
|
|
|
usb_enable(true);
|
2005-12-06 12:12:29 +00:00
|
|
|
cpu_idle_mode(true);
|
2007-09-04 08:03:07 +00:00
|
|
|
while (usb_detect() == USB_INSERTED)
|
2005-05-20 18:16:45 +00:00
|
|
|
{
|
2007-01-12 20:45:37 +00:00
|
|
|
/* Print the battery status. */
|
|
|
|
line = 0;
|
2007-02-28 08:40:37 +00:00
|
|
|
remote_line = 0;
|
2007-01-12 20:45:37 +00:00
|
|
|
check_battery();
|
|
|
|
|
2008-11-01 16:14:28 +00:00
|
|
|
storage_spin(); /* Prevent the drive from spinning down */
|
2005-05-20 18:16:45 +00:00
|
|
|
sleep(HZ);
|
2006-10-30 11:33:38 +00:00
|
|
|
|
2005-07-19 08:08:33 +00:00
|
|
|
/* Backlight OFF */
|
2007-11-12 18:49:53 +00:00
|
|
|
_backlight_off();
|
2005-05-20 18:16:45 +00:00
|
|
|
}
|
|
|
|
|
2005-12-06 12:12:29 +00:00
|
|
|
cpu_idle_mode(false);
|
2005-07-19 11:03:00 +00:00
|
|
|
usb_enable(false);
|
2006-10-30 11:33:38 +00:00
|
|
|
|
2007-01-12 20:45:37 +00:00
|
|
|
reset_screen();
|
2005-07-19 11:03:00 +00:00
|
|
|
lcd_update();
|
2005-05-20 18:16:45 +00:00
|
|
|
}
|
2006-10-30 11:33:38 +00:00
|
|
|
|
2008-11-01 16:14:28 +00:00
|
|
|
rc = storage_init();
|
2007-02-28 00:06:35 +00:00
|
|
|
if(rc)
|
|
|
|
{
|
|
|
|
reset_screen();
|
|
|
|
printf("ATA error: %d", rc);
|
|
|
|
printf("Insert USB cable and press");
|
|
|
|
printf("a button");
|
|
|
|
while(!(button_get(true) & BUTTON_REL));
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2005-01-28 12:51:10 +00:00
|
|
|
disk_init();
|
|
|
|
|
|
|
|
rc = disk_mount_all();
|
|
|
|
if (rc<=0)
|
|
|
|
{
|
2007-01-12 20:45:37 +00:00
|
|
|
reset_screen();
|
2006-03-22 11:45:33 +00:00
|
|
|
printf("No partition found");
|
2005-01-28 12:51:10 +00:00
|
|
|
while(button_get(true) != SYS_USB_CONNECTED) {};
|
|
|
|
}
|
|
|
|
|
2006-03-22 11:45:33 +00:00
|
|
|
printf("Loading firmware");
|
2007-02-22 15:09:49 +00:00
|
|
|
i = load_firmware((unsigned char *)DRAM_START, BOOTFILE, MAX_LOADSIZE);
|
2007-02-28 08:40:37 +00:00
|
|
|
if(i < 0)
|
2007-06-18 06:52:29 +00:00
|
|
|
printf("Error: %s", strerror(i));
|
2006-10-30 11:33:38 +00:00
|
|
|
|
2007-02-22 15:09:49 +00:00
|
|
|
if (i == EOK)
|
2005-01-28 12:51:10 +00:00
|
|
|
start_firmware();
|
2006-10-30 11:33:38 +00:00
|
|
|
|
2007-01-12 20:45:37 +00:00
|
|
|
if (!detect_original_firmware())
|
2006-09-04 16:06:11 +00:00
|
|
|
{
|
|
|
|
printf("No firmware found on disk");
|
2007-02-22 15:09:49 +00:00
|
|
|
sleep(HZ*2);
|
2007-01-12 20:45:37 +00:00
|
|
|
shutdown();
|
2006-09-04 16:06:11 +00:00
|
|
|
}
|
2007-02-28 08:40:37 +00:00
|
|
|
else {
|
|
|
|
sleep(HZ*2);
|
2006-09-04 16:06:11 +00:00
|
|
|
start_iriver_fw();
|
2007-02-28 08:40:37 +00:00
|
|
|
}
|
2005-01-28 12:51:10 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
/* These functions are present in the firmware library, but we reimplement
|
|
|
|
them here because the originals do a lot more than we want */
|
|
|
|
void screen_dump(void)
|
|
|
|
{
|
|
|
|
}
|
2007-03-02 11:28:23 +00:00
|
|
|
|
|
|
|
int usb_screen(void)
|
|
|
|
{
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
unsigned short *bidi_l2v(const unsigned char *str, int orientation)
|
|
|
|
{
|
|
|
|
static unsigned short utf16_buf[SCROLL_LINE_SIZE];
|
|
|
|
unsigned short *target;
|
|
|
|
(void)orientation;
|
|
|
|
|
|
|
|
target = utf16_buf;
|
|
|
|
|
|
|
|
while (*str)
|
|
|
|
str = utf8decode(str, target++);
|
|
|
|
*target = 0;
|
|
|
|
return utf16_buf;
|
|
|
|
}
|