2 * PowerPC gdb server stub
4 * Copyright (c) 2003-2005 Fabrice Bellard
5 * Copyright (c) 2013 SUSE LINUX Products GmbH
7 * This library is free software; you can redistribute it and/or
8 * modify it under the terms of the GNU Lesser General Public
9 * License as published by the Free Software Foundation; either
10 * version 2.1 of the License, or (at your option) any later version.
12 * This library is distributed in the hope that it will be useful,
13 * but WITHOUT ANY WARRANTY; without even the implied warranty of
14 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
15 * Lesser General Public License for more details.
17 * You should have received a copy of the GNU Lesser General Public
18 * License along with this library; if not, see <http://www.gnu.org/licenses/>.
20 #include "qemu/osdep.h"
22 #include "exec/gdbstub.h"
23 #include "gdbstub/helpers.h"
26 static int ppc_gdb_register_len_apple(int n
)
37 case 64 + 32: /* nip */
38 case 65 + 32: /* msr */
39 case 67 + 32: /* lr */
40 case 68 + 32: /* ctr */
41 case 70 + 32: /* fpscr */
43 case 66 + 32: /* cr */
44 case 69 + 32: /* xer */
51 static int ppc_gdb_register_len(int n
)
56 return sizeof(target_ulong
);
76 return sizeof(target_ulong
);
82 return sizeof(target_ulong
);
89 * We need to present the registers to gdb in the "current" memory
90 * ordering. For user-only mode we get this for free;
91 * TARGET_BIG_ENDIAN is set to the proper ordering for the
92 * binary, and cannot be changed. For system mode,
93 * TARGET_BIG_ENDIAN is always set, and we must check the current
94 * mode of the chip to see if we're running in little-endian.
96 void ppc_maybe_bswap_register(CPUPPCState
*env
, uint8_t *mem_buf
, int len
)
98 #ifndef CONFIG_USER_ONLY
99 if (!FIELD_EX64(env
->msr
, MSR
, LE
)) {
101 } else if (len
== 4) {
102 bswap32s((uint32_t *)mem_buf
);
103 } else if (len
== 8) {
104 bswap64s((uint64_t *)mem_buf
);
105 } else if (len
== 16) {
106 bswap128s((Int128
*)mem_buf
);
108 g_assert_not_reached();
114 * Old gdb always expects FP registers. Newer (xml-aware) gdb only
115 * expects whatever the target description contains. Due to a
116 * historical mishap the FP registers appear in between core integer
117 * regs and PC, MSR, CR, and so forth. We hack round this by giving
118 * the FP regs zero size when talking to a newer gdb.
121 int ppc_cpu_gdb_read_register(CPUState
*cs
, GByteArray
*buf
, int n
)
123 PowerPCCPU
*cpu
= POWERPC_CPU(cs
);
124 CPUPPCState
*env
= &cpu
->env
;
126 int r
= ppc_gdb_register_len(n
);
134 gdb_get_regl(buf
, env
->gpr
[n
]);
137 gdb_get_reg64(buf
, *cpu_fpr_ptr(env
, n
- 32));
141 gdb_get_regl(buf
, env
->nip
);
144 gdb_get_regl(buf
, env
->msr
);
150 for (i
= 0; i
< 8; i
++) {
151 cr
|= env
->crf
[i
] << (32 - ((i
+ 1) * 4));
153 gdb_get_reg32(buf
, cr
);
157 gdb_get_regl(buf
, env
->lr
);
160 gdb_get_regl(buf
, env
->ctr
);
163 gdb_get_reg32(buf
, cpu_read_xer(env
));
166 gdb_get_reg32(buf
, env
->fpscr
);
170 mem_buf
= buf
->data
+ buf
->len
- r
;
171 ppc_maybe_bswap_register(env
, mem_buf
, r
);
175 int ppc_cpu_gdb_read_register_apple(CPUState
*cs
, GByteArray
*buf
, int n
)
177 PowerPCCPU
*cpu
= POWERPC_CPU(cs
);
178 CPUPPCState
*env
= &cpu
->env
;
180 int r
= ppc_gdb_register_len_apple(n
);
188 gdb_get_reg64(buf
, env
->gpr
[n
]);
191 gdb_get_reg64(buf
, *cpu_fpr_ptr(env
, n
- 32));
194 gdb_get_reg64(buf
, n
- 64);
195 gdb_get_reg64(buf
, 0);
199 gdb_get_reg64(buf
, env
->nip
);
202 gdb_get_reg64(buf
, env
->msr
);
208 for (i
= 0; i
< 8; i
++) {
209 cr
|= env
->crf
[i
] << (32 - ((i
+ 1) * 4));
211 gdb_get_reg32(buf
, cr
);
215 gdb_get_reg64(buf
, env
->lr
);
218 gdb_get_reg64(buf
, env
->ctr
);
221 gdb_get_reg32(buf
, cpu_read_xer(env
));
224 gdb_get_reg64(buf
, env
->fpscr
);
228 mem_buf
= buf
->data
+ buf
->len
- r
;
229 ppc_maybe_bswap_register(env
, mem_buf
, r
);
233 int ppc_cpu_gdb_write_register(CPUState
*cs
, uint8_t *mem_buf
, int n
)
235 PowerPCCPU
*cpu
= POWERPC_CPU(cs
);
236 CPUPPCState
*env
= &cpu
->env
;
237 int r
= ppc_gdb_register_len(n
);
242 ppc_maybe_bswap_register(env
, mem_buf
, r
);
245 env
->gpr
[n
] = ldtul_p(mem_buf
);
248 *cpu_fpr_ptr(env
, n
- 32) = ldq_p(mem_buf
);
252 env
->nip
= ldtul_p(mem_buf
);
255 ppc_store_msr(env
, ldtul_p(mem_buf
));
259 uint32_t cr
= ldl_p(mem_buf
);
261 for (i
= 0; i
< 8; i
++) {
262 env
->crf
[i
] = (cr
>> (32 - ((i
+ 1) * 4))) & 0xF;
267 env
->lr
= ldtul_p(mem_buf
);
270 env
->ctr
= ldtul_p(mem_buf
);
273 cpu_write_xer(env
, ldl_p(mem_buf
));
277 ppc_store_fpscr(env
, ldtul_p(mem_buf
));
283 int ppc_cpu_gdb_write_register_apple(CPUState
*cs
, uint8_t *mem_buf
, int n
)
285 PowerPCCPU
*cpu
= POWERPC_CPU(cs
);
286 CPUPPCState
*env
= &cpu
->env
;
287 int r
= ppc_gdb_register_len_apple(n
);
292 ppc_maybe_bswap_register(env
, mem_buf
, r
);
295 env
->gpr
[n
] = ldq_p(mem_buf
);
298 *cpu_fpr_ptr(env
, n
- 32) = ldq_p(mem_buf
);
302 env
->nip
= ldq_p(mem_buf
);
305 ppc_store_msr(env
, ldq_p(mem_buf
));
309 uint32_t cr
= ldl_p(mem_buf
);
311 for (i
= 0; i
< 8; i
++) {
312 env
->crf
[i
] = (cr
>> (32 - ((i
+ 1) * 4))) & 0xF;
317 env
->lr
= ldq_p(mem_buf
);
320 env
->ctr
= ldq_p(mem_buf
);
323 cpu_write_xer(env
, ldl_p(mem_buf
));
327 ppc_store_fpscr(env
, ldq_p(mem_buf
));
334 #ifndef CONFIG_USER_ONLY
335 void ppc_gdb_gen_spr_xml(PowerPCCPU
*cpu
)
337 PowerPCCPUClass
*pcc
= POWERPC_CPU_GET_CLASS(cpu
);
338 CPUPPCState
*env
= &cpu
->env
;
341 unsigned int num_regs
= 0;
344 if (pcc
->gdb_spr_xml
) {
348 xml
= g_string_new("<?xml version=\"1.0\"?>");
349 g_string_append(xml
, "<!DOCTYPE target SYSTEM \"gdb-target.dtd\">");
350 g_string_append(xml
, "<feature name=\"org.qemu.power.spr\">");
352 for (i
= 0; i
< ARRAY_SIZE(env
->spr_cb
); i
++) {
353 ppc_spr_t
*spr
= &env
->spr_cb
[i
];
359 spr_name
= g_ascii_strdown(spr
->name
, -1);
360 g_string_append_printf(xml
, "<reg name=\"%s\"", spr_name
);
363 g_string_append_printf(xml
, " bitsize=\"%d\"", TARGET_LONG_BITS
);
364 g_string_append(xml
, " group=\"spr\"/>");
367 * GDB identifies registers based on the order they are
368 * presented in the XML. These ids will not match QEMU's
369 * representation (which follows the PowerISA).
371 * Store the position of the current register description so
372 * we can make the correspondence later.
374 spr
->gdb_id
= num_regs
;
378 g_string_append(xml
, "</feature>");
380 pcc
->gdb_num_sprs
= num_regs
;
381 pcc
->gdb_spr_xml
= g_string_free(xml
, false);
384 const char *ppc_gdb_get_dynamic_xml(CPUState
*cs
, const char *xml_name
)
386 PowerPCCPUClass
*pcc
= POWERPC_CPU_GET_CLASS(cs
);
388 if (strcmp(xml_name
, "power-spr.xml") == 0) {
389 return pcc
->gdb_spr_xml
;
395 #if !defined(CONFIG_USER_ONLY)
396 static int gdb_find_spr_idx(CPUPPCState
*env
, int n
)
400 for (i
= 0; i
< ARRAY_SIZE(env
->spr_cb
); i
++) {
401 ppc_spr_t
*spr
= &env
->spr_cb
[i
];
403 if (spr
->name
&& spr
->gdb_id
== n
) {
410 static int gdb_get_spr_reg(CPUPPCState
*env
, GByteArray
*buf
, int n
)
415 reg
= gdb_find_spr_idx(env
, n
);
420 len
= TARGET_LONG_SIZE
;
421 gdb_get_regl(buf
, env
->spr
[reg
]);
422 ppc_maybe_bswap_register(env
, gdb_get_reg_ptr(buf
, len
), len
);
426 static int gdb_set_spr_reg(CPUPPCState
*env
, uint8_t *mem_buf
, int n
)
431 reg
= gdb_find_spr_idx(env
, n
);
436 len
= TARGET_LONG_SIZE
;
437 ppc_maybe_bswap_register(env
, mem_buf
, len
);
438 env
->spr
[reg
] = ldn_p(mem_buf
, len
);
444 static int gdb_get_float_reg(CPUPPCState
*env
, GByteArray
*buf
, int n
)
448 gdb_get_reg64(buf
, *cpu_fpr_ptr(env
, n
));
449 mem_buf
= gdb_get_reg_ptr(buf
, 8);
450 ppc_maybe_bswap_register(env
, mem_buf
, 8);
454 gdb_get_reg32(buf
, env
->fpscr
);
455 mem_buf
= gdb_get_reg_ptr(buf
, 4);
456 ppc_maybe_bswap_register(env
, mem_buf
, 4);
462 static int gdb_set_float_reg(CPUPPCState
*env
, uint8_t *mem_buf
, int n
)
465 ppc_maybe_bswap_register(env
, mem_buf
, 8);
466 *cpu_fpr_ptr(env
, n
) = ldq_p(mem_buf
);
470 ppc_maybe_bswap_register(env
, mem_buf
, 4);
471 ppc_store_fpscr(env
, ldl_p(mem_buf
));
477 static int gdb_get_avr_reg(CPUPPCState
*env
, GByteArray
*buf
, int n
)
482 ppc_avr_t
*avr
= cpu_avr_ptr(env
, n
);
483 gdb_get_reg128(buf
, avr
->VsrD(0), avr
->VsrD(1));
484 mem_buf
= gdb_get_reg_ptr(buf
, 16);
485 ppc_maybe_bswap_register(env
, mem_buf
, 16);
489 gdb_get_reg32(buf
, ppc_get_vscr(env
));
490 mem_buf
= gdb_get_reg_ptr(buf
, 4);
491 ppc_maybe_bswap_register(env
, mem_buf
, 4);
495 gdb_get_reg32(buf
, (uint32_t)env
->spr
[SPR_VRSAVE
]);
496 mem_buf
= gdb_get_reg_ptr(buf
, 4);
497 ppc_maybe_bswap_register(env
, mem_buf
, 4);
503 static int gdb_set_avr_reg(CPUPPCState
*env
, uint8_t *mem_buf
, int n
)
506 ppc_avr_t
*avr
= cpu_avr_ptr(env
, n
);
507 ppc_maybe_bswap_register(env
, mem_buf
, 16);
508 avr
->VsrD(0) = ldq_p(mem_buf
);
509 avr
->VsrD(1) = ldq_p(mem_buf
+ 8);
513 ppc_maybe_bswap_register(env
, mem_buf
, 4);
514 ppc_store_vscr(env
, ldl_p(mem_buf
));
518 ppc_maybe_bswap_register(env
, mem_buf
, 4);
519 env
->spr
[SPR_VRSAVE
] = (target_ulong
)ldl_p(mem_buf
);
525 static int gdb_get_spe_reg(CPUPPCState
*env
, GByteArray
*buf
, int n
)
528 #if defined(TARGET_PPC64)
529 gdb_get_reg32(buf
, env
->gpr
[n
] >> 32);
530 ppc_maybe_bswap_register(env
, gdb_get_reg_ptr(buf
, 4), 4);
532 gdb_get_reg32(buf
, env
->gprh
[n
]);
537 gdb_get_reg64(buf
, env
->spe_acc
);
538 ppc_maybe_bswap_register(env
, gdb_get_reg_ptr(buf
, 8), 8);
542 gdb_get_reg32(buf
, env
->spe_fscr
);
543 ppc_maybe_bswap_register(env
, gdb_get_reg_ptr(buf
, 4), 4);
549 static int gdb_set_spe_reg(CPUPPCState
*env
, uint8_t *mem_buf
, int n
)
552 #if defined(TARGET_PPC64)
553 target_ulong lo
= (uint32_t)env
->gpr
[n
];
556 ppc_maybe_bswap_register(env
, mem_buf
, 4);
558 hi
= (target_ulong
)ldl_p(mem_buf
) << 32;
559 env
->gpr
[n
] = lo
| hi
;
561 env
->gprh
[n
] = ldl_p(mem_buf
);
566 ppc_maybe_bswap_register(env
, mem_buf
, 8);
567 env
->spe_acc
= ldq_p(mem_buf
);
571 ppc_maybe_bswap_register(env
, mem_buf
, 4);
572 env
->spe_fscr
= ldl_p(mem_buf
);
578 static int gdb_get_vsx_reg(CPUPPCState
*env
, GByteArray
*buf
, int n
)
581 gdb_get_reg64(buf
, *cpu_vsrl_ptr(env
, n
));
582 ppc_maybe_bswap_register(env
, gdb_get_reg_ptr(buf
, 8), 8);
588 static int gdb_set_vsx_reg(CPUPPCState
*env
, uint8_t *mem_buf
, int n
)
591 ppc_maybe_bswap_register(env
, mem_buf
, 8);
592 *cpu_vsrl_ptr(env
, n
) = ldq_p(mem_buf
);
598 gchar
*ppc_gdb_arch_name(CPUState
*cs
)
600 #if defined(TARGET_PPC64)
601 return g_strdup("powerpc:common64");
603 return g_strdup("powerpc:common");
607 void ppc_gdb_init(CPUState
*cs
, PowerPCCPUClass
*pcc
)
609 if (pcc
->insns_flags
& PPC_FLOAT
) {
610 gdb_register_coprocessor(cs
, gdb_get_float_reg
, gdb_set_float_reg
,
611 33, "power-fpu.xml", 0);
613 if (pcc
->insns_flags
& PPC_ALTIVEC
) {
614 gdb_register_coprocessor(cs
, gdb_get_avr_reg
, gdb_set_avr_reg
,
615 34, "power-altivec.xml", 0);
617 if (pcc
->insns_flags
& PPC_SPE
) {
618 gdb_register_coprocessor(cs
, gdb_get_spe_reg
, gdb_set_spe_reg
,
619 34, "power-spe.xml", 0);
621 if (pcc
->insns_flags2
& PPC2_VSX
) {
622 gdb_register_coprocessor(cs
, gdb_get_vsx_reg
, gdb_set_vsx_reg
,
623 32, "power-vsx.xml", 0);
625 #ifndef CONFIG_USER_ONLY
626 gdb_register_coprocessor(cs
, gdb_get_spr_reg
, gdb_set_spr_reg
,
627 pcc
->gdb_num_sprs
, "power-spr.xml", 0);