2007-01-28 18:42:11 +00:00
|
|
|
/***************************************************************************
|
|
|
|
* __________ __ ___.
|
|
|
|
* Open \______ \ ____ ____ | | _\_ |__ _______ ___
|
|
|
|
* Source | _// _ \_/ ___\| |/ /| __ \ / _ \ \/ /
|
|
|
|
* Jukebox | | ( <_> ) \___| < | \_\ ( <_> > < <
|
|
|
|
* Firmware |____|_ /\____/ \___ >__|_ \|___ /\____/__/\_ \
|
|
|
|
* \/ \/ \/ \/ \/
|
|
|
|
* $Id: main.c 11997 2007-01-13 09:08:18Z miipekk $
|
|
|
|
*
|
|
|
|
* 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.
|
2007-01-28 18:42:11 +00:00
|
|
|
*
|
|
|
|
* This software is distributed on an "AS IS" basis, WITHOUT WARRANTY OF ANY
|
|
|
|
* KIND, either express or implied.
|
|
|
|
*
|
|
|
|
****************************************************************************/
|
|
|
|
#include "lcd.h"
|
|
|
|
#include "lcd-remote.h"
|
|
|
|
#include "font.h"
|
|
|
|
#include "system.h"
|
|
|
|
#include <stdarg.h>
|
|
|
|
#include <stdio.h>
|
2007-03-05 23:56:28 +00:00
|
|
|
#include <stdbool.h>
|
2007-01-28 18:42:11 +00:00
|
|
|
#include "cpu.h"
|
|
|
|
#include "common.h"
|
2007-03-12 22:12:20 +00:00
|
|
|
#include "power.h"
|
|
|
|
#include "kernel.h"
|
2008-11-23 22:07:48 +00:00
|
|
|
#include "config.h"
|
2009-02-07 13:52:03 +00:00
|
|
|
#include "logf.h"
|
|
|
|
#include "button.h"
|
|
|
|
#include "string.h"
|
|
|
|
#include "usb.h"
|
2009-08-19 22:15:45 +00:00
|
|
|
#include "file.h"
|
2012-03-04 14:34:29 +00:00
|
|
|
#include "loader_strerror.h"
|
|
|
|
#if defined(MI4_FORMAT)
|
|
|
|
#include "mi4-loader.h"
|
|
|
|
#elif defined(RKW_FORMAT)
|
|
|
|
#include "rkw-loader.h"
|
|
|
|
#else
|
|
|
|
#include "rb-loader.h"
|
|
|
|
#endif
|
2007-01-28 18:42:11 +00:00
|
|
|
|
2007-03-05 23:56:28 +00:00
|
|
|
/* TODO: Other bootloaders need to be adjusted to set this variable to true
|
2010-03-23 21:28:25 +00:00
|
|
|
on a button press - currently only the ipod, H10, Vibe 500 and Sansa versions do. */
|
2007-09-12 22:21:03 +00:00
|
|
|
#if defined(IPOD_ARCH) || defined(IRIVER_H10) || defined(IRIVER_H10_5GB) \
|
2008-05-21 03:55:17 +00:00
|
|
|
|| defined(SANSA_E200) || defined(SANSA_C200) || defined(GIGABEAT_F) \
|
2010-03-28 04:10:40 +00:00
|
|
|
|| (CONFIG_CPU == AS3525) || (CONFIG_CPU == AS3525v2) || defined(COWON_D2) \
|
2009-12-25 04:05:01 +00:00
|
|
|
|| defined(MROBE_100) || defined(MROBE_500) \
|
|
|
|
|| defined(SAMSUNG_YH925) || defined(SAMSUNG_YH920) \
|
|
|
|
|| defined(SAMSUNG_YH820) || defined(PHILIPS_SA9200) \
|
|
|
|
|| defined(PHILIPS_HDD1630) || defined(PHILIPS_HDD6330) \
|
2011-01-21 07:05:51 +00:00
|
|
|
|| defined(ONDA_VX747) || defined(PBELL_VIBE500) \
|
2018-06-29 20:09:28 +00:00
|
|
|
|| defined(TOSHIBA_GIGABEAT_S) || defined(XDUOO_X3) \
|
|
|
|
|| defined(IHIFI770) || defined(IHIFI770C) || defined(IHIFI800)
|
2007-03-05 23:56:28 +00:00
|
|
|
bool verbose = false;
|
|
|
|
#else
|
|
|
|
bool verbose = true;
|
|
|
|
#endif
|
|
|
|
|
2017-02-23 10:33:19 +00:00
|
|
|
#if !(CONFIG_PLATFORM & PLATFORM_HOSTED)
|
2007-01-28 18:42:11 +00:00
|
|
|
int line = 0;
|
|
|
|
#ifdef HAVE_REMOTE_LCD
|
|
|
|
int remote_line = 0;
|
|
|
|
#endif
|
|
|
|
|
|
|
|
void reset_screen(void)
|
|
|
|
{
|
|
|
|
lcd_clear_display();
|
|
|
|
line = 0;
|
|
|
|
#ifdef HAVE_REMOTE_LCD
|
|
|
|
lcd_remote_clear_display();
|
|
|
|
remote_line = 0;
|
|
|
|
#endif
|
|
|
|
}
|
|
|
|
|
2010-08-02 20:34:47 +00:00
|
|
|
int printf(const char *format, ...)
|
2007-01-28 18:42:11 +00:00
|
|
|
{
|
2011-07-02 02:49:15 +00:00
|
|
|
static char printfbuf[256];
|
2007-01-28 18:42:11 +00:00
|
|
|
int len;
|
|
|
|
unsigned char *ptr;
|
|
|
|
va_list ap;
|
|
|
|
va_start(ap, format);
|
|
|
|
|
|
|
|
ptr = printfbuf;
|
|
|
|
len = vsnprintf(ptr, sizeof(printfbuf), format, ap);
|
|
|
|
va_end(ap);
|
|
|
|
|
|
|
|
lcd_puts(0, line++, ptr);
|
2007-03-05 23:56:28 +00:00
|
|
|
if (verbose)
|
|
|
|
lcd_update();
|
2007-01-28 18:42:11 +00:00
|
|
|
if(line >= LCD_HEIGHT/SYSFONT_HEIGHT)
|
|
|
|
line = 0;
|
|
|
|
#ifdef HAVE_REMOTE_LCD
|
|
|
|
lcd_remote_puts(0, remote_line++, ptr);
|
2007-03-05 23:56:28 +00:00
|
|
|
if (verbose)
|
|
|
|
lcd_remote_update();
|
2007-01-28 18:42:11 +00:00
|
|
|
if(remote_line >= LCD_REMOTE_HEIGHT/SYSFONT_HEIGHT)
|
|
|
|
remote_line = 0;
|
|
|
|
#endif
|
2010-08-02 20:34:47 +00:00
|
|
|
return len;
|
2007-01-28 18:42:11 +00:00
|
|
|
}
|
2017-02-23 10:33:19 +00:00
|
|
|
#endif
|
2007-01-28 18:42:11 +00:00
|
|
|
|
2010-06-23 05:08:36 +00:00
|
|
|
void error(int errortype, int error, bool shutdown)
|
2007-03-12 22:12:20 +00:00
|
|
|
{
|
|
|
|
switch(errortype)
|
|
|
|
{
|
|
|
|
case EATA:
|
|
|
|
printf("ATA error: %d", error);
|
|
|
|
break;
|
|
|
|
|
|
|
|
case EDISK:
|
|
|
|
printf("No partition found");
|
|
|
|
break;
|
|
|
|
|
|
|
|
case EBOOTFILE:
|
2012-03-04 14:34:29 +00:00
|
|
|
printf(loader_strerror(error));
|
2007-03-12 22:12:20 +00:00
|
|
|
break;
|
|
|
|
}
|
|
|
|
|
|
|
|
lcd_update();
|
|
|
|
sleep(5*HZ);
|
2012-03-04 14:34:29 +00:00
|
|
|
|
2010-06-23 05:08:36 +00:00
|
|
|
if(shutdown)
|
|
|
|
power_off();
|
2007-03-12 22:12:20 +00:00
|
|
|
}
|
|
|
|
|
2007-01-28 18:42:11 +00:00
|
|
|
/* Load raw binary image. */
|
|
|
|
int load_raw_firmware(unsigned char* buf, char* firmware, int buffer_size)
|
|
|
|
{
|
|
|
|
int fd;
|
|
|
|
int rc;
|
|
|
|
int len;
|
|
|
|
char filename[MAX_PATH];
|
|
|
|
|
|
|
|
snprintf(filename,sizeof(filename),"%s",firmware);
|
|
|
|
fd = open(filename, O_RDONLY);
|
|
|
|
if(fd < 0)
|
|
|
|
{
|
|
|
|
return EFILE_NOT_FOUND;
|
|
|
|
}
|
|
|
|
|
|
|
|
len = filesize(fd);
|
2020-10-26 16:38:22 +00:00
|
|
|
|
2007-01-28 18:42:11 +00:00
|
|
|
if (len > buffer_size)
|
|
|
|
return EFILE_TOO_BIG;
|
|
|
|
|
|
|
|
rc = read(fd, buf, len);
|
|
|
|
if(rc < len)
|
|
|
|
return EREAD_IMAGE_FAILED;
|
|
|
|
|
|
|
|
close(fd);
|
|
|
|
return len;
|
|
|
|
}
|
|
|
|
|
2016-05-01 23:17:05 +00:00
|
|
|
/* FIXME?: unused broken code */
|
|
|
|
#if 0
|
2009-02-07 13:52:03 +00:00
|
|
|
#ifdef ROCKBOX_HAS_LOGF /* Logf display helper for the bootloader */
|
|
|
|
|
|
|
|
#define LINES (LCD_HEIGHT/SYSFONT_HEIGHT)
|
|
|
|
#define COLUMNS ((LCD_WIDTH/SYSFONT_WIDTH) > MAX_LOGF_ENTRY ? \
|
|
|
|
MAX_LOGF_ENTRY : (LCD_WIDTH/SYSFONT_WIDTH))
|
|
|
|
|
|
|
|
#ifdef ONDA_VX747
|
|
|
|
#define LOGF_UP BUTTON_VOL_UP
|
|
|
|
#define LOGF_DOWN BUTTON_VOL_DOWN
|
|
|
|
#define LOGF_CLEAR BUTTON_MENU
|
|
|
|
#else
|
|
|
|
#warning No keymap defined for this target
|
|
|
|
#endif
|
|
|
|
|
|
|
|
void display_logf(void) /* Doesn't return! */
|
|
|
|
{
|
|
|
|
int i, index, button, user_index=0;
|
|
|
|
#ifdef HAVE_TOUCHSCREEN
|
|
|
|
int touch, prev_y=0;
|
|
|
|
#endif
|
|
|
|
char buffer[COLUMNS+1];
|
2020-10-26 16:38:22 +00:00
|
|
|
|
2009-02-07 13:52:03 +00:00
|
|
|
while(1)
|
|
|
|
{
|
|
|
|
index = logfindex + user_index;
|
2020-10-26 16:38:22 +00:00
|
|
|
|
2009-02-07 13:52:03 +00:00
|
|
|
lcd_clear_display();
|
|
|
|
for(i = LINES-1; i>=0; i--)
|
|
|
|
{
|
|
|
|
if(--index < 0)
|
|
|
|
{
|
|
|
|
if(logfwrap)
|
|
|
|
index = MAX_LOGF_LINES-1;
|
|
|
|
else
|
|
|
|
break; /* done */
|
|
|
|
}
|
2020-10-26 16:38:22 +00:00
|
|
|
|
2009-02-07 13:52:03 +00:00
|
|
|
memcpy(buffer, logfbuffer[index], COLUMNS);
|
2020-10-26 16:38:22 +00:00
|
|
|
|
2009-02-07 13:52:03 +00:00
|
|
|
if (logfbuffer[index][MAX_LOGF_ENTRY] == LOGF_TERMINATE_CONTINUE_LINE)
|
|
|
|
buffer[MAX_LOGF_ENTRY-1] = '>';
|
|
|
|
else if (logfbuffer[index][MAX_LOGF_ENTRY] == LOGF_TERMINATE_MULTI_LINE)
|
|
|
|
buffer[MAX_LOGF_ENTRY-1] = '\0';
|
2020-10-26 16:38:22 +00:00
|
|
|
|
2009-02-07 13:52:03 +00:00
|
|
|
buffer[COLUMNS] = '\0';
|
2020-10-26 16:38:22 +00:00
|
|
|
|
2009-02-07 13:52:03 +00:00
|
|
|
lcd_puts(0, i, buffer);
|
|
|
|
}
|
2020-10-26 16:38:22 +00:00
|
|
|
|
2009-02-07 13:52:03 +00:00
|
|
|
button = button_get(false);
|
|
|
|
if(button == SYS_USB_CONNECTED)
|
|
|
|
usb_acknowledge(SYS_USB_CONNECTED_ACK);
|
|
|
|
else if(button == SYS_USB_DISCONNECTED)
|
2011-01-18 14:10:06 +00:00
|
|
|
;
|
2009-02-07 13:52:03 +00:00
|
|
|
else if(button & LOGF_UP)
|
|
|
|
user_index++;
|
|
|
|
else if(button & LOGF_DOWN)
|
|
|
|
user_index--;
|
|
|
|
else if(button & LOGF_CLEAR)
|
|
|
|
user_index = 0;
|
|
|
|
#ifdef HAVE_TOUCHSCREEN
|
2009-02-26 21:07:27 +00:00
|
|
|
else if(button & BUTTON_TOUCHSCREEN)
|
2009-02-07 13:52:03 +00:00
|
|
|
{
|
|
|
|
touch = button_get_data();
|
2020-10-26 16:38:22 +00:00
|
|
|
|
2009-02-07 13:52:03 +00:00
|
|
|
if(button & BUTTON_REL)
|
|
|
|
prev_y = 0;
|
2020-10-26 16:38:22 +00:00
|
|
|
|
2009-02-07 13:52:03 +00:00
|
|
|
if(prev_y != 0)
|
|
|
|
user_index += (prev_y - (touch & 0xFFFF)) / SYSFONT_HEIGHT;
|
|
|
|
prev_y = touch & 0xFFFF;
|
|
|
|
}
|
|
|
|
#endif
|
2020-10-26 16:38:22 +00:00
|
|
|
|
2009-02-07 13:52:03 +00:00
|
|
|
lcd_update();
|
|
|
|
sleep(HZ/16);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
#endif
|
2016-05-01 23:17:05 +00:00
|
|
|
#endif
|