Revert r23339 and use setid3v1title() from metadata/mp3.c instead.
[kugel-rb.git] / bootloader / mini2440.c
blobdd811600f3077542b244cb39edef1d113fb3b355
1 /***************************************************************************
2 * __________ __ ___.
3 * Open \______ \ ____ ____ | | _\_ |__ _______ ___
4 * Source | _// _ \_/ ___\| |/ /| __ \ / _ \ \/ /
5 * Jukebox | | ( <_> ) \___| < | \_\ ( <_> > < <
6 * Firmware |____|_ /\____/ \___ >__|_ \|___ /\____/__/\_ \
7 * \/ \/ \/ \/ \/
8 * $Id$
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 */
23 #include <stdlib.h>
24 #include <stdio.h>
25 #include "inttypes.h"
26 #include "string.h"
27 #include "cpu.h"
28 #include "system.h"
29 #include "lcd.h"
30 #include "kernel.h"
31 #include "thread.h"
32 #include "storage.h"
33 #include "fat.h"
34 #include "disk.h"
35 #include "font.h"
36 #include "backlight.h"
37 #include "button.h"
38 #include "panic.h"
39 #include "power.h"
40 #include "file.h"
41 #include "common.h"
42 #include "sd.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"
50 /* Show the Rockbox logo - in show_logo.c */
51 extern int show_logo(void);
54 int main(void)
56 /* required later */
57 unsigned char* loadbuffer;
58 int buffer_size;
59 int rc;
60 int(*kernel_entry)(void);
62 led_init();
63 clear_leds(LED_ALL);
64 /* NB: something in system_init() prevents H-JTAG from downloading */
65 /* system_init(); */
66 kernel_init();
67 /* enable_interrupt(IRQ_FIQ_STATUS); */
68 backlight_init();
69 lcd_init();
70 lcd_setfont(FONT_SYSFIXED);
71 button_init();
72 dma_init();
73 uart_init_device(UART_DEBUG);
75 /* mini2440_test(); */
77 /* TODO */
79 /* Show debug messages if button is pressed */
80 if(button_read_device() & BUTTON_MENU)
81 verbose = true;
83 printf("Rockbox boot loader");
84 printf("Version %s", APPSVERSION);
86 rc = storage_init();
87 if(rc)
89 reset_screen();
90 error(EATA, rc);
93 disk_init(IF_MD(0));
94 rc = disk_mount_all();
95 if (rc<=0)
97 error(EDISK,rc);
100 printf("Loading firmware");
102 /* Flush out anything pending first */
103 cpucache_invalidate();
105 loadbuffer = (unsigned char*) 0x31000000;
106 buffer_size = (unsigned char*)0x31400000 - loadbuffer;
108 rc = load_firmware(loadbuffer, BOOTFILE, buffer_size);
109 if(rc < 0)
110 error(EBOOTFILE, rc);
112 printf("Loaded firmware %d\n", rc);
114 /* storage_close(); */
115 system_prepare_fw_start();
117 if (rc == EOK)
119 cpucache_invalidate();
120 kernel_entry = (void*) loadbuffer;
121 rc = kernel_entry();
124 /* end stop - should not get here */
125 led_flash(LED_ALL, LED_NONE);
126 while (1); /* avoid warning */