Skip site navigation (1)Skip section navigation (2)
Date:      Wed, 2 Nov 2005 15:31:28 -0500
From:      John Baldwin <jhb@freebsd.org>
To:        src-committers@freebsd.org
Cc:        cvs-src@freebsd.org, cvs-all@freebsd.org
Subject:   Re: cvs commit: src/sys/amd64/amd64 io_apic.c local_apic.c src/sys/amd64/include apicvar.h intr_machdep.h src/sys/i386/i386 io_apic.c local_apic.c src/sys/i386/include apicvar.h intr_machdep.h
Message-ID:  <200511021531.31837.jhb@freebsd.org>
In-Reply-To: <200511022011.jA2KBlHQ005559@repoman.freebsd.org>
References:  <200511022011.jA2KBlHQ005559@repoman.freebsd.org>

next in thread | previous in thread | raw e-mail | index | archive | help
On Wednesday 02 November 2005 03:11 pm, John Baldwin wrote:
> jhb         2005-11-02 20:11:47 UTC
>
>   FreeBSD src repository
>
>   Modified files:
>     sys/amd64/amd64      io_apic.c local_apic.c
>     sys/amd64/include    apicvar.h intr_machdep.h
>     sys/i386/i386        io_apic.c local_apic.c
>     sys/i386/include     apicvar.h intr_machdep.h
>   Log:
>   Change the x86 code to allocate IDT vectors on-demand when an interrupt
>   source is first enabled similar to how intr_event's now allocate ithreads
>   on-demand.  Previously, we would map IDT vectors 1:1 to IRQs.  Since we
>   only have 191 available IDT vectors for I/O interrupts, this limited us
>   to only supporting IRQs 0-190 corresponding to the first 190 I/O APIC
>   intpins.  On many machines, however, each PCI-X bus has its own APIC even
>   though it only has 1 or 2 devices, thus, we were reserving between 24 and
>   32 IRQs just for 1 or 2 devices and thus 24 or 32 IDT vectors.  With this
>   change, a machine with 100 IRQs but only 5 in use will only use up 5 IDT
>   vectors.  Also, this change provides an API (apic_alloc_vector() and
>   apic_free_vector()) that will allow a future MSI interrupt source driver
> to request IDT vectors for use by MSI interrupts on x86 machines.
>
>   Tested on:      amd64, i386

Forgot to mention that for now the algorithm is a very simple brain-dead one 
that just assigns each device interrupt the first free IDT vector and panics 
if all 191 are in use.

-- 
John Baldwin <jhb@FreeBSD.org>  <><  http://www.FreeBSD.org/~jhb/
"Power Users Use the Power to Serve"  =  http://www.FreeBSD.org



Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?200511021531.31837.jhb>