2009-01-08 10:15:32 +00:00
|
|
|
/***************************************************************************
|
|
|
|
* __________ __ ___.
|
|
|
|
* Open \______ \ ____ ____ | | _\_ |__ _______ ___
|
|
|
|
* Source | _// _ \_/ ___\| |/ /| __ \ / _ \ \/ /
|
|
|
|
* Jukebox | | ( <_> ) \___| < | \_\ ( <_> > < <
|
|
|
|
* Firmware |____|_ /\____/ \___ >__|_ \|___ /\____/__/\_ \
|
|
|
|
* \/ \/ \/ \/ \/
|
|
|
|
* $Id$
|
|
|
|
*
|
|
|
|
* Copyright (C) 2006 by Thom Johansen
|
|
|
|
*
|
|
|
|
* This program is free software; you can redistribute it and/or
|
|
|
|
* modify it under the terms of the GNU General Public License
|
|
|
|
* as published by the Free Software Foundation; either version 2
|
|
|
|
* of the License, or (at your option) any later version.
|
|
|
|
*
|
|
|
|
* This software is distributed on an "AS IS" basis, WITHOUT WARRANTY OF ANY
|
|
|
|
* KIND, either express or implied.
|
|
|
|
*
|
|
|
|
****************************************************************************/
|
|
|
|
#include "config.h"
|
|
|
|
#include "system.h"
|
|
|
|
#include <stdio.h>
|
|
|
|
#include "lcd.h"
|
|
|
|
#include "font.h"
|
2010-08-12 13:38:25 +00:00
|
|
|
#include "gcc_extensions.h"
|
2009-01-08 10:15:32 +00:00
|
|
|
|
2012-01-25 08:57:59 +00:00
|
|
|
#include <get_sp.h>
|
|
|
|
#include <backtrace.h>
|
|
|
|
|
2009-01-08 10:15:32 +00:00
|
|
|
static const char* const uiename[] = {
|
|
|
|
"Undefined instruction",
|
|
|
|
"Prefetch abort",
|
|
|
|
"Data abort",
|
2011-10-11 16:06:03 +00:00
|
|
|
"Divide by zero",
|
|
|
|
"SWI"
|
2009-01-08 10:15:32 +00:00
|
|
|
};
|
|
|
|
|
2012-04-02 13:11:21 +00:00
|
|
|
void __attribute__((weak,naked)) data_abort_handler(void)
|
|
|
|
{
|
|
|
|
asm volatile(
|
|
|
|
"sub r0, lr, #8 \n"
|
|
|
|
"mov r1, #2 \n"
|
|
|
|
"b UIE \n"
|
|
|
|
);
|
|
|
|
}
|
|
|
|
|
|
|
|
void __attribute__((weak,naked)) software_int_handler(void)
|
|
|
|
{
|
|
|
|
asm volatile(
|
|
|
|
"sub r0, lr, #4 \n"
|
|
|
|
"mov r1, #4 \n"
|
|
|
|
"b UIE \n"
|
|
|
|
);
|
|
|
|
}
|
|
|
|
|
|
|
|
void __attribute__((weak,naked)) reserved_handler(void)
|
|
|
|
{
|
|
|
|
asm volatile(
|
|
|
|
"sub r0, lr, #4 \n"
|
|
|
|
"mov r1, #4 \n"
|
|
|
|
"b UIE \n"
|
|
|
|
);
|
|
|
|
}
|
|
|
|
|
|
|
|
void __attribute__((weak,naked)) prefetch_abort_handler(void)
|
|
|
|
{
|
|
|
|
asm volatile(
|
|
|
|
"sub r0, lr, #4 \n"
|
|
|
|
"mov r1, #1 \n"
|
|
|
|
"b UIE \n"
|
|
|
|
);
|
|
|
|
}
|
|
|
|
|
|
|
|
void __attribute__((weak,naked)) undef_instr_handler(void)
|
|
|
|
{
|
|
|
|
asm volatile(
|
|
|
|
"sub r0, lr, #4 \n"
|
|
|
|
#ifdef USE_THUMB
|
|
|
|
"mrs r1, spsr \n"
|
|
|
|
"tst r1, #(1 << 5) \n" // T bit set ?
|
|
|
|
"subne r0, lr, #2 \n" // if yes, offset to THUMB instruction
|
|
|
|
#endif
|
|
|
|
"mov r1, #0 \n"
|
|
|
|
"b UIE \n"
|
|
|
|
);
|
|
|
|
}
|
|
|
|
|
2009-01-08 10:15:32 +00:00
|
|
|
/* Unexpected Interrupt or Exception handler. Currently only deals with
|
|
|
|
exceptions, but will deal with interrupts later.
|
|
|
|
*/
|
2010-08-12 13:38:25 +00:00
|
|
|
void NORETURN_ATTR UIE(unsigned int pc, unsigned int num)
|
2009-01-08 10:15:32 +00:00
|
|
|
{
|
2012-01-25 08:57:59 +00:00
|
|
|
/* safe guard variable - we call backtrace() only on first
|
|
|
|
* UIE call. This prevent endless loop if backtrace() touches
|
|
|
|
* memory regions which cause abort
|
|
|
|
*/
|
|
|
|
static bool triggered = false;
|
|
|
|
|
2009-11-14 11:27:41 +00:00
|
|
|
#if LCD_DEPTH > 1
|
|
|
|
lcd_set_backdrop(NULL);
|
|
|
|
lcd_set_drawmode(DRMODE_SOLID);
|
|
|
|
lcd_set_foreground(LCD_BLACK);
|
|
|
|
lcd_set_background(LCD_WHITE);
|
|
|
|
#endif
|
2010-03-09 16:19:50 +00:00
|
|
|
unsigned line = 0;
|
|
|
|
|
2009-01-08 10:15:32 +00:00
|
|
|
lcd_setfont(FONT_SYSFIXED);
|
2009-11-14 11:27:41 +00:00
|
|
|
lcd_set_viewport(NULL);
|
|
|
|
lcd_clear_display();
|
2012-01-25 08:57:59 +00:00
|
|
|
lcd_putsf(0, line++, "%s at %08x" IF_COP(" (%d)"), uiename[num], pc IF_COP(, CURRENT_CORE));
|
2010-03-09 16:19:50 +00:00
|
|
|
|
2011-09-06 12:39:17 +00:00
|
|
|
#if !defined(CPU_ARM7TDMI) && (CONFIG_CPU != RK27XX) /* arm7tdmi has no MPU/MMU */
|
2010-03-09 16:19:50 +00:00
|
|
|
if(num == 1 || num == 2) /* prefetch / data abort */
|
|
|
|
{
|
|
|
|
register unsigned status;
|
|
|
|
|
|
|
|
#if ARM_ARCH >= 6
|
|
|
|
/* ARMv6 has 2 different registers for prefetch & data aborts */
|
|
|
|
if(num == 1) /* instruction prefetch abort */
|
|
|
|
asm volatile( "mrc p15, 0, %0, c5, c0, 1\n" : "=r"(status));
|
|
|
|
else
|
|
|
|
#endif
|
|
|
|
asm volatile( "mrc p15, 0, %0, c5, c0, 0\n" : "=r"(status));
|
|
|
|
|
|
|
|
lcd_putsf(0, line++, "FSR 0x%x", status);
|
|
|
|
|
|
|
|
unsigned int domain = (status >> 4) & 0xf;
|
|
|
|
unsigned int fault = status & 0xf;
|
|
|
|
#if ARM_ARCH >= 6
|
|
|
|
fault |= (status & (1<<10)) >> 6; /* fault is 5 bits on armv6 */
|
|
|
|
#endif
|
|
|
|
lcd_putsf(0, line++, "(domain %d, fault %d)", domain, fault);
|
|
|
|
|
|
|
|
if(num == 2) /* data abort */
|
|
|
|
{
|
|
|
|
register unsigned address;
|
|
|
|
/* read FAR (fault address register) */
|
|
|
|
asm volatile( "mrc p15, 0, %0, c6, c0\n" : "=r"(address));
|
|
|
|
lcd_putsf(0, line++, "address 0x%8x", address);
|
|
|
|
#if ARM_ARCH >= 6
|
|
|
|
lcd_putsf(0, line++, (status & (1<<11)) ? "(write)" : "(read)");
|
|
|
|
#endif
|
|
|
|
}
|
|
|
|
} /* num == 1 || num == 2 // prefetch/data abort */
|
|
|
|
#endif /* !defined(CPU_ARM7TDMI */
|
|
|
|
|
2012-01-25 08:57:59 +00:00
|
|
|
if (!triggered)
|
|
|
|
{
|
|
|
|
triggered = true;
|
2017-02-23 10:33:19 +00:00
|
|
|
rb_backtrace(pc, __get_sp(), &line);
|
2012-01-25 08:57:59 +00:00
|
|
|
}
|
|
|
|
|
2009-01-08 10:15:32 +00:00
|
|
|
lcd_update();
|
|
|
|
|
|
|
|
disable_interrupt(IRQ_FIQ_STATUS);
|
|
|
|
|
|
|
|
system_exception_wait(); /* If this returns, try to reboot */
|
|
|
|
system_reboot();
|
|
|
|
while (1); /* halt */
|
|
|
|
}
|
|
|
|
|
|
|
|
/* Needs to be here or gcc won't find it */
|
|
|
|
void __attribute__((naked)) __div0(void)
|
|
|
|
{
|
|
|
|
asm volatile (
|
2010-06-12 17:15:44 +00:00
|
|
|
"ldr r0, [sp] \r\n"
|
|
|
|
"sub r0, r0, #4 \r\n"
|
|
|
|
"mov r1, #3 \r\n"
|
|
|
|
"b UIE \r\n"
|
2009-01-08 10:15:32 +00:00
|
|
|
);
|
|
|
|
}
|