target: icepick: switch over to icepick_c_router
[fw/openocd] / src / rtos / rtos_chibios_stackings.c
1 /***************************************************************************
2  *   Copyright (C) 2012 by Matthias Blaicher                               *
3  *   Matthias Blaicher - matthias@blaicher.com                             *
4  *                                                                         *
5  *   Copyright (C) 2011 by Broadcom Corporation                            *
6  *   Evan Hunter - ehunter@broadcom.com                                    *
7  *                                                                         *
8  *   This program is free software; you can redistribute it and/or modify  *
9  *   it under the terms of the GNU General Public License as published by  *
10  *   the Free Software Foundation; either version 2 of the License, or     *
11  *   (at your option) any later version.                                   *
12  *                                                                         *
13  *   This program is distributed in the hope that it will be useful,       *
14  *   but WITHOUT ANY WARRANTY; without even the implied warranty of        *
15  *   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the         *
16  *   GNU General Public License for more details.                          *
17  *                                                                         *
18  *   You should have received a copy of the GNU General Public License     *
19  *   along with this program; if not, write to the                         *
20  *   Free Software Foundation, Inc.,                                       *
21  *   51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.           *
22  ***************************************************************************/
23
24 #ifdef HAVE_CONFIG_H
25 #include "config.h"
26 #endif
27
28 #include "rtos.h"
29 #include "target/armv7m.h"
30
31 static const struct stack_register_offset rtos_chibios_arm_v7m_stack_offsets[ARMV7M_NUM_CORE_REGS] = {
32         { -1,   32 },           /* r0   */
33         { -1,   32 },           /* r1   */
34         { -1,   32 },           /* r2   */
35         { -1,   32 },           /* r3   */
36         { 0x00, 32 },           /* r4   */
37         { 0x04, 32 },           /* r5   */
38         { 0x08, 32 },           /* r6   */
39         { 0x0c, 32 },           /* r7   */
40         { 0x10, 32 },           /* r8   */
41         { 0x14, 32 },           /* r9   */
42         { 0x18, 32 },           /* r10  */
43         { 0x1c, 32 },           /* r11  */
44         { -1,   32 },           /* r12  */
45         { -2,   32 },           /* sp   */
46         { -1,   32 },           /* lr   */
47         { 0x20, 32 },           /* pc   */
48         { -1,   32 },           /* xPSR */
49 };
50
51 const struct rtos_register_stacking rtos_chibios_arm_v7m_stacking = {
52         0x24,                                   /* stack_registers_size */
53         -1,                                             /* stack_growth_direction */
54         ARMV7M_NUM_CORE_REGS,   /* num_output_registers */
55         0,                                              /* stack_alignment */
56         rtos_chibios_arm_v7m_stack_offsets      /* register_offsets */
57 };
58
59 static const struct stack_register_offset rtos_chibios_arm_v7m_stack_offsets_w_fpu[ARMV7M_NUM_CORE_REGS] = {
60         { -1,   32 },           /* r0   */
61         { -1,   32 },           /* r1   */
62         { -1,   32 },           /* r2   */
63         { -1,   32 },           /* r3   */
64         { 0x40, 32 },           /* r4   */
65         { 0x44, 32 },           /* r5   */
66         { 0x48, 32 },           /* r6   */
67         { 0x4c, 32 },           /* r7   */
68         { 0x50, 32 },           /* r8   */
69         { 0x54, 32 },           /* r9   */
70         { 0x58, 32 },           /* r10  */
71         { 0x5c, 32 },           /* r11  */
72         { -1,   32 },           /* r12  */
73         { -2,   32 },           /* sp   */
74         { -1,   32 },           /* lr   */
75         { 0x60, 32 },           /* pc   */
76         { -1,   32 },           /* xPSR */
77 };
78
79 const struct rtos_register_stacking rtos_chibios_arm_v7m_stacking_w_fpu = {
80         0x64,                                                                           /* stack_registers_size */
81         -1,                                                                                     /* stack_growth_direction */
82         ARMV7M_NUM_CORE_REGS,                                           /* num_output_registers */
83         0,                                                                                      /* stack_alignment */
84         rtos_chibios_arm_v7m_stack_offsets_w_fpu        /* register_offsets */
85 };