mail archive of the barebox mailing list
 help / color / mirror / Atom feed
* [PATCH 00/14] More Layerscape patches
@ 2019-05-10  6:21 Sascha Hauer
  2019-05-10  6:21 ` [PATCH 01/14] bbu: In bbu_register_std_file_update detect device before accessing it Sascha Hauer
                   ` (13 more replies)
  0 siblings, 14 replies; 15+ messages in thread
From: Sascha Hauer @ 2019-05-10  6:21 UTC (permalink / raw)
  To: Barebox List

This contains some more features for the Layerscape support, like
boot source detection and QSPI booting support. TQMLS1046a board support
is improved a lot.

Sascha

Sascha Hauer (14):
  bbu: In bbu_register_std_file_update detect device before accessing it
  esdhc-xload: invalidate icache before jumping to image
  ARM: Layerscape: ls1046a: Add bootsource detection support
  ARM: Layerscape: pblimage: Drop pbl end command
  ARM: Layerscape: Add QSPI boot support
  ARM: Layerscape: ls1046a: Add automatic bootsource detection xload
    function
  ARM: Layerscape: ls1046a: Add bbu handlers
  ARM: Layerscape: TQMLS1046a: configure qspi divider
  ARM: Layerscape: TQMLS1046a: Sync qspi RCW from TQ U-Boot
  ARM: Layerscape: TQMLS1046a: print life signs when debugging
  ARM: Layerscape: TQMLS1046a: unify pbi files
  ARM: Layerscape: TQMLS1046a: Support booting from QSPI
  ARM: Layerscape: TQMLS1046a: Add environment and update handlers
  ARM: Layerscape: Add device tree compatible to image metadata

 arch/arm/boards/ls1046ardb/lowlevel.c         |  3 +
 arch/arm/boards/tqmls1046a/board.c            | 27 +++++++++
 arch/arm/boards/tqmls1046a/lowlevel.c         | 11 +++-
 ...mls1046a_pbi_sd.cfg => tqmls1046a_pbi.cfg} |  2 +
 .../boards/tqmls1046a/tqmls1046a_pbi_qspi.cfg | 33 -----------
 .../tqmls1046a_rcw_qspi_3333_5559.cfg         |  8 +--
 arch/arm/dts/fsl-tqmls1046a-mbls10xxa.dts     | 56 +++++++++++++++++++
 arch/arm/mach-layerscape/Makefile             |  2 +
 arch/arm/mach-layerscape/boot.c               | 39 +++++++++++++
 arch/arm/mach-layerscape/include/mach/bbu.h   | 22 ++++++++
 .../mach-layerscape/include/mach/layerscape.h |  2 +
 arch/arm/mach-layerscape/include/mach/xload.h |  4 ++
 arch/arm/mach-layerscape/xload-qspi.c         | 37 ++++++++++++
 arch/arm/mach-layerscape/xload.c              | 24 ++++++++
 common/bbu.c                                  |  2 +
 drivers/mci/imx-esdhc-pbl.c                   |  3 +
 images/Makefile.layerscape                    | 14 +++--
 scripts/pblimage.c                            | 36 ++++++------
 18 files changed, 262 insertions(+), 63 deletions(-)
 rename arch/arm/boards/tqmls1046a/{tqmls1046a_pbi_sd.cfg => tqmls1046a_pbi.cfg} (94%)
 delete mode 100644 arch/arm/boards/tqmls1046a/tqmls1046a_pbi_qspi.cfg
 create mode 100644 arch/arm/mach-layerscape/boot.c
 create mode 100644 arch/arm/mach-layerscape/include/mach/bbu.h
 create mode 100644 arch/arm/mach-layerscape/xload-qspi.c
 create mode 100644 arch/arm/mach-layerscape/xload.c

-- 
2.20.1


_______________________________________________
barebox mailing list
barebox@lists.infradead.org
http://lists.infradead.org/mailman/listinfo/barebox

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

end of thread, other threads:[~2019-05-10  6:21 UTC | newest]

Thread overview: 15+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2019-05-10  6:21 [PATCH 00/14] More Layerscape patches Sascha Hauer
2019-05-10  6:21 ` [PATCH 01/14] bbu: In bbu_register_std_file_update detect device before accessing it Sascha Hauer
2019-05-10  6:21 ` [PATCH 02/14] esdhc-xload: invalidate icache before jumping to image Sascha Hauer
2019-05-10  6:21 ` [PATCH 03/14] ARM: Layerscape: ls1046a: Add bootsource detection support Sascha Hauer
2019-05-10  6:21 ` [PATCH 04/14] ARM: Layerscape: pblimage: Drop pbl end command Sascha Hauer
2019-05-10  6:21 ` [PATCH 05/14] ARM: Layerscape: Add QSPI boot support Sascha Hauer
2019-05-10  6:21 ` [PATCH 06/14] ARM: Layerscape: ls1046a: Add automatic bootsource detection xload function Sascha Hauer
2019-05-10  6:21 ` [PATCH 07/14] ARM: Layerscape: ls1046a: Add bbu handlers Sascha Hauer
2019-05-10  6:21 ` [PATCH 08/14] ARM: Layerscape: TQMLS1046a: configure qspi divider Sascha Hauer
2019-05-10  6:21 ` [PATCH 09/14] ARM: Layerscape: TQMLS1046a: Sync qspi RCW from TQ U-Boot Sascha Hauer
2019-05-10  6:21 ` [PATCH 10/14] ARM: Layerscape: TQMLS1046a: print life signs when debugging Sascha Hauer
2019-05-10  6:21 ` [PATCH 11/14] ARM: Layerscape: TQMLS1046a: unify pbi files Sascha Hauer
2019-05-10  6:21 ` [PATCH 12/14] ARM: Layerscape: TQMLS1046a: Support booting from QSPI Sascha Hauer
2019-05-10  6:21 ` [PATCH 13/14] ARM: Layerscape: TQMLS1046a: Add environment and update handlers Sascha Hauer
2019-05-10  6:21 ` [PATCH 14/14] ARM: Layerscape: Add device tree compatible to image metadata Sascha Hauer

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox