Return-Path: Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1756418AbXLSNnm (ORCPT ); Wed, 19 Dec 2007 08:43:42 -0500 Received: (majordomo@vger.kernel.org) by vger.kernel.org id S1753353AbXLSNne (ORCPT ); Wed, 19 Dec 2007 08:43:34 -0500 Received: from jurassic.park.msu.ru ([195.208.223.243]:59942 "EHLO jurassic.park.msu.ru" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1753036AbXLSNne (ORCPT ); Wed, 19 Dec 2007 08:43:34 -0500 Date: Wed, 19 Dec 2007 16:43:50 +0300 From: Ivan Kokshaysky To: Benjamin Herrenschmidt Cc: Johannes Weiner , linux-pci@atrey.karlin.mff.cuni.cz, Alan Cox , Greg Kroah-Hartman , jgarzik@pobox.com, wingel@nano-system.com, Bartlomiej Zolnierkiewicz , james.smart@emulex.com, linux-driver@qlogic.com, linux-kernel@vger.kernel.org Subject: Re: [RFC/PATCH]] x86: pci: Disable IO/Mem on a device when resources can't be allocated Message-ID: <20071219134350.GA19698@jurassic.park.msu.ru> References: <1197932473.576079.142524077033.qpush@grosgo> <1197936157.13400.9.camel@pasglop> <20071218123715.A7874@jurassic.park.msu.ru> <1198041019.18908.32.camel@pasglop> MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <1198041019.18908.32.camel@pasglop> User-Agent: Mutt/1.5.17 (2007-11-01) Sender: linux-kernel-owner@vger.kernel.org List-ID: X-Mailing-List: linux-kernel@vger.kernel.org Content-Length: 2155 Lines: 46 On Wed, Dec 19, 2007 at 04:10:19PM +1100, Benjamin Herrenschmidt wrote: > This patch changes the x86 PCI code to disable IO and/or Memory > decoding on a PCI device when a resource of that type failed to > be allocated. Oh, this opens up a can of worms ;-) In ideal world, the patch would be perfectly valid. But on x86 we have at least two firmware layers (E820 and ACPI), each with its own (often totally crazy) view on system resources. OTOH, we cannot completely ignore the firmware - otherwise the resource allocator could step onto some hidden/undocumented system decode ranges... One of the typical reasons for "dangling BAR" on x86 is that a resource allocation failed because BIOS has reserved address region for the very same BAR ;-) Perhaps you've seen most recent illustration of x86 resource allocation problems: http://lkml.org/lkml/2007/12/17/429 Plus there are lots of x86 hardware like host bridges with a BAR representing the system RAM, IOAPIC BARs with some high order bits hardwired to "1" and so on. Which also doesn't make life any easier. That's why I still think that res->parent check is not enough for x86 and we need some resource flag that tells generic PCI code "We failed to allocate this resource, but please don't touch it!". Some code is already using IORESOURCE_PCI_FIXED for that purpose, so it would suffice. On the other hand, with that flag we can move all those horrible exceptions like PCI_CLASS_BRIDGE_HOST (which nearly breaks alpha, BTW) and PCI_CLASS_SYSTEM_PIC from generic code to arch/x86 where it belongs. > I'll wait for more comments today and post the whole 5 again tomorrow > as official candidates for inclusion :-) (BTW. What is people general > feeling about inline vs. non inline for the functions in pci.c ?) I think inlines are prettier, but not allowing direct use of the _flag function is a valid argument too. So I'm fine with both. Ivan. -- 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/