Re: [U-Boot] [PATCH v1] pci: add DM based mpc85xx driver

2019-08-30 Thread Z.q. Hou
Hi Heiko,

> -Original Message-
> From: Heiko Schocher 
> Sent: 2019年8月30日 12:17
> To: Z.q. Hou 
> Cc: u-boot@lists.denx.de; Alexander Graf ; Andrew F. Davis
> ; Xiaowei Bao ; Bin Meng
> ; Eugen Hristev ;
> Heinrich Schuchardt ; Horatiu Vultur
> ; Krzysztof Kozlowski ;
> Liviu Dudau ; Marek Vasut
> ; Mario Six ; Michal Simek
> ; Neil Armstrong ;
> Prabhakar Kushwaha ; Ryder Lee
> ; Simon Glass ; Stefan
> Roese 
> Subject: Re: [PATCH v1] pci: add DM based mpc85xx driver
> 
> Hello Z.q. Hou,
> 
> Am 29.08.2019 um 10:11 schrieb Z.q. Hou:
> > Hi Heiko,
> >
> >> -Original Message-
> >> From: Heiko Schocher 
> >> Sent: 2019年7月16日 11:36
> >> To: u-boot@lists.denx.de
> >> Cc: Heiko Schocher ; Alexander Graf ;
> >> Andrew F. Davis ; Xiaowei Bao ;
> Bin
> >> Meng ; Eugen Hristev
> >> ; Heinrich Schuchardt
> >> ; Horatiu Vultur ;
> >> Z.q. Hou ; Krzysztof Kozlowski
> >> ; Liviu Dudau ; Marek
> >> Vasut ; Mario Six ;
> Michal
> >> Simek ; Neil Armstrong
> >> ; Prabhakar Kushwaha
> >> ; Ryder Lee
> ;
> >> Simon Glass ; Stefan Roese 
> >> Subject: [PATCH v1] pci: add DM based mpc85xx driver
> >>
> >> add DM based PCI Configuration space access support for MPC85xx PCI
> >> Bridge
> >
> > Seems you're converting the arch/powerpc/cpu/mpc85xx/pci.c to driver
> > model,
> 
> Yes, should have added this to commit message .. fixed.
> 
> > but not every mpc85xx platform uses this driver, platforms mpc8536,
> > 8544,
> > 8548 and 8568 use the drivers/pci/fsl_pci_init.c, please take them into
> account.
> 
> Oh, wasn;t aware of this! ... I have no idea why there are 2 drivers and
> where are the differences between them, nor I can test all the other
> plattforms, so this seems difficult to me.
> 
> Do you know, why there are 2 different drivers?

I guess the mpc85xx/pci.c was added for the older platforms, which only
integrated PCI controllers, it can't support the newer platforms, which
integrated both PCI and PCIe controllers. So the fsl_pci_init.c was added.

> 
> I made this new driver, because I work on DM support for the socrates board,
> which is mpc8544 based ... !?
> 
> May I rename this driver from pci_mpc85xx.c to pci_mpc85xx_dm.c and it
> can be a base for DM support and others, who can test their changes, can
> add the other variants?

It's unnecessary to change the driver file name, I can help to verify on 
mpc8548,
Let others add other mpc85xx PCI DM driver base on this.

> 
> > Note: The platforms using arch/powerpc/cpu/mpc85xx/pci.c set up PCI
> > LAWs in file arch/powerpc/cpu/mpc8xxx/law.c, while other platforms set
> > up PCI LAWs in PCI driver. So I think you can move the PCI LAWs set-up
> > into this DM PCI driver And remove the PCI entries from law.c.
> 
> Yes good idea, add this in v2 for this driver.
> 
> >> Signed-off-by: Heiko Schocher 
> >>
> >> ---
> >> Travis build, see:
> >> https://travis
> >>
> -ci.org%2Fhsdenx%2Fu-boot-test%2Fbuilds%2F558855544&data=02%7
> >>
> C01%7CZhiqiang.Hou%40nxp.com%7C231ac8975b2242ea5bfb08d7099eccc
> >>
> 8%7C686ea1d3bc2b4c6fa92cd99c5c301635%7C0%7C0%7C63698844995746
> >>
> 0734&sdata=lQcXtvh5a0G9r%2BFlXnnGQ5VgDYvcR%2FEGWpShJ324su
> >> U%3D&reserved=0
> >>
> >>   MAINTAINERS   |   5 ++
> >>   drivers/pci/Kconfig   |   7 ++
> >>   drivers/pci/Makefile  |   1 +
> >>   drivers/pci/pci_mpc85xx.c | 132
> >> ++
> >>   4 files changed, 145 insertions(+)
> >>   create mode 100644 drivers/pci/pci_mpc85xx.c
> >>
> >> diff --git a/MAINTAINERS b/MAINTAINERS index
> e91684191f..01faa67a6d
> >> 100644
> >> --- a/MAINTAINERS
> >> +++ b/MAINTAINERS
> >> @@ -639,6 +639,11 @@ S:Maintained
> >>   F:   drivers/pci_endpoint/
> >>   F:  include/pci_ep.h
> >>
> >> +PCI MPC85xx
> >> +M:Heiko Schocher 
> >> +S:Maintained
> >> +F:drivers/pci/pci_mpc85xx.c
> >> +
> >>   POWER
> >>   M:   Jaehoon Chung 
> >>   S:   Maintained
> >> diff --git a/drivers/pci/Kconfig b/drivers/pci/Kconfig index
> >> 3fe38f7315..88db0067b4 100644
> >> --- a/drivers/pci/Kconfig
> >> +++ b/drivers/pci/Kconfig
> >> @@ -68,6 +68,13 @@ config PCIE_FSL
> >>  PowerPC MPC85xx, MPC86xx, B series, P series and T series
> SoCs.
> >>  This driver does not support SRIO_PCIE_BOOT feature.
> >>
> >> +config PCI_MPC85XX
> >> +  bool "MPC85XX PowerPC PCI support"
> >> +  depends on DM_PCI
> >> +  help
> >> +Say Y here if you want to enable PCI controller support on FSL
> >> +PowerPC MPC85xx SoC.
> >> +
> >>   config PCI_RCAR_GEN2
> >>bool "Renesas RCar Gen2 PCIe driver"
> >>depends on DM_PCI
> >> diff --git a/drivers/pci/Makefile b/drivers/pci/Makefile index
> >> b5ebd50c85..929f119fb3 100644
> >> --- a/drivers/pci/Makefile
> >> +++ b/drivers/pci/Makefile
> >> @@ -19,6 +19,7 @@ obj-$(CONFIG_PCIE_ECAM_GENERIC) +=
> >> pcie_ecam_generic.o
> >>   obj-$(CONFIG_FSL_PCI_INIT) += fsl_pci_init.o
> >>   obj-$(CONFIG_PCI_INDIRECT_BRIDGE) += pci_indirect.o
> >>   obj-$(CONFIG_PCI_GT64120) += pci_gt64120.o
> >> +obj-$

Re: [U-Boot] [PATCH v1] pci: add DM based mpc85xx driver

2019-08-29 Thread Heiko Schocher

Hello Z.q. Hou,

Am 29.08.2019 um 10:11 schrieb Z.q. Hou:

Hi Heiko,


-Original Message-
From: Heiko Schocher 
Sent: 2019年7月16日 11:36
To: u-boot@lists.denx.de
Cc: Heiko Schocher ; Alexander Graf ;
Andrew F. Davis ; Xiaowei Bao ; Bin
Meng ; Eugen Hristev
; Heinrich Schuchardt
; Horatiu Vultur ;
Z.q. Hou ; Krzysztof Kozlowski ;
Liviu Dudau ; Marek Vasut
; Mario Six ; Michal Simek
; Neil Armstrong ;
Prabhakar Kushwaha ; Ryder Lee
; Simon Glass ; Stefan
Roese 
Subject: [PATCH v1] pci: add DM based mpc85xx driver

add DM based PCI Configuration space access support for MPC85xx PCI
Bridge


Seems you're converting the arch/powerpc/cpu/mpc85xx/pci.c to driver model,


Yes, should have added this to commit message .. fixed.


but not every mpc85xx platform uses this driver, platforms mpc8536, 8544,
8548 and 8568 use the drivers/pci/fsl_pci_init.c, please take them into account.


Oh, wasn;t aware of this! ... I have no idea why there are 2 drivers and
where are the differences between them, nor I can test all the other
plattforms, so this seems difficult to me.

Do you know, why there are 2 different drivers?

I made this new driver, because I work on DM support for the socrates
board, which is mpc8544 based ... !?

May I rename this driver from pci_mpc85xx.c to pci_mpc85xx_dm.c and it
can be a base for DM support and others, who can test their changes,
can add the other variants?


Note: The platforms using arch/powerpc/cpu/mpc85xx/pci.c set up PCI LAWs in
file arch/powerpc/cpu/mpc8xxx/law.c, while other platforms set up PCI LAWs in
PCI driver. So I think you can move the PCI LAWs set-up into this DM PCI driver
And remove the PCI entries from law.c.


Yes good idea, add this in v2 for this driver.


Signed-off-by: Heiko Schocher 

---
Travis build, see:
https://eur01.safelinks.protection.outlook.com/?url=https%3A%2F%2Ftravis
-ci.org%2Fhsdenx%2Fu-boot-test%2Fbuilds%2F558855544&data=02%7
C01%7CZhiqiang.Hou%40nxp.com%7C231ac8975b2242ea5bfb08d7099eccc
8%7C686ea1d3bc2b4c6fa92cd99c5c301635%7C0%7C0%7C63698844995746
0734&sdata=lQcXtvh5a0G9r%2BFlXnnGQ5VgDYvcR%2FEGWpShJ324su
U%3D&reserved=0

  MAINTAINERS   |   5 ++
  drivers/pci/Kconfig   |   7 ++
  drivers/pci/Makefile  |   1 +
  drivers/pci/pci_mpc85xx.c | 132
++
  4 files changed, 145 insertions(+)
  create mode 100644 drivers/pci/pci_mpc85xx.c

diff --git a/MAINTAINERS b/MAINTAINERS
index e91684191f..01faa67a6d 100644
--- a/MAINTAINERS
+++ b/MAINTAINERS
@@ -639,6 +639,11 @@ S: Maintained
  F:drivers/pci_endpoint/
  F:  include/pci_ep.h

+PCI MPC85xx
+M: Heiko Schocher 
+S: Maintained
+F: drivers/pci/pci_mpc85xx.c
+
  POWER
  M:Jaehoon Chung 
  S:Maintained
diff --git a/drivers/pci/Kconfig b/drivers/pci/Kconfig index
3fe38f7315..88db0067b4 100644
--- a/drivers/pci/Kconfig
+++ b/drivers/pci/Kconfig
@@ -68,6 +68,13 @@ config PCIE_FSL
  PowerPC MPC85xx, MPC86xx, B series, P series and T series SoCs.
  This driver does not support SRIO_PCIE_BOOT feature.

+config PCI_MPC85XX
+   bool "MPC85XX PowerPC PCI support"
+   depends on DM_PCI
+   help
+ Say Y here if you want to enable PCI controller support on FSL
+ PowerPC MPC85xx SoC.
+
  config PCI_RCAR_GEN2
bool "Renesas RCar Gen2 PCIe driver"
depends on DM_PCI
diff --git a/drivers/pci/Makefile b/drivers/pci/Makefile index
b5ebd50c85..929f119fb3 100644
--- a/drivers/pci/Makefile
+++ b/drivers/pci/Makefile
@@ -19,6 +19,7 @@ obj-$(CONFIG_PCIE_ECAM_GENERIC) +=
pcie_ecam_generic.o
  obj-$(CONFIG_FSL_PCI_INIT) += fsl_pci_init.o
  obj-$(CONFIG_PCI_INDIRECT_BRIDGE) += pci_indirect.o
  obj-$(CONFIG_PCI_GT64120) += pci_gt64120.o
+obj-$(CONFIG_PCI_MPC85XX) += pci_mpc85xx.o
  obj-$(CONFIG_PCI_MSC01) += pci_msc01.o
  obj-$(CONFIG_PCIE_IMX) += pcie_imx.o
  obj-$(CONFIG_FTPCI100) += pci_ftpci100.o diff --git
a/drivers/pci/pci_mpc85xx.c b/drivers/pci/pci_mpc85xx.c new file mode
100644 index 00..c0d35f7f2c
--- /dev/null
+++ b/drivers/pci/pci_mpc85xx.c
@@ -0,0 +1,132 @@
+// SPDX-License-Identifier: GPL-2.0
+/*
+ * (C) Copyright 2019
+ * Heiko Schocher, DENX Software Engineering, h...@denx.de.
+ *
+ */
+#include 
+#include 
+#include 
+#include 
+
+struct mpc85xx_pci_priv {
+   void __iomem*cfg_addr;
+   void __iomem*cfg_data;
+};
+
+static int mpc85xx_pci_dm_read_config(struct udevice *dev, pci_dev_t bdf,
+ uint offset, ulong *value,
+ enum pci_size_t size)
+{
+   struct mpc85xx_pci_priv *priv = dev_get_priv(dev);
+   u32 addr;
+
+   addr = bdf | (offset & 0xfc) | ((offset & 0xf00) << 16) | 0x8000;
+   out_be32(priv->cfg_addr, addr);
+   sync();
+   *value = pci_conv_32_to_size(in_le32(priv->cfg_data), offset, size);
+
+   return 0;
+}
+
+static int mpc85xx_pci_dm_write_config(struct udevice *dev, pci_dev_t
bdf,
+  uin

Re: [U-Boot] [PATCH v1] pci: add DM based mpc85xx driver

2019-08-29 Thread Z.q. Hou
Hi Heiko,

> -Original Message-
> From: Heiko Schocher 
> Sent: 2019年7月16日 11:36
> To: u-boot@lists.denx.de
> Cc: Heiko Schocher ; Alexander Graf ;
> Andrew F. Davis ; Xiaowei Bao ; Bin
> Meng ; Eugen Hristev
> ; Heinrich Schuchardt
> ; Horatiu Vultur ;
> Z.q. Hou ; Krzysztof Kozlowski ;
> Liviu Dudau ; Marek Vasut
> ; Mario Six ; Michal Simek
> ; Neil Armstrong ;
> Prabhakar Kushwaha ; Ryder Lee
> ; Simon Glass ; Stefan
> Roese 
> Subject: [PATCH v1] pci: add DM based mpc85xx driver
> 
> add DM based PCI Configuration space access support for MPC85xx PCI
> Bridge

Seems you're converting the arch/powerpc/cpu/mpc85xx/pci.c to driver model,
but not every mpc85xx platform uses this driver, platforms mpc8536, 8544,
8548 and 8568 use the drivers/pci/fsl_pci_init.c, please take them into account.

Note: The platforms using arch/powerpc/cpu/mpc85xx/pci.c set up PCI LAWs in
file arch/powerpc/cpu/mpc8xxx/law.c, while other platforms set up PCI LAWs in
PCI driver. So I think you can move the PCI LAWs set-up into this DM PCI driver
And remove the PCI entries from law.c.

> 
> Signed-off-by: Heiko Schocher 
> 
> ---
> Travis build, see:
> https://eur01.safelinks.protection.outlook.com/?url=https%3A%2F%2Ftravis
> -ci.org%2Fhsdenx%2Fu-boot-test%2Fbuilds%2F558855544&data=02%7
> C01%7CZhiqiang.Hou%40nxp.com%7C231ac8975b2242ea5bfb08d7099eccc
> 8%7C686ea1d3bc2b4c6fa92cd99c5c301635%7C0%7C0%7C63698844995746
> 0734&sdata=lQcXtvh5a0G9r%2BFlXnnGQ5VgDYvcR%2FEGWpShJ324su
> U%3D&reserved=0
> 
>  MAINTAINERS   |   5 ++
>  drivers/pci/Kconfig   |   7 ++
>  drivers/pci/Makefile  |   1 +
>  drivers/pci/pci_mpc85xx.c | 132
> ++
>  4 files changed, 145 insertions(+)
>  create mode 100644 drivers/pci/pci_mpc85xx.c
> 
> diff --git a/MAINTAINERS b/MAINTAINERS
> index e91684191f..01faa67a6d 100644
> --- a/MAINTAINERS
> +++ b/MAINTAINERS
> @@ -639,6 +639,11 @@ S:   Maintained
>  F:   drivers/pci_endpoint/
>  F:  include/pci_ep.h
> 
> +PCI MPC85xx
> +M:   Heiko Schocher 
> +S:   Maintained
> +F:   drivers/pci/pci_mpc85xx.c
> +
>  POWER
>  M:   Jaehoon Chung 
>  S:   Maintained
> diff --git a/drivers/pci/Kconfig b/drivers/pci/Kconfig index
> 3fe38f7315..88db0067b4 100644
> --- a/drivers/pci/Kconfig
> +++ b/drivers/pci/Kconfig
> @@ -68,6 +68,13 @@ config PCIE_FSL
> PowerPC MPC85xx, MPC86xx, B series, P series and T series SoCs.
> This driver does not support SRIO_PCIE_BOOT feature.
> 
> +config PCI_MPC85XX
> + bool "MPC85XX PowerPC PCI support"
> + depends on DM_PCI
> + help
> +   Say Y here if you want to enable PCI controller support on FSL
> +   PowerPC MPC85xx SoC.
> +
>  config PCI_RCAR_GEN2
>   bool "Renesas RCar Gen2 PCIe driver"
>   depends on DM_PCI
> diff --git a/drivers/pci/Makefile b/drivers/pci/Makefile index
> b5ebd50c85..929f119fb3 100644
> --- a/drivers/pci/Makefile
> +++ b/drivers/pci/Makefile
> @@ -19,6 +19,7 @@ obj-$(CONFIG_PCIE_ECAM_GENERIC) +=
> pcie_ecam_generic.o
>  obj-$(CONFIG_FSL_PCI_INIT) += fsl_pci_init.o
>  obj-$(CONFIG_PCI_INDIRECT_BRIDGE) += pci_indirect.o
>  obj-$(CONFIG_PCI_GT64120) += pci_gt64120.o
> +obj-$(CONFIG_PCI_MPC85XX) += pci_mpc85xx.o
>  obj-$(CONFIG_PCI_MSC01) += pci_msc01.o
>  obj-$(CONFIG_PCIE_IMX) += pcie_imx.o
>  obj-$(CONFIG_FTPCI100) += pci_ftpci100.o diff --git
> a/drivers/pci/pci_mpc85xx.c b/drivers/pci/pci_mpc85xx.c new file mode
> 100644 index 00..c0d35f7f2c
> --- /dev/null
> +++ b/drivers/pci/pci_mpc85xx.c
> @@ -0,0 +1,132 @@
> +// SPDX-License-Identifier: GPL-2.0
> +/*
> + * (C) Copyright 2019
> + * Heiko Schocher, DENX Software Engineering, h...@denx.de.
> + *
> + */
> +#include 
> +#include 
> +#include 
> +#include 
> +
> +struct mpc85xx_pci_priv {
> + void __iomem*cfg_addr;
> + void __iomem*cfg_data;
> +};
> +
> +static int mpc85xx_pci_dm_read_config(struct udevice *dev, pci_dev_t bdf,
> +   uint offset, ulong *value,
> +   enum pci_size_t size)
> +{
> + struct mpc85xx_pci_priv *priv = dev_get_priv(dev);
> + u32 addr;
> +
> + addr = bdf | (offset & 0xfc) | ((offset & 0xf00) << 16) | 0x8000;
> + out_be32(priv->cfg_addr, addr);
> + sync();
> + *value = pci_conv_32_to_size(in_le32(priv->cfg_data), offset, size);
> +
> + return 0;
> +}
> +
> +static int mpc85xx_pci_dm_write_config(struct udevice *dev, pci_dev_t
> bdf,
> +uint offset, ulong value,
> +enum pci_size_t size)
> +{
> + struct mpc85xx_pci_priv *priv = dev_get_priv(dev);
> + u32 addr;
> +
> + addr = bdf | (offset & 0xfc) | ((offset & 0xf00) << 16) | 0x8000;
> + out_be32(priv->cfg_addr, addr);
> + sync();
> + out_le32(priv->cfg_data, pci_conv_size_to_32(0, value, offset, size));
> +
> + return 0;
> +}
> +
> +static int mpc85xx_pci_dm_probe(struct udevice *dev) {
> + struct mpc85xx_p

Re: [U-Boot] [PATCH v1] pci: add DM based mpc85xx driver

2019-08-22 Thread Z.q. Hou


> -Original Message-
> From: Prabhakar Kushwaha
> Sent: 2019年8月22日 19:35
> To: Heiko Schocher ; u-boot@lists.denx.de; Z.q. Hou
> 
> Cc: Alexander Graf ; Andrew F. Davis ; Xiaowei
> Bao ; Bin Meng ; Eugen
> Hristev ; Heinrich Schuchardt
> ; Horatiu Vultur ; Z.q.
> Hou ; Krzysztof Kozlowski ; Liviu
> Dudau ; Marek Vasut
> ; Mario Six ; Michal Simek
> ; Neil Armstrong ;
> Ryder Lee ; Simon Glass ;
> Stefan Roese 
> Subject: RE: [PATCH v1] pci: add DM based mpc85xx driver
> 
> Dear Zhiqiang
> 
> > -Original Message-
> > From: Heiko Schocher 
> > Sent: Tuesday, July 16, 2019 9:06 AM
> > To: u-boot@lists.denx.de
> > Cc: Heiko Schocher ; Alexander Graf ;
> > Andrew F. Davis ; Xiaowei Bao ; Bin
> > Meng ; Eugen Hristev
> > ; Heinrich Schuchardt
> > ; Horatiu Vultur ;
> > Z.q. Hou ; Krzysztof Kozlowski
> > ; Liviu Dudau ; Marek
> Vasut
> > ; Mario Six ; Michal Simek
> > ; Neil Armstrong ;
> > Prabhakar Kushwaha ; Ryder Lee
> > ; Simon Glass ; Stefan
> Roese
> > 
> > Subject: [PATCH v1] pci: add DM based mpc85xx driver
> >
> > add DM based PCI Configuration space access support for MPC85xx PCI
> > Bridge
> >
> > Signed-off-by: Heiko Schocher 
> >
> > ---
> 
> Can you please review this patch
> 

Sure.

Thanks,
Zhiqiang

> --pk
___
U-Boot mailing list
U-Boot@lists.denx.de
https://lists.denx.de/listinfo/u-boot


Re: [U-Boot] [PATCH v1] pci: add DM based mpc85xx driver

2019-08-22 Thread Prabhakar Kushwaha
Dear Zhiqiang 

> -Original Message-
> From: Heiko Schocher 
> Sent: Tuesday, July 16, 2019 9:06 AM
> To: u-boot@lists.denx.de
> Cc: Heiko Schocher ; Alexander Graf ;
> Andrew F. Davis ; Xiaowei Bao ; Bin
> Meng ; Eugen Hristev
> ; Heinrich Schuchardt
> ; Horatiu Vultur ;
> Z.q. Hou ; Krzysztof Kozlowski ;
> Liviu Dudau ; Marek Vasut
> ; Mario Six ; Michal Simek
> ; Neil Armstrong ;
> Prabhakar Kushwaha ; Ryder Lee
> ; Simon Glass ; Stefan
> Roese 
> Subject: [PATCH v1] pci: add DM based mpc85xx driver
> 
> add DM based PCI Configuration space access support for MPC85xx PCI
> Bridge
> 
> Signed-off-by: Heiko Schocher 
> 
> ---

Can you please review this patch 

--pk
___
U-Boot mailing list
U-Boot@lists.denx.de
https://lists.denx.de/listinfo/u-boot


[U-Boot] [PATCH v1] pci: add DM based mpc85xx driver

2019-07-15 Thread Heiko Schocher
add DM based PCI Configuration space access support for
MPC85xx PCI Bridge

Signed-off-by: Heiko Schocher 

---
Travis build, see:
https://travis-ci.org/hsdenx/u-boot-test/builds/558855544

 MAINTAINERS   |   5 ++
 drivers/pci/Kconfig   |   7 ++
 drivers/pci/Makefile  |   1 +
 drivers/pci/pci_mpc85xx.c | 132 ++
 4 files changed, 145 insertions(+)
 create mode 100644 drivers/pci/pci_mpc85xx.c

diff --git a/MAINTAINERS b/MAINTAINERS
index e91684191f..01faa67a6d 100644
--- a/MAINTAINERS
+++ b/MAINTAINERS
@@ -639,6 +639,11 @@ S: Maintained
 F: drivers/pci_endpoint/
 F:  include/pci_ep.h
 
+PCI MPC85xx
+M: Heiko Schocher 
+S: Maintained
+F: drivers/pci/pci_mpc85xx.c
+
 POWER
 M: Jaehoon Chung 
 S: Maintained
diff --git a/drivers/pci/Kconfig b/drivers/pci/Kconfig
index 3fe38f7315..88db0067b4 100644
--- a/drivers/pci/Kconfig
+++ b/drivers/pci/Kconfig
@@ -68,6 +68,13 @@ config PCIE_FSL
  PowerPC MPC85xx, MPC86xx, B series, P series and T series SoCs.
  This driver does not support SRIO_PCIE_BOOT feature.
 
+config PCI_MPC85XX
+   bool "MPC85XX PowerPC PCI support"
+   depends on DM_PCI
+   help
+ Say Y here if you want to enable PCI controller support on FSL
+ PowerPC MPC85xx SoC.
+
 config PCI_RCAR_GEN2
bool "Renesas RCar Gen2 PCIe driver"
depends on DM_PCI
diff --git a/drivers/pci/Makefile b/drivers/pci/Makefile
index b5ebd50c85..929f119fb3 100644
--- a/drivers/pci/Makefile
+++ b/drivers/pci/Makefile
@@ -19,6 +19,7 @@ obj-$(CONFIG_PCIE_ECAM_GENERIC) += pcie_ecam_generic.o
 obj-$(CONFIG_FSL_PCI_INIT) += fsl_pci_init.o
 obj-$(CONFIG_PCI_INDIRECT_BRIDGE) += pci_indirect.o
 obj-$(CONFIG_PCI_GT64120) += pci_gt64120.o
+obj-$(CONFIG_PCI_MPC85XX) += pci_mpc85xx.o
 obj-$(CONFIG_PCI_MSC01) += pci_msc01.o
 obj-$(CONFIG_PCIE_IMX) += pcie_imx.o
 obj-$(CONFIG_FTPCI100) += pci_ftpci100.o
diff --git a/drivers/pci/pci_mpc85xx.c b/drivers/pci/pci_mpc85xx.c
new file mode 100644
index 00..c0d35f7f2c
--- /dev/null
+++ b/drivers/pci/pci_mpc85xx.c
@@ -0,0 +1,132 @@
+// SPDX-License-Identifier: GPL-2.0
+/*
+ * (C) Copyright 2019
+ * Heiko Schocher, DENX Software Engineering, h...@denx.de.
+ *
+ */
+#include 
+#include 
+#include 
+#include 
+
+struct mpc85xx_pci_priv {
+   void __iomem*cfg_addr;
+   void __iomem*cfg_data;
+};
+
+static int mpc85xx_pci_dm_read_config(struct udevice *dev, pci_dev_t bdf,
+ uint offset, ulong *value,
+ enum pci_size_t size)
+{
+   struct mpc85xx_pci_priv *priv = dev_get_priv(dev);
+   u32 addr;
+
+   addr = bdf | (offset & 0xfc) | ((offset & 0xf00) << 16) | 0x8000;
+   out_be32(priv->cfg_addr, addr);
+   sync();
+   *value = pci_conv_32_to_size(in_le32(priv->cfg_data), offset, size);
+
+   return 0;
+}
+
+static int mpc85xx_pci_dm_write_config(struct udevice *dev, pci_dev_t bdf,
+  uint offset, ulong value,
+  enum pci_size_t size)
+{
+   struct mpc85xx_pci_priv *priv = dev_get_priv(dev);
+   u32 addr;
+
+   addr = bdf | (offset & 0xfc) | ((offset & 0xf00) << 16) | 0x8000;
+   out_be32(priv->cfg_addr, addr);
+   sync();
+   out_le32(priv->cfg_data, pci_conv_size_to_32(0, value, offset, size));
+
+   return 0;
+}
+
+static int mpc85xx_pci_dm_probe(struct udevice *dev)
+{
+   struct mpc85xx_pci_priv *priv = dev_get_priv(dev);
+   struct pci_region *io;
+   struct pci_region *mem;
+   struct pci_region *pre;
+   int ret;
+   ccsr_pcix_t *pcix;
+
+   ret = pci_get_regions(dev, &io, &mem, &pre);
+   if (ret != 2) {
+   printf("%s: wrong count of regions %d only 2 allowed\n",
+  __func__, ret);
+   return -EINVAL;
+   }
+
+   pcix = priv->cfg_addr;
+   /* BAR 1: memory */
+   out_be32(&pcix->potar1, (mem->bus_start >> 12) & 0x000f);
+   out_be32(&pcix->potear1, 0);
+   out_be32(&pcix->powbar1, (mem->phys_start >> 12) & 0x000f);
+   out_be32(&pcix->powbear1, 0);
+   out_be32(&pcix->powar1, (POWAR_EN | POWAR_MEM_READ |
+POWAR_MEM_WRITE | (__ilog2(mem->size) - 1)));
+
+   /* BAR 1: IO */
+   out_be32(&pcix->potar2, (io->bus_start >> 12) & 0x000f);
+   out_be32(&pcix->potear2, 0);
+   out_be32(&pcix->powbar2, (io->phys_start >> 12) & 0x000f);
+   out_be32(&pcix->powbear2, 0);
+   out_be32(&pcix->powar2, (POWAR_EN | POWAR_IO_READ |
+POWAR_IO_WRITE | (__ilog2(io->size) - 1)));
+
+   out_be32(&pcix->pitar1, 0);
+   out_be32(&pcix->piwbar1, 0);
+   out_be32(&pcix->piwar1, (PIWAR_EN | PIWAR_PF | PIWAR_LOCAL |
+PIWAR_READ_SNOOP | PIWAR_WRITE_SNOOP | PIWAR_MEM_2G));
+
+   out_be32(&pcix->powar3, 0);
+   out_be32(&pcix->powar4, 0);