1 /***************************************************************************
3 * Open \______ \ ____ ____ | | _\_ |__ _______ ___
4 * Source | _// _ \_/ ___\| |/ /| __ \ / _ \ \/ /
5 * Jukebox | | ( <_> ) \___| < | \_\ ( <_> > < <
6 * Firmware |____|_ /\____/ \___ >__|_ \|___ /\____/__/\_ \
10 * Copyright (C) 2005 by Dave Chapman
12 * Based on Rockbox iriver bootloader by Linus Nielsen Feltzing
13 * and the ipodlinux bootloader by Daniel Palffy and Bernard Leach
15 * All files in this archive are subject to the GNU General Public License.
16 * See the file COPYING in the source tree root for full license agreement.
18 * This software is distributed on an "AS IS" basis, WITHOUT WARRANTY OF ANY
19 * KIND, either express or implied.
21 ****************************************************************************/
38 #include "backlight.h"
48 /* Maximum allowed firmware image size. The largest known current
49 (December 2006) firmware is about 7.5MB (Apple's firmware for the ipod video)
50 so we set this to 8MB. */
51 #define MAX_LOADSIZE (8*1024*1024)
53 /* A buffer to load the Linux kernel or Rockbox into */
54 unsigned char *loadbuffer
= (unsigned char *)DRAM_START
;
56 /* Bootloader version */
57 char version
[] = APPSVERSION
;
61 #define BUTTON_RIGHT 3
65 #if CONFIG_KEYPAD == IPOD_4G_PAD && !defined(IPOD_MINI)
66 /* check if number of seconds has past */
67 int timer_check(int clock_start
, unsigned int usecs
)
69 if ((USEC_TIMER
- clock_start
) >= usecs
) {
76 static void ser_opto_keypad_cfg(int val
)
80 GPIOB_ENABLE
&=~ 0x80;
82 outl(inl(0x7000c104) | 0xc000000, 0x7000c104);
83 outl(val
, 0x7000c120);
84 outl(inl(0x7000c100) | 0x80000000, 0x7000c100);
86 GPIOB_OUTPUT_VAL
&=~ 0x10;
87 GPIOB_OUTPUT_EN
|= 0x10;
89 start_time
= USEC_TIMER
;
91 if ((inl(0x7000c104) & 0x80000000) == 0) {
94 } while (timer_check(start_time
, 1500) != 0);
96 outl(inl(0x7000c100) & ~0x80000000, 0x7000c100);
99 GPIOB_OUTPUT_VAL
|= 0x10;
100 GPIOB_OUTPUT_EN
&=~0x10;
102 outl(inl(0x7000c104) | 0xc000000, 0x7000c104);
103 outl(inl(0x7000c100) | 0x60000000, 0x7000c100);
106 int opto_keypad_read(void)
108 int loop_cnt
, had_io
= 0;
110 for (loop_cnt
= 5; loop_cnt
!= 0;)
114 unsigned int key_pad_val
;
116 ser_opto_keypad_cfg(0x8000023a);
118 start_time
= USEC_TIMER
;
120 if (inl(0x7000c104) & 0x4000000) {
128 } while (timer_check(start_time
, 1500) != 0);
130 key_pad_val
= inl(0x7000c140);
131 if ((key_pad_val
& ~0x7fff0000) != 0x8000023a) {
134 key_pad_val
= (key_pad_val
<< 11) >> 27;
138 outl(inl(0x7000c100) | 0x60000000, 0x7000c100);
139 outl(inl(0x7000c104) | 0xc000000, 0x7000c104);
141 if (key_pressed
!= 0) {
142 return key_pad_val
^ 0x1f;
150 static int key_pressed(void)
154 #if CONFIG_KEYPAD == IPOD_4G_PAD
155 #ifdef IPOD_MINI /* mini 1G only */
156 state
= GPIOA_INPUT_VAL
& 0x3f;
157 if ((state
& 0x10) == 0) return BUTTON_LEFT
;
158 if ((state
& 0x2) == 0) return BUTTON_MENU
;
159 if ((state
& 0x4) == 0) return BUTTON_PLAY
;
160 if ((state
& 0x8) == 0) return BUTTON_RIGHT
;
162 state
= opto_keypad_read();
163 if ((state
& 0x4) == 0) return BUTTON_LEFT
;
164 if ((state
& 0x10) == 0) return BUTTON_MENU
;
165 if ((state
& 0x8) == 0) return BUTTON_PLAY
;
166 if ((state
& 0x2) == 0) return BUTTON_RIGHT
;
168 #elif (CONFIG_KEYPAD == IPOD_3G_PAD) || (CONFIG_KEYPAD == IPOD_1G2G_PAD)
169 state
= GPIOA_INPUT_VAL
;
170 if ((state
& 0x08) == 0) return BUTTON_LEFT
;
171 if ((state
& 0x10) == 0) return BUTTON_MENU
;
172 if ((state
& 0x04) == 0) return BUTTON_PLAY
;
173 if ((state
& 0x01) == 0) return BUTTON_RIGHT
;
178 bool button_hold(void)
180 #if CONFIG_KEYPAD == IPOD_1G2G_PAD
181 return (GPIOA_INPUT_VAL
& 0x20);
183 return !(GPIOA_INPUT_VAL
& 0x20);
187 void fatal_error(void)
190 bool holdstatus
=false;
192 /* System font is 6 pixels wide */
193 #if defined(IPOD_1G2G) || defined(IPOD_3G)
194 printf("Hold MENU+PLAY to");
195 printf("reboot then REW+FF");
196 printf("for disk mode");
197 #elif LCD_WIDTH >= (30*6)
198 printf("Hold MENU+SELECT to reboot");
199 printf("then SELECT+PLAY for disk mode");
201 printf("Hold MENU+SELECT to");
202 printf("reboot then SELECT+PLAY");
203 printf("for disk mode");
208 if (button_hold() != holdstatus
) {
211 lcd_puts(0, line
, "Hold switch on!");
214 lcd_puts(0, line
, " ");
218 udelay(100000); /* 100ms */
231 bool button_was_held
;
232 struct partinfo
* pinfo
;
233 unsigned short* identify_info
;
235 /* Check the button hold status as soon as possible - to
236 give the user maximum chance to turn it off in order to
237 reset the settings in rockbox. */
238 button_was_held
= button_hold();
243 #ifndef HAVE_BACKLIGHT_INVERSION
244 backlight_init(); /* Turns on the backlight */
250 #ifdef HAVE_LCD_COLOR
251 lcd_set_foreground(LCD_WHITE
);
252 lcd_set_background(LCD_BLACK
);
257 /* ADC and button drivers are not yet implemented */
264 /* Enable bootloader messages */
265 if (btn
==BUTTON_RIGHT
)
268 lcd_setfont(FONT_SYSFIXED
);
270 printf("Rockbox boot loader");
271 printf("Version: %s", version
);
272 printf("IPOD version: 0x%08x", IPOD_HW_REVISION
);
276 identify_info
=ata_get_identify();
278 for (i
=0; i
< 20; i
++) {
279 ((unsigned short*)buf
)[i
]=htobe16(identify_info
[i
+27]);
282 for (i
=39; i
&& buf
[i
]==' '; i
--) {
287 printf("ATA: %d", i
);
291 rc
= disk_mount_all();
294 printf("No partition found");
298 pinfo
= disk_partinfo(1);
299 printf("Partition 1: 0x%02x %ld MB",
300 pinfo
->type
, pinfo
->size
/ 2048);
302 if (button_was_held
|| (btn
==BUTTON_MENU
)) {
303 /* If either the hold switch was on, or the Menu button was held, then
304 try the Apple firmware */
306 printf("Loading original firmware...");
308 /* First try an apple_os.ipod file on the FAT32 partition
309 (either in .rockbox or the root)
312 rc
=load_firmware(loadbuffer
, "apple_os.ipod", MAX_LOADSIZE
);
315 printf("apple_os.ipod loaded.");
316 return (void*)DRAM_START
;
317 } else if (rc
== EFILE_NOT_FOUND
) {
318 /* If apple_os.ipod doesn't exist, then check if there is an Apple
319 firmware image in RAM */
320 haveretailos
= (memcmp((void*)(DRAM_START
+0x20),"portalplayer",12)==0);
322 /* We have a copy of the retailos in RAM, lets just run it. */
323 return (void*)DRAM_START
;
325 } else if (rc
< EFILE_NOT_FOUND
) {
327 printf("Can't load apple_os.ipod:");
328 printf(strerror(rc
));
331 /* Everything failed - just loop forever */
332 printf("No RetailOS detected");
334 } else if (btn
==BUTTON_PLAY
) {
335 printf("Loading Linux...");
336 rc
=load_raw_firmware(loadbuffer
, "/linux.bin", MAX_LOADSIZE
);
339 printf("Can't load linux.bin:");
340 printf(strerror(rc
));
342 return (void*)DRAM_START
;
345 printf("Loading Rockbox...");
346 rc
=load_firmware(loadbuffer
, BOOTFILE
, MAX_LOADSIZE
);
349 printf("Can't load rockbox.ipod:");
350 printf(strerror(rc
));
352 printf("Rockbox loaded.");
353 return (void*)DRAM_START
;
357 /* If we get to here, then we haven't been able to load any firmware */
360 /* We never get here, but keep gcc happy */
364 /* These functions are present in the firmware library, but we reimplement
365 them here because the originals do a lot more than we want */
366 void usb_acknowledge(void)
370 void usb_wait_for_disconnect(void)