From: Sascha Hauer <s.hauer@pengutronix.de>
To: "open list:BAREBOX" <barebox@lists.infradead.org>,
Sascha Hauer <s.hauer@pengutronix.de>
Subject: Re: [PATCH v2 00/20] ARM: K3 updates
Date: Mon, 17 Feb 2025 12:14:06 +0100 [thread overview]
Message-ID: <173979084646.1871665.10273647272633691865.b4-ty@pengutronix.de> (raw)
In-Reply-To: <20250212-k3-emmc-v2-0-8dd1bb0ce60a@pengutronix.de>
On Wed, 12 Feb 2025 15:09:13 +0100, Sascha Hauer wrote:
> This series has some updates for the TI K3 architecture.
>
> We add support for bootstrapping boards via USB DFU. This has been sent
> earlier, this time booting from eMMC is added as well.
>
> On K3 SoCs we need a bunch of images after the first stage has been
> loaded: OP-TEE, ti-dm firmware, TF-A binary and finally a barebox
> binary. Until now these are expected as distinct images on the SD cards
> FAT partition. This is impractical for booting from eMMC boot partitions
> and also DFU boot, so this series adds support for handling a FIP image
> containing these binaries.
>
> [...]
Applied, thanks!
[01/20] ARM: k3: Add function to enable 32k crystal
https://git.pengutronix.de/cgit/barebox/commit/?id=f8488603862b (link may not be stable)
[02/20] ARM: k3: add function to detect eMMC boot
https://git.pengutronix.de/cgit/barebox/commit/?id=4a3eac7dbaa1 (link may not be stable)
[03/20] ARM: k3: do not mount /boot when booting from eMMC
https://git.pengutronix.de/cgit/barebox/commit/?id=def806a40287 (link may not be stable)
[04/20] fip: drop typedefs
https://git.pengutronix.de/cgit/barebox/commit/?id=30c35fedb7ba (link may not be stable)
[05/20] fip: use linux list implementation
https://git.pengutronix.de/cgit/barebox/commit/?id=bc79141e65cc (link may not be stable)
[06/20] fip: use uuid_equal() and uuid_is_null()
https://git.pengutronix.de/cgit/barebox/commit/?id=e8074b140a14 (link may not be stable)
[07/20] fiptool: do not typedef structs
https://git.pengutronix.de/cgit/barebox/commit/?id=d58d0997b8b7 (link may not be stable)
[08/20] fip: add fip_ prefix
https://git.pengutronix.de/cgit/barebox/commit/?id=33ac1e970bc0 (link may not be stable)
[09/20] fip: add fip_image_open()
https://git.pengutronix.de/cgit/barebox/commit/?id=72d281a4711b (link may not be stable)
[10/20] ARM: k3: r5: add USB DFU and eMMC boot support
https://git.pengutronix.de/cgit/barebox/commit/?id=9124e7c0b563 (link may not be stable)
[11/20] ARM: am625-sk: enable 32k crystal
https://git.pengutronix.de/cgit/barebox/commit/?id=63a39df42e94 (link may not be stable)
[12/20] mci: am654: parse generic mmc node properties
https://git.pengutronix.de/cgit/barebox/commit/?id=10870f73f2fe (link may not be stable)
[13/20] ARM: k3: limit eMMC frequency to 26MHz
https://git.pengutronix.de/cgit/barebox/commit/?id=b6099d814075 (link may not be stable)
[14/20] ARM: k3: add eMMC barebox update handler
https://git.pengutronix.de/cgit/barebox/commit/?id=e7fc40adf484 (link may not be stable)
[15/20] ARM: am625-sk: put environment on eMMC when booting from it
https://git.pengutronix.de/cgit/barebox/commit/?id=4458a181046d (link may not be stable)
[16/20] serial: omap: Use ttyS as Linux console name
https://git.pengutronix.de/cgit/barebox/commit/?id=6ed7c03d3fb3 (link may not be stable)
[17/20] ARM: k3: remove beagleplay FIT image
https://git.pengutronix.de/cgit/barebox/commit/?id=874477b04d02 (link may not be stable)
[18/20] ARM: am625-sk: cleanup board entry
https://git.pengutronix.de/cgit/barebox/commit/?id=57e67d421450 (link may not be stable)
[19/20] ARM: beagleplay: cleanup board entry
https://git.pengutronix.de/cgit/barebox/commit/?id=b4f14eebf1ec (link may not be stable)
[20/20] ARM: k3: Add k3-r5_defconfig
https://git.pengutronix.de/cgit/barebox/commit/?id=49556447bca7 (link may not be stable)
Best regards,
--
Sascha Hauer <s.hauer@pengutronix.de>
prev parent reply other threads:[~2025-02-17 11:14 UTC|newest]
Thread overview: 22+ messages / expand[flat|nested] mbox.gz Atom feed top
2025-02-12 14:09 Sascha Hauer
2025-02-12 14:09 ` [PATCH v2 01/20] ARM: k3: Add function to enable 32k crystal Sascha Hauer
2025-02-12 14:09 ` [PATCH v2 02/20] ARM: k3: add function to detect eMMC boot Sascha Hauer
2025-02-12 14:09 ` [PATCH v2 03/20] ARM: k3: do not mount /boot when booting from eMMC Sascha Hauer
2025-02-12 14:09 ` [PATCH v2 04/20] fip: drop typedefs Sascha Hauer
2025-02-12 14:09 ` [PATCH v2 05/20] fip: use linux list implementation Sascha Hauer
2025-02-12 14:09 ` [PATCH v2 06/20] fip: use uuid_equal() and uuid_is_null() Sascha Hauer
2025-02-12 14:09 ` [PATCH v2 07/20] fiptool: do not typedef structs Sascha Hauer
2025-02-12 14:09 ` [PATCH v2 08/20] fip: add fip_ prefix Sascha Hauer
2025-02-12 14:09 ` [PATCH v2 09/20] fip: add fip_image_open() Sascha Hauer
2025-02-12 14:09 ` [PATCH v2 10/20] ARM: k3: r5: add USB DFU and eMMC boot support Sascha Hauer
2025-02-12 14:09 ` [PATCH v2 11/20] ARM: am625-sk: enable 32k crystal Sascha Hauer
2025-02-12 14:09 ` [PATCH v2 12/20] mci: am654: parse generic mmc node properties Sascha Hauer
2025-02-12 14:09 ` [PATCH v2 13/20] ARM: k3: limit eMMC frequency to 26MHz Sascha Hauer
2025-02-12 14:09 ` [PATCH v2 14/20] ARM: k3: add eMMC barebox update handler Sascha Hauer
2025-02-12 14:09 ` [PATCH v2 15/20] ARM: am625-sk: put environment on eMMC when booting from it Sascha Hauer
2025-02-12 14:09 ` [PATCH v2 16/20] serial: omap: Use ttyS as Linux console name Sascha Hauer
2025-02-12 14:09 ` [PATCH v2 17/20] ARM: k3: remove beagleplay FIT image Sascha Hauer
2025-02-12 14:09 ` [PATCH v2 18/20] ARM: am625-sk: cleanup board entry Sascha Hauer
2025-02-12 14:09 ` [PATCH v2 19/20] ARM: beagleplay: " Sascha Hauer
2025-02-12 14:09 ` [PATCH v2 20/20] ARM: k3: Add k3-r5_defconfig Sascha Hauer
2025-02-17 11:14 ` Sascha Hauer [this message]
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=173979084646.1871665.10273647272633691865.b4-ty@pengutronix.de \
--to=s.hauer@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