From mboxrd@z Thu Jan 1 00:00:00 1970 From: Stefan Agner Date: Tue, 8 Jan 2019 12:42:27 +0100 Subject: [U-Boot] [PATCH v2 00/11] arm: Colibri iMX7 fixes and DM_MMC conversion Message-ID: <20190108114238.11652-1-stefan@agner.ch> List-Id: MIME-Version: 1.0 Content-Type: text/plain; charset="us-ascii" Content-Transfer-Encoding: 7bit To: u-boot@lists.denx.de From: Stefan Agner This patchset fixes some small issues with Colibri iMX7 and converts the board to use DM_MMC. It also adds the so far missing configuration for the eMMC variant. This patchset gets rid of all but one deprecation warning. The remaining warning is due to CONFIG_USB still being used. Fixing this is not entirly trivial due to missing GPIO host/ peripheral switch capabilities and will be tackled later. -- Stefan Changes in v2: - Remove imx7-colibri.dtb from Makefile - Remove unnecessary properties - New patch - New patch - Add CONFIG_FIT/DFU/CRC32_VERIFY/CMD_GPT/DFU_MMC and FAT_WRITE Stefan Agner (11): colibri_imx7: fix boot commands arm: dts: imx7: colibri: split dt for raw NAND and eMMC devices configs: colibri_imx7: enable DM for raw NAND devices configs: colibri_imx7: use separate device tree arm: dts: imx7: colibri: add usdhci peripherals to device tree configs: colibri_imx7: use DM_MMC colibri_imx7: drop legacy usdhc support configs: colibri_imx7: enable CAAM driver configs: colibri_imx7: use DFU for NAND instead of MMC configs: colibri_imx7: use distro defaults configs: add default configuraiton for Colibri iMX7 with eMMC arch/arm/dts/Makefile | 3 +- arch/arm/dts/imx7-colibri-emmc.dts | 47 +++++++++ arch/arm/dts/imx7-colibri-rawnand.dts | 46 +++++++++ .../{imx7-colibri.dts => imx7-colibri.dtsi} | 65 ++++++------- board/toradex/colibri_imx7/MAINTAINERS | 3 + board/toradex/colibri_imx7/colibri_imx7.c | 97 ------------------- configs/colibri_imx7_defconfig | 27 +++--- configs/colibri_imx7_emmc_defconfig | 66 +++++++++++++ include/configs/colibri_imx7.h | 5 +- 9 files changed, 207 insertions(+), 152 deletions(-) create mode 100644 arch/arm/dts/imx7-colibri-emmc.dts create mode 100644 arch/arm/dts/imx7-colibri-rawnand.dts rename arch/arm/dts/{imx7-colibri.dts => imx7-colibri.dtsi} (68%) create mode 100644 configs/colibri_imx7_emmc_defconfig -- 2.20.1