]> Git Repo - qemu.git/blame - target/ppc/arch_dump.c
Merge remote-tracking branch 'remotes/ehabkost/tags/x86-next-pull-request' into staging
[qemu.git] / target / ppc / arch_dump.c
CommitLineData
e62fbc54 1/*
356bb70e 2 * writing ELF notes for ppc{64,} arch
e62fbc54
AK
3 *
4 *
5 * Copyright IBM, Corp. 2013
6 *
7 * Authors:
8 * Aneesh Kumar K.V <[email protected]>
9 *
10 * This work is licensed under the terms of the GNU GPL, version 2. See
11 * the COPYING file in the top-level directory.
12 *
13 */
14
0d75590d 15#include "qemu/osdep.h"
e62fbc54
AK
16#include "cpu.h"
17#include "elf.h"
e62fbc54
AK
18#include "sysemu/dump.h"
19#include "sysemu/kvm.h"
20
356bb70e
MN
21#ifdef TARGET_PPC64
22#define ELFCLASS ELFCLASS64
23#define cpu_to_dump_reg cpu_to_dump64
24typedef uint64_t reg_t;
25typedef Elf64_Nhdr Elf_Nhdr;
26#else
27#define ELFCLASS ELFCLASS32
28#define cpu_to_dump_reg cpu_to_dump32
29typedef uint32_t reg_t;
30typedef Elf32_Nhdr Elf_Nhdr;
31#endif /* TARGET_PPC64 */
32
33struct PPCUserRegStruct {
34 reg_t gpr[32];
35 reg_t nip;
36 reg_t msr;
37 reg_t orig_gpr3;
38 reg_t ctr;
39 reg_t link;
40 reg_t xer;
41 reg_t ccr;
42 reg_t softe;
43 reg_t trap;
44 reg_t dar;
45 reg_t dsisr;
46 reg_t result;
e62fbc54
AK
47} QEMU_PACKED;
48
356bb70e 49struct PPCElfPrstatus {
e62fbc54 50 char pad1[112];
356bb70e 51 struct PPCUserRegStruct pr_reg;
b88290cd 52 char pad2[40];
e62fbc54
AK
53} QEMU_PACKED;
54
55
356bb70e 56struct PPCElfFpregset {
e62fbc54 57 uint64_t fpr[32];
356bb70e 58 reg_t fpscr;
e62fbc54
AK
59} QEMU_PACKED;
60
61
356bb70e 62struct PPCElfVmxregset {
e62fbc54
AK
63 ppc_avr_t avr[32];
64 ppc_avr_t vscr;
65 union {
66 ppc_avr_t unused;
67 uint32_t value;
68 } vrsave;
69} QEMU_PACKED;
70
356bb70e 71struct PPCElfVsxregset {
e62fbc54
AK
72 uint64_t vsr[32];
73} QEMU_PACKED;
74
356bb70e 75struct PPCElfSperegset {
e62fbc54
AK
76 uint32_t evr[32];
77 uint64_t spe_acc;
78 uint32_t spe_fscr;
79} QEMU_PACKED;
80
81typedef struct noteStruct {
356bb70e 82 Elf_Nhdr hdr;
e62fbc54
AK
83 char name[5];
84 char pad3[3];
85 union {
356bb70e
MN
86 struct PPCElfPrstatus prstatus;
87 struct PPCElfFpregset fpregset;
88 struct PPCElfVmxregset vmxregset;
89 struct PPCElfVsxregset vsxregset;
90 struct PPCElfSperegset speregset;
e62fbc54
AK
91 } contents;
92} QEMU_PACKED Note;
93
0c967de9
BR
94typedef struct NoteFuncArg {
95 Note note;
96 DumpState *state;
97} NoteFuncArg;
e62fbc54 98
356bb70e 99static void ppc_write_elf_prstatus(NoteFuncArg *arg, PowerPCCPU *cpu)
e62fbc54
AK
100{
101 int i;
356bb70e
MN
102 reg_t cr;
103 struct PPCElfPrstatus *prstatus;
104 struct PPCUserRegStruct *reg;
0c967de9
BR
105 Note *note = &arg->note;
106 DumpState *s = arg->state;
e62fbc54 107
0c967de9 108 note->hdr.n_type = cpu_to_dump32(s, NT_PRSTATUS);
e62fbc54
AK
109
110 prstatus = &note->contents.prstatus;
111 memset(prstatus, 0, sizeof(*prstatus));
112 reg = &prstatus->pr_reg;
113
114 for (i = 0; i < 32; i++) {
356bb70e 115 reg->gpr[i] = cpu_to_dump_reg(s, cpu->env.gpr[i]);
e62fbc54 116 }
356bb70e
MN
117 reg->nip = cpu_to_dump_reg(s, cpu->env.nip);
118 reg->msr = cpu_to_dump_reg(s, cpu->env.msr);
119 reg->ctr = cpu_to_dump_reg(s, cpu->env.ctr);
120 reg->link = cpu_to_dump_reg(s, cpu->env.lr);
121 reg->xer = cpu_to_dump_reg(s, cpu_read_xer(&cpu->env));
e62fbc54
AK
122
123 cr = 0;
124 for (i = 0; i < 8; i++) {
125 cr |= (cpu->env.crf[i] & 15) << (4 * (7 - i));
126 }
356bb70e 127 reg->ccr = cpu_to_dump_reg(s, cr);
e62fbc54
AK
128}
129
356bb70e 130static void ppc_write_elf_fpregset(NoteFuncArg *arg, PowerPCCPU *cpu)
e62fbc54
AK
131{
132 int i;
356bb70e 133 struct PPCElfFpregset *fpregset;
0c967de9
BR
134 Note *note = &arg->note;
135 DumpState *s = arg->state;
e62fbc54 136
0c967de9 137 note->hdr.n_type = cpu_to_dump32(s, NT_PRFPREG);
e62fbc54
AK
138
139 fpregset = &note->contents.fpregset;
140 memset(fpregset, 0, sizeof(*fpregset));
141
142 for (i = 0; i < 32; i++) {
ef96e3ae
MCA
143 uint64_t *fpr = cpu_fpr_ptr(&cpu->env, i);
144 fpregset->fpr[i] = cpu_to_dump64(s, *fpr);
e62fbc54 145 }
356bb70e 146 fpregset->fpscr = cpu_to_dump_reg(s, cpu->env.fpscr);
e62fbc54
AK
147}
148
356bb70e 149static void ppc_write_elf_vmxregset(NoteFuncArg *arg, PowerPCCPU *cpu)
e62fbc54
AK
150{
151 int i;
356bb70e 152 struct PPCElfVmxregset *vmxregset;
0c967de9
BR
153 Note *note = &arg->note;
154 DumpState *s = arg->state;
e62fbc54 155
0c967de9 156 note->hdr.n_type = cpu_to_dump32(s, NT_PPC_VMX);
e62fbc54
AK
157 vmxregset = &note->contents.vmxregset;
158 memset(vmxregset, 0, sizeof(*vmxregset));
159
160 for (i = 0; i < 32; i++) {
0c967de9 161 bool needs_byteswap;
ef96e3ae 162 ppc_avr_t *avr = cpu_avr_ptr(&cpu->env, i);
0c967de9
BR
163
164#ifdef HOST_WORDS_BIGENDIAN
165 needs_byteswap = s->dump_info.d_endian == ELFDATA2LSB;
166#else
167 needs_byteswap = s->dump_info.d_endian == ELFDATA2MSB;
168#endif
169
170 if (needs_byteswap) {
ef96e3ae
MCA
171 vmxregset->avr[i].u64[0] = bswap64(avr->u64[1]);
172 vmxregset->avr[i].u64[1] = bswap64(avr->u64[0]);
0c967de9 173 } else {
ef96e3ae
MCA
174 vmxregset->avr[i].u64[0] = avr->u64[0];
175 vmxregset->avr[i].u64[1] = avr->u64[1];
0c967de9 176 }
e62fbc54 177 }
0c967de9 178 vmxregset->vscr.u32[3] = cpu_to_dump32(s, cpu->env.vscr);
e62fbc54 179}
356bb70e
MN
180
181static void ppc_write_elf_vsxregset(NoteFuncArg *arg, PowerPCCPU *cpu)
e62fbc54
AK
182{
183 int i;
356bb70e 184 struct PPCElfVsxregset *vsxregset;
0c967de9
BR
185 Note *note = &arg->note;
186 DumpState *s = arg->state;
e62fbc54 187
0c967de9 188 note->hdr.n_type = cpu_to_dump32(s, NT_PPC_VSX);
e62fbc54
AK
189 vsxregset = &note->contents.vsxregset;
190 memset(vsxregset, 0, sizeof(*vsxregset));
191
192 for (i = 0; i < 32; i++) {
ef96e3ae
MCA
193 uint64_t *vsrl = cpu_vsrl_ptr(&cpu->env, i);
194 vsxregset->vsr[i] = cpu_to_dump64(s, *vsrl);
e62fbc54
AK
195 }
196}
356bb70e
MN
197
198static void ppc_write_elf_speregset(NoteFuncArg *arg, PowerPCCPU *cpu)
e62fbc54 199{
356bb70e 200 struct PPCElfSperegset *speregset;
0c967de9
BR
201 Note *note = &arg->note;
202 DumpState *s = arg->state;
203
204 note->hdr.n_type = cpu_to_dump32(s, NT_PPC_SPE);
e62fbc54
AK
205 speregset = &note->contents.speregset;
206 memset(speregset, 0, sizeof(*speregset));
207
0c967de9
BR
208 speregset->spe_acc = cpu_to_dump64(s, cpu->env.spe_acc);
209 speregset->spe_fscr = cpu_to_dump32(s, cpu->env.spe_fscr);
e62fbc54
AK
210}
211
cfd54a04 212static const struct NoteFuncDescStruct {
e62fbc54 213 int contents_size;
0c967de9 214 void (*note_contents_func)(NoteFuncArg *arg, PowerPCCPU *cpu);
e62fbc54 215} note_func[] = {
f18793b0
SH
216 {sizeof_field(Note, contents.prstatus), ppc_write_elf_prstatus},
217 {sizeof_field(Note, contents.fpregset), ppc_write_elf_fpregset},
218 {sizeof_field(Note, contents.vmxregset), ppc_write_elf_vmxregset},
219 {sizeof_field(Note, contents.vsxregset), ppc_write_elf_vsxregset},
220 {sizeof_field(Note, contents.speregset), ppc_write_elf_speregset},
e62fbc54
AK
221 { 0, NULL}
222};
223
224typedef struct NoteFuncDescStruct NoteFuncDesc;
225
226int cpu_get_dump_info(ArchDumpInfo *info,
227 const struct GuestPhysBlockList *guest_phys_blocks)
228{
b1fde1ef
LV
229 PowerPCCPU *cpu;
230 PowerPCCPUClass *pcc;
231
232 if (first_cpu == NULL) {
233 return -1;
234 }
235
236 cpu = POWERPC_CPU(first_cpu);
237 pcc = POWERPC_CPU_GET_CLASS(cpu);
1e6ed54e 238
356bb70e
MN
239 info->d_machine = PPC_ELF_MACHINE;
240 info->d_class = ELFCLASS;
241
1e6ed54e
BR
242 if ((*pcc->interrupts_big_endian)(cpu)) {
243 info->d_endian = ELFDATA2MSB;
244 } else {
245 info->d_endian = ELFDATA2LSB;
246 }
760d88d1
LV
247 /* 64KB is the max page size for pseries kernel */
248 if (strncmp(object_get_typename(qdev_get_machine()),
249 "pseries-", 8) == 0) {
250 info->page_size = (1U << 16);
251 }
e62fbc54
AK
252
253 return 0;
254}
255
256ssize_t cpu_get_note_size(int class, int machine, int nr_cpus)
257{
258 int name_size = 8; /* "CORE" or "QEMU" rounded */
259 size_t elf_note_size = 0;
260 int note_head_size;
cfd54a04 261 const NoteFuncDesc *nf;
e62fbc54 262
356bb70e 263 note_head_size = sizeof(Elf_Nhdr);
e62fbc54
AK
264 for (nf = note_func; nf->note_contents_func; nf++) {
265 elf_note_size = elf_note_size + note_head_size + name_size +
356bb70e 266 nf->contents_size;
e62fbc54
AK
267 }
268
269 return (elf_note_size) * nr_cpus;
270}
271
356bb70e
MN
272static int ppc_write_all_elf_notes(const char *note_name,
273 WriteCoreDumpFunction f,
274 PowerPCCPU *cpu, int id,
275 void *opaque)
e62fbc54 276{
0c967de9 277 NoteFuncArg arg = { .state = opaque };
e62fbc54
AK
278 int ret = -1;
279 int note_size;
cfd54a04 280 const NoteFuncDesc *nf;
e62fbc54
AK
281
282 for (nf = note_func; nf->note_contents_func; nf++) {
0c967de9
BR
283 arg.note.hdr.n_namesz = cpu_to_dump32(opaque, sizeof(arg.note.name));
284 arg.note.hdr.n_descsz = cpu_to_dump32(opaque, nf->contents_size);
285 strncpy(arg.note.name, note_name, sizeof(arg.note.name));
e62fbc54 286
0c967de9 287 (*nf->note_contents_func)(&arg, cpu);
e62fbc54 288
0c967de9
BR
289 note_size =
290 sizeof(arg.note) - sizeof(arg.note.contents) + nf->contents_size;
291 ret = f(&arg.note, note_size, opaque);
e62fbc54
AK
292 if (ret < 0) {
293 return -1;
294 }
295 }
296 return 0;
297}
298
299int ppc64_cpu_write_elf64_note(WriteCoreDumpFunction f, CPUState *cs,
300 int cpuid, void *opaque)
301{
302 PowerPCCPU *cpu = POWERPC_CPU(cs);
356bb70e
MN
303 return ppc_write_all_elf_notes("CORE", f, cpu, cpuid, opaque);
304}
305
306int ppc32_cpu_write_elf32_note(WriteCoreDumpFunction f, CPUState *cs,
307 int cpuid, void *opaque)
308{
309 PowerPCCPU *cpu = POWERPC_CPU(cs);
310 return ppc_write_all_elf_notes("CORE", f, cpu, cpuid, opaque);
e62fbc54 311}
This page took 0.348876 seconds and 4 git commands to generate.