2 * Copyright (c) 2003 Matthew Dillon <dillon@backplane.com> All rights reserved.
3 * Copyright (c) 1997, Stefan Esser <se@freebsd.org> All rights reserved.
5 * Redistribution and use in source and binary forms, with or without
6 * modification, are permitted provided that the following conditions
8 * 1. Redistributions of source code must retain the above copyright
9 * notice unmodified, this list of conditions, and the following
11 * 2. Redistributions in binary form must reproduce the above copyright
12 * notice, this list of conditions and the following disclaimer in the
13 * documentation and/or other materials provided with the distribution.
15 * THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS'' AND ANY EXPRESS OR
16 * IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES
17 * OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED.
18 * IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT, INDIRECT,
19 * INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT
20 * NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
21 * DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
22 * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
23 * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF
24 * THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
26 * $FreeBSD: src/sys/kern/kern_intr.c,v 1.24.2.1 2001/10/14 20:05:50 luigi Exp $
27 * $DragonFly: src/sys/kern/kern_intr.c,v 1.55 2008/09/01 12:49:00 sephe Exp $
31 #include <sys/param.h>
32 #include <sys/systm.h>
33 #include <sys/malloc.h>
34 #include <sys/kernel.h>
35 #include <sys/sysctl.h>
36 #include <sys/thread.h>
38 #include <sys/random.h>
39 #include <sys/serialize.h>
40 #include <sys/interrupt.h>
42 #include <sys/machintr.h>
44 #include <machine/frame.h>
46 #include <sys/interrupt.h>
48 #include <sys/thread2.h>
49 #include <sys/mplock2.h>
53 typedef struct intrec {
55 struct intr_info *info;
61 struct lwkt_serialize *serializer;
66 struct thread i_thread;
67 struct random_softc i_random;
69 long i_count; /* interrupts dispatched */
70 int i_mplock_required;
75 unsigned long i_straycount;
76 } intr_info_ary[MAX_INTS];
78 int max_installed_hard_intr;
79 int max_installed_soft_intr;
81 #define EMERGENCY_INTR_POLLING_FREQ_MAX 20000
83 static int sysctl_emergency_freq(SYSCTL_HANDLER_ARGS);
84 static int sysctl_emergency_enable(SYSCTL_HANDLER_ARGS);
85 static void emergency_intr_timer_callback(systimer_t, struct intrframe *);
86 static void ithread_handler(void *arg);
87 static void ithread_emergency(void *arg);
88 static void report_stray_interrupt(int intr, struct intr_info *info);
89 static void int_moveto_destcpu(int *, int *, int);
90 static void int_moveto_origcpu(int, int);
92 int intr_info_size = sizeof(intr_info_ary) / sizeof(intr_info_ary[0]);
94 static struct systimer emergency_intr_timer;
95 static struct thread emergency_intr_thread;
97 #define ISTATE_NOTHREAD 0
98 #define ISTATE_NORMAL 1
99 #define ISTATE_LIVELOCKED 2
101 static int livelock_limit = 40000;
102 static int livelock_lowater = 20000;
103 static int livelock_debug = -1;
104 SYSCTL_INT(_kern, OID_AUTO, livelock_limit,
105 CTLFLAG_RW, &livelock_limit, 0, "Livelock interrupt rate limit");
106 SYSCTL_INT(_kern, OID_AUTO, livelock_lowater,
107 CTLFLAG_RW, &livelock_lowater, 0, "Livelock low-water mark restore");
108 SYSCTL_INT(_kern, OID_AUTO, livelock_debug,
109 CTLFLAG_RW, &livelock_debug, 0, "Livelock debug intr#");
111 static int emergency_intr_enable = 0; /* emergency interrupt polling */
112 TUNABLE_INT("kern.emergency_intr_enable", &emergency_intr_enable);
113 SYSCTL_PROC(_kern, OID_AUTO, emergency_intr_enable, CTLTYPE_INT | CTLFLAG_RW,
114 0, 0, sysctl_emergency_enable, "I", "Emergency Interrupt Poll Enable");
116 static int emergency_intr_freq = 10; /* emergency polling frequency */
117 TUNABLE_INT("kern.emergency_intr_freq", &emergency_intr_freq);
118 SYSCTL_PROC(_kern, OID_AUTO, emergency_intr_freq, CTLTYPE_INT | CTLFLAG_RW,
119 0, 0, sysctl_emergency_freq, "I", "Emergency Interrupt Poll Frequency");
122 * Sysctl support routines
125 sysctl_emergency_enable(SYSCTL_HANDLER_ARGS)
129 enabled = emergency_intr_enable;
130 error = sysctl_handle_int(oidp, &enabled, 0, req);
131 if (error || req->newptr == NULL)
133 emergency_intr_enable = enabled;
134 if (emergency_intr_enable) {
135 systimer_adjust_periodic(&emergency_intr_timer,
136 emergency_intr_freq);
138 systimer_adjust_periodic(&emergency_intr_timer, 1);
144 sysctl_emergency_freq(SYSCTL_HANDLER_ARGS)
148 phz = emergency_intr_freq;
149 error = sysctl_handle_int(oidp, &phz, 0, req);
150 if (error || req->newptr == NULL)
154 else if (phz > EMERGENCY_INTR_POLLING_FREQ_MAX)
155 phz = EMERGENCY_INTR_POLLING_FREQ_MAX;
157 emergency_intr_freq = phz;
158 if (emergency_intr_enable) {
159 systimer_adjust_periodic(&emergency_intr_timer,
160 emergency_intr_freq);
162 systimer_adjust_periodic(&emergency_intr_timer, 1);
168 * Register an SWI or INTerrupt handler.
171 register_swi(int intr, inthand2_t *handler, void *arg, const char *name,
172 struct lwkt_serialize *serializer)
174 if (intr < FIRST_SOFTINT || intr >= MAX_INTS)
175 panic("register_swi: bad intr %d", intr);
176 return(register_int(intr, handler, arg, name, serializer, 0));
180 register_swi_mp(int intr, inthand2_t *handler, void *arg, const char *name,
181 struct lwkt_serialize *serializer)
183 if (intr < FIRST_SOFTINT || intr >= MAX_INTS)
184 panic("register_swi: bad intr %d", intr);
185 return(register_int(intr, handler, arg, name, serializer, INTR_MPSAFE));
189 register_int(int intr, inthand2_t *handler, void *arg, const char *name,
190 struct lwkt_serialize *serializer, int intr_flags)
192 struct intr_info *info;
193 struct intrec **list;
195 int orig_cpuid, cpuid;
197 if (intr < 0 || intr >= MAX_INTS)
198 panic("register_int: bad intr %d", intr);
201 info = &intr_info_ary[intr];
204 * Construct an interrupt handler record
206 rec = kmalloc(sizeof(struct intrec), M_DEVBUF, M_INTWAIT);
207 rec->name = kmalloc(strlen(name) + 1, M_DEVBUF, M_INTWAIT);
208 strcpy(rec->name, name);
211 rec->handler = handler;
214 rec->intr_flags = intr_flags;
216 rec->serializer = serializer;
219 * Create an emergency polling thread and set up a systimer to wake
222 if (emergency_intr_thread.td_kstack == NULL) {
223 lwkt_create(ithread_emergency, NULL, NULL,
224 &emergency_intr_thread,
225 TDF_STOPREQ|TDF_INTTHREAD|TDF_MPSAFE,
226 -1, "ithread emerg");
227 systimer_init_periodic_nq(&emergency_intr_timer,
228 emergency_intr_timer_callback, &emergency_intr_thread,
229 (emergency_intr_enable ? emergency_intr_freq : 1));
232 int_moveto_destcpu(&orig_cpuid, &cpuid, intr);
235 * Create an interrupt thread if necessary, leave it in an unscheduled
238 if (info->i_state == ISTATE_NOTHREAD) {
239 info->i_state = ISTATE_NORMAL;
240 lwkt_create((void *)ithread_handler, (void *)(intptr_t)intr, NULL,
241 &info->i_thread, TDF_STOPREQ|TDF_INTTHREAD|TDF_MPSAFE, -1,
243 if (intr >= FIRST_SOFTINT)
244 lwkt_setpri(&info->i_thread, TDPRI_SOFT_NORM);
246 lwkt_setpri(&info->i_thread, TDPRI_INT_MED);
247 info->i_thread.td_preemptable = lwkt_preempt;
250 list = &info->i_reclist;
253 * Keep track of how many fast and slow interrupts we have.
254 * Set i_mplock_required if any handler in the chain requires
255 * the MP lock to operate.
257 if ((intr_flags & INTR_MPSAFE) == 0)
258 info->i_mplock_required = 1;
259 if (intr_flags & INTR_CLOCK)
265 * Enable random number generation keying off of this interrupt.
267 if ((intr_flags & INTR_NOENTROPY) == 0 && info->i_random.sc_enabled == 0) {
268 info->i_random.sc_enabled = 1;
269 info->i_random.sc_intr = intr;
273 * Add the record to the interrupt list.
276 while (*list != NULL)
277 list = &(*list)->next;
282 * Update max_installed_hard_intr to make the emergency intr poll
283 * a bit more efficient.
285 if (intr < FIRST_SOFTINT) {
286 if (max_installed_hard_intr <= intr)
287 max_installed_hard_intr = intr + 1;
289 if (max_installed_soft_intr <= intr)
290 max_installed_soft_intr = intr + 1;
294 * Setup the machine level interrupt vector
296 * XXX temporary workaround for some ACPI brokedness. ACPI installs
297 * its interrupt too early, before the IOAPICs have been configured,
298 * which means the IOAPIC is not enabled by the registration of the
299 * ACPI interrupt. Anything else sharing that IRQ will wind up not
300 * being enabled. Temporarily work around the problem by always
301 * installing and enabling on every new interrupt handler, even
302 * if one has already been setup on that irq.
304 if (intr < FIRST_SOFTINT /* && info->i_slow + info->i_fast == 1*/) {
305 if (machintr_vector_setup(intr, intr_flags))
306 kprintf("machintr_vector_setup: failed on irq %d\n", intr);
309 int_moveto_origcpu(orig_cpuid, cpuid);
315 unregister_swi(void *id)
321 unregister_int(void *id)
323 struct intr_info *info;
324 struct intrec **list;
326 int intr, orig_cpuid, cpuid;
328 intr = ((intrec_t)id)->intr;
330 if (intr < 0 || intr >= MAX_INTS)
331 panic("register_int: bad intr %d", intr);
333 info = &intr_info_ary[intr];
335 int_moveto_destcpu(&orig_cpuid, &cpuid, intr);
338 * Remove the interrupt descriptor, adjust the descriptor count,
339 * and teardown the machine level vector if this was the last interrupt.
342 list = &info->i_reclist;
343 while ((rec = *list) != NULL) {
352 if (rec->intr_flags & INTR_CLOCK)
356 if (intr < FIRST_SOFTINT && info->i_fast + info->i_slow == 0)
357 machintr_vector_teardown(intr);
360 * Clear i_mplock_required if no handlers in the chain require the
363 for (rec0 = info->i_reclist; rec0; rec0 = rec0->next) {
364 if ((rec0->intr_flags & INTR_MPSAFE) == 0)
368 info->i_mplock_required = 0;
373 int_moveto_origcpu(orig_cpuid, cpuid);
379 kfree(rec->name, M_DEVBUF);
380 kfree(rec, M_DEVBUF);
382 kprintf("warning: unregister_int: int %d handler for %s not found\n",
383 intr, ((intrec_t)id)->name);
388 get_registered_name(int intr)
392 if (intr < 0 || intr >= MAX_INTS)
393 panic("register_int: bad intr %d", intr);
395 if ((rec = intr_info_ary[intr].i_reclist) == NULL)
404 count_registered_ints(int intr)
406 struct intr_info *info;
408 if (intr < 0 || intr >= MAX_INTS)
409 panic("register_int: bad intr %d", intr);
410 info = &intr_info_ary[intr];
411 return(info->i_fast + info->i_slow);
415 get_interrupt_counter(int intr)
417 struct intr_info *info;
419 if (intr < 0 || intr >= MAX_INTS)
420 panic("register_int: bad intr %d", intr);
421 info = &intr_info_ary[intr];
422 return(info->i_count);
427 swi_setpriority(int intr, int pri)
429 struct intr_info *info;
431 if (intr < FIRST_SOFTINT || intr >= MAX_INTS)
432 panic("register_swi: bad intr %d", intr);
433 info = &intr_info_ary[intr];
434 if (info->i_state != ISTATE_NOTHREAD)
435 lwkt_setpri(&info->i_thread, pri);
439 register_randintr(int intr)
441 struct intr_info *info;
443 if (intr < 0 || intr >= MAX_INTS)
444 panic("register_randintr: bad intr %d", intr);
445 info = &intr_info_ary[intr];
446 info->i_random.sc_intr = intr;
447 info->i_random.sc_enabled = 1;
451 unregister_randintr(int intr)
453 struct intr_info *info;
455 if (intr < 0 || intr >= MAX_INTS)
456 panic("register_swi: bad intr %d", intr);
457 info = &intr_info_ary[intr];
458 info->i_random.sc_enabled = -1;
462 next_registered_randintr(int intr)
464 struct intr_info *info;
466 if (intr < 0 || intr >= MAX_INTS)
467 panic("register_swi: bad intr %d", intr);
468 while (intr < MAX_INTS) {
469 info = &intr_info_ary[intr];
470 if (info->i_random.sc_enabled > 0)
478 * Dispatch an interrupt. If there's nothing to do we have a stray
479 * interrupt and can just return, leaving the interrupt masked.
481 * We need to schedule the interrupt and set its i_running bit. If
482 * we are not on the interrupt thread's cpu we have to send a message
483 * to the correct cpu that will issue the desired action (interlocking
484 * with the interrupt thread's critical section). We do NOT attempt to
485 * reschedule interrupts whos i_running bit is already set because
486 * this would prematurely wakeup a livelock-limited interrupt thread.
488 * i_running is only tested/set on the same cpu as the interrupt thread.
490 * We are NOT in a critical section, which will allow the scheduled
491 * interrupt to preempt us. The MP lock might *NOT* be held here.
496 sched_ithd_remote(void *arg)
498 sched_ithd((int)(intptr_t)arg);
506 struct intr_info *info;
508 info = &intr_info_ary[intr];
511 if (info->i_state != ISTATE_NOTHREAD) {
512 if (info->i_reclist == NULL) {
513 report_stray_interrupt(intr, info);
516 if (info->i_thread.td_gd == mycpu) {
517 if (info->i_running == 0) {
519 if (info->i_state != ISTATE_LIVELOCKED)
520 lwkt_schedule(&info->i_thread); /* MIGHT PREEMPT */
523 lwkt_send_ipiq(info->i_thread.td_gd,
524 sched_ithd_remote, (void *)(intptr_t)intr);
527 if (info->i_running == 0) {
529 if (info->i_state != ISTATE_LIVELOCKED)
530 lwkt_schedule(&info->i_thread); /* MIGHT PREEMPT */
535 report_stray_interrupt(intr, info);
540 report_stray_interrupt(int intr, struct intr_info *info)
542 ++info->i_straycount;
543 if (info->i_straycount < 10) {
544 if (info->i_errorticks == ticks)
546 info->i_errorticks = ticks;
547 kprintf("sched_ithd: stray interrupt %d on cpu %d\n",
549 } else if (info->i_straycount == 10) {
550 kprintf("sched_ithd: %ld stray interrupts %d on cpu %d - "
551 "there will be no further reports\n",
552 info->i_straycount, intr, mycpuid);
557 * This is run from a periodic SYSTIMER (and thus must be MP safe, the BGL
558 * might not be held).
561 ithread_livelock_wakeup(systimer_t st)
563 struct intr_info *info;
565 info = &intr_info_ary[(int)(intptr_t)st->data];
566 if (info->i_state != ISTATE_NOTHREAD)
567 lwkt_schedule(&info->i_thread);
571 * Schedule ithread within fast intr handler
573 * XXX Protect sched_ithd() call with gd_intr_nesting_level?
574 * Interrupts aren't enabled, but still...
577 ithread_fast_sched(int intr, thread_t td)
582 * We are already in critical section, exit it now to
587 crit_enter_quick(td);
593 * This function is called directly from the ICU or APIC vector code assembly
594 * to process an interrupt. The critical section and interrupt deferral
595 * checks have already been done but the function is entered WITHOUT
596 * a critical section held. The BGL may or may not be held.
598 * Must return non-zero if we do not want the vector code to re-enable
599 * the interrupt (which we don't if we have to schedule the interrupt)
601 int ithread_fast_handler(struct intrframe *frame);
604 ithread_fast_handler(struct intrframe *frame)
607 struct intr_info *info;
608 struct intrec **list;
613 intrec_t rec, next_rec;
617 intr = frame->if_vec;
621 /* We must be in critical section. */
622 KKASSERT(td->td_critcount);
624 info = &intr_info_ary[intr];
627 * If we are not processing any FAST interrupts, just schedule the thing.
629 if (info->i_fast == 0) {
631 ithread_fast_sched(intr, td);
636 * This should not normally occur since interrupts ought to be
637 * masked if the ithread has been scheduled or is running.
643 * Bump the interrupt nesting level to process any FAST interrupts.
644 * Obtain the MP lock as necessary. If the MP lock cannot be obtained,
645 * schedule the interrupt thread to deal with the issue instead.
647 * To reduce overhead, just leave the MP lock held once it has been
650 ++gd->gd_intr_nesting_level;
652 must_schedule = info->i_slow;
657 list = &info->i_reclist;
658 for (rec = *list; rec; rec = next_rec) {
659 next_rec = rec->next; /* rec may be invalid after call */
661 if (rec->intr_flags & INTR_CLOCK) {
663 if ((rec->intr_flags & INTR_MPSAFE) == 0 && got_mplock == 0) {
664 if (try_mplock() == 0) {
665 /* Couldn't get the MP lock; just schedule it. */
672 if (rec->serializer) {
673 must_schedule += lwkt_serialize_handler_try(
674 rec->serializer, rec->handler,
675 rec->argument, frame);
677 rec->handler(rec->argument, frame);
685 --gd->gd_intr_nesting_level;
692 * If we had a problem, or mixed fast and slow interrupt handlers are
693 * registered, schedule the ithread to catch the missed records (it
694 * will just re-run all of them). A return value of 0 indicates that
695 * all handlers have been run and the interrupt can be re-enabled, and
696 * a non-zero return indicates that the interrupt thread controls
699 if (must_schedule > 0)
700 ithread_fast_sched(intr, td);
701 else if (must_schedule == 0)
703 return(must_schedule);
707 * Interrupt threads run this as their main loop.
709 * The handler begins execution outside a critical section and no MP lock.
711 * The i_running state starts at 0. When an interrupt occurs, the hardware
712 * interrupt is disabled and sched_ithd() The HW interrupt remains disabled
713 * until all routines have run. We then call ithread_done() to reenable
714 * the HW interrupt and deschedule us until the next interrupt.
716 * We are responsible for atomically checking i_running and ithread_done()
717 * is responsible for atomically checking for platform-specific delayed
718 * interrupts. i_running for our irq is only set in the context of our cpu,
719 * so a critical section is a sufficient interlock.
721 #define LIVELOCK_TIMEFRAME(freq) ((freq) >> 2) /* 1/4 second */
724 ithread_handler(void *arg)
726 struct intr_info *info;
731 struct intrec **list;
734 struct systimer ill_timer; /* enforced freq. timer */
735 u_int ill_count; /* interrupt livelock counter */
738 intr = (int)(intptr_t)arg;
739 info = &intr_info_ary[intr];
740 list = &info->i_reclist;
743 * The loop must be entered with one critical section held. The thread
744 * is created with TDF_MPSAFE so the MP lock is not held on start.
747 lseconds = gd->gd_time_seconds;
753 * The chain is only considered MPSAFE if all its interrupt handlers
754 * are MPSAFE. However, if intr_mpsafe has been turned off we
755 * always operate with the BGL.
758 if (info->i_mplock_required != mpheld) {
759 if (info->i_mplock_required) {
760 KKASSERT(mpheld == 0);
764 KKASSERT(mpheld != 0);
772 * If an interrupt is pending, clear i_running and execute the
773 * handlers. Note that certain types of interrupts can re-trigger
774 * and set i_running again.
776 * Each handler is run in a critical section. Note that we run both
777 * FAST and SLOW designated service routines.
779 if (info->i_running) {
784 report_stray_interrupt(intr, info);
786 for (rec = *list; rec; rec = nrec) {
788 if (rec->serializer) {
789 lwkt_serialize_handler_call(rec->serializer, rec->handler,
790 rec->argument, NULL);
792 rec->handler(rec->argument, NULL);
798 * This is our interrupt hook to add rate randomness to the random
801 if (info->i_random.sc_enabled > 0)
802 add_interrupt_randomness(intr);
805 * Unmask the interrupt to allow it to trigger again. This only
806 * applies to certain types of interrupts (typ level interrupts).
807 * This can result in the interrupt retriggering, but the retrigger
808 * will not be processed until we cycle our critical section.
810 * Only unmask interrupts while handlers are installed. It is
811 * possible to hit a situation where no handlers are installed
812 * due to a device driver livelocking and then tearing down its
813 * interrupt on close (the parallel bus being a good example).
816 machintr_intren(intr);
819 * Do a quick exit/enter to catch any higher-priority interrupt
820 * sources, such as the statclock, so thread time accounting
821 * will still work. This may also cause an interrupt to re-trigger.
827 * LIVELOCK STATE MACHINE
829 switch(info->i_state) {
832 * Reset the count each second.
834 if (lseconds != gd->gd_time_seconds) {
835 lseconds = gd->gd_time_seconds;
840 * If we did not exceed the frequency limit, we are done.
841 * If the interrupt has not retriggered we deschedule ourselves.
843 if (ill_count <= livelock_limit) {
844 if (info->i_running == 0) {
845 lwkt_deschedule_self(gd->gd_curthread);
852 * Otherwise we are livelocked. Set up a periodic systimer
853 * to wake the thread up at the limit frequency.
855 kprintf("intr %d at %d/%d hz, livelocked limit engaged!\n",
856 intr, ill_count, livelock_limit);
857 info->i_state = ISTATE_LIVELOCKED;
858 if ((use_limit = livelock_limit) < 100)
860 else if (use_limit > 500000)
862 systimer_init_periodic_nq(&ill_timer, ithread_livelock_wakeup,
863 (void *)(intptr_t)intr, use_limit);
865 case ISTATE_LIVELOCKED:
867 * Wait for our periodic timer to go off. Since the interrupt
868 * has re-armed it can still set i_running, but it will not
869 * reschedule us while we are in a livelocked state.
871 lwkt_deschedule_self(gd->gd_curthread);
875 * Check once a second to see if the livelock condition no
878 if (lseconds != gd->gd_time_seconds) {
879 lseconds = gd->gd_time_seconds;
880 if (ill_count < livelock_lowater) {
881 info->i_state = ISTATE_NORMAL;
882 systimer_del(&ill_timer);
883 kprintf("intr %d at %d/%d hz, livelock removed\n",
884 intr, ill_count, livelock_lowater);
885 } else if (livelock_debug == intr ||
886 (bootverbose && cold)) {
887 kprintf("intr %d at %d/%d hz, in livelock\n",
888 intr, ill_count, livelock_lowater);
899 * Emergency interrupt polling thread. The thread begins execution
900 * outside a critical section with the BGL held.
902 * If emergency interrupt polling is enabled, this thread will
903 * execute all system interrupts not marked INTR_NOPOLL at the
904 * specified polling frequency.
906 * WARNING! This thread runs *ALL* interrupt service routines that
907 * are not marked INTR_NOPOLL, which basically means everything except
908 * the 8254 clock interrupt and the ATA interrupt. It has very high
909 * overhead and should only be used in situations where the machine
910 * cannot otherwise be made to work. Due to the severe performance
911 * degredation, it should not be enabled on production machines.
914 ithread_emergency(void *arg __unused)
916 struct intr_info *info;
923 for (intr = 0; intr < max_installed_hard_intr; ++intr) {
924 info = &intr_info_ary[intr];
925 for (rec = info->i_reclist; rec; rec = nrec) {
926 if ((rec->intr_flags & INTR_NOPOLL) == 0) {
927 if (rec->serializer) {
928 lwkt_serialize_handler_call(rec->serializer,
929 rec->handler, rec->argument, NULL);
931 rec->handler(rec->argument, NULL);
937 lwkt_deschedule_self(curthread);
943 * Systimer callback - schedule the emergency interrupt poll thread
944 * if emergency polling is enabled.
948 emergency_intr_timer_callback(systimer_t info, struct intrframe *frame __unused)
950 if (emergency_intr_enable)
951 lwkt_schedule(info->data);
955 ithread_cpuid(int intr)
957 const struct intr_info *info;
959 KKASSERT(intr >= 0 && intr < MAX_INTS);
960 info = &intr_info_ary[intr];
962 if (info->i_state == ISTATE_NOTHREAD)
964 return info->i_thread.td_gd->gd_cpuid;
968 * Sysctls used by systat and others: hw.intrnames and hw.intrcnt.
969 * The data for this machine dependent, and the declarations are in machine
970 * dependent code. The layout of intrnames and intrcnt however is machine
973 * We do not know the length of intrcnt and intrnames at compile time, so
974 * calculate things at run time.
978 sysctl_intrnames(SYSCTL_HANDLER_ARGS)
980 struct intr_info *info;
987 for (intr = 0; error == 0 && intr < MAX_INTS; ++intr) {
988 info = &intr_info_ary[intr];
992 for (rec = info->i_reclist; rec; rec = rec->next) {
993 ksnprintf(buf + len, sizeof(buf) - len, "%s%s",
994 (len ? "/" : ""), rec->name);
995 len += strlen(buf + len);
998 ksnprintf(buf, sizeof(buf), "irq%d", intr);
1001 error = SYSCTL_OUT(req, buf, len + 1);
1007 SYSCTL_PROC(_hw, OID_AUTO, intrnames, CTLTYPE_OPAQUE | CTLFLAG_RD,
1008 NULL, 0, sysctl_intrnames, "", "Interrupt Names");
1011 sysctl_intrcnt(SYSCTL_HANDLER_ARGS)
1013 struct intr_info *info;
1017 for (intr = 0; intr < max_installed_hard_intr; ++intr) {
1018 info = &intr_info_ary[intr];
1020 error = SYSCTL_OUT(req, &info->i_count, sizeof(info->i_count));
1024 for (intr = FIRST_SOFTINT; intr < max_installed_soft_intr; ++intr) {
1025 info = &intr_info_ary[intr];
1027 error = SYSCTL_OUT(req, &info->i_count, sizeof(info->i_count));
1035 SYSCTL_PROC(_hw, OID_AUTO, intrcnt, CTLTYPE_OPAQUE | CTLFLAG_RD,
1036 NULL, 0, sysctl_intrcnt, "", "Interrupt Counts");
1039 int_moveto_destcpu(int *orig_cpuid0, int *cpuid0, int intr)
1041 int orig_cpuid = mycpuid, cpuid;
1045 ksnprintf(envpath, sizeof(envpath), "hw.irq.%d.dest", intr);
1046 kgetenv_int(envpath, &cpuid);
1050 if (cpuid != orig_cpuid)
1051 lwkt_migratecpu(cpuid);
1053 *orig_cpuid0 = orig_cpuid;
1058 int_moveto_origcpu(int orig_cpuid, int cpuid)
1060 if (cpuid != orig_cpuid)
1061 lwkt_migratecpu(orig_cpuid);