From patchwork Tue Apr 14 09:30:18 2020 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Zhiqiang Hou X-Patchwork-Id: 237774 List-Id: U-Boot discussion From: Zhiqiang.Hou at nxp.com (Zhiqiang Hou) Date: Tue, 14 Apr 2020 17:30:18 +0800 Subject: [PATCH 0/4] P1010RDB: Add device tree support and enable DM PCIe driver Message-ID: <20200414093022.24132-1-Zhiqiang.Hou@nxp.com> From: Hou Zhiqiang This patch set is to add device tree support and enable U-Boot Driver Module PCIe driver on P1010RDB. Hou Zhiqiang (4): powerpc: Enable device tree support for P1010RDB powerpc: P1010RDB: Compile legacy PCIe routines conditionally powerpc: P1010RDB: Disable legacy PCIe driver when DM_PCI is enabled configs: P1010RDB: Enable PCIe driver arch/powerpc/dts/Makefile | 2 + arch/powerpc/dts/p1010rdb-pa.dts | 17 ++++++++ arch/powerpc/dts/p1010rdb-pa_36b.dts | 17 ++++++++ arch/powerpc/dts/p1010rdb-pb.dts | 17 ++++++++ arch/powerpc/dts/p1010rdb-pb_36b.dts | 17 ++++++++ arch/powerpc/dts/p1010rdb_32b.dtsi | 22 ++++++++++ arch/powerpc/dts/p1010rdb_36b.dtsi | 22 ++++++++++ arch/powerpc/dts/p1010si-post.dtsi | 46 ++++++++++++++++++++ arch/powerpc/dts/p1010si-pre.dtsi | 27 ++++++++++++ board/freescale/p1010rdb/p1010rdb.c | 4 +- configs/P1010RDB-PA_36BIT_NAND_defconfig | 7 ++- configs/P1010RDB-PA_36BIT_NOR_defconfig | 8 +++- configs/P1010RDB-PA_36BIT_SDCARD_defconfig | 7 ++- configs/P1010RDB-PA_36BIT_SPIFLASH_defconfig | 7 ++- configs/P1010RDB-PA_NAND_defconfig | 7 ++- configs/P1010RDB-PA_NOR_defconfig | 8 +++- configs/P1010RDB-PA_SDCARD_defconfig | 7 ++- configs/P1010RDB-PA_SPIFLASH_defconfig | 7 ++- configs/P1010RDB-PB_36BIT_NAND_defconfig | 7 ++- configs/P1010RDB-PB_36BIT_NOR_defconfig | 8 +++- configs/P1010RDB-PB_36BIT_SDCARD_defconfig | 7 ++- configs/P1010RDB-PB_36BIT_SPIFLASH_defconfig | 7 ++- configs/P1010RDB-PB_NAND_defconfig | 7 ++- configs/P1010RDB-PB_NOR_defconfig | 8 +++- configs/P1010RDB-PB_SDCARD_defconfig | 7 ++- configs/P1010RDB-PB_SPIFLASH_defconfig | 7 ++- include/configs/P1010RDB.h | 42 +++++++++++------- 27 files changed, 315 insertions(+), 34 deletions(-) create mode 100644 arch/powerpc/dts/p1010rdb-pa.dts create mode 100644 arch/powerpc/dts/p1010rdb-pa_36b.dts create mode 100644 arch/powerpc/dts/p1010rdb-pb.dts create mode 100644 arch/powerpc/dts/p1010rdb-pb_36b.dts create mode 100644 arch/powerpc/dts/p1010rdb_32b.dtsi create mode 100644 arch/powerpc/dts/p1010rdb_36b.dtsi create mode 100644 arch/powerpc/dts/p1010si-post.dtsi create mode 100644 arch/powerpc/dts/p1010si-pre.dtsi