From owner-cvs-all@FreeBSD.ORG Thu Dec 23 20:42:54 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 1D0A116A4CE; Thu, 23 Dec 2004 20:42:54 +0000 (GMT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 0D08743D39; Thu, 23 Dec 2004 20:42:54 +0000 (GMT) (envelope-from jhb@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.1/8.13.1) with ESMTP id iBNKgrVZ078282; Thu, 23 Dec 2004 20:42:53 GMT (envelope-from jhb@repoman.freebsd.org) Received: (from jhb@localhost) by repoman.freebsd.org (8.13.1/8.13.1/Submit) id iBNKgrps078281; Thu, 23 Dec 2004 20:42:53 GMT (envelope-from jhb) Message-Id: <200412232042.iBNKgrps078281@repoman.freebsd.org> From: John Baldwin Date: Thu, 23 Dec 2004 20:42:53 +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 local_apic.c 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: Thu, 23 Dec 2004 20:42:54 -0000 jhb 2004-12-23 20:42:53 UTC FreeBSD src repository Modified files: sys/i386/i386 local_apic.c Log: - Give the timer, thermal, and error LVT entries an interrupt vector even though these aren't used yet. - Add missing function prototypes for some static functions. - Allow lvt_mode() to handle an LVT entry with a delivery mode of fixed. - Consolidate code duplicated in lapic_init() and lapic_setup() to program the spurious vector register of a local APIC in a static lapic_enable() function. - Dump the timer, thermal, error, and performance counter LVT entries during lapic_dump(). - Program LVT pins (currently only LINT0 and LINT1) after the local APIC has been software enabled via lapic_enable() since otherwise the LVT programming will not be able to unmask LVT sources. Revision Changes Path 1.11 +30 -22 src/sys/i386/i386/local_apic.c