summaryrefslogtreecommitdiffstats
path: root/cpukit/score/cpu/arm/arm-exception-frame-print.c
blob: b08964818458e1aa4f4376b76c01731e81279220 (plain) (blame)
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
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
/* SPDX-License-Identifier: BSD-2-Clause */

/**
 * @file
 *
 * @ingroup RTEMSScoreCPUARM
 *
 * @brief This source file contains the implementation of
 *   _CPU_Exception_frame_print().
 */

/*
 * Copyright (C) 2012, 2013 embedded brains GmbH & Co. KG
 *
 * Redistribution and use in source and binary forms, with or without
 * modification, are permitted provided that the following conditions
 * are met:
 * 1. Redistributions of source code must retain the above copyright
 *    notice, this list of conditions and the following disclaimer.
 * 2. Redistributions in binary form must reproduce the above copyright
 *    notice, this list of conditions and the following disclaimer in the
 *    documentation and/or other materials provided with the distribution.
 *
 * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS"
 * AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
 * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
 * ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR CONTRIBUTORS BE
 * LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
 * CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
 * SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
 * INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
 * CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
 * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
 * POSSIBILITY OF SUCH DAMAGE.
 */

#ifdef HAVE_CONFIG_H
#include "config.h"
#endif

#include <inttypes.h>

#include <rtems/score/cpu.h>
#if defined(ARM_MULTILIB_ARCH_V7M)
#include <rtems/score/armv7m.h>
#endif
#include <rtems/bspIo.h>

static void _ARM_VFP_context_print( const ARM_VFP_context *vfp_context )
{
#ifdef ARM_MULTILIB_VFP
  if ( vfp_context != NULL ) {
    const uint64_t *dx = &vfp_context->register_d0;
    int i;

    printk(
      "FPEXC = 0x%08" PRIx32 "\nFPSCR = 0x%08" PRIx32 "\n",
      vfp_context->register_fpexc,
      vfp_context->register_fpscr
    );

#if defined(ARM_MULTILIB_VFP_D32)
    int regcount = 32;
#elif defined(ARM_MULTILIB_VFP_D16)
    int regcount = 16;
#else
    int regcount = 0;
#endif
    for ( i = 0; i < regcount; ++i ) {
      uint32_t low = (uint32_t) dx[i];
      uint32_t high = (uint32_t) (dx[i] >> 32);

      printk( "D%02i = 0x%08" PRIx32 "%08" PRIx32 "\n", i, high, low );
    }
  }
#endif
}

static void _ARM_Cortex_M_fault_info_print( void )
{
#if defined(ARM_MULTILIB_ARCH_V7M)
  /*
   * prints content of additional debugging registers
   * available on Cortex-Mx where x > 0 cores.
   */
  uint32_t cfsr = _ARMV7M_SCB->cfsr;
  uint8_t mmfsr = ARMV7M_SCB_CFSR_MMFSR_GET( cfsr );
  uint8_t bfsr = ( ARMV7M_SCB_CFSR_BFSR_GET( cfsr ) >> 8 );
  uint16_t ufsr = ( ARMV7M_SCB_CFSR_UFSR_GET( cfsr ) >> 16 );
  uint32_t hfsr = _ARMV7M_SCB->hfsr;
  if ( mmfsr > 0 ) {
    printk( "MMFSR= 0x%08" PRIx32 " (memory fault)\n", mmfsr );
    if ( ( mmfsr & 0x1 ) != 0 ) {
      printk( "  IACCVIOL   : 1  (instruction access violation)\n" );
    }
    if ( ( mmfsr & 0x2 ) != 0 ) {
      printk( "  DACCVIOL   : 1  (data access violation)\n" );
    }
    if ( (mmfsr & 0x8 ) != 0 ) {
      printk(
        "  MUNSTKERR  : 1  (fault on unstacking on exception return)\n"
      );
    }
    if ( ( mmfsr & 0x10 ) != 0 ) {
      printk( "  MSTKERR    : 1  (fault on stacking on exception entry)\n" );
    }
    if ( (mmfsr & 0x20 ) != 0 ) {
      printk( "  MLSPERR    : 1  (fault during lazy FP stack preservation)\n" );
    }
    if ( (mmfsr & 0x80 ) != 0 ) {
      printk(
        "  MMFARVALID : 1 -> 0x%08" PRIx32 " (error address)\n",
	_ARMV7M_SCB->mmfar
      );
    }
    else {
      printk( "  MMFARVALID : 0  (undetermined error address)\n" );
    }
  }
  if ( bfsr > 0 ) {
    printk( "BFSR = 0x%08" PRIx32 " (bus fault)\n", bfsr );
    if ( ( bfsr & 0x1 ) != 0 ) {
      printk( "  IBUSERR    : 1  (instruction fetch error)\n" );
    }
    if ( (bfsr & 0x2 ) != 0 ) {
      printk(
        "  PRECISERR  : 1  (data bus error with known exact location)\n"
      );
    }
    if ( ( bfsr & 0x4) != 0 ) {
      printk(
        "  IMPRECISERR: 1  (data bus error without known exact location)\n"
      );
    }
    if ( (bfsr & 0x8 ) != 0 ) {
      printk(
        "  UNSTKERR   : 1  (fault on unstacking on exception return)\n"
      );
    }
    if ( ( bfsr & 0x10 ) != 0 ) {
      printk( "  STKERR     : 1  (fault on stacking on exception entry)\n" );
    }
    if ( ( bfsr & 0x20 ) != 0 ) {
      printk( "  LSPERR     : 1  (fault during lazy FP stack preservation)\n" );
    }
    if ( (bfsr & 0x80 ) != 0 ) {
      printk(
        "  BFARVALID  : 1 -> 0x%08" PRIx32 "  (error address)\n",
	_ARMV7M_SCB->bfar
      );
    }
    else {
      printk( "  BFARVALID  : 0  (undetermined error address)\n" );
    }
  }
  if ( ufsr > 0 ) {
    printk( "UFSR = 0x%08" PRIx32 " (usage fault)\n", ufsr);
    if ( (ufsr & 0x1 ) != 0 ) {
      printk( "  UNDEFINSTR : 1  (undefined instruction issued)\n");
    }
    if ( (ufsr & 0x2 ) != 0 ) {
      printk(
        "  INVSTATE   : 1"
        "  (invalid instruction state"
        " (Thumb not set in EPSR or invalid IT state in EPSR))\n"
      );
    }
    if ( (ufsr & 0x4 ) != 0 ) {
      printk( "  INVPC      : 1  (integrity check failure on EXC_RETURN)\n" );
    }
    if ( (ufsr & 0x8 ) != 0 ) {
      printk(
        "  NOCP       : 1"
        "  (coprocessor instruction issued"
        " but coprocessor disabled or non existent)\n"
      );
    }
    if ( ( ufsr & 0x100) != 0 ) {
      printk( "  UNALIGNED  : 1  (unaligned access operation occurred)\n" );
    }
    if ( ( ufsr & 0x200) != 0 ) {
      printk( "  DIVBYZERO  : 1  (division by zero)" );
    }
  }
  if ( (hfsr & (
    ARMV7M_SCB_HFSR_VECTTBL_MASK
    | ARMV7M_SCB_HFSR_DEBUGEVT_MASK
    | ARMV7M_SCB_HFSR_FORCED_MASK
    ) ) != 0 ) {
    printk( "HFSR = 0x%08" PRIx32 " (hard fault)\n", hfsr );
    if ( (hfsr & ARMV7M_SCB_HFSR_VECTTBL_MASK ) != 0 ) {
      printk(
        "  VECTTBL    : 1  (error in address located in vector table)\n"
      );
    }
    if ( (hfsr & ARMV7M_SCB_HFSR_FORCED_MASK ) != 0 ) {
      printk(
        "  FORCED     : 1  (configurable fault escalated to hard fault)\n"
      );
    }
    if ( (hfsr & ARMV7M_SCB_HFSR_DEBUGEVT_MASK ) != 0 ) {
      printk(
        "  DEBUGEVT   : 1  (debug event occurred with debug system disabled)\n"
      );
    }
  }
#endif
}
void _CPU_Exception_frame_print( const CPU_Exception_frame *frame )
{
  printk(
    "\n"
    "R0   = 0x%08" PRIx32 " R8  = 0x%08" PRIx32 "\n"
    "R1   = 0x%08" PRIx32 " R9  = 0x%08" PRIx32 "\n"
    "R2   = 0x%08" PRIx32 " R10 = 0x%08" PRIx32 "\n"
    "R3   = 0x%08" PRIx32 " R11 = 0x%08" PRIx32 "\n"
    "R4   = 0x%08" PRIx32 " R12 = 0x%08" PRIx32 "\n"
    "R5   = 0x%08" PRIx32 " SP  = 0x%08" PRIx32 "\n"
    "R6   = 0x%08" PRIx32 " LR  = 0x%08" PRIxPTR "\n"
    "R7   = 0x%08" PRIx32 " PC  = 0x%08" PRIxPTR "\n"
#if defined(ARM_MULTILIB_ARCH_V4)
    "CPSR = 0x%08" PRIx32 " "
#elif defined(ARM_MULTILIB_ARCH_V7M)
    "XPSR = 0x%08" PRIx32 " "
#endif
    "VEC = 0x%08" PRIxPTR "\n",
    frame->register_r0,
    frame->register_r8,
    frame->register_r1,
    frame->register_r9,
    frame->register_r2,
    frame->register_r10,
    frame->register_r3,
    frame->register_r11,
    frame->register_r4,
    frame->register_r12,
    frame->register_r5,
    frame->register_sp,
    frame->register_r6,
    (intptr_t) frame->register_lr,
    frame->register_r7,
    (intptr_t) frame->register_pc,
#if defined(ARM_MULTILIB_ARCH_V4)
    frame->register_cpsr,
#elif defined(ARM_MULTILIB_ARCH_V7M)
    frame->register_xpsr,
#endif
    (intptr_t) frame->vector
  );

  _ARM_VFP_context_print( frame->vfp_context );
  _ARM_Cortex_M_fault_info_print();
}