From: Krishna Chaitanya Chundru <krishna.chundru@oss.qualcomm.com>
To: "Maciej W. Rozycki" <macro@orcam.me.uk>
Cc: "Manivannan Sadhasivam" <mani@kernel.org>,
"Jingoo Han" <jingoohan1@gmail.com>,
"Lorenzo Pieralisi" <lpieralisi@kernel.org>,
"Krzysztof Wilczyński" <kwilczynski@kernel.org>,
"Rob Herring" <robh@kernel.org>,
"Bjorn Helgaas" <bhelgaas@google.com>,
"Krzysztof Kozlowski" <krzk@kernel.org>,
"Alim Akhtar" <alim.akhtar@samsung.com>,
"Jonathan Chocron" <jonnyc@amazon.com>,
linux-pci@vger.kernel.org, linux-arm-kernel@lists.infradead.org,
linux-samsung-soc@vger.kernel.org, linux-kernel@vger.kernel.org,
linux-arm-msm@vger.kernel.org
Subject: Re: [PATCH v9 4/4] PCI: dwc: Support ECAM mechanism by enabling iATU 'CFG Shift Feature'
Date: Sat, 29 Nov 2025 07:54:35 +0530 [thread overview]
Message-ID: <a4c6d47f-28b5-40d3-bc82-10aeb14f8e78@oss.qualcomm.com> (raw)
In-Reply-To: <alpine.DEB.2.21.2511281714030.36486@angie.orcam.me.uk>
On 11/28/2025 10:46 PM, Maciej W. Rozycki wrote:
> On Fri, 28 Nov 2025, Krishna Chaitanya Chundru wrote:
>
>>> I have no slightest idea why it should cause a regression such as this,
>>> it seems totally unrelated. Yet it's 100% reproducible. Could this be
>>> because it's the only device in the system that actually uses PCI/e port
>>> I/O?
>> Hi Maciej, Can you try attached patch and let me know if that is helping you
>> or not. - Krishna Chaitanya.
> No change, it's still broken, sorry.
HI Maciej,
For the previous patch can you apply this diff and share me dmesg o/p
--- a/drivers/pci/controller/dwc/pcie-designware-host.c
+++ b/drivers/pci/controller/dwc/pcie-designware-host.c
@@ -448,7 +448,6 @@ static int dw_pcie_config_ecam_iatu(struct
dw_pcie_rp *pp)
if (ret)
return ret;
-
bus_range_max = resource_size(bus->res);
if (bus_range_max < 2)
@@ -456,6 +455,8 @@ static int dw_pcie_config_ecam_iatu(struct
dw_pcie_rp *pp)
pp->ob_atu_index++;
+ dev_err(pci->dev, "Current iATU OB index %d\n", pp->ob_atu_index);
+
/* Configure remaining buses in type 1 iATU configuration */
atu.index = pp->ob_atu_index;
atu.type = PCIE_ATU_TYPE_CFG1;
@@ -931,6 +932,7 @@ static int dw_pcie_iatu_setup(struct dw_pcie_rp *pp)
}
}
+ dev_err(pci->dev, "Current iATU OB index %d\n", i);
if (pp->io_size) {
if (pci->num_ob_windows > ++i) {
atu.index = i;
@@ -946,6 +948,7 @@ static int dw_pcie_iatu_setup(struct dw_pcie_rp *pp)
return ret;
}
} else {
+ dev_err(pci->dev, "Using shared io index %d\n", i);
pp->cfg0_io_shared = true;
}
}
- Krishna Chaitanya.
> Maciej
next prev parent reply other threads:[~2025-11-29 2:24 UTC|newest]
Thread overview: 23+ messages / expand[flat|nested] mbox.gz Atom feed top
2025-09-09 7:07 [PATCH v9 0/4] PCI: dwc: Add ECAM support with iATU configuration Manivannan Sadhasivam
2025-09-09 7:07 ` [PATCH v9 1/4] PCI: dwc: Add support for ELBI resource mapping Manivannan Sadhasivam
2025-09-09 7:07 ` [PATCH v9 2/4] PCI: dwc: Prepare the driver for enabling ECAM mechanism using iATU 'CFG Shift Feature' Manivannan Sadhasivam
2025-09-09 7:07 ` [PATCH v9 3/4] PCI: qcom: Prepare for the DWC ECAM enablement Manivannan Sadhasivam
2025-09-12 21:44 ` Bjorn Helgaas
2025-09-15 14:32 ` Manivannan Sadhasivam
2025-09-12 21:50 ` Bjorn Helgaas
2025-09-15 14:34 ` Manivannan Sadhasivam
2025-09-09 7:07 ` [PATCH v9 4/4] PCI: dwc: Support ECAM mechanism by enabling iATU 'CFG Shift Feature' Manivannan Sadhasivam
2025-09-15 15:14 ` ALOK TIWARI
2025-11-28 3:17 ` Maciej W. Rozycki
2025-11-28 5:14 ` Krishna Chaitanya Chundru
2025-11-28 8:37 ` Maciej W. Rozycki
2025-11-28 13:44 ` Krishna Chaitanya Chundru
2025-11-28 17:16 ` Maciej W. Rozycki
2025-11-29 2:24 ` Krishna Chaitanya Chundru [this message]
2025-11-29 6:04 ` Maciej W. Rozycki
2025-12-01 11:51 ` Manivannan Sadhasivam
2025-12-01 14:38 ` Manivannan Sadhasivam
2025-12-01 16:42 ` Maciej W. Rozycki
2025-12-02 11:44 ` Manivannan Sadhasivam
2025-12-02 13:39 ` Maciej W. Rozycki
2025-12-02 13:45 ` Manivannan Sadhasivam
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=a4c6d47f-28b5-40d3-bc82-10aeb14f8e78@oss.qualcomm.com \
--to=krishna.chundru@oss.qualcomm.com \
--cc=alim.akhtar@samsung.com \
--cc=bhelgaas@google.com \
--cc=jingoohan1@gmail.com \
--cc=jonnyc@amazon.com \
--cc=krzk@kernel.org \
--cc=kwilczynski@kernel.org \
--cc=linux-arm-kernel@lists.infradead.org \
--cc=linux-arm-msm@vger.kernel.org \
--cc=linux-kernel@vger.kernel.org \
--cc=linux-pci@vger.kernel.org \
--cc=linux-samsung-soc@vger.kernel.org \
--cc=lpieralisi@kernel.org \
--cc=macro@orcam.me.uk \
--cc=mani@kernel.org \
--cc=robh@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