mail archive of the barebox mailing list
 help / color / mirror / Atom feed
From: Sascha Hauer <s.hauer@pengutronix.de>
To: Oleksij Rempel <o.rempel@pengutronix.de>
Cc: barebox@lists.infradead.org
Subject: Re: [PATCH v1 1/2] ARM: i.MX8MP: skov: add fallback for unsupported HW
Date: Mon, 18 Mar 2024 13:39:21 +0100	[thread overview]
Message-ID: <Zfg1-Z9X7x8jtkbN@pengutronix.de> (raw)
In-Reply-To: <20240318094533.1553713-1-o.rempel@pengutronix.de>

On Mon, Mar 18, 2024 at 10:45:32AM +0100, Oleksij Rempel wrote:
> Add fallback support for currently not supported HW. Instead of
> completely fail, it is better to use some kind of basic devicetree with
> reduced functionality.
> 
> Signed-off-by: Oleksij Rempel <o.rempel@pengutronix.de>
> ---
>  arch/arm/boards/skov-imx8mp/board.c | 13 ++++++++++---
>  1 file changed, 10 insertions(+), 3 deletions(-)
> 
> diff --git a/arch/arm/boards/skov-imx8mp/board.c b/arch/arm/boards/skov-imx8mp/board.c
> index 5424c3b9ab..a45fe8517f 100644
> --- a/arch/arm/boards/skov-imx8mp/board.c
> +++ b/arch/arm/boards/skov-imx8mp/board.c
> @@ -83,6 +83,12 @@ static const struct board_description imx8mp_variants[] = {
>  		.dts_compatible_hdmi = "skov,imx8mp-skov-revb-hdmi",
>  		.flags = SKOV_IMX8MP_HAS_HDMI,
>  	},
> +	/* Keep this entry always on the last place. It will be used
> +	 * as fallback variant if not supported variant is detected.
> +	 */
> +	{
> +		.dts_compatible = "skov,imx8mp-skov-basic",
> +	},

This increases ARRAY_SIZE(imx8mp_variants) to 3...
>  };
>  
>  static int skov_imx8mp_fixup(struct device_node *root, void *data)
> @@ -168,13 +174,14 @@ static int skov_imx8mp_init_variant(struct skov_imx8mp_priv *priv)
>  	if (ret)
>  		return ret;
>  
> -	priv->variant_id = v;
>  
>  	if (v >= ARRAY_SIZE(imx8mp_variants)) {

... so this doesn't trigger anymore for the still invalid variant 2.

Better make the basic variant a separate initializer outside of the
imx8mp_variants array. That also gets you rid of the "keep last" comment
above.

variant_id is written to the /chosen/skov,imx8mp-board-version property.
This looks wrong for the "basic" variant as this is not a fixed number
but instead depends on the highest number the bootloader knows (which
might be different from the last variant_id userspace knows).

> -		dev_err(dev, "Invalid variant %u\n", v);
> -		return -EINVAL;
> +		dev_warn(dev, "Unsuported variant %u. Fall back to basic variant\n", v);
> +		v = ARRAY_SIZE(imx8mp_variants) - 1;
>  	}

Sascha

-- 
Pengutronix e.K.                           |                             |
Steuerwalder Str. 21                       | http://www.pengutronix.de/  |
31137 Hildesheim, Germany                  | Phone: +49-5121-206917-0    |
Amtsgericht Hildesheim, HRA 2686           | Fax:   +49-5121-206917-5555 |



      parent reply	other threads:[~2024-03-18 12:40 UTC|newest]

Thread overview: 3+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2024-03-18  9:45 Oleksij Rempel
2024-03-18  9:45 ` [PATCH v1 2/2] ARM: i.MX8MP: skov: add new bd500 variant support Oleksij Rempel
2024-03-18 12:39 ` Sascha Hauer [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=Zfg1-Z9X7x8jtkbN@pengutronix.de \
    --to=s.hauer@pengutronix.de \
    --cc=barebox@lists.infradead.org \
    --cc=o.rempel@pengutronix.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