2 * linux/arch/arm/kernel/entry-v7m.S
4 * Copyright (C) 2008 ARM Ltd.
6 * This program is free software; you can redistribute it and/or modify
7 * it under the terms of the GNU General Public License version 2 as
8 * published by the Free Software Foundation.
10 * Low-level vector interface routines for the ARMv7-M architecture
12 #include <asm/memory.h>
14 #include <asm/thread_notify.h>
17 #include "entry-header.S"
19 #ifdef CONFIG_TRACE_IRQFLAGS
20 #error "CONFIG_TRACE_IRQFLAGS not supported on the current ARMv7M implementation"
34 ENDPROC(__invalid_entry)
36 strerr: .asciz "\nUnhandled exception: IPSR = %08lx LR = %08lx\n"
43 @ Invoke the IRQ handler
46 ldr r1, =V7M_xPSR_EXCEPTIONNO
51 @ routine called with r0 = irq number, r1 = struct pt_regs *
56 @ Check for any pending work if returning to user
58 ldr r1, =BASEADDR_V7M_SCB
59 ldr r0, [r1, V7M_SCB_ICSR]
60 tst r0, V7M_SCB_ICSR_RETTOBASE
64 ldr r2, [tsk, #TI_FLAGS]
65 tst r2, #_TIF_WORK_MASK
66 beq 2f @ no work pending
67 mov r0, #V7M_SCB_ICSR_PENDSVSET
68 str r0, [r1, V7M_SCB_ICSR] @ raise PendSV
71 @ registers r0-r3 and r12 are automatically restored on exception
72 @ return. r4-r7 were not clobbered in v7m_exception_entry so for
73 @ correctness they don't need to be restored. So only r8-r11 must be
74 @ restored here. The easiest way to do so is to restore r0-r7, too.
76 add sp, #PT_REGS_SIZE-S_IP
84 ldr r1, =BASEADDR_V7M_SCB
85 mov r0, #V7M_SCB_ICSR_PENDSVCLR
86 str r0, [r1, V7M_SCB_ICSR] @ clear PendSV
88 @ execute the pending work, including reschedule
91 b ret_to_user_from_irq
92 ENDPROC(__pendsv_entry)
95 * Register switch for ARMv7-M processors.
96 * r0 = previous task_struct, r1 = previous thread_info, r2 = next thread_info
97 * previous and next are guaranteed not to be the same.
102 add ip, r1, #TI_CPU_SAVE
103 stmia ip!, {r4 - r11} @ Store most regs on stack
107 add r4, r2, #TI_CPU_SAVE
108 ldr r0, =thread_notify_head
109 mov r1, #THREAD_NOTIFY_SWITCH
110 bl atomic_notifier_call_chain
113 ldmia ip!, {r4 - r11} @ Load all regs saved previously
120 #if CONFIG_CPU_V7M_NUM_IRQ <= 112
127 * Vector table (Natural alignment need to be ensured)
130 .long 0 @ 0 - Reset stack pointer
131 .long __invalid_entry @ 1 - Reset
132 .long __invalid_entry @ 2 - NMI
133 .long __invalid_entry @ 3 - HardFault
134 .long __invalid_entry @ 4 - MemManage
135 .long __invalid_entry @ 5 - BusFault
136 .long __invalid_entry @ 6 - UsageFault
137 .long __invalid_entry @ 7 - Reserved
138 .long __invalid_entry @ 8 - Reserved
139 .long __invalid_entry @ 9 - Reserved
140 .long __invalid_entry @ 10 - Reserved
141 .long vector_swi @ 11 - SVCall
142 .long __invalid_entry @ 12 - Debug Monitor
143 .long __invalid_entry @ 13 - Reserved
144 .long __pendsv_entry @ 14 - PendSV
145 .long __invalid_entry @ 15 - SysTick
146 .rept CONFIG_CPU_V7M_NUM_IRQ
147 .long __irq_entry @ External Interrupts