Return-Path: Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1757523AbYA0Vu5 (ORCPT ); Sun, 27 Jan 2008 16:50:57 -0500 Received: (majordomo@vger.kernel.org) by vger.kernel.org id S1752518AbYA0Vur (ORCPT ); Sun, 27 Jan 2008 16:50:47 -0500 Received: from smtp2.linux-foundation.org ([207.189.120.14]:39316 "EHLO smtp2.linux-foundation.org" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1751777AbYA0Vuq (ORCPT ); Sun, 27 Jan 2008 16:50:46 -0500 Date: Mon, 28 Jan 2008 08:50:24 +1100 (EST) From: Linus Torvalds X-X-Sender: torvalds@www.l.google.com To: Avuton Olrich cc: Zhao Yakui , Li Shaohua , Bjorn Helgaas , Thomas Renninger , Andrew Morton , "Linux-Kernel," , Alsa-Devel Subject: Re: a7839e96 (PNP: increase max resources) breaks my ALSA intel8x0 sound card In-Reply-To: <3aa654a40801270640s59cfdcc4lfa3fb487e0d9b799@mail.gmail.com> Message-ID: References: <3aa654a40801270640s59cfdcc4lfa3fb487e0d9b799@mail.gmail.com> User-Agent: Alpine 1.00 (LFD 882 2007-12-20) MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII Sender: linux-kernel-owner@vger.kernel.org List-ID: X-Mailing-List: linux-kernel@vger.kernel.org Content-Length: 1097 Lines: 27 On Sun, 27 Jan 2008, Avuton Olrich wrote: > > With v2.6.24 my second ALSA sound device stopped working. Hmm. Why is PnP ACPI called before PCI probing? That seems to be the problem here - we should *never* have any firmware allocation block known hardware BARs, they should only be blocking new dynamic allocations. Hmm. I wonder if the problem is that ACPIPnP marks the regions busy. That would be wrong. They shouldn't be busy, they should just "exist". A busy region will stop a "request_region()" (incorrect for this case - thats' not what the PnP resurce allocation should be all about), but an *existing* resource will just stop a new resource being dynamically assigned to that address (not not stop a known resource from using it). So maybe the ACPIPnP allocation is doen at the right moment, just doing the wrong thing.. Linus -- To unsubscribe from this list: send the line "unsubscribe linux-kernel" in the body of a message to majordomo@vger.kernel.org More majordomo info at http://vger.kernel.org/majordomo-info.html Please read the FAQ at http://www.tux.org/lkml/