Return-Path: Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1754025Ab2BEG4A (ORCPT ); Sun, 5 Feb 2012 01:56:00 -0500 Received: from rcsinet15.oracle.com ([148.87.113.117]:46768 "EHLO rcsinet15.oracle.com" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1753342Ab2BEGzl (ORCPT ); Sun, 5 Feb 2012 01:55:41 -0500 From: Yinghai Lu To: Jesse Barnes Cc: Ram Pai , Dominik Brodowski , Linus Torvalds , linux-pci@vger.kernel.org, linux-kernel@vger.kernel.org, Yinghai Lu Subject: [PATCH 9/9] PCI: only enable pci realloc when SRIOV bar is not assigned Date: Sat, 4 Feb 2012 22:55:08 -0800 Message-Id: <1328424908-6385-10-git-send-email-yinghai@kernel.org> X-Mailer: git-send-email 1.7.7 In-Reply-To: <1328424908-6385-1-git-send-email-yinghai@kernel.org> References: <1328424908-6385-1-git-send-email-yinghai@kernel.org> X-Source-IP: acsinet21.oracle.com [141.146.126.237] X-Auth-Type: Internal IP X-CT-RefId: str=0001.0A090205.4F2E27E7.00B9,ss=1,re=0.000,fgs=0 Sender: linux-kernel-owner@vger.kernel.org List-ID: X-Mailing-List: linux-kernel@vger.kernel.org Content-Length: 2109 Lines: 71 If bios does not assign those BAR or wrong address, then kernel will try to do pci realloc. in that case, user still can use pci=realloc=off to override it. Signed-off-by: Yinghai Lu --- drivers/pci/setup-bus.c | 28 ++++++++++++++++++++++++++++ 1 files changed, 28 insertions(+), 0 deletions(-) diff --git a/drivers/pci/setup-bus.c b/drivers/pci/setup-bus.c index 9526038..520f256 100644 --- a/drivers/pci/setup-bus.c +++ b/drivers/pci/setup-bus.c @@ -1293,6 +1293,31 @@ static bool __init pci_realloc_enabled(void) return pci_realloc_enable >= enable_yes_user; } +static void __init pci_realloc_detect(void) +{ + struct pci_dev *dev = NULL; + + if (pci_realloc_enable != enable_not_set) + return; + +#ifdef CONFIG_PCI_IOV + for_each_pci_dev(dev) { + int i; + + for (i = PCI_IOV_RESOURCES; i <= PCI_IOV_RESOURCE_END; i++) { + struct resource *r = &dev->resource[i]; + + /* Not assigned, or rejected by kernel */ + if (r->flags && !r->start) { + pci_realloc_enable = enable_yes_detected; + + return; + } + } + } +#endif +} + /* * first try will not touch pci bridge res * second and later try will clear small leaf bridge res @@ -1314,6 +1339,7 @@ pci_assign_unassigned_resources(void) int pci_try_num = 1; /* don't realloc if asked to do so */ + pci_realloc_detect(); if (pci_realloc_enabled()) { int max_depth = pci_get_max_depth(); @@ -1348,6 +1374,8 @@ again: if (tried_times >= pci_try_num) { if (pci_realloc_enable == enable_not_set) printk(KERN_INFO "Some pci devices resources are not assigned, please try to boot with pci=realloc\n"); + else if (pci_realloc_enable == enable_yes_detected) + printk(KERN_INFO "Automatically enabled pci realloc, if you have problem, please try to boot with pci=realloc=off\n"); free_list(&fail_head); goto enable_and_dump; -- 1.7.7 -- 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/