1 /***************************************************************************
3 * Open \______ \ ____ ____ | | _\_ |__ _______ ___
4 * Source | _// _ \_/ ___\| |/ /| __ \ / _ \ \/ /
5 * Jukebox | | ( <_> ) \___| < | \_\ ( <_> > < <
6 * Firmware |____|_ /\____/ \___ >__|_ \|___ /\____/__/\_ \
10 * Copyright (C) 2008 by Maurus Cuelenaere
12 * 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.
17 * This software is distributed on an "AS IS" basis, WITHOUT WARRANTY OF ANY
18 * KIND, either express or implied.
20 ****************************************************************************/
24 #include "backlight.h"
38 extern void show_logo(void);
39 extern void power_off(void);
41 static void show_splash(int timeout
, const char *msg
)
44 lcd_putsxy( (LCD_WIDTH
- (SYSFONT_WIDTH
* strlen(msg
))) / 2,
45 (LCD_HEIGHT
- SYSFONT_HEIGHT
) / 2, msg
);
51 static void usb_mode(void)
57 usb_start_monitoring();
59 /* Wait for threads to connect */
60 show_splash(HZ
/2, "Waiting for USB");
64 button
= button_get_w_tmo(HZ
/2);
66 if (button
== SYS_USB_CONNECTED
)
70 if (button
== SYS_USB_CONNECTED
)
72 /* Got the message - wait for disconnect */
73 show_splash(0, "Bootloader USB mode");
75 usb_acknowledge(SYS_USB_CONNECTED_ACK
);
79 button
= button_get(true);
80 if (button
== SYS_USB_DISCONNECTED
)
86 static int boot_of(void)
88 int fd
, rc
, len
, i
, checksum
= 0;
89 void (*kernel_entry
)(int, void*, void*);
91 printf("Mounting disk...");
92 rc
= disk_mount_all();
94 error(EDISK
, rc
, true);
96 /* TODO: get this from the NAND flash instead of SD */
97 fd
= open("/ccpmp.bin", O_RDONLY
);
99 return EFILE_NOT_FOUND
;
101 lseek(fd
, 4, SEEK_SET
);
102 rc
= read(fd
, (char*)&len
, 4); /* CPU is LE */
104 return EREAD_IMAGE_FAILED
;
107 printf("Reading %d bytes...", len
);
109 lseek(fd
, 0, SEEK_SET
);
110 rc
= read(fd
, (void*)0x80004000, len
);
112 return EREAD_IMAGE_FAILED
;
117 checksum
+= ((unsigned char*)0x80004000)[i
];
119 *((unsigned int*)0x80004000) = checksum
;
121 printf("Starting the OF...");
123 /* OF requires all clocks on */
127 __dcache_writeback_all();
128 __icache_invalidate_all();
130 for(i
=8000; i
>0; i
--)
131 asm volatile("nop\n");
133 kernel_entry
= (void*) 0x80004008;
134 kernel_entry(0, "Jan 10 2008", "15:34:42"); /* Reversed from the SPL */
136 return 0; /* Shouldn't happen */
139 static int boot_rockbox(void)
142 void (*kernel_entry
)(void);
144 printf("Mounting disk...");
145 rc
= disk_mount_all();
147 error(EDISK
,rc
, true);
149 printf("Loading firmware...");
150 rc
= load_firmware((unsigned char *)CONFIG_SDRAM_START
, BOOTFILE
, 0x400000);
155 printf("Starting Rockbox...");
156 adc_close(); /* Disable SADC, seems to fix the re-init Rockbox does */
159 kernel_entry
= (void*) CONFIG_SDRAM_START
;
162 return 0; /* Shouldn't happen */
166 static void reset_configuration(void)
170 rc
= disk_mount_all();
172 error(EDISK
,rc
, true);
174 if(rename(ROCKBOX_DIR
"/config.cfg", ROCKBOX_DIR
"/config.old") == 0)
175 show_splash(HZ
/2, "Configuration reset successfully!");
177 show_splash(HZ
/2, "Couldn't reset configuration!");
180 #define RECT_X (LCD_WIDTH/8)
181 #define RECT_Y(i) (LCD_HEIGHT/20 + LCD_HEIGHT/10*i + RECT_HEIGHT*i)
182 #define RECT_WIDTH (LCD_WIDTH*3/4)
183 #define RECT_HEIGHT (LCD_HEIGHT/ARRAYLEN(strings) - LCD_HEIGHT/10)
184 #define TEXT_X(i) (RECT_X + RECT_WIDTH/2 - strlen(strings[i])*SYSFONT_WIDTH/2)
185 #define TEXT_Y(i) (RECT_Y(i) + RECT_HEIGHT/2 - SYSFONT_HEIGHT/2)
186 static int boot_menu(void)
188 const char* strings
[] = {"Boot Rockbox", "Boot OF", "USB mode", "Reset Rockbox configuration"};
189 int button
, touch
, poweroff_repeat
= 0;
197 for(i
=0; i
<ARRAYLEN(strings
); i
++)
199 lcd_drawrect(RECT_X
, RECT_Y(i
), RECT_WIDTH
, RECT_HEIGHT
);
200 lcd_putsxy(TEXT_X(i
), TEXT_Y(i
), strings
[i
]);
206 button
= button_get_w_tmo(HZ
/4);
207 if(button
& BUTTON_TOUCHSCREEN
)
209 touch
= button_get_data();
210 unsigned int x
= touch
& 0xFFFF, y
= touch
>> 16;
212 for(i
=0; i
<ARRAYLEN(strings
); i
++)
214 if(x
> RECT_X
&& x
< RECT_X
+RECT_WIDTH
&&
215 y
> RECT_Y(i
) && y
< RECT_Y(i
)+RECT_HEIGHT
)
236 reset_configuration();
243 else if(button
& BUTTON_POWER
)
245 if(poweroff_repeat
++ > 8)
256 #ifdef HAVE_TOUCHSCREEN
263 lcd_setfont(FONT_SYSFIXED
);
271 error(EATA
, rc
, true);
273 /* Don't mount the disks yet, there could be file system/partition errors
274 which are fixable in USB mode */
276 #ifdef HAVE_TOUCHSCREEN
277 rc
= button_read_device(&dummy
);
279 rc
= button_read_device();
286 if(rc
& BUTTON_VOL_UP
||
296 printf(MODEL_NAME
" Rockbox Bootloader");
297 printf("Version " RBVERSION
);
299 #ifdef HAS_BUTTON_HOLD
307 printf("Error: %s", strerror(rc
));