blob: 8860b42c4311d6ec931a1a574727d469bc1c89af [file] [log] [blame]
Linus Nielsen Feltzingc5df4f82007-02-23 09:30:09 +00001/***************************************************************************
2 * __________ __ ___.
3 * Open \______ \ ____ ____ | | _\_ |__ _______ ___
4 * Source | _// _ \_/ ___\| |/ /| __ \ / _ \ \/ /
5 * Jukebox | | ( <_> ) \___| < | \_\ ( <_> > < <
6 * Firmware |____|_ /\____/ \___ >__|_ \|___ /\____/__/\_ \
7 * \/ \/ \/ \/ \/
8 * $Id$
9 *
10 * Copyright (C) 2006 by Greg White
11 *
12 * All files in this archive are subject to the GNU General Public License.
13 * See the file COPYING in the source tree root for full license agreement.
14 *
15 * This software is distributed on an "AS IS" basis, WITHOUT WARRANTY OF ANY
16 * KIND, either express or implied.
17 *
18 ****************************************************************************/
Marcoen Hirschberg0a068242006-08-12 08:27:48 +000019#include "config.h"
20
21#include <stdlib.h>
22#include <stdio.h>
Karl Kurbjun8a1fd8c2007-04-21 04:48:20 +000023#include "inttypes.h"
24#include "string.h"
Marcoen Hirschberg0a068242006-08-12 08:27:48 +000025#include "cpu.h"
26#include "system.h"
27#include "lcd.h"
28#include "kernel.h"
29#include "thread.h"
30#include "ata.h"
31#include "fat.h"
32#include "disk.h"
33#include "font.h"
34#include "adc.h"
35#include "backlight.h"
Karl Kurbjun8a1fd8c2007-04-21 04:48:20 +000036#include "backlight-target.h"
37#include "button.h"
Marcoen Hirschberg0a068242006-08-12 08:27:48 +000038#include "panic.h"
39#include "power.h"
40#include "file.h"
Linus Nielsen Feltzing46597c92007-02-22 15:09:49 +000041#include "common.h"
Karl Kurbjun8a1fd8c2007-04-21 04:48:20 +000042#include "rbunicode.h"
43#include "usb.h"
Karl Kurbjun5a9a2b72007-10-23 03:29:15 +000044#include "mmu-arm.h"
Marcoen Hirschberg29536762006-12-29 02:49:12 +000045
Karl Kurbjun8a1fd8c2007-04-21 04:48:20 +000046#include <stdarg.h>
Marcoen Hirschberg29536762006-12-29 02:49:12 +000047
Marcoen Hirschberg0a068242006-08-12 08:27:48 +000048char version[] = APPSVERSION;
49
Karl Kurbjun8a1fd8c2007-04-21 04:48:20 +000050void main(void)
Marcoen Hirschberg29536762006-12-29 02:49:12 +000051{
Marcoen Hirschberg29536762006-12-29 02:49:12 +000052 unsigned char* loadbuffer;
53 int buffer_size;
Marcoen Hirschberg29536762006-12-29 02:49:12 +000054 int rc;
55 int(*kernel_entry)(void);
Marcoen Hirschberg0a068242006-08-12 08:27:48 +000056
Karl Kurbjun8a1fd8c2007-04-21 04:48:20 +000057 memory_init();
58 power_init();
59 system_init();
60 lcd_init();
61 backlight_init();
62 font_init();
Marcoen Hirschberg0a068242006-08-12 08:27:48 +000063
Karl Kurbjun8a1fd8c2007-04-21 04:48:20 +000064 lcd_setfont(FONT_SYSFIXED);
Marcoen Hirschberg0a068242006-08-12 08:27:48 +000065
Karl Kurbjun8a1fd8c2007-04-21 04:48:20 +000066 usb_init();
67
68 /* Enter USB mode without USB thread */
Dave Chapman16723502007-09-04 08:03:07 +000069 if(usb_detect() == USB_INSERTED)
Karl Kurbjun8a1fd8c2007-04-21 04:48:20 +000070 {
71 const char msg[] = "Bootloader USB mode";
72 reset_screen();
73 lcd_putsxy( (LCD_WIDTH - (SYSFONT_WIDTH * strlen(msg))) / 2,
74 (LCD_HEIGHT - SYSFONT_HEIGHT) / 2, msg);
75 lcd_update();
76
77 ata_enable(false);
78 sleep(HZ/20);
79 usb_enable(true);
80
Dave Chapman16723502007-09-04 08:03:07 +000081 while (usb_detect() == USB_INSERTED)
Karl Kurbjun8a1fd8c2007-04-21 04:48:20 +000082 sleep(HZ);
83
84 usb_enable(false);
85
86 reset_screen();
87 lcd_update();
Greg White3b65fc22007-01-17 18:31:40 +000088 }
Karl Kurbjun8a1fd8c2007-04-21 04:48:20 +000089
90 kernel_init();
91 adc_init();
92 button_init();
93
94 /* Show debug messages if button is pressed */
95 if(button_read_device())
96 verbose = true;
97
98 printf("Rockbox boot loader");
99 printf("Version %s", version);
100
101 rc = ata_init();
102 if(rc)
103 {
104 reset_screen();
105 error(EATA, rc);
Greg White8b3c8792007-01-17 01:49:19 +0000106 }
Marcoen Hirschberg29536762006-12-29 02:49:12 +0000107
Karl Kurbjun8a1fd8c2007-04-21 04:48:20 +0000108 disk_init();
Marcoen Hirschberg29536762006-12-29 02:49:12 +0000109
Karl Kurbjun8a1fd8c2007-04-21 04:48:20 +0000110 rc = disk_mount_all();
111 if (rc<=0)
112 {
113 error(EDISK,rc);
Marcoen Hirschberg29536762006-12-29 02:49:12 +0000114 }
115
Karl Kurbjun8a1fd8c2007-04-21 04:48:20 +0000116 printf("Loading firmware");
Marcoen Hirschberg29536762006-12-29 02:49:12 +0000117
Marcoen Hirschberg29536762006-12-29 02:49:12 +0000118 loadbuffer = (unsigned char*) 0x100;
119 buffer_size = (unsigned char*)0x400000 - loadbuffer;
Karl Kurbjun8a1fd8c2007-04-21 04:48:20 +0000120
121 rc = load_firmware(loadbuffer, BOOTFILE, buffer_size);
122 if(rc < 0)
123 error(EBOOTFILE, rc);
124
125 if (rc == EOK)
126 {
Greg White355be502007-01-13 02:24:15 +0000127 kernel_entry = (void*) loadbuffer;
Marcoen Hirschberg29536762006-12-29 02:49:12 +0000128 rc = kernel_entry();
Marcoen Hirschberg29536762006-12-29 02:49:12 +0000129 }
Marcoen Hirschberg0a068242006-08-12 08:27:48 +0000130}
131