
This series adds support for more lpuart instances, support for i2c0, i2c1, i2c2, i2c3, i2c4, fixes support for uSDHC2, fixes CPU frequency reporting, fixes fuse driver and last but not least introduces support for the Toradex Apalis iMX8QM 4GB WB IT V1.0B module.
This series is available together with the last few clean-up patches and the Colibri iMX8X patch series on our git server [1] as well.
[1] http://git.toradex.com/cgit/u-boot-toradex.git/log/?h=for-next
Changes in v3: - no longer explicitly disable CONFIG_CMD_CRC32, CONFIG_CMD_EXPORTENV, CONFIG_CMD_IMLS and CONFIG_CMD_IMPORTENV - increase max gunzip size (CONFIG_SYS_BOOTM_LEN) to 64 MB - rename board file and folder to more generic apalis-imx8 to be used for all SKUs - just exclusively use distro_bootcmd trying SD cards before eMMC - enable FDT relocation - added update_uboot helper wrapper as internally suggested by Igor
Changes in v2: - Use firmware-imx-8.0 matching NXP's sumo-4.14.78-1.0.0_ga BSP as suggested by Max. - Drop Qualcomm (formwerly Atheros) AR8031 specific board_phy_config() stuff not applicable to the Micrel PHY we are using as suggested by Max. - Drop CONFIG_FEC_XCV_TYPE in favour of device tree configuration therof as suggested by Max.
Marcel Ziswiler (6): arm: dts: imx8qm: add lpuart1, lpuart2, lpuart3, lpuart4 arm: dts: imx8qm: add support for i2c0, i2c1, i2c2, i2c3 and i2c4 clk: imx8qm: fix usdhc2 clocks imx8qm: fix cpu frequency reporting imx8: fuse: fix fuse driver board: toradex: add apalis imx8qm 4gb wb it v1.0b module support
arch/arm/dts/Makefile | 1 + arch/arm/dts/fsl-imx8qm-apalis-u-boot.dtsi | 128 ++++ arch/arm/dts/fsl-imx8qm-apalis.dts | 615 ++++++++++++++++++ arch/arm/dts/fsl-imx8qm.dtsi | 155 +++++ arch/arm/mach-imx/imx8/Kconfig | 6 + arch/arm/mach-imx/imx8/cpu.c | 4 +- board/toradex/apalis-imx8/Kconfig | 30 + board/toradex/apalis-imx8/MAINTAINERS | 9 + board/toradex/apalis-imx8/Makefile | 6 + board/toradex/apalis-imx8/README | 66 ++ board/toradex/apalis-imx8/apalis-imx8.c | 149 +++++ .../apalis-imx8/apalis-imx8qm-imximage.cfg | 24 + configs/apalis-imx8qm_defconfig | 56 ++ drivers/clk/imx/clk-imx8qm.c | 18 + drivers/misc/imx8/fuse.c | 2 - include/configs/apalis-imx8.h | 131 ++++ 16 files changed, 1397 insertions(+), 3 deletions(-) create mode 100644 arch/arm/dts/fsl-imx8qm-apalis-u-boot.dtsi create mode 100644 arch/arm/dts/fsl-imx8qm-apalis.dts create mode 100644 board/toradex/apalis-imx8/Kconfig create mode 100644 board/toradex/apalis-imx8/MAINTAINERS create mode 100644 board/toradex/apalis-imx8/Makefile create mode 100644 board/toradex/apalis-imx8/README create mode 100644 board/toradex/apalis-imx8/apalis-imx8.c create mode 100644 board/toradex/apalis-imx8/apalis-imx8qm-imximage.cfg create mode 100644 configs/apalis-imx8qm_defconfig create mode 100644 include/configs/apalis-imx8.h