All of lore.kernel.org
 help / color / mirror / Atom feed
* [PATCH v2 00/12] TI: AM654/J721e: Add support to boot from OSPI
@ 2020-02-04  5:39 Vignesh Raghavendra
  2020-02-04  5:39 ` [PATCH v2 01/12] drivers: Descend to drivers/soc unconditionally Vignesh Raghavendra
                   ` (13 more replies)
  0 siblings, 14 replies; 16+ messages in thread
From: Vignesh Raghavendra @ 2020-02-04  5:39 UTC (permalink / raw)
  To: u-boot

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

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

^ permalink raw reply	[flat|nested] 16+ messages in thread

end of thread, other threads:[~2020-06-02 13:46 UTC | newest]

Thread overview: 16+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2020-02-04  5:39 [PATCH v2 00/12] TI: AM654/J721e: Add support to boot from OSPI Vignesh Raghavendra
2020-02-04  5:39 ` [PATCH v2 01/12] drivers: Descend to drivers/soc unconditionally Vignesh Raghavendra
2020-06-02 13:46   ` Simon Glass
2020-02-04  5:39 ` [PATCH v2 02/12] ARM: mach-k3: arm64-mmu: map 64bit FSS MMIO space in A53 MMU Vignesh Raghavendra
2020-02-04  5:39 ` [PATCH v2 03/12] ARM: mach-k3: sysfw-loader: Use SPI memmapped addr when loading SYSFW Vignesh Raghavendra
2020-02-04  5:39 ` [PATCH v2 04/12] ARM: dts: k3-am65: Add OSPI DT nodes Vignesh Raghavendra
2020-02-04  5:39 ` [PATCH v2 05/12] ARM: dts: k3-j721e: " Vignesh Raghavendra
2020-02-04  5:39 ` [PATCH v2 06/12] configs: am65x_evm: Setup mtdparts for OSPI Vignesh Raghavendra
2020-02-04  5:39 ` [PATCH v2 07/12] configs: j721e_evm: " Vignesh Raghavendra
2020-02-04  5:39 ` [PATCH v2 08/12] configs: j721e_evm_defconfig: Enable OSPI configs Vignesh Raghavendra
2020-02-04  5:39 ` [PATCH v2 09/12] configs: am65x_evm_defconfig: " Vignesh Raghavendra
2020-02-04  5:39 ` [PATCH v2 10/12] board: ti: Update AM65x and J721e READMEs for OSPI boot Vignesh Raghavendra
2020-02-04  5:39 ` [PATCH v2 11/12] configs: ama65x_hs_evm: Enable OSPI related configs Vignesh Raghavendra
2020-02-04  5:39 ` [PATCH v2 12/12] configs: j721e_hs_evm: " Vignesh Raghavendra
2020-02-04 13:36 ` [PATCH v2 00/12] TI: AM654/J721e: Add support to boot from OSPI Andreas Dannenberg
2020-02-23  8:13 ` Lokesh Vutla

This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.