
Hi all,
this is v2 of the Conclusive WHLE-LS1046A support series.
Patch [1/2] remains unchanged.
Patch [2/2] features a major clean-up to configs/whle_ls1046a.h, dropping unneeded/redundant defines, and moving some others to more appropriate locations in board code. The environment settings have been moved to plain text whle-ls1046a.env file, and distro_bootcmd macros dropped in favor of BOOTSTD. A non-DM_ETH case has also been removed.
In Device Tree bindings, i2c-mux node has been relocated to the correct parent and ext_i2c received an address correction.
Minor style clean-ups have been performed to eth.c and an incorrect value of CONFIG_MTDPARTS_DEFAULT removed from defconfigs.
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 | 65 ++++++ board/conclusive/whle-ls1046a/whle-ls1046a.c | 215 ++++++++++++++++++ .../conclusive/whle-ls1046a/whle-ls1046a.env | 13 ++ configs/whle_ls1046a_emmc_defconfig | 83 +++++++ configs/whle_ls1046a_qspi_defconfig | 84 +++++++ include/configs/whle_ls1046a.h | 47 ++++ 14 files changed, 792 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 board/conclusive/whle-ls1046a/whle-ls1046a.env create mode 100644 configs/whle_ls1046a_emmc_defconfig create mode 100644 configs/whle_ls1046a_qspi_defconfig create mode 100644 include/configs/whle_ls1046a.h