diff mbox

[PATCHv2,3/6] PCI: layerscape: use accessors to enable/disable DBI RO registers' write permission

Message ID 1501748620-42866-4-git-send-email-Zhiqiang.Hou@nxp.com
State Changes Requested
Headers show

Commit Message

Z.Q. Hou Aug. 3, 2017, 8:23 a.m. UTC
From: Hou Zhiqiang <Zhiqiang.Hou@nxp.com>

Use the accessors instead accessing the DBI read-only write enable
register directly. And the STRFMR1 is not read-only register, so move it
out from the write-enable bracket.

Signed-off-by: Hou Zhiqiang <Zhiqiang.Hou@nxp.com>
---
V2:
 - New patch split from patch v1 3/3.

 drivers/pci/dwc/pci-layerscape.c | 6 +++---
 1 file changed, 3 insertions(+), 3 deletions(-)

Comments

Joao Pinto Aug. 8, 2017, 12:46 p.m. UTC | #1
Às 9:23 AM de 8/3/2017, Zhiqiang Hou escreveu:
> From: Hou Zhiqiang <Zhiqiang.Hou@nxp.com>
> 
> Use the accessors instead accessing the DBI read-only write enable
> register directly. And the STRFMR1 is not read-only register, so move it
> out from the write-enable bracket.
> 
> Signed-off-by: Hou Zhiqiang <Zhiqiang.Hou@nxp.com>
> ---
> V2:
>  - New patch split from patch v1 3/3.
> 
>  drivers/pci/dwc/pci-layerscape.c | 6 +++---
>  1 file changed, 3 insertions(+), 3 deletions(-)
> 
> diff --git a/drivers/pci/dwc/pci-layerscape.c b/drivers/pci/dwc/pci-layerscape.c
> index fd86128..09056a6 100644
> --- a/drivers/pci/dwc/pci-layerscape.c
> +++ b/drivers/pci/dwc/pci-layerscape.c
> @@ -33,7 +33,6 @@
>  
>  /* PEX Internal Configuration Registers */
>  #define PCIE_STRFMR1		0x71c /* Symbol Timer & Filter Mask Register1 */
> -#define PCIE_DBI_RO_WR_EN	0x8bc /* DBI Read-Only Write Enable Register */
>  
>  struct ls_pcie_drvdata {
>  	u32 lut_offset;
> @@ -155,11 +154,12 @@ static void ls_pcie_host_init(struct pcie_port *pp)
>  	struct dw_pcie *pci = to_dw_pcie_from_pp(pp);
>  	struct ls_pcie *pcie = to_ls_pcie(pci);
>  
> -	iowrite32(1, pci->dbi_base + PCIE_DBI_RO_WR_EN);
> +	dw_pcie_dbi_ro_wr_en(pci);
>  	ls_pcie_fix_class(pcie);
>  	ls_pcie_clear_multifunction(pcie);
> +	dw_pcie_dbi_ro_wr_dis(pci);
> +
>  	ls_pcie_drop_msg_tlp(pcie);
> -	iowrite32(0, pci->dbi_base + PCIE_DBI_RO_WR_EN);
>  }
>  
>  static int ls_pcie_msi_host_init(struct pcie_port *pp,
> 

Acked-By: Joao Pinto <jpinto@synopsys.com>
Z.Q. Hou Aug. 9, 2017, 2:52 a.m. UTC | #2
Hi Joao,

Thanks a lot for your ack!

> -----Original Message-----

> From: Joao Pinto [mailto:Joao.Pinto@synopsys.com]

> Sent: 2017年8月8日 20:46

> To: Z.q. Hou <zhiqiang.hou@nxp.com>; linux-pci@vger.kernel.org;

> bhelgaas@google.com; jingoohan1@gmail.com; Joao.Pinto@synopsys.com

> Cc: M.h. Lian <minghuan.lian@nxp.com>; Mingkai Hu <mingkai.hu@nxp.com>;

> Roy Zang <roy.zang@nxp.com>

> Subject: Re: [PATCHv2 3/6] PCI: layerscape: use accessors to enable/disable

> DBI RO registers' write permission

> 

> Às 9:23 AM de 8/3/2017, Zhiqiang Hou escreveu:

> > From: Hou Zhiqiang <Zhiqiang.Hou@nxp.com>

> >

> > Use the accessors instead accessing the DBI read-only write enable

> > register directly. And the STRFMR1 is not read-only register, so move

> > it out from the write-enable bracket.

> >

> > Signed-off-by: Hou Zhiqiang <Zhiqiang.Hou@nxp.com>

> > ---

> > V2:

> >  - New patch split from patch v1 3/3.

> >

> >  drivers/pci/dwc/pci-layerscape.c | 6 +++---

> >  1 file changed, 3 insertions(+), 3 deletions(-)

> >

> > diff --git a/drivers/pci/dwc/pci-layerscape.c

> > b/drivers/pci/dwc/pci-layerscape.c

> > index fd86128..09056a6 100644

> > --- a/drivers/pci/dwc/pci-layerscape.c

> > +++ b/drivers/pci/dwc/pci-layerscape.c

> > @@ -33,7 +33,6 @@

> >

> >  /* PEX Internal Configuration Registers */

> >  #define PCIE_STRFMR1		0x71c /* Symbol Timer & Filter Mask

> Register1 */

> > -#define PCIE_DBI_RO_WR_EN	0x8bc /* DBI Read-Only Write Enable

> Register */

> >

> >  struct ls_pcie_drvdata {

> >  	u32 lut_offset;

> > @@ -155,11 +154,12 @@ static void ls_pcie_host_init(struct pcie_port *pp)

> >  	struct dw_pcie *pci = to_dw_pcie_from_pp(pp);

> >  	struct ls_pcie *pcie = to_ls_pcie(pci);

> >

> > -	iowrite32(1, pci->dbi_base + PCIE_DBI_RO_WR_EN);

> > +	dw_pcie_dbi_ro_wr_en(pci);

> >  	ls_pcie_fix_class(pcie);

> >  	ls_pcie_clear_multifunction(pcie);

> > +	dw_pcie_dbi_ro_wr_dis(pci);

> > +

> >  	ls_pcie_drop_msg_tlp(pcie);

> > -	iowrite32(0, pci->dbi_base + PCIE_DBI_RO_WR_EN);

> >  }

> >

> >  static int ls_pcie_msi_host_init(struct pcie_port *pp,

> >

> 

> Acked-By: Joao Pinto <jpinto@synopsys.com>


- Zhiqiang
diff mbox

Patch

diff --git a/drivers/pci/dwc/pci-layerscape.c b/drivers/pci/dwc/pci-layerscape.c
index fd86128..09056a6 100644
--- a/drivers/pci/dwc/pci-layerscape.c
+++ b/drivers/pci/dwc/pci-layerscape.c
@@ -33,7 +33,6 @@ 
 
 /* PEX Internal Configuration Registers */
 #define PCIE_STRFMR1		0x71c /* Symbol Timer & Filter Mask Register1 */
-#define PCIE_DBI_RO_WR_EN	0x8bc /* DBI Read-Only Write Enable Register */
 
 struct ls_pcie_drvdata {
 	u32 lut_offset;
@@ -155,11 +154,12 @@  static void ls_pcie_host_init(struct pcie_port *pp)
 	struct dw_pcie *pci = to_dw_pcie_from_pp(pp);
 	struct ls_pcie *pcie = to_ls_pcie(pci);
 
-	iowrite32(1, pci->dbi_base + PCIE_DBI_RO_WR_EN);
+	dw_pcie_dbi_ro_wr_en(pci);
 	ls_pcie_fix_class(pcie);
 	ls_pcie_clear_multifunction(pcie);
+	dw_pcie_dbi_ro_wr_dis(pci);
+
 	ls_pcie_drop_msg_tlp(pcie);
-	iowrite32(0, pci->dbi_base + PCIE_DBI_RO_WR_EN);
 }
 
 static int ls_pcie_msi_host_init(struct pcie_port *pp,