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.c2492 return env->v7m.basepri[M_REG_NS]; in HELPER()
2545 return env->v7m.basepri[env->v7m.secure]; in HELPER()
2620 env->v7m.basepri[M_REG_NS] = val & 0xff; in HELPER()
2723 env->v7m.basepri[env->v7m.secure] = val & 0xff; in HELPER()
2730 if (val != 0 && (val < env->v7m.basepri[env->v7m.secure] in HELPER()
2731 || env->v7m.basepri[env->v7m.secure] == 0)) { in HELPER()
2732 env->v7m.basepri[env->v7m.secure] = val; in HELPER()
/openbmc/qemu/target/arm/
H A Dmachine.c537 VMSTATE_UINT32(env.v7m.basepri[M_REG_NS], ARMCPU),
722 VMSTATE_UINT32(env.v7m.basepri[M_REG_S], ARMCPU),
H A Dgdbstub.c373 ptr = &env->v7m.basepri[sec]; in m_sysreg_ptr()
H A Dcpu.h597 uint32_t basepri[M_REG_NUM_BANKS]; member