Home
last modified time | relevance | path

Searched refs:basepri (Results 1 – 5 of 5) sorted by relevance

/openbmc/qemu/hw/intc/
H A Darmv7m_nvic.c347 if (env->v7m.basepri[M_REG_NS] > 0) { in nvic_exec_prio()
348 running = exc_group_prio(s, env->v7m.basepri[M_REG_NS], M_REG_NS); in nvic_exec_prio()
351 if (env->v7m.basepri[M_REG_S] > 0) { in nvic_exec_prio()
352 int basepri = exc_group_prio(s, env->v7m.basepri[M_REG_S], M_REG_S); in nvic_exec_prio() local
353 if (running > basepri) { in nvic_exec_prio()
354 running = basepri; in nvic_exec_prio()
/openbmc/qemu/target/arm/tcg/
H A Dm_helper.c2484 return env->v7m.basepri[M_REG_NS]; in HELPER()
2537 return env->v7m.basepri[env->v7m.secure]; in HELPER()
2612 env->v7m.basepri[M_REG_NS] = val & 0xff; in HELPER()
2715 env->v7m.basepri[env->v7m.secure] = val & 0xff; in HELPER()
2722 if (val != 0 && (val < env->v7m.basepri[env->v7m.secure] in HELPER()
2723 || env->v7m.basepri[env->v7m.secure] == 0)) { in HELPER()
2724 env->v7m.basepri[env->v7m.secure] = val; in HELPER()
/openbmc/qemu/target/arm/
H A Dmachine.c519 VMSTATE_UINT32(env.v7m.basepri[M_REG_NS], ARMCPU),
704 VMSTATE_UINT32(env.v7m.basepri[M_REG_S], ARMCPU),
H A Dgdbstub.c361 ptr = &env->v7m.basepri[sec]; in m_sysreg_ptr()
H A Dcpu.h544 uint32_t basepri[M_REG_NUM_BANKS]; member