jtag newtap change & huge manual update
[openocd.git] / src / target / mips32.c
1 /***************************************************************************
2 * Copyright (C) 2008 by Spencer Oliver *
3 * spen@spen-soft.co.uk *
4 * *
5 * Copyright (C) 2008 by David T.L. Wong *
6 * *
7 * Copyright (C) 2007,2008 Øyvind Harboe *
8 * oyvind.harboe@zylin.com *
9 * *
10 * This program is free software; you can redistribute it and/or modify *
11 * it under the terms of the GNU General Public License as published by *
12 * the Free Software Foundation; either version 2 of the License, or *
13 * (at your option) any later version. *
14 * *
15 * This program is distributed in the hope that it will be useful, *
16 * but WITHOUT ANY WARRANTY; without even the implied warranty of *
17 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the *
18 * GNU General Public License for more details. *
19 * *
20 * You should have received a copy of the GNU General Public License *
21 * along with this program; if not, write to the *
22 * Free Software Foundation, Inc., *
23 * 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. *
24 ***************************************************************************/
25 #ifdef HAVE_CONFIG_H
26 #include "config.h"
27 #endif
28
29 #include "mips32.h"
30 #include "jtag.h"
31 #include "log.h"
32
33 #include <stdlib.h>
34 #include <string.h>
35
36 char* mips32_core_reg_list[] =
37 {
38 "zero", "at", "v0", "v1", "a0", "a1", "a2", "a3",
39 "t0", "t1", "t2", "t3", "t4", "t5", "t6", "t7",
40 "s0", "s1", "s2", "s3", "s4", "s5", "s6", "s7",
41 "t8", "t9", "k0", "k1", "gp", "sp", "fp", "ra",
42 "status", "lo", "hi", "badvaddr", "cause", "pc"
43 };
44
45 mips32_core_reg_t mips32_core_reg_list_arch_info[MIPS32NUMCOREREGS] =
46 {
47 {0, NULL, NULL},
48 {1, NULL, NULL},
49 {2, NULL, NULL},
50 {3, NULL, NULL},
51 {4, NULL, NULL},
52 {5, NULL, NULL},
53 {6, NULL, NULL},
54 {7, NULL, NULL},
55 {8, NULL, NULL},
56 {9, NULL, NULL},
57 {10, NULL, NULL},
58 {11, NULL, NULL},
59 {12, NULL, NULL},
60 {13, NULL, NULL},
61 {14, NULL, NULL},
62 {15, NULL, NULL},
63 {16, NULL, NULL},
64 {17, NULL, NULL},
65 {18, NULL, NULL},
66 {19, NULL, NULL},
67 {20, NULL, NULL},
68 {21, NULL, NULL},
69 {22, NULL, NULL},
70 {23, NULL, NULL},
71 {24, NULL, NULL},
72 {25, NULL, NULL},
73 {26, NULL, NULL},
74 {27, NULL, NULL},
75 {28, NULL, NULL},
76 {29, NULL, NULL},
77 {30, NULL, NULL},
78 {31, NULL, NULL},
79
80 {32, NULL, NULL},
81 {33, NULL, NULL},
82 {34, NULL, NULL},
83 {35, NULL, NULL},
84 {36, NULL, NULL},
85 {37, NULL, NULL},
86 };
87
88 u8 mips32_gdb_dummy_fsr_value[] = {0, 0, 0, 0};
89
90 reg_t mips32_gdb_dummy_fsr_reg =
91 {
92 "GDB dummy floating-point status register", mips32_gdb_dummy_fsr_value, 0, 1, 32, NULL, 0, NULL, 0
93 };
94
95 u8 mips32_gdb_dummy_fir_value[] = {0, 0, 0, 0};
96
97 reg_t mips32_gdb_dummy_fir_reg =
98 {
99 "GDB dummy floating-point register", mips32_gdb_dummy_fir_value, 0, 1, 32, NULL, 0, NULL, 0
100 };
101
102 int mips32_core_reg_arch_type = -1;
103
104 int mips32_get_core_reg(reg_t *reg)
105 {
106 int retval;
107 mips32_core_reg_t *mips32_reg = reg->arch_info;
108 target_t *target = mips32_reg->target;
109 mips32_common_t *mips32_target = target->arch_info;
110
111 if (target->state != TARGET_HALTED)
112 {
113 return ERROR_TARGET_NOT_HALTED;
114 }
115
116 retval = mips32_target->read_core_reg(target, mips32_reg->num);
117
118 return retval;
119 }
120
121 int mips32_set_core_reg(reg_t *reg, u8 *buf)
122 {
123 mips32_core_reg_t *mips32_reg = reg->arch_info;
124 target_t *target = mips32_reg->target;
125 u32 value = buf_get_u32(buf, 0, 32);
126
127 if (target->state != TARGET_HALTED)
128 {
129 return ERROR_TARGET_NOT_HALTED;
130 }
131
132 buf_set_u32(reg->value, 0, 32, value);
133 reg->dirty = 1;
134 reg->valid = 1;
135
136 return ERROR_OK;
137 }
138
139 int mips32_read_core_reg(struct target_s *target, int num)
140 {
141 u32 reg_value;
142 mips32_core_reg_t *mips_core_reg;
143
144 /* get pointers to arch-specific information */
145 mips32_common_t *mips32 = target->arch_info;
146
147 if ((num < 0) || (num >= MIPS32NUMCOREREGS))
148 return ERROR_INVALID_ARGUMENTS;
149
150 mips_core_reg = mips32->core_cache->reg_list[num].arch_info;
151 reg_value = mips32->core_regs[num];
152 buf_set_u32(mips32->core_cache->reg_list[num].value, 0, 32, reg_value);
153 mips32->core_cache->reg_list[num].valid = 1;
154 mips32->core_cache->reg_list[num].dirty = 0;
155
156 return ERROR_OK;
157 }
158
159 int mips32_write_core_reg(struct target_s *target, int num)
160 {
161 u32 reg_value;
162 mips32_core_reg_t *mips_core_reg;
163
164 /* get pointers to arch-specific information */
165 mips32_common_t *mips32 = target->arch_info;
166
167 if ((num < 0) || (num >= MIPS32NUMCOREREGS))
168 return ERROR_INVALID_ARGUMENTS;
169
170 reg_value = buf_get_u32(mips32->core_cache->reg_list[num].value, 0, 32);
171 mips_core_reg = mips32->core_cache->reg_list[num].arch_info;
172 mips32->core_regs[num] = reg_value;
173 LOG_DEBUG("write core reg %i value 0x%x", num , reg_value);
174 mips32->core_cache->reg_list[num].valid = 1;
175 mips32->core_cache->reg_list[num].dirty = 0;
176
177 return ERROR_OK;
178 }
179
180 int mips32_invalidate_core_regs(target_t *target)
181 {
182 /* get pointers to arch-specific information */
183 mips32_common_t *mips32 = target->arch_info;
184 int i;
185
186 for (i = 0; i < mips32->core_cache->num_regs; i++)
187 {
188 mips32->core_cache->reg_list[i].valid = 0;
189 mips32->core_cache->reg_list[i].dirty = 0;
190 }
191
192 return ERROR_OK;
193 }
194
195 int mips32_get_gdb_reg_list(target_t *target, reg_t **reg_list[], int *reg_list_size)
196 {
197 /* get pointers to arch-specific information */
198 mips32_common_t *mips32 = target->arch_info;
199 int i;
200
201 /* include fsr/fir reg */
202 *reg_list_size = MIPS32NUMCOREREGS + 2;
203 *reg_list = malloc(sizeof(reg_t*) * (*reg_list_size));
204
205 for (i = 0; i < MIPS32NUMCOREREGS; i++)
206 {
207 (*reg_list)[i] = &mips32->core_cache->reg_list[i];
208 }
209
210 /* add dummy floating points regs */
211 (*reg_list)[38] = &mips32_gdb_dummy_fsr_reg;
212 (*reg_list)[39] = &mips32_gdb_dummy_fir_reg;
213
214 return ERROR_OK;
215 }
216
217 int mips32_save_context(target_t *target)
218 {
219 int i;
220
221 /* get pointers to arch-specific information */
222 mips32_common_t *mips32 = target->arch_info;
223 mips_ejtag_t *ejtag_info = &mips32->ejtag_info;
224
225 /* read core registers */
226 mips32_pracc_read_regs(ejtag_info, mips32->core_regs);
227
228 for (i = 0; i < MIPS32NUMCOREREGS; i++)
229 {
230 if (!mips32->core_cache->reg_list[i].valid)
231 {
232 mips32->read_core_reg(target, i);
233 }
234 }
235
236 return ERROR_OK;
237 }
238
239 int mips32_restore_context(target_t *target)
240 {
241 int i;
242
243 /* get pointers to arch-specific information */
244 mips32_common_t *mips32 = target->arch_info;
245 mips_ejtag_t *ejtag_info = &mips32->ejtag_info;
246
247 for (i = 0; i < MIPS32NUMCOREREGS; i++)
248 {
249 if (mips32->core_cache->reg_list[i].dirty)
250 {
251 mips32->write_core_reg(target, i);
252 }
253 }
254
255 /* write core regs */
256 mips32_pracc_write_regs(ejtag_info, mips32->core_regs);
257
258 return ERROR_OK;
259 }
260
261 int mips32_arch_state(struct target_s *target)
262 {
263 mips32_common_t *mips32 = target->arch_info;
264
265 if (mips32->common_magic != MIPS32_COMMON_MAGIC)
266 {
267 LOG_ERROR("BUG: called for a non-MIPS32 target");
268 exit(-1);
269 }
270
271 LOG_USER("target halted due to %s, pc: 0x%8.8x",
272 Jim_Nvp_value2name_simple( nvp_target_debug_reason, target->debug_reason )->name ,
273 buf_get_u32(mips32->core_cache->reg_list[MIPS32_PC].value, 0, 32));
274
275 return ERROR_OK;
276 }
277
278 reg_cache_t *mips32_build_reg_cache(target_t *target)
279 {
280 /* get pointers to arch-specific information */
281 mips32_common_t *mips32 = target->arch_info;
282
283 int num_regs = MIPS32NUMCOREREGS;
284 reg_cache_t **cache_p = register_get_last_cache_p(&target->reg_cache);
285 reg_cache_t *cache = malloc(sizeof(reg_cache_t));
286 reg_t *reg_list = malloc(sizeof(reg_t) * num_regs);
287 mips32_core_reg_t *arch_info = malloc(sizeof(mips32_core_reg_t) * num_regs);
288 int i;
289
290 if (mips32_core_reg_arch_type == -1)
291 mips32_core_reg_arch_type = register_reg_arch_type(mips32_get_core_reg, mips32_set_core_reg);
292
293 register_init_dummy(&mips32_gdb_dummy_fsr_reg);
294 register_init_dummy(&mips32_gdb_dummy_fir_reg);
295
296 /* Build the process context cache */
297 cache->name = "mips32 registers";
298 cache->next = NULL;
299 cache->reg_list = reg_list;
300 cache->num_regs = num_regs;
301 (*cache_p) = cache;
302 mips32->core_cache = cache;
303
304 for (i = 0; i < num_regs; i++)
305 {
306 arch_info[i] = mips32_core_reg_list_arch_info[i];
307 arch_info[i].target = target;
308 arch_info[i].mips32_common = mips32;
309 reg_list[i].name = mips32_core_reg_list[i];
310 reg_list[i].size = 32;
311 reg_list[i].value = calloc(1, 4);
312 reg_list[i].dirty = 0;
313 reg_list[i].valid = 0;
314 reg_list[i].bitfield_desc = NULL;
315 reg_list[i].num_bitfields = 0;
316 reg_list[i].arch_type = mips32_core_reg_arch_type;
317 reg_list[i].arch_info = &arch_info[i];
318 }
319
320 return cache;
321 }
322
323 int mips32_init_arch_info(target_t *target, mips32_common_t *mips32, jtag_tap_t *tap, const char *variant)
324 {
325 target->arch_info = mips32;
326 mips32->common_magic = MIPS32_COMMON_MAGIC;
327
328 /* has breakpoint/watchpint unit been scanned */
329 mips32->bp_scanned = 0;
330 mips32->data_break_list = NULL;
331
332 mips32->ejtag_info.tap = tap;
333 mips32->read_core_reg = mips32_read_core_reg;
334 mips32->write_core_reg = mips32_write_core_reg;
335
336 return ERROR_OK;
337 }
338
339 int mips32_register_commands(struct command_context_s *cmd_ctx)
340 {
341 return ERROR_OK;
342 }
343
344 int mips32_run_algorithm(struct target_s *target, int num_mem_params, mem_param_t *mem_params, int num_reg_params, reg_param_t *reg_params, u32 entry_point, u32 exit_point, int timeout_ms, void *arch_info)
345 {
346 /*TODO*/
347 return ERROR_OK;
348 }
349
350 int mips32_examine(struct target_s *target)
351 {
352 mips32_common_t *mips32 = target->arch_info;
353
354 if (!target->type->examined)
355 {
356 target->type->examined = 1;
357
358 /* we will configure later */
359 mips32->bp_scanned = 0;
360 mips32->num_inst_bpoints = 0;
361 mips32->num_data_bpoints = 0;
362 mips32->num_inst_bpoints_avail = 0;
363 mips32->num_data_bpoints_avail = 0;
364 }
365
366 return ERROR_OK;
367 }
368
369 int mips32_configure_break_unit(struct target_s *target)
370 {
371 /* get pointers to arch-specific information */
372 mips32_common_t *mips32 = target->arch_info;
373 int retval;
374 u32 dcr, bpinfo;
375 int i;
376
377 if (mips32->bp_scanned)
378 return ERROR_OK;
379
380 /* get info about breakpoint support */
381 if ((retval = target_read_u32(target, EJTAG_DCR, &dcr)) != ERROR_OK)
382 return retval;
383
384 if (dcr & (1 << 16))
385 {
386 /* get number of inst breakpoints */
387 if ((retval = target_read_u32(target, EJTAG_IBS, &bpinfo)) != ERROR_OK)
388 return retval;
389
390 mips32->num_inst_bpoints = (bpinfo >> 24) & 0x0F;
391 mips32->num_inst_bpoints_avail = mips32->num_inst_bpoints;
392 mips32->inst_break_list = calloc(mips32->num_inst_bpoints, sizeof(mips32_comparator_t));
393 for (i = 0; i < mips32->num_inst_bpoints; i++)
394 {
395 mips32->inst_break_list[i].reg_address = EJTAG_IBA1 + (0x100 * i);
396 }
397
398 /* clear IBIS reg */
399 if ((retval = target_write_u32(target, EJTAG_IBS, 0)) != ERROR_OK)
400 return retval;
401 }
402
403 if (dcr & (1 << 17))
404 {
405 /* get number of data breakpoints */
406 if ((retval = target_read_u32(target, EJTAG_DBS, &bpinfo)) != ERROR_OK)
407 return retval;
408
409 mips32->num_data_bpoints = (bpinfo >> 24) & 0x0F;
410 mips32->num_data_bpoints_avail = mips32->num_data_bpoints;
411 mips32->data_break_list = calloc(mips32->num_data_bpoints, sizeof(mips32_comparator_t));
412 for (i = 0; i < mips32->num_data_bpoints; i++)
413 {
414 mips32->data_break_list[i].reg_address = EJTAG_DBA1 + (0x100 * i);
415 }
416
417 /* clear DBIS reg */
418 if ((retval = target_write_u32(target, EJTAG_DBS, 0)) != ERROR_OK)
419 return retval;
420 }
421
422 LOG_DEBUG("DCR 0x%x numinst %i numdata %i", dcr, mips32->num_inst_bpoints, mips32->num_data_bpoints);
423
424 mips32->bp_scanned = 1;
425
426 return ERROR_OK;
427 }

Linking to existing account procedure

If you already have an account and want to add another login method you MUST first sign in with your existing account and then change URL to read https://review.openocd.org/login/?link to get to this page again but this time it'll work for linking. Thank you.

SSH host keys fingerprints

1024 SHA256:YKx8b7u5ZWdcbp7/4AeXNaqElP49m6QrwfXaqQGJAOk gerrit-code-review@openocd.zylin.com (DSA)
384 SHA256:jHIbSQa4REvwCFG4cq5LBlBLxmxSqelQPem/EXIrxjk gerrit-code-review@openocd.org (ECDSA)
521 SHA256:UAOPYkU9Fjtcao0Ul/Rrlnj/OsQvt+pgdYSZ4jOYdgs gerrit-code-review@openocd.org (ECDSA)
256 SHA256:A13M5QlnozFOvTllybRZH6vm7iSt0XLxbA48yfc2yfY gerrit-code-review@openocd.org (ECDSA)
256 SHA256:spYMBqEYoAOtK7yZBrcwE8ZpYt6b68Cfh9yEVetvbXg gerrit-code-review@openocd.org (ED25519)
+--[ED25519 256]--+
|=..              |
|+o..   .         |
|*.o   . .        |
|+B . . .         |
|Bo. = o S        |
|Oo.+ + =         |
|oB=.* = . o      |
| =+=.+   + E     |
|. .=o   . o      |
+----[SHA256]-----+
2048 SHA256:0Onrb7/PHjpo6iVZ7xQX2riKN83FJ3KGU0TvI0TaFG4 gerrit-code-review@openocd.zylin.com (RSA)