From mboxrd@z Thu Jan 1 00:00:00 1970 From: Lukasz Majewski Date: Tue, 30 Jul 2019 09:12:02 +0200 Subject: [U-Boot] [PATCH v2 00/11] dm: Convert TPC70 to use DM and DTS in SPL and u-boot proper Message-ID: <20190730071213.11238-1-lukma@denx.de> List-Id: MIME-Version: 1.0 Content-Type: text/plain; charset="us-ascii" Content-Transfer-Encoding: 7bit To: u-boot@lists.denx.de This patch series converts imx6q based tpc70 board to use driver model and device tree description in SPL and u-boot proper. All the non-DM parts of the code has been removed. This patch series also uses the Common Clock Framework [CCF] as a base for clock management on imx6q board. Travis-CI: https://travis-ci.org/lmajewski/u-boot-dfu/builds/565198753 Those patches are applied on top of -master: SHA1: 75551c8bfc9545e31ec2ce238cac3857904007b8 Lukasz Majewski (11): imx: tpc70: config: Add script commands to update u-boot and OE's wic imx: tpc70: config: Update TPC70 config to support eMMC's boot0 SPL update imx: tpc70: Add board_boot_order() to distinguish between eMMC and SD boot imx: tpc70: DTS: Explicitly add imx6q-kp.dtb to Makefile for DTB compilation imx: tpc70: cosmetic: Replace magic numbers when setting ENET clock imx: tpc70: led: Enable LED default state imx: tpc70: dts: Add TPC70 board (imx6q based) device tree description imx: dts: Add u-boot specific set of device tree properties for tpc70 imx: tpc70: Convert TPC70 (imx6q) board to use DM/DTS in SPL and u-boot imx: spl: tpc70: Do not remove clock related properties from DTS imx: config: Update KP's TPC70 config to support SWUpdate arch/arm/dts/Makefile | 1 + arch/arm/dts/imx6q-kp-u-boot.dtsi | 59 ++++++++ arch/arm/dts/imx6q-kp.dts | 219 ++++++++++++++++++++++++++++++ arch/arm/mach-imx/mx6/Kconfig | 10 ++ board/k+p/kp_imx6q_tpc/kp_imx6q_tpc.c | 172 ++--------------------- board/k+p/kp_imx6q_tpc/kp_imx6q_tpc_spl.c | 137 ++----------------- configs/kp_imx6q_tpc_defconfig | 34 ++++- include/configs/kp_imx6q_tpc.h | 54 ++++---- 8 files changed, 377 insertions(+), 309 deletions(-) create mode 100644 arch/arm/dts/imx6q-kp-u-boot.dtsi create mode 100644 arch/arm/dts/imx6q-kp.dts -- 2.11.0