summaryrefslogtreecommitdiff
path: root/bootloader/imx233.c
diff options
context:
space:
mode:
Diffstat (limited to 'bootloader/imx233.c')
-rw-r--r--bootloader/imx233.c91
1 files changed, 91 insertions, 0 deletions
diff --git a/bootloader/imx233.c b/bootloader/imx233.c
new file mode 100644
index 0000000000..cded5a119a
--- /dev/null
+++ b/bootloader/imx233.c
@@ -0,0 +1,91 @@
1/***************************************************************************
2 * __________ __ ___.
3 * Open \______ \ ____ ____ | | _\_ |__ _______ ___
4 * Source | _// _ \_/ ___\| |/ /| __ \ / _ \ \/ /
5 * Jukebox | | ( <_> ) \___| < | \_\ ( <_> > < <
6 * Firmware |____|_ /\____/ \___ >__|_ \|___ /\____/__/\_ \
7 * \/ \/ \/ \/ \/
8 * $Id$
9 *
10 * Copyright (C) 2011 by amaury Pouly
11 *
12 * Based on Rockbox iriver bootloader by Linus Nielsen Feltzing
13 * and the ipodlinux bootloader by Daniel Palffy and Bernard Leach
14 *
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.
19 *
20 * This software is distributed on an "AS IS" basis, WITHOUT WARRANTY OF ANY
21 * KIND, either express or implied.
22 *
23 ****************************************************************************/
24
25#include <stdio.h>
26#include <system.h>
27#include <inttypes.h>
28#include "config.h"
29#include "gcc_extensions.h"
30#include "lcd.h"
31#include "backlight.h"
32#include "button-target.h"
33#include "common.h"
34#include "storage.h"
35#include "disk.h"
36#include "panic.h"
37#include "power.h"
38
39int show_logo(void);
40
41void main(void) NORETURN_ATTR;
42void main(void)
43{
44 unsigned char* loadbuffer;
45 int buffer_size;
46 void(*kernel_entry)(void);
47 int ret;
48
49 system_init();
50 kernel_init();
51
52 enable_irq();
53
54 lcd_init();
55 show_logo();
56
57 backlight_init();
58
59 button_init_device();
60
61 ret = storage_init();
62 if(ret < 0)
63 error(EATA, ret, true);
64
65 while(!disk_init(IF_MV(0)))
66 panicf("disk_init failed!");
67
68 while((ret = disk_mount_all()) <= 0)
69 {
70 error(EDISK, ret, true);
71 }
72
73 printf("Loading firmware");
74
75 loadbuffer = (unsigned char*)DRAM_ORIG; /* DRAM */
76 buffer_size = (int)(loadbuffer + DRAM_SIZE - TTB_SIZE);
77
78 while((ret = load_firmware(loadbuffer, BOOTFILE, buffer_size)) < 0)
79 {
80 error(EBOOTFILE, ret, true);
81 }
82
83 kernel_entry = (void*) loadbuffer;
84 //cpucache_invalidate();
85 printf("Executing");
86 kernel_entry();
87 printf("ERR: Failed to boot");
88
89 /* never returns */
90 while(1) ;
91}