
From: Sinthu Raja sinthu.raja@ti.com
Hi All, This series adds support for J721E SK [1]. Below is the detailed description of the J721E SoC and the SK board supporting features. The arch/arm/dts/k3-j721e-r5-sk.dts been queued up in linux-next [2].
Changes in V3: Addressed review comments such as * Removed board_info in the SPL build. https://patchwork.ozlabs.org/project/uboot/patch/20210626145602.15702-2-sint... * Removed K3-generic function call from mach-k3/j721e_init.c * Updated the conditional check to be a positive check for the board(s) which may have daugther cards * Re-order the code in board/ti/j721e/evm.c so that everything is under a single #ifdef
Changes in V2: Board name updated from EAIK to SK. * So changed the occurrences of EAIK to SK. * Rename files from eaik to sk.
[1] https://www.ti.com/tool/SK-TDA4VM [2] https://git.kernel.org/pub/scm/linux/kernel/git/next/linux-next.git/tree/arc...
V2: https://patchwork.ozlabs.org/project/uboot/cover/20211102140558.32460-1-sint... V1: https://patchwork.ozlabs.org/project/uboot/cover/20210626145602.15702-1-sint...
Sinthu Raja (16): drivers: power: pmic: Add support for tps659412 PMIC drivers: power: regulator: tps65941_regulator: Add support for 3Phase buck board: ti: j721e: Guard functions with right #ifdef to avoid build warnings board: ti: j721e: Enable support for reading EEPROM at next alternate address board: ti: j721e: Add support to update board_name for j721e-sk board: ti: j721e: Disable probing of daughtercards board: ti: j721e: Add support for detecting multiple device trees arm: j721e: Add support for selecting DT based on board name arm: dts: k3-j721e-r5-common-proc-board: Do not use power-domains for I2C arm: dts: k3-j721e-sk: Add initial A72 specific dts support arm: dts: k3-j721e-r5-sk: Add initial R5 specific dts support for j721e-sk configs: j721e_evm_r5: Enable support for building multiple dtbs into FIT configs: j721e_evm_a72: Add SK dtb as part of DTB FIT configs: j721e_evm_a72: Align OSPI partitions on erase block boundary configs: j721e_evm: Store env in MMC FAT partition include: configs: Update env for selecting right dtb
arch/arm/dts/Makefile | 4 +- .../arm/dts/k3-j721e-r5-common-proc-board.dts | 5 + arch/arm/dts/k3-j721e-r5-sk-u-boot.dtsi | 31 + arch/arm/dts/k3-j721e-r5-sk.dts | 646 ++++++++++++++ arch/arm/dts/k3-j721e-sk-u-boot.dtsi | 280 +++++++ arch/arm/dts/k3-j721e-sk.dts | 791 ++++++++++++++++++ arch/arm/mach-k3/j721e_init.c | 58 ++ board/ti/j721e/evm.c | 122 +-- configs/j721e_evm_a72_defconfig | 11 +- configs/j721e_evm_r5_defconfig | 4 + drivers/power/pmic/tps65941.c | 1 + drivers/power/regulator/tps65941_regulator.c | 2 + include/configs/j721e_evm.h | 4 + 13 files changed, 1907 insertions(+), 52 deletions(-) create mode 100644 arch/arm/dts/k3-j721e-r5-sk-u-boot.dtsi create mode 100644 arch/arm/dts/k3-j721e-r5-sk.dts create mode 100644 arch/arm/dts/k3-j721e-sk-u-boot.dtsi create mode 100644 arch/arm/dts/k3-j721e-sk.dts