Make it clear that the player has to be restarted after initializing the database
[Rockbox.git] / firmware / panic.c
blob736d4bbf24b167e526d69c13363ccb08cc22f04a
1 /***************************************************************************
2 * __________ __ ___.
3 * Open \______ \ ____ ____ | | _\_ |__ _______ ___
4 * Source | _// _ \_/ ___\| |/ /| __ \ / _ \ \/ /
5 * Jukebox | | ( <_> ) \___| < | \_\ ( <_> > < <
6 * Firmware |____|_ /\____/ \___ >__|_ \|___ /\____/__/\_ \
7 * \/ \/ \/ \/ \/
8 * $Id$
10 * Copyright (C) 2002 by wavey@wavey.org
11 *nn
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.
15 * This software is distributed on an "AS IS" basis, WITHOUT WARRANTY OF ANY
16 * KIND, either express or implied.
18 ****************************************************************************/
20 #include "config.h"
21 #include <stdio.h>
22 #include <stdarg.h>
23 #include <string.h>
24 #include "panic.h"
25 #include "lcd.h"
26 #include "font.h"
27 #include "debug.h"
28 #include "led.h"
29 #include "power.h"
30 #include "system.h"
32 static char panic_buf[128];
35 * "Dude. This is pretty fucked-up, right here."
37 void panicf( const char *fmt, ...)
39 va_list ap;
41 #ifndef SIMULATOR
42 #if CONFIG_LED == LED_REAL
43 bool state = false;
44 int i = 0;
45 #endif
47 /* Disable interrupts */
48 #if CONFIG_CPU == SH7034
49 asm volatile ("ldc\t%0,sr" : : "r"(15<<4));
50 #elif defined(CPU_COLDFIRE)
51 asm volatile ("move.w #0x2700,%sr");
52 #endif
53 #endif
55 va_start( ap, fmt );
56 vsnprintf( panic_buf, sizeof(panic_buf), fmt, ap );
57 va_end( ap );
59 #ifdef HAVE_LCD_CHARCELLS
60 lcd_double_height(false);
61 lcd_puts(0, 0, "*PANIC*");
62 lcd_puts(0, 1, panic_buf);
63 #elif defined(HAVE_LCD_BITMAP)
64 lcd_clear_display();
65 lcd_setfont(FONT_SYSFIXED);
66 lcd_puts(0, 0, (unsigned char *)"*PANIC*");
68 /* wrap panic line */
69 int i, y=1, len = strlen(panic_buf);
70 for (i=0; i<len; i+=18) {
71 unsigned char c = panic_buf[i+18];
72 panic_buf[i+18] = 0;
73 lcd_puts(0, y++, (unsigned char *)panic_buf+i);
74 panic_buf[i+18] = c;
77 lcd_update();
79 #else
80 /* no LCD */
81 #endif
82 DEBUGF(panic_buf);
84 set_cpu_frequency(0);
86 #ifdef HAVE_ATA_POWER_OFF
87 ide_power_enable(false);
88 #endif
90 while (1)
92 #ifndef SIMULATOR
93 #if CONFIG_LED == LED_REAL
94 if (--i <= 0)
96 state = !state;
97 led(state);
98 i = 240000;
100 #endif
102 /* try to restart firmware if ON is pressed */
103 #ifdef IRIVER_H100_SERIES
104 if ((GPIO1_READ & 0x22) == 0) /* check for ON button and !hold */
105 #elif IRIVER_H300_SERIES
106 if ((GPIO1_READ & 0x22) == 0) /* check for ON button and !hold */
107 #elif CONFIG_CPU == SH7034
108 #if CONFIG_KEYPAD == PLAYER_PAD
109 if (!(PADRL & 0x20))
110 #elif CONFIG_KEYPAD == RECORDER_PAD
111 #ifdef HAVE_FMADC
112 if (!(PCDR & 0x0008))
113 #else
114 if (!(PBDRH & 0x01))
115 #endif
116 #elif CONFIG_KEYPAD == ONDIO_PAD
117 if (!(PCDR & 0x0008))
118 #endif /* CONFIG_KEYPAD */
119 #endif /* CPU */
120 system_reboot();
121 #endif /* !SIMULATOR */