mail archive of the barebox mailing list
 help / color / mirror / Atom feed
From: Ahmad Fatoum <a.fatoum@pengutronix.de>
To: barebox@lists.infradead.org
Subject: [PATCH 0/3] ARM: stm32mp: add Linux Automation TAC/FairyTux2
Date: Fri, 11 Apr 2025 09:27:45 +0200	[thread overview]
Message-ID: <20250411072748.2017367-1-a.fatoum@pengutronix.de> (raw)

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




             reply	other threads:[~2025-04-11  7:31 UTC|newest]

Thread overview: 7+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2025-04-11  7:27 Ahmad Fatoum [this message]
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

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Save the following mbox file, import it into your mail client,
  and reply-to-all from there: mbox

  Avoid top-posting and favor interleaved quoting:
  https://en.wikipedia.org/wiki/Posting_style#Interleaved_style

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to=20250411072748.2017367-1-a.fatoum@pengutronix.de \
    --to=a.fatoum@pengutronix.de \
    --cc=barebox@lists.infradead.org \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox