| /src/sys/arch/sparc64/sparc64/ |
| intr.c | 231 ("%s: level %x ivec %x inumber %x pil %x\n", 250 printf("\nintr_establish: NULL vector fun %p arg %p pil %p\n", 280 printf("\nintr_establish: vector %x pil %x mapintr %p " 297 sparc_softintr_establish(int pil, int (*fun)(void *), void *arg) 303 ih->ih_pil = pil; 334 int pil; local 338 pil = IPL_SOFTBIO; 341 pil = IPL_SOFTNET; 344 pil = IPL_SOFTSERIAL; 347 pil = IPL_SOFTCLOCK [all...] |
| clock.c | 360 tickintr_establish(int pil, int (*fun)(void *)) 366 ih = sparc_softintr_establish(pil, fun, NULL); 369 intr_establish(pil, true, ih); 381 stickintr_establish(int pil, int (*fun)(void *)) 387 ih = sparc_softintr_establish(pil, fun, NULL); 390 intr_establish(pil, true, ih); 404 stick2eintr_establish(int pil, int (*fun)(void *)) 410 ih = sparc_softintr_establish(pil, fun, NULL); 413 intr_establish(pil, true, ih);
|
| locore.s | 1288 wrpr g0, 15, %pil /* t1 = splhigh() */ 1831 * We will assume that %pil is not lost so we won't bother to save it 1992 wrpr %g0, 15, %pil ! Disable interrupts, too 2462 * We will assume that %pil is not lost so we won't bother to save it 2519 rdpr %pil, %g4 2603 * We will assume that %pil is not lost so we won't bother to save it 2706 * We will assume that %pil is not lost so we won't bother to save it 2761 rdpr %pil, %g4 2991 rdpr %pil, %g5 3220 rdpr %pil, %g [all...] |
| machdep.c | 2378 sparc_mainbus_intr_establish(bus_space_tag_t t, int pil, int level, 2386 intr_establish(pil, level != IPL_VM, ih);
|
| /src/sys/arch/sparc/sparc/ |
| intr.c | 707 panic("intr_establish: class lvl (%d) < pil (%d)\n", 710 /* pre-shift to PIL field in %psr */ 743 int sic_pil; /* Actual machine PIL that is used */ 770 int pil; local 783 pil = pilreq = level; 787 pil = 1; 790 pil = 4; 793 pil = 6; 799 sic->sic_pil = pil; 819 * pre-shift to PIL field in %ps [all...] |
| pci_machdep.c | 518 int pil; local 520 pil = mspcic_assigned_interrupt(ih); 521 snprintf(buf, len, "line %d (pil %d)", ih, pil); 562 * pil the handler was established for, but we don't need to
|
| msiiep.c | 387 * Get the PIL currently assigned for this interrupt input line. 558 * for ms-IIep. The PIL for each line is programmable via pcic interrupt 567 int pil; local 571 /* use pil set-up by prom */ 572 pil = mspcic_assigned_interrupt(line); 573 if (pil == -1) 578 intr_establish(pil, ipl, ih, fastvec, false);
|
| cpu.c | 729 u_int pil; local 759 pil = (getpsr() & PSR_PIL) >> 8; 761 if (cold || pil <= IPL_SCHED) 775 cpu_number(), func, pil, pc); 814 raise_ipi(cpi,13+fasttrap);/*xcall_cookie->pil*/
|
| machdep.c | 3011 sparc_mainbus_intr_establish(bus_space_tag_t t, int pil, int level, 3020 intr_establish(pil, level, ih, fastvec, false);
|
| /src/sys/arch/sparc/dev/ |
| sbus.c | 580 int pil; local 588 pil = pri & ~SBUS_INTR_COMPAT; 590 pil = sc->sc_intr2ipl[pri]; 594 intr_establish(pil, level, ih, fastvec, false);
|
| vme_machdep.c | 753 int pil; local 756 pil = vme_ipl_to_pil[svih->pri]; 758 if (level < pil) 759 panic("vme_intr_establish: class lvl (%d) < pil (%d)\n", 760 level, pil); 769 for (ih = intrhand[pil]; ih != NULL; ih = ih->ih_next) 777 intr_establish(pil, 0, ih, NULL, false);
|
| /src/sys/dev/pci/ |
| pccbb.c | 1100 struct pccbb_intrhand_list *pil; local 1103 LIST_FOREACH(pil, &sc->sc_pil, pil_next) { 1104 s = splraiseipl(pil->pil_icookie); 1105 val = (*pil->pil_func)(pil->pil_arg); 1709 struct pccbb_intrhand_list *pil, *newpil; local 1732 for (pil = LIST_FIRST(&sc->sc_pil); 1733 LIST_NEXT(pil, pil_next) != NULL; 1734 pil = LIST_NEXT(pil, pil_next)) 1757 struct pccbb_intrhand_list *pil; local [all...] |
| /src/sys/arch/sparc64/include/ |
| psl.h | 53 * | impl | ver | icc | reserved |E|E| pil |S|P|E| CWP | 426 * GCC pseudo-functions for manipulating PIL 445 __asm volatile("rdpr %%pil,%0" : "=r" (oldpil)); \ 447 __asm volatile("wrpr %%g0,%0,%%pil" : : "n" (newpil) : "memory"); \ 455 __asm volatile("rdpr %%pil,%0" : "=r" (oldpil)); \ 459 __asm volatile("wrpr %%g0,%0,%%pil" : : "n" (newpil) : "memory"); \ 469 __asm volatile("rdpr %%pil,%0" : "=r" (oldpil)); \ 470 __asm volatile("wrpr %%g0,%0,%%pil" : : "n" (newpil) : "memory"); \ 478 __asm volatile("rdpr %%pil,%0" : "=r" (oldpil)); \ 481 __asm volatile("wrpr %%g0,%0,%%pil" : : "n" (newpil) : "memory"); 553 int pil; local [all...] |
| /src/sys/arch/sun68k/sun68k/ |
| bus.c | 691 sun68k_mainbus_intr_establish(bus_space_tag_t t, int pil, int level, int flags, 695 isr_add_autovect(handler, arg, pil);
|
| /src/sys/arch/sparc/stand/ofwboot/ |
| srt0.s | 101 wrpr %g0, 0, %pil ! So I lied
|