]> git.sur5r.net Git - openocd/blob - src/target/cortex_a.h
cortex_a: Add Cortex-A5 identification
[openocd] / src / target / cortex_a.h
1 /***************************************************************************
2  *   Copyright (C) 2005 by Dominic Rath                                    *
3  *   Dominic.Rath@gmx.de                                                   *
4  *                                                                         *
5  *   Copyright (C) 2006 by Magnus Lundin                                   *
6  *   lundin@mlu.mine.nu                                                    *
7  *                                                                         *
8  *   Copyright (C) 2008 by Spencer Oliver                                  *
9  *   spen@spen-soft.co.uk                                                  *
10  *                                                                         *
11  *   Copyright (C) 2009 by Dirk Behme                                      *
12  *   dirk.behme@gmail.com - copy from cortex_m3                            *
13  *                                                                         *
14  *   This program is free software; you can redistribute it and/or modify  *
15  *   it under the terms of the GNU General Public License as published by  *
16  *   the Free Software Foundation; either version 2 of the License, or     *
17  *   (at your option) any later version.                                   *
18  *                                                                         *
19  *   This program is distributed in the hope that it will be useful,       *
20  *   but WITHOUT ANY WARRANTY; without even the implied warranty of        *
21  *   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the         *
22  *   GNU General Public License for more details.                          *
23  *                                                                         *
24  *   You should have received a copy of the GNU General Public License     *
25  *   along with this program; if not, write to the                         *
26  *   Free Software Foundation, Inc.,                                       *
27  *   51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.           *
28  ***************************************************************************/
29
30 #ifndef CORTEX_A_H
31 #define CORTEX_A_H
32
33 #include "armv7a.h"
34
35 #define CORTEX_A_COMMON_MAGIC 0x411fc082
36 #define CORTEX_A15_COMMON_MAGIC 0x413fc0f1
37
38 #define CORTEX_A5_PARTNUM 0xc05
39 #define CORTEX_A7_PARTNUM 0xc07
40 #define CORTEX_A8_PARTNUM 0xc08
41 #define CORTEX_A9_PARTNUM 0xc09
42 #define CORTEX_A15_PARTNUM 0xc0f
43 #define CORTEX_A_MIDR_PARTNUM_MASK 0x0000fff0
44 #define CORTEX_A_MIDR_PARTNUM_SHIFT 4
45
46 #define CPUDBG_CPUID    0xD00
47 #define CPUDBG_CTYPR    0xD04
48 #define CPUDBG_TTYPR    0xD0C
49 #define CPUDBG_LOCKACCESS 0xFB0
50 #define CPUDBG_LOCKSTATUS 0xFB4
51 #define CPUDBG_OSLAR_LK_MASK (1 << 1)
52
53 #define BRP_NORMAL 0
54 #define BRP_CONTEXT 1
55
56 #define CORTEX_A_PADDRDBG_CPU_SHIFT 13
57
58 struct cortex_a_brp {
59         int used;
60         int type;
61         uint32_t value;
62         uint32_t control;
63         uint8_t BRPn;
64 };
65
66 struct cortex_a_common {
67         int common_magic;
68         struct arm_jtag jtag_info;
69
70         /* Context information */
71         uint32_t cpudbg_dscr;
72
73         /* Saved cp15 registers */
74         uint32_t cp15_control_reg;
75         /* latest cp15 register value written and cpsr processor mode */
76         uint32_t cp15_control_reg_curr;
77         enum arm_mode curr_mode;
78
79
80         /* Breakpoint register pairs */
81         int brp_num_context;
82         int brp_num;
83         int brp_num_available;
84         struct cortex_a_brp *brp_list;
85
86         /* Use cortex_a_read_regs_through_mem for fast register reads */
87         int fast_reg_read;
88
89         uint32_t cpuid;
90         uint32_t ctypr;
91         uint32_t ttypr;
92         uint32_t didr;
93
94         struct armv7a_common armv7a_common;
95
96 };
97
98 static inline struct cortex_a_common *
99 target_to_cortex_a(struct target *target)
100 {
101         return container_of(target->arch_info, struct cortex_a_common, armv7a_common.arm);
102 }
103
104 #endif /* CORTEX_A_H */