1fcf5ef2aSThomas Huth /* 2fcf5ef2aSThomas Huth * S/390 virtual CPU header 3fcf5ef2aSThomas Huth * 43fd0e85fSDavid Hildenbrand * For details on the s390x architecture and used definitions (e.g., 53fd0e85fSDavid Hildenbrand * PSW, PER and DAT (Dynamic Address Translation)), please refer to 63fd0e85fSDavid Hildenbrand * the "z/Architecture Principles of Operations" - a.k.a. PoP. 73fd0e85fSDavid Hildenbrand * 8fcf5ef2aSThomas Huth * Copyright (c) 2009 Ulrich Hecht 927e84d4eSChristian Borntraeger * Copyright IBM Corp. 2012, 2018 10fcf5ef2aSThomas Huth * 1144699e1cSThomas Huth * This program is free software; you can redistribute it and/or modify 1244699e1cSThomas Huth * it under the terms of the GNU General Public License as published by 1344699e1cSThomas Huth * the Free Software Foundation; either version 2 of the License, or 1444699e1cSThomas Huth * (at your option) any later version. 15fcf5ef2aSThomas Huth * 1644699e1cSThomas Huth * This program is distributed in the hope that it will be useful, 17fcf5ef2aSThomas Huth * but WITHOUT ANY WARRANTY; without even the implied warranty of 18fcf5ef2aSThomas Huth * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU 1944699e1cSThomas Huth * General Public License for more details. 20fcf5ef2aSThomas Huth * 2144699e1cSThomas Huth * You should have received a copy of the GNU General Public License 2244699e1cSThomas Huth * along with this program; if not, see <http://www.gnu.org/licenses/>. 23fcf5ef2aSThomas Huth */ 24fcf5ef2aSThomas Huth 25fcf5ef2aSThomas Huth #ifndef S390X_CPU_H 26fcf5ef2aSThomas Huth #define S390X_CPU_H 27fcf5ef2aSThomas Huth 28fcf5ef2aSThomas Huth #include "cpu-qom.h" 29ef2974ccSDavid Hildenbrand #include "cpu_models.h" 3074433bf0SRichard Henderson #include "exec/cpu-defs.h" 3169242e7eSMarc-André Lureau #include "qemu/cpu-float.h" 325de1aff2SPierre Morel #include "qapi/qapi-types-machine-common.h" 33fcf5ef2aSThomas Huth 34fcf5ef2aSThomas Huth #define ELF_MACHINE_UNAME "S390X" 35fcf5ef2aSThomas Huth 36c7f41e4fSIlya Leoshkevich #define TARGET_HAS_PRECISE_SMC 37c7f41e4fSIlya Leoshkevich 38c87ff4d1SRichard Henderson #define TARGET_INSN_START_EXTRA_WORDS 2 39fcf5ef2aSThomas Huth 40fcf5ef2aSThomas Huth #define MMU_USER_IDX 0 41fcf5ef2aSThomas Huth 42f42dc44aSDavid Hildenbrand #define S390_MAX_CPUS 248 43f42dc44aSDavid Hildenbrand 44d4c603d7SGerd Hoffmann #ifndef CONFIG_KVM 45d4c603d7SGerd Hoffmann #define S390_ADAPTER_SUPPRESSIBLE 0x01 46d4c603d7SGerd Hoffmann #else 47d4c603d7SGerd Hoffmann #define S390_ADAPTER_SUPPRESSIBLE KVM_S390_ADAPTER_SUPPRESSIBLE 48d4c603d7SGerd Hoffmann #endif 49d4c603d7SGerd Hoffmann 50fcf5ef2aSThomas Huth typedef struct PSW { 51fcf5ef2aSThomas Huth uint64_t mask; 52fcf5ef2aSThomas Huth uint64_t addr; 53fcf5ef2aSThomas Huth } PSW; 54fcf5ef2aSThomas Huth 55571568a1SPhilippe Mathieu-Daudé typedef struct CPUArchState { 56fcf5ef2aSThomas Huth uint64_t regs[16]; /* GP registers */ 57fcf5ef2aSThomas Huth /* 58fcf5ef2aSThomas Huth * The floating point registers are part of the vector registers. 59fcf5ef2aSThomas Huth * vregs[0][0] -> vregs[15][0] are 16 floating point registers 60fcf5ef2aSThomas Huth */ 614f83d7d2SDavid Hildenbrand uint64_t vregs[32][2] QEMU_ALIGNED(16); /* vector registers */ 62fcf5ef2aSThomas Huth uint32_t aregs[16]; /* access registers */ 6362deb62dSFan Zhang uint64_t gscb[4]; /* guarded storage control */ 6427e84d4eSChristian Borntraeger uint64_t etoken; /* etoken */ 6527e84d4eSChristian Borntraeger uint64_t etoken_extension; /* etoken extension */ 66cb4f4bc3SChristian Borntraeger 67c35aff18SCollin Walling uint64_t diag318_info; 68c35aff18SCollin Walling 69cb4f4bc3SChristian Borntraeger /* Fields up to this point are not cleared by initial CPU reset */ 70cb4f4bc3SChristian Borntraeger struct {} start_initial_reset_fields; 71fcf5ef2aSThomas Huth 72fcf5ef2aSThomas Huth uint32_t fpc; /* floating-point control register */ 73fcf5ef2aSThomas Huth uint32_t cc_op; 74b073c875SChristian Borntraeger bool bpbc; /* branch prediction blocking */ 75fcf5ef2aSThomas Huth 76fcf5ef2aSThomas Huth float_status fpu_status; /* passed to softfloat lib */ 77fcf5ef2aSThomas Huth 78fcf5ef2aSThomas Huth PSW psw; 79fcf5ef2aSThomas Huth 804ada99adSChristian Borntraeger S390CrashReason crash_reason; 814ada99adSChristian Borntraeger 82fcf5ef2aSThomas Huth uint64_t cc_src; 83fcf5ef2aSThomas Huth uint64_t cc_dst; 84fcf5ef2aSThomas Huth uint64_t cc_vr; 85fcf5ef2aSThomas Huth 86303c681aSRichard Henderson uint64_t ex_value; 87703d03a4SIlya Leoshkevich uint64_t ex_target; 88303c681aSRichard Henderson 89fcf5ef2aSThomas Huth uint64_t __excp_addr; 90fcf5ef2aSThomas Huth uint64_t psa; 91fcf5ef2aSThomas Huth 92fcf5ef2aSThomas Huth uint32_t int_pgm_code; 93fcf5ef2aSThomas Huth uint32_t int_pgm_ilen; 94fcf5ef2aSThomas Huth 95fcf5ef2aSThomas Huth uint32_t int_svc_code; 96fcf5ef2aSThomas Huth uint32_t int_svc_ilen; 97fcf5ef2aSThomas Huth 98fcf5ef2aSThomas Huth uint64_t per_address; 99fcf5ef2aSThomas Huth uint16_t per_perc_atmid; 100fcf5ef2aSThomas Huth 101fcf5ef2aSThomas Huth uint64_t cregs[16]; /* control registers */ 102fcf5ef2aSThomas Huth 103fcf5ef2aSThomas Huth uint64_t ckc; 104fcf5ef2aSThomas Huth uint64_t cputm; 105fcf5ef2aSThomas Huth uint32_t todpr; 106fcf5ef2aSThomas Huth 107fcf5ef2aSThomas Huth uint64_t pfault_token; 108fcf5ef2aSThomas Huth uint64_t pfault_compare; 109fcf5ef2aSThomas Huth uint64_t pfault_select; 110fcf5ef2aSThomas Huth 111fcf5ef2aSThomas Huth uint64_t gbea; 112fcf5ef2aSThomas Huth uint64_t pp; 113fcf5ef2aSThomas Huth 114e893baeeSJanosch Frank /* Fields up to this point are not cleared by normal CPU reset */ 115e893baeeSJanosch Frank struct {} start_normal_reset_fields; 116e893baeeSJanosch Frank uint8_t riccb[64]; /* runtime instrumentation control */ 117e893baeeSJanosch Frank 118bcf88d56SCornelia Huck int pending_int; 119bcf88d56SCornelia Huck uint16_t external_call_addr; 120bcf88d56SCornelia Huck DECLARE_BITMAP(emergency_signals, S390_MAX_CPUS); 121bcf88d56SCornelia Huck 122e56552cfSRichard Henderson #if !defined(CONFIG_USER_ONLY) 123e56552cfSRichard Henderson uint64_t tlb_fill_tec; /* translation exception code during tlb_fill */ 124e56552cfSRichard Henderson int tlb_fill_exc; /* exception number seen during tlb_fill */ 125e56552cfSRichard Henderson #endif 126e56552cfSRichard Henderson 1271f5c00cfSAlex Bennée /* Fields up to this point are cleared by a CPU reset */ 1281f5c00cfSAlex Bennée struct {} end_reset_fields; 129fcf5ef2aSThomas Huth 1301e70ba24SDavid Hildenbrand #if !defined(CONFIG_USER_ONLY) 131ca5c1457SDavid Hildenbrand uint32_t core_id; /* PoP "CPU address", same as cpu_index */ 1325de1aff2SPierre Morel int32_t socket_id; 1335de1aff2SPierre Morel int32_t book_id; 1345de1aff2SPierre Morel int32_t drawer_id; 1355de1aff2SPierre Morel bool dedicated; 13632cfefb9SMarkus Armbruster S390CpuEntitlement entitlement; /* Used only for vertical polarization */ 137076d4d39SDavid Hildenbrand uint64_t cpuid; 1381e70ba24SDavid Hildenbrand #endif 139fcf5ef2aSThomas Huth 140fcf5ef2aSThomas Huth QEMUTimer *tod_timer; 141fcf5ef2aSThomas Huth 142fcf5ef2aSThomas Huth QEMUTimer *cpu_timer; 143fcf5ef2aSThomas Huth 144fcf5ef2aSThomas Huth /* 145fcf5ef2aSThomas Huth * The cpu state represents the logical state of a cpu. In contrast to other 146fcf5ef2aSThomas Huth * architectures, there is a difference between a halt and a stop on s390. 147fcf5ef2aSThomas Huth * If all cpus are either stopped (including check stop) or in the disabled 148fcf5ef2aSThomas Huth * wait state, the vm can be shut down. 1499d0306dfSViktor Mihajlovski * The acceptable cpu_state values are defined in the CpuInfoS390State 1509d0306dfSViktor Mihajlovski * enum. 151fcf5ef2aSThomas Huth */ 152fcf5ef2aSThomas Huth uint8_t cpu_state; 153fcf5ef2aSThomas Huth 154fcf5ef2aSThomas Huth /* currently processed sigp order */ 155fcf5ef2aSThomas Huth uint8_t sigp_order; 156fcf5ef2aSThomas Huth 157571568a1SPhilippe Mathieu-Daudé } CPUS390XState; 158fcf5ef2aSThomas Huth 1594f83d7d2SDavid Hildenbrand static inline uint64_t *get_freg(CPUS390XState *cs, int nr) 160fcf5ef2aSThomas Huth { 161fcf5ef2aSThomas Huth return &cs->vregs[nr][0]; 162fcf5ef2aSThomas Huth } 163fcf5ef2aSThomas Huth 164fcf5ef2aSThomas Huth /** 165fcf5ef2aSThomas Huth * S390CPU: 166fcf5ef2aSThomas Huth * @env: #CPUS390XState. 167fcf5ef2aSThomas Huth * 168fcf5ef2aSThomas Huth * An S/390 CPU. 169fcf5ef2aSThomas Huth */ 170b36e239eSPhilippe Mathieu-Daudé struct ArchCPU { 171fcf5ef2aSThomas Huth CPUState parent_obj; 172fcf5ef2aSThomas Huth 173fcf5ef2aSThomas Huth CPUS390XState env; 174fcf5ef2aSThomas Huth S390CPUModel *model; 175fcf5ef2aSThomas Huth /* needed for live migration */ 176fcf5ef2aSThomas Huth void *irqstate; 177fcf5ef2aSThomas Huth uint32_t irqstate_saved_size; 178fcf5ef2aSThomas Huth }; 179fcf5ef2aSThomas Huth 1809348028eSPhilippe Mathieu-Daudé /** 1819348028eSPhilippe Mathieu-Daudé * S390CPUClass: 1829348028eSPhilippe Mathieu-Daudé * @parent_realize: The parent class' realize handler. 183*cf7f61d1SPeter Maydell * @parent_phases: The parent class' reset phase handlers. 1849348028eSPhilippe Mathieu-Daudé * @load_normal: Performs a load normal. 1859348028eSPhilippe Mathieu-Daudé * 1869348028eSPhilippe Mathieu-Daudé * An S/390 CPU model. 1879348028eSPhilippe Mathieu-Daudé */ 1889348028eSPhilippe Mathieu-Daudé struct S390CPUClass { 1899348028eSPhilippe Mathieu-Daudé CPUClass parent_class; 1909348028eSPhilippe Mathieu-Daudé 1919348028eSPhilippe Mathieu-Daudé const S390CPUDef *cpu_def; 1929348028eSPhilippe Mathieu-Daudé bool kvm_required; 1939348028eSPhilippe Mathieu-Daudé bool is_static; 1949348028eSPhilippe Mathieu-Daudé bool is_migration_safe; 1959348028eSPhilippe Mathieu-Daudé const char *desc; 1969348028eSPhilippe Mathieu-Daudé 1979348028eSPhilippe Mathieu-Daudé DeviceRealize parent_realize; 198*cf7f61d1SPeter Maydell ResettablePhases parent_phases; 1999348028eSPhilippe Mathieu-Daudé void (*load_normal)(CPUState *cpu); 2009348028eSPhilippe Mathieu-Daudé }; 201fcf5ef2aSThomas Huth 202fcf5ef2aSThomas Huth #ifndef CONFIG_USER_ONLY 2038a9358ccSMarkus Armbruster extern const VMStateDescription vmstate_s390_cpu; 204fcf5ef2aSThomas Huth #endif 205fcf5ef2aSThomas Huth 206fcf5ef2aSThomas Huth /* distinguish between 24 bit and 31 bit addressing */ 207fcf5ef2aSThomas Huth #define HIGH_ORDER_BIT 0x80000000 208fcf5ef2aSThomas Huth 209fcf5ef2aSThomas Huth /* Interrupt Codes */ 210fcf5ef2aSThomas Huth /* Program Interrupts */ 211fcf5ef2aSThomas Huth #define PGM_OPERATION 0x0001 212fcf5ef2aSThomas Huth #define PGM_PRIVILEGED 0x0002 213fcf5ef2aSThomas Huth #define PGM_EXECUTE 0x0003 214fcf5ef2aSThomas Huth #define PGM_PROTECTION 0x0004 215fcf5ef2aSThomas Huth #define PGM_ADDRESSING 0x0005 216fcf5ef2aSThomas Huth #define PGM_SPECIFICATION 0x0006 217fcf5ef2aSThomas Huth #define PGM_DATA 0x0007 218fcf5ef2aSThomas Huth #define PGM_FIXPT_OVERFLOW 0x0008 219fcf5ef2aSThomas Huth #define PGM_FIXPT_DIVIDE 0x0009 220fcf5ef2aSThomas Huth #define PGM_DEC_OVERFLOW 0x000a 221fcf5ef2aSThomas Huth #define PGM_DEC_DIVIDE 0x000b 222fcf5ef2aSThomas Huth #define PGM_HFP_EXP_OVERFLOW 0x000c 223fcf5ef2aSThomas Huth #define PGM_HFP_EXP_UNDERFLOW 0x000d 224fcf5ef2aSThomas Huth #define PGM_HFP_SIGNIFICANCE 0x000e 225fcf5ef2aSThomas Huth #define PGM_HFP_DIVIDE 0x000f 226fcf5ef2aSThomas Huth #define PGM_SEGMENT_TRANS 0x0010 227fcf5ef2aSThomas Huth #define PGM_PAGE_TRANS 0x0011 228fcf5ef2aSThomas Huth #define PGM_TRANS_SPEC 0x0012 229fcf5ef2aSThomas Huth #define PGM_SPECIAL_OP 0x0013 230fcf5ef2aSThomas Huth #define PGM_OPERAND 0x0015 231fcf5ef2aSThomas Huth #define PGM_TRACE_TABLE 0x0016 2329be6fa99SDavid Hildenbrand #define PGM_VECTOR_PROCESSING 0x001b 233fcf5ef2aSThomas Huth #define PGM_SPACE_SWITCH 0x001c 234fcf5ef2aSThomas Huth #define PGM_HFP_SQRT 0x001d 235fcf5ef2aSThomas Huth #define PGM_PC_TRANS_SPEC 0x001f 236fcf5ef2aSThomas Huth #define PGM_AFX_TRANS 0x0020 237fcf5ef2aSThomas Huth #define PGM_ASX_TRANS 0x0021 238fcf5ef2aSThomas Huth #define PGM_LX_TRANS 0x0022 239fcf5ef2aSThomas Huth #define PGM_EX_TRANS 0x0023 240fcf5ef2aSThomas Huth #define PGM_PRIM_AUTH 0x0024 241fcf5ef2aSThomas Huth #define PGM_SEC_AUTH 0x0025 242fcf5ef2aSThomas Huth #define PGM_ALET_SPEC 0x0028 243fcf5ef2aSThomas Huth #define PGM_ALEN_SPEC 0x0029 244fcf5ef2aSThomas Huth #define PGM_ALE_SEQ 0x002a 245fcf5ef2aSThomas Huth #define PGM_ASTE_VALID 0x002b 246fcf5ef2aSThomas Huth #define PGM_ASTE_SEQ 0x002c 247fcf5ef2aSThomas Huth #define PGM_EXT_AUTH 0x002d 248fcf5ef2aSThomas Huth #define PGM_STACK_FULL 0x0030 249fcf5ef2aSThomas Huth #define PGM_STACK_EMPTY 0x0031 250fcf5ef2aSThomas Huth #define PGM_STACK_SPEC 0x0032 251fcf5ef2aSThomas Huth #define PGM_STACK_TYPE 0x0033 252fcf5ef2aSThomas Huth #define PGM_STACK_OP 0x0034 253fcf5ef2aSThomas Huth #define PGM_ASCE_TYPE 0x0038 254fcf5ef2aSThomas Huth #define PGM_REG_FIRST_TRANS 0x0039 255fcf5ef2aSThomas Huth #define PGM_REG_SEC_TRANS 0x003a 256fcf5ef2aSThomas Huth #define PGM_REG_THIRD_TRANS 0x003b 257fcf5ef2aSThomas Huth #define PGM_MONITOR 0x0040 258fcf5ef2aSThomas Huth #define PGM_PER 0x0080 259fcf5ef2aSThomas Huth #define PGM_CRYPTO 0x0119 260fcf5ef2aSThomas Huth 261fcf5ef2aSThomas Huth /* External Interrupts */ 262fcf5ef2aSThomas Huth #define EXT_INTERRUPT_KEY 0x0040 263fcf5ef2aSThomas Huth #define EXT_CLOCK_COMP 0x1004 264fcf5ef2aSThomas Huth #define EXT_CPU_TIMER 0x1005 265fcf5ef2aSThomas Huth #define EXT_MALFUNCTION 0x1200 266fcf5ef2aSThomas Huth #define EXT_EMERGENCY 0x1201 267fcf5ef2aSThomas Huth #define EXT_EXTERNAL_CALL 0x1202 268fcf5ef2aSThomas Huth #define EXT_ETR 0x1406 269fcf5ef2aSThomas Huth #define EXT_SERVICE 0x2401 270fcf5ef2aSThomas Huth #define EXT_VIRTIO 0x2603 271fcf5ef2aSThomas Huth 272fcf5ef2aSThomas Huth /* PSW defines */ 273fcf5ef2aSThomas Huth #undef PSW_MASK_PER 27413054739SDavid Hildenbrand #undef PSW_MASK_UNUSED_2 275b971a2fdSDavid Hildenbrand #undef PSW_MASK_UNUSED_3 276fcf5ef2aSThomas Huth #undef PSW_MASK_DAT 277fcf5ef2aSThomas Huth #undef PSW_MASK_IO 278fcf5ef2aSThomas Huth #undef PSW_MASK_EXT 279fcf5ef2aSThomas Huth #undef PSW_MASK_KEY 280fcf5ef2aSThomas Huth #undef PSW_SHIFT_KEY 281fcf5ef2aSThomas Huth #undef PSW_MASK_MCHECK 282fcf5ef2aSThomas Huth #undef PSW_MASK_WAIT 283fcf5ef2aSThomas Huth #undef PSW_MASK_PSTATE 284fcf5ef2aSThomas Huth #undef PSW_MASK_ASC 2853e7e5e0bSDavid Hildenbrand #undef PSW_SHIFT_ASC 286fcf5ef2aSThomas Huth #undef PSW_MASK_CC 287fcf5ef2aSThomas Huth #undef PSW_MASK_PM 288e893baeeSJanosch Frank #undef PSW_MASK_RI 2896b257354SDavid Hildenbrand #undef PSW_SHIFT_MASK_PM 290fcf5ef2aSThomas Huth #undef PSW_MASK_64 291fcf5ef2aSThomas Huth #undef PSW_MASK_32 292fcf5ef2aSThomas Huth #undef PSW_MASK_ESA_ADDR 293fcf5ef2aSThomas Huth 294fcf5ef2aSThomas Huth #define PSW_MASK_PER 0x4000000000000000ULL 29513054739SDavid Hildenbrand #define PSW_MASK_UNUSED_2 0x2000000000000000ULL 296b971a2fdSDavid Hildenbrand #define PSW_MASK_UNUSED_3 0x1000000000000000ULL 297fcf5ef2aSThomas Huth #define PSW_MASK_DAT 0x0400000000000000ULL 298fcf5ef2aSThomas Huth #define PSW_MASK_IO 0x0200000000000000ULL 299fcf5ef2aSThomas Huth #define PSW_MASK_EXT 0x0100000000000000ULL 300fcf5ef2aSThomas Huth #define PSW_MASK_KEY 0x00F0000000000000ULL 301c8bd9537SDavid Hildenbrand #define PSW_SHIFT_KEY 52 302104130cbSJanosch Frank #define PSW_MASK_SHORTPSW 0x0008000000000000ULL 303fcf5ef2aSThomas Huth #define PSW_MASK_MCHECK 0x0004000000000000ULL 304fcf5ef2aSThomas Huth #define PSW_MASK_WAIT 0x0002000000000000ULL 305fcf5ef2aSThomas Huth #define PSW_MASK_PSTATE 0x0001000000000000ULL 306fcf5ef2aSThomas Huth #define PSW_MASK_ASC 0x0000C00000000000ULL 3073e7e5e0bSDavid Hildenbrand #define PSW_SHIFT_ASC 46 308fcf5ef2aSThomas Huth #define PSW_MASK_CC 0x0000300000000000ULL 309fcf5ef2aSThomas Huth #define PSW_MASK_PM 0x00000F0000000000ULL 3106b257354SDavid Hildenbrand #define PSW_SHIFT_MASK_PM 40 311e893baeeSJanosch Frank #define PSW_MASK_RI 0x0000008000000000ULL 312fcf5ef2aSThomas Huth #define PSW_MASK_64 0x0000000100000000ULL 313fcf5ef2aSThomas Huth #define PSW_MASK_32 0x0000000080000000ULL 314b6c2dbd7SJanosch Frank #define PSW_MASK_SHORT_ADDR 0x000000007fffffffULL 315b6c2dbd7SJanosch Frank #define PSW_MASK_SHORT_CTRL 0xffffffff80000000ULL 316199c42a6SIlya Leoshkevich #define PSW_MASK_RESERVED 0xb80800fe7fffffffULL 317fcf5ef2aSThomas Huth 318fcf5ef2aSThomas Huth #undef PSW_ASC_PRIMARY 319fcf5ef2aSThomas Huth #undef PSW_ASC_ACCREG 320fcf5ef2aSThomas Huth #undef PSW_ASC_SECONDARY 321fcf5ef2aSThomas Huth #undef PSW_ASC_HOME 322fcf5ef2aSThomas Huth 323fcf5ef2aSThomas Huth #define PSW_ASC_PRIMARY 0x0000000000000000ULL 324fcf5ef2aSThomas Huth #define PSW_ASC_ACCREG 0x0000400000000000ULL 325fcf5ef2aSThomas Huth #define PSW_ASC_SECONDARY 0x0000800000000000ULL 326fcf5ef2aSThomas Huth #define PSW_ASC_HOME 0x0000C00000000000ULL 327fcf5ef2aSThomas Huth 3283e7e5e0bSDavid Hildenbrand /* the address space values shifted */ 3293e7e5e0bSDavid Hildenbrand #define AS_PRIMARY 0 3303e7e5e0bSDavid Hildenbrand #define AS_ACCREG 1 3313e7e5e0bSDavid Hildenbrand #define AS_SECONDARY 2 3323e7e5e0bSDavid Hildenbrand #define AS_HOME 3 3333e7e5e0bSDavid Hildenbrand 334fcf5ef2aSThomas Huth /* tb flags */ 335fcf5ef2aSThomas Huth 336159fed45SRichard Henderson #define FLAG_MASK_PSW_SHIFT 31 33762613ca0SRichard Henderson #define FLAG_MASK_32 0x00000001u 33862613ca0SRichard Henderson #define FLAG_MASK_64 0x00000002u 33962613ca0SRichard Henderson #define FLAG_MASK_AFP 0x00000004u 34062613ca0SRichard Henderson #define FLAG_MASK_VECTOR 0x00000008u 34162613ca0SRichard Henderson #define FLAG_MASK_ASC 0x00018000u 34262613ca0SRichard Henderson #define FLAG_MASK_PSTATE 0x00020000u 34362613ca0SRichard Henderson #define FLAG_MASK_PER_IFETCH_NULLIFY 0x01000000u 34462613ca0SRichard Henderson #define FLAG_MASK_DAT 0x08000000u 34562613ca0SRichard Henderson #define FLAG_MASK_PER_STORE_REAL 0x20000000u 34662613ca0SRichard Henderson #define FLAG_MASK_PER_IFETCH 0x40000000u 34762613ca0SRichard Henderson #define FLAG_MASK_PER_BRANCH 0x80000000u 348fcf5ef2aSThomas Huth 34962613ca0SRichard Henderson QEMU_BUILD_BUG_ON(FLAG_MASK_32 != PSW_MASK_32 >> FLAG_MASK_PSW_SHIFT); 35062613ca0SRichard Henderson QEMU_BUILD_BUG_ON(FLAG_MASK_64 != PSW_MASK_64 >> FLAG_MASK_PSW_SHIFT); 35162613ca0SRichard Henderson QEMU_BUILD_BUG_ON(FLAG_MASK_ASC != PSW_MASK_ASC >> FLAG_MASK_PSW_SHIFT); 35262613ca0SRichard Henderson QEMU_BUILD_BUG_ON(FLAG_MASK_PSTATE != PSW_MASK_PSTATE >> FLAG_MASK_PSW_SHIFT); 35362613ca0SRichard Henderson QEMU_BUILD_BUG_ON(FLAG_MASK_DAT != PSW_MASK_DAT >> FLAG_MASK_PSW_SHIFT); 35462613ca0SRichard Henderson 35562613ca0SRichard Henderson #define FLAG_MASK_PSW (FLAG_MASK_DAT | FLAG_MASK_PSTATE | \ 35662613ca0SRichard Henderson FLAG_MASK_ASC | FLAG_MASK_64 | FLAG_MASK_32) 35762613ca0SRichard Henderson #define FLAG_MASK_CR9 (FLAG_MASK_PER_BRANCH | FLAG_MASK_PER_IFETCH) 35862613ca0SRichard Henderson #define FLAG_MASK_PER (FLAG_MASK_PER_BRANCH | \ 35962613ca0SRichard Henderson FLAG_MASK_PER_IFETCH | \ 36062613ca0SRichard Henderson FLAG_MASK_PER_IFETCH_NULLIFY | \ 36162613ca0SRichard Henderson FLAG_MASK_PER_STORE_REAL) 36213054739SDavid Hildenbrand 363fcf5ef2aSThomas Huth /* Control register 0 bits */ 364fcf5ef2aSThomas Huth #define CR0_LOWPROT 0x0000000010000000ULL 3653e7e5e0bSDavid Hildenbrand #define CR0_SECONDARY 0x0000000004000000ULL 366fcf5ef2aSThomas Huth #define CR0_EDAT 0x0000000000800000ULL 367bbf6ea3bSDavid Hildenbrand #define CR0_AFP 0x0000000000040000ULL 368b971a2fdSDavid Hildenbrand #define CR0_VECTOR 0x0000000000020000ULL 3693a06f981SDavid Hildenbrand #define CR0_IEP 0x0000000000100000ULL 3709dec2388SDavid Hildenbrand #define CR0_EMERGENCY_SIGNAL_SC 0x0000000000004000ULL 3719dec2388SDavid Hildenbrand #define CR0_EXTERNAL_CALL_SC 0x0000000000002000ULL 3729dec2388SDavid Hildenbrand #define CR0_CKC_SC 0x0000000000000800ULL 3739dec2388SDavid Hildenbrand #define CR0_CPU_TIMER_SC 0x0000000000000400ULL 3749dec2388SDavid Hildenbrand #define CR0_SERVICE_SC 0x0000000000000200ULL 375fcf5ef2aSThomas Huth 376b700d75eSDavid Hildenbrand /* Control register 14 bits */ 377b700d75eSDavid Hildenbrand #define CR14_CHANNEL_REPORT_SC 0x0000000010000000ULL 378b700d75eSDavid Hildenbrand 379fcf5ef2aSThomas Huth /* MMU */ 380fcf5ef2aSThomas Huth #define MMU_PRIMARY_IDX 0 381fcf5ef2aSThomas Huth #define MMU_SECONDARY_IDX 1 382fcf5ef2aSThomas Huth #define MMU_HOME_IDX 2 383fb66944dSDavid Hildenbrand #define MMU_REAL_IDX 3 384fcf5ef2aSThomas Huth 38590b7022eSRichard Henderson static inline int s390x_env_mmu_index(CPUS390XState *env, bool ifetch) 386fcf5ef2aSThomas Huth { 387817791e8SDavid Hildenbrand #ifdef CONFIG_USER_ONLY 388817791e8SDavid Hildenbrand return MMU_USER_IDX; 389817791e8SDavid Hildenbrand #else 390f26852aaSDavid Hildenbrand if (!(env->psw.mask & PSW_MASK_DAT)) { 391f26852aaSDavid Hildenbrand return MMU_REAL_IDX; 392f26852aaSDavid Hildenbrand } 393f26852aaSDavid Hildenbrand 3943096ffd3SDavid Hildenbrand if (ifetch) { 3953096ffd3SDavid Hildenbrand if ((env->psw.mask & PSW_MASK_ASC) == PSW_ASC_HOME) { 3963096ffd3SDavid Hildenbrand return MMU_HOME_IDX; 3973096ffd3SDavid Hildenbrand } 3983096ffd3SDavid Hildenbrand return MMU_PRIMARY_IDX; 3993096ffd3SDavid Hildenbrand } 4003096ffd3SDavid Hildenbrand 401fcf5ef2aSThomas Huth switch (env->psw.mask & PSW_MASK_ASC) { 402fcf5ef2aSThomas Huth case PSW_ASC_PRIMARY: 403fcf5ef2aSThomas Huth return MMU_PRIMARY_IDX; 404fcf5ef2aSThomas Huth case PSW_ASC_SECONDARY: 405fcf5ef2aSThomas Huth return MMU_SECONDARY_IDX; 406fcf5ef2aSThomas Huth case PSW_ASC_HOME: 407fcf5ef2aSThomas Huth return MMU_HOME_IDX; 408fcf5ef2aSThomas Huth case PSW_ASC_ACCREG: 409fcf5ef2aSThomas Huth /* Fallthrough: access register mode is not yet supported */ 410fcf5ef2aSThomas Huth default: 411fcf5ef2aSThomas Huth abort(); 412fcf5ef2aSThomas Huth } 413817791e8SDavid Hildenbrand #endif 414fcf5ef2aSThomas Huth } 415fcf5ef2aSThomas Huth 4161663e886SPhilippe Mathieu-Daudé #ifdef CONFIG_TCG 4171663e886SPhilippe Mathieu-Daudé 4181663e886SPhilippe Mathieu-Daudé #include "tcg/tcg_s390x.h" 4191663e886SPhilippe Mathieu-Daudé 42036db37afSRichard Henderson void cpu_get_tb_cpu_state(CPUS390XState *env, vaddr *pc, 42136db37afSRichard Henderson uint64_t *cs_base, uint32_t *flags); 422fcf5ef2aSThomas Huth 4231663e886SPhilippe Mathieu-Daudé #endif /* CONFIG_TCG */ 4241663e886SPhilippe Mathieu-Daudé 425fcf5ef2aSThomas Huth /* PER bits from control register 9 */ 426fcf5ef2aSThomas Huth #define PER_CR9_EVENT_BRANCH 0x80000000 427fcf5ef2aSThomas Huth #define PER_CR9_EVENT_IFETCH 0x40000000 428fcf5ef2aSThomas Huth #define PER_CR9_EVENT_STORE 0x20000000 42951a1718bSRichard Henderson #define PER_CR9_EVENT_STORAGE_KEY_ALTERATION 0x10000000 430fcf5ef2aSThomas Huth #define PER_CR9_EVENT_STORE_REAL 0x08000000 43151a1718bSRichard Henderson #define PER_CR9_EVENT_ZERO_ADDRESS_DETECTION 0x04000000 43251a1718bSRichard Henderson #define PER_CR9_EVENT_TRANSACTION_END 0x02000000 43351a1718bSRichard Henderson #define PER_CR9_EVENT_IFETCH_NULLIFICATION 0x01000000 434fcf5ef2aSThomas Huth #define PER_CR9_CONTROL_BRANCH_ADDRESS 0x00800000 43551a1718bSRichard Henderson #define PER_CR9_CONTROL_TRANSACTION_SUPRESS 0x00400000 43651a1718bSRichard Henderson #define PER_CR9_CONTROL_STORAGE_ALTERATION 0x00200000 437fcf5ef2aSThomas Huth 43862613ca0SRichard Henderson QEMU_BUILD_BUG_ON(FLAG_MASK_PER_BRANCH != PER_CR9_EVENT_BRANCH); 43962613ca0SRichard Henderson QEMU_BUILD_BUG_ON(FLAG_MASK_PER_IFETCH != PER_CR9_EVENT_IFETCH); 44062613ca0SRichard Henderson QEMU_BUILD_BUG_ON(FLAG_MASK_PER_IFETCH_NULLIFY != 44162613ca0SRichard Henderson PER_CR9_EVENT_IFETCH_NULLIFICATION); 44262613ca0SRichard Henderson 443fcf5ef2aSThomas Huth /* PER bits from the PER CODE/ATMID/AI in lowcore */ 444fcf5ef2aSThomas Huth #define PER_CODE_EVENT_BRANCH 0x8000 445fcf5ef2aSThomas Huth #define PER_CODE_EVENT_IFETCH 0x4000 446fcf5ef2aSThomas Huth #define PER_CODE_EVENT_STORE 0x2000 447fcf5ef2aSThomas Huth #define PER_CODE_EVENT_STORE_REAL 0x0800 448fcf5ef2aSThomas Huth #define PER_CODE_EVENT_NULLIFICATION 0x0100 449fcf5ef2aSThomas Huth 450fcf5ef2aSThomas Huth #define EXCP_EXT 1 /* external interrupt */ 451fcf5ef2aSThomas Huth #define EXCP_SVC 2 /* supervisor call (syscall) */ 452fcf5ef2aSThomas Huth #define EXCP_PGM 3 /* program interruption */ 453b1ab5f60SDavid Hildenbrand #define EXCP_RESTART 4 /* restart interrupt */ 454b1ab5f60SDavid Hildenbrand #define EXCP_STOP 5 /* stop interrupt */ 455fcf5ef2aSThomas Huth #define EXCP_IO 7 /* I/O interrupt */ 456fcf5ef2aSThomas Huth #define EXCP_MCHK 8 /* machine check */ 457fcf5ef2aSThomas Huth 4586482b0ffSDavid Hildenbrand #define INTERRUPT_EXT_CPU_TIMER (1 << 3) 4596482b0ffSDavid Hildenbrand #define INTERRUPT_EXT_CLOCK_COMPARATOR (1 << 4) 46014ca122eSDavid Hildenbrand #define INTERRUPT_EXTERNAL_CALL (1 << 5) 46114ca122eSDavid Hildenbrand #define INTERRUPT_EMERGENCY_SIGNAL (1 << 6) 462b1ab5f60SDavid Hildenbrand #define INTERRUPT_RESTART (1 << 7) 463b1ab5f60SDavid Hildenbrand #define INTERRUPT_STOP (1 << 8) 464fcf5ef2aSThomas Huth 465fcf5ef2aSThomas Huth /* Program Status Word. */ 466fcf5ef2aSThomas Huth #define S390_PSWM_REGNUM 0 467fcf5ef2aSThomas Huth #define S390_PSWA_REGNUM 1 468fcf5ef2aSThomas Huth /* General Purpose Registers. */ 469fcf5ef2aSThomas Huth #define S390_R0_REGNUM 2 470fcf5ef2aSThomas Huth #define S390_R1_REGNUM 3 471fcf5ef2aSThomas Huth #define S390_R2_REGNUM 4 472fcf5ef2aSThomas Huth #define S390_R3_REGNUM 5 473fcf5ef2aSThomas Huth #define S390_R4_REGNUM 6 474fcf5ef2aSThomas Huth #define S390_R5_REGNUM 7 475fcf5ef2aSThomas Huth #define S390_R6_REGNUM 8 476fcf5ef2aSThomas Huth #define S390_R7_REGNUM 9 477fcf5ef2aSThomas Huth #define S390_R8_REGNUM 10 478fcf5ef2aSThomas Huth #define S390_R9_REGNUM 11 479fcf5ef2aSThomas Huth #define S390_R10_REGNUM 12 480fcf5ef2aSThomas Huth #define S390_R11_REGNUM 13 481fcf5ef2aSThomas Huth #define S390_R12_REGNUM 14 482fcf5ef2aSThomas Huth #define S390_R13_REGNUM 15 483fcf5ef2aSThomas Huth #define S390_R14_REGNUM 16 484fcf5ef2aSThomas Huth #define S390_R15_REGNUM 17 485fcf5ef2aSThomas Huth 486fcf5ef2aSThomas Huth static inline void setcc(S390CPU *cpu, uint64_t cc) 487fcf5ef2aSThomas Huth { 488fcf5ef2aSThomas Huth CPUS390XState *env = &cpu->env; 489fcf5ef2aSThomas Huth 490fcf5ef2aSThomas Huth env->psw.mask &= ~(3ull << 44); 491fcf5ef2aSThomas Huth env->psw.mask |= (cc & 3) << 44; 492fcf5ef2aSThomas Huth env->cc_op = cc; 493fcf5ef2aSThomas Huth } 494fcf5ef2aSThomas Huth 495fcf5ef2aSThomas Huth /* STSI */ 49679947862SDavid Hildenbrand #define STSI_R0_FC_MASK 0x00000000f0000000ULL 49779947862SDavid Hildenbrand #define STSI_R0_FC_CURRENT 0x0000000000000000ULL 49879947862SDavid Hildenbrand #define STSI_R0_FC_LEVEL_1 0x0000000010000000ULL 49979947862SDavid Hildenbrand #define STSI_R0_FC_LEVEL_2 0x0000000020000000ULL 50079947862SDavid Hildenbrand #define STSI_R0_FC_LEVEL_3 0x0000000030000000ULL 501fcf5ef2aSThomas Huth #define STSI_R0_RESERVED_MASK 0x000000000fffff00ULL 502fcf5ef2aSThomas Huth #define STSI_R0_SEL1_MASK 0x00000000000000ffULL 503fcf5ef2aSThomas Huth #define STSI_R1_RESERVED_MASK 0x00000000ffff0000ULL 504fcf5ef2aSThomas Huth #define STSI_R1_SEL2_MASK 0x000000000000ffffULL 505fcf5ef2aSThomas Huth 506fcf5ef2aSThomas Huth /* Basic Machine Configuration */ 5074d1369efSDavid Hildenbrand typedef struct SysIB_111 { 5084d1369efSDavid Hildenbrand uint8_t res1[32]; 509fcf5ef2aSThomas Huth uint8_t manuf[16]; 510fcf5ef2aSThomas Huth uint8_t type[4]; 511fcf5ef2aSThomas Huth uint8_t res2[12]; 512fcf5ef2aSThomas Huth uint8_t model[16]; 513fcf5ef2aSThomas Huth uint8_t sequence[16]; 514fcf5ef2aSThomas Huth uint8_t plant[4]; 5154d1369efSDavid Hildenbrand uint8_t res3[3996]; 5164d1369efSDavid Hildenbrand } SysIB_111; 5174d1369efSDavid Hildenbrand QEMU_BUILD_BUG_ON(sizeof(SysIB_111) != 4096); 518fcf5ef2aSThomas Huth 519fcf5ef2aSThomas Huth /* Basic Machine CPU */ 5204d1369efSDavid Hildenbrand typedef struct SysIB_121 { 5214d1369efSDavid Hildenbrand uint8_t res1[80]; 522fcf5ef2aSThomas Huth uint8_t sequence[16]; 523fcf5ef2aSThomas Huth uint8_t plant[4]; 524fcf5ef2aSThomas Huth uint8_t res2[2]; 525fcf5ef2aSThomas Huth uint16_t cpu_addr; 5264d1369efSDavid Hildenbrand uint8_t res3[3992]; 5274d1369efSDavid Hildenbrand } SysIB_121; 5284d1369efSDavid Hildenbrand QEMU_BUILD_BUG_ON(sizeof(SysIB_121) != 4096); 529fcf5ef2aSThomas Huth 530fcf5ef2aSThomas Huth /* Basic Machine CPUs */ 5314d1369efSDavid Hildenbrand typedef struct SysIB_122 { 532fcf5ef2aSThomas Huth uint8_t res1[32]; 533fcf5ef2aSThomas Huth uint32_t capability; 534fcf5ef2aSThomas Huth uint16_t total_cpus; 53579947862SDavid Hildenbrand uint16_t conf_cpus; 536fcf5ef2aSThomas Huth uint16_t standby_cpus; 537fcf5ef2aSThomas Huth uint16_t reserved_cpus; 538fcf5ef2aSThomas Huth uint16_t adjustments[2026]; 5394d1369efSDavid Hildenbrand } SysIB_122; 5404d1369efSDavid Hildenbrand QEMU_BUILD_BUG_ON(sizeof(SysIB_122) != 4096); 541fcf5ef2aSThomas Huth 542fcf5ef2aSThomas Huth /* LPAR CPU */ 5434d1369efSDavid Hildenbrand typedef struct SysIB_221 { 5444d1369efSDavid Hildenbrand uint8_t res1[80]; 545fcf5ef2aSThomas Huth uint8_t sequence[16]; 546fcf5ef2aSThomas Huth uint8_t plant[4]; 547fcf5ef2aSThomas Huth uint16_t cpu_id; 548fcf5ef2aSThomas Huth uint16_t cpu_addr; 5494d1369efSDavid Hildenbrand uint8_t res3[3992]; 5504d1369efSDavid Hildenbrand } SysIB_221; 5514d1369efSDavid Hildenbrand QEMU_BUILD_BUG_ON(sizeof(SysIB_221) != 4096); 552fcf5ef2aSThomas Huth 553fcf5ef2aSThomas Huth /* LPAR CPUs */ 5544d1369efSDavid Hildenbrand typedef struct SysIB_222 { 5554d1369efSDavid Hildenbrand uint8_t res1[32]; 556fcf5ef2aSThomas Huth uint16_t lpar_num; 557fcf5ef2aSThomas Huth uint8_t res2; 558fcf5ef2aSThomas Huth uint8_t lcpuc; 559fcf5ef2aSThomas Huth uint16_t total_cpus; 560fcf5ef2aSThomas Huth uint16_t conf_cpus; 561fcf5ef2aSThomas Huth uint16_t standby_cpus; 562fcf5ef2aSThomas Huth uint16_t reserved_cpus; 563fcf5ef2aSThomas Huth uint8_t name[8]; 564fcf5ef2aSThomas Huth uint32_t caf; 565fcf5ef2aSThomas Huth uint8_t res3[16]; 566fcf5ef2aSThomas Huth uint16_t dedicated_cpus; 567fcf5ef2aSThomas Huth uint16_t shared_cpus; 5684d1369efSDavid Hildenbrand uint8_t res4[4020]; 5694d1369efSDavid Hildenbrand } SysIB_222; 5704d1369efSDavid Hildenbrand QEMU_BUILD_BUG_ON(sizeof(SysIB_222) != 4096); 571fcf5ef2aSThomas Huth 572fcf5ef2aSThomas Huth /* VM CPUs */ 5734d1369efSDavid Hildenbrand typedef struct SysIB_322 { 574fcf5ef2aSThomas Huth uint8_t res1[31]; 575fcf5ef2aSThomas Huth uint8_t count; 576fcf5ef2aSThomas Huth struct { 577fcf5ef2aSThomas Huth uint8_t res2[4]; 578fcf5ef2aSThomas Huth uint16_t total_cpus; 579fcf5ef2aSThomas Huth uint16_t conf_cpus; 580fcf5ef2aSThomas Huth uint16_t standby_cpus; 581fcf5ef2aSThomas Huth uint16_t reserved_cpus; 582fcf5ef2aSThomas Huth uint8_t name[8]; 583fcf5ef2aSThomas Huth uint32_t caf; 584fcf5ef2aSThomas Huth uint8_t cpi[16]; 585fcf5ef2aSThomas Huth uint8_t res5[3]; 586fcf5ef2aSThomas Huth uint8_t ext_name_encoding; 587fcf5ef2aSThomas Huth uint32_t res3; 588fcf5ef2aSThomas Huth uint8_t uuid[16]; 589fcf5ef2aSThomas Huth } vm[8]; 590fcf5ef2aSThomas Huth uint8_t res4[1504]; 591fcf5ef2aSThomas Huth uint8_t ext_names[8][256]; 5924d1369efSDavid Hildenbrand } SysIB_322; 5934d1369efSDavid Hildenbrand QEMU_BUILD_BUG_ON(sizeof(SysIB_322) != 4096); 594fcf5ef2aSThomas Huth 595f4f54b58SPierre Morel /* 596f4f54b58SPierre Morel * Topology Magnitude fields (MAG) indicates the maximum number of 597f4f54b58SPierre Morel * topology list entries (TLE) at the corresponding nesting level. 598f4f54b58SPierre Morel */ 599f4f54b58SPierre Morel #define S390_TOPOLOGY_MAG 6 600f4f54b58SPierre Morel #define S390_TOPOLOGY_MAG6 0 601f4f54b58SPierre Morel #define S390_TOPOLOGY_MAG5 1 602f4f54b58SPierre Morel #define S390_TOPOLOGY_MAG4 2 603f4f54b58SPierre Morel #define S390_TOPOLOGY_MAG3 3 604f4f54b58SPierre Morel #define S390_TOPOLOGY_MAG2 4 605f4f54b58SPierre Morel #define S390_TOPOLOGY_MAG1 5 606f4f54b58SPierre Morel /* Configuration topology */ 607f4f54b58SPierre Morel typedef struct SysIB_151x { 608f4f54b58SPierre Morel uint8_t reserved0[2]; 609f4f54b58SPierre Morel uint16_t length; 610f4f54b58SPierre Morel uint8_t mag[S390_TOPOLOGY_MAG]; 611f4f54b58SPierre Morel uint8_t reserved1; 612f4f54b58SPierre Morel uint8_t mnest; 613f4f54b58SPierre Morel uint32_t reserved2; 614f4f54b58SPierre Morel char tle[]; 615f4f54b58SPierre Morel } SysIB_151x; 616f4f54b58SPierre Morel QEMU_BUILD_BUG_ON(sizeof(SysIB_151x) != 16); 617f4f54b58SPierre Morel 61879947862SDavid Hildenbrand typedef union SysIB { 61979947862SDavid Hildenbrand SysIB_111 sysib_111; 62079947862SDavid Hildenbrand SysIB_121 sysib_121; 62179947862SDavid Hildenbrand SysIB_122 sysib_122; 62279947862SDavid Hildenbrand SysIB_221 sysib_221; 62379947862SDavid Hildenbrand SysIB_222 sysib_222; 62479947862SDavid Hildenbrand SysIB_322 sysib_322; 625f4f54b58SPierre Morel SysIB_151x sysib_151x; 62679947862SDavid Hildenbrand } SysIB; 62779947862SDavid Hildenbrand QEMU_BUILD_BUG_ON(sizeof(SysIB) != 4096); 62879947862SDavid Hildenbrand 629f4f54b58SPierre Morel /* 630f4f54b58SPierre Morel * CPU Topology List provided by STSI with fc=15 provides a list 631f4f54b58SPierre Morel * of two different Topology List Entries (TLE) types to specify 632f4f54b58SPierre Morel * the topology hierarchy. 633f4f54b58SPierre Morel * 634f4f54b58SPierre Morel * - Container Topology List Entry 635f4f54b58SPierre Morel * Defines a container to contain other Topology List Entries 636f4f54b58SPierre Morel * of any type, nested containers or CPU. 637f4f54b58SPierre Morel * - CPU Topology List Entry 638f4f54b58SPierre Morel * Specifies the CPUs position, type, entitlement and polarization 639f4f54b58SPierre Morel * of the CPUs contained in the last container TLE. 640f4f54b58SPierre Morel * 641f4f54b58SPierre Morel * There can be theoretically up to five levels of containers, QEMU 642f4f54b58SPierre Morel * uses only three levels, the drawer's, book's and socket's level. 643f4f54b58SPierre Morel * 644f4f54b58SPierre Morel * A container with a nesting level (NL) greater than 1 can only 645f4f54b58SPierre Morel * contain another container of nesting level NL-1. 646f4f54b58SPierre Morel * 647f4f54b58SPierre Morel * A container of nesting level 1 (socket), contains as many CPU TLE 648f4f54b58SPierre Morel * as needed to describe the position and qualities of all CPUs inside 649f4f54b58SPierre Morel * the container. 650f4f54b58SPierre Morel * The qualities of a CPU are polarization, entitlement and type. 651f4f54b58SPierre Morel * 652f4f54b58SPierre Morel * The CPU TLE defines the position of the CPUs of identical qualities 653f4f54b58SPierre Morel * using a 64bits mask which first bit has its offset defined by 654f4f54b58SPierre Morel * the CPU address origin field of the CPU TLE like in: 655f4f54b58SPierre Morel * CPU address = origin * 64 + bit position within the mask 656f4f54b58SPierre Morel */ 657f4f54b58SPierre Morel /* Container type Topology List Entry */ 658f4f54b58SPierre Morel typedef struct SYSIBContainerListEntry { 659f4f54b58SPierre Morel uint8_t nl; 660f4f54b58SPierre Morel uint8_t reserved[6]; 661f4f54b58SPierre Morel uint8_t id; 662f4f54b58SPierre Morel } SYSIBContainerListEntry; 663f4f54b58SPierre Morel QEMU_BUILD_BUG_ON(sizeof(SYSIBContainerListEntry) != 8); 664f4f54b58SPierre Morel 665f4f54b58SPierre Morel /* CPU type Topology List Entry */ 666f4f54b58SPierre Morel typedef struct SysIBCPUListEntry { 667f4f54b58SPierre Morel uint8_t nl; 668f4f54b58SPierre Morel uint8_t reserved0[3]; 669f4f54b58SPierre Morel #define SYSIB_TLE_POLARITY_MASK 0x03 670f4f54b58SPierre Morel #define SYSIB_TLE_DEDICATED 0x04 671f4f54b58SPierre Morel uint8_t flags; 672f4f54b58SPierre Morel uint8_t type; 673f4f54b58SPierre Morel uint16_t origin; 674f4f54b58SPierre Morel uint64_t mask; 675f4f54b58SPierre Morel } SysIBCPUListEntry; 676f4f54b58SPierre Morel QEMU_BUILD_BUG_ON(sizeof(SysIBCPUListEntry) != 16); 677f4f54b58SPierre Morel 678f4f54b58SPierre Morel void insert_stsi_15_1_x(S390CPU *cpu, int sel2, uint64_t addr, uint8_t ar, uintptr_t ra); 6793d6e75f4SPierre Morel void s390_cpu_topology_set_changed(bool changed); 680f4f54b58SPierre Morel 681fcf5ef2aSThomas Huth /* MMU defines */ 682adab99beSThomas Huth #define ASCE_ORIGIN (~0xfffULL) /* segment table origin */ 683adab99beSThomas Huth #define ASCE_SUBSPACE 0x200 /* subspace group control */ 684adab99beSThomas Huth #define ASCE_PRIVATE_SPACE 0x100 /* private space control */ 685adab99beSThomas Huth #define ASCE_ALT_EVENT 0x80 /* storage alteration event control */ 686adab99beSThomas Huth #define ASCE_SPACE_SWITCH 0x40 /* space switch event */ 687adab99beSThomas Huth #define ASCE_REAL_SPACE 0x20 /* real space control */ 688adab99beSThomas Huth #define ASCE_TYPE_MASK 0x0c /* asce table type mask */ 689adab99beSThomas Huth #define ASCE_TYPE_REGION1 0x0c /* region first table type */ 690adab99beSThomas Huth #define ASCE_TYPE_REGION2 0x08 /* region second table type */ 691adab99beSThomas Huth #define ASCE_TYPE_REGION3 0x04 /* region third table type */ 692adab99beSThomas Huth #define ASCE_TYPE_SEGMENT 0x00 /* segment table type */ 693adab99beSThomas Huth #define ASCE_TABLE_LENGTH 0x03 /* region table length */ 694fcf5ef2aSThomas Huth 6953fd0e85fSDavid Hildenbrand #define REGION_ENTRY_ORIGIN 0xfffffffffffff000ULL 6963fd0e85fSDavid Hildenbrand #define REGION_ENTRY_P 0x0000000000000200ULL 6973fd0e85fSDavid Hildenbrand #define REGION_ENTRY_TF 0x00000000000000c0ULL 6983fd0e85fSDavid Hildenbrand #define REGION_ENTRY_I 0x0000000000000020ULL 6993fd0e85fSDavid Hildenbrand #define REGION_ENTRY_TT 0x000000000000000cULL 7003fd0e85fSDavid Hildenbrand #define REGION_ENTRY_TL 0x0000000000000003ULL 701fcf5ef2aSThomas Huth 7023fd0e85fSDavid Hildenbrand #define REGION_ENTRY_TT_REGION1 0x000000000000000cULL 7033fd0e85fSDavid Hildenbrand #define REGION_ENTRY_TT_REGION2 0x0000000000000008ULL 7043fd0e85fSDavid Hildenbrand #define REGION_ENTRY_TT_REGION3 0x0000000000000004ULL 705fcf5ef2aSThomas Huth 7063fd0e85fSDavid Hildenbrand #define REGION3_ENTRY_RFAA 0xffffffff80000000ULL 7073fd0e85fSDavid Hildenbrand #define REGION3_ENTRY_AV 0x0000000000010000ULL 7083fd0e85fSDavid Hildenbrand #define REGION3_ENTRY_ACC 0x000000000000f000ULL 7093fd0e85fSDavid Hildenbrand #define REGION3_ENTRY_F 0x0000000000000800ULL 7103fd0e85fSDavid Hildenbrand #define REGION3_ENTRY_FC 0x0000000000000400ULL 7113fd0e85fSDavid Hildenbrand #define REGION3_ENTRY_IEP 0x0000000000000100ULL 7123fd0e85fSDavid Hildenbrand #define REGION3_ENTRY_CR 0x0000000000000010ULL 7138a4719f5SAurelien Jarno 7143fd0e85fSDavid Hildenbrand #define SEGMENT_ENTRY_ORIGIN 0xfffffffffffff800ULL 7153fd0e85fSDavid Hildenbrand #define SEGMENT_ENTRY_SFAA 0xfffffffffff00000ULL 7163fd0e85fSDavid Hildenbrand #define SEGMENT_ENTRY_AV 0x0000000000010000ULL 7173fd0e85fSDavid Hildenbrand #define SEGMENT_ENTRY_ACC 0x000000000000f000ULL 7183fd0e85fSDavid Hildenbrand #define SEGMENT_ENTRY_F 0x0000000000000800ULL 7193fd0e85fSDavid Hildenbrand #define SEGMENT_ENTRY_FC 0x0000000000000400ULL 7203fd0e85fSDavid Hildenbrand #define SEGMENT_ENTRY_P 0x0000000000000200ULL 7213fd0e85fSDavid Hildenbrand #define SEGMENT_ENTRY_IEP 0x0000000000000100ULL 7223fd0e85fSDavid Hildenbrand #define SEGMENT_ENTRY_I 0x0000000000000020ULL 7233fd0e85fSDavid Hildenbrand #define SEGMENT_ENTRY_CS 0x0000000000000010ULL 7243fd0e85fSDavid Hildenbrand #define SEGMENT_ENTRY_TT 0x000000000000000cULL 7253fd0e85fSDavid Hildenbrand 7263fd0e85fSDavid Hildenbrand #define SEGMENT_ENTRY_TT_SEGMENT 0x0000000000000000ULL 7273fd0e85fSDavid Hildenbrand 7283fd0e85fSDavid Hildenbrand #define PAGE_ENTRY_0 0x0000000000000800ULL 7293fd0e85fSDavid Hildenbrand #define PAGE_ENTRY_I 0x0000000000000400ULL 7303fd0e85fSDavid Hildenbrand #define PAGE_ENTRY_P 0x0000000000000200ULL 7313fd0e85fSDavid Hildenbrand #define PAGE_ENTRY_IEP 0x0000000000000100ULL 7323fd0e85fSDavid Hildenbrand 7333fd0e85fSDavid Hildenbrand #define VADDR_REGION1_TX_MASK 0xffe0000000000000ULL 7343fd0e85fSDavid Hildenbrand #define VADDR_REGION2_TX_MASK 0x001ffc0000000000ULL 7353fd0e85fSDavid Hildenbrand #define VADDR_REGION3_TX_MASK 0x000003ff80000000ULL 7363fd0e85fSDavid Hildenbrand #define VADDR_SEGMENT_TX_MASK 0x000000007ff00000ULL 7373fd0e85fSDavid Hildenbrand #define VADDR_PAGE_TX_MASK 0x00000000000ff000ULL 7383fd0e85fSDavid Hildenbrand 7393fd0e85fSDavid Hildenbrand #define VADDR_REGION1_TX(vaddr) (((vaddr) & VADDR_REGION1_TX_MASK) >> 53) 7403fd0e85fSDavid Hildenbrand #define VADDR_REGION2_TX(vaddr) (((vaddr) & VADDR_REGION2_TX_MASK) >> 42) 7413fd0e85fSDavid Hildenbrand #define VADDR_REGION3_TX(vaddr) (((vaddr) & VADDR_REGION3_TX_MASK) >> 31) 7423fd0e85fSDavid Hildenbrand #define VADDR_SEGMENT_TX(vaddr) (((vaddr) & VADDR_SEGMENT_TX_MASK) >> 20) 7433fd0e85fSDavid Hildenbrand #define VADDR_PAGE_TX(vaddr) (((vaddr) & VADDR_PAGE_TX_MASK) >> 12) 7443fd0e85fSDavid Hildenbrand 7453fd0e85fSDavid Hildenbrand #define VADDR_REGION1_TL(vaddr) (((vaddr) & 0xc000000000000000ULL) >> 62) 7463fd0e85fSDavid Hildenbrand #define VADDR_REGION2_TL(vaddr) (((vaddr) & 0x0018000000000000ULL) >> 51) 7473fd0e85fSDavid Hildenbrand #define VADDR_REGION3_TL(vaddr) (((vaddr) & 0x0000030000000000ULL) >> 40) 7483fd0e85fSDavid Hildenbrand #define VADDR_SEGMENT_TL(vaddr) (((vaddr) & 0x0000000060000000ULL) >> 29) 749fcf5ef2aSThomas Huth 750fcf5ef2aSThomas Huth #define SK_C (0x1 << 1) 751fcf5ef2aSThomas Huth #define SK_R (0x1 << 2) 752fcf5ef2aSThomas Huth #define SK_F (0x1 << 3) 753fcf5ef2aSThomas Huth #define SK_ACC_MASK (0xf << 4) 754fcf5ef2aSThomas Huth 755fcf5ef2aSThomas Huth /* SIGP order codes */ 756fcf5ef2aSThomas Huth #define SIGP_SENSE 0x01 757fcf5ef2aSThomas Huth #define SIGP_EXTERNAL_CALL 0x02 758fcf5ef2aSThomas Huth #define SIGP_EMERGENCY 0x03 759fcf5ef2aSThomas Huth #define SIGP_START 0x04 760fcf5ef2aSThomas Huth #define SIGP_STOP 0x05 761fcf5ef2aSThomas Huth #define SIGP_RESTART 0x06 762fcf5ef2aSThomas Huth #define SIGP_STOP_STORE_STATUS 0x09 763fcf5ef2aSThomas Huth #define SIGP_INITIAL_CPU_RESET 0x0b 764fcf5ef2aSThomas Huth #define SIGP_CPU_RESET 0x0c 765fcf5ef2aSThomas Huth #define SIGP_SET_PREFIX 0x0d 766fcf5ef2aSThomas Huth #define SIGP_STORE_STATUS_ADDR 0x0e 767fcf5ef2aSThomas Huth #define SIGP_SET_ARCH 0x12 768a6880d21SDavid Hildenbrand #define SIGP_COND_EMERGENCY 0x13 769d1b468bcSDavid Hildenbrand #define SIGP_SENSE_RUNNING 0x15 770fcf5ef2aSThomas Huth #define SIGP_STORE_ADTL_STATUS 0x17 771fcf5ef2aSThomas Huth 772fcf5ef2aSThomas Huth /* SIGP condition codes */ 773fcf5ef2aSThomas Huth #define SIGP_CC_ORDER_CODE_ACCEPTED 0 774fcf5ef2aSThomas Huth #define SIGP_CC_STATUS_STORED 1 775fcf5ef2aSThomas Huth #define SIGP_CC_BUSY 2 776fcf5ef2aSThomas Huth #define SIGP_CC_NOT_OPERATIONAL 3 777fcf5ef2aSThomas Huth 778fcf5ef2aSThomas Huth /* SIGP status bits */ 779fcf5ef2aSThomas Huth #define SIGP_STAT_EQUIPMENT_CHECK 0x80000000UL 780d1b468bcSDavid Hildenbrand #define SIGP_STAT_NOT_RUNNING 0x00000400UL 781fcf5ef2aSThomas Huth #define SIGP_STAT_INCORRECT_STATE 0x00000200UL 782fcf5ef2aSThomas Huth #define SIGP_STAT_INVALID_PARAMETER 0x00000100UL 783fcf5ef2aSThomas Huth #define SIGP_STAT_EXT_CALL_PENDING 0x00000080UL 784fcf5ef2aSThomas Huth #define SIGP_STAT_STOPPED 0x00000040UL 785fcf5ef2aSThomas Huth #define SIGP_STAT_OPERATOR_INTERV 0x00000020UL 786fcf5ef2aSThomas Huth #define SIGP_STAT_CHECK_STOP 0x00000010UL 787fcf5ef2aSThomas Huth #define SIGP_STAT_INOPERATIVE 0x00000004UL 788fcf5ef2aSThomas Huth #define SIGP_STAT_INVALID_ORDER 0x00000002UL 789fcf5ef2aSThomas Huth #define SIGP_STAT_RECEIVER_CHECK 0x00000001UL 790fcf5ef2aSThomas Huth 791a7c1fadfSAurelien Jarno /* SIGP order code mask corresponding to bit positions 56-63 */ 792a7c1fadfSAurelien Jarno #define SIGP_ORDER_MASK 0x000000ff 793a7c1fadfSAurelien Jarno 794fcf5ef2aSThomas Huth /* machine check interruption code */ 795fcf5ef2aSThomas Huth 796fcf5ef2aSThomas Huth /* subclasses */ 797fcf5ef2aSThomas Huth #define MCIC_SC_SD 0x8000000000000000ULL 798fcf5ef2aSThomas Huth #define MCIC_SC_PD 0x4000000000000000ULL 799fcf5ef2aSThomas Huth #define MCIC_SC_SR 0x2000000000000000ULL 800fcf5ef2aSThomas Huth #define MCIC_SC_CD 0x0800000000000000ULL 801fcf5ef2aSThomas Huth #define MCIC_SC_ED 0x0400000000000000ULL 802fcf5ef2aSThomas Huth #define MCIC_SC_DG 0x0100000000000000ULL 803fcf5ef2aSThomas Huth #define MCIC_SC_W 0x0080000000000000ULL 804fcf5ef2aSThomas Huth #define MCIC_SC_CP 0x0040000000000000ULL 805fcf5ef2aSThomas Huth #define MCIC_SC_SP 0x0020000000000000ULL 806fcf5ef2aSThomas Huth #define MCIC_SC_CK 0x0010000000000000ULL 807fcf5ef2aSThomas Huth 808fcf5ef2aSThomas Huth /* subclass modifiers */ 809fcf5ef2aSThomas Huth #define MCIC_SCM_B 0x0002000000000000ULL 810fcf5ef2aSThomas Huth #define MCIC_SCM_DA 0x0000000020000000ULL 811fcf5ef2aSThomas Huth #define MCIC_SCM_AP 0x0000000000080000ULL 812fcf5ef2aSThomas Huth 813fcf5ef2aSThomas Huth /* storage errors */ 814fcf5ef2aSThomas Huth #define MCIC_SE_SE 0x0000800000000000ULL 815fcf5ef2aSThomas Huth #define MCIC_SE_SC 0x0000400000000000ULL 816fcf5ef2aSThomas Huth #define MCIC_SE_KE 0x0000200000000000ULL 817fcf5ef2aSThomas Huth #define MCIC_SE_DS 0x0000100000000000ULL 818fcf5ef2aSThomas Huth #define MCIC_SE_IE 0x0000000080000000ULL 819fcf5ef2aSThomas Huth 820fcf5ef2aSThomas Huth /* validity bits */ 821fcf5ef2aSThomas Huth #define MCIC_VB_WP 0x0000080000000000ULL 822fcf5ef2aSThomas Huth #define MCIC_VB_MS 0x0000040000000000ULL 823fcf5ef2aSThomas Huth #define MCIC_VB_PM 0x0000020000000000ULL 824fcf5ef2aSThomas Huth #define MCIC_VB_IA 0x0000010000000000ULL 825fcf5ef2aSThomas Huth #define MCIC_VB_FA 0x0000008000000000ULL 826fcf5ef2aSThomas Huth #define MCIC_VB_VR 0x0000004000000000ULL 827fcf5ef2aSThomas Huth #define MCIC_VB_EC 0x0000002000000000ULL 828fcf5ef2aSThomas Huth #define MCIC_VB_FP 0x0000001000000000ULL 829fcf5ef2aSThomas Huth #define MCIC_VB_GR 0x0000000800000000ULL 830fcf5ef2aSThomas Huth #define MCIC_VB_CR 0x0000000400000000ULL 831fcf5ef2aSThomas Huth #define MCIC_VB_ST 0x0000000100000000ULL 832fcf5ef2aSThomas Huth #define MCIC_VB_AR 0x0000000040000000ULL 83362deb62dSFan Zhang #define MCIC_VB_GS 0x0000000008000000ULL 834fcf5ef2aSThomas Huth #define MCIC_VB_PR 0x0000000000200000ULL 835fcf5ef2aSThomas Huth #define MCIC_VB_FC 0x0000000000100000ULL 836fcf5ef2aSThomas Huth #define MCIC_VB_CT 0x0000000000020000ULL 837fcf5ef2aSThomas Huth #define MCIC_VB_CC 0x0000000000010000ULL 838fcf5ef2aSThomas Huth 839b700d75eSDavid Hildenbrand static inline uint64_t s390_build_validity_mcic(void) 840b700d75eSDavid Hildenbrand { 841b700d75eSDavid Hildenbrand uint64_t mcic; 842b700d75eSDavid Hildenbrand 843b700d75eSDavid Hildenbrand /* 844b700d75eSDavid Hildenbrand * Indicate all validity bits (no damage) only. Other bits have to be 845b700d75eSDavid Hildenbrand * added by the caller. (storage errors, subclasses and subclass modifiers) 846b700d75eSDavid Hildenbrand */ 847b700d75eSDavid Hildenbrand mcic = MCIC_VB_WP | MCIC_VB_MS | MCIC_VB_PM | MCIC_VB_IA | MCIC_VB_FP | 848b700d75eSDavid Hildenbrand MCIC_VB_GR | MCIC_VB_CR | MCIC_VB_ST | MCIC_VB_AR | MCIC_VB_PR | 849b700d75eSDavid Hildenbrand MCIC_VB_FC | MCIC_VB_CT | MCIC_VB_CC; 850b700d75eSDavid Hildenbrand if (s390_has_feat(S390_FEAT_VECTOR)) { 851b700d75eSDavid Hildenbrand mcic |= MCIC_VB_VR; 852b700d75eSDavid Hildenbrand } 853b700d75eSDavid Hildenbrand if (s390_has_feat(S390_FEAT_GUARDED_STORAGE)) { 854b700d75eSDavid Hildenbrand mcic |= MCIC_VB_GS; 855b700d75eSDavid Hildenbrand } 856b700d75eSDavid Hildenbrand return mcic; 857b700d75eSDavid Hildenbrand } 858b700d75eSDavid Hildenbrand 859a30fb811SDavid Hildenbrand static inline void s390_do_cpu_full_reset(CPUState *cs, run_on_cpu_data arg) 860a30fb811SDavid Hildenbrand { 861a30fb811SDavid Hildenbrand cpu_reset(cs); 862a30fb811SDavid Hildenbrand } 863a30fb811SDavid Hildenbrand 864a30fb811SDavid Hildenbrand static inline void s390_do_cpu_reset(CPUState *cs, run_on_cpu_data arg) 865a30fb811SDavid Hildenbrand { 866*cf7f61d1SPeter Maydell resettable_reset(OBJECT(cs), RESET_TYPE_S390_CPU_NORMAL); 867a30fb811SDavid Hildenbrand } 868a30fb811SDavid Hildenbrand 869a30fb811SDavid Hildenbrand static inline void s390_do_cpu_initial_reset(CPUState *cs, run_on_cpu_data arg) 870a30fb811SDavid Hildenbrand { 871*cf7f61d1SPeter Maydell resettable_reset(OBJECT(cs), RESET_TYPE_S390_CPU_INITIAL); 872a30fb811SDavid Hildenbrand } 873a30fb811SDavid Hildenbrand 874a30fb811SDavid Hildenbrand static inline void s390_do_cpu_load_normal(CPUState *cs, run_on_cpu_data arg) 875a30fb811SDavid Hildenbrand { 876a30fb811SDavid Hildenbrand S390CPUClass *scc = S390_CPU_GET_CLASS(cs); 877a30fb811SDavid Hildenbrand 878a30fb811SDavid Hildenbrand scc->load_normal(cs); 879a30fb811SDavid Hildenbrand } 880a30fb811SDavid Hildenbrand 881c862bddbSDavid Hildenbrand 882c862bddbSDavid Hildenbrand /* cpu.c */ 883c862bddbSDavid Hildenbrand void s390_crypto_reset(void); 884c862bddbSDavid Hildenbrand int s390_set_memory_limit(uint64_t new_limit, uint64_t *hw_limit); 8859138977bSDavid Hildenbrand void s390_set_max_pagesize(uint64_t pagesize, Error **errp); 886c862bddbSDavid Hildenbrand void s390_cmma_reset(void); 887c862bddbSDavid Hildenbrand void s390_enable_css_support(S390CPU *cpu); 888e2c6cd56SCollin Walling void s390_do_cpu_set_diag318(CPUState *cs, run_on_cpu_data arg); 889c862bddbSDavid Hildenbrand int s390_assign_subch_ioeventfd(EventNotifier *notifier, uint32_t sch_id, 890c862bddbSDavid Hildenbrand int vq, bool assign); 891c862bddbSDavid Hildenbrand #ifndef CONFIG_USER_ONLY 892c862bddbSDavid Hildenbrand unsigned int s390_cpu_set_state(uint8_t cpu_state, S390CPU *cpu); 893c862bddbSDavid Hildenbrand #else 894c862bddbSDavid Hildenbrand static inline unsigned int s390_cpu_set_state(uint8_t cpu_state, S390CPU *cpu) 895c862bddbSDavid Hildenbrand { 896c862bddbSDavid Hildenbrand return 0; 897c862bddbSDavid Hildenbrand } 898c862bddbSDavid Hildenbrand #endif /* CONFIG_USER_ONLY */ 899631b5966SDavid Hildenbrand static inline uint8_t s390_cpu_get_state(S390CPU *cpu) 900631b5966SDavid Hildenbrand { 901631b5966SDavid Hildenbrand return cpu->env.cpu_state; 902631b5966SDavid Hildenbrand } 903c862bddbSDavid Hildenbrand 904c862bddbSDavid Hildenbrand 905c862bddbSDavid Hildenbrand /* cpu_models.c */ 9060442428aSMarkus Armbruster void s390_cpu_list(void); 907c862bddbSDavid Hildenbrand #define cpu_list s390_cpu_list 90835b4df64SDavid Hildenbrand void s390_set_qemu_cpu_model(uint16_t type, uint8_t gen, uint8_t ec_ga, 90935b4df64SDavid Hildenbrand const S390FeatInit feat_init); 91035b4df64SDavid Hildenbrand 911c862bddbSDavid Hildenbrand 912c862bddbSDavid Hildenbrand /* helper.c */ 9130dacec87SIgor Mammedov #define CPU_RESOLVING_TYPE TYPE_S390_CPU 914b6805e12SIgor Mammedov 915c862bddbSDavid Hildenbrand /* interrupt.c */ 9161b98fb99SDavid Hildenbrand #define RA_IGNORED 0 91777b703f8SRichard Henderson void s390_program_interrupt(CPUS390XState *env, uint32_t code, uintptr_t ra); 918c862bddbSDavid Hildenbrand /* service interrupts are floating therefore we must not pass an cpustate */ 919c862bddbSDavid Hildenbrand void s390_sclp_extint(uint32_t parm); 920c862bddbSDavid Hildenbrand 921c862bddbSDavid Hildenbrand /* mmu_helper.c */ 922c862bddbSDavid Hildenbrand int s390_cpu_virt_mem_rw(S390CPU *cpu, vaddr laddr, uint8_t ar, void *hostbuf, 923c862bddbSDavid Hildenbrand int len, bool is_write); 924c862bddbSDavid Hildenbrand #define s390_cpu_virt_mem_read(cpu, laddr, ar, dest, len) \ 925c862bddbSDavid Hildenbrand s390_cpu_virt_mem_rw(cpu, laddr, ar, dest, len, false) 926c862bddbSDavid Hildenbrand #define s390_cpu_virt_mem_write(cpu, laddr, ar, dest, len) \ 927c862bddbSDavid Hildenbrand s390_cpu_virt_mem_rw(cpu, laddr, ar, dest, len, true) 928b5e85329SDavid Hildenbrand #define s390_cpu_virt_mem_check_read(cpu, laddr, ar, len) \ 929b5e85329SDavid Hildenbrand s390_cpu_virt_mem_rw(cpu, laddr, ar, NULL, len, false) 930c862bddbSDavid Hildenbrand #define s390_cpu_virt_mem_check_write(cpu, laddr, ar, len) \ 931c862bddbSDavid Hildenbrand s390_cpu_virt_mem_rw(cpu, laddr, ar, NULL, len, true) 93298ee9bedSDavid Hildenbrand void s390_cpu_virt_mem_handle_exc(S390CPU *cpu, uintptr_t ra); 9331cca8265SJanosch Frank int s390_cpu_pv_mem_rw(S390CPU *cpu, unsigned int offset, void *hostbuf, 9341cca8265SJanosch Frank int len, bool is_write); 9351cca8265SJanosch Frank #define s390_cpu_pv_mem_read(cpu, offset, dest, len) \ 9361cca8265SJanosch Frank s390_cpu_pv_mem_rw(cpu, offset, dest, len, false) 9371cca8265SJanosch Frank #define s390_cpu_pv_mem_write(cpu, offset, dest, len) \ 9381cca8265SJanosch Frank s390_cpu_pv_mem_rw(cpu, offset, dest, len, true) 939c862bddbSDavid Hildenbrand 94074b4c74dSDavid Hildenbrand /* sigp.c */ 94174b4c74dSDavid Hildenbrand int s390_cpu_restart(S390CPU *cpu); 94274b4c74dSDavid Hildenbrand void s390_init_sigp(void); 94374b4c74dSDavid Hildenbrand 944e2b2a864SRichard Henderson /* helper.c */ 945e2b2a864SRichard Henderson void s390_cpu_set_psw(CPUS390XState *env, uint64_t mask, uint64_t addr); 946e2b2a864SRichard Henderson uint64_t s390_cpu_get_psw_mask(CPUS390XState *env); 94774b4c74dSDavid Hildenbrand 948c862bddbSDavid Hildenbrand /* outside of target/s390x/ */ 949c862bddbSDavid Hildenbrand S390CPU *s390_cpu_addr2state(uint16_t cpu_addr); 950c862bddbSDavid Hildenbrand 9514f7c64b3SRichard Henderson #include "exec/cpu-all.h" 9524f7c64b3SRichard Henderson 953fcf5ef2aSThomas Huth #endif 954