diff options
author | jhb <jhb@FreeBSD.org> | 2005-10-25 19:48:48 +0000 |
---|---|---|
committer | jhb <jhb@FreeBSD.org> | 2005-10-25 19:48:48 +0000 |
commit | e20e5c07ce4cea9d83ea29f37035a800261a5025 (patch) | |
tree | c0e88867c475b0bb7f3b0c1dc5799cf5ad98997f /sys/sparc64 | |
parent | b5662e2acad3b391e8117ba16eaca7a1cb878179 (diff) | |
download | FreeBSD-src-e20e5c07ce4cea9d83ea29f37035a800261a5025.zip FreeBSD-src-e20e5c07ce4cea9d83ea29f37035a800261a5025.tar.gz |
Reorganize the interrupt handling code a bit to make a few things cleaner
and increase flexibility to allow various different approaches to be tried
in the future.
- Split struct ithd up into two pieces. struct intr_event holds the list
of interrupt handlers associated with interrupt sources.
struct intr_thread contains the data relative to an interrupt thread.
Currently we still provide a 1:1 relationship of events to threads
with the exception that events only have an associated thread if there
is at least one threaded interrupt handler attached to the event. This
means that on x86 we no longer have 4 bazillion interrupt threads with
no handlers. It also means that interrupt events with only INTR_FAST
handlers no longer have an associated thread either.
- Renamed struct intrhand to struct intr_handler to follow the struct
intr_foo naming convention. This did require renaming the powerpc
MD struct intr_handler to struct ppc_intr_handler.
- INTR_FAST no longer implies INTR_EXCL on all architectures except for
powerpc. This means that multiple INTR_FAST handlers can attach to the
same interrupt and that INTR_FAST and non-INTR_FAST handlers can attach
to the same interrupt. Sharing INTR_FAST handlers may not always be
desirable, but having sio(4) and uhci(4) fight over an IRQ isn't fun
either. Drivers can always still use INTR_EXCL to ask for an interrupt
exclusively. The way this sharing works is that when an interrupt
comes in, all the INTR_FAST handlers are executed first, and if any
threaded handlers exist, the interrupt thread is scheduled afterwards.
This type of layout also makes it possible to investigate using interrupt
filters ala OS X where the filter determines whether or not its companion
threaded handler should run.
- Aside from the INTR_FAST changes above, the impact on MD interrupt code
is mostly just 's/ithread/intr_event/'.
- A new MI ddb command 'show intrs' walks the list of interrupt events
dumping their state. It also has a '/v' verbose switch which dumps
info about all of the handlers attached to each event.
- We currently don't destroy an interrupt thread when the last threaded
handler is removed because it would suck for things like ppbus(8)'s
braindead behavior. The code is present, though, it is just under
#if 0 for now.
- Move the code to actually execute the threaded handlers for an interrrupt
event into a separate function so that ithread_loop() becomes more
readable. Previously this code was all in the middle of ithread_loop()
and indented halfway across the screen.
- Made struct intr_thread private to kern_intr.c and replaced td_ithd
with a thread private flag TDP_ITHREAD.
- In statclock, check curthread against idlethread directly rather than
curthread's proc against idlethread's proc. (Not really related to intr
changes)
Tested on: alpha, amd64, i386, sparc64
Tested on: arm, ia64 (older version of patch by cognet and marcel)
Diffstat (limited to 'sys/sparc64')
-rw-r--r-- | sys/sparc64/include/intr_machdep.h | 2 | ||||
-rw-r--r-- | sys/sparc64/sparc64/intr_machdep.c | 79 |
2 files changed, 44 insertions, 37 deletions
diff --git a/sys/sparc64/include/intr_machdep.h b/sys/sparc64/include/intr_machdep.h index 9d29730..2604583 100644 --- a/sys/sparc64/include/intr_machdep.h +++ b/sys/sparc64/include/intr_machdep.h @@ -67,7 +67,7 @@ struct intr_request { struct intr_vector { iv_func_t *iv_func; void *iv_arg; - struct ithd *iv_ithd; + struct intr_event *iv_event; u_int iv_pri; u_int iv_vec; }; diff --git a/sys/sparc64/sparc64/intr_machdep.c b/sys/sparc64/sparc64/intr_machdep.c index 24f71da..27166c4 100644 --- a/sys/sparc64/sparc64/intr_machdep.c +++ b/sys/sparc64/sparc64/intr_machdep.c @@ -227,38 +227,44 @@ void intr_init2() { - mtx_init(&intr_table_lock, "ithread table lock", NULL, MTX_SPIN); + mtx_init(&intr_table_lock, "intr table", NULL, MTX_SPIN); } static void intr_execute_handlers(void *cookie) { struct intr_vector *iv; - struct ithd *ithd; - struct intrhand *ih; - int error; + struct intr_event *ie; + struct intr_handler *ih; + int error, thread; iv = cookie; - ithd = iv->iv_ithd; + ie = iv->iv_event; + if (ie == NULL) { + intr_stray_vector(iv); + return; + } - if (ithd == NULL) - ih = NULL; - else - ih = TAILQ_FIRST(&ithd->it_handlers); - if (ih != NULL && ih->ih_flags & IH_FAST) { - /* Execute fast interrupt handlers directly. */ - TAILQ_FOREACH(ih, &ithd->it_handlers, ih_next) { - MPASS(ih->ih_flags & IH_FAST && - ih->ih_argument != NULL); - CTR3(KTR_INTR, "%s: executing handler %p(%p)", - __func__, ih->ih_handler, ih->ih_argument); - ih->ih_handler(ih->ih_argument); + /* Execute fast interrupt handlers directly. */ + thread = 0; + TAILQ_FOREACH(ih, &ie->ie_handlers, ih_next) { + if (!(ih->ih_flags & IH_FAST)) { + thread = 1; + continue; } - return; + MPASS(ih->ih_flags & IH_FAST && ih->ih_argument != NULL); + CTR3(KTR_INTR, "%s: executing handler %p(%p)", __func__, + ih->ih_handler, ih->ih_argument); + ih->ih_handler(ih->ih_argument); } /* Schedule a heavyweight interrupt process. */ - error = ithread_schedule(ithd); + if (thread) + error = intr_event_schedule_thread(ie); + else if (TAILQ_EMPTY(&ie->ie_handlers)) + error = EINVAL; + else + error = 0; if (error == EINVAL) intr_stray_vector(iv); } @@ -268,8 +274,8 @@ inthand_add(const char *name, int vec, void (*handler)(void *), void *arg, int flags, void **cookiep) { struct intr_vector *iv; - struct ithd *ithd; /* descriptor for the IRQ */ - struct ithd *orphan; + struct intr_event *ie; /* descriptor for the IRQ */ + struct intr_event *orphan; int errcode; /* @@ -278,27 +284,27 @@ inthand_add(const char *name, int vec, void (*handler)(void *), void *arg, */ iv = &intr_vectors[vec]; mtx_lock_spin(&intr_table_lock); - ithd = iv->iv_ithd; + ie = iv->iv_event; mtx_unlock_spin(&intr_table_lock); - if (ithd == NULL) { - errcode = ithread_create(&ithd, vec, 0, NULL, NULL, "vec%d:", - vec); + if (ie == NULL) { + errcode = intr_event_create(&ie, (void *)(intptr_t)vec, 0, NULL, + "vec%d:", vec); if (errcode) return (errcode); mtx_lock_spin(&intr_table_lock); - if (iv->iv_ithd == NULL) { - iv->iv_ithd = ithd; + if (iv->iv_event == NULL) { + iv->iv_event = ie; mtx_unlock_spin(&intr_table_lock); } else { - orphan = ithd; - ithd = iv->iv_ithd; + orphan = ie; + ie = iv->iv_event; mtx_unlock_spin(&intr_table_lock); - ithread_destroy(orphan); + intr_event_destroy(orphan); } } - errcode = ithread_add_handler(ithd, name, handler, arg, - ithread_priority(flags), flags, cookiep); + errcode = intr_event_add_handler(ie, name, handler, arg, + intr_priority(flags), flags, cookiep); if (errcode) return (errcode); @@ -307,7 +313,7 @@ inthand_add(const char *name, int vec, void (*handler)(void *), void *arg, intr_stray_count[vec] = 0; - intrcnt_updatename(vec, ithd->it_td->td_proc->p_comm, 0); + intrcnt_updatename(vec, ie->ie_fullname, 0); return (0); } @@ -318,15 +324,16 @@ inthand_remove(int vec, void *cookie) struct intr_vector *iv; int error; - error = ithread_remove_handler(cookie); + error = intr_event_remove_handler(cookie); if (error == 0) { /* * XXX: maybe this should be done regardless of whether - * ithread_remove_handler() succeeded? + * intr_event_remove_handler() succeeded? + * XXX: aren't the PIL's backwards below? */ iv = &intr_vectors[vec]; mtx_lock_spin(&intr_table_lock); - if (iv->iv_ithd == NULL) + if (iv->iv_event == NULL) intr_setup(PIL_ITHREAD, intr_fast, vec, intr_stray_vector, iv); else |