From: Mattijs Korpershoek <mkorpershoek@baylibre.com>
To: Siddharth Vadapalli <s-vadapalli@ti.com>,
vigneshr@ti.com, bb@ti.com, trini@konsulko.com, lukma@denx.de,
n-francis@ti.com, afd@ti.com, glaroque@baylibre.com,
sjoerd@collabora.com, martyn.welch@collabora.com,
rasmus.villemoes@prevas.dk, caleb.connolly@linaro.org,
j-humphreys@ti.com, rogerq@kernel.org, nm@ti.com
Cc: u-boot@lists.denx.de, srk@ti.com, s-vadapalli@ti.com
Subject: Re: [PATCH v2 0/5] Add support for USB DFU boot on AM62Px
Date: Wed, 18 Dec 2024 13:59:37 +0100 [thread overview]
Message-ID: <87bjx9w3ie.fsf@baylibre.com> (raw)
In-Reply-To: <20241218124542.3519447-1-s-vadapalli@ti.com>
Hi Siddharth,
Thank you for the series.
On mer., déc. 18, 2024 at 18:15, Siddharth Vadapalli <s-vadapalli@ti.com> wrote:
> Hello,
>
> This series add support for USB DFU boot on TI's AM62Px SoC which has
> two instances of USB Controllers, of which the USB0 instance of USB
> which is a DWC3 USB Controller is used for USB DFU Boot:
> ROM => tiboot3.bin => tispl.bin => u-boot.img
>
> v1 of this series is at:
> https://patchwork.ozlabs.org/project/uboot/cover/20241217131658.2920799-1-s-vadapalli@ti.com/
> Changes since v1:
> - Dropped the first patch of the v1 series since its equivalent has been
> posted by Jonathan Humphreys <j-humphreys@ti.com> at:
> https://patchwork.ozlabs.org/project/uboot/patch/20241217204835.3312765-1-j-humphreys@ti.com/
> - Based on the feedback from Mattijs Korpershoek on the second patch of
> the v1 series, the patches in this series have been updated. More
> details regarding the changes have been described below the tearline
> of the respective patches.
> - Collected Reviewed-by tags.
I have tested this on the AM62Px SK EVM. I did *not* apply the
dependency (20241217204835.3312765-1-j-humphreys@ti.com) and it worked
fine for me:
I did:
$ snagrecover -s am625 -f ./am62px-sk-evm.yaml
Boot logs:
https://paste.debian.net/1340393/
Also tested that I could enumerate the board with "fastboot".
Tested-by: Mattijs Korpershoek <mkorpershoek@baylibre.com>
>
> NOTE: I did *not* collect the Tested-by tag since this series has
> significant changes when compared to the v1 series. Though I have tested
> this series before posting it, I intend to get a Tested-by on this v2
> series itself after it gets tested.
>
> Series is based on commit
> 3b3c7280b82 smbios: address build warning
> of the next branch of U-Boot.
>
> NOTE: Series *depends* on:
> https://patchwork.ozlabs.org/project/uboot/patch/20241217204835.3312765-1-j-humphreys@ti.com/
> since the corresponding patch has been dropped in this series when
> compared with the v1 of this series.
>
> The USB DFU config fragments for AM62x are to be re-used for enabling
> USB DFU boot on AM62Px as follows:
> R5 => am62px_evm_r5_defconfig + am62x_r5_usbdfu.config
> A53 => am62px_evm_a53_defconfig + am62x_a53_usbdfu.config
>
> Series has been tested on AM62P5-SK. Logs validating USB DFU boot on
> AM62P5-SK with this series:
> https://gist.github.com/Siddharth-Vadapalli-at-TI/d70cff3bfff53ef094d3a775e44f84c7
>
> Since am62px_evm_a53_defconfig has significant changes in this series,
> SD Boot has also been validated on AM62P5-SK with the
> am62px_evm_a53_defconfig of this series. Logs for the same are at:
> https://gist.github.com/Siddharth-Vadapalli-at-TI/971df121c8b69a2b8fb17f1c585ee0f4
>
> Series has also been validated on AM625-SK to ensure that the changes
> made to "am62x_r5_usbdfu.config" config fragment being used by AM625-SK
> for USB DFU boot do not cause a regression on AM625-SK w.r.t. USB DFU
> boot. Logs validating USB DFU Boot on AM625-SK with this series:
> https://gist.github.com/Siddharth-Vadapalli-at-TI/627c69150c34171b065204839c410e92
>
> Regards,
> Siddharth.
>
> Siddharth Vadapalli (5):
> board: ti: am62px: env: include environment for DFU Boot
> configs: am62x_r5_usbdfu: extend for AM62Px
> configs: am62px_evm_a53_defconfig: enable USB DFU support
> arm: dts: k3-am62p5-sk-u-boot: enable USB0 for USB DFU boot
> doc: board: document support for USB DFU boot on AM62Px SoC
>
> arch/arm/dts/k3-am62p5-sk-u-boot.dtsi | 10 +++++++++
> board/ti/am62px/am62px.env | 5 +++--
> configs/am62px_evm_a53_defconfig | 24 +--------------------
> configs/am62x_r5_usbdfu.config | 3 +++
> doc/board/ti/am62px_sk.rst | 31 +++++++++++++++++++++++++++
> 5 files changed, 48 insertions(+), 25 deletions(-)
>
> --
> 2.43.0
next prev parent reply other threads:[~2024-12-18 12:59 UTC|newest]
Thread overview: 30+ messages / expand[flat|nested] mbox.gz Atom feed top
2024-12-18 12:45 [PATCH v2 0/5] Add support for USB DFU boot on AM62Px Siddharth Vadapalli
2024-12-18 12:45 ` [PATCH v2 1/5] board: ti: am62px: env: include environment for DFU Boot Siddharth Vadapalli
2024-12-18 13:00 ` Mattijs Korpershoek
2024-12-18 13:48 ` Roger Quadros
2024-12-18 12:45 ` [PATCH v2 2/5] configs: am62x_r5_usbdfu: extend for AM62Px Siddharth Vadapalli
2024-12-18 13:56 ` Roger Quadros
2024-12-18 12:45 ` [PATCH v2 3/5] configs: am62px_evm_a53_defconfig: enable USB DFU support Siddharth Vadapalli
2024-12-18 13:01 ` Mattijs Korpershoek
2024-12-18 13:47 ` Roger Quadros
2024-12-19 5:43 ` Siddharth Vadapalli
2024-12-19 9:38 ` Roger Quadros
2024-12-19 10:00 ` Siddharth Vadapalli
2024-12-18 12:45 ` [PATCH v2 4/5] arm: dts: k3-am62p5-sk-u-boot: enable USB0 for USB DFU boot Siddharth Vadapalli
2024-12-18 14:05 ` Roger Quadros
2024-12-19 5:50 ` Siddharth Vadapalli
2024-12-19 9:41 ` Roger Quadros
2024-12-19 17:00 ` Tom Rini
2024-12-20 4:49 ` Siddharth Vadapalli
2024-12-20 5:49 ` Siddharth Vadapalli
2024-12-20 14:25 ` Tom Rini
2024-12-20 16:19 ` Siddharth Vadapalli
2024-12-20 16:37 ` Tom Rini
2024-12-21 2:54 ` Siddharth Vadapalli
2024-12-18 12:45 ` [PATCH v2 5/5] doc: board: document support for USB DFU boot on AM62Px SoC Siddharth Vadapalli
2024-12-18 13:02 ` Mattijs Korpershoek
2024-12-18 14:08 ` Roger Quadros
2024-12-19 6:43 ` Siddharth Vadapalli
2024-12-19 9:42 ` Roger Quadros
2024-12-18 12:59 ` Mattijs Korpershoek [this message]
2024-12-19 5:37 ` [PATCH v2 0/5] Add support for USB DFU boot on AM62Px Siddharth Vadapalli
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=87bjx9w3ie.fsf@baylibre.com \
--to=mkorpershoek@baylibre.com \
--cc=afd@ti.com \
--cc=bb@ti.com \
--cc=caleb.connolly@linaro.org \
--cc=glaroque@baylibre.com \
--cc=j-humphreys@ti.com \
--cc=lukma@denx.de \
--cc=martyn.welch@collabora.com \
--cc=n-francis@ti.com \
--cc=nm@ti.com \
--cc=rasmus.villemoes@prevas.dk \
--cc=rogerq@kernel.org \
--cc=s-vadapalli@ti.com \
--cc=sjoerd@collabora.com \
--cc=srk@ti.com \
--cc=trini@konsulko.com \
--cc=u-boot@lists.denx.de \
--cc=vigneshr@ti.com \
/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