Alexander Graf | 10ec511 | 2009-12-05 12:44:21 +0100 | [diff] [blame] | 1 | /* |
| 2 | * S/390 helpers |
| 3 | * |
| 4 | * Copyright (c) 2009 Ulrich Hecht |
Alexander Graf | d5a4396 | 2011-03-23 10:58:07 +0100 | [diff] [blame] | 5 | * Copyright (c) 2011 Alexander Graf |
Alexander Graf | 10ec511 | 2009-12-05 12:44:21 +0100 | [diff] [blame] | 6 | * |
| 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 of the License, or (at your option) any later version. |
| 11 | * |
| 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. |
| 16 | * |
| 17 | * You should have received a copy of the GNU Lesser General Public |
Blue Swirl | 70539e1 | 2010-03-07 15:48:43 +0000 | [diff] [blame] | 18 | * License along with this library; if not, see <http://www.gnu.org/licenses/>. |
Alexander Graf | 10ec511 | 2009-12-05 12:44:21 +0100 | [diff] [blame] | 19 | */ |
| 20 | |
Alexander Graf | 10ec511 | 2009-12-05 12:44:21 +0100 | [diff] [blame] | 21 | #include "cpu.h" |
Paolo Bonzini | 022c62c | 2012-12-17 18:19:49 +0100 | [diff] [blame] | 22 | #include "exec/gdbstub.h" |
Paolo Bonzini | 1de7afc | 2012-12-17 18:20:00 +0100 | [diff] [blame] | 23 | #include "qemu/timer.h" |
Paolo Bonzini | f08b617 | 2014-03-28 19:42:10 +0100 | [diff] [blame] | 24 | #include "exec/cpu_ldst.h" |
Alexander Graf | ef81522 | 2011-10-07 09:51:50 +0200 | [diff] [blame] | 25 | #ifndef CONFIG_USER_ONLY |
Paolo Bonzini | 9c17d61 | 2012-12-17 18:20:04 +0100 | [diff] [blame] | 26 | #include "sysemu/sysemu.h" |
Alexander Graf | ef81522 | 2011-10-07 09:51:50 +0200 | [diff] [blame] | 27 | #endif |
Alexander Graf | 10ec511 | 2009-12-05 12:44:21 +0100 | [diff] [blame] | 28 | |
Alexander Graf | d5a4396 | 2011-03-23 10:58:07 +0100 | [diff] [blame] | 29 | //#define DEBUG_S390 |
| 30 | //#define DEBUG_S390_PTE |
| 31 | //#define DEBUG_S390_STDOUT |
| 32 | |
| 33 | #ifdef DEBUG_S390 |
| 34 | #ifdef DEBUG_S390_STDOUT |
| 35 | #define DPRINTF(fmt, ...) \ |
| 36 | do { fprintf(stderr, fmt, ## __VA_ARGS__); \ |
| 37 | qemu_log(fmt, ##__VA_ARGS__); } while (0) |
| 38 | #else |
| 39 | #define DPRINTF(fmt, ...) \ |
| 40 | do { qemu_log(fmt, ## __VA_ARGS__); } while (0) |
| 41 | #endif |
| 42 | #else |
| 43 | #define DPRINTF(fmt, ...) \ |
| 44 | do { } while (0) |
| 45 | #endif |
| 46 | |
| 47 | #ifdef DEBUG_S390_PTE |
| 48 | #define PTE_DPRINTF DPRINTF |
| 49 | #else |
| 50 | #define PTE_DPRINTF(fmt, ...) \ |
| 51 | do { } while (0) |
| 52 | #endif |
| 53 | |
| 54 | #ifndef CONFIG_USER_ONLY |
Andreas Färber | 8f22e0d | 2012-04-02 13:56:29 +0200 | [diff] [blame] | 55 | void s390x_tod_timer(void *opaque) |
Alexander Graf | d5a4396 | 2011-03-23 10:58:07 +0100 | [diff] [blame] | 56 | { |
Andreas Färber | b8ba679 | 2012-04-02 14:00:43 +0200 | [diff] [blame] | 57 | S390CPU *cpu = opaque; |
| 58 | CPUS390XState *env = &cpu->env; |
Alexander Graf | d5a4396 | 2011-03-23 10:58:07 +0100 | [diff] [blame] | 59 | |
| 60 | env->pending_int |= INTERRUPT_TOD; |
Andreas Färber | c3affe5 | 2013-01-18 15:03:43 +0100 | [diff] [blame] | 61 | cpu_interrupt(CPU(cpu), CPU_INTERRUPT_HARD); |
Alexander Graf | d5a4396 | 2011-03-23 10:58:07 +0100 | [diff] [blame] | 62 | } |
| 63 | |
Andreas Färber | 8f22e0d | 2012-04-02 13:56:29 +0200 | [diff] [blame] | 64 | void s390x_cpu_timer(void *opaque) |
Alexander Graf | d5a4396 | 2011-03-23 10:58:07 +0100 | [diff] [blame] | 65 | { |
Andreas Färber | b8ba679 | 2012-04-02 14:00:43 +0200 | [diff] [blame] | 66 | S390CPU *cpu = opaque; |
| 67 | CPUS390XState *env = &cpu->env; |
Alexander Graf | d5a4396 | 2011-03-23 10:58:07 +0100 | [diff] [blame] | 68 | |
| 69 | env->pending_int |= INTERRUPT_CPUTIMER; |
Andreas Färber | c3affe5 | 2013-01-18 15:03:43 +0100 | [diff] [blame] | 70 | cpu_interrupt(CPU(cpu), CPU_INTERRUPT_HARD); |
Alexander Graf | d5a4396 | 2011-03-23 10:58:07 +0100 | [diff] [blame] | 71 | } |
| 72 | #endif |
Alexander Graf | 10c339a | 2009-12-05 12:44:26 +0100 | [diff] [blame] | 73 | |
Andreas Färber | 564b863 | 2012-05-03 04:13:04 +0200 | [diff] [blame] | 74 | S390CPU *cpu_s390x_init(const char *cpu_model) |
Alexander Graf | 10ec511 | 2009-12-05 12:44:21 +0100 | [diff] [blame] | 75 | { |
Andreas Färber | 29e4bcb | 2012-04-02 11:39:23 +0200 | [diff] [blame] | 76 | S390CPU *cpu; |
Alexander Graf | 10ec511 | 2009-12-05 12:44:21 +0100 | [diff] [blame] | 77 | |
Andreas Färber | 29e4bcb | 2012-04-02 11:39:23 +0200 | [diff] [blame] | 78 | cpu = S390_CPU(object_new(TYPE_S390_CPU)); |
Andreas Färber | 1f13663 | 2013-01-16 04:00:41 +0100 | [diff] [blame] | 79 | |
| 80 | object_property_set_bool(OBJECT(cpu), true, "realized", NULL); |
| 81 | |
Andreas Färber | 564b863 | 2012-05-03 04:13:04 +0200 | [diff] [blame] | 82 | return cpu; |
Alexander Graf | 10ec511 | 2009-12-05 12:44:21 +0100 | [diff] [blame] | 83 | } |
| 84 | |
Alexander Graf | d5a4396 | 2011-03-23 10:58:07 +0100 | [diff] [blame] | 85 | #if defined(CONFIG_USER_ONLY) |
| 86 | |
Andreas Färber | 97a8ea5 | 2013-02-02 10:57:51 +0100 | [diff] [blame] | 87 | void s390_cpu_do_interrupt(CPUState *cs) |
Alexander Graf | d5a4396 | 2011-03-23 10:58:07 +0100 | [diff] [blame] | 88 | { |
Andreas Färber | 2710342 | 2013-08-26 08:31:06 +0200 | [diff] [blame] | 89 | cs->exception_index = -1; |
Alexander Graf | d5a4396 | 2011-03-23 10:58:07 +0100 | [diff] [blame] | 90 | } |
| 91 | |
Andreas Färber | 7510454 | 2013-08-26 03:01:33 +0200 | [diff] [blame] | 92 | int s390_cpu_handle_mmu_fault(CPUState *cs, vaddr address, |
| 93 | int rw, int mmu_idx) |
Alexander Graf | d5a4396 | 2011-03-23 10:58:07 +0100 | [diff] [blame] | 94 | { |
Andreas Färber | 7510454 | 2013-08-26 03:01:33 +0200 | [diff] [blame] | 95 | S390CPU *cpu = S390_CPU(cs); |
| 96 | |
Andreas Färber | 2710342 | 2013-08-26 08:31:06 +0200 | [diff] [blame] | 97 | cs->exception_index = EXCP_PGM; |
Andreas Färber | 7510454 | 2013-08-26 03:01:33 +0200 | [diff] [blame] | 98 | cpu->env.int_pgm_code = PGM_ADDRESSING; |
Richard Henderson | d5a103c | 2012-09-14 19:31:57 -0700 | [diff] [blame] | 99 | /* On real machines this value is dropped into LowMem. Since this |
| 100 | is userland, simply put this someplace that cpu_loop can find it. */ |
Andreas Färber | 7510454 | 2013-08-26 03:01:33 +0200 | [diff] [blame] | 101 | cpu->env.__excp_addr = address; |
Alexander Graf | d5a4396 | 2011-03-23 10:58:07 +0100 | [diff] [blame] | 102 | return 1; |
| 103 | } |
| 104 | |
Andreas Färber | b7e516c | 2012-05-05 15:43:31 +0200 | [diff] [blame] | 105 | #else /* !CONFIG_USER_ONLY */ |
Alexander Graf | 10c339a | 2009-12-05 12:44:26 +0100 | [diff] [blame] | 106 | |
Alexander Graf | d5a4396 | 2011-03-23 10:58:07 +0100 | [diff] [blame] | 107 | /* Ensure to exit the TB after this call! */ |
Blue Swirl | 71e4708 | 2012-09-02 07:33:30 +0000 | [diff] [blame] | 108 | static void trigger_pgm_exception(CPUS390XState *env, uint32_t code, |
Richard Henderson | d5a103c | 2012-09-14 19:31:57 -0700 | [diff] [blame] | 109 | uint32_t ilen) |
Alexander Graf | 10c339a | 2009-12-05 12:44:26 +0100 | [diff] [blame] | 110 | { |
Andreas Färber | 2710342 | 2013-08-26 08:31:06 +0200 | [diff] [blame] | 111 | CPUState *cs = CPU(s390_env_get_cpu(env)); |
| 112 | |
| 113 | cs->exception_index = EXCP_PGM; |
Alexander Graf | d5a4396 | 2011-03-23 10:58:07 +0100 | [diff] [blame] | 114 | env->int_pgm_code = code; |
Richard Henderson | d5a103c | 2012-09-14 19:31:57 -0700 | [diff] [blame] | 115 | env->int_pgm_ilen = ilen; |
Alexander Graf | d5a4396 | 2011-03-23 10:58:07 +0100 | [diff] [blame] | 116 | } |
Alexander Graf | 10c339a | 2009-12-05 12:44:26 +0100 | [diff] [blame] | 117 | |
Andreas Färber | a4e3ad1 | 2012-03-14 01:38:22 +0100 | [diff] [blame] | 118 | static int trans_bits(CPUS390XState *env, uint64_t mode) |
Alexander Graf | d5a4396 | 2011-03-23 10:58:07 +0100 | [diff] [blame] | 119 | { |
Andreas Färber | a47dddd | 2013-09-03 17:38:47 +0200 | [diff] [blame] | 120 | S390CPU *cpu = s390_env_get_cpu(env); |
Alexander Graf | d5a4396 | 2011-03-23 10:58:07 +0100 | [diff] [blame] | 121 | int bits = 0; |
Alexander Graf | 10c339a | 2009-12-05 12:44:26 +0100 | [diff] [blame] | 122 | |
Alexander Graf | d5a4396 | 2011-03-23 10:58:07 +0100 | [diff] [blame] | 123 | switch (mode) { |
| 124 | case PSW_ASC_PRIMARY: |
| 125 | bits = 1; |
| 126 | break; |
| 127 | case PSW_ASC_SECONDARY: |
| 128 | bits = 2; |
| 129 | break; |
| 130 | case PSW_ASC_HOME: |
| 131 | bits = 3; |
| 132 | break; |
| 133 | default: |
Andreas Färber | a47dddd | 2013-09-03 17:38:47 +0200 | [diff] [blame] | 134 | cpu_abort(CPU(cpu), "unknown asc mode\n"); |
Alexander Graf | d5a4396 | 2011-03-23 10:58:07 +0100 | [diff] [blame] | 135 | break; |
| 136 | } |
Alexander Graf | 10c339a | 2009-12-05 12:44:26 +0100 | [diff] [blame] | 137 | |
Alexander Graf | d5a4396 | 2011-03-23 10:58:07 +0100 | [diff] [blame] | 138 | return bits; |
| 139 | } |
| 140 | |
Blue Swirl | 71e4708 | 2012-09-02 07:33:30 +0000 | [diff] [blame] | 141 | static void trigger_prot_fault(CPUS390XState *env, target_ulong vaddr, |
| 142 | uint64_t mode) |
Alexander Graf | d5a4396 | 2011-03-23 10:58:07 +0100 | [diff] [blame] | 143 | { |
Andreas Färber | 2efc6be | 2014-03-09 19:40:08 +0100 | [diff] [blame] | 144 | CPUState *cs = CPU(s390_env_get_cpu(env)); |
Richard Henderson | d5a103c | 2012-09-14 19:31:57 -0700 | [diff] [blame] | 145 | int ilen = ILEN_LATER_INC; |
Alexander Graf | d5a4396 | 2011-03-23 10:58:07 +0100 | [diff] [blame] | 146 | int bits = trans_bits(env, mode) | 4; |
| 147 | |
Blue Swirl | 71e4708 | 2012-09-02 07:33:30 +0000 | [diff] [blame] | 148 | DPRINTF("%s: vaddr=%016" PRIx64 " bits=%d\n", __func__, vaddr, bits); |
Alexander Graf | d5a4396 | 2011-03-23 10:58:07 +0100 | [diff] [blame] | 149 | |
Edgar E. Iglesias | f606604 | 2013-11-28 00:11:44 +0100 | [diff] [blame] | 150 | stq_phys(cs->as, |
| 151 | env->psa + offsetof(LowCore, trans_exc_code), vaddr | bits); |
Richard Henderson | d5a103c | 2012-09-14 19:31:57 -0700 | [diff] [blame] | 152 | trigger_pgm_exception(env, PGM_PROTECTION, ilen); |
Alexander Graf | d5a4396 | 2011-03-23 10:58:07 +0100 | [diff] [blame] | 153 | } |
| 154 | |
Blue Swirl | 71e4708 | 2012-09-02 07:33:30 +0000 | [diff] [blame] | 155 | static void trigger_page_fault(CPUS390XState *env, target_ulong vaddr, |
| 156 | uint32_t type, uint64_t asc, int rw) |
Alexander Graf | d5a4396 | 2011-03-23 10:58:07 +0100 | [diff] [blame] | 157 | { |
Andreas Färber | 2efc6be | 2014-03-09 19:40:08 +0100 | [diff] [blame] | 158 | CPUState *cs = CPU(s390_env_get_cpu(env)); |
Richard Henderson | d5a103c | 2012-09-14 19:31:57 -0700 | [diff] [blame] | 159 | int ilen = ILEN_LATER; |
Alexander Graf | d5a4396 | 2011-03-23 10:58:07 +0100 | [diff] [blame] | 160 | int bits = trans_bits(env, asc); |
| 161 | |
Richard Henderson | d5a103c | 2012-09-14 19:31:57 -0700 | [diff] [blame] | 162 | /* Code accesses have an undefined ilc. */ |
Alexander Graf | d5a4396 | 2011-03-23 10:58:07 +0100 | [diff] [blame] | 163 | if (rw == 2) { |
Richard Henderson | d5a103c | 2012-09-14 19:31:57 -0700 | [diff] [blame] | 164 | ilen = 2; |
Alexander Graf | d5a4396 | 2011-03-23 10:58:07 +0100 | [diff] [blame] | 165 | } |
| 166 | |
Blue Swirl | 71e4708 | 2012-09-02 07:33:30 +0000 | [diff] [blame] | 167 | DPRINTF("%s: vaddr=%016" PRIx64 " bits=%d\n", __func__, vaddr, bits); |
Alexander Graf | d5a4396 | 2011-03-23 10:58:07 +0100 | [diff] [blame] | 168 | |
Edgar E. Iglesias | f606604 | 2013-11-28 00:11:44 +0100 | [diff] [blame] | 169 | stq_phys(cs->as, |
| 170 | env->psa + offsetof(LowCore, trans_exc_code), vaddr | bits); |
Richard Henderson | d5a103c | 2012-09-14 19:31:57 -0700 | [diff] [blame] | 171 | trigger_pgm_exception(env, type, ilen); |
Alexander Graf | d5a4396 | 2011-03-23 10:58:07 +0100 | [diff] [blame] | 172 | } |
| 173 | |
Thomas Huth | 422f32c | 2013-09-03 13:31:36 +0200 | [diff] [blame] | 174 | /** |
| 175 | * Translate real address to absolute (= physical) |
| 176 | * address by taking care of the prefix mapping. |
| 177 | */ |
| 178 | static target_ulong mmu_real2abs(CPUS390XState *env, target_ulong raddr) |
| 179 | { |
| 180 | if (raddr < 0x2000) { |
| 181 | return raddr + env->psa; /* Map the lowcore. */ |
| 182 | } else if (raddr >= env->psa && raddr < env->psa + 0x2000) { |
| 183 | return raddr - env->psa; /* Map the 0 page. */ |
| 184 | } |
| 185 | return raddr; |
| 186 | } |
| 187 | |
Thomas Huth | c440020 | 2014-04-25 15:37:19 +0200 | [diff] [blame] | 188 | /* Decode page table entry (normal 4KB page) */ |
| 189 | static int mmu_translate_pte(CPUS390XState *env, target_ulong vaddr, |
| 190 | uint64_t asc, uint64_t asce, |
| 191 | target_ulong *raddr, int *flags, int rw) |
| 192 | { |
| 193 | if (asce & _PAGE_INVALID) { |
| 194 | DPRINTF("%s: PTE=0x%" PRIx64 " invalid\n", __func__, asce); |
| 195 | trigger_page_fault(env, vaddr, PGM_PAGE_TRANS, asc, rw); |
| 196 | return -1; |
| 197 | } |
| 198 | |
| 199 | if (asce & _PAGE_RO) { |
| 200 | *flags &= ~PAGE_WRITE; |
| 201 | } |
| 202 | |
| 203 | *raddr = asce & _ASCE_ORIGIN; |
| 204 | |
| 205 | PTE_DPRINTF("%s: PTE=0x%" PRIx64 "\n", __func__, asce); |
| 206 | |
| 207 | return 0; |
| 208 | } |
| 209 | |
| 210 | /* Decode EDAT1 segment frame absolute address (1MB page) */ |
| 211 | static int mmu_translate_sfaa(CPUS390XState *env, target_ulong vaddr, |
| 212 | uint64_t asc, uint64_t asce, target_ulong *raddr, |
| 213 | int *flags, int rw) |
| 214 | { |
| 215 | if (asce & _SEGMENT_ENTRY_INV) { |
| 216 | DPRINTF("%s: SEG=0x%" PRIx64 " invalid\n", __func__, asce); |
| 217 | trigger_page_fault(env, vaddr, PGM_SEGMENT_TRANS, asc, rw); |
| 218 | return -1; |
| 219 | } |
| 220 | |
| 221 | if (asce & _SEGMENT_ENTRY_RO) { |
| 222 | *flags &= ~PAGE_WRITE; |
| 223 | } |
| 224 | |
| 225 | *raddr = (asce & 0xfffffffffff00000ULL) | (vaddr & 0xfffff); |
| 226 | |
| 227 | PTE_DPRINTF("%s: SEG=0x%" PRIx64 "\n", __func__, asce); |
| 228 | |
| 229 | return 0; |
| 230 | } |
| 231 | |
Blue Swirl | 71e4708 | 2012-09-02 07:33:30 +0000 | [diff] [blame] | 232 | static int mmu_translate_asce(CPUS390XState *env, target_ulong vaddr, |
| 233 | uint64_t asc, uint64_t asce, int level, |
| 234 | target_ulong *raddr, int *flags, int rw) |
Alexander Graf | d5a4396 | 2011-03-23 10:58:07 +0100 | [diff] [blame] | 235 | { |
Andreas Färber | 2efc6be | 2014-03-09 19:40:08 +0100 | [diff] [blame] | 236 | CPUState *cs = CPU(s390_env_get_cpu(env)); |
Alexander Graf | d5a4396 | 2011-03-23 10:58:07 +0100 | [diff] [blame] | 237 | uint64_t offs = 0; |
| 238 | uint64_t origin; |
| 239 | uint64_t new_asce; |
| 240 | |
Blue Swirl | 71e4708 | 2012-09-02 07:33:30 +0000 | [diff] [blame] | 241 | PTE_DPRINTF("%s: 0x%" PRIx64 "\n", __func__, asce); |
Alexander Graf | d5a4396 | 2011-03-23 10:58:07 +0100 | [diff] [blame] | 242 | |
| 243 | if (((level != _ASCE_TYPE_SEGMENT) && (asce & _REGION_ENTRY_INV)) || |
| 244 | ((level == _ASCE_TYPE_SEGMENT) && (asce & _SEGMENT_ENTRY_INV))) { |
| 245 | /* XXX different regions have different faults */ |
Blue Swirl | 71e4708 | 2012-09-02 07:33:30 +0000 | [diff] [blame] | 246 | DPRINTF("%s: invalid region\n", __func__); |
Alexander Graf | d5a4396 | 2011-03-23 10:58:07 +0100 | [diff] [blame] | 247 | trigger_page_fault(env, vaddr, PGM_SEGMENT_TRANS, asc, rw); |
| 248 | return -1; |
| 249 | } |
| 250 | |
| 251 | if ((level <= _ASCE_TYPE_MASK) && ((asce & _ASCE_TYPE_MASK) != level)) { |
| 252 | trigger_page_fault(env, vaddr, PGM_TRANS_SPEC, asc, rw); |
| 253 | return -1; |
| 254 | } |
| 255 | |
| 256 | if (asce & _ASCE_REAL_SPACE) { |
| 257 | /* direct mapping */ |
| 258 | |
| 259 | *raddr = vaddr; |
| 260 | return 0; |
| 261 | } |
| 262 | |
| 263 | origin = asce & _ASCE_ORIGIN; |
| 264 | |
| 265 | switch (level) { |
| 266 | case _ASCE_TYPE_REGION1 + 4: |
| 267 | offs = (vaddr >> 50) & 0x3ff8; |
| 268 | break; |
| 269 | case _ASCE_TYPE_REGION1: |
| 270 | offs = (vaddr >> 39) & 0x3ff8; |
| 271 | break; |
| 272 | case _ASCE_TYPE_REGION2: |
| 273 | offs = (vaddr >> 28) & 0x3ff8; |
| 274 | break; |
| 275 | case _ASCE_TYPE_REGION3: |
| 276 | offs = (vaddr >> 17) & 0x3ff8; |
| 277 | break; |
| 278 | case _ASCE_TYPE_SEGMENT: |
| 279 | offs = (vaddr >> 9) & 0x07f8; |
| 280 | origin = asce & _SEGMENT_ENTRY_ORIGIN; |
| 281 | break; |
| 282 | } |
| 283 | |
| 284 | /* XXX region protection flags */ |
| 285 | /* *flags &= ~PAGE_WRITE */ |
| 286 | |
Edgar E. Iglesias | 2c17449 | 2013-12-17 14:05:40 +1000 | [diff] [blame] | 287 | new_asce = ldq_phys(cs->as, origin + offs); |
Alexander Graf | d5a4396 | 2011-03-23 10:58:07 +0100 | [diff] [blame] | 288 | PTE_DPRINTF("%s: 0x%" PRIx64 " + 0x%" PRIx64 " => 0x%016" PRIx64 "\n", |
Blue Swirl | 71e4708 | 2012-09-02 07:33:30 +0000 | [diff] [blame] | 289 | __func__, origin, offs, new_asce); |
Alexander Graf | d5a4396 | 2011-03-23 10:58:07 +0100 | [diff] [blame] | 290 | |
Thomas Huth | c440020 | 2014-04-25 15:37:19 +0200 | [diff] [blame] | 291 | if (level == _ASCE_TYPE_SEGMENT) { |
| 292 | /* 4KB page */ |
| 293 | return mmu_translate_pte(env, vaddr, asc, new_asce, raddr, flags, rw); |
| 294 | } else if (level - 4 == _ASCE_TYPE_SEGMENT && |
| 295 | (new_asce & _SEGMENT_ENTRY_FC) && (env->cregs[0] & CR0_EDAT)) { |
| 296 | /* 1MB page */ |
| 297 | return mmu_translate_sfaa(env, vaddr, asc, new_asce, raddr, flags, rw); |
| 298 | } else { |
Alexander Graf | d5a4396 | 2011-03-23 10:58:07 +0100 | [diff] [blame] | 299 | /* yet another region */ |
| 300 | return mmu_translate_asce(env, vaddr, asc, new_asce, level - 4, raddr, |
| 301 | flags, rw); |
| 302 | } |
Alexander Graf | 10c339a | 2009-12-05 12:44:26 +0100 | [diff] [blame] | 303 | } |
Alexander Graf | d5a4396 | 2011-03-23 10:58:07 +0100 | [diff] [blame] | 304 | |
Blue Swirl | 71e4708 | 2012-09-02 07:33:30 +0000 | [diff] [blame] | 305 | static int mmu_translate_asc(CPUS390XState *env, target_ulong vaddr, |
| 306 | uint64_t asc, target_ulong *raddr, int *flags, |
| 307 | int rw) |
Alexander Graf | d5a4396 | 2011-03-23 10:58:07 +0100 | [diff] [blame] | 308 | { |
| 309 | uint64_t asce = 0; |
| 310 | int level, new_level; |
| 311 | int r; |
| 312 | |
| 313 | switch (asc) { |
| 314 | case PSW_ASC_PRIMARY: |
Blue Swirl | 71e4708 | 2012-09-02 07:33:30 +0000 | [diff] [blame] | 315 | PTE_DPRINTF("%s: asc=primary\n", __func__); |
Alexander Graf | d5a4396 | 2011-03-23 10:58:07 +0100 | [diff] [blame] | 316 | asce = env->cregs[1]; |
| 317 | break; |
| 318 | case PSW_ASC_SECONDARY: |
Blue Swirl | 71e4708 | 2012-09-02 07:33:30 +0000 | [diff] [blame] | 319 | PTE_DPRINTF("%s: asc=secondary\n", __func__); |
Alexander Graf | d5a4396 | 2011-03-23 10:58:07 +0100 | [diff] [blame] | 320 | asce = env->cregs[7]; |
| 321 | break; |
| 322 | case PSW_ASC_HOME: |
Blue Swirl | 71e4708 | 2012-09-02 07:33:30 +0000 | [diff] [blame] | 323 | PTE_DPRINTF("%s: asc=home\n", __func__); |
Alexander Graf | d5a4396 | 2011-03-23 10:58:07 +0100 | [diff] [blame] | 324 | asce = env->cregs[13]; |
| 325 | break; |
| 326 | } |
| 327 | |
| 328 | switch (asce & _ASCE_TYPE_MASK) { |
| 329 | case _ASCE_TYPE_REGION1: |
| 330 | break; |
| 331 | case _ASCE_TYPE_REGION2: |
| 332 | if (vaddr & 0xffe0000000000000ULL) { |
| 333 | DPRINTF("%s: vaddr doesn't fit 0x%16" PRIx64 |
Blue Swirl | 71e4708 | 2012-09-02 07:33:30 +0000 | [diff] [blame] | 334 | " 0xffe0000000000000ULL\n", __func__, vaddr); |
Alexander Graf | d5a4396 | 2011-03-23 10:58:07 +0100 | [diff] [blame] | 335 | trigger_page_fault(env, vaddr, PGM_TRANS_SPEC, asc, rw); |
| 336 | return -1; |
| 337 | } |
| 338 | break; |
| 339 | case _ASCE_TYPE_REGION3: |
| 340 | if (vaddr & 0xfffffc0000000000ULL) { |
| 341 | DPRINTF("%s: vaddr doesn't fit 0x%16" PRIx64 |
Blue Swirl | 71e4708 | 2012-09-02 07:33:30 +0000 | [diff] [blame] | 342 | " 0xfffffc0000000000ULL\n", __func__, vaddr); |
Alexander Graf | d5a4396 | 2011-03-23 10:58:07 +0100 | [diff] [blame] | 343 | trigger_page_fault(env, vaddr, PGM_TRANS_SPEC, asc, rw); |
| 344 | return -1; |
| 345 | } |
| 346 | break; |
| 347 | case _ASCE_TYPE_SEGMENT: |
| 348 | if (vaddr & 0xffffffff80000000ULL) { |
| 349 | DPRINTF("%s: vaddr doesn't fit 0x%16" PRIx64 |
Blue Swirl | 71e4708 | 2012-09-02 07:33:30 +0000 | [diff] [blame] | 350 | " 0xffffffff80000000ULL\n", __func__, vaddr); |
Alexander Graf | d5a4396 | 2011-03-23 10:58:07 +0100 | [diff] [blame] | 351 | trigger_page_fault(env, vaddr, PGM_TRANS_SPEC, asc, rw); |
| 352 | return -1; |
| 353 | } |
| 354 | break; |
| 355 | } |
| 356 | |
| 357 | /* fake level above current */ |
| 358 | level = asce & _ASCE_TYPE_MASK; |
| 359 | new_level = level + 4; |
| 360 | asce = (asce & ~_ASCE_TYPE_MASK) | (new_level & _ASCE_TYPE_MASK); |
| 361 | |
| 362 | r = mmu_translate_asce(env, vaddr, asc, asce, new_level, raddr, flags, rw); |
| 363 | |
| 364 | if ((rw == 1) && !(*flags & PAGE_WRITE)) { |
| 365 | trigger_prot_fault(env, vaddr, asc); |
| 366 | return -1; |
| 367 | } |
| 368 | |
| 369 | return r; |
| 370 | } |
| 371 | |
Andreas Färber | a4e3ad1 | 2012-03-14 01:38:22 +0100 | [diff] [blame] | 372 | int mmu_translate(CPUS390XState *env, target_ulong vaddr, int rw, uint64_t asc, |
Alexander Graf | d5a4396 | 2011-03-23 10:58:07 +0100 | [diff] [blame] | 373 | target_ulong *raddr, int *flags) |
| 374 | { |
| 375 | int r = -1; |
Alexander Graf | b995913 | 2011-07-14 11:49:08 +0200 | [diff] [blame] | 376 | uint8_t *sk; |
Alexander Graf | d5a4396 | 2011-03-23 10:58:07 +0100 | [diff] [blame] | 377 | |
| 378 | *flags = PAGE_READ | PAGE_WRITE | PAGE_EXEC; |
| 379 | vaddr &= TARGET_PAGE_MASK; |
| 380 | |
| 381 | if (!(env->psw.mask & PSW_MASK_DAT)) { |
| 382 | *raddr = vaddr; |
| 383 | r = 0; |
| 384 | goto out; |
| 385 | } |
| 386 | |
| 387 | switch (asc) { |
| 388 | case PSW_ASC_PRIMARY: |
| 389 | case PSW_ASC_HOME: |
| 390 | r = mmu_translate_asc(env, vaddr, asc, raddr, flags, rw); |
| 391 | break; |
| 392 | case PSW_ASC_SECONDARY: |
| 393 | /* |
| 394 | * Instruction: Primary |
| 395 | * Data: Secondary |
| 396 | */ |
| 397 | if (rw == 2) { |
| 398 | r = mmu_translate_asc(env, vaddr, PSW_ASC_PRIMARY, raddr, flags, |
| 399 | rw); |
| 400 | *flags &= ~(PAGE_READ | PAGE_WRITE); |
| 401 | } else { |
| 402 | r = mmu_translate_asc(env, vaddr, PSW_ASC_SECONDARY, raddr, flags, |
| 403 | rw); |
| 404 | *flags &= ~(PAGE_EXEC); |
| 405 | } |
| 406 | break; |
| 407 | case PSW_ASC_ACCREG: |
| 408 | default: |
| 409 | hw_error("guest switched to unknown asc mode\n"); |
| 410 | break; |
| 411 | } |
| 412 | |
Blue Swirl | 71e4708 | 2012-09-02 07:33:30 +0000 | [diff] [blame] | 413 | out: |
Alexander Graf | d5a4396 | 2011-03-23 10:58:07 +0100 | [diff] [blame] | 414 | /* Convert real address -> absolute address */ |
Thomas Huth | 422f32c | 2013-09-03 13:31:36 +0200 | [diff] [blame] | 415 | *raddr = mmu_real2abs(env, *raddr); |
Alexander Graf | d5a4396 | 2011-03-23 10:58:07 +0100 | [diff] [blame] | 416 | |
Alexander Graf | b995913 | 2011-07-14 11:49:08 +0200 | [diff] [blame] | 417 | if (*raddr <= ram_size) { |
| 418 | sk = &env->storage_keys[*raddr / TARGET_PAGE_SIZE]; |
| 419 | if (*flags & PAGE_READ) { |
| 420 | *sk |= SK_R; |
| 421 | } |
| 422 | |
| 423 | if (*flags & PAGE_WRITE) { |
| 424 | *sk |= SK_C; |
| 425 | } |
| 426 | } |
| 427 | |
Alexander Graf | d5a4396 | 2011-03-23 10:58:07 +0100 | [diff] [blame] | 428 | return r; |
| 429 | } |
| 430 | |
Andreas Färber | 7510454 | 2013-08-26 03:01:33 +0200 | [diff] [blame] | 431 | int s390_cpu_handle_mmu_fault(CPUState *cs, vaddr orig_vaddr, |
| 432 | int rw, int mmu_idx) |
Alexander Graf | d5a4396 | 2011-03-23 10:58:07 +0100 | [diff] [blame] | 433 | { |
Andreas Färber | 7510454 | 2013-08-26 03:01:33 +0200 | [diff] [blame] | 434 | S390CPU *cpu = S390_CPU(cs); |
| 435 | CPUS390XState *env = &cpu->env; |
Alexander Graf | d5a4396 | 2011-03-23 10:58:07 +0100 | [diff] [blame] | 436 | uint64_t asc = env->psw.mask & PSW_MASK_ASC; |
| 437 | target_ulong vaddr, raddr; |
| 438 | int prot; |
| 439 | |
Andreas Färber | 7510454 | 2013-08-26 03:01:33 +0200 | [diff] [blame] | 440 | DPRINTF("%s: address 0x%" VADDR_PRIx " rw %d mmu_idx %d\n", |
Andreas Färber | 07cc7d1 | 2013-01-27 03:32:03 +0000 | [diff] [blame] | 441 | __func__, orig_vaddr, rw, mmu_idx); |
Alexander Graf | d5a4396 | 2011-03-23 10:58:07 +0100 | [diff] [blame] | 442 | |
Blue Swirl | 71e4708 | 2012-09-02 07:33:30 +0000 | [diff] [blame] | 443 | orig_vaddr &= TARGET_PAGE_MASK; |
| 444 | vaddr = orig_vaddr; |
Alexander Graf | d5a4396 | 2011-03-23 10:58:07 +0100 | [diff] [blame] | 445 | |
| 446 | /* 31-Bit mode */ |
| 447 | if (!(env->psw.mask & PSW_MASK_64)) { |
| 448 | vaddr &= 0x7fffffff; |
| 449 | } |
| 450 | |
| 451 | if (mmu_translate(env, vaddr, rw, asc, &raddr, &prot)) { |
| 452 | /* Translation ended in exception */ |
| 453 | return 1; |
| 454 | } |
| 455 | |
| 456 | /* check out of RAM access */ |
| 457 | if (raddr > (ram_size + virtio_size)) { |
Andreas Färber | a6f921b | 2013-01-27 03:32:04 +0000 | [diff] [blame] | 458 | DPRINTF("%s: raddr %" PRIx64 " > ram_size %" PRIx64 "\n", __func__, |
| 459 | (uint64_t)raddr, (uint64_t)ram_size); |
Richard Henderson | d5a103c | 2012-09-14 19:31:57 -0700 | [diff] [blame] | 460 | trigger_pgm_exception(env, PGM_ADDRESSING, ILEN_LATER); |
Alexander Graf | d5a4396 | 2011-03-23 10:58:07 +0100 | [diff] [blame] | 461 | return 1; |
| 462 | } |
| 463 | |
Blue Swirl | 71e4708 | 2012-09-02 07:33:30 +0000 | [diff] [blame] | 464 | DPRINTF("%s: set tlb %" PRIx64 " -> %" PRIx64 " (%x)\n", __func__, |
Alexander Graf | d5a4396 | 2011-03-23 10:58:07 +0100 | [diff] [blame] | 465 | (uint64_t)vaddr, (uint64_t)raddr, prot); |
| 466 | |
Andreas Färber | 0c591eb | 2013-09-03 13:59:37 +0200 | [diff] [blame] | 467 | tlb_set_page(cs, orig_vaddr, raddr, prot, |
Alexander Graf | d5a4396 | 2011-03-23 10:58:07 +0100 | [diff] [blame] | 468 | mmu_idx, TARGET_PAGE_SIZE); |
| 469 | |
| 470 | return 0; |
| 471 | } |
| 472 | |
Andreas Färber | 00b941e | 2013-06-29 18:55:54 +0200 | [diff] [blame] | 473 | hwaddr s390_cpu_get_phys_page_debug(CPUState *cs, vaddr vaddr) |
Alexander Graf | d5a4396 | 2011-03-23 10:58:07 +0100 | [diff] [blame] | 474 | { |
Andreas Färber | 00b941e | 2013-06-29 18:55:54 +0200 | [diff] [blame] | 475 | S390CPU *cpu = S390_CPU(cs); |
| 476 | CPUS390XState *env = &cpu->env; |
Alexander Graf | d5a4396 | 2011-03-23 10:58:07 +0100 | [diff] [blame] | 477 | target_ulong raddr; |
| 478 | int prot = PAGE_READ | PAGE_WRITE | PAGE_EXEC; |
Andreas Färber | 2710342 | 2013-08-26 08:31:06 +0200 | [diff] [blame] | 479 | int old_exc = cs->exception_index; |
Alexander Graf | d5a4396 | 2011-03-23 10:58:07 +0100 | [diff] [blame] | 480 | uint64_t asc = env->psw.mask & PSW_MASK_ASC; |
| 481 | |
| 482 | /* 31-Bit mode */ |
| 483 | if (!(env->psw.mask & PSW_MASK_64)) { |
| 484 | vaddr &= 0x7fffffff; |
| 485 | } |
| 486 | |
| 487 | mmu_translate(env, vaddr, 2, asc, &raddr, &prot); |
Andreas Färber | 2710342 | 2013-08-26 08:31:06 +0200 | [diff] [blame] | 488 | cs->exception_index = old_exc; |
Alexander Graf | d5a4396 | 2011-03-23 10:58:07 +0100 | [diff] [blame] | 489 | |
| 490 | return raddr; |
| 491 | } |
| 492 | |
David Hildenbrand | 770a637 | 2012-09-03 13:09:10 +0200 | [diff] [blame] | 493 | hwaddr s390_cpu_get_phys_addr_debug(CPUState *cs, vaddr vaddr) |
| 494 | { |
| 495 | hwaddr phys_addr; |
| 496 | target_ulong page; |
| 497 | |
| 498 | page = vaddr & TARGET_PAGE_MASK; |
| 499 | phys_addr = cpu_get_phys_page_debug(cs, page); |
| 500 | phys_addr += (vaddr & ~TARGET_PAGE_MASK); |
| 501 | |
| 502 | return phys_addr; |
| 503 | } |
| 504 | |
Andreas Färber | a4e3ad1 | 2012-03-14 01:38:22 +0100 | [diff] [blame] | 505 | void load_psw(CPUS390XState *env, uint64_t mask, uint64_t addr) |
Alexander Graf | d5a4396 | 2011-03-23 10:58:07 +0100 | [diff] [blame] | 506 | { |
Alexander Graf | d5a4396 | 2011-03-23 10:58:07 +0100 | [diff] [blame] | 507 | env->psw.addr = addr; |
| 508 | env->psw.mask = mask; |
Richard Henderson | 51855ec | 2012-09-24 12:06:15 -0700 | [diff] [blame] | 509 | env->cc_op = (mask >> 44) & 3; |
David Hildenbrand | eb24f7c | 2014-09-30 10:57:29 +0200 | [diff] [blame] | 510 | |
| 511 | if (mask & PSW_MASK_WAIT) { |
| 512 | S390CPU *cpu = s390_env_get_cpu(env); |
| 513 | if (s390_cpu_halt(cpu) == 0) { |
| 514 | #ifndef CONFIG_USER_ONLY |
| 515 | qemu_system_shutdown_request(); |
| 516 | #endif |
| 517 | } |
| 518 | } |
Alexander Graf | d5a4396 | 2011-03-23 10:58:07 +0100 | [diff] [blame] | 519 | } |
| 520 | |
Andreas Färber | a4e3ad1 | 2012-03-14 01:38:22 +0100 | [diff] [blame] | 521 | static uint64_t get_psw_mask(CPUS390XState *env) |
Alexander Graf | d5a4396 | 2011-03-23 10:58:07 +0100 | [diff] [blame] | 522 | { |
Richard Henderson | 51855ec | 2012-09-24 12:06:15 -0700 | [diff] [blame] | 523 | uint64_t r; |
Alexander Graf | d5a4396 | 2011-03-23 10:58:07 +0100 | [diff] [blame] | 524 | |
| 525 | env->cc_op = calc_cc(env, env->cc_op, env->cc_src, env->cc_dst, env->cc_vr); |
| 526 | |
Richard Henderson | 51855ec | 2012-09-24 12:06:15 -0700 | [diff] [blame] | 527 | r = env->psw.mask; |
| 528 | r &= ~PSW_MASK_CC; |
Alexander Graf | d5a4396 | 2011-03-23 10:58:07 +0100 | [diff] [blame] | 529 | assert(!(env->cc_op & ~3)); |
Richard Henderson | 51855ec | 2012-09-24 12:06:15 -0700 | [diff] [blame] | 530 | r |= (uint64_t)env->cc_op << 44; |
Alexander Graf | d5a4396 | 2011-03-23 10:58:07 +0100 | [diff] [blame] | 531 | |
| 532 | return r; |
| 533 | } |
| 534 | |
Cornelia Huck | 4782a23 | 2013-01-24 02:28:01 +0000 | [diff] [blame] | 535 | static LowCore *cpu_map_lowcore(CPUS390XState *env) |
| 536 | { |
Andreas Färber | a47dddd | 2013-09-03 17:38:47 +0200 | [diff] [blame] | 537 | S390CPU *cpu = s390_env_get_cpu(env); |
Cornelia Huck | 4782a23 | 2013-01-24 02:28:01 +0000 | [diff] [blame] | 538 | LowCore *lowcore; |
| 539 | hwaddr len = sizeof(LowCore); |
| 540 | |
| 541 | lowcore = cpu_physical_memory_map(env->psa, &len, 1); |
| 542 | |
| 543 | if (len < sizeof(LowCore)) { |
Andreas Färber | a47dddd | 2013-09-03 17:38:47 +0200 | [diff] [blame] | 544 | cpu_abort(CPU(cpu), "Could not map lowcore\n"); |
Cornelia Huck | 4782a23 | 2013-01-24 02:28:01 +0000 | [diff] [blame] | 545 | } |
| 546 | |
| 547 | return lowcore; |
| 548 | } |
| 549 | |
| 550 | static void cpu_unmap_lowcore(LowCore *lowcore) |
| 551 | { |
| 552 | cpu_physical_memory_unmap(lowcore, sizeof(LowCore), 1, sizeof(LowCore)); |
| 553 | } |
| 554 | |
Cornelia Huck | 38322ed | 2013-01-24 02:28:02 +0000 | [diff] [blame] | 555 | void *s390_cpu_physical_memory_map(CPUS390XState *env, hwaddr addr, hwaddr *len, |
| 556 | int is_write) |
| 557 | { |
| 558 | hwaddr start = addr; |
| 559 | |
| 560 | /* Mind the prefix area. */ |
| 561 | if (addr < 8192) { |
| 562 | /* Map the lowcore. */ |
| 563 | start += env->psa; |
| 564 | *len = MIN(*len, 8192 - addr); |
| 565 | } else if ((addr >= env->psa) && (addr < env->psa + 8192)) { |
| 566 | /* Map the 0 page. */ |
| 567 | start -= env->psa; |
| 568 | *len = MIN(*len, 8192 - start); |
| 569 | } |
| 570 | |
| 571 | return cpu_physical_memory_map(start, len, is_write); |
| 572 | } |
| 573 | |
| 574 | void s390_cpu_physical_memory_unmap(CPUS390XState *env, void *addr, hwaddr len, |
| 575 | int is_write) |
| 576 | { |
| 577 | cpu_physical_memory_unmap(addr, len, is_write, len); |
| 578 | } |
| 579 | |
Andreas Färber | a4e3ad1 | 2012-03-14 01:38:22 +0100 | [diff] [blame] | 580 | static void do_svc_interrupt(CPUS390XState *env) |
Alexander Graf | d5a4396 | 2011-03-23 10:58:07 +0100 | [diff] [blame] | 581 | { |
| 582 | uint64_t mask, addr; |
| 583 | LowCore *lowcore; |
Alexander Graf | d5a4396 | 2011-03-23 10:58:07 +0100 | [diff] [blame] | 584 | |
Cornelia Huck | 4782a23 | 2013-01-24 02:28:01 +0000 | [diff] [blame] | 585 | lowcore = cpu_map_lowcore(env); |
Alexander Graf | d5a4396 | 2011-03-23 10:58:07 +0100 | [diff] [blame] | 586 | |
| 587 | lowcore->svc_code = cpu_to_be16(env->int_svc_code); |
Richard Henderson | d5a103c | 2012-09-14 19:31:57 -0700 | [diff] [blame] | 588 | lowcore->svc_ilen = cpu_to_be16(env->int_svc_ilen); |
Alexander Graf | d5a4396 | 2011-03-23 10:58:07 +0100 | [diff] [blame] | 589 | lowcore->svc_old_psw.mask = cpu_to_be64(get_psw_mask(env)); |
Richard Henderson | d5a103c | 2012-09-14 19:31:57 -0700 | [diff] [blame] | 590 | lowcore->svc_old_psw.addr = cpu_to_be64(env->psw.addr + env->int_svc_ilen); |
Alexander Graf | d5a4396 | 2011-03-23 10:58:07 +0100 | [diff] [blame] | 591 | mask = be64_to_cpu(lowcore->svc_new_psw.mask); |
| 592 | addr = be64_to_cpu(lowcore->svc_new_psw.addr); |
| 593 | |
Cornelia Huck | 4782a23 | 2013-01-24 02:28:01 +0000 | [diff] [blame] | 594 | cpu_unmap_lowcore(lowcore); |
Alexander Graf | d5a4396 | 2011-03-23 10:58:07 +0100 | [diff] [blame] | 595 | |
| 596 | load_psw(env, mask, addr); |
| 597 | } |
| 598 | |
Andreas Färber | a4e3ad1 | 2012-03-14 01:38:22 +0100 | [diff] [blame] | 599 | static void do_program_interrupt(CPUS390XState *env) |
Alexander Graf | d5a4396 | 2011-03-23 10:58:07 +0100 | [diff] [blame] | 600 | { |
| 601 | uint64_t mask, addr; |
| 602 | LowCore *lowcore; |
Richard Henderson | d5a103c | 2012-09-14 19:31:57 -0700 | [diff] [blame] | 603 | int ilen = env->int_pgm_ilen; |
Alexander Graf | d5a4396 | 2011-03-23 10:58:07 +0100 | [diff] [blame] | 604 | |
Richard Henderson | d5a103c | 2012-09-14 19:31:57 -0700 | [diff] [blame] | 605 | switch (ilen) { |
| 606 | case ILEN_LATER: |
| 607 | ilen = get_ilen(cpu_ldub_code(env, env->psw.addr)); |
Alexander Graf | d5a4396 | 2011-03-23 10:58:07 +0100 | [diff] [blame] | 608 | break; |
Richard Henderson | d5a103c | 2012-09-14 19:31:57 -0700 | [diff] [blame] | 609 | case ILEN_LATER_INC: |
| 610 | ilen = get_ilen(cpu_ldub_code(env, env->psw.addr)); |
| 611 | env->psw.addr += ilen; |
Alexander Graf | d5a4396 | 2011-03-23 10:58:07 +0100 | [diff] [blame] | 612 | break; |
Richard Henderson | d5a103c | 2012-09-14 19:31:57 -0700 | [diff] [blame] | 613 | default: |
| 614 | assert(ilen == 2 || ilen == 4 || ilen == 6); |
Alexander Graf | d5a4396 | 2011-03-23 10:58:07 +0100 | [diff] [blame] | 615 | } |
| 616 | |
Richard Henderson | d5a103c | 2012-09-14 19:31:57 -0700 | [diff] [blame] | 617 | qemu_log_mask(CPU_LOG_INT, "%s: code=0x%x ilen=%d\n", |
| 618 | __func__, env->int_pgm_code, ilen); |
Alexander Graf | d5a4396 | 2011-03-23 10:58:07 +0100 | [diff] [blame] | 619 | |
Cornelia Huck | 4782a23 | 2013-01-24 02:28:01 +0000 | [diff] [blame] | 620 | lowcore = cpu_map_lowcore(env); |
Alexander Graf | d5a4396 | 2011-03-23 10:58:07 +0100 | [diff] [blame] | 621 | |
Richard Henderson | d5a103c | 2012-09-14 19:31:57 -0700 | [diff] [blame] | 622 | lowcore->pgm_ilen = cpu_to_be16(ilen); |
Alexander Graf | d5a4396 | 2011-03-23 10:58:07 +0100 | [diff] [blame] | 623 | lowcore->pgm_code = cpu_to_be16(env->int_pgm_code); |
| 624 | lowcore->program_old_psw.mask = cpu_to_be64(get_psw_mask(env)); |
| 625 | lowcore->program_old_psw.addr = cpu_to_be64(env->psw.addr); |
| 626 | mask = be64_to_cpu(lowcore->program_new_psw.mask); |
| 627 | addr = be64_to_cpu(lowcore->program_new_psw.addr); |
| 628 | |
Cornelia Huck | 4782a23 | 2013-01-24 02:28:01 +0000 | [diff] [blame] | 629 | cpu_unmap_lowcore(lowcore); |
Alexander Graf | d5a4396 | 2011-03-23 10:58:07 +0100 | [diff] [blame] | 630 | |
Blue Swirl | 71e4708 | 2012-09-02 07:33:30 +0000 | [diff] [blame] | 631 | DPRINTF("%s: %x %x %" PRIx64 " %" PRIx64 "\n", __func__, |
Richard Henderson | d5a103c | 2012-09-14 19:31:57 -0700 | [diff] [blame] | 632 | env->int_pgm_code, ilen, env->psw.mask, |
Alexander Graf | d5a4396 | 2011-03-23 10:58:07 +0100 | [diff] [blame] | 633 | env->psw.addr); |
| 634 | |
| 635 | load_psw(env, mask, addr); |
| 636 | } |
| 637 | |
| 638 | #define VIRTIO_SUBCODE_64 0x0D00 |
| 639 | |
Andreas Färber | a4e3ad1 | 2012-03-14 01:38:22 +0100 | [diff] [blame] | 640 | static void do_ext_interrupt(CPUS390XState *env) |
Alexander Graf | d5a4396 | 2011-03-23 10:58:07 +0100 | [diff] [blame] | 641 | { |
Andreas Färber | a47dddd | 2013-09-03 17:38:47 +0200 | [diff] [blame] | 642 | S390CPU *cpu = s390_env_get_cpu(env); |
Alexander Graf | d5a4396 | 2011-03-23 10:58:07 +0100 | [diff] [blame] | 643 | uint64_t mask, addr; |
| 644 | LowCore *lowcore; |
Alexander Graf | d5a4396 | 2011-03-23 10:58:07 +0100 | [diff] [blame] | 645 | ExtQueue *q; |
| 646 | |
| 647 | if (!(env->psw.mask & PSW_MASK_EXT)) { |
Andreas Färber | a47dddd | 2013-09-03 17:38:47 +0200 | [diff] [blame] | 648 | cpu_abort(CPU(cpu), "Ext int w/o ext mask\n"); |
Alexander Graf | d5a4396 | 2011-03-23 10:58:07 +0100 | [diff] [blame] | 649 | } |
| 650 | |
| 651 | if (env->ext_index < 0 || env->ext_index > MAX_EXT_QUEUE) { |
Andreas Färber | a47dddd | 2013-09-03 17:38:47 +0200 | [diff] [blame] | 652 | cpu_abort(CPU(cpu), "Ext queue overrun: %d\n", env->ext_index); |
Alexander Graf | d5a4396 | 2011-03-23 10:58:07 +0100 | [diff] [blame] | 653 | } |
| 654 | |
| 655 | q = &env->ext_queue[env->ext_index]; |
Cornelia Huck | 4782a23 | 2013-01-24 02:28:01 +0000 | [diff] [blame] | 656 | lowcore = cpu_map_lowcore(env); |
Alexander Graf | d5a4396 | 2011-03-23 10:58:07 +0100 | [diff] [blame] | 657 | |
| 658 | lowcore->ext_int_code = cpu_to_be16(q->code); |
| 659 | lowcore->ext_params = cpu_to_be32(q->param); |
| 660 | lowcore->ext_params2 = cpu_to_be64(q->param64); |
| 661 | lowcore->external_old_psw.mask = cpu_to_be64(get_psw_mask(env)); |
| 662 | lowcore->external_old_psw.addr = cpu_to_be64(env->psw.addr); |
| 663 | lowcore->cpu_addr = cpu_to_be16(env->cpu_num | VIRTIO_SUBCODE_64); |
| 664 | mask = be64_to_cpu(lowcore->external_new_psw.mask); |
| 665 | addr = be64_to_cpu(lowcore->external_new_psw.addr); |
| 666 | |
Cornelia Huck | 4782a23 | 2013-01-24 02:28:01 +0000 | [diff] [blame] | 667 | cpu_unmap_lowcore(lowcore); |
Alexander Graf | d5a4396 | 2011-03-23 10:58:07 +0100 | [diff] [blame] | 668 | |
| 669 | env->ext_index--; |
| 670 | if (env->ext_index == -1) { |
| 671 | env->pending_int &= ~INTERRUPT_EXT; |
| 672 | } |
| 673 | |
Blue Swirl | 71e4708 | 2012-09-02 07:33:30 +0000 | [diff] [blame] | 674 | DPRINTF("%s: %" PRIx64 " %" PRIx64 "\n", __func__, |
Alexander Graf | d5a4396 | 2011-03-23 10:58:07 +0100 | [diff] [blame] | 675 | env->psw.mask, env->psw.addr); |
| 676 | |
| 677 | load_psw(env, mask, addr); |
| 678 | } |
Alexander Graf | 3110e29 | 2011-04-15 17:32:48 +0200 | [diff] [blame] | 679 | |
Cornelia Huck | 5d69c54 | 2013-01-24 02:28:04 +0000 | [diff] [blame] | 680 | static void do_io_interrupt(CPUS390XState *env) |
| 681 | { |
Andreas Färber | a47dddd | 2013-09-03 17:38:47 +0200 | [diff] [blame] | 682 | S390CPU *cpu = s390_env_get_cpu(env); |
Cornelia Huck | 5d69c54 | 2013-01-24 02:28:04 +0000 | [diff] [blame] | 683 | LowCore *lowcore; |
| 684 | IOIntQueue *q; |
| 685 | uint8_t isc; |
| 686 | int disable = 1; |
| 687 | int found = 0; |
| 688 | |
| 689 | if (!(env->psw.mask & PSW_MASK_IO)) { |
Andreas Färber | a47dddd | 2013-09-03 17:38:47 +0200 | [diff] [blame] | 690 | cpu_abort(CPU(cpu), "I/O int w/o I/O mask\n"); |
Cornelia Huck | 5d69c54 | 2013-01-24 02:28:04 +0000 | [diff] [blame] | 691 | } |
| 692 | |
| 693 | for (isc = 0; isc < ARRAY_SIZE(env->io_index); isc++) { |
Cornelia Huck | 91b0a8f | 2013-02-07 02:20:51 +0000 | [diff] [blame] | 694 | uint64_t isc_bits; |
| 695 | |
Cornelia Huck | 5d69c54 | 2013-01-24 02:28:04 +0000 | [diff] [blame] | 696 | if (env->io_index[isc] < 0) { |
| 697 | continue; |
| 698 | } |
| 699 | if (env->io_index[isc] > MAX_IO_QUEUE) { |
Andreas Färber | a47dddd | 2013-09-03 17:38:47 +0200 | [diff] [blame] | 700 | cpu_abort(CPU(cpu), "I/O queue overrun for isc %d: %d\n", |
Cornelia Huck | 5d69c54 | 2013-01-24 02:28:04 +0000 | [diff] [blame] | 701 | isc, env->io_index[isc]); |
| 702 | } |
| 703 | |
| 704 | q = &env->io_queue[env->io_index[isc]][isc]; |
Cornelia Huck | 91b0a8f | 2013-02-07 02:20:51 +0000 | [diff] [blame] | 705 | isc_bits = ISC_TO_ISC_BITS(IO_INT_WORD_ISC(q->word)); |
| 706 | if (!(env->cregs[6] & isc_bits)) { |
Cornelia Huck | 5d69c54 | 2013-01-24 02:28:04 +0000 | [diff] [blame] | 707 | disable = 0; |
| 708 | continue; |
| 709 | } |
Cornelia Huck | bd9a8d8 | 2013-02-07 02:20:50 +0000 | [diff] [blame] | 710 | if (!found) { |
| 711 | uint64_t mask, addr; |
Cornelia Huck | 5d69c54 | 2013-01-24 02:28:04 +0000 | [diff] [blame] | 712 | |
Cornelia Huck | bd9a8d8 | 2013-02-07 02:20:50 +0000 | [diff] [blame] | 713 | found = 1; |
| 714 | lowcore = cpu_map_lowcore(env); |
Cornelia Huck | 5d69c54 | 2013-01-24 02:28:04 +0000 | [diff] [blame] | 715 | |
Cornelia Huck | bd9a8d8 | 2013-02-07 02:20:50 +0000 | [diff] [blame] | 716 | lowcore->subchannel_id = cpu_to_be16(q->id); |
| 717 | lowcore->subchannel_nr = cpu_to_be16(q->nr); |
| 718 | lowcore->io_int_parm = cpu_to_be32(q->parm); |
| 719 | lowcore->io_int_word = cpu_to_be32(q->word); |
| 720 | lowcore->io_old_psw.mask = cpu_to_be64(get_psw_mask(env)); |
| 721 | lowcore->io_old_psw.addr = cpu_to_be64(env->psw.addr); |
| 722 | mask = be64_to_cpu(lowcore->io_new_psw.mask); |
| 723 | addr = be64_to_cpu(lowcore->io_new_psw.addr); |
Cornelia Huck | 5d69c54 | 2013-01-24 02:28:04 +0000 | [diff] [blame] | 724 | |
Cornelia Huck | bd9a8d8 | 2013-02-07 02:20:50 +0000 | [diff] [blame] | 725 | cpu_unmap_lowcore(lowcore); |
| 726 | |
| 727 | env->io_index[isc]--; |
| 728 | |
| 729 | DPRINTF("%s: %" PRIx64 " %" PRIx64 "\n", __func__, |
| 730 | env->psw.mask, env->psw.addr); |
| 731 | load_psw(env, mask, addr); |
| 732 | } |
Stefan Weil | b22dd12 | 2013-02-03 21:33:16 +0100 | [diff] [blame] | 733 | if (env->io_index[isc] >= 0) { |
Cornelia Huck | 5d69c54 | 2013-01-24 02:28:04 +0000 | [diff] [blame] | 734 | disable = 0; |
| 735 | } |
Cornelia Huck | bd9a8d8 | 2013-02-07 02:20:50 +0000 | [diff] [blame] | 736 | continue; |
Cornelia Huck | 5d69c54 | 2013-01-24 02:28:04 +0000 | [diff] [blame] | 737 | } |
| 738 | |
| 739 | if (disable) { |
| 740 | env->pending_int &= ~INTERRUPT_IO; |
| 741 | } |
| 742 | |
Cornelia Huck | 5d69c54 | 2013-01-24 02:28:04 +0000 | [diff] [blame] | 743 | } |
| 744 | |
| 745 | static void do_mchk_interrupt(CPUS390XState *env) |
| 746 | { |
Andreas Färber | a47dddd | 2013-09-03 17:38:47 +0200 | [diff] [blame] | 747 | S390CPU *cpu = s390_env_get_cpu(env); |
Cornelia Huck | 5d69c54 | 2013-01-24 02:28:04 +0000 | [diff] [blame] | 748 | uint64_t mask, addr; |
| 749 | LowCore *lowcore; |
| 750 | MchkQueue *q; |
| 751 | int i; |
| 752 | |
| 753 | if (!(env->psw.mask & PSW_MASK_MCHECK)) { |
Andreas Färber | a47dddd | 2013-09-03 17:38:47 +0200 | [diff] [blame] | 754 | cpu_abort(CPU(cpu), "Machine check w/o mchk mask\n"); |
Cornelia Huck | 5d69c54 | 2013-01-24 02:28:04 +0000 | [diff] [blame] | 755 | } |
| 756 | |
| 757 | if (env->mchk_index < 0 || env->mchk_index > MAX_MCHK_QUEUE) { |
Andreas Färber | a47dddd | 2013-09-03 17:38:47 +0200 | [diff] [blame] | 758 | cpu_abort(CPU(cpu), "Mchk queue overrun: %d\n", env->mchk_index); |
Cornelia Huck | 5d69c54 | 2013-01-24 02:28:04 +0000 | [diff] [blame] | 759 | } |
| 760 | |
| 761 | q = &env->mchk_queue[env->mchk_index]; |
| 762 | |
| 763 | if (q->type != 1) { |
| 764 | /* Don't know how to handle this... */ |
Andreas Färber | a47dddd | 2013-09-03 17:38:47 +0200 | [diff] [blame] | 765 | cpu_abort(CPU(cpu), "Unknown machine check type %d\n", q->type); |
Cornelia Huck | 5d69c54 | 2013-01-24 02:28:04 +0000 | [diff] [blame] | 766 | } |
| 767 | if (!(env->cregs[14] & (1 << 28))) { |
| 768 | /* CRW machine checks disabled */ |
| 769 | return; |
| 770 | } |
| 771 | |
| 772 | lowcore = cpu_map_lowcore(env); |
| 773 | |
| 774 | for (i = 0; i < 16; i++) { |
| 775 | lowcore->floating_pt_save_area[i] = cpu_to_be64(env->fregs[i].ll); |
| 776 | lowcore->gpregs_save_area[i] = cpu_to_be64(env->regs[i]); |
| 777 | lowcore->access_regs_save_area[i] = cpu_to_be32(env->aregs[i]); |
| 778 | lowcore->cregs_save_area[i] = cpu_to_be64(env->cregs[i]); |
| 779 | } |
| 780 | lowcore->prefixreg_save_area = cpu_to_be32(env->psa); |
| 781 | lowcore->fpt_creg_save_area = cpu_to_be32(env->fpc); |
| 782 | lowcore->tod_progreg_save_area = cpu_to_be32(env->todpr); |
| 783 | lowcore->cpu_timer_save_area[0] = cpu_to_be32(env->cputm >> 32); |
| 784 | lowcore->cpu_timer_save_area[1] = cpu_to_be32((uint32_t)env->cputm); |
| 785 | lowcore->clock_comp_save_area[0] = cpu_to_be32(env->ckc >> 32); |
| 786 | lowcore->clock_comp_save_area[1] = cpu_to_be32((uint32_t)env->ckc); |
| 787 | |
| 788 | lowcore->mcck_interruption_code[0] = cpu_to_be32(0x00400f1d); |
| 789 | lowcore->mcck_interruption_code[1] = cpu_to_be32(0x40330000); |
| 790 | lowcore->mcck_old_psw.mask = cpu_to_be64(get_psw_mask(env)); |
| 791 | lowcore->mcck_old_psw.addr = cpu_to_be64(env->psw.addr); |
| 792 | mask = be64_to_cpu(lowcore->mcck_new_psw.mask); |
| 793 | addr = be64_to_cpu(lowcore->mcck_new_psw.addr); |
| 794 | |
| 795 | cpu_unmap_lowcore(lowcore); |
| 796 | |
| 797 | env->mchk_index--; |
| 798 | if (env->mchk_index == -1) { |
| 799 | env->pending_int &= ~INTERRUPT_MCHK; |
| 800 | } |
| 801 | |
| 802 | DPRINTF("%s: %" PRIx64 " %" PRIx64 "\n", __func__, |
| 803 | env->psw.mask, env->psw.addr); |
| 804 | |
| 805 | load_psw(env, mask, addr); |
| 806 | } |
| 807 | |
Andreas Färber | 97a8ea5 | 2013-02-02 10:57:51 +0100 | [diff] [blame] | 808 | void s390_cpu_do_interrupt(CPUState *cs) |
Alexander Graf | 3110e29 | 2011-04-15 17:32:48 +0200 | [diff] [blame] | 809 | { |
Andreas Färber | 97a8ea5 | 2013-02-02 10:57:51 +0100 | [diff] [blame] | 810 | S390CPU *cpu = S390_CPU(cs); |
| 811 | CPUS390XState *env = &cpu->env; |
Andreas Färber | f946673 | 2013-01-30 12:48:24 +0000 | [diff] [blame] | 812 | |
Richard Henderson | 0d40454 | 2012-09-24 14:55:51 -0700 | [diff] [blame] | 813 | qemu_log_mask(CPU_LOG_INT, "%s: %d at pc=%" PRIx64 "\n", |
Andreas Färber | 2710342 | 2013-08-26 08:31:06 +0200 | [diff] [blame] | 814 | __func__, cs->exception_index, env->psw.addr); |
Alexander Graf | d5a4396 | 2011-03-23 10:58:07 +0100 | [diff] [blame] | 815 | |
David Hildenbrand | eb24f7c | 2014-09-30 10:57:29 +0200 | [diff] [blame] | 816 | s390_cpu_set_state(CPU_STATE_OPERATING, cpu); |
Cornelia Huck | 5d69c54 | 2013-01-24 02:28:04 +0000 | [diff] [blame] | 817 | /* handle machine checks */ |
| 818 | if ((env->psw.mask & PSW_MASK_MCHECK) && |
Andreas Färber | 2710342 | 2013-08-26 08:31:06 +0200 | [diff] [blame] | 819 | (cs->exception_index == -1)) { |
Cornelia Huck | 5d69c54 | 2013-01-24 02:28:04 +0000 | [diff] [blame] | 820 | if (env->pending_int & INTERRUPT_MCHK) { |
Andreas Färber | 2710342 | 2013-08-26 08:31:06 +0200 | [diff] [blame] | 821 | cs->exception_index = EXCP_MCHK; |
Cornelia Huck | 5d69c54 | 2013-01-24 02:28:04 +0000 | [diff] [blame] | 822 | } |
| 823 | } |
Alexander Graf | d5a4396 | 2011-03-23 10:58:07 +0100 | [diff] [blame] | 824 | /* handle external interrupts */ |
| 825 | if ((env->psw.mask & PSW_MASK_EXT) && |
Andreas Färber | 2710342 | 2013-08-26 08:31:06 +0200 | [diff] [blame] | 826 | cs->exception_index == -1) { |
Alexander Graf | d5a4396 | 2011-03-23 10:58:07 +0100 | [diff] [blame] | 827 | if (env->pending_int & INTERRUPT_EXT) { |
| 828 | /* code is already in env */ |
Andreas Färber | 2710342 | 2013-08-26 08:31:06 +0200 | [diff] [blame] | 829 | cs->exception_index = EXCP_EXT; |
Alexander Graf | d5a4396 | 2011-03-23 10:58:07 +0100 | [diff] [blame] | 830 | } else if (env->pending_int & INTERRUPT_TOD) { |
Andreas Färber | f946673 | 2013-01-30 12:48:24 +0000 | [diff] [blame] | 831 | cpu_inject_ext(cpu, 0x1004, 0, 0); |
Andreas Färber | 2710342 | 2013-08-26 08:31:06 +0200 | [diff] [blame] | 832 | cs->exception_index = EXCP_EXT; |
Alexander Graf | d5a4396 | 2011-03-23 10:58:07 +0100 | [diff] [blame] | 833 | env->pending_int &= ~INTERRUPT_EXT; |
| 834 | env->pending_int &= ~INTERRUPT_TOD; |
| 835 | } else if (env->pending_int & INTERRUPT_CPUTIMER) { |
Andreas Färber | f946673 | 2013-01-30 12:48:24 +0000 | [diff] [blame] | 836 | cpu_inject_ext(cpu, 0x1005, 0, 0); |
Andreas Färber | 2710342 | 2013-08-26 08:31:06 +0200 | [diff] [blame] | 837 | cs->exception_index = EXCP_EXT; |
Alexander Graf | d5a4396 | 2011-03-23 10:58:07 +0100 | [diff] [blame] | 838 | env->pending_int &= ~INTERRUPT_EXT; |
| 839 | env->pending_int &= ~INTERRUPT_TOD; |
| 840 | } |
| 841 | } |
Cornelia Huck | 5d69c54 | 2013-01-24 02:28:04 +0000 | [diff] [blame] | 842 | /* handle I/O interrupts */ |
| 843 | if ((env->psw.mask & PSW_MASK_IO) && |
Andreas Färber | 2710342 | 2013-08-26 08:31:06 +0200 | [diff] [blame] | 844 | (cs->exception_index == -1)) { |
Cornelia Huck | 5d69c54 | 2013-01-24 02:28:04 +0000 | [diff] [blame] | 845 | if (env->pending_int & INTERRUPT_IO) { |
Andreas Färber | 2710342 | 2013-08-26 08:31:06 +0200 | [diff] [blame] | 846 | cs->exception_index = EXCP_IO; |
Cornelia Huck | 5d69c54 | 2013-01-24 02:28:04 +0000 | [diff] [blame] | 847 | } |
| 848 | } |
Alexander Graf | d5a4396 | 2011-03-23 10:58:07 +0100 | [diff] [blame] | 849 | |
Andreas Färber | 2710342 | 2013-08-26 08:31:06 +0200 | [diff] [blame] | 850 | switch (cs->exception_index) { |
Alexander Graf | d5a4396 | 2011-03-23 10:58:07 +0100 | [diff] [blame] | 851 | case EXCP_PGM: |
| 852 | do_program_interrupt(env); |
| 853 | break; |
| 854 | case EXCP_SVC: |
| 855 | do_svc_interrupt(env); |
| 856 | break; |
| 857 | case EXCP_EXT: |
| 858 | do_ext_interrupt(env); |
| 859 | break; |
Cornelia Huck | 5d69c54 | 2013-01-24 02:28:04 +0000 | [diff] [blame] | 860 | case EXCP_IO: |
| 861 | do_io_interrupt(env); |
| 862 | break; |
| 863 | case EXCP_MCHK: |
| 864 | do_mchk_interrupt(env); |
| 865 | break; |
Alexander Graf | d5a4396 | 2011-03-23 10:58:07 +0100 | [diff] [blame] | 866 | } |
Andreas Färber | 2710342 | 2013-08-26 08:31:06 +0200 | [diff] [blame] | 867 | cs->exception_index = -1; |
Alexander Graf | d5a4396 | 2011-03-23 10:58:07 +0100 | [diff] [blame] | 868 | |
| 869 | if (!env->pending_int) { |
Andreas Färber | 259186a | 2013-01-17 18:51:17 +0100 | [diff] [blame] | 870 | cs->interrupt_request &= ~CPU_INTERRUPT_HARD; |
Alexander Graf | d5a4396 | 2011-03-23 10:58:07 +0100 | [diff] [blame] | 871 | } |
Alexander Graf | 3110e29 | 2011-04-15 17:32:48 +0200 | [diff] [blame] | 872 | } |
Alexander Graf | d5a4396 | 2011-03-23 10:58:07 +0100 | [diff] [blame] | 873 | |
Richard Henderson | 02bb9bb | 2014-09-13 09:45:19 -0700 | [diff] [blame] | 874 | bool s390_cpu_exec_interrupt(CPUState *cs, int interrupt_request) |
| 875 | { |
| 876 | if (interrupt_request & CPU_INTERRUPT_HARD) { |
| 877 | S390CPU *cpu = S390_CPU(cs); |
| 878 | CPUS390XState *env = &cpu->env; |
| 879 | |
| 880 | if (env->psw.mask & PSW_MASK_EXT) { |
| 881 | s390_cpu_do_interrupt(cs); |
| 882 | return true; |
| 883 | } |
| 884 | } |
| 885 | return false; |
| 886 | } |
Alexander Graf | d5a4396 | 2011-03-23 10:58:07 +0100 | [diff] [blame] | 887 | #endif /* CONFIG_USER_ONLY */ |