Revert the recent change to bufread()
[Rockbox.git] / firmware / panic.c
blob58f6d1dcb574f661180ab977b0833d6ac2a6cf06
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 #ifdef CPU_ARM
49 disable_fiq();
50 #endif
52 set_irq_level(DISABLE_INTERRUPTS);
53 #endif /* SIMULATOR */
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 #else
78 /* no LCD */
79 #endif
80 lcd_update();
81 DEBUGF(panic_buf);
83 set_cpu_frequency(0);
85 #ifdef HAVE_ATA_POWER_OFF
86 ide_power_enable(false);
87 #endif
89 while (1)
91 #ifndef SIMULATOR
92 #if (CONFIG_LED == LED_REAL)
93 if (--i <= 0)
95 state = !state;
96 led(state);
97 i = 240000;
99 #endif
101 /* try to restart firmware if ON is pressed */
102 #if defined (CPU_PP)
103 /* For now, just sleep the core */
104 if (CURRENT_CORE == CPU)
105 CPU_CTL = PROC_SLEEP;
106 else
107 COP_CTL = PROC_SLEEP;
108 #define system_reboot() nop
109 #elif defined (TOSHIBA_GIGABEAT_F)
110 if ((GPGDAT & (1 << 0)) != 0)
111 #elif defined (IRIVER_H100_SERIES)
112 if ((GPIO1_READ & 0x22) == 0) /* check for ON button and !hold */
113 #elif defined(IRIVER_H300_SERIES)
114 if ((GPIO1_READ & 0x22) == 0) /* check for ON button and !hold */
115 #elif CONFIG_CPU == SH7034
116 #if CONFIG_KEYPAD == PLAYER_PAD
117 if (!(PADRL & 0x20))
118 #elif CONFIG_KEYPAD == RECORDER_PAD
119 #ifdef HAVE_FMADC
120 if (!(PCDR & 0x0008))
121 #else
122 if (!(PBDRH & 0x01))
123 #endif
124 #elif CONFIG_KEYPAD == ONDIO_PAD
125 if (!(PCDR & 0x0008))
126 #endif /* CONFIG_KEYPAD */
127 #endif /* CPU */
128 system_reboot();
129 #endif /* !SIMULATOR */