From mboxrd@z Thu Jan 1 00:00:00 1970 From: Andreas Dannenberg Date: Tue, 4 Feb 2020 07:36:32 -0600 Subject: [PATCH v2 00/12] TI: AM654/J721e: Add support to boot from OSPI In-Reply-To: <20200204053959.8802-1-vigneshr@ti.com> References: <20200204053959.8802-1-vigneshr@ti.com> Message-ID: <20200204133632.jnxln3ovbkoon7fn@jiji> List-Id: MIME-Version: 1.0 Content-Type: text/plain; charset="us-ascii" Content-Transfer-Encoding: 7bit To: u-boot@lists.denx.de Vignesh, On Tue, Feb 04, 2020 at 11:09:47AM +0530, Vignesh Raghavendra wrote: > This series adds support to boot from OSPI on TI's AM654 and J721e SoCs. > These EVMs have Micron MT35x flash and works in 1-1-8 mode. > > v2: > Update READMEs for OSPI boot > Update HS EVM defconfigs to fix build issues thanks for the README updates! I re-looked through all the patches once more, hence for the entire series: Reviewed-by: Andreas Dannenberg -- Andreas Dannenberg Texas Instruments Inc > > Lokesh Vutla (1): > ARM: mach-k3: sysfw-loader: Use SPI memmapped addr when loading SYSFW > > Vignesh Raghavendra (11): > drivers: Descend to drivers/soc unconditionally > ARM: mach-k3: arm64-mmu: map 64bit FSS MMIO space in A53 MMU > ARM: dts: k3-am65: Add OSPI DT nodes > ARM: dts: k3-j721e: Add OSPI DT nodes > configs: am65x_evm: Setup mtdparts for OSPI > configs: j721e_evm: Setup mtdparts for OSPI > configs: j721e_evm_defconfig: Enable OSPI configs > configs: am65x_evm_defconfig: Enable OSPI configs > board: ti: Update AM65x and J721e READMEs for OSPI boot > configs: ama65x_hs_evm: Enable OSPI related configs > configs: j721e_hs_evm: Enable OSPI related configs > > arch/arm/dts/k3-am65-mcu.dtsi | 38 +++++++++++++ > arch/arm/dts/k3-am65.dtsi | 13 ++++- > arch/arm/dts/k3-am654-base-board-u-boot.dtsi | 19 +++++++ > arch/arm/dts/k3-am654-base-board.dts | 36 ++++++++++++ > arch/arm/dts/k3-am654-r5-base-board.dts | 39 +++++++++++++ > .../k3-j721e-common-proc-board-u-boot.dtsi | 16 ++++++ > arch/arm/dts/k3-j721e-common-proc-board.dts | 33 +++++++++++ > arch/arm/dts/k3-j721e-mcu-wakeup.dtsi | 31 +++++++++++ > .../arm/dts/k3-j721e-r5-common-proc-board.dts | 39 +++++++++++++ > arch/arm/dts/k3-j721e-som-p0.dtsi | 36 ++++++++++++ > arch/arm/dts/k3-j721e.dtsi | 2 + > arch/arm/mach-k3/Kconfig | 8 +++ > arch/arm/mach-k3/arm64-mmu.c | 7 +++ > arch/arm/mach-k3/sysfw-loader.c | 31 ++++++++++- > board/ti/am65x/README | 55 +++++++++++++++++++ > board/ti/j721e/README | 47 ++++++++++++++++ > configs/am65x_evm_a53_defconfig | 25 +++++++++ > configs/am65x_evm_r5_defconfig | 17 ++++++ > configs/am65x_hs_evm_a53_defconfig | 26 +++++++++ > configs/am65x_hs_evm_r5_defconfig | 19 +++++++ > configs/j721e_evm_a72_defconfig | 9 ++- > configs/j721e_evm_r5_defconfig | 7 +++ > configs/j721e_hs_evm_a72_defconfig | 8 ++- > configs/j721e_hs_evm_r5_defconfig | 7 +++ > drivers/Makefile | 3 +- > include/configs/am65x_evm.h | 21 ++++++- > include/configs/j721e_evm.h | 14 ++++- > 27 files changed, 597 insertions(+), 9 deletions(-) > > -- > 2.25.0 >