Update German translation. Based on FS#9669 by Kaspar Rothenfusser (add him to CREDIT...
[kugel-rb.git] / bootloader / sansa_as3525.c
blob6da546fcacfed28d15dfe4fef590a85d6e2bdb06
1 /***************************************************************************
2 * __________ __ ___.
3 * Open \______ \ ____ ____ | | _\_ |__ _______ ___
4 * Source | _// _ \_/ ___\| |/ /| __ \ / _ \ \/ /
5 * Jukebox | | ( <_> ) \___| < | \_\ ( <_> > < <
6 * Firmware |____|_ /\____/ \___ >__|_ \|___ /\____/__/\_ \
7 * \/ \/ \/ \/ \/
8 * $Id$
10 * Copyright (C) 2008 by Rafaël Carré
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 ****************************************************************************/
25 #include <stdio.h>
26 #include <system.h>
27 #include <inttypes.h>
28 #include "config.h"
29 #include "lcd.h"
30 #include "backlight-target.h"
31 #include "button-target.h"
32 #include "ascodec-target.h"
33 #include "common.h"
34 #include "storage.h"
35 #include "disk.h"
36 #include "panic.h"
38 int show_logo(void);
39 void main(void)
41 unsigned char* loadbuffer;
42 int buffer_size;
43 void(*kernel_entry)(void);
44 int ret;
46 system_init();
47 kernel_init();
49 lcd_init();
50 show_logo();
52 ascodec_init(); /* Required for backlight on e200v2 */
53 _backlight_on();
55 button_init_device();
56 int btn = button_read_device();
58 /* Enable bootloader messages if any button is pressed */
59 if (btn)
61 lcd_clear_display();
62 verbose = true;
65 enable_irq();
67 ret = storage_init();
68 if(ret < 0)
69 error(EATA,ret);
71 if(!disk_init(IF_MV(0)))
72 panicf("disk_init failed!");
74 ret = disk_mount_all();
76 if(ret <= 0)
77 error(EDISK, ret);
79 printf("Loading firmware");
81 loadbuffer = (unsigned char*)0x30000000; /* DRAM */
82 buffer_size = (int)(loadbuffer + (MEM * 0x100000));
84 ret = load_firmware(loadbuffer, BOOTFILE, buffer_size);
85 if(ret < 0)
86 error(EBOOTFILE, ret);
88 disable_irq(); /* disable irq until we have copied the new vectors */
90 if (ret == EOK)
92 kernel_entry = (void*) loadbuffer;
93 printf("Executing");
94 kernel_entry();
95 printf("ERR: Failed to boot");
98 /* never returns */
99 while(1) ;