From owner-cvs-src-old@FreeBSD.ORG Sat Jul 2 12:56:23 2011 Return-Path: Delivered-To: cvs-src-old@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id BB1FE10656D1 for ; Sat, 2 Jul 2011 12:56:23 +0000 (UTC) (envelope-from marius@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [IPv6:2001:4f8:fff6::29]) by mx1.freebsd.org (Postfix) with ESMTP id A9D088FC15 for ; Sat, 2 Jul 2011 12:56:23 +0000 (UTC) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.14.4/8.14.4) with ESMTP id p62CuNcA078773 for ; Sat, 2 Jul 2011 12:56:23 GMT (envelope-from marius@repoman.freebsd.org) Received: (from svn2cvs@localhost) by repoman.freebsd.org (8.14.4/8.14.4/Submit) id p62CuN8t078772 for cvs-src-old@freebsd.org; Sat, 2 Jul 2011 12:56:23 GMT (envelope-from marius@repoman.freebsd.org) Message-Id: <201107021256.p62CuN8t078772@repoman.freebsd.org> X-Authentication-Warning: repoman.freebsd.org: svn2cvs set sender to marius@repoman.freebsd.org using -f From: Marius Strobl Date: Sat, 2 Jul 2011 12:56:03 +0000 (UTC) To: cvs-src-old@freebsd.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: src/sys/sparc64/sparc64 exception.S interrupt.S X-BeenThere: cvs-src-old@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: **OBSOLETE** CVS commit messages for the src tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 02 Jul 2011 12:56:23 -0000 marius 2011-07-02 12:56:03 UTC FreeBSD src repository Modified files: sys/sparc64/sparc64 exception.S interrupt.S Log: SVN rev 223721 on 2011-07-02 12:56:03Z by marius UltraSPARC-IV CPUs seem to be affected by a not publicly documented erratum causing them to trigger stray vector interrupts accompanied by a state in which they even fault on locked TLB entries. Just retrying the instruction in that case gets the CPU back on track though. OpenSolaris also just ignores a certain number of stray vector interrupts. While at it, implement the stray vector interrupt handling for SPARC64-VI which use these for indicating uncorrectable errors in interrupt packets. Revision Changes Path 1.89 +2 -1 src/sys/sparc64/sparc64/exception.S 1.13 +24 -0 src/sys/sparc64/sparc64/interrupt.S