Lines Matching +full:intc +full:- +full:nr +full:- +full:irqs

25 #include "s390x-internal.h"
26 #include "qemu/host-utils.h"
27 #include "exec/helper-proto.h"
29 #include "exec/exec-all.h"
33 #include "s390-tod.h"
39 #include "hw/s390x/s390-virtio-hcall.h"
43 #include "hw/s390x/s390-pci-inst.h"
61 cs->exception_index = excp; in HELPER()
74 return UINT64_MAX - (uint64_t)cpu_get_host_ticks(); in HELPER()
76 return time2tod(env->cputm - qemu_clock_get_ns(QEMU_CLOCK_VIRTUAL)); in HELPER()
96 tdc->get(td, &tod, &error_abort); in HELPER()
109 tcg_s390_program_interrupt(env, -r, GETPC()); in HELPER()
141 r = -1; in HELPER()
154 const uint32_t old_prefix = env->psa; in HELPER()
168 env->psa = prefix; in HELPER()
187 /* stop the timer and remove pending CKC IRQs */ in update_ckc_timer()
188 timer_del(env->tod_timer); in update_ckc_timer()
190 env->pending_int &= ~INTERRUPT_EXT_CLOCK_COMPARATOR; in update_ckc_timer()
193 if (env->ckc == -1ULL) { in update_ckc_timer()
198 time = env->ckc - td->base.low; in update_ckc_timer()
203 timer_mod(env->tod_timer, time); in update_ckc_timer()
209 env->ckc = ckc; in HELPER()
232 tdc->set(td, &tod, &error_abort); in HELPER()
245 env->todpr = val; in HELPER()
251 return env->ckc; in HELPER()
257 if (time == -1ULL) { in HELPER()
264 env->cputm = qemu_clock_get_ns(QEMU_CLOCK_VIRTUAL) + time; in HELPER()
266 timer_mod(env->cpu_timer, env->cputm); in HELPER()
292 env->regs[0] = STSI_R0_FC_LEVEL_3; in HELPER()
301 for (i = 0; i < ms->possible_cpus->len; i++) { in HELPER()
303 if (ms->possible_cpus->cpus[i].cpu) { in HELPER()
331 snprintf(type, ARRAY_SIZE(type), "%X", cpu->model->def->type); in HELPER()
341 sysib.sysib_121.cpu_addr = cpu_to_be16(env->core_id); in HELPER()
357 sysib.sysib_221.cpu_addr = cpu_to_be16(env->core_id); in HELPER()
381 sysib.sysib_322.vm[0].ext_name_encoding = 2; /* UTF-8 */ in HELPER()
422 /* TODO: needed to inject interrupts - push further down */ in HELPER()
536 io = qemu_s390_flic_dequeue_io(flic, env->cregs[6]); in HELPER()
545 uint16_t nr; in HELPER() member
547 } intc = { in HELPER() local
548 .id = cpu_to_be16(io->id), in HELPER()
549 .nr = cpu_to_be16(io->nr), in HELPER()
550 .parm = cpu_to_be32(io->parm), in HELPER()
553 if (s390_cpu_virt_mem_write(cpu, addr, 0, &intc, sizeof(intc))) { in HELPER()
555 s390_io_interrupt(io->id, io->nr, io->parm, io->word); in HELPER()
564 lowcore->subchannel_id = cpu_to_be16(io->id); in HELPER()
565 lowcore->subchannel_nr = cpu_to_be16(io->nr); in HELPER()
566 lowcore->io_int_parm = cpu_to_be32(io->parm); in HELPER()
567 lowcore->io_int_word = cpu_to_be32(io->word); in HELPER()
603 env->per_address); in per_raise_exception_log()
610 if (unlikely(env->per_perc_atmid)) { in HELPER()
619 if (env->cregs[10] <= env->cregs[11]) { in get_per_in_range()
620 return env->cregs[10] <= addr && addr <= env->cregs[11]; in get_per_in_range()
622 return env->cregs[10] <= addr || addr <= env->cregs[11]; in get_per_in_range()
628 if ((env->cregs[9] & PER_CR9_CONTROL_BRANCH_ADDRESS) in HELPER()
633 env->psw.addr = dest; in HELPER()
634 env->int_pgm_ilen = ilen; in HELPER()
635 env->per_address = env->gbea; in HELPER()
636 env->per_perc_atmid = PER_CODE_EVENT_BRANCH | get_per_atmid(env); in HELPER()
642 if (get_per_in_range(env, env->psw.addr)) { in HELPER()
643 env->per_address = env->psw.addr; in HELPER()
644 env->int_pgm_ilen = ilen; in HELPER()
645 env->per_perc_atmid = PER_CODE_EVENT_IFETCH | get_per_atmid(env); in HELPER()
649 if (env->cregs[9] & PER_CR9_EVENT_IFETCH_NULLIFICATION) { in HELPER()
650 env->per_perc_atmid |= PER_CODE_EVENT_NULLIFICATION; in HELPER()
652 env->per_address); in HELPER()
661 env->per_address = env->psw.addr; in HELPER()
662 env->int_pgm_ilen = ilen; in HELPER()
663 env->per_perc_atmid = PER_CODE_EVENT_STORE_REAL | get_per_atmid(env); in HELPER()
697 memcpy(&lowcore->stfl_fac_list, stfl_bytes, sizeof(lowcore->stfl_fac_list)); in HELPER()
705 const int count_bytes = ((env->regs[0] & 0xff) + 1) * 8; in HELPER()
717 * The PoP says that doublewords beyond the highest-numbered facility in HELPER()
725 env->regs[0] = deposit64(env->regs[0], 0, 8, (max_bytes / 8) - 1); in HELPER()
784 tcg_s390_program_interrupt(env, -r, GETPC()); in HELPER()