From owner-cvs-all@FreeBSD.ORG Fri Nov 14 11:10:14 2003 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 4DDAC16A4CE; Fri, 14 Nov 2003 11:10:14 -0800 (PST) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id C326543FD7; Fri, 14 Nov 2003 11:10:13 -0800 (PST) (envelope-from jhb@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.9/8.12.9) with ESMTP id hAEJADXJ059894; Fri, 14 Nov 2003 11:10:13 -0800 (PST) (envelope-from jhb@repoman.freebsd.org) Received: (from jhb@localhost) by repoman.freebsd.org (8.12.9/8.12.9/Submit) id hAEJADK2059892; Fri, 14 Nov 2003 11:10:13 -0800 (PST) (envelope-from jhb) Message-Id: <200311141910.hAEJADK2059892@repoman.freebsd.org> From: John Baldwin Date: Fri, 14 Nov 2003 11:10:13 -0800 (PST) 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 apic_vector.s local_apic.c src/sys/i386/include apicvar.h intr_machdep.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: Fri, 14 Nov 2003 19:10:14 -0000 jhb 2003/11/14 11:10:13 PST FreeBSD src repository Modified files: sys/i386/i386 apic_vector.s local_apic.c sys/i386/include apicvar.h intr_machdep.h Log: Shuffle the APIC interrupt vectors around a bit: - Move the IPI and local APIC interrupt vectors up into the 0xf0 - 0xff range. The pmap lazyfix IPI was reordered down next to the TLB shootdowns to avoid conflicting with the spurious interrupt vector. - Move the base of APIC interrupts up 16 so that the first 16 APIC interrupts do not overlap the vectors used by the ATPIC. - Remove bogus interrupt vector reservations for LINT[01]. - Now that 0xc0 - 0xef are available, use them for device interrupts. This increases the number of APIC device interrupts to 191. - Increase the system-wide number of global interrupts to 191 to catch up to more APIC interrupts. Requested by: peter (2) Revision Changes Path 1.94 +2 -0 src/sys/i386/i386/apic_vector.s 1.3 +10 -6 src/sys/i386/i386/local_apic.c 1.4 +13 -11 src/sys/i386/include/apicvar.h 1.2 +2 -2 src/sys/i386/include/intr_machdep.h