1 /***************************************************************************
3 * Open \______ \ ____ ____ | | _\_ |__ _______ ___
4 * Source | _// _ \_/ ___\| |/ /| __ \ / _ \ \/ /
5 * Jukebox | | ( <_> ) \___| < | \_\ ( <_> > < <
6 * Firmware |____|_ /\____/ \___ >__|_ \|___ /\____/__/\_ \
10 * Copyright (C) 2011 by amaury Pouly
12 * Based on Rockbox iriver bootloader by Linus Nielsen Feltzing
13 * and the ipodlinux bootloader by Daniel Palffy and Bernard Leach
15 * This program is free software; you can redistribute it and/or
16 * modify it under the terms of the GNU General Public License
17 * as published by the Free Software Foundation; either version 2
18 * of the License, or (at your option) any later version.
20 * This software is distributed on an "AS IS" basis, WITHOUT WARRANTY OF ANY
21 * KIND, either express or implied.
23 ****************************************************************************/
29 #include "gcc_extensions.h"
31 #include "backlight.h"
32 #include "button-target.h"
38 #include "system-target.h"
39 #include "fmradio_i2c.h"
42 #include "usb-target.h"
44 extern char loadaddress
[];
45 extern char loadaddressend
[];
47 #ifdef HAVE_BOOTLOADER_USB_MODE
48 static void usb_mode(int connect_timeout
)
53 usb_start_monitoring();
55 /* Wait for threads to connect or cable is pulled */
56 printf("USB: Connecting");
58 long end_tick
= current_tick
+ connect_timeout
;
62 button
= button_get_w_tmo(HZ
/10);
64 if(button
== SYS_USB_CONNECTED
)
67 if(TIME_AFTER(current_tick
, end_tick
))
69 /* Timed out waiting for the connect - will happen when connected
70 * to a charger through the USB port */
71 printf("USB: Timed out");
76 break; /* Cable pulled */
79 if(button
== SYS_USB_CONNECTED
)
81 /* Got the message - wait for disconnect */
82 printf("Bootloader USB mode");
84 usb_acknowledge(SYS_USB_CONNECTED_ACK
);
88 button
= button_get_w_tmo(HZ
/2);
89 if(button
== SYS_USB_DISCONNECTED
)
94 /* Put drivers initialized for USB connection into a known state */
97 #else /* !HAVE_BOOTLOADER_USB_MODE */
98 static void usb_mode(int connect_timeout
)
100 (void) connect_timeout
;
102 #endif /* HAVE_BOOTLOADER_USB_MODE */
104 void main(uint32_t arg
, uint32_t addr
) NORETURN_ATTR
;
105 void main(uint32_t arg
, uint32_t addr
)
107 unsigned char* loadbuffer
;
109 void(*kernel_entry
)(void);
126 //button_debug_screen();
127 printf("arg=%x addr=%x", arg
, addr
);
129 #ifdef SANSA_FUZEPLUS
130 extern void imx233_mmc_disable_window(void);
131 if(arg
== 0xfee1dead)
133 printf("Disable MMC window.");
134 imx233_mmc_disable_window();
138 ret
= storage_init();
140 error(EATA
, ret
, true);
142 /* NOTE: allow disk_init and disk_mount_all to fail since we can do USB after.
143 * We need this order to determine the correct logical sector size */
144 while(!disk_init(IF_MV(0)))
145 printf("disk_init failed!");
147 if((ret
= disk_mount_all()) <= 0)
148 error(EDISK
, ret
, false);
153 printf("Loading firmware");
155 loadbuffer
= (unsigned char*)loadaddress
;
156 buffer_size
= (int)(loadaddressend
- loadaddress
);
158 while((ret
= load_firmware(loadbuffer
, BOOTFILE
, buffer_size
)) < 0)
160 error(EBOOTFILE
, ret
, true);
163 kernel_entry
= (void*) loadbuffer
;
165 disable_interrupt(IRQ_FIQ_STATUS
);
166 commit_discard_idcache();
168 printf("ERR: Failed to boot");