1 /***************************************************************************
3 * Open \______ \ ____ ____ | | _\_ |__ _______ ___
4 * Source | _// _ \_/ ___\| |/ /| __ \ / _ \ \/ /
5 * Jukebox | | ( <_> ) \___| < | \_\ ( <_> > < <
6 * Firmware |____|_ /\____/ \___ >__|_ \|___ /\____/__/\_ \
10 * Copyright (C) 2002 by wavey@wavey.org
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 ****************************************************************************/
34 static char panic_buf
[128];
35 #define LINECHARS (LCD_WIDTH/SYSFONT_WIDTH) - 2
38 * "Dude. This is pretty fucked-up, right here."
40 void panicf( const char *fmt
, ...)
44 #if (CONFIG_PLATFORM & PLATFORM_NATIVE)
45 /* Disable interrupts */
47 disable_interrupt(IRQ_FIQ_STATUS
);
49 set_irq_level(DISABLE_INTERRUPTS
);
51 #endif /* SIMULATOR */
54 vsnprintf( panic_buf
, sizeof(panic_buf
), fmt
, ap
);
57 #ifdef HAVE_LCD_CHARCELLS
58 lcd_double_height(false);
59 lcd_puts(0, 0, "*PANIC*");
60 lcd_puts(0, 1, panic_buf
);
61 #elif defined(HAVE_LCD_BITMAP)
65 lcd_set_backdrop(NULL
);
66 lcd_set_drawmode(DRMODE_SOLID
);
67 lcd_set_foreground(LCD_BLACK
);
68 lcd_set_background(LCD_WHITE
);
72 lcd_setfont(FONT_SYSFIXED
);
73 lcd_set_viewport(NULL
);
74 lcd_puts(1, y
++, (unsigned char *)"*PANIC*");
77 int i
, len
= strlen(panic_buf
);
78 for (i
=0; i
<len
; i
+=LINECHARS
) {
79 unsigned char c
= panic_buf
[i
+LINECHARS
];
80 panic_buf
[i
+LINECHARS
] = 0;
81 lcd_puts(1, y
++, (unsigned char *)panic_buf
+i
);
82 panic_buf
[i
+LINECHARS
] = c
;
90 DEBUGF("%s", panic_buf
);
94 #ifdef HAVE_ATA_POWER_OFF
95 ide_power_enable(false);
98 system_exception_wait(); /* if this returns, try to reboot */
100 while (1); /* halt */