/src/sys/arch/arm/at91/ |
at91aic.c | 365 static inline void intr_process(struct intrq *iq, int pcpl, struct trapframe *frame); 368 intr_process(struct intrq *iq, int pcpl, struct trapframe *frame) 378 if ((1U << intr) & aic_imask[pcpl]) { 379 panic("interrupt %d should be masked! (aic_imask=0x%X)", intr, aic_imask[pcpl]); 402 set_curcpl(pcpl); 403 at91_set_intrmask(aic_imask[pcpl]); 410 int pcpl = curcpl(); local in function:at91aic_intr_dispatch 416 intr_process(iq, pcpl, frame); 427 int pcpl = curcpl(); 431 if ((ipr & (1U << irq) & ~aic_imask[pcpl])) 446 int pcpl = curcpl(); local in function:at91aic_intr_poll [all...] |
/src/sys/arch/evbarm/ifpga/ |
ifpga_intr.c | 301 int oldirqstate, pcpl, irq, ibit, hwpend; local in function:ifpga_intr_dispatch 304 pcpl = ci->ci_cpl; 325 if (pcpl & ibit) { 346 ci->ci_cpl = pcpl; 348 hwpend |= (ifpga_ipending & IFPGA_INTR_HWMASK) & ~pcpl;
|
/src/sys/arch/evbarm/iq80310/ |
iq80310_intr.c | 419 int oldirqstate, pcpl, irq, ibit, hwpend, rv; local in function:iq80310_intr_dispatch 430 pcpl = ci->ci_cpl; 442 if (pcpl & ibit) { 466 ci->ci_cpl = pcpl;
|
/src/sys/arch/powerpc/ibm4xx/ |
clock.c | 120 int pcpl; local in function:decr_intr 140 pcpl = splclock(); 147 if (pcpl >= IPL_CLOCK) { 168 splx(pcpl);
|
/src/sys/arch/arm/ep93xx/ |
ep93xx_intr.c | 338 int pcpl; local in function:ep93xx_intr_dispatch 343 pcpl = curcpl(); 348 hardware_spl_level = pcpl; 349 ep93xx_set_intrmask(vic1_imask[pcpl] | vic1_hwpend, 350 vic2_imask[pcpl] | vic2_hwpend); 352 vic1_hwpend &= ~vic1_imask[pcpl]; 353 vic2_hwpend &= ~vic2_imask[pcpl]; 381 set_curcpl(pcpl); 382 hardware_spl_level = pcpl; 383 ep93xx_set_intrmask(vic1_imask[pcpl], vic2_imask[pcpl]) [all...] |
/src/sys/arch/powerpc/pic/ |
intr.c | 524 const int pcpl = ci->ci_cpl; local in function:pic_do_pending_int 530 while ((vpend = (ci->ci_ipending & ~imask[pcpl])) != 0) { 548 ci->ci_cpl = pcpl; /* Don't use splx... we are here already! */ 558 (IPL_SOFTMASK << pcpl); 566 powerpc_softint(ci, pcpl, 569 ci->ci_cpl = pcpl; 570 if (__predict_false(ci->ci_ipending & ~imask[pcpl])) 587 const int pcpl = ci->ci_cpl; local in function:pic_handle_intr 605 if ((imask[pcpl] & v_imen) != 0) { 620 ci->ci_cpl = pcpl; [all...] |