Lines Matching defs:ipl
483 int ipl = APIC_PCINT_IPL;
485 apic_cpcovf_vect = apix_get_ipivect(ipl, -1);
488 (void) add_avintr(NULL, ipl,
518 int ipl = 0xf; /* get highest priority intr */
519 apic_errvect = apix_get_ipivect(ipl, -1);
525 (void) add_avintr(NULL, ipl,
546 int ipl = 0x2;
547 apic_cmci_vect = apix_get_ipivect(ipl, -1);
550 (void) add_avintr(NULL, ipl,
648 apix_intr_enter(int ipl, int *vectorp)
706 if ((nipl > ipl) && (nipl > cpu->cpu_base_spl)) {
755 * given ipl, but apix never uses the TPR and we never mask a subset of the
762 * curr IF | ipl == 15 ipl != 15
768 apix_setspl(int ipl)
771 * Interrupts at ipl above this cannot be in progress, so the following
774 apic_cpus[psm_get_cpu_id()].aci_ISR_in_progress &= (2 << ipl) - 1;
776 if (ipl == XC_HI_PIL)
781 apix_addspl(int virtvec, int ipl, int min_ipl, int max_ipl)
787 UNREFERENCED_3PARAMETER(ipl, min_ipl, max_ipl);
814 apix_delspl(int virtvec, int ipl, int min_ipl, int max_ipl)
820 UNREFERENCED_3PARAMETER(ipl, min_ipl, max_ipl);
973 apix_get_ipivect(int ipl, int type)
977 if ((vector = apix_alloc_ipi(ipl)) > 0) {
979 apic_resv_vector[ipl] = vector;
987 apix_get_clkvect(int ipl)
991 if ((vector = apix_get_ipivect(ipl, -1)) == -1)