aboutsummaryrefslogtreecommitdiffstats
path: root/os/common/ports/ARMCMx/compilers/GCC/utils/hardfault_handler_v7m.S
blob: 9b4b96f812bbe905f7bd946b75d52ae95f22eabb (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
/*
    ChibiOS - Copyright (C) 2019 Diego Ismirlian (dismirlian(at)google's mail)

    Licensed under the Apache License, Version 2.0 (the "License");
    you may not use this file except in compliance with the License.
    You may obtain a copy of the License at

        http://www.apache.org/licenses/LICENSE-2.0

    Unless required by applicable law or agreed to in writing, software
    distributed under the License is distributed on an "AS IS" BASIS,
    WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
    See the License for the specific language governing permissions and
    limitations under the License.
*/

                .syntax unified
                .cpu    cortex-m4

                .section .data._fault_stack
                .align 3
_fault_stack:
                .skip 256
_fault_stack_end:

                .thumb

                .section .text.HardFault_Handler
                .thumb_func
                .globl  HardFault_Handler
HardFault_Handler:
                /* disable further interrupts */
                cpsid i

                /* preserve the ISR sp for later */
                mov     r1, sp

                /* set the sp to a separate stack, in case of sp corruption */
                ldr     sp, .L1

                /* preserve the ISR lr and sp for later */
                push    {r1, lr}

                /* print info */
                bl       _hardfault_info

                /* restore the sp and the lr */
                pop     {r1, lr}
                mov     sp, r1

                /* Try to rebuild the stack for the debugger.
                 * The idea is that the debugger will unwind the stack, and
                 * show a call to the HardFault_Handler from the offending
                 * instruction */

                /* check which stack was in use */
                tst     lr, #4          //check bit 2 of EXC_RETURN
                ite     eq
                mrseq   r0, msp
                mrsne   r0, psp         //r0 points to the stack that was in use

                /* try to rebuild the stack for the debugger */
                mov     sp, r0          //sp points to the end of the IRQ stack
                /* check if FPU registers were stacked */
                tst     lr, #16         //check bit 4 of EXC_RETURN
                ite     eq
                addeq   sp, #104        //jump over the IRQ+FPU stack
                addne   sp, #32         //jump over the IRQ stack

                /* compensate padding */
                ldr     r1, [sp, #28]   //r1 = stacked xPSR
                tst     r1, #512        //check bit 9 of the stacked xPSR
                ite     eq
                addeq   sp, #0          //add 0 to sp if there was no padding
                addne   sp, #4          //add 4 to sp if there was padding
                /* here, sp finally points to the stack before the IRQ was triggered */

                /* set lr to the stacked PC address, so the debugger can show where the
                   fault was produced (may not be accurate, depending on the fault) */
                ldr     lr, [r0, #24]

                /* restore used registers */
                ldr     r0, [r0, #0]
                ldr     r1, [r0, #4]

                b       _hardfault_epilogue

                .align  2
.L1:            .word _fault_stack_end


                .section .text._hardfault_exit
                .thumb_func
                .globl  _hardfault_exit
_hardfault_exit:
                /* we are here if there is no debugger attached */

                /* restore the sp to the separate stack */
                ldr     sp, .L3

                /* call chSysHalt */
                ldr     r0, =.L2
                bl      chSysHalt

                b       .

                .align  2
.L3:            .word _fault_stack_end

                .align  2
.L2:            .asciz  "hard fault"

                .align  2