From: Anshul Dalal <anshuld@ti.com>
To: Beleswar Padhi <b-padhi@ti.com>, <trini@konsulko.com>, <afd@ti.com>
Cc: <sjg@chromium.org>, <xypron.glpk@gmx.de>, <cfsworks@gmail.com>,
<nm@ti.com>, <hnagalla@ti.com>, <n-francis@ti.com>, <jm@ti.com>,
<u-kumar1@ti.com>, <m-chawdhry@ti.com>, <kamlesh@ti.com>,
<bb@ti.com>, <j-humphreys@ti.com>, <s-k6@ti.com>,
<j-choudhary@ti.com>, <d-gole@ti.com>, <u-boot@lists.denx.de>
Subject: Re: [PATCH v2 4/7] arm: dts: k3-{j721s2/j784s4}-binman: Pack HSM firmware inside tispl.bin
Date: Wed, 7 May 2025 15:09:59 +0530 [thread overview]
Message-ID: <D9PTUSDYSWS0.J9VVKD57OPPM@ti.com> (raw)
In-Reply-To: <20250506104202.16741-5-b-padhi@ti.com>
On Tue May 6, 2025 at 4:11 PM IST, Beleswar Padhi wrote:
> Pack the HSM firmware in tispl.bin fit image so that it can be unloaded
> and used by R5 SPL to boot the HSM core. By default, point to the
> firmware for HS-SE device type. This needs to be changed to point to
> appropriate firmware when using a different device type.
>
> Signed-off-by: Beleswar Padhi <b-padhi@ti.com>
> ---
> v2: Changelog:
> None to this patch.
>
> Link to v1:
> https://lore.kernel.org/all/20250422095430.363792-4-b-padhi@ti.com/
>
> arch/arm/dts/k3-j721s2-binman.dtsi | 12 ++++++++++++
> arch/arm/dts/k3-j784s4-binman.dtsi | 14 ++++++++++++++
> 2 files changed, 26 insertions(+)
>
> diff --git a/arch/arm/dts/k3-j721s2-binman.dtsi b/arch/arm/dts/k3-j721s2-binman.dtsi
> index 73af184d27e..9c8b29f53bb 100644
> --- a/arch/arm/dts/k3-j721s2-binman.dtsi
> +++ b/arch/arm/dts/k3-j721s2-binman.dtsi
> @@ -273,6 +273,14 @@
>
> };
> };
> +#ifdef CONFIG_K3_HSM_FW
> + hsm {
> + hsm: blob-ext {
> + filename = "ti-hsm/hsm-demo-firmware-j721s2-hs.bin";
> + };
> + };
> +#endif
> +
Why do we have the hsm binaries pre-signed? Having a common binary like
the DM with signing using ti-secure might be a better option.
Regards,
> dm {
> ti-secure {
> content = <&dm>;
> @@ -306,7 +314,11 @@
> conf-0 {
> description = "k3-j721s2-common-proc-board";
> firmware = "atf";
> +#ifdef CONFIG_K3_HSM_FW
> + loadables = "hsm", "tee", "dm", "spl";
> +#else
> loadables = "tee", "dm", "spl";
> +#endif
> fdt = "fdt-0";
> };
> };
> diff --git a/arch/arm/dts/k3-j784s4-binman.dtsi b/arch/arm/dts/k3-j784s4-binman.dtsi
> index cb1fbc65923..7c8e580a8a3 100644
> --- a/arch/arm/dts/k3-j784s4-binman.dtsi
> +++ b/arch/arm/dts/k3-j784s4-binman.dtsi
> @@ -159,6 +159,16 @@
>
> fit {
> images {
> +
> +#ifdef CONFIG_K3_HSM_FW
> + hsm {
> + hsm: blob-ext {
> + filename = "ti-hsm/hsm-demo-firmware-j784s4-hs.bin";
> + };
> + };
> +
> +#endif
> +
> dm {
> ti-secure {
> content = <&dm>;
> @@ -194,7 +204,11 @@
> conf-0 {
> description = BOARD_DESCRIPTION;
> firmware = "atf";
> +#ifdef CONFIG_K3_HSM_FW
> + loadables = "hsm", "tee", "dm", "spl";
> +#else
> loadables = "tee", "dm", "spl";
> +#endif
> fdt = "fdt-0";
> };
> };
next prev parent reply other threads:[~2025-05-07 9:40 UTC|newest]
Thread overview: 29+ messages / expand[flat|nested] mbox.gz Atom feed top
2025-05-06 10:41 [PATCH v2 0/7] Add support to boot TI K3 HSM M4 core Beleswar Padhi
2025-05-06 10:41 ` [PATCH v2 1/7] arm: mach-k3: Add config option for booting HSM core Beleswar Padhi
2025-05-06 10:41 ` [PATCH v2 2/7] spl: Use FIT data address as fallback when 'load' property is absent Beleswar Padhi
2025-05-06 10:41 ` [PATCH v2 3/7] arm: dts: k3-binman: Add template for packing HSM firmware Beleswar Padhi
2025-05-06 10:41 ` [PATCH v2 4/7] arm: dts: k3-{j721s2/j784s4}-binman: Pack HSM firmware inside tispl.bin Beleswar Padhi
2025-05-07 9:39 ` Anshul Dalal [this message]
2025-05-07 14:56 ` Beleswar Prasad Padhi
2025-05-07 15:23 ` Andrew Davis
2025-05-08 11:55 ` Anshul Dalal
2025-05-08 11:59 ` Anshul Dalal
2025-05-08 15:03 ` Beleswar Prasad Padhi
2025-05-08 15:28 ` Andrew Davis
2025-05-09 5:15 ` Beleswar Prasad Padhi
2025-11-19 10:15 ` Beleswar Prasad Padhi
2025-05-06 10:42 ` [PATCH v2 5/7] arm: mach-k3: Use FIT image data addr as fallback if 'load' prop is missing Beleswar Padhi
2025-05-06 10:42 ` [PATCH v2 6/7] arm: mach-k3: Explicitly identify TIFSSTUB images when discarding buffers Beleswar Padhi
2025-05-06 10:42 ` [PATCH v2 7/7] arm: mach-k3: r5: common: Add support to boot HSM M4 core Beleswar Padhi
2025-05-06 11:06 ` Andrew Davis
2025-05-06 14:36 ` Beleswar Prasad Padhi
2025-05-08 12:10 ` Anshul Dalal
2025-05-06 11:08 ` [PATCH v2 0/7] Add support to boot TI K3 " Andrew Davis
2025-05-06 14:51 ` Beleswar Prasad Padhi
2025-05-06 15:08 ` Andrew Davis
2025-05-06 17:17 ` Kumar, Udit
2025-05-06 17:19 ` Tom Rini
2025-05-06 18:12 ` Andrew Davis
2025-05-07 4:16 ` Kumar, Udit
2025-05-07 10:28 ` Beleswar Prasad Padhi
2025-05-07 15:53 ` Andrew Davis
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=D9PTUSDYSWS0.J9VVKD57OPPM@ti.com \
--to=anshuld@ti.com \
--cc=afd@ti.com \
--cc=b-padhi@ti.com \
--cc=bb@ti.com \
--cc=cfsworks@gmail.com \
--cc=d-gole@ti.com \
--cc=hnagalla@ti.com \
--cc=j-choudhary@ti.com \
--cc=j-humphreys@ti.com \
--cc=jm@ti.com \
--cc=kamlesh@ti.com \
--cc=m-chawdhry@ti.com \
--cc=n-francis@ti.com \
--cc=nm@ti.com \
--cc=s-k6@ti.com \
--cc=sjg@chromium.org \
--cc=trini@konsulko.com \
--cc=u-boot@lists.denx.de \
--cc=u-kumar1@ti.com \
--cc=xypron.glpk@gmx.de \
/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 an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.