From: Mattijs Korpershoek <mkorpershoek@baylibre.com>
To: Neil Armstrong <neil.armstrong@linaro.org>,
Lukasz Majewski <lukma@denx.de>, Tom Rini <trini@konsulko.com>,
Jagan Teki <jagan@amarulasolutions.com>,
Vignesh R <vigneshr@ti.com>
Cc: u-boot@lists.denx.de, Neil Armstrong <neil.armstrong@linaro.org>
Subject: Re: [PATCH v2 2/2] dfu: sf: rely on DT for spi speed and mode
Date: Wed, 02 Oct 2024 09:30:11 +0200 [thread overview]
Message-ID: <87zfnnklmk.fsf@baylibre.com> (raw)
In-Reply-To: <20241001-uboot-topic-dfu-sf-dt-v2-2-67f7acfa3ff5@linaro.org>
Hi Neil,
Thank you for the patch.
On mar., oct. 01, 2024 at 18:06, Neil Armstrong <neil.armstrong@linaro.org> wrote:
> Align with cmd_sf, and try to rely on DT for spi speed and mode,
> and still fallback on spi_flash_probe() if it fails.
>
> With the current scheme, spi_flash_probe() will be called
> with CONFIG_SF_DEFAULT_SPEED and CONFIG_SF_DEFAULT_MODE
> with are set to 0 by default on DT platforms using DM_SPI_FLASH.
>
> Like cmd_sf, keep the option to specify the speed and mode
> from the dfu_alt_mode string, but rely on DT properties
> if not specified.
>
> Using CONFIG_SF_DEFAULT_SPEED and CONFIG_SF_DEFAULT_MODE
> makes the SPIFC controller on Amlogic Meson G12B & SM1
> hardware fail and is unable to recover until a system reboot.
>
> Signed-off-by: Neil Armstrong <neil.armstrong@linaro.org>
Reviewed-by: Mattijs Korpershoek <mkorpershoek@baylibre.com>
> ---
> drivers/dfu/dfu_sf.c | 16 +++++++++++++++-
> 1 file changed, 15 insertions(+), 1 deletion(-)
>
> diff --git a/drivers/dfu/dfu_sf.c b/drivers/dfu/dfu_sf.c
> index 7c1c0f9e2dc..8f7296adec6 100644
> --- a/drivers/dfu/dfu_sf.c
> +++ b/drivers/dfu/dfu_sf.c
> @@ -123,6 +123,7 @@ static struct spi_flash *parse_dev(char *devstr)
> unsigned int mode = CONFIG_SF_DEFAULT_MODE;
> char *s, *endp;
> struct spi_flash *dev;
> + bool use_dt = true;
>
> s = strsep(&devstr, ":");
> if (!s || !*s || (bus = simple_strtoul(s, &endp, 0), *endp)) {
> @@ -143,6 +144,8 @@ static struct spi_flash *parse_dev(char *devstr)
> printf("Invalid SPI speed %s\n", s);
> return NULL;
> }
> + if (IS_ENABLED(CONFIG_DM_SPI_FLASH))
> + use_dt = false;
> }
>
> s = strsep(&devstr, ":");
> @@ -152,9 +155,20 @@ static struct spi_flash *parse_dev(char *devstr)
> printf("Invalid SPI mode %s\n", s);
> return NULL;
> }
> + if (IS_ENABLED(CONFIG_DM_SPI_FLASH))
> + use_dt = false;
> }
>
> - dev = spi_flash_probe(bus, cs, speed, mode);
> + if (IS_ENABLED(CONFIG_DM_SPI_FLASH) && use_dt) {
> + struct udevice *new;
> +
> + if (!spi_flash_probe_bus_cs(bus, cs, &new))
> + dev = dev_get_uclass_priv(new);
> + else
> + dev = NULL;
> + } else {
> + dev = spi_flash_probe(bus, cs, speed, mode);
> + }
> if (!dev) {
> printf("Failed to create SPI flash at %u:%u:%u:%u\n",
> bus, cs, speed, mode);
>
> --
> 2.34.1
next prev parent reply other threads:[~2024-10-02 7:30 UTC|newest]
Thread overview: 7+ messages / expand[flat|nested] mbox.gz Atom feed top
2024-10-01 16:06 [PATCH v2 0/2] dfu: sf: fix flash probe when DM_SPI_FLASH is enabled Neil Armstrong
2024-10-01 16:06 ` [PATCH v2 1/2] spi: add DM_SPI_FLASH compatibility inline functions Neil Armstrong
2024-10-02 7:29 ` Mattijs Korpershoek
2024-10-10 8:09 ` Mattijs Korpershoek
2024-10-01 16:06 ` [PATCH v2 2/2] dfu: sf: rely on DT for spi speed and mode Neil Armstrong
2024-10-02 7:30 ` Mattijs Korpershoek [this message]
2024-10-24 7:43 ` [PATCH v2 0/2] dfu: sf: fix flash probe when DM_SPI_FLASH is enabled Mattijs Korpershoek
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=87zfnnklmk.fsf@baylibre.com \
--to=mkorpershoek@baylibre.com \
--cc=jagan@amarulasolutions.com \
--cc=lukma@denx.de \
--cc=neil.armstrong@linaro.org \
--cc=trini@konsulko.com \
--cc=u-boot@lists.denx.de \
--cc=vigneshr@ti.com \
/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.