summaryrefslogtreecommitdiff
path: root/acsr/v7_c.c
blob: 1c23ac088f75b7294686a4ac8f86ea958b001bd2 (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
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
/*
 * Copyright (c) 2012, ARM Limited. All rights reserved.
 *       
 * Redistribution and use in source and binary forms, with
 * or without modification, are permitted provided that the
 * following conditions are met:
 *     
 * Redistributions of source code must retain the above
 * copyright notice, this list of conditions and the 
 * following disclaimer.
 *
 * 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.
 *      
 * Neither the name of ARM nor the names of its
 * contributors may be used to endorse or promote products
 * derived from this software without specific prior written
 * permission.                        
 */

/*
 * The code to save and restore debug context uses the memory-mapped interface.
 * The registers that are saved are enough to support a self-hosted debugger,
 * but a different approach should be taken with an external debugger (cp14).
 */

#include "bakery.h"
#include "helpers.h"
#include "context.h"

#define DIDR_VERSION_SHIFT 16
#define DIDR_VERSION_MASK  0xF
#define DIDR_VERSION_7_1   5
#define DIDR_BP_SHIFT      24
#define DIDR_BP_MASK       0xF
#define DIDR_WP_SHIFT      28
#define DIDR_WP_MASK       0xF
#define CLAIMCLR_CLEAR_ALL 0xff

#define DRAR_VALID_MASK   0x00000003
#define DSAR_VALID_MASK   0x00000003
#define DRAR_ADDRESS_MASK 0xFFFFF000
#define DSAR_ADDRESS_MASK 0xFFFFF000
#define OSLSR_OSLM_MASK   0x00000009
#define OSLAR_UNLOCKED    0x00000000
#define OSLAR_LOCKED      0xC5ACCE55
#define LAR_UNLOCKED      0xC5ACCE55
#define LAR_LOCKED        0x00000000
#define OSDLR_UNLOCKED    0x00000000
#define OSDLR_LOCKED      0x00000001

typedef volatile struct {	/* Registers  Save?                                          */
	unsigned const didr;	/*         0  Read only                                    */
	unsigned dscr_i;	/*         1  ignore - use dscr_e instead                  */
	unsigned const dummy1[3];	/*       2-4  ignore                                       */
	unsigned dtrrx_dtrtx_i;	/*         5  ignore                                       */
	unsigned wfar;		/*         6  ignore - transient information               */
	unsigned vcr;		/*         7  Save                                         */
	unsigned const dummy2;	/*         8  ignore                                       */
	unsigned ecr;		/*         9  ignore                                       */
	unsigned dsccr;		/*        10  ignore                                       */
	unsigned dsmcr;		/*        11  ignore                                       */
	unsigned const dummy3[20];	/*     12-31  ignore                                       */
	unsigned dtrrx_e;	/*        32  ignore                                       */
	unsigned itr_pcsr;	/*        33  ignore                                       */
	unsigned dscr_e;	/*        34  Save                                         */
	unsigned dtrtx_e;	/*        35  ignore                                       */
	unsigned drcr;		/*        36  ignore                                       */
	unsigned eacr;		/*        37  Save - V7.1 only                             */
	unsigned const dummy4[2];	/*     38-39  ignore                                       */
	unsigned pcsr;		/*        40  ignore                                       */
	unsigned cidsr;		/*        41  ignore                                       */
	unsigned vidsr;		/*        42  ignore                                       */
	unsigned const dummy5[21];	/*     43-63  ignore                                       */
	unsigned bvr[16];	/*     64-79  Save                                         */
	unsigned bcr[16];	/*     80-95  Save                                         */
	unsigned wvr[16];	/*    96-111  Save                                         */
	unsigned wcr[16];	/*   112-127  Save                                         */
	unsigned const dummy6[16];	/*   128-143  ignore                                       */
	unsigned bxvr[16];	/*   144-159  Save if have Virtualization extensions       */
	unsigned const dummy7[32];	/*   160-191  ignore                                       */
	unsigned oslar;		/*       192  If oslsr[0] is 1, unlock before save/restore */
	unsigned const oslsr;	/*       193  ignore                                       */
	unsigned ossrr;		/*       194  ignore                                       */
	unsigned const dummy8;	/*       195  ignore                                       */
	unsigned prcr;		/*       196  ignore                                       */
	unsigned prsr;		/*       197  clear SPD on restore                         */
	unsigned const dummy9[762];	/*   198-959  ignore                                       */
	unsigned itctrl;	/*       960  ignore                                       */
	unsigned const dummy10[39];	/*   961-999  ignore                                       */
	unsigned claimset;	/*      1000  Restore claim bits to here                   */
	unsigned claimclr;	/*      1001  Save claim bits from here                    */
	unsigned const dummy11[2];	/* 1002-1003  ignore                                       */
	unsigned lar;		/*      1004  Unlock before restore                        */
	unsigned const lsr;	/*      1005  ignore                                       */
	unsigned const authstatus;	/*      1006  Read only                                    */
	unsigned const dummy12;	/*      1007  ignore                                       */
	unsigned const devid2;	/*      1008  Read only                                    */
	unsigned const devid1;	/*      1009  Read only                                    */
	unsigned const devid;	/*      1010  Read only                                    */
	unsigned const devtype;	/*      1011  Read only                                    */
	unsigned const pid[8];	/* 1012-1019  Read only                                    */
	unsigned const cid[4];	/* 1020-1023  Read only                                    */
} debug_registers_t;

debug_registers_t *read_debug_address(void)
{
	unsigned drar, dsar;

	drar = read_drar();
	dsar = read_dsar();

	if (!(drar & DRAR_VALID_MASK)
	    || !(dsar & DSAR_VALID_MASK)) {
		return 0;	/* No memory-mapped debug on this processor */
	}

	return (debug_registers_t *) ((drar & DRAR_ADDRESS_MASK)
				      + (dsar & DSAR_ADDRESS_MASK));
}

/*
 * We assume that before save (and after restore):
 *   - OSLAR is NOT locked, or the debugger would not work properly
 *   - LAR is locked, because the ARM ARM says it must be
 *   - OSDLR is NOT locked, or the debugger would not work properly
 */

void save_v7_debug(unsigned * context)
{
	debug_registers_t *dbg = (void *)read_debug_address();
	debug_context_t *ctx = (void *)context;
	unsigned v71, num_bps, num_wps, i;
	unsigned didr, virtext_present = (read_id_pfr1() >> 12) & 0xf;

	if (!dbg) {
		return;
	}

	didr = dbg->didr;
	/*
	 * Work out what version of debug we have
	 */
	v71 =
	    (((didr >> DIDR_VERSION_SHIFT) & DIDR_VERSION_MASK) ==
	     DIDR_VERSION_7_1);

	/*
	 * Save all context to memory
	 */
	ctx->vcr = dbg->vcr;
	ctx->dscr_e = dbg->dscr_e;
	ctx->claim = dbg->claimclr;

	if (v71) {
		ctx->eacr = dbg->eacr;
	}

	num_bps = 1 + ((didr >> DIDR_BP_SHIFT) & DIDR_BP_MASK);
	for (i = 0; i < num_bps; ++i) {
		ctx->bvr[i] = dbg->bvr[i];
		ctx->bcr[i] = dbg->bcr[i];
		if (virtext_present)
			ctx->bxvr[i] = dbg->bxvr[i];
	}

	num_wps = 1 + ((didr >> DIDR_WP_SHIFT) & DIDR_WP_MASK);
	for (i = 0; i < num_wps; ++i) {
		ctx->wvr[i] = dbg->wvr[i];
		ctx->wcr[i] = dbg->wcr[i];
	}

	/*
	 * If Debug V7.1, we must set osdlr (by cp14 interface) before power down.
	 * Once we have done this, debug becomes inaccessible.
	 */
	if (v71) {
		write_osdlr(OSDLR_LOCKED);
	}
}

void restore_v7_debug(unsigned * context)
{
	debug_registers_t *dbg = (void *)read_debug_address();
	debug_context_t *ctx = (void *)context;
	unsigned v71, num_bps, num_wps, i;
	unsigned didr, virtext_present = (read_id_pfr1() >> 12) & 0xf;;

	if (!dbg) {
		return;
	}

	didr = dbg->didr;
	/*
	 * Work out what version of debug we have
	 */
	v71 =
	    (((didr >> DIDR_VERSION_SHIFT) & DIDR_VERSION_MASK) ==
	     DIDR_VERSION_7_1);

	/* Enable write access to registers */
	dbg->lar = LAR_UNLOCKED;
	/*
	 * If Debug V7.1, we must unset osdlr (by cp14 interface) before restoring.
	 * (If the CPU has not actually power-cycled, osdlr may not be reset).
	 */
	if (v71) {
		write_osdlr(OSDLR_UNLOCKED);
	}

	/*
	 * Restore all context from memory
	 */
	dbg->vcr = ctx->vcr;
	dbg->claimclr = CLAIMCLR_CLEAR_ALL;
	dbg->claimset = ctx->claim;

	if (v71) {
		dbg->eacr = ctx->eacr;
	}

	num_bps = 1 + ((didr >> DIDR_BP_SHIFT) & DIDR_BP_MASK);
	for (i = 0; i < num_bps; ++i) {
		dbg->bvr[i] = ctx->bvr[i];
		dbg->bcr[i] = ctx->bcr[i];
		if (virtext_present)
			dbg->bxvr[i] = ctx->bxvr[i];
	}

	num_wps = 1 + ((didr >> DIDR_WP_SHIFT) & DIDR_WP_MASK);
	for (i = 0; i < num_wps; ++i) {
		dbg->wvr[i] = ctx->wvr[i];
		dbg->wcr[i] = ctx->wcr[i];
	}

	/* Clear PRSR.SPD by reading PRSR */
	if (!v71) {
		(dbg->prsr);
	}

	/* Re-enable debug */
	dbg->dscr_e = ctx->dscr_e;

	/* Disable write access to registers */
	dbg->lar = LAR_LOCKED;
}