From: Michal Simek <michal.simek@amd.com>
To: jassisinghbrar@gmail.com, u-boot@lists.denx.de
Cc: ilias.apalodimas@linaro.org, etienne.carriere@linaro.org,
trini@konsulko.com, sjg@chromium.org, sughosh.ganu@linaro.org,
xypron.glpk@gmx.de, takahiro.akashi@linaro.org,
Jassi Brar <jaswinder.singh@linaro.org>
Subject: Re: [PATCH v4 4/6] dt: fwu: developerbox: enable fwu banks and mdata regions
Date: Wed, 29 Mar 2023 13:52:06 +0200 [thread overview]
Message-ID: <eeff83fa-1ca6-e105-307d-3f38f431f739@amd.com> (raw)
In-Reply-To: <20230327211619.498967-1-jaswinder.singh@linaro.org>
On 3/27/23 23:16, jassisinghbrar@gmail.com wrote:
> From: Jassi Brar <jaswinder.singh@linaro.org>
>
> Specify Bank-0/1 and fwu metadata mtd regions.
>
> Signed-off-by: Jassi Brar <jaswinder.singh@linaro.org>
> ---
> .../synquacer-sc2a11-developerbox-u-boot.dtsi | 49 +++++++++++++++++--
> 1 file changed, 46 insertions(+), 3 deletions(-)
>
> diff --git a/arch/arm/dts/synquacer-sc2a11-developerbox-u-boot.dtsi b/arch/arm/dts/synquacer-sc2a11-developerbox-u-boot.dtsi
> index 9f9837b33b..9957646a46 100644
> --- a/arch/arm/dts/synquacer-sc2a11-developerbox-u-boot.dtsi
> +++ b/arch/arm/dts/synquacer-sc2a11-developerbox-u-boot.dtsi
> @@ -21,7 +21,7 @@
> #size-cells = <0>;
> status = "okay";
>
> - flash@0 {
> + flash0: flash@0 {
> #address-cells = <1>;
> #size-cells = <1>;
> compatible = "jedec,spi-nor";
> @@ -74,8 +74,24 @@
> };
>
> partition@500000 {
> - label = "Ex-OPTEE";
> - reg = <0x500000 0x200000>;
> + label = "MDATA-Pri";
> + reg = <0x500000 0x1000>;
> + };
> +
> + partition@530000 {
> + label = "MDATA-Sec";
> + reg = <0x530000 0x1000>;
> + };
> +
> + /* FWU Multi bank update partitions */
> + partition@600000 {
> + label = "FIP-Bank0";
> + reg = <0x600000 0x400000>;
> + };
> +
> + partition@a00000 {
> + label = "FIP-Bank1";
> + reg = <0xa00000 0x400000>;
> };
> };
> };
> @@ -102,6 +118,33 @@
> optee {
> status = "okay";
> };
> +
> + fwu-mdata {
> + compatible = "u-boot,fwu-mdata-mtd";
> + fwu-mdata-store = <&flash0>;
> + mdata-parts = "MDATA-Pri", "MDATA-Sec";
As I discussed this with Ilias today. This should be approved or this DT won't
pass yaml checking for SR certification. That's why this should get to schema to
be able to widely use.
Thanks,
Michal
next prev parent reply other threads:[~2023-03-29 11:52 UTC|newest]
Thread overview: 38+ messages / expand[flat|nested] mbox.gz Atom feed top
2023-03-27 21:14 [PATCH v4 0/6] FWU: Add support for mtd backed feature on DeveloperBox jassisinghbrar
2023-03-27 21:15 ` [PATCH v4 1/6] FWU: Add FWU metadata access driver for MTD storage regions jassisinghbrar
2023-03-29 11:59 ` Michal Simek
2023-04-10 3:56 ` Jassi Brar
2023-04-14 13:56 ` Michal Simek
2023-04-14 15:09 ` Jassi Brar
2023-05-19 12:21 ` Ilias Apalodimas
2023-05-19 12:45 ` Michal Simek
2023-05-19 20:54 ` Tom Rini
2023-03-27 21:16 ` [PATCH v4 2/6] FWU: mtd: Add helper functions for accessing FWU metadata jassisinghbrar
2023-03-29 11:55 ` Michal Simek
2023-04-10 4:02 ` Jassi Brar
2023-03-27 21:16 ` [PATCH v4 3/6] tools: Add mkfwumdata tool for FWU metadata image jassisinghbrar
2023-03-29 12:28 ` Michal Simek
2023-04-10 4:05 ` Jassi Brar
2023-04-14 13:53 ` Michal Simek
2023-04-14 15:02 ` Jassi Brar
2023-04-17 6:37 ` Michal Simek
2023-04-17 13:48 ` Jassi Brar
2023-04-17 14:29 ` Michal Simek
2023-04-17 14:50 ` Jassi Brar
2023-03-29 20:02 ` Simon Glass
2023-04-10 4:25 ` Jassi Brar
2023-04-14 13:52 ` Michal Simek
2023-04-19 1:46 ` Simon Glass
2023-04-19 2:57 ` Jassi Brar
2023-04-19 22:40 ` Simon Glass
2023-03-30 6:07 ` Heinrich Schuchardt
2023-04-10 4:11 ` Jassi Brar
2023-03-27 21:16 ` [PATCH v4 4/6] dt: fwu: developerbox: enable fwu banks and mdata regions jassisinghbrar
2023-03-29 11:52 ` Michal Simek [this message]
2023-03-27 21:16 ` [PATCH v4 5/6] configs: move to new flash layout and boot flow jassisinghbrar
2023-03-27 21:16 ` [PATCH v4 6/6] fwu: DeveloperBox: add support for FWU jassisinghbrar
2023-03-29 13:01 ` Michal Simek
2023-04-10 4:21 ` Jassi Brar
2023-04-14 13:52 ` Michal Simek
2023-03-29 13:14 ` [PATCH v4 0/6] FWU: Add support for mtd backed feature on DeveloperBox Michal Simek
2023-03-30 13:35 ` Michal Simek
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=eeff83fa-1ca6-e105-307d-3f38f431f739@amd.com \
--to=michal.simek@amd.com \
--cc=etienne.carriere@linaro.org \
--cc=ilias.apalodimas@linaro.org \
--cc=jassisinghbrar@gmail.com \
--cc=jaswinder.singh@linaro.org \
--cc=sjg@chromium.org \
--cc=sughosh.ganu@linaro.org \
--cc=takahiro.akashi@linaro.org \
--cc=trini@konsulko.com \
--cc=u-boot@lists.denx.de \
--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 a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox