HomeSort by: relevance | last modified time | path
    Searched refs:softints (Results 1 - 9 of 9) sorted by relevancy

  /src/sys/arch/powerpc/powerpc/
softint_machdep.c 69 u_int softints; local in function:powerpc_softint
76 while ((softints = (ci->ci_data.cpu_softints & softint_mask)) != 0) {
78 if (softints & (1 << IPL_SOFTSERIAL)) {
83 if (softints & (1 << IPL_SOFTNET)) {
88 if (softints & (1 << IPL_SOFTBIO)) {
93 if (softints & (1 << IPL_SOFTCLOCK)) {
99 KASSERT(softints == (1 << IPL_NONE));
  /src/sys/arch/riscv/riscv/
softint_machdep.c 92 u_int softints = ci->ci_softints & softiplmask; local in function:softint_deliver
93 KASSERT((softints != 0) == ((ci->ci_softints >> opl) != 0));
94 KASSERT(opl == IPL_NONE || (softints & (1 << (opl - IPL_SOFTCLOCK))) == 0);
95 if (softints == 0) {
111 panic("dosoftints wtf (softints=%u?, ipl=%d)", softints, opl);
  /src/sys/arch/mips/mips/
mips_softint.c 96 * priority softints are always done first.
99 if (softints & SOFTINT_##level## _MASK) { \
133 u_int softints = ci->ci_softints & mask; local in function:softint_process
134 if (softints == 0)
locore_mips1.S 534 and a0, s1, MIPS_SOFT_INT_MASK # were softints enabled?
537 mfc0 v0, MIPS_COP_0_CAUSE # grab the pending softints
539 and a0, v0 # are softints pending
550 INT_L t0, CPU_INFO_SOFTINTS(s2) # get pending softints
826 * This an interrupt from user mode so both softints must be enabled.
830 and a0, s1, MIPS_SOFT_INT_MASK # get softints enabled bits
835 mfc0 a0, MIPS_COP_0_CAUSE # grab the pending softints
837 and a0, MIPS_SOFT_INT_MASK # are there softints pending
mipsX_subr.S 1206 and a0, s1, MIPS_SOFT_INT_MASK # were softints enabled?
1209 mfc0 v0, MIPS_COP_0_CAUSE # grab the pending softints
1211 and a0, v0 # are softints pending
1222 INT_L t0, CPU_INFO_SOFTINTS(s2) # get pending softints
1579 * This an interrupt from user mode so both softints must be enabled.
1583 and a0, s1, MIPS_SOFT_INT_MASK # get softints enabled bits
1588 mfc0 a0, MIPS_COP_0_CAUSE # grab the pending softints
1590 and a0, MIPS_SOFT_INT_MASK # are there softints pending
  /src/sys/arch/aarch64/aarch64/
cpu_machdep.c 127 u_int softints = ci->ci_softints & softiplmask; local in function:dosoftints
128 KASSERT((softints != 0) == ((ci->ci_softints >> opl) != 0));
130 (softints & (1 << (opl - IPL_SOFTCLOCK))) == 0);
131 if (softints == 0) {
154 panic("dosoftints wtf (softints=%u?, ipl=%d)", softints, opl);
  /src/sys/arch/arm/arm32/
arm32_machdep.c 696 u_int softints = ci->ci_softints & softiplmask; local in function:dosoftints
697 KASSERT((softints != 0) == ((ci->ci_softints >> opl) != 0));
698 KASSERT(opl == IPL_NONE || (softints & (1 << (opl - IPL_SOFTCLOCK))) == 0);
699 if (softints == 0) {
714 panic("dosoftints wtf (softints=%u?, ipl=%d)", softints, opl);
  /src/sys/arch/powerpc/pic/
intr.c 557 const u_int softints = ci->ci_data.cpu_softints & local in function:pic_do_pending_int
563 if (__predict_false(softints != 0)) {
  /src/sys/arch/powerpc/booke/
e500_intr.c 571 const u_int softints = ci->ci_data.cpu_softints & (IPL_SOFTMASK << ipl); local in function:e500_splx
572 if (__predict_false(softints != 0)) {
1067 * Before exiting, deal with any softints that need to be dealt with.
1069 const u_int softints = ci->ci_data.cpu_softints & (IPL_SOFTMASK << old_ipl); local in function:e500_extintr
1070 if (__predict_false(softints != 0)) {

Completed in 47 milliseconds