blob: 03c1bf9964e0827a2e725f91e9d71261c64b34f6 [file] [log] [blame]
Barry Wardell84b509d2007-01-28 18:42:11 +00001/***************************************************************************
2 * __________ __ ___.
3 * Open \______ \ ____ ____ | | _\_ |__ _______ ___
4 * Source | _// _ \_/ ___\| |/ /| __ \ / _ \ \/ /
5 * Jukebox | | ( <_> ) \___| < | \_\ ( <_> > < <
6 * Firmware |____|_ /\____/ \___ >__|_ \|___ /\____/__/\_ \
7 * \/ \/ \/ \/ \/
8 * $Id: main.c 11997 2007-01-13 09:08:18Z miipekk $
9 *
10 * Copyright (C) 2005 by Linus Nielsen Feltzing
11 *
Daniel Stenberg2acc0ac2008-06-28 18:10:04 +000012 * This program is free software; you can redistribute it and/or
13 * modify it under the terms of the GNU General Public License
14 * as published by the Free Software Foundation; either version 2
15 * of the License, or (at your option) any later version.
Barry Wardell84b509d2007-01-28 18:42:11 +000016 *
17 * This software is distributed on an "AS IS" basis, WITHOUT WARRANTY OF ANY
18 * KIND, either express or implied.
19 *
20 ****************************************************************************/
21#include "lcd.h"
22#include "lcd-remote.h"
23#include "font.h"
24#include "system.h"
25#include <stdarg.h>
26#include <stdio.h>
Dave Chapman4d25bff2007-03-05 23:56:28 +000027#include <stdbool.h>
Barry Wardell84b509d2007-01-28 18:42:11 +000028#include "cpu.h"
29#include "common.h"
Barry Wardell23709982007-03-12 22:12:20 +000030#include "power.h"
31#include "kernel.h"
Björn Stenbergb69be102008-11-23 22:07:48 +000032#include "config.h"
Maurus Cuelenaerec33209e2009-02-07 13:52:03 +000033#include "logf.h"
34#include "button.h"
35#include "string.h"
36#include "usb.h"
Nils Wallménius47608e02009-08-19 22:15:45 +000037#include "file.h"
Marcin Bukat0b296912012-03-04 15:34:29 +010038#include "loader_strerror.h"
39#if defined(MI4_FORMAT)
40#include "mi4-loader.h"
41#elif defined(RKW_FORMAT)
42#include "rkw-loader.h"
43#else
44#include "rb-loader.h"
45#endif
Barry Wardell84b509d2007-01-28 18:42:11 +000046
Dave Chapman4d25bff2007-03-05 23:56:28 +000047/* TODO: Other bootloaders need to be adjusted to set this variable to true
Szymon Dziok492fafe2010-03-23 21:28:25 +000048 on a button press - currently only the ipod, H10, Vibe 500 and Sansa versions do. */
Jens Arnoldc41470d2007-09-12 22:21:03 +000049#if defined(IPOD_ARCH) || defined(IRIVER_H10) || defined(IRIVER_H10_5GB) \
Mark Arigob4275d42008-05-21 03:55:17 +000050 || defined(SANSA_E200) || defined(SANSA_C200) || defined(GIGABEAT_F) \
Rafaël Carrédee432f2010-03-28 04:10:40 +000051 || (CONFIG_CPU == AS3525) || (CONFIG_CPU == AS3525v2) || defined(COWON_D2) \
Mark Arigo6908cc52009-12-25 04:05:01 +000052 || defined(MROBE_100) || defined(MROBE_500) \
53 || defined(SAMSUNG_YH925) || defined(SAMSUNG_YH920) \
54 || defined(SAMSUNG_YH820) || defined(PHILIPS_SA9200) \
55 || defined(PHILIPS_HDD1630) || defined(PHILIPS_HDD6330) \
Michael Sevakis863c03f2011-01-21 07:05:51 +000056 || defined(ONDA_VX747) || defined(PBELL_VIBE500) \
Solomon Peachyd4942cc2018-06-29 16:09:28 -040057 || defined(TOSHIBA_GIGABEAT_S) || defined(XDUOO_X3) \
58 || defined(IHIFI770) || defined(IHIFI770C) || defined(IHIFI800)
Dave Chapman4d25bff2007-03-05 23:56:28 +000059bool verbose = false;
60#else
61bool verbose = true;
62#endif
63
Amaury Pouly1d121e82017-02-23 11:33:19 +010064#if !(CONFIG_PLATFORM & PLATFORM_HOSTED)
Barry Wardell84b509d2007-01-28 18:42:11 +000065int line = 0;
66#ifdef HAVE_REMOTE_LCD
67int remote_line = 0;
68#endif
69
Barry Wardell84b509d2007-01-28 18:42:11 +000070void reset_screen(void)
71{
72 lcd_clear_display();
73 line = 0;
74#ifdef HAVE_REMOTE_LCD
75 lcd_remote_clear_display();
76 remote_line = 0;
77#endif
78}
79
Thomas Martitz240923a2010-08-02 20:34:47 +000080int printf(const char *format, ...)
Barry Wardell84b509d2007-01-28 18:42:11 +000081{
Rafaël Carrée5955822011-07-02 02:49:15 +000082 static char printfbuf[256];
Barry Wardell84b509d2007-01-28 18:42:11 +000083 int len;
84 unsigned char *ptr;
85 va_list ap;
86 va_start(ap, format);
87
88 ptr = printfbuf;
89 len = vsnprintf(ptr, sizeof(printfbuf), format, ap);
90 va_end(ap);
91
92 lcd_puts(0, line++, ptr);
Dave Chapman4d25bff2007-03-05 23:56:28 +000093 if (verbose)
94 lcd_update();
Barry Wardell84b509d2007-01-28 18:42:11 +000095 if(line >= LCD_HEIGHT/SYSFONT_HEIGHT)
96 line = 0;
97#ifdef HAVE_REMOTE_LCD
98 lcd_remote_puts(0, remote_line++, ptr);
Dave Chapman4d25bff2007-03-05 23:56:28 +000099 if (verbose)
100 lcd_remote_update();
Barry Wardell84b509d2007-01-28 18:42:11 +0000101 if(remote_line >= LCD_REMOTE_HEIGHT/SYSFONT_HEIGHT)
102 remote_line = 0;
103#endif
Thomas Martitz240923a2010-08-02 20:34:47 +0000104 return len;
Barry Wardell84b509d2007-01-28 18:42:11 +0000105}
Amaury Pouly1d121e82017-02-23 11:33:19 +0100106#endif
Barry Wardell84b509d2007-01-28 18:42:11 +0000107
Rafaël Carré1ec82122010-06-23 05:08:36 +0000108void error(int errortype, int error, bool shutdown)
Barry Wardell23709982007-03-12 22:12:20 +0000109{
110 switch(errortype)
111 {
112 case EATA:
113 printf("ATA error: %d", error);
114 break;
115
116 case EDISK:
117 printf("No partition found");
118 break;
119
120 case EBOOTFILE:
Marcin Bukat0b296912012-03-04 15:34:29 +0100121 printf(loader_strerror(error));
Barry Wardell23709982007-03-12 22:12:20 +0000122 break;
123 }
124
125 lcd_update();
126 sleep(5*HZ);
Marcin Bukat0b296912012-03-04 15:34:29 +0100127
Rafaël Carré1ec82122010-06-23 05:08:36 +0000128 if(shutdown)
129 power_off();
Barry Wardell23709982007-03-12 22:12:20 +0000130}
131
Barry Wardell84b509d2007-01-28 18:42:11 +0000132/* Load raw binary image. */
133int load_raw_firmware(unsigned char* buf, char* firmware, int buffer_size)
134{
135 int fd;
136 int rc;
137 int len;
138 char filename[MAX_PATH];
139
140 snprintf(filename,sizeof(filename),"%s",firmware);
141 fd = open(filename, O_RDONLY);
142 if(fd < 0)
143 {
144 return EFILE_NOT_FOUND;
145 }
146
147 len = filesize(fd);
148
149 if (len > buffer_size)
150 return EFILE_TOO_BIG;
151
152 rc = read(fd, buf, len);
153 if(rc < len)
154 return EREAD_IMAGE_FAILED;
155
156 close(fd);
157 return len;
158}
159
Cástor Muñozc31fcdd2016-05-02 01:17:05 +0200160/* FIXME?: unused broken code */
161#if 0
Maurus Cuelenaerec33209e2009-02-07 13:52:03 +0000162#ifdef ROCKBOX_HAS_LOGF /* Logf display helper for the bootloader */
163
164#define LINES (LCD_HEIGHT/SYSFONT_HEIGHT)
165#define COLUMNS ((LCD_WIDTH/SYSFONT_WIDTH) > MAX_LOGF_ENTRY ? \
166 MAX_LOGF_ENTRY : (LCD_WIDTH/SYSFONT_WIDTH))
167
168#ifdef ONDA_VX747
169#define LOGF_UP BUTTON_VOL_UP
170#define LOGF_DOWN BUTTON_VOL_DOWN
171#define LOGF_CLEAR BUTTON_MENU
172#else
173#warning No keymap defined for this target
174#endif
175
176void display_logf(void) /* Doesn't return! */
177{
178 int i, index, button, user_index=0;
179#ifdef HAVE_TOUCHSCREEN
180 int touch, prev_y=0;
181#endif
182 char buffer[COLUMNS+1];
183
184 while(1)
185 {
186 index = logfindex + user_index;
187
188 lcd_clear_display();
189 for(i = LINES-1; i>=0; i--)
190 {
191 if(--index < 0)
192 {
193 if(logfwrap)
194 index = MAX_LOGF_LINES-1;
195 else
196 break; /* done */
197 }
198
199 memcpy(buffer, logfbuffer[index], COLUMNS);
200
201 if (logfbuffer[index][MAX_LOGF_ENTRY] == LOGF_TERMINATE_CONTINUE_LINE)
202 buffer[MAX_LOGF_ENTRY-1] = '>';
203 else if (logfbuffer[index][MAX_LOGF_ENTRY] == LOGF_TERMINATE_MULTI_LINE)
204 buffer[MAX_LOGF_ENTRY-1] = '\0';
205
206 buffer[COLUMNS] = '\0';
207
208 lcd_puts(0, i, buffer);
209 }
210
211 button = button_get(false);
212 if(button == SYS_USB_CONNECTED)
213 usb_acknowledge(SYS_USB_CONNECTED_ACK);
214 else if(button == SYS_USB_DISCONNECTED)
Michael Sevakis453550a2011-01-18 14:10:06 +0000215 ;
Maurus Cuelenaerec33209e2009-02-07 13:52:03 +0000216 else if(button & LOGF_UP)
217 user_index++;
218 else if(button & LOGF_DOWN)
219 user_index--;
220 else if(button & LOGF_CLEAR)
221 user_index = 0;
222#ifdef HAVE_TOUCHSCREEN
Maurus Cuelenaere935fad72009-02-26 21:07:27 +0000223 else if(button & BUTTON_TOUCHSCREEN)
Maurus Cuelenaerec33209e2009-02-07 13:52:03 +0000224 {
225 touch = button_get_data();
226
227 if(button & BUTTON_REL)
228 prev_y = 0;
229
230 if(prev_y != 0)
231 user_index += (prev_y - (touch & 0xFFFF)) / SYSFONT_HEIGHT;
232 prev_y = touch & 0xFFFF;
233 }
234#endif
235
236 lcd_update();
237 sleep(HZ/16);
238 }
239}
240#endif
Cástor Muñozc31fcdd2016-05-02 01:17:05 +0200241#endif