Home
last modified time | relevance | path

Searched refs:timer_new_ns (Results 1 – 25 of 95) sorted by relevance

1234

/openbmc/qemu/hw/acpi/
H A Dich9_timer.c56 timer_new_ns(QEMU_CLOCK_VIRTUAL, ich9_pm_swsmi_timer_expired, pm); in ich9_pm_swsmi_timer_init()
92 timer_new_ns(QEMU_CLOCK_VIRTUAL, ich9_pm_periodic_timer_expired, pm); in ich9_pm_periodic_timer_init()
/openbmc/qemu/target/riscv/
H A Dtime_helper.c137 env->stimer = timer_new_ns(QEMU_CLOCK_VIRTUAL, &riscv_stimer_cb, cpu); in riscv_timer_init()
140 env->vstimer = timer_new_ns(QEMU_CLOCK_VIRTUAL, &riscv_vstimer_cb, cpu); in riscv_timer_init()
/openbmc/qemu/hw/ppc/
H A Dppc_booke.c359 tb_env->decr_timer = timer_new_ns(QEMU_CLOCK_VIRTUAL, &booke_decr_cb, cpu); in ppc_booke_timers_init()
362 timer_new_ns(QEMU_CLOCK_VIRTUAL, &booke_fit_cb, cpu); in ppc_booke_timers_init()
364 timer_new_ns(QEMU_CLOCK_VIRTUAL, &booke_wdt_cb, cpu); in ppc_booke_timers_init()
H A Dppc.c1101 tb_env->decr_timer = timer_new_ns(QEMU_CLOCK_VIRTUAL, in cpu_ppc_tb_init()
1104 tb_env->hdecr_timer = timer_new_ns(QEMU_CLOCK_VIRTUAL, in cpu_ppc_tb_init()
1152 env->tb_env->hdecr_timer = timer_new_ns(QEMU_CLOCK_VIRTUAL, in cpu_ppc_hdecr_init()
1407 tb_env->decr_timer = timer_new_ns(QEMU_CLOCK_VIRTUAL, &cpu_4xx_pit_cb, cpu); in ppc_40x_timers_init()
1409 timer_new_ns(QEMU_CLOCK_VIRTUAL, &cpu_4xx_fit_cb, cpu); in ppc_40x_timers_init()
1411 timer_new_ns(QEMU_CLOCK_VIRTUAL, &cpu_4xx_wdt_cb, cpu); in ppc_40x_timers_init()
/openbmc/qemu/target/s390x/
H A Dcpu-sysemu.c119 timer_new_ns(QEMU_CLOCK_VIRTUAL, s390x_tod_timer, cpu); in s390_cpu_init_sysemu()
121 timer_new_ns(QEMU_CLOCK_VIRTUAL, s390x_cpu_timer, cpu); in s390_cpu_init_sysemu()
/openbmc/qemu/accel/tcg/
H A Dicount-common.c453 timers_state.icount_warp_timer = timer_new_ns(QEMU_CLOCK_VIRTUAL_RT, in icount_configure()
485 timers_state.icount_vm_timer = timer_new_ns(QEMU_CLOCK_VIRTUAL, in icount_configure()
H A Dtcg-accel-ops-rr.c93 rr_kick_vcpu_timer = timer_new_ns(QEMU_CLOCK_VIRTUAL, in rr_start_kick_timer()
/openbmc/qemu/hw/timer/
H A Dstellaris-gptm.c307 s->timer[0] = timer_new_ns(QEMU_CLOCK_VIRTUAL, gptm_tick, &s->opaque[0]); in stellaris_gptm_realize()
308 s->timer[1] = timer_new_ns(QEMU_CLOCK_VIRTUAL, gptm_tick, &s->opaque[1]); in stellaris_gptm_realize()
H A Dmips_gictimer.c140 gictimer->vptimers[i].qtimer = timer_new_ns(QEMU_CLOCK_VIRTUAL, in mips_gictimer_init()
H A Dpxa2xx_timer.c480 s->timer[i].qtimer = timer_new_ns(QEMU_CLOCK_VIRTUAL, in pxa2xx_timer_realize()
493 s->tm4[i].tm.qtimer = timer_new_ns(QEMU_CLOCK_VIRTUAL, in pxa2xx_timer_realize()
H A Dibex_timer.c121 s->mtimer = timer_new_ns(QEMU_CLOCK_VIRTUAL, in ibex_timer_reset()
/openbmc/qemu/hw/watchdog/
H A Dwdt_diag288.c100 diag288->timer = timer_new_ns(QEMU_CLOCK_VIRTUAL, diag288_timer_expired, in wdt_diag288_realize()
H A Dwdt_ib700.c116 s->timer = timer_new_ns(QEMU_CLOCK_VIRTUAL, ib700_timer_expired, s); in wdt_ib700_realize()
H A Dsbsa_gwdt.c261 s->timer = timer_new_ns(QEMU_CLOCK_VIRTUAL, sbsa_gwdt_timer_sysinterrupt, in wdt_sbsa_gwdt_realize()
/openbmc/qemu/migration/
H A Dcpu-throttle.c194 throttle_timer = timer_new_ns(QEMU_CLOCK_VIRTUAL_RT, in cpu_throttle_init()
/openbmc/qemu/target/mips/sysemu/
H A Dcp0_timer.c145 env->timer = timer_new_ns(QEMU_CLOCK_VIRTUAL, &mips_timer_cb, env); in cpu_mips_clock_init()
/openbmc/qemu/hw/xtensa/
H A Dpic_cpu.c111 env->ccompare[i].timer = timer_new_ns(QEMU_CLOCK_VIRTUAL, in xtensa_irq_init()
/openbmc/qemu/hw/openrisc/
H A Dcputimer.c161 cpu->env.timer = timer_new_ns(QEMU_CLOCK_VIRTUAL, &openrisc_timer_cb, cpu); in cpu_openrisc_clock_init()
/openbmc/qemu/hw/rtc/
H A Dm48t59.c570 s->alrm_timer = timer_new_ns(rtc_clock, &alarm_cb, s); in m48t59_realize_common()
571 s->wd_timer = timer_new_ns(QEMU_CLOCK_VIRTUAL, &watchdog_cb, s); in m48t59_realize_common()
H A Dmc146818rtc.c906 timer_new_ns(rtc_clock, rtc_coalesced_timer, s); in rtc_realizefn()
915 s->periodic_timer = timer_new_ns(rtc_clock, rtc_periodic_timer, s); in rtc_realizefn()
916 s->update_timer = timer_new_ns(rtc_clock, rtc_update_timer, s); in rtc_realizefn()
H A Dgoldfish_rtc.c286 s->timer = timer_new_ns(rtc_clock, goldfish_rtc_interrupt, s); in goldfish_rtc_realize()
H A Dpl031.c204 s->timer = timer_new_ns(rtc_clock, pl031_interrupt, s); in pl031_init()
/openbmc/qemu/replay/
H A Dreplay-debugging.c70 replay_break_timer = timer_new_ns(QEMU_CLOCK_REALTIME, in replay_break()
/openbmc/qemu/hw/virtio/
H A Dvhost-vsock-common.c240 timer_new_ns(QEMU_CLOCK_VIRTUAL, in vhost_vsock_common_post_load()
/openbmc/qemu/target/hppa/
H A Dcpu.c185 cpu->alarm_timer = timer_new_ns(QEMU_CLOCK_VIRTUAL, in hppa_cpu_realizefn()

1234