2008-10-12 16:46:01 +00:00
|
|
|
/***************************************************************************
|
|
|
|
* __________ __ ___.
|
|
|
|
* Open \______ \ ____ ____ | | _\_ |__ _______ ___
|
|
|
|
* Source | _// _ \_/ ___\| |/ /| __ \ / _ \ \/ /
|
|
|
|
* Jukebox | | ( <_> ) \___| < | \_\ ( <_> > < <
|
|
|
|
* Firmware |____|_ /\____/ \___ >__|_ \|___ /\____/__/\_ \
|
|
|
|
* \/ \/ \/ \/ \/
|
2008-10-19 14:11:01 +00:00
|
|
|
* $Id$
|
2008-10-12 16:46:01 +00:00
|
|
|
*
|
|
|
|
* Copyright (C) 2008 by Rafaël Carré
|
|
|
|
*
|
|
|
|
* Based on Rockbox iriver bootloader by Linus Nielsen Feltzing
|
|
|
|
* and the ipodlinux bootloader by Daniel Palffy and Bernard Leach
|
|
|
|
*
|
|
|
|
* 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.
|
|
|
|
*
|
|
|
|
* This software is distributed on an "AS IS" basis, WITHOUT WARRANTY OF ANY
|
|
|
|
* KIND, either express or implied.
|
|
|
|
*
|
|
|
|
****************************************************************************/
|
|
|
|
|
|
|
|
#include <stdio.h>
|
|
|
|
#include <system.h>
|
|
|
|
#include <inttypes.h>
|
|
|
|
#include "config.h"
|
2008-10-29 01:42:03 +00:00
|
|
|
#include "lcd.h"
|
|
|
|
#include "backlight-target.h"
|
2008-11-11 11:01:55 +00:00
|
|
|
#include "button-target.h"
|
2008-10-29 01:42:03 +00:00
|
|
|
#include "common.h"
|
2008-11-01 16:14:28 +00:00
|
|
|
#include "storage.h"
|
2008-11-09 06:17:21 +00:00
|
|
|
#include "disk.h"
|
|
|
|
#include "panic.h"
|
2009-04-10 22:18:02 +00:00
|
|
|
#include "power.h"
|
2008-10-12 16:46:01 +00:00
|
|
|
|
|
|
|
int show_logo(void);
|
|
|
|
void main(void)
|
|
|
|
{
|
2008-11-09 06:17:21 +00:00
|
|
|
unsigned char* loadbuffer;
|
|
|
|
int buffer_size;
|
|
|
|
void(*kernel_entry)(void);
|
|
|
|
int ret;
|
2008-10-26 13:28:52 +00:00
|
|
|
|
2008-10-28 11:24:29 +00:00
|
|
|
system_init();
|
2008-11-06 15:24:19 +00:00
|
|
|
kernel_init();
|
2008-10-28 11:24:29 +00:00
|
|
|
|
2008-12-24 04:10:18 +00:00
|
|
|
#ifdef SANSA_C200V2
|
|
|
|
/* stop here */
|
|
|
|
while(1);
|
|
|
|
#endif
|
2008-10-29 01:42:03 +00:00
|
|
|
lcd_init();
|
|
|
|
show_logo();
|
2008-10-12 16:46:01 +00:00
|
|
|
|
2008-10-29 01:42:03 +00:00
|
|
|
_backlight_on();
|
2008-10-12 16:46:01 +00:00
|
|
|
|
2008-11-25 15:43:38 +00:00
|
|
|
button_init_device();
|
2008-11-11 11:01:55 +00:00
|
|
|
int btn = button_read_device();
|
|
|
|
|
2009-04-10 22:18:02 +00:00
|
|
|
#if !defined(SANSA_FUZE) && !defined(SANSA_CLIP)
|
|
|
|
if (button_hold())
|
|
|
|
{
|
|
|
|
verbose = true;
|
|
|
|
lcd_clear_display();
|
|
|
|
printf("Hold switch on");
|
|
|
|
printf("Shutting down...");
|
|
|
|
sleep(HZ);
|
|
|
|
power_off();
|
|
|
|
}
|
|
|
|
#endif
|
|
|
|
|
2008-11-11 11:01:55 +00:00
|
|
|
/* Enable bootloader messages if any button is pressed */
|
|
|
|
if (btn)
|
|
|
|
{
|
|
|
|
lcd_clear_display();
|
|
|
|
verbose = true;
|
|
|
|
}
|
2008-11-09 06:17:21 +00:00
|
|
|
|
2008-11-25 15:43:38 +00:00
|
|
|
enable_irq();
|
2008-11-09 06:17:21 +00:00
|
|
|
|
|
|
|
ret = storage_init();
|
|
|
|
if(ret < 0)
|
|
|
|
error(EATA,ret);
|
2008-10-29 20:21:59 +00:00
|
|
|
|
2008-11-09 06:17:21 +00:00
|
|
|
if(!disk_init(IF_MV(0)))
|
|
|
|
panicf("disk_init failed!");
|
2008-10-29 20:21:59 +00:00
|
|
|
|
2008-11-09 06:17:21 +00:00
|
|
|
ret = disk_mount_all();
|
2008-10-12 16:46:01 +00:00
|
|
|
|
2008-11-09 06:17:21 +00:00
|
|
|
if(ret <= 0)
|
|
|
|
error(EDISK, ret);
|
2008-10-12 16:46:01 +00:00
|
|
|
|
2008-11-09 06:17:21 +00:00
|
|
|
printf("Loading firmware");
|
|
|
|
|
2009-05-20 21:09:53 +00:00
|
|
|
loadbuffer = (unsigned char*)DRAM_ORIG; /* DRAM */
|
|
|
|
buffer_size = (int)(loadbuffer + (DRAM_SIZE) - TTB_SIZE);
|
2008-11-09 06:17:21 +00:00
|
|
|
|
|
|
|
ret = load_firmware(loadbuffer, BOOTFILE, buffer_size);
|
|
|
|
if(ret < 0)
|
|
|
|
error(EBOOTFILE, ret);
|
|
|
|
|
2008-11-25 15:43:38 +00:00
|
|
|
disable_irq(); /* disable irq until we have copied the new vectors */
|
2008-11-09 06:17:21 +00:00
|
|
|
|
|
|
|
if (ret == EOK)
|
|
|
|
{
|
|
|
|
kernel_entry = (void*) loadbuffer;
|
|
|
|
printf("Executing");
|
|
|
|
kernel_entry();
|
|
|
|
printf("ERR: Failed to boot");
|
|
|
|
}
|
2008-10-12 16:46:01 +00:00
|
|
|
|
|
|
|
/* never returns */
|
|
|
|
while(1) ;
|
|
|
|
}
|