All of lore.kernel.org
 help / color / mirror / Atom feed
From: Oleksandr Suvorov <oleksandr.suvorov@toradex.com>
To: u-boot@lists.denx.de
Subject: [PATCH] toradex: configblock: fix module revision in config block
Date: Wed, 7 Apr 2021 17:28:53 +0300	[thread overview]
Message-ID: <CAGgjyvG+m3h=6OoSRRoZmWkF_C21D8TeO8LhzpLVAB=m9ExsEw@mail.gmail.com> (raw)
In-Reply-To: <20210407122824.2355-1-denys.drozdov@toradex.com>

On Wed, Apr 7, 2021 at 3:31 PM <denys.drozdov@toradex.com> wrote:
>
> From: Denys Drozdov <denys.drozdov@toradex.com>
>
> U-boot might display wrong module revision information
> for modules with an assembly version 'K'. "cfgblock create"
> does not takes into account all revision digits from PID8.
>
> This fix takes into account all digits of PID8
> to store module revision.
>
> Signed-off-by: Denys Drozdov <denys.drozdov@toradex.com>

Reviewed-by: Oleksandr Suvorov <oleksandr.suvorov@toradex.com>

> ---
>  board/toradex/common/tdx-cfg-block.c | 4 +++-
>  1 file changed, 3 insertions(+), 1 deletion(-)
>
> diff --git a/board/toradex/common/tdx-cfg-block.c b/board/toradex/common/tdx-cfg-block.c
> index adab0a0802..9be58d538b 100644
> --- a/board/toradex/common/tdx-cfg-block.c
> +++ b/board/toradex/common/tdx-cfg-block.c
> @@ -555,6 +555,8 @@ static int get_cfgblock_interactive(void)
>  static int get_cfgblock_barcode(char *barcode, struct toradex_hw *tag,
>                                 u32 *serial)
>  {
> +       char revision[3] = {barcode[6], barcode[7], '\0'};
> +
>         if (strlen(barcode) < 16) {
>                 printf("Argument too short, barcode is 16 chars long\n");
>                 return -1;
> @@ -563,7 +565,7 @@ static int get_cfgblock_barcode(char *barcode, struct toradex_hw *tag,
>         /* Get hardware information from the first 8 digits */
>         tag->ver_major = barcode[4] - '0';
>         tag->ver_minor = barcode[5] - '0';
> -       tag->ver_assembly = barcode[7] - '0';
> +       tag->ver_assembly = simple_strtoul(revision, NULL, 10);
>
>         barcode[4] = '\0';
>         tag->prodid = simple_strtoul(barcode, NULL, 10);
> --
> 2.17.1
>


-- 
Best regards
Oleksandr Suvorov

Toradex AG
Ebenaustrasse 10 | 6048 Horw | Switzerland | T: +41 41 500 48 00

  reply	other threads:[~2021-04-07 14:28 UTC|newest]

Thread overview: 3+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2021-04-07 12:28 [PATCH] toradex: configblock: fix module revision in config block denys.drozdov at toradex.com
2021-04-07 14:28 ` Oleksandr Suvorov [this message]
2021-04-20 14:21 ` Tom Rini

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='CAGgjyvG+m3h=6OoSRRoZmWkF_C21D8TeO8LhzpLVAB=m9ExsEw@mail.gmail.com' \
    --to=oleksandr.suvorov@toradex.com \
    --cc=u-boot@lists.denx.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.