From patchwork Sat Feb 15 00:03:01 2025 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 8bit X-Patchwork-Submitter: Bjorn Helgaas X-Patchwork-Id: 13975751 X-Patchwork-Delegate: bhelgaas@google.com Received: from smtp.kernel.org (aws-us-west-2-korg-mail-1.web.codeaurora.org [10.30.226.201]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by smtp.subspace.kernel.org (Postfix) with ESMTPS id 189C31096F; Sat, 15 Feb 2025 00:03:10 +0000 (UTC) Authentication-Results: smtp.subspace.kernel.org; arc=none smtp.client-ip=10.30.226.201 ARC-Seal: i=1; a=rsa-sha256; d=subspace.kernel.org; s=arc-20240116; t=1739577791; cv=none; b=G6SWmh5AeGcTMexa6xjzEOOJcCOwbjo8wtjmwYMRneEFfRt8msYLQYM0jog2/5KCddKnaO2hEESTvceBXnd9GLt9Ldt5x9jhR/SM3KrqQnWL1oKEtr6y+wQTpl5NKQz1klGgxRHEgtK5zpxsuxJyvUgEuDQ+ViBH17Ba4kAEM0E= ARC-Message-Signature: i=1; a=rsa-sha256; d=subspace.kernel.org; s=arc-20240116; t=1739577791; c=relaxed/simple; bh=LZmLoCUg08NiVuotxrtqAjBOOXyj6jZPtonN1xnIy4A=; h=From:To:Cc:Subject:Date:Message-Id:In-Reply-To:References: MIME-Version:Content-Type; b=uAvWmDvab+7X5HoVNSisVU4RQYbJeTKXBE4DIe1fmC7jTf3zJtVJv3hMgekeTyoKsM8p8iP0Awjqc3q3qOwWZ4R5PmxDilw41le9s0RZ+134yCu13koR0oZ5eQUDE6EBsCeO/03e8zQjkjBAF5826zNRL4KPAVtoqsthlnjf3oI= ARC-Authentication-Results: i=1; smtp.subspace.kernel.org; dkim=pass (2048-bit key) header.d=kernel.org header.i=@kernel.org header.b=p35LgQoc; arc=none smtp.client-ip=10.30.226.201 Authentication-Results: smtp.subspace.kernel.org; dkim=pass (2048-bit key) header.d=kernel.org header.i=@kernel.org header.b="p35LgQoc" Received: by smtp.kernel.org (Postfix) with ESMTPSA id 59C1BC4CED1; Sat, 15 Feb 2025 00:03:10 +0000 (UTC) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=kernel.org; s=k20201202; t=1739577790; bh=LZmLoCUg08NiVuotxrtqAjBOOXyj6jZPtonN1xnIy4A=; h=From:To:Cc:Subject:Date:In-Reply-To:References:From; b=p35LgQocFaddJNP++Q2tfgtWsy/Rgk6APOwPSl9UKUkTfCTLhWekS0zCupTf0Rs1p FlipWpvQNwyUS+6tc0LnJxz6WGcCVNEgRbplqYxI/oyLu6NyuihfcutXwAaGe8AOgz tjAYb5POICChBpxb6YzwLM84muOIkb8OGWpt2YCmn09ZjhMQxm8UJzdFbI8hDGmV0K 5U7k4KQ/BFHo43RSVIpA7jW3J++E6/ZOofCy9gPlgqOi8xKt0SPPX4j2v0dk0QBmMB 1Pom8G2S8dlUywZWRyVmPNJSKRNyBi+EAetVWJEa4Fr0HVA9j3HHj4JZJ+UHwb9QxL Fp9pfx8rUXkuw== From: Bjorn Helgaas To: linux-pci@vger.kernel.org Cc: Alex Williamson , =?utf-8?q?Christian_K?= =?utf-8?q?=C3=B6nig?= , =?utf-8?q?Ilpo_J?= =?utf-8?q?=C3=A4rvinen?= , linux-kernel@vger.kernel.org, Bjorn Helgaas Subject: [PATCH v2 2/2] PCI: Cache offset of Resizable BAR capability Date: Fri, 14 Feb 2025 18:03:01 -0600 Message-Id: <20250215000301.175097-3-helgaas@kernel.org> X-Mailer: git-send-email 2.34.1 In-Reply-To: <20250215000301.175097-1-helgaas@kernel.org> References: <20250215000301.175097-1-helgaas@kernel.org> Precedence: bulk X-Mailing-List: linux-pci@vger.kernel.org List-Id: List-Subscribe: List-Unsubscribe: MIME-Version: 1.0 From: Bjorn Helgaas Previously most resizable BAR interfaces (pci_rebar_get_possible_sizes(), pci_rebar_set_size(), etc) as well as pci_restore_state() searched config space for a Resizable BAR capability. Most devices don't have such a capability, so this is wasted effort, especially for pci_restore_state(). Search for a Resizable BAR capability once at enumeration-time and cache the offset so we don't have to search every time we need it. No functional change intended. Signed-off-by: Bjorn Helgaas Reviewed-by: Ilpo Järvinen --- drivers/pci/pci.c | 9 +++++++-- drivers/pci/pci.h | 1 + drivers/pci/probe.c | 1 + include/linux/pci.h | 1 + 4 files changed, 10 insertions(+), 2 deletions(-) diff --git a/drivers/pci/pci.c b/drivers/pci/pci.c index 503376bf7e75..cf2632080a94 100644 --- a/drivers/pci/pci.c +++ b/drivers/pci/pci.c @@ -1872,7 +1872,7 @@ static void pci_restore_rebar_state(struct pci_dev *pdev) unsigned int pos, nbars, i; u32 ctrl; - pos = pci_find_ext_capability(pdev, PCI_EXT_CAP_ID_REBAR); + pos = pdev->rebar_cap; if (!pos) return; @@ -3719,6 +3719,11 @@ void pci_acs_init(struct pci_dev *dev) pci_enable_acs(dev); } +void pci_rebar_init(struct pci_dev *pdev) +{ + pdev->rebar_cap = pci_find_ext_capability(pdev, PCI_EXT_CAP_ID_REBAR); +} + /** * pci_rebar_find_pos - find position of resize ctrl reg for BAR * @pdev: PCI device @@ -3733,7 +3738,7 @@ static int pci_rebar_find_pos(struct pci_dev *pdev, int bar) unsigned int pos, nbars, i; u32 ctrl; - pos = pci_find_ext_capability(pdev, PCI_EXT_CAP_ID_REBAR); + pos = pdev->rebar_cap; if (!pos) return -ENOTSUPP; diff --git a/drivers/pci/pci.h b/drivers/pci/pci.h index 01e51db8d285..d7b46ddfd6d2 100644 --- a/drivers/pci/pci.h +++ b/drivers/pci/pci.h @@ -799,6 +799,7 @@ static inline int acpi_get_rc_resources(struct device *dev, const char *hid, } #endif +void pci_rebar_init(struct pci_dev *pdev); int pci_rebar_get_current_size(struct pci_dev *pdev, int bar); int pci_rebar_set_size(struct pci_dev *pdev, int bar, int size); static inline u64 pci_rebar_size_to_bytes(int size) diff --git a/drivers/pci/probe.c b/drivers/pci/probe.c index b6536ed599c3..24dd3dcfd223 100644 --- a/drivers/pci/probe.c +++ b/drivers/pci/probe.c @@ -2564,6 +2564,7 @@ static void pci_init_capabilities(struct pci_dev *dev) pci_rcec_init(dev); /* Root Complex Event Collector */ pci_doe_init(dev); /* Data Object Exchange */ pci_tph_init(dev); /* TLP Processing Hints */ + pci_rebar_init(dev); /* Resizable BAR */ pcie_report_downtraining(dev); pci_init_reset_methods(dev); diff --git a/include/linux/pci.h b/include/linux/pci.h index 47b31ad724fa..9e5bbd996c83 100644 --- a/include/linux/pci.h +++ b/include/linux/pci.h @@ -353,6 +353,7 @@ struct pci_dev { struct pci_dev *rcec; /* Associated RCEC device */ #endif u32 devcap; /* PCIe Device Capabilities */ + u16 rebar_cap; /* Resizable BAR capability offset */ u8 pcie_cap; /* PCIe capability offset */ u8 msi_cap; /* MSI capability offset */ u8 msix_cap; /* MSI-X capability offset */