target/cris: Let cris_mmu_translate() use MMUAccessType access_type
[qemu/ar7.git] / target / s390x / arch_dump.c
blob50fa0ae4b679d0715a0f9afa836b9cebe2278521
1 /*
2 * writing ELF notes for s390x arch
5 * Copyright IBM Corp. 2012, 2013
7 * Ekaterina Tumanova <tumanova@linux.vnet.ibm.com>
9 * This work is licensed under the terms of the GNU GPL, version 2 or later.
10 * See the COPYING file in the top-level directory.
14 #include "qemu/osdep.h"
15 #include "cpu.h"
16 #include "internal.h"
17 #include "elf.h"
18 #include "sysemu/dump.h"
21 struct S390xUserRegsStruct {
22 uint64_t psw[2];
23 uint64_t gprs[16];
24 uint32_t acrs[16];
25 } QEMU_PACKED;
27 typedef struct S390xUserRegsStruct S390xUserRegs;
29 struct S390xElfPrstatusStruct {
30 uint8_t pad1[32];
31 uint32_t pid;
32 uint8_t pad2[76];
33 S390xUserRegs regs;
34 uint8_t pad3[16];
35 } QEMU_PACKED;
37 typedef struct S390xElfPrstatusStruct S390xElfPrstatus;
39 struct S390xElfFpregsetStruct {
40 uint32_t fpc;
41 uint32_t pad;
42 uint64_t fprs[16];
43 } QEMU_PACKED;
45 typedef struct S390xElfFpregsetStruct S390xElfFpregset;
47 struct S390xElfVregsLoStruct {
48 uint64_t vregs[16];
49 } QEMU_PACKED;
51 typedef struct S390xElfVregsLoStruct S390xElfVregsLo;
53 struct S390xElfVregsHiStruct {
54 uint64_t vregs[16][2];
55 } QEMU_PACKED;
57 typedef struct S390xElfVregsHiStruct S390xElfVregsHi;
59 struct S390xElfGSCBStruct {
60 uint64_t gsregs[4];
61 } QEMU_PACKED;
63 typedef struct S390xElfGSCBStruct S390xElfGSCB;
65 typedef struct noteStruct {
66 Elf64_Nhdr hdr;
67 char name[8];
68 union {
69 S390xElfPrstatus prstatus;
70 S390xElfFpregset fpregset;
71 S390xElfVregsLo vregslo;
72 S390xElfVregsHi vregshi;
73 S390xElfGSCB gscb;
74 uint32_t prefix;
75 uint64_t timer;
76 uint64_t todcmp;
77 uint32_t todpreg;
78 uint64_t ctrs[16];
79 } contents;
80 } QEMU_PACKED Note;
82 static void s390x_write_elf64_prstatus(Note *note, S390CPU *cpu, int id)
84 int i;
85 S390xUserRegs *regs;
87 note->hdr.n_type = cpu_to_be32(NT_PRSTATUS);
89 regs = &(note->contents.prstatus.regs);
90 regs->psw[0] = cpu_to_be64(cpu->env.psw.mask);
91 regs->psw[1] = cpu_to_be64(cpu->env.psw.addr);
92 for (i = 0; i <= 15; i++) {
93 regs->acrs[i] = cpu_to_be32(cpu->env.aregs[i]);
94 regs->gprs[i] = cpu_to_be64(cpu->env.regs[i]);
96 note->contents.prstatus.pid = id;
99 static void s390x_write_elf64_fpregset(Note *note, S390CPU *cpu, int id)
101 int i;
102 CPUS390XState *cs = &cpu->env;
104 note->hdr.n_type = cpu_to_be32(NT_FPREGSET);
105 note->contents.fpregset.fpc = cpu_to_be32(cpu->env.fpc);
106 for (i = 0; i <= 15; i++) {
107 note->contents.fpregset.fprs[i] = cpu_to_be64(*get_freg(cs, i));
111 static void s390x_write_elf64_vregslo(Note *note, S390CPU *cpu, int id)
113 int i;
115 note->hdr.n_type = cpu_to_be32(NT_S390_VXRS_LOW);
116 for (i = 0; i <= 15; i++) {
117 note->contents.vregslo.vregs[i] = cpu_to_be64(cpu->env.vregs[i][1]);
121 static void s390x_write_elf64_vregshi(Note *note, S390CPU *cpu, int id)
123 int i;
124 S390xElfVregsHi *temp_vregshi;
126 temp_vregshi = &note->contents.vregshi;
128 note->hdr.n_type = cpu_to_be32(NT_S390_VXRS_HIGH);
129 for (i = 0; i <= 15; i++) {
130 temp_vregshi->vregs[i][0] = cpu_to_be64(cpu->env.vregs[i + 16][0]);
131 temp_vregshi->vregs[i][1] = cpu_to_be64(cpu->env.vregs[i + 16][1]);
135 static void s390x_write_elf64_gscb(Note *note, S390CPU *cpu, int id)
137 int i;
139 note->hdr.n_type = cpu_to_be32(NT_S390_GS_CB);
140 for (i = 0; i < 4; i++) {
141 note->contents.gscb.gsregs[i] = cpu_to_be64(cpu->env.gscb[i]);
145 static void s390x_write_elf64_timer(Note *note, S390CPU *cpu, int id)
147 note->hdr.n_type = cpu_to_be32(NT_S390_TIMER);
148 note->contents.timer = cpu_to_be64((uint64_t)(cpu->env.cputm));
151 static void s390x_write_elf64_todcmp(Note *note, S390CPU *cpu, int id)
153 note->hdr.n_type = cpu_to_be32(NT_S390_TODCMP);
154 note->contents.todcmp = cpu_to_be64((uint64_t)(cpu->env.ckc));
157 static void s390x_write_elf64_todpreg(Note *note, S390CPU *cpu, int id)
159 note->hdr.n_type = cpu_to_be32(NT_S390_TODPREG);
160 note->contents.todpreg = cpu_to_be32((uint32_t)(cpu->env.todpr));
163 static void s390x_write_elf64_ctrs(Note *note, S390CPU *cpu, int id)
165 int i;
167 note->hdr.n_type = cpu_to_be32(NT_S390_CTRS);
169 for (i = 0; i <= 15; i++) {
170 note->contents.ctrs[i] = cpu_to_be64(cpu->env.cregs[i]);
174 static void s390x_write_elf64_prefix(Note *note, S390CPU *cpu, int id)
176 note->hdr.n_type = cpu_to_be32(NT_S390_PREFIX);
177 note->contents.prefix = cpu_to_be32((uint32_t)(cpu->env.psa));
181 typedef struct NoteFuncDescStruct {
182 int contents_size;
183 void (*note_contents_func)(Note *note, S390CPU *cpu, int id);
184 } NoteFuncDesc;
186 static const NoteFuncDesc note_core[] = {
187 {sizeof_field(Note, contents.prstatus), s390x_write_elf64_prstatus},
188 {sizeof_field(Note, contents.fpregset), s390x_write_elf64_fpregset},
189 { 0, NULL}
192 static const NoteFuncDesc note_linux[] = {
193 {sizeof_field(Note, contents.prefix), s390x_write_elf64_prefix},
194 {sizeof_field(Note, contents.ctrs), s390x_write_elf64_ctrs},
195 {sizeof_field(Note, contents.timer), s390x_write_elf64_timer},
196 {sizeof_field(Note, contents.todcmp), s390x_write_elf64_todcmp},
197 {sizeof_field(Note, contents.todpreg), s390x_write_elf64_todpreg},
198 {sizeof_field(Note, contents.vregslo), s390x_write_elf64_vregslo},
199 {sizeof_field(Note, contents.vregshi), s390x_write_elf64_vregshi},
200 {sizeof_field(Note, contents.gscb), s390x_write_elf64_gscb},
201 { 0, NULL}
204 static int s390x_write_elf64_notes(const char *note_name,
205 WriteCoreDumpFunction f,
206 S390CPU *cpu, int id,
207 void *opaque,
208 const NoteFuncDesc *funcs)
210 Note note;
211 const NoteFuncDesc *nf;
212 int note_size;
213 int ret = -1;
215 for (nf = funcs; nf->note_contents_func; nf++) {
216 memset(&note, 0, sizeof(note));
217 note.hdr.n_namesz = cpu_to_be32(strlen(note_name) + 1);
218 note.hdr.n_descsz = cpu_to_be32(nf->contents_size);
219 strncpy(note.name, note_name, sizeof(note.name));
220 (*nf->note_contents_func)(&note, cpu, id);
222 note_size = sizeof(note) - sizeof(note.contents) + nf->contents_size;
223 ret = f(&note, note_size, opaque);
225 if (ret < 0) {
226 return -1;
231 return 0;
235 int s390_cpu_write_elf64_note(WriteCoreDumpFunction f, CPUState *cs,
236 int cpuid, void *opaque)
238 S390CPU *cpu = S390_CPU(cs);
239 int r;
241 r = s390x_write_elf64_notes("CORE", f, cpu, cpuid, opaque, note_core);
242 if (r) {
243 return r;
245 return s390x_write_elf64_notes("LINUX", f, cpu, cpuid, opaque, note_linux);
248 int cpu_get_dump_info(ArchDumpInfo *info,
249 const struct GuestPhysBlockList *guest_phys_blocks)
251 info->d_machine = EM_S390;
252 info->d_endian = ELFDATA2MSB;
253 info->d_class = ELFCLASS64;
255 return 0;
258 ssize_t cpu_get_note_size(int class, int machine, int nr_cpus)
260 int name_size = 8; /* "LINUX" or "CORE" + pad */
261 size_t elf_note_size = 0;
262 int note_head_size;
263 const NoteFuncDesc *nf;
265 assert(class == ELFCLASS64);
266 assert(machine == EM_S390);
268 note_head_size = sizeof(Elf64_Nhdr);
270 for (nf = note_core; nf->note_contents_func; nf++) {
271 elf_note_size = elf_note_size + note_head_size + name_size +
272 nf->contents_size;
274 for (nf = note_linux; nf->note_contents_func; nf++) {
275 elf_note_size = elf_note_size + note_head_size + name_size +
276 nf->contents_size;
279 return (elf_note_size) * nr_cpus;