mirror of
https://github.com/fail0verflow/mini.git
synced 2024-11-05 19:25:12 +01:00
66 lines
1.4 KiB
ArmAsm
66 lines
1.4 KiB
ArmAsm
/*
|
|
mini - a Free Software replacement for the Nintendo/BroadOn IOS.
|
|
|
|
IRQ support
|
|
|
|
Copyright (C) 2008, 2009 Hector Martin "marcan" <marcan@marcansoft.com>
|
|
|
|
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, version 2.
|
|
|
|
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.
|
|
|
|
You should have received a copy of the GNU General Public License
|
|
along with this program; if not, write to the Free Software
|
|
Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
|
|
|
|
*/
|
|
#include "hollywood.h"
|
|
#include "irq.h"
|
|
|
|
.globl v_irq
|
|
.globl irq_setup_stack
|
|
.globl irq_kill
|
|
.globl irq_restore
|
|
.extern __irqstack_addr
|
|
.extern irq_handler
|
|
|
|
irq_setup_stack:
|
|
@ Switch to IRQ mode
|
|
mrs r0, cpsr
|
|
msr cpsr_c, #0xd2
|
|
|
|
@ Setup interrupt stack
|
|
ldr sp, =__irqstack_addr
|
|
|
|
@ Restore mode
|
|
msr cpsr_c, r0
|
|
bx lr
|
|
|
|
v_irq:
|
|
push {r0-r3, r9, r12, lr}
|
|
|
|
blx irq_handler
|
|
|
|
pop {r0-r3, r9, r12, lr}
|
|
subs pc, lr, #4
|
|
|
|
irq_kill:
|
|
mrs r1, cpsr
|
|
and r0, r1, #(CPSR_IRQDIS|CPSR_FIQDIS)
|
|
orr r1, r1, #(CPSR_IRQDIS|CPSR_FIQDIS)
|
|
msr cpsr_c, r1
|
|
bx lr
|
|
|
|
irq_restore:
|
|
mrs r1, cpsr
|
|
bic r1, r1, #(CPSR_IRQDIS|CPSR_FIQDIS)
|
|
orr r1, r1, r0
|
|
msr cpsr_c, r1
|
|
bx lr
|
|
|