From owner-cvs-all@FreeBSD.ORG Wed Jun 23 15:29:48 2004 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id DB64E16A4CE; Wed, 23 Jun 2004 15:29:48 +0000 (GMT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id D2B7243D2F; Wed, 23 Jun 2004 15:29:48 +0000 (GMT) (envelope-from jhb@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.11/8.12.11) with ESMTP id i5NFTKPv056518; Wed, 23 Jun 2004 15:29:20 GMT (envelope-from jhb@repoman.freebsd.org) Received: (from jhb@localhost) by repoman.freebsd.org (8.12.11/8.12.11/Submit) id i5NFTKPc056517; Wed, 23 Jun 2004 15:29:20 GMT (envelope-from jhb) Message-Id: <200406231529.i5NFTKPc056517@repoman.freebsd.org> From: John Baldwin Date: Wed, 23 Jun 2004 15:29:20 +0000 (UTC) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: src/sys/i386/i386 io_apic.c mptable.c src/sys/i386/include apicvar.h X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 23 Jun 2004 15:29:49 -0000 jhb 2004-06-23 15:29:20 UTC FreeBSD src repository Modified files: sys/i386/i386 io_apic.c mptable.c sys/i386/include apicvar.h Log: Various cleanups in support of a future ioapic_config_intr() function: - Allow ioapic_set_{nmi,smi,extint}() to be called multiple times on the same pin so long as the pin's mode is the same as the mode being requested. - Add a notion of bus type for the interrupt associated with interrupt pin. This is needed so that we can force all EISA interrupts to be active high in the forthcoming ioapic_config_intr(). - Fix a bug for EISA systems that didn't remap IRQs. This would have broken EISA systems that tried to disable mixed mode for IRQ 0. Revision Changes Path 1.12 +93 -29 src/sys/i386/i386/io_apic.c 1.234 +17 -3 src/sys/i386/i386/mptable.c 1.8 +7 -0 src/sys/i386/include/apicvar.h