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"
37 extern int show_logo(void);
38 extern void power_off(void);
40 static void show_splash(int timeout
, const char *msg
)
43 lcd_putsxy( (LCD_WIDTH
- (SYSFONT_WIDTH
* strlen(msg
))) / 2,
44 (LCD_HEIGHT
- SYSFONT_HEIGHT
) / 2, msg
);
50 static void usb_mode(void)
56 usb_start_monitoring();
58 /* Wait for threads to connect */
59 show_splash(HZ
/2, "Waiting for USB");
63 button
= button_get_w_tmo(HZ
/2);
65 if (button
== SYS_USB_CONNECTED
)
69 if (button
== SYS_USB_CONNECTED
)
71 /* Got the message - wait for disconnect */
72 show_splash(0, "Bootloader USB mode");
74 usb_acknowledge(SYS_USB_CONNECTED_ACK
);
78 button
= button_get(true);
79 if (button
== SYS_USB_DISCONNECTED
)
81 usb_acknowledge(SYS_USB_DISCONNECTED_ACK
);
88 static int boot_of(void)
90 int fd
, rc
, len
, i
, checksum
= 0;
91 void (*kernel_entry
)(int, void*, void*);
93 printf("Mounting disk...");
94 rc
= disk_mount_all();
98 /* TODO: get this from the NAND flash instead of SD */
99 fd
= open("/ccpmp.bin", O_RDONLY
);
101 return EFILE_NOT_FOUND
;
103 lseek(fd
, 4, SEEK_SET
);
104 rc
= read(fd
, (char*)&len
, 4); /* CPU is LE */
106 return EREAD_IMAGE_FAILED
;
109 printf("Reading %d bytes...", len
);
111 lseek(fd
, 0, SEEK_SET
);
112 rc
= read(fd
, (void*)0x80004000, len
);
114 return EREAD_IMAGE_FAILED
;
119 checksum
+= ((unsigned char*)0x80004000)[i
];
121 *((unsigned int*)0x80004000) = checksum
;
123 printf("Starting the OF...");
125 /* OF requires all clocks on */
129 __dcache_writeback_all();
130 __icache_invalidate_all();
132 for(i
=8000; i
>0; i
--)
133 asm volatile("nop\n");
135 kernel_entry
= (void*) 0x80004008;
136 kernel_entry(0, "Jan 10 2008", "15:34:42"); /* Reversed from the SPL */
138 return 0; /* Shouldn't happen */
141 static int boot_rockbox(void)
144 void (*kernel_entry
)(void);
146 printf("Mounting disk...");
147 rc
= disk_mount_all();
151 printf("Loading firmware...");
152 rc
= load_firmware((unsigned char *)CONFIG_SDRAM_START
, BOOTFILE
, 0x400000);
157 printf("Starting Rockbox...");
158 adc_close(); /* Disable SADC, seems to fix the re-init Rockbox does */
161 kernel_entry
= (void*) CONFIG_SDRAM_START
;
164 return 0; /* Shouldn't happen */
168 static void reset_configuration(void)
172 rc
= disk_mount_all();
176 if(rename(ROCKBOX_DIR
"/config.cfg", ROCKBOX_DIR
"/config.old") == 0)
177 show_splash(HZ
/2, "Configuration reset successfully!");
179 show_splash(HZ
/2, "Couldn't reset configuration!");
182 #define RECT_X (LCD_WIDTH/8)
183 #define RECT_Y(i) (LCD_HEIGHT/20 + LCD_HEIGHT/10*i + RECT_HEIGHT*i)
184 #define RECT_WIDTH (LCD_WIDTH*3/4)
185 #define RECT_HEIGHT (LCD_HEIGHT/ARRAYLEN(strings) - LCD_HEIGHT/10)
186 #define TEXT_X(i) (RECT_X + RECT_WIDTH/2 - strlen(strings[i])*SYSFONT_WIDTH/2)
187 #define TEXT_Y(i) (RECT_Y(i) + RECT_HEIGHT/2 - SYSFONT_HEIGHT/2)
188 static int boot_menu(void)
190 const char* strings
[] = {"Boot Rockbox", "Boot OF", "USB mode", "Reset Rockbox configuration"};
191 int button
, touch
, poweroff_repeat
= 0;
199 for(i
=0; i
<ARRAYLEN(strings
); i
++)
201 lcd_drawrect(RECT_X
, RECT_Y(i
), RECT_WIDTH
, RECT_HEIGHT
);
202 lcd_putsxy(TEXT_X(i
), TEXT_Y(i
), strings
[i
]);
208 button
= button_get_w_tmo(HZ
/4);
209 if(button
& BUTTON_TOUCHSCREEN
)
211 touch
= button_get_data();
212 unsigned int x
= touch
& 0xFFFF, y
= touch
>> 16;
214 for(i
=0; i
<ARRAYLEN(strings
); i
++)
216 if(x
> RECT_X
&& x
< RECT_X
+RECT_WIDTH
&&
217 y
> RECT_Y(i
) && y
< RECT_Y(i
)+RECT_HEIGHT
)
238 reset_configuration();
245 else if(button
& BUTTON_POWER
)
247 if(poweroff_repeat
++ > 8)
258 #ifdef HAVE_TOUCHSCREEN
265 lcd_setfont(FONT_SYSFIXED
);
275 /* Don't mount the disks yet, there could be file system/partition errors
276 which are fixable in USB mode */
278 #ifdef HAVE_TOUCHSCREEN
279 rc
= button_read_device(&dummy
);
281 rc
= button_read_device();
288 if(rc
& BUTTON_VOL_UP
||
298 printf(MODEL_NAME
" Rockbox Bootloader");
299 printf("Version "APPSVERSION
);
301 #ifdef HAS_BUTTON_HOLD
309 printf("Error: %s", strerror(rc
));