mail archive of the barebox mailing list
 help / color / mirror / Atom feed
* [PATCH v2 00/21] Add more Layerscape LS1028a stuff
@ 2024-01-09 16:15 Sascha Hauer
  2024-01-09 16:15 ` [PATCH v2 01/21] memory: Fix reserve_sdram_region() return value Sascha Hauer
                   ` (20 more replies)
  0 siblings, 21 replies; 22+ messages in thread
From: Sascha Hauer @ 2024-01-09 16:15 UTC (permalink / raw)
  To: Barebox List

This series has some additions to the recently merged LS1028a support.
Like on the LS1046a we have to fixup several iommu related device tree
properties to make DMA work under Linux. Also the upstream dts files do
not have a psci node, so add one in order to bring up the secondary CPU
core. This time we also have some little things like bootsource
detection, barebox update handler registration and MULTIARCH support for
Layerscape.

Sascha Hauer (20):
  memory: Fix reserve_sdram_region() return value
  ARM: Layerscape: consolidate initcalls into one
  ARM: Layerscape: LS1028a: reserve DDR region for TF-A
  ARM: Layerscape: icid: make readonly arrays const
  ARM: Layerscape: icid: rename functions
  ARM: Layerscape: icid: move re-usable code to separate functions
  ARM: Layerscape: icid: use of_property_write_u32_array() in
    of_set_iommu_prop()
  ARM: Layerscape: icid: use of_property_write_u32_array() in
    of_set_qportal_iommu_prop()
  ARM: Layerscape: icid: factor out setup_icid_offsets()
  immap_lsch3: Add more stuff
  ARM: Layerscape: LS1028a: fixup icids
  ARM: psci: make header self contained
  ARM: Layerscape: LS1028a: add psci node
  ARM: Layerscape: move over to MULTIARCH
  ARM: enable Layerscape boards in multi_v8_defconfig
  ARM: multi_v8_defconfig: disable CONFIG_MCI_STARTUP
  clk: layerscape: increase PLL divider array
  ARM: Layerscape: LS1028a: implement bootsource detection
  ARM: Layerscape: LS1028a: extend layerscape image filetype detection
    for LS1028a
  ARM: Layerscape: LS1028a: Add barebox update handler

Uwe Kleine-König (1):
  ARM: Layerscape: add basic support for NXP LS1028a RDB

 arch/arm/Kconfig                              |  27 +-
 arch/arm/boards/Makefile                      |   1 +
 arch/arm/boards/ls1028ardb/Makefile           |   5 +
 arch/arm/boards/ls1028ardb/board.c            |  45 +++
 arch/arm/boards/ls1028ardb/lowlevel.c         | 142 +++++++
 arch/arm/boards/ls1028ardb/ls1028ardb_pbi.cfg |  14 +
 .../boards/ls1028ardb/ls1028ardb_rcw_sd.cfg   |  14 +
 arch/arm/boards/ls1028ardb/start.S            |  19 +
 arch/arm/configs/layerscape_defconfig         |   6 +-
 arch/arm/configs/multi_v8_defconfig           |  14 +-
 arch/arm/dts/Makefile                         |   1 +
 arch/arm/dts/fsl-ls1028a-rdb.dts              |  59 +++
 arch/arm/dts/fsl-ls1028a.dtsi                 |   7 +
 arch/arm/include/asm/psci.h                   |   2 +
 arch/arm/mach-layerscape/Kconfig              |  15 +-
 arch/arm/mach-layerscape/boot.c               |  53 ++-
 arch/arm/mach-layerscape/icid.c               | 379 ++++++++++++++----
 arch/arm/mach-layerscape/ls102xa_stream_id.c  |   8 +-
 arch/arm/mach-layerscape/pblimage.c           |   6 +-
 arch/arm/mach-layerscape/restart.c            |   8 +-
 arch/arm/mach-layerscape/soc.c                | 101 +++++
 common/filetype.c                             |   2 +
 common/memory.c                               |   4 +-
 drivers/clk/clk-qoric.c                       |   3 +-
 drivers/mci/imx-esdhc-pbl.c                   |   3 +-
 images/Makefile.layerscape                    |   9 +
 include/mach/layerscape/bbu.h                 |   8 +
 include/mach/layerscape/layerscape.h          |  41 ++
 include/soc/fsl/immap_lsch3.h                 | 119 ++++++
 29 files changed, 996 insertions(+), 119 deletions(-)
 create mode 100644 arch/arm/boards/ls1028ardb/Makefile
 create mode 100644 arch/arm/boards/ls1028ardb/board.c
 create mode 100644 arch/arm/boards/ls1028ardb/lowlevel.c
 create mode 100644 arch/arm/boards/ls1028ardb/ls1028ardb_pbi.cfg
 create mode 100644 arch/arm/boards/ls1028ardb/ls1028ardb_rcw_sd.cfg
 create mode 100644 arch/arm/boards/ls1028ardb/start.S
 create mode 100644 arch/arm/dts/fsl-ls1028a-rdb.dts
 create mode 100644 arch/arm/dts/fsl-ls1028a.dtsi

-- 
2.39.2




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

end of thread, other threads:[~2024-01-09 16:17 UTC | newest]

Thread overview: 22+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2024-01-09 16:15 [PATCH v2 00/21] Add more Layerscape LS1028a stuff Sascha Hauer
2024-01-09 16:15 ` [PATCH v2 01/21] memory: Fix reserve_sdram_region() return value Sascha Hauer
2024-01-09 16:15 ` [PATCH v2 02/21] ARM: Layerscape: consolidate initcalls into one Sascha Hauer
2024-01-09 16:15 ` [PATCH v2 03/21] ARM: Layerscape: LS1028a: reserve DDR region for TF-A Sascha Hauer
2024-01-09 16:15 ` [PATCH v2 04/21] ARM: Layerscape: icid: make readonly arrays const Sascha Hauer
2024-01-09 16:15 ` [PATCH v2 05/21] ARM: Layerscape: icid: rename functions Sascha Hauer
2024-01-09 16:15 ` [PATCH v2 06/21] ARM: Layerscape: icid: move re-usable code to separate functions Sascha Hauer
2024-01-09 16:15 ` [PATCH v2 07/21] ARM: Layerscape: icid: use of_property_write_u32_array() in of_set_iommu_prop() Sascha Hauer
2024-01-09 16:15 ` [PATCH v2 08/21] ARM: Layerscape: icid: use of_property_write_u32_array() in of_set_qportal_iommu_prop() Sascha Hauer
2024-01-09 16:15 ` [PATCH v2 09/21] ARM: Layerscape: icid: factor out setup_icid_offsets() Sascha Hauer
2024-01-09 16:15 ` [PATCH v2 10/21] immap_lsch3: Add more stuff Sascha Hauer
2024-01-09 16:15 ` [PATCH v2 11/21] ARM: Layerscape: LS1028a: fixup icids Sascha Hauer
2024-01-09 16:15 ` [PATCH v2 12/21] ARM: psci: make header self contained Sascha Hauer
2024-01-09 16:15 ` [PATCH v2 13/21] ARM: Layerscape: LS1028a: add psci node Sascha Hauer
2024-01-09 16:15 ` [PATCH v2 14/21] ARM: Layerscape: move over to MULTIARCH Sascha Hauer
2024-01-09 16:15 ` [PATCH v2 15/21] ARM: enable Layerscape boards in multi_v8_defconfig Sascha Hauer
2024-01-09 16:15 ` [PATCH v2 16/21] ARM: multi_v8_defconfig: disable CONFIG_MCI_STARTUP Sascha Hauer
2024-01-09 16:15 ` [PATCH v2 17/21] clk: layerscape: increase PLL divider array Sascha Hauer
2024-01-09 16:15 ` [PATCH v2 18/21] ARM: Layerscape: LS1028a: implement bootsource detection Sascha Hauer
2024-01-09 16:15 ` [PATCH v2 19/21] ARM: Layerscape: LS1028a: extend layerscape image filetype detection for LS1028a Sascha Hauer
2024-01-09 16:15 ` [PATCH v2 20/21] ARM: Layerscape: LS1028a: Add barebox update handler Sascha Hauer
2024-01-09 16:15 ` [PATCH v2 21/21] ARM: Layerscape: add basic support for NXP LS1028a RDB Sascha Hauer

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