Home | History | Annotate | Download | only in sbus

Lines Matching defs:softint

113 	void		*softint;	/* cookie for the softintr */
343 /* check interrupt options, decide if we need a softint */
374 * use a softint to bounce to the proper IPL.
376 printf("no usable HW interrupt found, using softint\n");
492 h->softint = NULL;
639 /* protect hardware access by splhigh against softint */
700 * Schedule softint to invoke driver interrupt
703 if (h->softint != NULL)
704 sparc_softintr_schedule(h->softint);
1032 h->softint = sparc_softintr_establish(ipl, stp4020_intr_dispatch, h);
1033 return h->softint;
1047 if (h->softint) {
1048 sparc_softintr_disestablish(h->softint);
1049 h->softint = NULL;