linuxppc-dev.lists.ozlabs.org archive mirror
 help / color / mirror / Atom feed
* [PATCH v3 1/1] PCI: layerscape: Add EP mode support for ls1028a
@ 2023-02-09 15:10 Frank Li
  2023-02-10 18:21 ` [External] : " ALOK TIWARI
                   ` (3 more replies)
  0 siblings, 4 replies; 7+ messages in thread
From: Frank Li @ 2023-02-09 15:10 UTC (permalink / raw)
  To: helgaas
  Cc: kw, imx, alok.a.tiwari, lpieralisi, frank.li, linux-kernel,
	minghuan.lian, mingkai.hu, linux-pci, bhelgaas, roy.zang,
	linuxppc-dev, robh, linux-arm-kernel

From: Xiaowei Bao <xiaowei.bao@nxp.com>

Add PCIe EP mode support for ls1028a.

Signed-off-by: Xiaowei Bao <xiaowei.bao@nxp.com>
Signed-off-by: Hou Zhiqiang <Zhiqiang.Hou@nxp.com>
Signed-off-by: Frank Li <Frank.Li@nxp>
Acked-by:  Roy Zang <Roy.Zang@nxp.com>
---

Change from v2 to v3
order by .compatible

Change from v2 to v2
Added
Signed-off-by: Frank Li <Frank.Li@nxp>
Acked-by:  Roy Zang <Roy.Zang@nxp.com>


All other patches were already accepte by maintainer in
https://lore.kernel.org/lkml/20211112223457.10599-1-leoyang.li@nxp.com/

But missed this one.

Re-post

 drivers/pci/controller/dwc/pci-layerscape-ep.c | 1 +
 1 file changed, 1 insertion(+)

diff --git a/drivers/pci/controller/dwc/pci-layerscape-ep.c b/drivers/pci/controller/dwc/pci-layerscape-ep.c
index ad99707b3b99..c640db60edc6 100644
--- a/drivers/pci/controller/dwc/pci-layerscape-ep.c
+++ b/drivers/pci/controller/dwc/pci-layerscape-ep.c
@@ -110,6 +110,7 @@ static const struct ls_pcie_ep_drvdata lx2_ep_drvdata = {
 };
 
 static const struct of_device_id ls_pcie_ep_of_match[] = {
+	{ .compatible = "fsl,ls1028a-pcie-ep", .data = &ls1_ep_drvdata },
 	{ .compatible = "fsl,ls1046a-pcie-ep", .data = &ls1_ep_drvdata },
 	{ .compatible = "fsl,ls1088a-pcie-ep", .data = &ls2_ep_drvdata },
 	{ .compatible = "fsl,ls2088a-pcie-ep", .data = &ls2_ep_drvdata },
-- 
2.34.1


^ permalink raw reply related	[flat|nested] 7+ messages in thread

* Re: [External] : [PATCH v3 1/1] PCI: layerscape: Add EP mode support for ls1028a
  2023-02-09 15:10 [PATCH v3 1/1] PCI: layerscape: Add EP mode support for ls1028a Frank Li
@ 2023-02-10 18:21 ` ALOK TIWARI
  2023-02-10 20:04   ` Bjorn Helgaas
  2023-02-10 20:07 ` ALOK TIWARI
                   ` (2 subsequent siblings)
  3 siblings, 1 reply; 7+ messages in thread
From: ALOK TIWARI @ 2023-02-10 18:21 UTC (permalink / raw)
  To: Frank Li, helgaas
  Cc: imx, kw, linux-pci, lpieralisi, linux-kernel, minghuan.lian,
	mingkai.hu, roy.zang, bhelgaas, linuxppc-dev, robh,
	linux-arm-kernel

LGTM,


Thanks,

Alok

On 2/9/2023 8:40 PM, Frank Li wrote:
> From: Xiaowei Bao <xiaowei.bao@nxp.com>
>
> Add PCIe EP mode support for ls1028a.
>
> Signed-off-by: Xiaowei Bao <xiaowei.bao@nxp.com>
> Signed-off-by: Hou Zhiqiang <Zhiqiang.Hou@nxp.com>
> Signed-off-by: Frank Li <Frank.Li@nxp>
> Acked-by:  Roy Zang <Roy.Zang@nxp.com>
> ---
>
> Change from v2 to v3
> order by .compatible
>
> Change from v2 to v2
> Added
> Signed-off-by: Frank Li <Frank.Li@nxp>
> Acked-by:  Roy Zang <Roy.Zang@nxp.com>
>
>
> All other patches were already accepte by maintainer in
> https://urldefense.com/v3/__https://lore.kernel.org/lkml/20211112223457.10599-1-leoyang.li@nxp.com/__;!!ACWV5N9M2RV99hQ!NR9EU4fPDwxdyrb9tdBm9VNIMHSlw6dLgXCAPDSrm7ftWVNrh6JldLGzzrKyiE0xRlP5OdiGBN7PCf9gRaA$
>
> But missed this one.
>
> Re-post
>
>   drivers/pci/controller/dwc/pci-layerscape-ep.c | 1 +
>   1 file changed, 1 insertion(+)
>
> diff --git a/drivers/pci/controller/dwc/pci-layerscape-ep.c b/drivers/pci/controller/dwc/pci-layerscape-ep.c
> index ad99707b3b99..c640db60edc6 100644
> --- a/drivers/pci/controller/dwc/pci-layerscape-ep.c
> +++ b/drivers/pci/controller/dwc/pci-layerscape-ep.c
> @@ -110,6 +110,7 @@ static const struct ls_pcie_ep_drvdata lx2_ep_drvdata = {
>   };
>   
>   static const struct of_device_id ls_pcie_ep_of_match[] = {
> +	{ .compatible = "fsl,ls1028a-pcie-ep", .data = &ls1_ep_drvdata },
>   	{ .compatible = "fsl,ls1046a-pcie-ep", .data = &ls1_ep_drvdata },
>   	{ .compatible = "fsl,ls1088a-pcie-ep", .data = &ls2_ep_drvdata },
>   	{ .compatible = "fsl,ls2088a-pcie-ep", .data = &ls2_ep_drvdata },

^ permalink raw reply	[flat|nested] 7+ messages in thread

* Re: [External] : [PATCH v3 1/1] PCI: layerscape: Add EP mode support for ls1028a
  2023-02-10 18:21 ` [External] : " ALOK TIWARI
@ 2023-02-10 20:04   ` Bjorn Helgaas
  0 siblings, 0 replies; 7+ messages in thread
From: Bjorn Helgaas @ 2023-02-10 20:04 UTC (permalink / raw)
  To: ALOK TIWARI
  Cc: imx, kw, linux-pci, lpieralisi, Frank Li, linux-kernel,
	minghuan.lian, mingkai.hu, roy.zang, bhelgaas, linuxppc-dev,
	robh, linux-arm-kernel

On Fri, Feb 10, 2023 at 11:51:46PM +0530, ALOK TIWARI wrote:
> LGTM,

Thanks a lot for looking at this!

In the Linux world, "LGTM" is not something a maintainer can really
act on.  If you respond with a "Reviewed-by" tag as described here:

  https://git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git/tree/Documentation/process/submitting-patches.rst?id=v6.1#n495

maintainers (or tooling like b4) can add it to the patch when merging
it.  Here are some examples of how it can be used:

  https://lore.kernel.org/linux-pci/BN9PR11MB527699243353309A1DDFEFBE8CDE9@BN9PR11MB5276.namprd11.prod.outlook.com/
  https://lore.kernel.org/linux-pci/Y9AEzVrTB4Sobufr@memverge.com/
  https://lore.kernel.org/linux-pci/a20028e6-3318-26ca-117a-26c87c292139@linaro.org/

Bjorn

> On 2/9/2023 8:40 PM, Frank Li wrote:
> > From: Xiaowei Bao <xiaowei.bao@nxp.com>
> > 
> > Add PCIe EP mode support for ls1028a.
> > 
> > Signed-off-by: Xiaowei Bao <xiaowei.bao@nxp.com>
> > Signed-off-by: Hou Zhiqiang <Zhiqiang.Hou@nxp.com>
> > Signed-off-by: Frank Li <Frank.Li@nxp>
> > Acked-by:  Roy Zang <Roy.Zang@nxp.com>

^ permalink raw reply	[flat|nested] 7+ messages in thread

* Re: [External] : [PATCH v3 1/1] PCI: layerscape: Add EP mode support for ls1028a
  2023-02-09 15:10 [PATCH v3 1/1] PCI: layerscape: Add EP mode support for ls1028a Frank Li
  2023-02-10 18:21 ` [External] : " ALOK TIWARI
@ 2023-02-10 20:07 ` ALOK TIWARI
  2023-02-10 20:11 ` ALOK TIWARI
  2023-03-17 16:38 ` Lorenzo Pieralisi
  3 siblings, 0 replies; 7+ messages in thread
From: ALOK TIWARI @ 2023-02-10 20:07 UTC (permalink / raw)
  To: Frank Li, helgaas
  Cc: imx, kw, linux-pci, lpieralisi, linux-kernel, minghuan.lian,
	mingkai.hu, roy.zang, bhelgaas, linuxppc-dev, robh,
	linux-arm-kernel

[-- Attachment #1: Type: text/plain, Size: 1686 bytes --]


Reviewed-by: Alok Tiwari <alok.a.tiwari@oracle.com>


On 2/9/2023 8:40 PM, Frank Li wrote:
> From: Xiaowei Bao<xiaowei.bao@nxp.com>
>
> Add PCIe EP mode support for ls1028a.
>
> Signed-off-by: Xiaowei Bao<xiaowei.bao@nxp.com>
> Signed-off-by: Hou Zhiqiang<Zhiqiang.Hou@nxp.com>
> Signed-off-by: Frank Li <Frank.Li@nxp>
> Acked-by:  Roy Zang<Roy.Zang@nxp.com>
> ---
>
> Change from v2 to v3
> order by .compatible
>
> Change from v2 to v2
> Added
> Signed-off-by: Frank Li <Frank.Li@nxp>
> Acked-by:  Roy Zang<Roy.Zang@nxp.com>

Reviewed-by: Alok Tiwari <alok.a.tiwari@oracle.com>

>
>
> All other patches were already accepte by maintainer in
> https://urldefense.com/v3/__https://lore.kernel.org/lkml/20211112223457.10599-1-leoyang.li@nxp.com/__;!!ACWV5N9M2RV99hQ!NR9EU4fPDwxdyrb9tdBm9VNIMHSlw6dLgXCAPDSrm7ftWVNrh6JldLGzzrKyiE0xRlP5OdiGBN7PCf9gRaA$  
>
> But missed this one.
>
> Re-post
>
>   drivers/pci/controller/dwc/pci-layerscape-ep.c | 1 +
>   1 file changed, 1 insertion(+)
>
> diff --git a/drivers/pci/controller/dwc/pci-layerscape-ep.c b/drivers/pci/controller/dwc/pci-layerscape-ep.c
> index ad99707b3b99..c640db60edc6 100644
> --- a/drivers/pci/controller/dwc/pci-layerscape-ep.c
> +++ b/drivers/pci/controller/dwc/pci-layerscape-ep.c
> @@ -110,6 +110,7 @@ static const struct ls_pcie_ep_drvdata lx2_ep_drvdata = {
>   };
>   
>   static const struct of_device_id ls_pcie_ep_of_match[] = {
> +	{ .compatible = "fsl,ls1028a-pcie-ep", .data = &ls1_ep_drvdata },
>   	{ .compatible = "fsl,ls1046a-pcie-ep", .data = &ls1_ep_drvdata },
>   	{ .compatible = "fsl,ls1088a-pcie-ep", .data = &ls2_ep_drvdata },
>   	{ .compatible = "fsl,ls2088a-pcie-ep", .data = &ls2_ep_drvdata },

[-- Attachment #2: Type: text/html, Size: 73930 bytes --]

^ permalink raw reply	[flat|nested] 7+ messages in thread

* Re: [External] : [PATCH v3 1/1] PCI: layerscape: Add EP mode support for ls1028a
  2023-02-09 15:10 [PATCH v3 1/1] PCI: layerscape: Add EP mode support for ls1028a Frank Li
  2023-02-10 18:21 ` [External] : " ALOK TIWARI
  2023-02-10 20:07 ` ALOK TIWARI
@ 2023-02-10 20:11 ` ALOK TIWARI
  2023-03-14 19:59   ` [EXT] " Frank Li
  2023-03-17 16:38 ` Lorenzo Pieralisi
  3 siblings, 1 reply; 7+ messages in thread
From: ALOK TIWARI @ 2023-02-10 20:11 UTC (permalink / raw)
  To: Frank Li, helgaas
  Cc: imx, kw, linux-pci, lpieralisi, linux-kernel, minghuan.lian,
	mingkai.hu, roy.zang, bhelgaas, linuxppc-dev, robh,
	linux-arm-kernel

Reviewed-by: Alok Tiwari <alok.a.tiwari@oracle.com>

On 2/9/2023 8:40 PM, Frank Li wrote:
> From: Xiaowei Bao <xiaowei.bao@nxp.com>
>
> Add PCIe EP mode support for ls1028a.
>
> Signed-off-by: Xiaowei Bao <xiaowei.bao@nxp.com>
> Signed-off-by: Hou Zhiqiang <Zhiqiang.Hou@nxp.com>
> Signed-off-by: Frank Li <Frank.Li@nxp>
> Acked-by:  Roy Zang <Roy.Zang@nxp.com>
> ---
>
> Change from v2 to v3
> order by .compatible
>
> Change from v2 to v2
> Added
> Signed-off-by: Frank Li <Frank.Li@nxp>
> Acked-by:  Roy Zang <Roy.Zang@nxp.com>
>
>
> All other patches were already accepte by maintainer in
> https://urldefense.com/v3/__https://lore.kernel.org/lkml/20211112223457.10599-1-leoyang.li@nxp.com/__;!!ACWV5N9M2RV99hQ!NR9EU4fPDwxdyrb9tdBm9VNIMHSlw6dLgXCAPDSrm7ftWVNrh6JldLGzzrKyiE0xRlP5OdiGBN7PCf9gRaA$
>
> But missed this one.
>
> Re-post
>
>   drivers/pci/controller/dwc/pci-layerscape-ep.c | 1 +
>   1 file changed, 1 insertion(+)
>
> diff --git a/drivers/pci/controller/dwc/pci-layerscape-ep.c b/drivers/pci/controller/dwc/pci-layerscape-ep.c
> index ad99707b3b99..c640db60edc6 100644
> --- a/drivers/pci/controller/dwc/pci-layerscape-ep.c
> +++ b/drivers/pci/controller/dwc/pci-layerscape-ep.c
> @@ -110,6 +110,7 @@ static const struct ls_pcie_ep_drvdata lx2_ep_drvdata = {
>   };
>   
>   static const struct of_device_id ls_pcie_ep_of_match[] = {
> +	{ .compatible = "fsl,ls1028a-pcie-ep", .data = &ls1_ep_drvdata },
>   	{ .compatible = "fsl,ls1046a-pcie-ep", .data = &ls1_ep_drvdata },
>   	{ .compatible = "fsl,ls1088a-pcie-ep", .data = &ls2_ep_drvdata },
>   	{ .compatible = "fsl,ls2088a-pcie-ep", .data = &ls2_ep_drvdata },

^ permalink raw reply	[flat|nested] 7+ messages in thread

* RE: [EXT] Re: [External] : [PATCH v3 1/1] PCI: layerscape: Add EP mode support for ls1028a
  2023-02-10 20:11 ` ALOK TIWARI
@ 2023-03-14 19:59   ` Frank Li
  0 siblings, 0 replies; 7+ messages in thread
From: Frank Li @ 2023-03-14 19:59 UTC (permalink / raw)
  To: ALOK TIWARI, helgaas
  Cc: imx, kw, linux-pci, lpieralisi, linux-kernel, M.H. Lian,
	Mingkai Hu, Roy Zang, bhelgaas, linuxppc-dev, robh,
	linux-arm-kernel

> 
> Reviewed-by: Alok Tiwari <alok.a.tiwari@oracle.com>
> 
> On 2/9/2023 8:40 PM, Frank Li wrote:
> > From: Xiaowei Bao <xiaowei.bao@nxp.com>
> >
> > Add PCIe EP mode support for ls1028a.
> >
> > Signed-off-by: Xiaowei Bao <xiaowei.bao@nxp.com>
> > Signed-off-by: Hou Zhiqiang <Zhiqiang.Hou@nxp.com>
> > Signed-off-by: Frank Li <Frank.Li@nxp>
> > Acked-by:  Roy Zang <Roy.Zang@nxp.com>
> > ---

Ping!
there are no feedback for over 1 month. 
Just 1 line change. 

> >
> > Change from v2 to v3
> > order by .compatible
> >
> > Change from v2 to v2
> > Added
> > Signed-off-by: Frank Li <Frank.Li@nxp>
> > Acked-by:  Roy Zang <Roy.Zang@nxp.com>
> >
> >
> > All other patches were already accepte by maintainer in
> >
> https://eur01.safelinks.protection.outlook.com/?url=https%3A%2F%2Furlde
> fense.com%2Fv3%2F__https%3A%2F%2Flore.kernel.org%2Flkml%2F2021111
> 2223457.10599-1-
> leoyang.li%40nxp.com%2F__%3B!!ACWV5N9M2RV99hQ!NR9EU4fPDwxdyrb
> 9tdBm9VNIMHSlw6dLgXCAPDSrm7ftWVNrh6JldLGzzrKyiE0xRlP5OdiGBN7PCf
> 9gRaA%24&data=05%7C01%7CFrank.Li%40nxp.com%7C1d32974e205b4a8591
> 9f08db0ba30b9b%7C686ea1d3bc2b4c6fa92cd99c5c301635%7C0%7C0%7C6381
> 16567129733840%7CUnknown%7CTWFpbGZsb3d8eyJWIjoiMC4wLjAwMDAiL
> CJQIjoiV2luMzIiLCJBTiI6Ik1haWwiLCJXVCI6Mn0%3D%7C3000%7C%7C%7C&sd
> ata=hGKffPqpE%2Ft66x71Y47ocGbIuFH7vpjLadlAXbnyBOw%3D&reserved=0
> >
> > But missed this one.
> >
> > Re-post
> >
> >   drivers/pci/controller/dwc/pci-layerscape-ep.c | 1 +
> >   1 file changed, 1 insertion(+)
> >
> > diff --git a/drivers/pci/controller/dwc/pci-layerscape-ep.c
> b/drivers/pci/controller/dwc/pci-layerscape-ep.c
> > index ad99707b3b99..c640db60edc6 100644
> > --- a/drivers/pci/controller/dwc/pci-layerscape-ep.c
> > +++ b/drivers/pci/controller/dwc/pci-layerscape-ep.c
> > @@ -110,6 +110,7 @@ static const struct ls_pcie_ep_drvdata
> lx2_ep_drvdata = {
> >   };
> >
> >   static const struct of_device_id ls_pcie_ep_of_match[] = {
> > +     { .compatible = "fsl,ls1028a-pcie-ep", .data = &ls1_ep_drvdata },
> >       { .compatible = "fsl,ls1046a-pcie-ep", .data = &ls1_ep_drvdata },
> >       { .compatible = "fsl,ls1088a-pcie-ep", .data = &ls2_ep_drvdata },
> >       { .compatible = "fsl,ls2088a-pcie-ep", .data = &ls2_ep_drvdata },

^ permalink raw reply	[flat|nested] 7+ messages in thread

* Re: [PATCH v3 1/1] PCI: layerscape: Add EP mode support for ls1028a
  2023-02-09 15:10 [PATCH v3 1/1] PCI: layerscape: Add EP mode support for ls1028a Frank Li
                   ` (2 preceding siblings ...)
  2023-02-10 20:11 ` ALOK TIWARI
@ 2023-03-17 16:38 ` Lorenzo Pieralisi
  3 siblings, 0 replies; 7+ messages in thread
From: Lorenzo Pieralisi @ 2023-03-17 16:38 UTC (permalink / raw)
  To: helgaas, Frank Li
  Cc: kw, imx, alok.a.tiwari, Lorenzo Pieralisi, frank.li,
	linux-kernel, minghuan.lian, mingkai.hu, linux-pci, bhelgaas,
	roy.zang, linuxppc-dev, robh, linux-arm-kernel

On Thu, 09 Feb 2023 10:10:50 -0500, Frank Li wrote:
> Add PCIe EP mode support for ls1028a.
> 
> 

Applied to controller/layerscape, thanks!

[1/1] PCI: layerscape: Add EP mode support for ls1028a
      https://git.kernel.org/pci/pci/c/be567c6cbc08

Thanks,
Lorenzo

^ permalink raw reply	[flat|nested] 7+ messages in thread

end of thread, other threads:[~2023-03-18  6:07 UTC | newest]

Thread overview: 7+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2023-02-09 15:10 [PATCH v3 1/1] PCI: layerscape: Add EP mode support for ls1028a Frank Li
2023-02-10 18:21 ` [External] : " ALOK TIWARI
2023-02-10 20:04   ` Bjorn Helgaas
2023-02-10 20:07 ` ALOK TIWARI
2023-02-10 20:11 ` ALOK TIWARI
2023-03-14 19:59   ` [EXT] " Frank Li
2023-03-17 16:38 ` Lorenzo Pieralisi

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).