From: Bjorn Helgaas <helgaas@kernel.org>
To: Frank Li <Frank.Li@nxp.com>
Cc: "Rob Herring" <robh@kernel.org>,
"Saravana Kannan" <saravanak@google.com>,
"Jingoo Han" <jingoohan1@gmail.com>,
"Manivannan Sadhasivam" <manivannan.sadhasivam@linaro.org>,
"Lorenzo Pieralisi" <lpieralisi@kernel.org>,
"Krzysztof Wilczyński" <kw@linux.com>,
"Bjorn Helgaas" <bhelgaas@google.com>,
"Richard Zhu" <hongxing.zhu@nxp.com>,
"Lucas Stach" <l.stach@pengutronix.de>,
"Shawn Guo" <shawnguo@kernel.org>,
"Sascha Hauer" <s.hauer@pengutronix.de>,
"Pengutronix Kernel Team" <kernel@pengutronix.de>,
"Fabio Estevam" <festevam@gmail.com>,
devicetree@vger.kernel.org, linux-kernel@vger.kernel.org,
linux-pci@vger.kernel.org, linux-arm-kernel@lists.infradead.org,
imx@lists.linux.dev, "Niklas Cassel" <cassel@kernel.org>
Subject: Re: [PATCH v10 04/10] PCI: dwc: Add helper dw_pcie_init_parent_bus_offset()
Date: Wed, 12 Mar 2025 17:16:25 -0500 [thread overview]
Message-ID: <20250312221625.GA711258@bhelgaas> (raw)
In-Reply-To: <20250310-pci_fixup_addr-v10-4-409dafc950d1@nxp.com>
On Mon, Mar 10, 2025 at 04:16:42PM -0400, Frank Li wrote:
> From: Bjorn Helgaas <bhelgaas@google.com>
>
> Set pci->parent_bus_offset based on the parent bus address from the
> "config" (Root complex mode) and "addr_space" (Endpoint mode).
>
> .cpu_addr_fixup(cpu_phy_addr). (if implemented) should return the parent
> bus address corresponding according to cpu_phy_addr.
>
> Sets pp->parent_bus_offset, but doesn't use it, so no functional change
> intended yet.
>
> Add use_parent_dt_ranges to detect some fake bus translation at platform,
> which have not .cpu_addr_fixup(). Set use_parent_dt_ranges true explicitly
> at platform that have .cpu_addr_fixup() and fixed DTB's range. If not one
> report "fake bus translation" for sometime, this flags can be removed
> safely.
> +int dw_pcie_init_parent_bus_offset(struct dw_pcie *pci, const char *reg_name,
> + resource_size_t cpu_phy_addr)
> +{
> + struct device *dev = pci->dev;
> + struct device_node *np = dev->of_node;
> + u64 (*fixup)(struct dw_pcie *pcie, u64 cpu_addr);
> + u64 reg_addr, fixup_addr;
> + int index;
> +
> + /* Look up reg_name address on parent bus */
> + index = of_property_match_string(np, "reg-names", reg_name);
> +
> + if (index < 0) {
> + dev_err(dev, "Missed reg-name: %s, Broken DTB file\n", reg_name);
> + return -EINVAL;
> + }
> +
> + of_property_read_reg(np, index, ®_addr, NULL);
> +
> + fixup = pci->ops->cpu_addr_fixup;
> + if (fixup) {
> + fixup_addr = fixup(pci, cpu_phy_addr);
> + if (reg_addr == fixup_addr) {
> + dev_info(dev, "%#010llx %s reg[%d] == %#010llx; %ps is redundant\n",
> + cpu_phy_addr, reg_name, index,
> + fixup_addr, fixup);
> + } else {
> + dev_warn_once(dev, "%#010llx %s reg[%d] != %#010llx fixed up addr; DT is broken\n",
> + cpu_phy_addr, reg_name,
> + index, fixup_addr);
> + reg_addr = fixup_addr;
> + }
> + } else if (!pci->use_parent_dt_ranges) {
> + if (reg_addr != cpu_phy_addr) {
> + dev_warn_once(dev, "Your DTB try to use fake translation, Please check parent's ranges property,");
> + return 0;
IIUC the point of this is to catch a DT that describes a non-zero
offset when the driver did not implement .cpu_addr_fixup() and
therefore assumed "reg_addr == cpu_phy_addr".
I guess that makes sense. But I think we should include both
addresses in the message to help understand the issue.
> + }
> + }
> +
> + pci->parent_bus_offset = cpu_phy_addr - reg_addr;
> + dev_info(dev, "%s parent bus offset is %#010llx\n",
> + reg_name, pci->parent_bus_offset);
> +
> + return 0;
> +}
> +++ b/drivers/pci/controller/dwc/pcie-designware.h
> @@ -465,6 +466,16 @@ struct dw_pcie {
> struct reset_control_bulk_data core_rsts[DW_PCIE_NUM_CORE_RSTS];
> struct gpio_desc *pe_rst;
> bool suspended;
> + /*
> + * This flag indicates that the vendor driver uses devicetree 'ranges'
> + * property to allow iATU to use the Intermediate Address (IA) for
> + * outbound mapping. Using this flag also avoids the usage of
> + * 'cpu_addr_fixup' callback implementation in the driver.
This part of the comment is now wrong.
> + * If use_parent_dt_ranges is false, warning will print if IA is not
> + * equal to cpu physical address. Indicate dtb use a fake translation.
> + */
> + bool use_parent_dt_ranges;
> };
next prev parent reply other threads:[~2025-03-12 22:16 UTC|newest]
Thread overview: 18+ messages / expand[flat|nested] mbox.gz Atom feed top
2025-03-10 20:16 [PATCH v10 00/10] PCI: Use device bus range info to cleanup RC Host/EP pci_fixup_addr() Frank Li
2025-03-10 20:16 ` [PATCH v10 01/10] PCI: dwc: Use resource start as iomap() input in dw_pcie_pme_turn_off() Frank Li
2025-03-10 20:16 ` [PATCH v10 02/10] PCI: dwc: Rename cpu_addr to parent_bus_addr for ATU configuration Frank Li
2025-03-10 20:16 ` [PATCH v10 03/10] PCI: dwc: Move cfg0 setup to dw_pcie_cfg0_setup() Frank Li
2025-03-10 20:16 ` [PATCH v10 04/10] PCI: dwc: Add helper dw_pcie_init_parent_bus_offset() Frank Li
2025-03-12 22:16 ` Bjorn Helgaas [this message]
2025-03-10 20:16 ` [PATCH v10 05/10] PCI: dwc: Use devicetree 'ranges' property to get rid of cpu_addr_fixup() callback Frank Li
2025-03-12 21:37 ` Bjorn Helgaas
2025-03-13 14:17 ` Frank Li
2025-03-10 20:16 ` [PATCH v10 06/10] PCI: dwc: ep: Add parent_bus_addr for outbound window Frank Li
2025-03-10 20:16 ` [PATCH v10 07/10] PCI: dwc: Use parent_bus_offset Frank Li
2025-03-10 20:16 ` [PATCH v10 08/10] PCI: dwc: Print warning message when cpu_addr_fixup() exists Frank Li
2025-03-12 22:04 ` Bjorn Helgaas
2025-03-13 14:32 ` Frank Li
2025-03-10 20:16 ` [PATCH v10 09/10] PCI: dwc: ep: Ensure proper iteration over outbound map windows Frank Li
2025-03-12 21:47 ` Bjorn Helgaas
2025-03-13 14:27 ` Frank Li
2025-03-10 20:16 ` [PATCH v10 10/10] PCI: imx6: Remove cpu_addr_fixup() Frank Li
Reply instructions:
You may reply publicly to this message via plain-text email
using any one of the following methods:
* Save the following mbox file, import it into your mail client,
and reply-to-all from there: mbox
Avoid top-posting and favor interleaved quoting:
https://en.wikipedia.org/wiki/Posting_style#Interleaved_style
* Reply using the --to, --cc, and --in-reply-to
switches of git-send-email(1):
git send-email \
--in-reply-to=20250312221625.GA711258@bhelgaas \
--to=helgaas@kernel.org \
--cc=Frank.Li@nxp.com \
--cc=bhelgaas@google.com \
--cc=cassel@kernel.org \
--cc=devicetree@vger.kernel.org \
--cc=festevam@gmail.com \
--cc=hongxing.zhu@nxp.com \
--cc=imx@lists.linux.dev \
--cc=jingoohan1@gmail.com \
--cc=kernel@pengutronix.de \
--cc=kw@linux.com \
--cc=l.stach@pengutronix.de \
--cc=linux-arm-kernel@lists.infradead.org \
--cc=linux-kernel@vger.kernel.org \
--cc=linux-pci@vger.kernel.org \
--cc=lpieralisi@kernel.org \
--cc=manivannan.sadhasivam@linaro.org \
--cc=robh@kernel.org \
--cc=s.hauer@pengutronix.de \
--cc=saravanak@google.com \
--cc=shawnguo@kernel.org \
/path/to/YOUR_REPLY
https://kernel.org/pub/software/scm/git/docs/git-send-email.html
* If your mail client supports setting the In-Reply-To header
via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line
before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).