
Hi all,
this series adds support for Conclusive WHLE-LS1046A, a QorIQ LS1046A SoC based Single Board Computer by Conclusive Engineering.
Patch [1/2] adds support for storing U-Boot environment on an ext4 partition of MMC. This is required for whle_ls1046a_emmc_defconfig.
Patch [2/2] introduces support for Conclusive WHLE-LS1046A, including board init and Device Tree files. This board offers two boot methods, over QSPI and eMMC, with their respective defconfigs being provided.
Artur Rojek (1): board: Add support for Conclusive WHLE-LS1046A
Jakub Klama (1): armv8: layerscape: Enable ext4 environment storage
arch/arm/Kconfig | 19 ++ arch/arm/cpu/armv8/fsl-layerscape/cpu.c | 5 + arch/arm/dts/Makefile | 1 + arch/arm/dts/fsl-ls1046a-whle.dts | 208 ++++++++++++++++++ board/conclusive/whle-ls1046a/Kconfig | 15 ++ board/conclusive/whle-ls1046a/MAINTAINERS | 9 + board/conclusive/whle-ls1046a/Makefile | 7 + board/conclusive/whle-ls1046a/ddr.c | 21 ++ board/conclusive/whle-ls1046a/eth.c | 64 ++++++ board/conclusive/whle-ls1046a/whle-ls1046a.c | 218 +++++++++++++++++++ configs/whle_ls1046a_emmc_defconfig | 82 +++++++ configs/whle_ls1046a_qspi_defconfig | 83 +++++++ include/configs/whle_ls1046a.h | 90 ++++++++ 13 files changed, 822 insertions(+) create mode 100644 arch/arm/dts/fsl-ls1046a-whle.dts create mode 100644 board/conclusive/whle-ls1046a/Kconfig create mode 100644 board/conclusive/whle-ls1046a/MAINTAINERS create mode 100644 board/conclusive/whle-ls1046a/Makefile create mode 100644 board/conclusive/whle-ls1046a/ddr.c create mode 100644 board/conclusive/whle-ls1046a/eth.c create mode 100644 board/conclusive/whle-ls1046a/whle-ls1046a.c create mode 100644 configs/whle_ls1046a_emmc_defconfig create mode 100644 configs/whle_ls1046a_qspi_defconfig create mode 100644 include/configs/whle_ls1046a.h