2007-10-28 11:08:10 +00:00
|
|
|
/***************************************************************************
|
|
|
|
* __________ __ ___.
|
|
|
|
* Open \______ \ ____ ____ | | _\_ |__ _______ ___
|
|
|
|
* Source | _// _ \_/ ___\| |/ /| __ \ / _ \ \/ /
|
|
|
|
* Jukebox | | ( <_> ) \___| < | \_\ ( <_> > < <
|
|
|
|
* Firmware |____|_ /\____/ \___ >__|_ \|___ /\____/__/\_ \
|
|
|
|
* \/ \/ \/ \/ \/
|
|
|
|
* $Id$
|
|
|
|
*
|
|
|
|
* Copyright (C) 2007 by Dave Chapman
|
|
|
|
*
|
|
|
|
* Based on Rockbox iriver bootloader 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.
|
2007-10-28 11:08: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>
|
|
|
|
#include <string.h>
|
|
|
|
#include "cpu.h"
|
|
|
|
#include "system.h"
|
|
|
|
#include "lcd.h"
|
|
|
|
#include "kernel.h"
|
|
|
|
#include "thread.h"
|
2008-11-01 16:14:28 +00:00
|
|
|
#include "storage.h"
|
2007-10-28 11:08:10 +00:00
|
|
|
#include "fat.h"
|
|
|
|
#include "disk.h"
|
|
|
|
#include "font.h"
|
2007-11-01 23:38:57 +00:00
|
|
|
#include "button.h"
|
2007-10-28 11:08:10 +00:00
|
|
|
#include "adc.h"
|
|
|
|
#include "adc-target.h"
|
2008-03-29 17:26:16 +00:00
|
|
|
#include "backlight.h"
|
2007-10-28 11:08:10 +00:00
|
|
|
#include "backlight-target.h"
|
|
|
|
#include "panic.h"
|
|
|
|
#include "power.h"
|
|
|
|
#include "file.h"
|
|
|
|
#include "common.h"
|
2010-05-27 09:41:46 +00:00
|
|
|
#include "version.h"
|
2007-10-28 11:08:10 +00:00
|
|
|
|
2008-11-17 21:16:00 +00:00
|
|
|
/* Show the Rockbox logo - in show_logo.c */
|
2011-09-08 18:31:15 +00:00
|
|
|
extern void show_logo(void);
|
2008-09-06 17:50:59 +00:00
|
|
|
|
2008-09-22 19:15:18 +00:00
|
|
|
/* Address to load main Rockbox image to */
|
|
|
|
#define LOAD_ADDRESS 0x20000000 /* DRAM_START */
|
2008-01-14 22:04:48 +00:00
|
|
|
|
2007-10-28 11:08:10 +00:00
|
|
|
extern int line;
|
|
|
|
|
2008-03-12 20:57:19 +00:00
|
|
|
#define MAX_LOAD_SIZE (8*1024*1024) /* Arbitrary, but plenty. */
|
|
|
|
|
2008-05-02 19:12:09 +00:00
|
|
|
/* The following function is just test/development code */
|
|
|
|
void show_debug_screen(void)
|
|
|
|
{
|
|
|
|
int button;
|
|
|
|
int power_count = 0;
|
|
|
|
int count = 0;
|
|
|
|
bool do_power_off = false;
|
2009-06-24 07:37:11 +00:00
|
|
|
|
|
|
|
lcd_puts_scroll(0,0,"+++ this is a very very long line to test scrolling. ---");
|
2008-09-22 19:15:18 +00:00
|
|
|
while (!do_power_off) {
|
2008-05-02 19:12:09 +00:00
|
|
|
line = 1;
|
|
|
|
button = button_get(false);
|
2009-06-24 07:37:11 +00:00
|
|
|
|
2008-09-22 19:15:18 +00:00
|
|
|
/* Power-off if POWER button has been held for a time
|
2008-05-02 19:12:09 +00:00
|
|
|
This loop is currently running at about 100 iterations/second
|
|
|
|
*/
|
|
|
|
if (button & POWEROFF_BUTTON) {
|
|
|
|
power_count++;
|
2008-07-06 21:32:59 +00:00
|
|
|
if (power_count > 100)
|
2008-05-02 19:12:09 +00:00
|
|
|
do_power_off = true;
|
|
|
|
} else {
|
|
|
|
power_count = 0;
|
|
|
|
}
|
2008-09-22 19:15:18 +00:00
|
|
|
#if 0
|
2008-06-21 15:18:36 +00:00
|
|
|
if (button & BUTTON_SELECT){
|
2008-09-06 17:50:59 +00:00
|
|
|
_backlight_off();
|
2008-06-21 15:18:36 +00:00
|
|
|
}
|
|
|
|
else{
|
|
|
|
_backlight_on();
|
|
|
|
}
|
2008-09-06 17:50:59 +00:00
|
|
|
#endif
|
2008-09-22 19:15:18 +00:00
|
|
|
printf("Btn: 0x%08x",button);
|
|
|
|
#if 0
|
2008-05-02 19:12:09 +00:00
|
|
|
printf("Tick: %d",current_tick);
|
|
|
|
printf("GPIOA: 0x%08x",GPIOA);
|
|
|
|
printf("GPIOB: 0x%08x",GPIOB);
|
|
|
|
printf("GPIOC: 0x%08x",GPIOC);
|
|
|
|
printf("GPIOD: 0x%08x",GPIOD);
|
2008-09-22 19:15:18 +00:00
|
|
|
printf("GPIOE: 0x%08x",GPIOE);
|
|
|
|
#endif
|
2008-05-02 19:12:09 +00:00
|
|
|
|
|
|
|
#if 0
|
|
|
|
int i;
|
2008-09-22 19:15:18 +00:00
|
|
|
for (i = 0; i<4; i++)
|
2008-05-02 19:12:09 +00:00
|
|
|
{
|
|
|
|
printf("ADC%d: 0x%04x",i,adc_read(i));
|
|
|
|
}
|
|
|
|
#endif
|
|
|
|
count++;
|
|
|
|
printf("Count: %d",count);
|
2009-06-24 07:37:11 +00:00
|
|
|
lcd_update();
|
2008-05-02 19:12:09 +00:00
|
|
|
sleep(HZ/10);
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
lcd_clear_display();
|
|
|
|
line = 0;
|
|
|
|
printf("POWER-OFF");
|
|
|
|
|
|
|
|
/* Power-off */
|
|
|
|
power_off();
|
|
|
|
|
|
|
|
printf("(NOT) POWERED OFF");
|
|
|
|
while (true);
|
|
|
|
}
|
2008-09-22 19:15:18 +00:00
|
|
|
|
2008-03-29 17:26:16 +00:00
|
|
|
void* main(void)
|
|
|
|
{
|
2008-09-22 19:15:18 +00:00
|
|
|
#ifdef TCCBOOT
|
2008-03-29 17:26:16 +00:00
|
|
|
int rc;
|
|
|
|
unsigned char* loadbuffer = (unsigned char*)LOAD_ADDRESS;
|
|
|
|
#endif
|
|
|
|
|
|
|
|
system_init();
|
2008-09-06 17:50:59 +00:00
|
|
|
power_init();
|
2009-06-24 07:37:11 +00:00
|
|
|
|
2008-05-02 19:12:09 +00:00
|
|
|
kernel_init();
|
|
|
|
enable_irq();
|
2009-06-24 07:37:11 +00:00
|
|
|
|
2008-03-29 17:26:16 +00:00
|
|
|
lcd_init();
|
|
|
|
|
|
|
|
adc_init();
|
|
|
|
button_init();
|
|
|
|
backlight_init();
|
|
|
|
|
|
|
|
font_init();
|
|
|
|
lcd_setfont(FONT_SYSFIXED);
|
2008-11-17 21:16:00 +00:00
|
|
|
|
|
|
|
show_logo();
|
2008-03-29 17:26:16 +00:00
|
|
|
|
|
|
|
_backlight_on();
|
|
|
|
|
|
|
|
/* Only load the firmware if TCCBOOT is defined - this ensures SDRAM_START is
|
|
|
|
available for loading the firmware. Otherwise display the debug screen. */
|
2008-09-22 19:15:18 +00:00
|
|
|
#ifdef TCCBOOT
|
2008-03-29 17:26:16 +00:00
|
|
|
printf("Rockbox boot loader");
|
2010-05-27 09:41:46 +00:00
|
|
|
printf("Version " RBVERSION);
|
2008-03-29 17:26:16 +00:00
|
|
|
|
|
|
|
printf("ATA");
|
2008-11-01 16:14:28 +00:00
|
|
|
rc = storage_init();
|
2008-03-29 17:26:16 +00:00
|
|
|
if(rc)
|
|
|
|
{
|
|
|
|
reset_screen();
|
2010-06-23 05:08:36 +00:00
|
|
|
error(EATA, rc, true);
|
2008-03-29 17:26:16 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
printf("mount");
|
|
|
|
rc = disk_mount_all();
|
|
|
|
if (rc<=0)
|
|
|
|
{
|
2010-06-23 05:08:36 +00:00
|
|
|
error(EDISK,rc, true);
|
2008-03-29 17:26:16 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
rc = load_firmware(loadbuffer, BOOTFILE, MAX_LOAD_SIZE);
|
|
|
|
|
|
|
|
if (rc < 0)
|
|
|
|
{
|
2010-06-23 05:08:36 +00:00
|
|
|
error(EBOOTFILE,rc, true);
|
2008-03-29 17:26:16 +00:00
|
|
|
}
|
|
|
|
else if (rc == EOK)
|
|
|
|
{
|
2009-09-21 08:38:52 +00:00
|
|
|
int(*kernel_entry)(void) = (void *) loadbuffer;
|
2008-03-29 17:26:16 +00:00
|
|
|
|
2009-09-21 08:38:52 +00:00
|
|
|
disable_irq();
|
2008-04-27 13:30:11 +00:00
|
|
|
rc = kernel_entry();
|
2008-03-29 17:26:16 +00:00
|
|
|
}
|
2009-09-21 08:38:52 +00:00
|
|
|
|
|
|
|
panicf("Boot failed!");
|
2008-04-27 13:30:11 +00:00
|
|
|
#else
|
2008-03-29 17:26:16 +00:00
|
|
|
show_debug_screen();
|
2008-04-27 13:30:11 +00:00
|
|
|
#endif
|
2008-03-12 20:57:19 +00:00
|
|
|
|
2007-10-28 11:08:10 +00:00
|
|
|
return 0;
|
|
|
|
}
|