From mboxrd@z Thu Jan 1 00:00:00 1970 From: York Sun Date: Fri, 28 Sep 2018 15:35:52 +0000 Subject: [U-Boot] Please pull u-boot-mpc85xx master Message-ID: List-Id: MIME-Version: 1.0 Content-Type: text/plain; charset="us-ascii" Content-Transfer-Encoding: 7bit To: u-boot@lists.denx.de Tom, The following changes since commit 9dc8d155d4e88563f572ee79aab758eb4272f3fd: Merge git://git.denx.de/u-boot-imx (2018-09-19 20:35:27 -0400) are available in the git repository at: git://git.denx.de/u-boot-mpc85xx.git tags/mpc85xx-for-v2018.11-rc1 for you to fetch changes up to 432054b947a79dbf0f1554f6d6814e8ea8ecb623: powerpc: dts: Enable device tree support for T2080QDS (2018-09-27 10:14:14 -0700) ---------------------------------------------------------------- Use device tree for mpc85xx with binman. Enabled for T2080QDS. Build log is available at https://travis-ci.org/yorksun/u-boot/builds/434213313. ---------------------------------------------------------------- Jagdish Gediya (8): powerpc/dts: Define '_end' symbol in mpc85xx U-Boot lds files powerpc/dts: Makefile changes to clean and build dts binman: Add a new "skip-at-start" property in Section class binman: Add support for PowerPC mpc85xx 'bootpg + resetvec' entry powerpc: mpc85xx: Select BINMAN by default powerpc: mpc85xx: Use binman to embed dtb inside U-Boot powerpc: dts: Add u-boot.dtsi to use binman for MPC85xx boards powerpc: dts: Enable device tree support for T2080QDS Makefile | 23 +++++++- arch/powerpc/Kconfig | 1 + arch/powerpc/cpu/mpc85xx/Kconfig | 4 ++ arch/powerpc/cpu/mpc85xx/u-boot-nand.lds | 1 + arch/powerpc/cpu/mpc85xx/u-boot-nand_spl.lds | 1 + arch/powerpc/cpu/mpc85xx/u-boot-spl.lds | 1 + arch/powerpc/cpu/mpc85xx/u-boot.lds | 1 + arch/powerpc/dts/Makefile | 14 +++++ arch/powerpc/dts/e6500_power_isa.dtsi | 39 ++++++++++++++ arch/powerpc/dts/t2080.dtsi | 62 ++++++++++++++++++++++ arch/powerpc/dts/t2080qds.dts | 17 ++++++ arch/powerpc/dts/u-boot.dtsi | 32 +++++++++++ board/freescale/t208xqds/README | 19 +++++++ configs/T2080QDS_NAND_defconfig | 3 +- configs/T2080QDS_SDCARD_defconfig | 3 +- configs/T2080QDS_SPIFLASH_defconfig | 3 +- configs/T2080QDS_defconfig | 4 +- dts/Makefile | 2 +- tools/binman/README | 9 ++++ tools/binman/README.entries | 14 ++++- tools/binman/bsection.py | 15 ++++-- .../etype/powerpc_mpc85xx_bootpg_resetvec.py | 25 +++++++++ tools/binman/ftest.py | 16 ++++++ .../test/80_4gb_and_skip_at_start_together.dts | 21 ++++++++ .../test/81_powerpc_mpc85xx_bootpg_resetvec.dts | 16 ++++++ 25 files changed, 335 insertions(+), 11 deletions(-) create mode 100644 arch/powerpc/dts/Makefile create mode 100644 arch/powerpc/dts/e6500_power_isa.dtsi create mode 100644 arch/powerpc/dts/t2080.dtsi create mode 100644 arch/powerpc/dts/t2080qds.dts create mode 100644 arch/powerpc/dts/u-boot.dtsi create mode 100644 tools/binman/etype/powerpc_mpc85xx_bootpg_resetvec.py create mode 100644 tools/binman/test/80_4gb_and_skip_at_start_together.dts create mode 100644 tools/binman/test/81_powerpc_mpc85xx_bootpg_resetvec.dts Thanks. York