All of lore.kernel.org
 help / color / mirror / Atom feed
From: Sughosh Ganu <sughosh.ganu@linaro.org>
To: Heinrich Schuchardt <xypron.glpk@gmx.de>
Cc: jassisinghbrar@gmail.com, ilias.apalodimas@linaro.org,
	 takahiro.akashi@linaro.org, patrick.delaunay@foss.st.com,
	 patrice.chotard@foss.st.com, sjg@chromium.org,
	bmeng.cn@gmail.com,  trini@konsulko.com,
	etienne.carriere@linaro.org, monstr@monstr.eu,
	 Jassi Brar <jaswinder.singh@linaro.org>,
	u-boot@lists.denx.de,
	 Masami Hiramatsu <masami.hiramatsu@linaro.org>
Subject: Re: [PATCH 0/5] FWU: Add support for mtd backed feature on DeveloperBox
Date: Mon, 22 Aug 2022 10:15:10 +0530	[thread overview]
Message-ID: <CADg8p955jquj3qZM=TG+1HRGME-j+yapcg5-B39+9YNjgr+JGw@mail.gmail.com> (raw)
In-Reply-To: <904f572b-9bb9-2dee-5c4f-58ee82bf37f5@gmx.de>

hello Heinrich,

On Sun, 21 Aug 2022 at 12:46, Heinrich Schuchardt <xypron.glpk@gmx.de> wrote:
>
> On 7/22/22 19:42, jassisinghbrar@gmail.com wrote:
> > From: Jassi Brar <jaswinder.singh@linaro.org>
> >
> > The mtd and synquacer (developerbox) support was dropped from v6[1]
> > This patchset re-introduces the support over last v7[2] submission of the patchset.
>
> So this series should have been marked v8?
>
> >
> > All the comments on this code over v5 submission have been addressed. Moving forward
> > a changelog will be maintained.
> >
> > [1] https://lore.kernel.org/all/20220704051658.1085442-1-sughosh.ganu@linaro.org/
> > [2] https://lore.kernel.org/all/20220714183913.118505-1-sughosh.ganu@linaro.org/
>
> How does this series relate to
>
> [PATCH v8 00/13] FWU: Add FWU Multi Bank Update feature support
> https://lore.kernel.org/all/20220817124323.375968-1-sughosh.ganu@linaro.org/?
>
> Is it superseded by that series?
>
> This series has "FWU metadata on MTD device without GPT" while the other
> has "FWU metadata on device with GPT partitioned layout".
>
> Do we need both?

Yes, we need both the patch series. The first series([PATCH v8 00/13]
FWU: Add FWU Multi Bank Update feature support) adds support for the
feature and for platforms with GPT partitioning layout, and is
enabling the feature on the ST DK2 board. The second series is adding
support for the feature on MTD partition based devices and enabling
the feature on the Synquacer board.

-sughosh

>
> Best regards
>
> Heinrich
>
> >
> > Jassi Brar (2):
> >    dt: fwu: developerbox: enable fwu banks and mdata regions
> >    fwu: DeveloperBox: add support for FWU
> >
> > Sughosh Ganu (3):
> >    dt/bindings: Add bindings for FWU Metadata mtd storage
> >    FWU: Add FWU metadata access driver for MTD storage regions
> >    FWU: mtd: Add helper functions for accessing FWU metadata
> >
> >   .../synquacer-sc2a11-developerbox-u-boot.dtsi |  22 +-
> >   board/socionext/developerbox/Makefile         |   1 +
> >   board/socionext/developerbox/developerbox.c   |  13 +
> >   board/socionext/developerbox/fwu_plat.c       |  95 ++++++
> >   configs/synquacer_developerbox_defconfig      |  13 +-
> >   doc/board/socionext/developerbox.rst          |  96 ++++++
> >   .../firmware/fwu-mdata-mtd.yaml               |  38 +++
> >   drivers/fwu-mdata/Kconfig                     |   8 +
> >   drivers/fwu-mdata/Makefile                    |   1 +
> >   drivers/fwu-mdata/fwu_mdata_mtd.c             | 308 ++++++++++++++++++
> >   include/configs/synquacer.h                   |  10 +
> >   lib/fwu_updates/Makefile                      |   1 +
> >   lib/fwu_updates/fwu_mtd.c                     | 173 ++++++++++
> >   13 files changed, 776 insertions(+), 3 deletions(-)
> >   create mode 100644 board/socionext/developerbox/fwu_plat.c
> >   create mode 100644 doc/device-tree-bindings/firmware/fwu-mdata-mtd.yaml
> >   create mode 100644 drivers/fwu-mdata/fwu_mdata_mtd.c
> >   create mode 100644 lib/fwu_updates/fwu_mtd.c
> >
>

      reply	other threads:[~2022-08-22  4:45 UTC|newest]

Thread overview: 51+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2022-07-14 18:39 [PATCH v7 00/13] FWU: Add FWU Multi Bank Update feature support Sughosh Ganu
2022-07-14 18:39 ` [PATCH v7 01/13] dt/bindings: Add bindings for FWU Metadata storage device Sughosh Ganu
2022-07-15  6:05   ` Heinrich Schuchardt
2022-07-16 21:13   ` Jassi Brar
2022-07-18  5:32     ` Sughosh Ganu
2022-07-14 18:39 ` [PATCH v7 02/13] FWU: Add FWU metadata structure and driver for accessing metadata Sughosh Ganu
2022-07-15 10:13   ` Ilias Apalodimas
2022-07-14 18:39 ` [PATCH v7 03/13] FWU: Add FWU metadata access driver for GPT partitioned block devices Sughosh Ganu
2022-07-14 18:39 ` [PATCH v7 04/13] stm32mp1: dk2: Add a node for the FWU metadata device Sughosh Ganu
2022-07-15  6:17   ` Ilias Apalodimas
2022-07-14 18:39 ` [PATCH v7 05/13] stm32mp1: dk2: Add image information for capsule updates Sughosh Ganu
2022-07-15  6:35   ` Ilias Apalodimas
2022-07-14 18:39 ` [PATCH v7 06/13] FWU: stm32mp1: Add helper functions for accessing FWU metadata Sughosh Ganu
2022-07-15  7:52   ` Ilias Apalodimas
2022-07-22  3:39   ` Jassi Brar
2022-07-22 16:08     ` Sughosh Ganu
2022-07-14 18:39 ` [PATCH v7 07/13] FWU: STM32MP1: Add support to read boot index from backup register Sughosh Ganu
2022-07-15  6:17   ` Ilias Apalodimas
2022-07-14 18:39 ` [PATCH v7 08/13] FWU: Add boot time checks as highlighted by the FWU specification Sughosh Ganu
2022-07-15  7:02   ` Ilias Apalodimas
2022-07-20  7:35     ` Ilias Apalodimas
2022-07-27 11:04       ` Sughosh Ganu
2022-07-14 18:39 ` [PATCH v7 09/13] FWU: Add support for the FWU Multi Bank Update feature Sughosh Ganu
2022-07-15 11:58   ` Ilias Apalodimas
2022-07-14 18:39 ` [PATCH v7 10/13] FWU: cmd: Add a command to read FWU metadata Sughosh Ganu
2022-07-15 10:23   ` Ilias Apalodimas
2022-07-14 18:39 ` [PATCH v7 11/13] mkeficapsule: Add support for generating empty capsules Sughosh Ganu
2022-07-15 13:52   ` Ilias Apalodimas
2022-07-14 18:39 ` [PATCH v7 12/13] mkeficapsule: Add support for setting OEM flags in capsule header Sughosh Ganu
2022-07-15 16:40   ` Ilias Apalodimas
2022-07-18  5:35     ` Sughosh Ganu
2022-07-14 18:39 ` [PATCH v7 13/13] FWU: doc: Add documentation for the FWU feature Sughosh Ganu
2022-07-15 14:25   ` Heinrich Schuchardt
2022-07-22 17:42 ` [PATCH 0/5] FWU: Add support for mtd backed feature on DeveloperBox jassisinghbrar
2022-07-22 17:43   ` jassisinghbrar
2022-07-22 17:43     ` [PATCH 1/5] dt/bindings: Add bindings for FWU Metadata mtd storage jassisinghbrar
2022-07-25  7:04       ` Sughosh Ganu
2022-07-22 17:43     ` [PATCH 2/5] FWU: Add FWU metadata access driver for MTD storage regions jassisinghbrar
2022-09-01  6:45       ` Heinrich Schuchardt
2022-07-22 17:43     ` [PATCH 3/5] FWU: mtd: Add helper functions for accessing FWU metadata jassisinghbrar
2022-09-01  7:01       ` Heinrich Schuchardt
2022-07-22 17:43     ` [PATCH 4/5] dt: fwu: developerbox: enable fwu banks and mdata regions jassisinghbrar
2022-07-22 17:43     ` [PATCH 5/5] fwu: DeveloperBox: add support for FWU jassisinghbrar
2022-09-01  7:07       ` Heinrich Schuchardt
2022-09-01  7:22         ` Heinrich Schuchardt
2022-09-26 18:10           ` Jassi Brar
2022-07-25  7:18   ` [PATCH 0/5] FWU: Add support for mtd backed feature on DeveloperBox Sughosh Ganu
2022-07-25 13:31     ` Jassi Brar
2022-08-21  6:56   ` Heinrich Schuchardt
2022-08-21  7:16   ` Heinrich Schuchardt
2022-08-22  4:45     ` Sughosh Ganu [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='CADg8p955jquj3qZM=TG+1HRGME-j+yapcg5-B39+9YNjgr+JGw@mail.gmail.com' \
    --to=sughosh.ganu@linaro.org \
    --cc=bmeng.cn@gmail.com \
    --cc=etienne.carriere@linaro.org \
    --cc=ilias.apalodimas@linaro.org \
    --cc=jassisinghbrar@gmail.com \
    --cc=jaswinder.singh@linaro.org \
    --cc=masami.hiramatsu@linaro.org \
    --cc=monstr@monstr.eu \
    --cc=patrice.chotard@foss.st.com \
    --cc=patrick.delaunay@foss.st.com \
    --cc=sjg@chromium.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 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.