All of lore.kernel.org
 help / color / mirror / Atom feed
* [U-Boot] [PATCHv2 0/8] dm: pci: add Freescale PowerPC PCIe driver
@ 2019-05-23 12:21 Z.q. Hou
  2019-05-23 12:22 ` [U-Boot] [PATCHv2 1/8] powerpc: mpc85xx: Move CONFIG_FSL_PCIE_DISABLE_ASPM to Kconfig Z.q. Hou
                   ` (7 more replies)
  0 siblings, 8 replies; 29+ messages in thread
From: Z.q. Hou @ 2019-05-23 12:21 UTC (permalink / raw)
  To: u-boot

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

Add PCIe DM driver for Freescale PowerPC PCIe controllers.

Hou Zhiqiang (8):
  powerpc: mpc85xx: Move CONFIG_FSL_PCIE_DISABLE_ASPM to Kconfig
  powerpc: mpc85xx: Move CONFIG_FSL_PCIE_RESET to Kconfig
  powerpc: mpc85xx: Update the condition to compile PCI routines
  powerpc: T208xQDS: Compile the legacy PCIe routines conditionally
  t2080: dts: Added PCIe DT nodes
  dm: pci: add Freescale PowerPC PCIe driver
  powerpc: T208xQDS: Disable legacy PCIe driver
  configs: T2080QDS: Enable PCIe driver

 arch/powerpc/cpu/mpc85xx/Kconfig          |  29 +
 arch/powerpc/cpu/mpc85xx/pci.c            |   2 +-
 arch/powerpc/dts/t2080.dtsi               |  48 ++
 arch/powerpc/include/asm/config_mpc85xx.h |   5 -
 board/freescale/t208xqds/pci.c            |   2 +
 configs/T2080QDS_NAND_defconfig           |   4 +
 configs/T2080QDS_SDCARD_defconfig         |   4 +
 configs/T2080QDS_SPIFLASH_defconfig       |   4 +
 configs/T2080QDS_defconfig                |   4 +
 drivers/pci/Kconfig                       |   8 +
 drivers/pci/Makefile                      |   1 +
 drivers/pci/pcie_fsl.c                    | 611 ++++++++++++++++++++++
 drivers/pci/pcie_fsl.h                    |  57 ++
 drivers/pci/pcie_fsl_fixup.c              |  51 ++
 include/configs/BSC9132QDS.h              |   1 -
 include/configs/C29XPCIE.h                |   1 -
 include/configs/MPC8536DS.h               |   1 -
 include/configs/MPC8544DS.h               |   1 -
 include/configs/MPC8548CDS.h              |   1 -
 include/configs/MPC8568MDS.h              |   1 -
 include/configs/MPC8569MDS.h              |   1 -
 include/configs/MPC8572DS.h               |   1 -
 include/configs/P1010RDB.h                |   1 -
 include/configs/P1022DS.h                 |   1 -
 include/configs/P1023RDB.h                |   1 -
 include/configs/T208xQDS.h                |  19 -
 include/configs/T208xRDB.h                |   1 -
 include/configs/UCP1020.h                 |   1 -
 include/configs/controlcenterd.h          |   1 -
 include/configs/p1_p2_rdb_pc.h            |   1 -
 include/configs/p1_twr.h                  |   1 -
 include/configs/sbc8548.h                 |   1 -
 include/configs/xpedite537x.h             |   1 -
 include/configs/xpedite550x.h             |   1 -
 34 files changed, 824 insertions(+), 44 deletions(-)
 create mode 100644 drivers/pci/pcie_fsl.c
 create mode 100644 drivers/pci/pcie_fsl.h
 create mode 100644 drivers/pci/pcie_fsl_fixup.c

-- 
2.17.1

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

end of thread, other threads:[~2019-06-20  9:44 UTC | newest]

Thread overview: 29+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2019-05-23 12:21 [U-Boot] [PATCHv2 0/8] dm: pci: add Freescale PowerPC PCIe driver Z.q. Hou
2019-05-23 12:22 ` [U-Boot] [PATCHv2 1/8] powerpc: mpc85xx: Move CONFIG_FSL_PCIE_DISABLE_ASPM to Kconfig Z.q. Hou
2019-06-20  9:44   ` Prabhakar Kushwaha
2019-05-23 12:22 ` [U-Boot] [PATCHv2 2/8] powerpc: mpc85xx: Move CONFIG_FSL_PCIE_RESET " Z.q. Hou
2019-06-20  9:44   ` Prabhakar Kushwaha
2019-05-23 12:22 ` [U-Boot] [PATCHv2 3/8] powerpc: mpc85xx: Update the condition to compile PCI routines Z.q. Hou
2019-06-20  9:44   ` Prabhakar Kushwaha
2019-05-23 12:22 ` [U-Boot] [PATCHv2 4/8] powerpc: T208xQDS: Compile the legacy PCIe routines conditionally Z.q. Hou
2019-06-20  9:44   ` Prabhakar Kushwaha
2019-05-23 12:22 ` [U-Boot] [PATCHv2 5/8] t2080: dts: Added PCIe DT nodes Z.q. Hou
2019-06-20  9:44   ` Prabhakar Kushwaha
2019-05-23 12:22 ` [U-Boot] [PATCHv2 6/8] dm: pci: add Freescale PowerPC PCIe driver Z.q. Hou
2019-06-20  9:44   ` Prabhakar Kushwaha
2019-05-23 12:22 ` [U-Boot] [PATCHv2 7/8] powerpc: T208xQDS: Disable legacy " Z.q. Hou
2019-06-20  9:44   ` Prabhakar Kushwaha
2019-05-23 12:22 ` [U-Boot] [PATCHv2 8/8] configs: T2080QDS: Enable " Z.q. Hou
2019-05-23 14:23   ` Bin Meng
2019-05-23 16:04     ` Z.q. Hou
2019-05-24  0:10       ` Bin Meng
2019-05-24  2:10         ` [U-Boot] [EXT] " Xiaowei Bao
2019-05-24  2:13           ` Bin Meng
2019-05-24  2:17             ` Xiaowei Bao
2019-05-24  5:23               ` Prabhakar Kushwaha
2019-05-24  6:02                 ` Xiaowei Bao
2019-05-24  8:17             ` Z.q. Hou
2019-05-24  9:38               ` Bin Meng
2019-05-24 14:12                 ` Z.q. Hou
2019-06-18  0:37                   ` Prabhakar Kushwaha
2019-06-20  9:44   ` [U-Boot] " Prabhakar Kushwaha

This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.