2016-07-05 16:24:00 +02:00
|
|
|
@ This file is part of Luma3DS
|
|
|
|
@ Copyright (C) 2016 Aurora Wright, TuxSH
|
2016-04-26 22:06:19 +02:00
|
|
|
@
|
2016-07-05 16:24:00 +02:00
|
|
|
@ 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 3 of the License, or
|
|
|
|
@ (at your option) any later version.
|
2016-04-26 22:06:19 +02:00
|
|
|
@
|
2016-07-05 16:24:00 +02:00
|
|
|
@ This program is distributed in the hope that it will be useful,
|
|
|
|
@ but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
@ MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
|
|
@ GNU General Public License for more details.
|
2016-04-26 22:06:19 +02:00
|
|
|
@
|
2016-07-05 16:24:00 +02:00
|
|
|
@ You should have received a copy of the GNU General Public License
|
|
|
|
@ along with this program. If not, see <http://www.gnu.org/licenses/>.
|
|
|
|
@
|
|
|
|
@ Additional Terms 7.b of GPLv3 applies to this file: Requiring preservation of specified
|
|
|
|
@ reasonable legal notices or author attributions in that material or in the Appropriate Legal
|
|
|
|
@ Notices displayed by works containing it.
|
2016-04-26 22:06:19 +02:00
|
|
|
|
2016-05-06 15:45:25 +02:00
|
|
|
.macro GEN_HANDLER name
|
2016-04-26 22:06:19 +02:00
|
|
|
.global \name
|
|
|
|
.type \name, %function
|
2016-05-06 15:45:25 +02:00
|
|
|
\name:
|
2016-06-03 21:38:35 +02:00
|
|
|
ldr sp, =#0x02000000 @ We make the (full descending) stack point to the end of ITCM for our exception handlers.
|
|
|
|
@ It doesn't matter if we're overwriting stuff here, since we're going to reboot.
|
|
|
|
|
2016-05-06 15:45:25 +02:00
|
|
|
stmfd sp!, {r0-r7} @ FIQ has its own r8-r14 regs
|
|
|
|
ldr r1, =\@ @ macro expansion counter
|
|
|
|
b _commonHandler
|
|
|
|
|
|
|
|
.size \name, . - \name
|
|
|
|
.endm
|
|
|
|
|
|
|
|
.text
|
|
|
|
.arm
|
|
|
|
.align 4
|
|
|
|
|
|
|
|
.global _commonHandler
|
|
|
|
.type _commonHandler, %function
|
|
|
|
_commonHandler:
|
2016-04-26 22:06:19 +02:00
|
|
|
mrs r2, spsr
|
|
|
|
mov r6, sp
|
|
|
|
mrs r3, cpsr
|
2016-05-06 16:41:18 +02:00
|
|
|
orr r3, #0x1c0 @ disable Imprecise Aborts, IRQ and FIQ (AIF)
|
2016-04-26 22:06:19 +02:00
|
|
|
ands r4, r2, #0xf @ get the mode that triggered the exception
|
|
|
|
moveq r4, #0xf @ usr => sys
|
|
|
|
bic r5, r3, #0xf
|
|
|
|
orr r5, r4
|
|
|
|
msr cpsr_c, r5 @ change processor mode
|
2016-05-06 16:41:18 +02:00
|
|
|
stmfd r6!, {r8-lr}
|
2016-06-18 13:10:07 +02:00
|
|
|
msr cpsr_cx, r3 @ restore processor mode
|
2016-04-26 22:06:19 +02:00
|
|
|
mov sp, r6
|
|
|
|
|
2016-06-08 21:44:04 +02:00
|
|
|
stmfd sp!, {r2,lr} @ it's a bit of a mess, but we will fix that later
|
|
|
|
@ order of saved regs now: cpsr, pc + (2/4/8), r8-r14, r0-r7
|
2016-06-07 19:25:45 +02:00
|
|
|
|
2016-04-26 22:06:19 +02:00
|
|
|
mov r0, sp
|
|
|
|
b mainHandler
|
|
|
|
|
2016-05-06 15:45:25 +02:00
|
|
|
GEN_HANDLER FIQHandler
|
|
|
|
GEN_HANDLER undefinedInstructionHandler
|
|
|
|
GEN_HANDLER prefetchAbortHandler
|
|
|
|
GEN_HANDLER dataAbortHandler
|