mail archive of the barebox mailing list
 help / color / mirror / Atom feed
* [PATCH 0/3] ARM: stm32mp: add Linux Automation TAC/FairyTux2
@ 2025-04-11  7:27 Ahmad Fatoum
  2025-04-11  7:27 ` [PATCH 1/3] ARM: stm32mp: drop all images with legacy STM32 header Ahmad Fatoum
                   ` (2 more replies)
  0 siblings, 3 replies; 7+ messages in thread
From: Ahmad Fatoum @ 2025-04-11  7:27 UTC (permalink / raw)
  To: barebox

Both boards are built around an Octavo Systems OSD32 SiP
with a STM32MP15x SoC inside.

Ahmad Fatoum (2):
  ARM: stm32mp: drop all images with legacy STM32 header
  ARM: stm32mp: add Linux Automation TAC board

Leonard Göhrs (1):
  ARM: stm32mp: add Linux Automation FairyTux 2

 Documentation/boards/stm32mp.rst              |  90 ++----
 Documentation/devel/porting.rst               |   8 +-
 arch/arm/boards/Makefile                      |   2 +
 arch/arm/boards/lxa-fairytux2/Makefile        |   2 +
 arch/arm/boards/lxa-fairytux2/board.c         |  32 ++
 arch/arm/boards/lxa-fairytux2/lowlevel.c      |  71 +++++
 arch/arm/boards/lxa-mc1/Makefile              |   1 -
 arch/arm/boards/lxa-mc1/lowlevel.c            |  26 --
 arch/arm/boards/lxa-tac/Makefile              |   2 +
 arch/arm/boards/lxa-tac/board.c               |  33 ++
 arch/arm/boards/lxa-tac/lowlevel.c            |  71 +++++
 .../boards/phytec-phycore-stm32mp1/Makefile   |   2 +-
 .../boards/phytec-phycore-stm32mp1/lowlevel.c |  19 --
 arch/arm/boards/protonic-stm32mp1/Makefile    |   1 -
 arch/arm/boards/protonic-stm32mp1/lowlevel.c  | 102 -------
 arch/arm/boards/protonic-stm32mp13/Makefile   |   1 -
 arch/arm/boards/protonic-stm32mp13/lowlevel.c |  36 ---
 arch/arm/boards/seeed-odyssey/Makefile        |   1 -
 arch/arm/boards/seeed-odyssey/lowlevel.c      |  19 --
 arch/arm/boards/stm32mp15x-ev1/Makefile       |   1 -
 arch/arm/boards/stm32mp15x-ev1/lowlevel.c     |  26 --
 arch/arm/configs/multi_v7_defconfig           |   2 +
 arch/arm/configs/stm32mp_defconfig            |   2 +
 arch/arm/dts/Makefile                         |   3 +
 .../dts/stm32mp153c-lxa-fairytux2-gen1.dts    |   7 +
 .../dts/stm32mp153c-lxa-fairytux2-gen2.dts    |  26 ++
 arch/arm/dts/stm32mp153c-lxa-fairytux2.dtsi   | 103 +++++++
 arch/arm/dts/stm32mp153c-lxa-tac-gen3.dts     |  38 +++
 arch/arm/dts/stm32mp157c-lxa-tac-gen1.dts     |   7 +
 arch/arm/dts/stm32mp157c-lxa-tac-gen2.dts     |  38 +++
 arch/arm/dts/stm32mp15xc-lxa-tac.dtsi         | 134 +++++++++
 arch/arm/mach-stm32mp/Kconfig                 |   8 +
 arch/arm/mach-stm32mp/Makefile                |   1 -
 arch/arm/mach-stm32mp/stm32image.c            |  54 ----
 images/Makefile.stm32mp                       |  50 ++--
 include/mach/stm32mp/stm32.h                  |   3 +
 scripts/.gitignore                            |   1 -
 scripts/Kconfig                               |   7 -
 scripts/Makefile                              |   1 -
 scripts/Makefile.lib                          |   3 -
 scripts/stm32image.c                          | 281 ------------------
 41 files changed, 629 insertions(+), 686 deletions(-)
 create mode 100644 arch/arm/boards/lxa-fairytux2/Makefile
 create mode 100644 arch/arm/boards/lxa-fairytux2/board.c
 create mode 100644 arch/arm/boards/lxa-fairytux2/lowlevel.c
 delete mode 100644 arch/arm/boards/lxa-mc1/lowlevel.c
 create mode 100644 arch/arm/boards/lxa-tac/Makefile
 create mode 100644 arch/arm/boards/lxa-tac/board.c
 create mode 100644 arch/arm/boards/lxa-tac/lowlevel.c
 delete mode 100644 arch/arm/boards/phytec-phycore-stm32mp1/lowlevel.c
 delete mode 100644 arch/arm/boards/protonic-stm32mp1/lowlevel.c
 delete mode 100644 arch/arm/boards/protonic-stm32mp13/lowlevel.c
 delete mode 100644 arch/arm/boards/seeed-odyssey/lowlevel.c
 delete mode 100644 arch/arm/boards/stm32mp15x-ev1/lowlevel.c
 create mode 100644 arch/arm/dts/stm32mp153c-lxa-fairytux2-gen1.dts
 create mode 100644 arch/arm/dts/stm32mp153c-lxa-fairytux2-gen2.dts
 create mode 100644 arch/arm/dts/stm32mp153c-lxa-fairytux2.dtsi
 create mode 100644 arch/arm/dts/stm32mp153c-lxa-tac-gen3.dts
 create mode 100644 arch/arm/dts/stm32mp157c-lxa-tac-gen1.dts
 create mode 100644 arch/arm/dts/stm32mp157c-lxa-tac-gen2.dts
 create mode 100644 arch/arm/dts/stm32mp15xc-lxa-tac.dtsi
 delete mode 100644 arch/arm/mach-stm32mp/stm32image.c
 delete mode 100644 scripts/stm32image.c

-- 
2.39.5




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

end of thread, other threads:[~2025-04-14 12:07 UTC | newest]

Thread overview: 7+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2025-04-11  7:27 [PATCH 0/3] ARM: stm32mp: add Linux Automation TAC/FairyTux2 Ahmad Fatoum
2025-04-11  7:27 ` [PATCH 1/3] ARM: stm32mp: drop all images with legacy STM32 header Ahmad Fatoum
2025-04-11  7:27 ` [PATCH 2/3] ARM: stm32mp: add Linux Automation TAC board Ahmad Fatoum
2025-04-14 11:23   ` Sascha Hauer
2025-04-14 11:42     ` Ahmad Fatoum
2025-04-14 11:59       ` Ahmad Fatoum
2025-04-11  7:27 ` [PATCH 3/3] ARM: stm32mp: add Linux Automation FairyTux 2 Ahmad Fatoum

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