2 * S/390 helpers - sysemu only
4 * Copyright (c) 2009 Ulrich Hecht
5 * Copyright (c) 2011 Alexander Graf
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/>.
21 #include "qemu/osdep.h"
23 #include "s390x-internal.h"
24 #include "gdbstub/helpers.h"
25 #include "qemu/timer.h"
26 #include "hw/s390x/ioinst.h"
27 #include "target/s390x/kvm/pv.h"
28 #include "sysemu/hw_accel.h"
29 #include "sysemu/runstate.h"
31 void s390x_tod_timer(void *opaque
)
33 cpu_inject_clock_comparator((S390CPU
*) opaque
);
36 void s390x_cpu_timer(void *opaque
)
38 cpu_inject_cpu_timer((S390CPU
*) opaque
);
41 hwaddr
s390_cpu_get_phys_page_debug(CPUState
*cs
, vaddr vaddr
)
43 S390CPU
*cpu
= S390_CPU(cs
);
44 CPUS390XState
*env
= &cpu
->env
;
47 uint64_t asc
= env
->psw
.mask
& PSW_MASK_ASC
;
51 if (!(env
->psw
.mask
& PSW_MASK_64
)) {
55 /* We want to read the code (e.g., see what we are single-stepping).*/
56 if (asc
!= PSW_ASC_HOME
) {
57 asc
= PSW_ASC_PRIMARY
;
61 * We want to read code even if IEP is active. Use MMU_DATA_LOAD instead
64 if (mmu_translate(env
, vaddr
, MMU_DATA_LOAD
, asc
, &raddr
, &prot
, &tec
)) {
70 hwaddr
s390_cpu_get_phys_addr_debug(CPUState
*cs
, vaddr vaddr
)
75 page
= vaddr
& TARGET_PAGE_MASK
;
76 phys_addr
= cpu_get_phys_page_debug(cs
, page
);
77 phys_addr
+= (vaddr
& ~TARGET_PAGE_MASK
);
82 static inline bool is_special_wait_psw(uint64_t psw_addr
)
85 return (psw_addr
& 0xfffUL
) == 0xfffUL
;
88 void s390_handle_wait(S390CPU
*cpu
)
90 CPUState
*cs
= CPU(cpu
);
92 if (s390_cpu_halt(cpu
) == 0) {
93 if (is_special_wait_psw(cpu
->env
.psw
.addr
)) {
94 qemu_system_shutdown_request(SHUTDOWN_CAUSE_GUEST_SHUTDOWN
);
96 cpu
->env
.crash_reason
= S390_CRASH_REASON_DISABLED_WAIT
;
97 qemu_system_guest_panicked(cpu_get_crash_info(cs
));
102 LowCore
*cpu_map_lowcore(CPUS390XState
*env
)
105 hwaddr len
= sizeof(LowCore
);
107 lowcore
= cpu_physical_memory_map(env
->psa
, &len
, true);
109 if (len
< sizeof(LowCore
)) {
110 cpu_abort(env_cpu(env
), "Could not map lowcore\n");
116 void cpu_unmap_lowcore(LowCore
*lowcore
)
118 cpu_physical_memory_unmap(lowcore
, sizeof(LowCore
), 1, sizeof(LowCore
));
121 void do_restart_interrupt(CPUS390XState
*env
)
126 lowcore
= cpu_map_lowcore(env
);
128 lowcore
->restart_old_psw
.mask
= cpu_to_be64(s390_cpu_get_psw_mask(env
));
129 lowcore
->restart_old_psw
.addr
= cpu_to_be64(env
->psw
.addr
);
130 mask
= be64_to_cpu(lowcore
->restart_new_psw
.mask
);
131 addr
= be64_to_cpu(lowcore
->restart_new_psw
.addr
);
133 cpu_unmap_lowcore(lowcore
);
134 env
->pending_int
&= ~INTERRUPT_RESTART
;
136 s390_cpu_set_psw(env
, mask
, addr
);
139 void s390_cpu_recompute_watchpoints(CPUState
*cs
)
141 const int wp_flags
= BP_CPU
| BP_MEM_WRITE
| BP_STOP_BEFORE_ACCESS
;
142 CPUS390XState
*env
= cpu_env(cs
);
144 /* We are called when the watchpoints have changed. First
146 cpu_watchpoint_remove_all(cs
, BP_CPU
);
148 /* Return if PER is not enabled */
149 if (!(env
->psw
.mask
& PSW_MASK_PER
)) {
153 /* Return if storage-alteration event is not enabled. */
154 if (!(env
->cregs
[9] & PER_CR9_EVENT_STORE
)) {
158 if (env
->cregs
[10] == 0 && env
->cregs
[11] == -1LL) {
159 /* We can't create a watchoint spanning the whole memory range, so
160 split it in two parts. */
161 cpu_watchpoint_insert(cs
, 0, 1ULL << 63, wp_flags
, NULL
);
162 cpu_watchpoint_insert(cs
, 1ULL << 63, 1ULL << 63, wp_flags
, NULL
);
163 } else if (env
->cregs
[10] > env
->cregs
[11]) {
164 /* The address range loops, create two watchpoints. */
165 cpu_watchpoint_insert(cs
, env
->cregs
[10], -env
->cregs
[10],
167 cpu_watchpoint_insert(cs
, 0, env
->cregs
[11] + 1, wp_flags
, NULL
);
170 /* Default case, create a single watchpoint. */
171 cpu_watchpoint_insert(cs
, env
->cregs
[10],
172 env
->cregs
[11] - env
->cregs
[10] + 1,
177 typedef struct SigpSaveArea
{
178 uint64_t fprs
[16]; /* 0x0000 */
179 uint64_t grs
[16]; /* 0x0080 */
180 PSW psw
; /* 0x0100 */
181 uint8_t pad_0x0110
[0x0118 - 0x0110]; /* 0x0110 */
182 uint32_t prefix
; /* 0x0118 */
183 uint32_t fpc
; /* 0x011c */
184 uint8_t pad_0x0120
[0x0124 - 0x0120]; /* 0x0120 */
185 uint32_t todpr
; /* 0x0124 */
186 uint64_t cputm
; /* 0x0128 */
187 uint64_t ckc
; /* 0x0130 */
188 uint8_t pad_0x0138
[0x0140 - 0x0138]; /* 0x0138 */
189 uint32_t ars
[16]; /* 0x0140 */
190 uint64_t crs
[16]; /* 0x0384 */
192 QEMU_BUILD_BUG_ON(sizeof(SigpSaveArea
) != 512);
194 int s390_store_status(S390CPU
*cpu
, hwaddr addr
, bool store_arch
)
196 static const uint8_t ar_id
= 1;
198 hwaddr len
= sizeof(*sa
);
201 /* For PVMs storing will occur when this cpu enters SIE again */
206 sa
= cpu_physical_memory_map(addr
, &len
, true);
210 if (len
!= sizeof(*sa
)) {
211 cpu_physical_memory_unmap(sa
, len
, 1, 0);
216 cpu_physical_memory_write(offsetof(LowCore
, ar_access_id
), &ar_id
, 1);
218 for (i
= 0; i
< 16; ++i
) {
219 sa
->fprs
[i
] = cpu_to_be64(*get_freg(&cpu
->env
, i
));
221 for (i
= 0; i
< 16; ++i
) {
222 sa
->grs
[i
] = cpu_to_be64(cpu
->env
.regs
[i
]);
224 sa
->psw
.addr
= cpu_to_be64(cpu
->env
.psw
.addr
);
225 sa
->psw
.mask
= cpu_to_be64(s390_cpu_get_psw_mask(&cpu
->env
));
226 sa
->prefix
= cpu_to_be32(cpu
->env
.psa
);
227 sa
->fpc
= cpu_to_be32(cpu
->env
.fpc
);
228 sa
->todpr
= cpu_to_be32(cpu
->env
.todpr
);
229 sa
->cputm
= cpu_to_be64(cpu
->env
.cputm
);
230 sa
->ckc
= cpu_to_be64(cpu
->env
.ckc
>> 8);
231 for (i
= 0; i
< 16; ++i
) {
232 sa
->ars
[i
] = cpu_to_be32(cpu
->env
.aregs
[i
]);
234 for (i
= 0; i
< 16; ++i
) {
235 sa
->crs
[i
] = cpu_to_be64(cpu
->env
.cregs
[i
]);
238 cpu_physical_memory_unmap(sa
, len
, 1, len
);
243 typedef struct SigpAdtlSaveArea
{
244 uint64_t vregs
[32][2]; /* 0x0000 */
245 uint8_t pad_0x0200
[0x0400 - 0x0200]; /* 0x0200 */
246 uint64_t gscb
[4]; /* 0x0400 */
247 uint8_t pad_0x0420
[0x1000 - 0x0420]; /* 0x0420 */
249 QEMU_BUILD_BUG_ON(sizeof(SigpAdtlSaveArea
) != 4096);
251 #define ADTL_GS_MIN_SIZE 2048 /* minimal size of adtl save area for GS */
252 int s390_store_adtl_status(S390CPU
*cpu
, hwaddr addr
, hwaddr len
)
254 SigpAdtlSaveArea
*sa
;
258 sa
= cpu_physical_memory_map(addr
, &save
, true);
263 cpu_physical_memory_unmap(sa
, len
, 1, 0);
267 if (s390_has_feat(S390_FEAT_VECTOR
)) {
268 for (i
= 0; i
< 32; i
++) {
269 sa
->vregs
[i
][0] = cpu_to_be64(cpu
->env
.vregs
[i
][0]);
270 sa
->vregs
[i
][1] = cpu_to_be64(cpu
->env
.vregs
[i
][1]);
273 if (s390_has_feat(S390_FEAT_GUARDED_STORAGE
) && len
>= ADTL_GS_MIN_SIZE
) {
274 for (i
= 0; i
< 4; i
++) {
275 sa
->gscb
[i
] = cpu_to_be64(cpu
->env
.gscb
[i
]);
279 cpu_physical_memory_unmap(sa
, len
, 1, len
);