public inbox for u-boot@lists.denx.de
 help / color / mirror / Atom feed
From: "Pali Rohár" <pali@kernel.org>
To: Stefan Roese <sr@denx.de>
Cc: "Marek Behún" <marek.behun@nic.cz>,
	"Konstantin Porotchkin" <kostap@marvell.com>,
	"Vladimir Vid" <vladimir.vid@sartura.hr>,
	u-boot@lists.denx.de
Subject: Re: [PATCH u-boot-mvebu v3 0/5] arm: mvebu: a37xx: Add support for reading OTP
Date: Wed, 20 Apr 2022 20:22:29 +0200	[thread overview]
Message-ID: <20220420182229.eawkcd7d4gxlgays@pali> (raw)
In-Reply-To: <277d3dba-5d97-a94a-f601-f5970d1d1027@denx.de>

On Tuesday 08 March 2022 12:57:37 Stefan Roese wrote:
> On 3/8/22 12:42, Pali Rohár wrote:
> > Hello! Is v3 series Ok now?
> 
> I don't have any objections. I plan to pull this patch series in the
> next merge window, as we are at rc3 now already.

PING?

> Thanks,
> Stefan
> 
> > On Wednesday 23 February 2022 14:15:44 Pali Rohár wrote:
> > > Add support for reading NB fuse OTP, SB fuse OTP and Security OTP
> > > values via U-Boot fuse API on Armada 37xx boards.
> > > 
> > > Changes in v3:
> > > * Updated comment in patch 5/5 about MBOX_CMD_OTP_READ command
> > > * In patch 5/5 fixed number of output arguments for MBOX_CMD_OTP_READ_32B command
> > > 
> > > Pali Rohár (5):
> > >    arm: mvebu: a37xx: Add support for reading NB and SB fuse OTP value
> > >    arm: mvebu: a37xx: Enable fuse command on all Armada 3720 boards
> > >    arm: mvebu: a37xx: Move generic mbox code to arch/arm/mach-mvebu
> > >    arm: mvebu: a37xx: Extend mbox_do_cmd() code
> > >    arm: mvebu: a37xx: Add support for reading Security OTP values
> > > 
> > >   arch/arm/mach-mvebu/Kconfig                 |   1 +
> > >   arch/arm/mach-mvebu/Makefile                |   3 +
> > >   arch/arm/mach-mvebu/armada3700/Makefile     |   3 +-
> > >   arch/arm/mach-mvebu/armada3700/efuse.c      | 171 ++++++++++++++++++++
> > >   arch/arm/mach-mvebu/armada3700/mbox.c       |  83 ++++++++++
> > >   arch/arm/mach-mvebu/include/mach/mbox.h     |  40 +++++
> > >   board/CZ.NIC/turris_mox/mox_sp.c            |  73 +--------
> > >   configs/mvebu_db-88f3720_defconfig          |   2 +
> > >   configs/mvebu_espressobin-88f3720_defconfig |   2 +
> > >   configs/turris_mox_defconfig                |   2 +
> > >   configs/uDPU_defconfig                      |   2 +
> > >   11 files changed, 311 insertions(+), 71 deletions(-)
> > >   create mode 100644 arch/arm/mach-mvebu/armada3700/efuse.c
> > >   create mode 100644 arch/arm/mach-mvebu/armada3700/mbox.c
> > >   create mode 100644 arch/arm/mach-mvebu/include/mach/mbox.h
> > > 
> > > -- 
> > > 2.20.1
> > > 
> 
> Viele Grüße,
> Stefan Roese
> 
> -- 
> DENX Software Engineering GmbH,      Managing Director: Wolfgang Denk
> HRB 165235 Munich, Office: Kirchenstr.5, D-82194 Groebenzell, Germany
> Phone: (+49)-8142-66989-51 Fax: (+49)-8142-66989-80 Email: sr@denx.de

  reply	other threads:[~2022-04-20 18:22 UTC|newest]

Thread overview: 41+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2022-02-17  9:26 [PATCH u-boot-mvebu 0/5] arm: mvebu: a37xx: Add support for reading OTP Pali Rohár
2022-02-17  9:26 ` [PATCH u-boot-mvebu 1/5] arm: mvebu: a37xx: Add support for reading NB and SB fuse OTP value Pali Rohár
2022-02-17 14:10   ` Marek Behún
2022-02-17  9:26 ` [PATCH u-boot-mvebu 2/5] arm: mvebu: a37xx: Enable fuse command on all Armada 3720 boards Pali Rohár
2022-02-17 14:11   ` Marek Behún
2022-02-17  9:26 ` [PATCH u-boot-mvebu 3/5] arm: mvebu: a37xx: Move generic mbox code to arch/arm/mach-mvebu Pali Rohár
2022-02-17 14:11   ` Marek Behún
2022-02-17  9:26 ` [PATCH u-boot-mvebu 4/5] arm: mvebu: a37xx: Extend mbox_do_cmd() code Pali Rohár
2022-02-17 14:16   ` Marek Behún
2022-02-17 17:13     ` Pali Rohár
2022-02-17 18:40       ` Marek Behún
2022-02-17  9:26 ` [PATCH u-boot-mvebu 5/5] arm: mvebu: a37xx: Add support for reading Security OTP values Pali Rohár
2022-02-17 14:31   ` Marek Behún
2022-02-17 16:50     ` Pali Rohár
2022-02-17 18:39       ` Marek Behún
2022-02-22 20:47     ` Pali Rohár
2022-02-23 14:50       ` Marek Behún
2022-02-17 18:50 ` [PATCH u-boot-mvebu v2 0/5] arm: mvebu: a37xx: Add support for reading OTP Pali Rohár
2022-02-17 18:50   ` [PATCH u-boot-mvebu v2 1/5] arm: mvebu: a37xx: Add support for reading NB and SB fuse OTP value Pali Rohár
2022-02-18 14:15     ` Stefan Roese
2022-02-17 18:50   ` [PATCH u-boot-mvebu v2 2/5] arm: mvebu: a37xx: Enable fuse command on all Armada 3720 boards Pali Rohár
2022-02-18 14:15     ` Stefan Roese
2022-02-17 18:50   ` [PATCH u-boot-mvebu v2 3/5] arm: mvebu: a37xx: Move generic mbox code to arch/arm/mach-mvebu Pali Rohár
2022-02-18 14:15     ` Stefan Roese
2022-02-17 18:50   ` [PATCH u-boot-mvebu v2 4/5] arm: mvebu: a37xx: Extend mbox_do_cmd() code Pali Rohár
2022-02-18 14:16     ` Stefan Roese
2022-02-17 18:50   ` [PATCH u-boot-mvebu v2 5/5] arm: mvebu: a37xx: Add support for reading Security OTP values Pali Rohár
2022-02-17 20:54     ` Marek Behún
2022-02-18 14:16     ` Stefan Roese
2022-02-22 20:51     ` Pali Rohár
2022-02-23 13:15 ` [PATCH u-boot-mvebu v3 0/5] arm: mvebu: a37xx: Add support for reading OTP Pali Rohár
2022-02-23 13:15   ` [PATCH u-boot-mvebu v3 1/5] arm: mvebu: a37xx: Add support for reading NB and SB fuse OTP value Pali Rohár
2022-02-23 13:15   ` [PATCH u-boot-mvebu v3 2/5] arm: mvebu: a37xx: Enable fuse command on all Armada 3720 boards Pali Rohár
2022-02-23 13:15   ` [PATCH u-boot-mvebu v3 3/5] arm: mvebu: a37xx: Move generic mbox code to arch/arm/mach-mvebu Pali Rohár
2022-02-23 13:15   ` [PATCH u-boot-mvebu v3 4/5] arm: mvebu: a37xx: Extend mbox_do_cmd() code Pali Rohár
2022-02-23 13:15   ` [PATCH u-boot-mvebu v3 5/5] arm: mvebu: a37xx: Add support for reading Security OTP values Pali Rohár
2022-03-08 11:42   ` [PATCH u-boot-mvebu v3 0/5] arm: mvebu: a37xx: Add support for reading OTP Pali Rohár
2022-03-08 11:57     ` Stefan Roese
2022-04-20 18:22       ` Pali Rohár [this message]
2022-04-21  6:25         ` Stefan Roese
2022-04-21 14:03   ` Stefan Roese

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=20220420182229.eawkcd7d4gxlgays@pali \
    --to=pali@kernel.org \
    --cc=kostap@marvell.com \
    --cc=marek.behun@nic.cz \
    --cc=sr@denx.de \
    --cc=u-boot@lists.denx.de \
    --cc=vladimir.vid@sartura.hr \
    /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