1 /***************************************************************************
3 * Open \______ \ ____ ____ | | _\_ |__ _______ ___
4 * Source | _// _ \_/ ___\| |/ /| __ \ / _ \ \/ /
5 * Jukebox | | ( <_> ) \___| < | \_\ ( <_> > < <
6 * Firmware |____|_ /\____/ \___ >__|_ \|___ /\____/__/\_ \
10 * Copyright (C) 2002 by wavey@wavey.org
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 ****************************************************************************/
32 static char panic_buf
[128];
35 * "Dude. This is pretty fucked-up, right here."
37 void panicf( const char *fmt
, ...)
42 #if CONFIG_LED == LED_REAL
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");
56 vsnprintf( panic_buf
, sizeof(panic_buf
), fmt
, 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)
65 lcd_setfont(FONT_SYSFIXED
);
66 lcd_puts(0, 0, (unsigned char *)"*PANIC*");
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];
73 lcd_puts(0, y
++, (unsigned char *)panic_buf
+i
);
86 #ifdef HAVE_ATA_POWER_OFF
87 ide_power_enable(false);
93 #if CONFIG_LED == LED_REAL
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
110 #elif CONFIG_KEYPAD == RECORDER_PAD
112 if (!(PCDR
& 0x0008))
116 #elif CONFIG_KEYPAD == ONDIO_PAD
117 if (!(PCDR
& 0x0008))
118 #endif /* CONFIG_KEYPAD */
121 #endif /* !SIMULATOR */