Home | History | Annotate | Download | only in mvme

Lines Matching defs:vec

222 	int vec;
224 vec = (int) arg; /* 0x08 <= vec <= 0x1f */
228 VME2_LOCAL_INTERRUPT(vec));
230 isr = &vme_two_handlers[vec - VME2_VECTOR_LOCAL_OFFSET];
234 printf("vmetwo: Spurious local interrupt, vector 0x%x\n", vec);
240 vmetwo_local_intr_establish(int pri, int vec, int (*hand)(void *), void *arg, struct evcnt *evcnt)
243 vmetwo_intr_establish(vmetwo_sc, pri, pri, vec, 1, hand, arg, evcnt);
248 vmetwo_intr_establish(void *csc, int prior, int lvl, int vec, int first, int (*hand)(void *), void *arg, struct evcnt *evcnt)
263 if (vec >= VME2_VECTOR_LOCAL_MIN && vec <= VME2_VECTOR_LOCAL_MAX) {
269 vme_two_handlers[vec - VME2_VECTOR_LOCAL_MIN].isr_hand = hand;
270 vme_two_handlers[vec - VME2_VECTOR_LOCAL_MIN].isr_arg = arg;
272 arg = (void *) (vec - VME2_VECTOR_BASE);
277 bitoff = vec - VME2_VECTOR_BASE;
290 (*sc->sc_isrlink)(sc->sc_isrcookie, hand, arg, prior, vec, evcnt);
344 vmetwo_intr_disestablish(void *csc, int lvl, int vec, int last, struct evcnt *evcnt)
359 if (vec >= VME2_VECTOR_LOCAL_MIN && vec <= VME2_VECTOR_LOCAL_MAX) {
364 bitoff = vec - VME2_VECTOR_BASE;
365 vme_two_handlers[vec - VME2_VECTOR_LOCAL_MIN].isr_hand = NULL;
400 VME2_LOCAL_INTERRUPT(vec));
406 (*sc->sc_isrunlink)(sc->sc_isrcookie, vec);