From owner-freebsd-current@FreeBSD.ORG Fri Feb 6 11:38:16 2004 Return-Path: Delivered-To: freebsd-current@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 5159316A4CF for ; Fri, 6 Feb 2004 11:38:16 -0800 (PST) Received: from root.org (root.org [67.118.192.226]) by mx1.FreeBSD.org (Postfix) with SMTP id 0D3CC43D68 for ; Fri, 6 Feb 2004 11:38:15 -0800 (PST) (envelope-from nate@root.org) Received: (qmail 53884 invoked by uid 1000); 6 Feb 2004 19:38:15 -0000 Date: Fri, 6 Feb 2004 11:38:15 -0800 (PST) From: Nate Lawson To: John Baldwin In-Reply-To: <200402061345.39109.jhb@FreeBSD.org> Message-ID: <20040206113204.K53518@root.org> References: <20040205175123.Q49384@root.org> <200402061345.39109.jhb@FreeBSD.org> MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII cc: current@freebsd.org Subject: Re: Interrupt storm on acpi0 occurred after madt.c change X-BeenThere: freebsd-current@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: Discussions about the use of FreeBSD-current List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 06 Feb 2004 19:38:16 -0000 On Fri, 6 Feb 2004, John Baldwin wrote: > On Thursday 05 February 2004 08:54 pm, Nate Lawson wrote: > > Actually, after looking at Peter's MADT, it appears it does have an > > override from 9 to 20 with the polarity "conforming" and level-triggered. > > I assume that conforming means low for his system. > > Does he have conforming polarity or active-hi? If it's conforming then I > might be able to work around this. I thought it was acthive-hi though. > (Other broken boards use active-hi / level but need active-lo / level to > work.) Conforming. Here's the override entry from his ASL: Type=INT Override BUS=0 IRQ=9 INTR=20 Flags={Polarity=conforming, Trigger=level} So since the bus type is always ISA, you should treat "conforming" as active-hi for all override directives. You should also explicitly check the bus field for 0 (ISA) and if it's something different, ignore the override since it is probably corrupt. -Nate