1 /***************************************************************************
3 * Open \______ \ ____ ____ | | _\_ |__ _______ ___
4 * Source | _// _ \_/ ___\| |/ /| __ \ / _ \ \/ /
5 * Jukebox | | ( <_> ) \___| < | \_\ ( <_> > < <
6 * Firmware |____|_ /\____/ \___ >__|_ \|___ /\____/__/\_ \
10 * Copyright (C) 2009 by Bob Cousins, Lyre Project
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 ****************************************************************************/
22 /* Include Standard files */
36 #include "backlight.h"
43 #include "backlight-target.h"
44 #include "lcd-target.h"
45 #include "debug-target.h"
46 #include "dma-target.h"
47 #include "uart-s3c2440.h"
48 #include "led-mini2440.h"
54 unsigned char* loadbuffer
;
57 int(*kernel_entry
)(void);
61 /* NB: something in system_init() prevents H-JTAG from downloading */
64 /* enable_interrupt(IRQ_FIQ_STATUS); */
67 lcd_setfont(FONT_SYSFIXED
);
72 uart_init_device(DEBUG_UART_PORT
);
74 /* mini2440_test(); */
76 /* Show debug messages if button is pressed */
78 if(button_read_device(&touch_data
) & BUTTON_MENU
)
81 printf("Rockbox boot loader");
82 printf("Version " RBVERSION
);
88 error(EATA
, rc
, true);
92 rc
= disk_mount_all();
95 error(EDISK
,rc
, true);
98 printf("Loading firmware");
100 /* Flush out anything pending first */
101 cpucache_invalidate();
103 loadbuffer
= (unsigned char*) 0x31000000;
104 buffer_size
= (unsigned char*)0x31400000 - loadbuffer
;
106 rc
= load_firmware(loadbuffer
, BOOTFILE
, buffer_size
);
108 error(EBOOTFILE
, rc
, true);
110 printf("Loaded firmware %d\n", rc
);
112 /* storage_close(); */
113 system_prepare_fw_start();
117 cpucache_invalidate();
118 kernel_entry
= (void*) loadbuffer
;
122 /* end stop - should not get here */
123 led_flash(LED_ALL
, LED_NONE
);
124 while (1); /* avoid warning */