From: Manikanta Maddireddy <mmaddireddy@nvidia.com>
To: Frank Li <Frank.li@nxp.com>, Niklas Cassel <cassel@kernel.org>
Cc: "Vignesh Raghavendra" <vigneshr@ti.com>,
"Siddharth Vadapalli" <s-vadapalli@ti.com>,
"Lorenzo Pieralisi" <lpieralisi@kernel.org>,
"Krzysztof Wilczyński" <kwilczynski@kernel.org>,
"Manivannan Sadhasivam" <mani@kernel.org>,
"Rob Herring" <robh@kernel.org>,
"Bjorn Helgaas" <bhelgaas@google.com>,
"Richard Zhu" <hongxing.zhu@nxp.com>,
"Lucas Stach" <l.stach@pengutronix.de>,
"Sascha Hauer" <s.hauer@pengutronix.de>,
"Pengutronix Kernel Team" <kernel@pengutronix.de>,
"Fabio Estevam" <festevam@gmail.com>,
"Minghuan Lian" <minghuan.Lian@nxp.com>,
"Mingkai Hu" <mingkai.hu@nxp.com>, "Roy Zang" <roy.zang@nxp.com>,
"Jesper Nilsson" <jesper.nilsson@axis.com>,
"Jingoo Han" <jingoohan1@gmail.com>,
"Heiko Stuebner" <heiko@sntech.de>,
"Marek Vasut" <marek.vasut+renesas@gmail.com>,
"Yoshihiro Shimoda" <yoshihiro.shimoda.uh@renesas.com>,
"Geert Uytterhoeven" <geert+renesas@glider.be>,
"Magnus Damm" <magnus.damm@gmail.com>,
"Christian Bruel" <christian.bruel@foss.st.com>,
"Maxime Coquelin" <mcoquelin.stm32@gmail.com>,
"Alexandre Torgue" <alexandre.torgue@foss.st.com>,
"Thierry Reding" <thierry.reding@gmail.com>,
"Jonathan Hunter" <jonathanh@nvidia.com>,
"Kunihiko Hayashi" <hayashi.kunihiko@socionext.com>,
"Masami Hiramatsu" <mhiramat@kernel.org>,
"Koichiro Den" <den@valinux.co.jp>,
"Damien Le Moal" <dlemoal@kernel.org>,
linux-omap@vger.kernel.org, linux-pci@vger.kernel.org,
linux-arm-kernel@lists.infradead.org, imx@lists.linux.dev,
linuxppc-dev@lists.ozlabs.org, linux-arm-kernel@axis.com,
linux-rockchip@lists.infradead.org,
linux-arm-msm@vger.kernel.org, linux-renesas-soc@vger.kernel.org,
linux-stm32@st-md-mailman.stormreply.com,
linux-tegra@vger.kernel.org
Subject: Re: [PATCH 6/9] PCI: dwc: Disable BARs in common code instead of in each glue driver
Date: Mon, 23 Feb 2026 10:25:02 +0530 [thread overview]
Message-ID: <49543234-a1d9-462b-aed1-15d66257957b@nvidia.com> (raw)
In-Reply-To: <aZTzA90dWgtpY7jo@lizhi-Precision-Tower-5810>
[-- Attachment #1: Type: text/plain, Size: 15030 bytes --]
On 18/02/26 4:30 am, Frank Li wrote:
> On Tue, Feb 17, 2026 at 10:27:12PM +0100, Niklas Cassel wrote:
>> The current EPC core design relies on an EPC driver disabling all BARs by
>> default. An EPF driver will then enable the BARs that it wants to enabled.
>>
>> This design is there because there is no epc->ops->disable_bar().
>> (There is a epc->ops->clear_bar(), but that is only to disable a BAR that
>> has been enabled using epc->ops->set_bar() first.)
>>
>> By default, an EPF driver will not be able to get/enable BARs that are
>> marked as BAR_RESERVED or BAR_DISABLED (see pci_epc_get_next_free_bar()).
>>
>> Since the current EPC code design requires an EPC driver to disable all
>> BARs by default, let's do this in the DWC common code rather than in each
>> glue driver.
> Move this to DWC common code from each glue driver.
>
>> BARs that are marked as BAR_RESERVED are not disabled by default.
>> This is because these BARs are hardware backed, and should only be disabled
> Needn't "this is", ... are not disabled by default because these BARS ..
>
>
>> explicitly by an EPF driver if absolutely necessary for the EPF driver to
>> function correctly. (This is similar to how e.g. NVMe may have vendor
>> specific BARs outside of the mandatory BAR0 which contains the NVMe
>> registers.)
>>
>> Note that there is currently no EPC operation to disable a BAR that has not
>> first been programmed using pci_epc_set_bar(). If an EPF driver ever wants
>> to disable a BAR marked as BAR_RESERVED, a disable_bar() operation would
>> have to be added first.
>>
>> No functional changes intended.
>>
>> Signed-off-by: Niklas Cassel<cassel@kernel.org>
Reviewed-by: Manikanta Maddireddy <mmaddireddy@nvidia.com>
Tested by: Manikanta Maddireddy <mmaddireddy@nvidia.com>
>> ---
>> drivers/pci/controller/dwc/pci-dra7xx.c | 4 ----
>> drivers/pci/controller/dwc/pci-imx6.c | 10 --------
>> .../pci/controller/dwc/pci-layerscape-ep.c | 4 ----
>> drivers/pci/controller/dwc/pcie-artpec6.c | 4 ----
>> .../pci/controller/dwc/pcie-designware-ep.c | 24 +++++++++++++++++++
>> .../pci/controller/dwc/pcie-designware-plat.c | 10 --------
>> drivers/pci/controller/dwc/pcie-dw-rockchip.c | 4 ----
>> drivers/pci/controller/dwc/pcie-qcom-ep.c | 10 --------
>> drivers/pci/controller/dwc/pcie-rcar-gen4.c | 10 --------
>> drivers/pci/controller/dwc/pcie-stm32-ep.c | 10 --------
>> drivers/pci/controller/dwc/pcie-tegra194.c | 10 --------
>> drivers/pci/controller/dwc/pcie-uniphier-ep.c | 10 --------
>> 12 files changed, 24 insertions(+), 86 deletions(-)
>>
>> diff --git a/drivers/pci/controller/dwc/pci-dra7xx.c b/drivers/pci/controller/dwc/pci-dra7xx.c
>> index d5d26229063f..cd904659c321 100644
>> --- a/drivers/pci/controller/dwc/pci-dra7xx.c
>> +++ b/drivers/pci/controller/dwc/pci-dra7xx.c
>> @@ -378,10 +378,6 @@ static void dra7xx_pcie_ep_init(struct dw_pcie_ep *ep)
>> {
>> struct dw_pcie *pci = to_dw_pcie_from_ep(ep);
>> struct dra7xx_pcie *dra7xx = to_dra7xx_pcie(pci);
>> - enum pci_barno bar;
>> -
>> - for (bar = 0; bar < PCI_STD_NUM_BARS; bar++)
>> - dw_pcie_ep_reset_bar(pci, bar);
>>
>> dra7xx_pcie_enable_wrapper_interrupts(dra7xx);
>> }
>> diff --git a/drivers/pci/controller/dwc/pci-imx6.c b/drivers/pci/controller/dwc/pci-imx6.c
>> index ec1e3557ca53..f5fe5cfc46c7 100644
>> --- a/drivers/pci/controller/dwc/pci-imx6.c
>> +++ b/drivers/pci/controller/dwc/pci-imx6.c
>> @@ -1401,15 +1401,6 @@ static const struct dw_pcie_ops dw_pcie_ops = {
>> .stop_link = imx_pcie_stop_link,
>> };
>>
>> -static void imx_pcie_ep_init(struct dw_pcie_ep *ep)
>> -{
>> - enum pci_barno bar;
>> - struct dw_pcie *pci = to_dw_pcie_from_ep(ep);
>> -
>> - for (bar = BAR_0; bar <= BAR_5; bar++)
>> - dw_pcie_ep_reset_bar(pci, bar);
>> -}
>> -
>> static int imx_pcie_ep_raise_irq(struct dw_pcie_ep *ep, u8 func_no,
>> unsigned int type, u16 interrupt_num)
>> {
>> @@ -1478,7 +1469,6 @@ imx_pcie_ep_get_features(struct dw_pcie_ep *ep)
>> }
>>
>> static const struct dw_pcie_ep_ops pcie_ep_ops = {
>> - .init = imx_pcie_ep_init,
>> .raise_irq = imx_pcie_ep_raise_irq,
>> .get_features = imx_pcie_ep_get_features,
>> };
>> diff --git a/drivers/pci/controller/dwc/pci-layerscape-ep.c b/drivers/pci/controller/dwc/pci-layerscape-ep.c
>> index 5a03a8f895f9..1f5fccdb4ff4 100644
>> --- a/drivers/pci/controller/dwc/pci-layerscape-ep.c
>> +++ b/drivers/pci/controller/dwc/pci-layerscape-ep.c
>> @@ -152,15 +152,11 @@ static void ls_pcie_ep_init(struct dw_pcie_ep *ep)
>> struct dw_pcie *pci = to_dw_pcie_from_ep(ep);
>> struct ls_pcie_ep *pcie = to_ls_pcie_ep(pci);
>> struct dw_pcie_ep_func *ep_func;
>> - enum pci_barno bar;
>>
>> ep_func = dw_pcie_ep_get_func_from_ep(ep, 0);
>> if (!ep_func)
>> return;
>>
>> - for (bar = 0; bar < PCI_STD_NUM_BARS; bar++)
>> - dw_pcie_ep_reset_bar(pci, bar);
>> -
>> pcie->ls_epc->msi_capable = ep_func->msi_cap ? true : false;
>> pcie->ls_epc->msix_capable = ep_func->msix_cap ? true : false;
>> }
>> diff --git a/drivers/pci/controller/dwc/pcie-artpec6.c b/drivers/pci/controller/dwc/pcie-artpec6.c
>> index e994b75986c3..55cb957ae1f3 100644
>> --- a/drivers/pci/controller/dwc/pcie-artpec6.c
>> +++ b/drivers/pci/controller/dwc/pcie-artpec6.c
>> @@ -340,15 +340,11 @@ static void artpec6_pcie_ep_init(struct dw_pcie_ep *ep)
>> {
>> struct dw_pcie *pci = to_dw_pcie_from_ep(ep);
>> struct artpec6_pcie *artpec6_pcie = to_artpec6_pcie(pci);
>> - enum pci_barno bar;
>>
>> artpec6_pcie_assert_core_reset(artpec6_pcie);
>> artpec6_pcie_init_phy(artpec6_pcie);
>> artpec6_pcie_deassert_core_reset(artpec6_pcie);
>> artpec6_pcie_wait_for_phy(artpec6_pcie);
>> -
>> - for (bar = 0; bar < PCI_STD_NUM_BARS; bar++)
>> - dw_pcie_ep_reset_bar(pci, bar);
>> }
>>
>> static int artpec6_pcie_raise_irq(struct dw_pcie_ep *ep, u8 func_no,
>> diff --git a/drivers/pci/controller/dwc/pcie-designware-ep.c b/drivers/pci/controller/dwc/pcie-designware-ep.c
>> index 7e7844ff0f7e..5e47517c757c 100644
>> --- a/drivers/pci/controller/dwc/pcie-designware-ep.c
>> +++ b/drivers/pci/controller/dwc/pcie-designware-ep.c
>> @@ -1105,6 +1105,28 @@ static void dw_pcie_ep_init_non_sticky_registers(struct dw_pcie *pci)
>> dw_pcie_dbi_ro_wr_dis(pci);
>> }
>>
>> +static void dw_pcie_ep_disable_bars(struct dw_pcie_ep *ep)
>> +{
>> + struct dw_pcie *pci = to_dw_pcie_from_ep(ep);
>> + enum pci_epc_bar_type bar_type;
>> + enum pci_barno bar;
>> +
>> + for (bar = 0; bar < PCI_STD_NUM_BARS; bar++) {
>> + bar_type = dw_pcie_ep_get_bar_type(ep, bar);
>> +
>> + /*
>> + * Reserved BARs should not get disabled by default. All other
>> + * BAR types are disabled by default.
>> + *
>> + * This is in line with the current EPC core design, where all
>> + * BARs are disabled by default, and then the EPF driver enables
>> + * the BARs it wishes to use.
>> + */
>> + if (bar_type != BAR_RESERVED)
>> + dw_pcie_ep_reset_bar(pci, bar);
> Any bad impact if reset a RESERVED bar?
>
> Frank
HW reserved BARs like MSI-X/DMA will be permanently disabled.
Host doesn't see these BARs, Tegra194 ex:
BARs seen by host if reset_bar is skipped for BAR_RESERVED
Region 0: Memory at 2b28000000 (64-bit, non-prefetchable)
[disabled] [size=1M]
Region 2: Memory at 2800000000 (64-bit, prefetchable)
[disabled] [size=128K]
Region 4: Memory at 2b28100000 (64-bit, non-prefetchable)
[disabled] [size=4K]
BARs seen by host if reset_bar is applied for all types of BARs
Region 0: Memory at 2b28000000 (64-bit, non-prefetchable)
[disabled] [size=1M]
>
>> + }
>> +}
>> +
>> /**
>> * dw_pcie_ep_init_registers - Initialize DWC EP specific registers
>> * @ep: DWC EP device
>> @@ -1187,6 +1209,8 @@ int dw_pcie_ep_init_registers(struct dw_pcie_ep *ep)
>> if (ep->ops->init)
>> ep->ops->init(ep);
>>
>> + dw_pcie_ep_disable_bars(ep);
>> +
>> /*
>> * PCIe r6.0, section 7.9.15 states that for endpoints that support
>> * PTM, this capability structure is required in exactly one
>> diff --git a/drivers/pci/controller/dwc/pcie-designware-plat.c b/drivers/pci/controller/dwc/pcie-designware-plat.c
>> index 8530746ec5cb..d103ab759c4e 100644
>> --- a/drivers/pci/controller/dwc/pcie-designware-plat.c
>> +++ b/drivers/pci/controller/dwc/pcie-designware-plat.c
>> @@ -32,15 +32,6 @@ struct dw_plat_pcie_of_data {
>> static const struct dw_pcie_host_ops dw_plat_pcie_host_ops = {
>> };
>>
>> -static void dw_plat_pcie_ep_init(struct dw_pcie_ep *ep)
>> -{
>> - struct dw_pcie *pci = to_dw_pcie_from_ep(ep);
>> - enum pci_barno bar;
>> -
>> - for (bar = 0; bar < PCI_STD_NUM_BARS; bar++)
>> - dw_pcie_ep_reset_bar(pci, bar);
>> -}
>> -
>> static int dw_plat_pcie_ep_raise_irq(struct dw_pcie_ep *ep, u8 func_no,
>> unsigned int type, u16 interrupt_num)
>> {
>> @@ -73,7 +64,6 @@ dw_plat_pcie_get_features(struct dw_pcie_ep *ep)
>> }
>>
>> static const struct dw_pcie_ep_ops pcie_ep_ops = {
>> - .init = dw_plat_pcie_ep_init,
>> .raise_irq = dw_plat_pcie_ep_raise_irq,
>> .get_features = dw_plat_pcie_get_features,
>> };
>> diff --git a/drivers/pci/controller/dwc/pcie-dw-rockchip.c b/drivers/pci/controller/dwc/pcie-dw-rockchip.c
>> index ecc28093c589..4e9b813c3afb 100644
>> --- a/drivers/pci/controller/dwc/pcie-dw-rockchip.c
>> +++ b/drivers/pci/controller/dwc/pcie-dw-rockchip.c
>> @@ -361,13 +361,9 @@ static void rockchip_pcie_ep_hide_broken_ats_cap_rk3588(struct dw_pcie_ep *ep)
>> static void rockchip_pcie_ep_init(struct dw_pcie_ep *ep)
>> {
>> struct dw_pcie *pci = to_dw_pcie_from_ep(ep);
>> - enum pci_barno bar;
>>
>> rockchip_pcie_enable_l0s(pci);
>> rockchip_pcie_ep_hide_broken_ats_cap_rk3588(ep);
>> -
>> - for (bar = 0; bar < PCI_STD_NUM_BARS; bar++)
>> - dw_pcie_ep_reset_bar(pci, bar);
>> };
>>
>> static int rockchip_pcie_raise_irq(struct dw_pcie_ep *ep, u8 func_no,
>> diff --git a/drivers/pci/controller/dwc/pcie-qcom-ep.c b/drivers/pci/controller/dwc/pcie-qcom-ep.c
>> index e55675b3840a..e8c8ba1659fd 100644
>> --- a/drivers/pci/controller/dwc/pcie-qcom-ep.c
>> +++ b/drivers/pci/controller/dwc/pcie-qcom-ep.c
>> @@ -861,17 +861,7 @@ qcom_pcie_epc_get_features(struct dw_pcie_ep *pci_ep)
>> return &qcom_pcie_epc_features;
>> }
>>
>> -static void qcom_pcie_ep_init(struct dw_pcie_ep *ep)
>> -{
>> - struct dw_pcie *pci = to_dw_pcie_from_ep(ep);
>> - enum pci_barno bar;
>> -
>> - for (bar = BAR_0; bar <= BAR_5; bar++)
>> - dw_pcie_ep_reset_bar(pci, bar);
>> -}
>> -
>> static const struct dw_pcie_ep_ops pci_ep_ops = {
>> - .init = qcom_pcie_ep_init,
>> .raise_irq = qcom_pcie_ep_raise_irq,
>> .get_features = qcom_pcie_epc_get_features,
>> };
>> diff --git a/drivers/pci/controller/dwc/pcie-rcar-gen4.c b/drivers/pci/controller/dwc/pcie-rcar-gen4.c
>> index 9dd05bac22b9..1198ddc1752c 100644
>> --- a/drivers/pci/controller/dwc/pcie-rcar-gen4.c
>> +++ b/drivers/pci/controller/dwc/pcie-rcar-gen4.c
>> @@ -386,15 +386,6 @@ static void rcar_gen4_pcie_ep_pre_init(struct dw_pcie_ep *ep)
>> writel(PCIEDMAINTSTSEN_INIT, rcar->base + PCIEDMAINTSTSEN);
>> }
>>
>> -static void rcar_gen4_pcie_ep_init(struct dw_pcie_ep *ep)
>> -{
>> - struct dw_pcie *pci = to_dw_pcie_from_ep(ep);
>> - enum pci_barno bar;
>> -
>> - for (bar = 0; bar < PCI_STD_NUM_BARS; bar++)
>> - dw_pcie_ep_reset_bar(pci, bar);
>> -}
>> -
>> static void rcar_gen4_pcie_ep_deinit(struct rcar_gen4_pcie *rcar)
>> {
>> writel(0, rcar->base + PCIEDMAINTSTSEN);
>> @@ -449,7 +440,6 @@ static unsigned int rcar_gen4_pcie_ep_get_dbi2_offset(struct dw_pcie_ep *ep,
>>
>> static const struct dw_pcie_ep_ops pcie_ep_ops = {
>> .pre_init = rcar_gen4_pcie_ep_pre_init,
>> - .init = rcar_gen4_pcie_ep_init,
>> .raise_irq = rcar_gen4_pcie_ep_raise_irq,
>> .get_features = rcar_gen4_pcie_ep_get_features,
>> .get_dbi_offset = rcar_gen4_pcie_ep_get_dbi_offset,
>> diff --git a/drivers/pci/controller/dwc/pcie-stm32-ep.c b/drivers/pci/controller/dwc/pcie-stm32-ep.c
>> index c1944b40ce02..a7988dff1045 100644
>> --- a/drivers/pci/controller/dwc/pcie-stm32-ep.c
>> +++ b/drivers/pci/controller/dwc/pcie-stm32-ep.c
>> @@ -28,15 +28,6 @@ struct stm32_pcie {
>> unsigned int perst_irq;
>> };
>>
>> -static void stm32_pcie_ep_init(struct dw_pcie_ep *ep)
>> -{
>> - struct dw_pcie *pci = to_dw_pcie_from_ep(ep);
>> - enum pci_barno bar;
>> -
>> - for (bar = 0; bar < PCI_STD_NUM_BARS; bar++)
>> - dw_pcie_ep_reset_bar(pci, bar);
>> -}
>> -
>> static int stm32_pcie_start_link(struct dw_pcie *pci)
>> {
>> struct stm32_pcie *stm32_pcie = to_stm32_pcie(pci);
>> @@ -82,7 +73,6 @@ stm32_pcie_get_features(struct dw_pcie_ep *ep)
>> }
>>
>> static const struct dw_pcie_ep_ops stm32_pcie_ep_ops = {
>> - .init = stm32_pcie_ep_init,
>> .raise_irq = stm32_pcie_raise_irq,
>> .get_features = stm32_pcie_get_features,
>> };
>> diff --git a/drivers/pci/controller/dwc/pcie-tegra194.c b/drivers/pci/controller/dwc/pcie-tegra194.c
>> index 9f9453e8cd23..3a6bffaff9ea 100644
>> --- a/drivers/pci/controller/dwc/pcie-tegra194.c
>> +++ b/drivers/pci/controller/dwc/pcie-tegra194.c
>> @@ -1923,15 +1923,6 @@ static irqreturn_t tegra_pcie_ep_pex_rst_irq(int irq, void *arg)
>> return IRQ_HANDLED;
>> }
>>
>> -static void tegra_pcie_ep_init(struct dw_pcie_ep *ep)
>> -{
>> - struct dw_pcie *pci = to_dw_pcie_from_ep(ep);
>> - enum pci_barno bar;
>> -
>> - for (bar = 0; bar < PCI_STD_NUM_BARS; bar++)
>> - dw_pcie_ep_reset_bar(pci, bar);
>> -};
>> -
>> static int tegra_pcie_ep_raise_intx_irq(struct tegra_pcie_dw *pcie, u16 irq)
>> {
>> /* Tegra194 supports only INTA */
>> @@ -2008,7 +1999,6 @@ tegra_pcie_ep_get_features(struct dw_pcie_ep *ep)
>> }
>>
>> static const struct dw_pcie_ep_ops pcie_ep_ops = {
>> - .init = tegra_pcie_ep_init,
>> .raise_irq = tegra_pcie_ep_raise_irq,
>> .get_features = tegra_pcie_ep_get_features,
>> };
>> diff --git a/drivers/pci/controller/dwc/pcie-uniphier-ep.c b/drivers/pci/controller/dwc/pcie-uniphier-ep.c
>> index 5bde3ee682b5..494376d1812d 100644
>> --- a/drivers/pci/controller/dwc/pcie-uniphier-ep.c
>> +++ b/drivers/pci/controller/dwc/pcie-uniphier-ep.c
>> @@ -203,15 +203,6 @@ static void uniphier_pcie_stop_link(struct dw_pcie *pci)
>> uniphier_pcie_ltssm_enable(priv, false);
>> }
>>
>> -static void uniphier_pcie_ep_init(struct dw_pcie_ep *ep)
>> -{
>> - struct dw_pcie *pci = to_dw_pcie_from_ep(ep);
>> - enum pci_barno bar;
>> -
>> - for (bar = BAR_0; bar <= BAR_5; bar++)
>> - dw_pcie_ep_reset_bar(pci, bar);
>> -}
>> -
>> static int uniphier_pcie_ep_raise_intx_irq(struct dw_pcie_ep *ep)
>> {
>> struct dw_pcie *pci = to_dw_pcie_from_ep(ep);
>> @@ -283,7 +274,6 @@ uniphier_pcie_get_features(struct dw_pcie_ep *ep)
>> }
>>
>> static const struct dw_pcie_ep_ops uniphier_pcie_ep_ops = {
>> - .init = uniphier_pcie_ep_init,
>> .raise_irq = uniphier_pcie_ep_raise_irq,
>> .get_features = uniphier_pcie_get_features,
>> };
>> --
>> 2.53.0
>>
[-- Attachment #2: Type: text/html, Size: 15807 bytes --]
next prev parent reply other threads:[~2026-02-23 12:30 UTC|newest]
Thread overview: 10+ messages / expand[flat|nested] mbox.gz Atom feed top
2026-02-17 21:27 [PATCH 0/9] PCI: endpoint differentiate between disabled and reserved BARs Niklas Cassel
2026-02-17 21:27 ` [PATCH 1/9] PCI: endpoint: Introduce pci_epc_bar_type BAR_64BIT_UPPER Niklas Cassel
2026-02-17 21:57 ` Frank Li
2026-02-23 3:57 ` Manikanta Maddireddy
2026-02-23 10:14 ` Geert Uytterhoeven
2026-02-24 13:54 ` Manikanta Maddireddy
2026-02-17 21:27 ` [PATCH 6/9] PCI: dwc: Disable BARs in common code instead of in each glue driver Niklas Cassel
2026-02-17 23:00 ` Frank Li
2026-02-23 4:55 ` Manikanta Maddireddy [this message]
2026-02-23 3:49 ` [PATCH 0/9] PCI: endpoint differentiate between disabled and reserved BARs Manikanta Maddireddy
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=49543234-a1d9-462b-aed1-15d66257957b@nvidia.com \
--to=mmaddireddy@nvidia.com \
--cc=Frank.li@nxp.com \
--cc=alexandre.torgue@foss.st.com \
--cc=bhelgaas@google.com \
--cc=cassel@kernel.org \
--cc=christian.bruel@foss.st.com \
--cc=den@valinux.co.jp \
--cc=dlemoal@kernel.org \
--cc=festevam@gmail.com \
--cc=geert+renesas@glider.be \
--cc=hayashi.kunihiko@socionext.com \
--cc=heiko@sntech.de \
--cc=hongxing.zhu@nxp.com \
--cc=imx@lists.linux.dev \
--cc=jesper.nilsson@axis.com \
--cc=jingoohan1@gmail.com \
--cc=jonathanh@nvidia.com \
--cc=kernel@pengutronix.de \
--cc=kwilczynski@kernel.org \
--cc=l.stach@pengutronix.de \
--cc=linux-arm-kernel@axis.com \
--cc=linux-arm-kernel@lists.infradead.org \
--cc=linux-arm-msm@vger.kernel.org \
--cc=linux-omap@vger.kernel.org \
--cc=linux-pci@vger.kernel.org \
--cc=linux-renesas-soc@vger.kernel.org \
--cc=linux-rockchip@lists.infradead.org \
--cc=linux-stm32@st-md-mailman.stormreply.com \
--cc=linux-tegra@vger.kernel.org \
--cc=linuxppc-dev@lists.ozlabs.org \
--cc=lpieralisi@kernel.org \
--cc=magnus.damm@gmail.com \
--cc=mani@kernel.org \
--cc=marek.vasut+renesas@gmail.com \
--cc=mcoquelin.stm32@gmail.com \
--cc=mhiramat@kernel.org \
--cc=minghuan.Lian@nxp.com \
--cc=mingkai.hu@nxp.com \
--cc=robh@kernel.org \
--cc=roy.zang@nxp.com \
--cc=s-vadapalli@ti.com \
--cc=s.hauer@pengutronix.de \
--cc=thierry.reding@gmail.com \
--cc=vigneshr@ti.com \
--cc=yoshihiro.shimoda.uh@renesas.com \
/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