blob: 207d74ae9cf41eee86c810cffc7297134eff24f2 [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"
Barry Wardell84b509d2007-01-28 18:42:11 +000038
Dave Chapman4d25bff2007-03-05 23:56:28 +000039/* TODO: Other bootloaders need to be adjusted to set this variable to true
Szymon Dziok492fafe2010-03-23 21:28:25 +000040 on a button press - currently only the ipod, H10, Vibe 500 and Sansa versions do. */
Jens Arnoldc41470d2007-09-12 22:21:03 +000041#if defined(IPOD_ARCH) || defined(IRIVER_H10) || defined(IRIVER_H10_5GB) \
Mark Arigob4275d42008-05-21 03:55:17 +000042 || defined(SANSA_E200) || defined(SANSA_C200) || defined(GIGABEAT_F) \
Rafaël Carrédee432f2010-03-28 04:10:40 +000043 || (CONFIG_CPU == AS3525) || (CONFIG_CPU == AS3525v2) || defined(COWON_D2) \
Mark Arigo6908cc52009-12-25 04:05:01 +000044 || defined(MROBE_100) || defined(MROBE_500) \
45 || defined(SAMSUNG_YH925) || defined(SAMSUNG_YH920) \
46 || defined(SAMSUNG_YH820) || defined(PHILIPS_SA9200) \
47 || defined(PHILIPS_HDD1630) || defined(PHILIPS_HDD6330) \
Michael Sevakis863c03f2011-01-21 07:05:51 +000048 || defined(ONDA_VX747) || defined(PBELL_VIBE500) \
49 || defined(TOSHIBA_GIGABEAT_S)
Dave Chapman4d25bff2007-03-05 23:56:28 +000050bool verbose = false;
51#else
52bool verbose = true;
53#endif
54
Barry Wardell84b509d2007-01-28 18:42:11 +000055int line = 0;
56#ifdef HAVE_REMOTE_LCD
57int remote_line = 0;
58#endif
59
Barry Wardell84b509d2007-01-28 18:42:11 +000060void reset_screen(void)
61{
62 lcd_clear_display();
63 line = 0;
64#ifdef HAVE_REMOTE_LCD
65 lcd_remote_clear_display();
66 remote_line = 0;
67#endif
68}
69
Thomas Martitz240923a2010-08-02 20:34:47 +000070int printf(const char *format, ...)
Barry Wardell84b509d2007-01-28 18:42:11 +000071{
Rafaël Carrée5955822011-07-02 02:49:15 +000072 static char printfbuf[256];
Barry Wardell84b509d2007-01-28 18:42:11 +000073 int len;
74 unsigned char *ptr;
75 va_list ap;
76 va_start(ap, format);
77
78 ptr = printfbuf;
79 len = vsnprintf(ptr, sizeof(printfbuf), format, ap);
80 va_end(ap);
81
82 lcd_puts(0, line++, ptr);
Dave Chapman4d25bff2007-03-05 23:56:28 +000083 if (verbose)
84 lcd_update();
Barry Wardell84b509d2007-01-28 18:42:11 +000085 if(line >= LCD_HEIGHT/SYSFONT_HEIGHT)
86 line = 0;
87#ifdef HAVE_REMOTE_LCD
88 lcd_remote_puts(0, remote_line++, ptr);
Dave Chapman4d25bff2007-03-05 23:56:28 +000089 if (verbose)
90 lcd_remote_update();
Barry Wardell84b509d2007-01-28 18:42:11 +000091 if(remote_line >= LCD_REMOTE_HEIGHT/SYSFONT_HEIGHT)
92 remote_line = 0;
93#endif
Thomas Martitz240923a2010-08-02 20:34:47 +000094 return len;
Barry Wardell84b509d2007-01-28 18:42:11 +000095}
96
97char *strerror(int error)
98{
99 switch(error)
100 {
101 case EOK:
102 return "OK";
103 case EFILE_NOT_FOUND:
104 return "File not found";
105 case EREAD_CHKSUM_FAILED:
106 return "Read failed (chksum)";
107 case EREAD_MODEL_FAILED:
108 return "Read failed (model)";
109 case EREAD_IMAGE_FAILED:
110 return "Read failed (image)";
111 case EBAD_CHKSUM:
112 return "Bad checksum";
113 case EFILE_TOO_BIG:
114 return "File too big";
Barry Wardell14ed3ca2007-03-16 14:28:00 +0000115 case EINVALID_FORMAT:
116 return "Invalid file format";
Barry Wardell84b509d2007-01-28 18:42:11 +0000117 default:
118 return "Unknown";
119 }
120}
121
Rafaël Carré1ec82122010-06-23 05:08:36 +0000122void error(int errortype, int error, bool shutdown)
Barry Wardell23709982007-03-12 22:12:20 +0000123{
124 switch(errortype)
125 {
126 case EATA:
127 printf("ATA error: %d", error);
128 break;
129
130 case EDISK:
131 printf("No partition found");
132 break;
133
134 case EBOOTFILE:
135 printf(strerror(error));
136 break;
137 }
138
139 lcd_update();
140 sleep(5*HZ);
Rafaël Carré1ec82122010-06-23 05:08:36 +0000141 if(shutdown)
142 power_off();
Barry Wardell23709982007-03-12 22:12:20 +0000143}
144
Barry Wardell84b509d2007-01-28 18:42:11 +0000145/* Load firmware image in a format created by tools/scramble */
146int load_firmware(unsigned char* buf, char* firmware, int buffer_size)
147{
148 int fd;
149 int rc;
150 int len;
151 unsigned long chksum;
152 char model[5];
153 unsigned long sum;
154 int i;
155 char filename[MAX_PATH];
156
Björn Stenbergb69be102008-11-23 22:07:48 +0000157 snprintf(filename,sizeof(filename), BOOTDIR "/%s",firmware);
Barry Wardell84b509d2007-01-28 18:42:11 +0000158 fd = open(filename, O_RDONLY);
159 if(fd < 0)
160 {
161 snprintf(filename,sizeof(filename),"/%s",firmware);
162 fd = open(filename, O_RDONLY);
163 if(fd < 0)
164 return EFILE_NOT_FOUND;
165 }
166
167 len = filesize(fd) - 8;
168
169 printf("Length: %x", len);
170
171 if (len > buffer_size)
172 return EFILE_TOO_BIG;
173
174 lseek(fd, FIRMWARE_OFFSET_FILE_CRC, SEEK_SET);
175
176 rc = read(fd, &chksum, 4);
177 chksum=betoh32(chksum); /* Rockbox checksums are big-endian */
178 if(rc < 4)
179 return EREAD_CHKSUM_FAILED;
180
181 printf("Checksum: %x", chksum);
182
183 rc = read(fd, model, 4);
184 if(rc < 4)
185 return EREAD_MODEL_FAILED;
186
Rafaël Carrée5955822011-07-02 02:49:15 +0000187 model[4] = '\0';
Barry Wardell84b509d2007-01-28 18:42:11 +0000188
189 printf("Model name: %s", model);
190 printf("Loading %s", firmware);
191
192 lseek(fd, FIRMWARE_OFFSET_FILE_DATA, SEEK_SET);
193
194 rc = read(fd, buf, len);
195 if(rc < len)
196 return EREAD_IMAGE_FAILED;
197
198 close(fd);
199
200 sum = MODEL_NUMBER;
201
202 for(i = 0;i < len;i++) {
203 sum += buf[i];
204 }
205
206 printf("Sum: %x", sum);
207
208 if(sum != chksum)
209 return EBAD_CHKSUM;
210
Linus Nielsen Feltzing46597c92007-02-22 15:09:49 +0000211 return EOK;
Barry Wardell84b509d2007-01-28 18:42:11 +0000212}
213
214/* Load raw binary image. */
215int load_raw_firmware(unsigned char* buf, char* firmware, int buffer_size)
216{
217 int fd;
218 int rc;
219 int len;
220 char filename[MAX_PATH];
221
222 snprintf(filename,sizeof(filename),"%s",firmware);
223 fd = open(filename, O_RDONLY);
224 if(fd < 0)
225 {
226 return EFILE_NOT_FOUND;
227 }
228
229 len = filesize(fd);
230
231 if (len > buffer_size)
232 return EFILE_TOO_BIG;
233
234 rc = read(fd, buf, len);
235 if(rc < len)
236 return EREAD_IMAGE_FAILED;
237
238 close(fd);
239 return len;
240}
241
Maurus Cuelenaerec33209e2009-02-07 13:52:03 +0000242#ifdef ROCKBOX_HAS_LOGF /* Logf display helper for the bootloader */
243
244#define LINES (LCD_HEIGHT/SYSFONT_HEIGHT)
245#define COLUMNS ((LCD_WIDTH/SYSFONT_WIDTH) > MAX_LOGF_ENTRY ? \
246 MAX_LOGF_ENTRY : (LCD_WIDTH/SYSFONT_WIDTH))
247
248#ifdef ONDA_VX747
249#define LOGF_UP BUTTON_VOL_UP
250#define LOGF_DOWN BUTTON_VOL_DOWN
251#define LOGF_CLEAR BUTTON_MENU
252#else
253#warning No keymap defined for this target
254#endif
255
256void display_logf(void) /* Doesn't return! */
257{
258 int i, index, button, user_index=0;
259#ifdef HAVE_TOUCHSCREEN
260 int touch, prev_y=0;
261#endif
262 char buffer[COLUMNS+1];
263
264 while(1)
265 {
266 index = logfindex + user_index;
267
268 lcd_clear_display();
269 for(i = LINES-1; i>=0; i--)
270 {
271 if(--index < 0)
272 {
273 if(logfwrap)
274 index = MAX_LOGF_LINES-1;
275 else
276 break; /* done */
277 }
278
279 memcpy(buffer, logfbuffer[index], COLUMNS);
280
281 if (logfbuffer[index][MAX_LOGF_ENTRY] == LOGF_TERMINATE_CONTINUE_LINE)
282 buffer[MAX_LOGF_ENTRY-1] = '>';
283 else if (logfbuffer[index][MAX_LOGF_ENTRY] == LOGF_TERMINATE_MULTI_LINE)
284 buffer[MAX_LOGF_ENTRY-1] = '\0';
285
286 buffer[COLUMNS] = '\0';
287
288 lcd_puts(0, i, buffer);
289 }
290
291 button = button_get(false);
292 if(button == SYS_USB_CONNECTED)
293 usb_acknowledge(SYS_USB_CONNECTED_ACK);
294 else if(button == SYS_USB_DISCONNECTED)
Michael Sevakis453550a2011-01-18 14:10:06 +0000295 ;
Maurus Cuelenaerec33209e2009-02-07 13:52:03 +0000296 else if(button & LOGF_UP)
297 user_index++;
298 else if(button & LOGF_DOWN)
299 user_index--;
300 else if(button & LOGF_CLEAR)
301 user_index = 0;
302#ifdef HAVE_TOUCHSCREEN
Maurus Cuelenaere935fad72009-02-26 21:07:27 +0000303 else if(button & BUTTON_TOUCHSCREEN)
Maurus Cuelenaerec33209e2009-02-07 13:52:03 +0000304 {
305 touch = button_get_data();
306
307 if(button & BUTTON_REL)
308 prev_y = 0;
309
310 if(prev_y != 0)
311 user_index += (prev_y - (touch & 0xFFFF)) / SYSFONT_HEIGHT;
312 prev_y = touch & 0xFFFF;
313 }
314#endif
315
316 lcd_update();
317 sleep(HZ/16);
318 }
319}
320#endif