U-Boot Archive on lore.kernel.org
 help / color / mirror / Atom feed
From: Marek Vasut <marex@denx.de>
To: Da Xue <da@libre.computer>
Cc: "u-boot@lists.denx.de" <u-boot@lists.denx.de>,
	Neil Armstrong <narmstrong@baylibre.com>
Subject: Re: [PATCH V2] spi: Update speed/mode on change
Date: Fri, 2 Jul 2021 21:06:14 +0200	[thread overview]
Message-ID: <6f735811-6f72-b2b9-62de-dbaf3671a30d@denx.de> (raw)
In-Reply-To: <CACdvmAg1kQhRfWGTH3JkzUBzJ5iq2iaCi6z5prfVwVs9QtMh7Q@mail.gmail.com>

On 7/2/21 8:28 PM, Da Xue wrote:
> On Fri, Jul 2, 2021 at 2:10 PM Marek Vasut <marex@denx.de> wrote:
> 
>> On 7/2/21 8:03 PM, Da Xue wrote:
>>> SF: Detected gd25lq128 with page size 256 Bytes, erase size 64 KiB, total
>>> 16 MiB
>>> SPI mode: 3
>>> meson_spifc spi@8c80: Cannot set mode (err=-19)
>>> Failed to initialize SPI flash at 0:0 (error -19)
>>>
>>> I added spi-rx-bus-width = <1> and spi-tx-bus-width = <1>
>>>
>>> On Fri, Jul 2, 2021 at 1:44 PM Marek Vasut <marex@denx.de> wrote:
>>>
>>>> On 7/2/21 7:24 PM, Da Xue wrote:
>>>>> Hi Marek,
>>>>>
>>>>> This patch breaks meson_spifc:
>>>>>
>>>>> SF: Detected gd25lq128 with page size 256 Bytes, erase size 64 KiB,
>> total
>>>>> 16 MiB
>>>>> meson_spifc spi@8c80: Cannot set mode (err=-19)
>>>>> Failed to initialize SPI flash at 0:0 (error -19)
>>>>>
>>>>> Best,
>>>>>
>>>>> Da
>>>>>
>>>>> On Wed, Jun 30, 2021 at 12:49 PM Tom Rini <trini@konsulko.com> wrote:
>>>>>
>>>>>> On Thu, Jun 10, 2021 at 02:00:00PM +0200, Marek Vasut wrote:
>>>>>>
>>>>>>> The spi_get_bus_and_cs() may be called on the same bus and chipselect
>>>>>>> with different frequency or mode. This is valid usecase, but the code
>>>>>>> fails to notify the controller of such a configuration change. Call
>>>>>>> spi_set_speed_mode() in case bus frequency or bus mode changed to let
>>>>>>> the controller update the configuration.
>>>>>>>
>>>>>>> The problem can easily be triggered using the sspi command:
>>>>>>> => sspi 0:0@1000
>>>>>>> => sspi 0:0@2000
>>>>>>> Without this patch, both transfers happen at 1000 Hz. With this
>> patch,
>>>>>>> the later transfer happens correctly at 2000 Hz.
>>>>>>>
>>>>>>> Signed-off-by: Marek Vasut <marex@denx.de>
>>>>>>> Cc: Jagan Teki <jagan@amarulasolutions.com>
>>>>>>> Cc: Patrick Delaunay <patrick.delaunay@foss.st.com>
>>>>>>
>>>>>> Applied to u-boot/master, thanks!
>>>>>>
>>>>>> --
>>>>>> Tom
>>>>
>>>> Seems like you're hitting this code in drivers/spi/meson_spifc.c
>>>>
>>>> 250 static int meson_spifc_set_mode(struct udevice *dev, uint mode)
>>>> 251 {
>>>> 252         struct meson_spifc_priv *spifc = dev_get_priv(dev);
>>>> 253
>>>> 254         if (mode & (SPI_CPHA | SPI_RX_QUAD | SPI_RX_DUAL |
>>>> 255                     SPI_TX_QUAD | SPI_TX_DUAL))
>>>> 256                 return -ENODEV;
>>>>
>>>> (the -ENODEV code doesn't look right, it should be some -EOPNOTSUP or
>> so)
>>>>
>>>> Can you check which of the mode bits is set and triggers the condition ?
>>>>
>>>> I think you might be missing something like
>>>> spi-rx-bus-width = <1>;
>>>> spi-tx-bus-width = <1>;
>>>> in your DT, but that's a guess.
>>
>> Can you check which of the mode bits is set and triggers the condition ?
>>
>> Also, where in the DT did you add spi-rx-bus-width = <1> and
>> spi-tx-bus-width = <1> ?
>>
>> Finally, please do not top-post and keep the list on CC.
>>
> 
> My apologies about the top-posting.
> 
> --- a/arch/arm/dts/meson-gxl-s805x-libretech-ac.dts
> +++ b/arch/arm/dts/meson-gxl-s805x-libretech-ac.dts
> @@ -304,6 +304,8 @@
>                  compatible = "jedec,spi-nor";
>                  reg = <0>;
>                  spi-max-frequency = <80000000>;
> +               spi-rx-bus-width = <1>;
> +               spi-tx-bus-width = <1>;
>          };
>   };

That should do the trick. Can you check which of the mode bits is set in 
meson_spifc_set_mode() and triggers the ENODEV condition ?

  reply	other threads:[~2021-07-02 19:06 UTC|newest]

Thread overview: 31+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2021-06-10 12:00 [PATCH V2] spi: Update speed/mode on change Marek Vasut
2021-06-30 16:49 ` Tom Rini
2021-07-02 17:24   ` Da Xue
2021-07-02 17:44     ` Marek Vasut
     [not found]       ` <CACdvmAh4MZ-rACRAY1nv1d0myCMyNnXjR5htkHTpe3A-wm=B1g@mail.gmail.com>
2021-07-02 18:10         ` Marek Vasut
2021-07-02 18:28           ` Da Xue
2021-07-02 19:06             ` Marek Vasut [this message]
2021-07-02 19:35               ` Da Xue
2021-07-02 19:40                 ` Marek Vasut
2021-07-02 20:10                   ` Da Xue
2021-07-02 20:20                     ` Marek Vasut
  -- strict thread matches above, loose matches on Subject: below --
2021-02-26 14:21 Marek Vasut
2021-03-25 17:41 ` Marek Vasut
2021-03-28 21:30 ` Tom Rini
2021-03-29  1:32   ` Marek Vasut
2021-03-29  1:59     ` Tom Rini
2021-03-29  2:09       ` Marek Vasut
2021-03-29  2:40         ` Marek Vasut
2021-03-31 19:18           ` Marek Vasut
2021-03-31 19:26             ` Tom Rini
2021-03-31 19:40               ` Tom Rini
2021-03-31 20:05                 ` Marek Vasut
2021-03-31 21:45                   ` Tom Rini
2021-03-31 22:19                     ` Simon Glass
2021-04-01 14:18                       ` Tom Rini
2021-03-31 22:39                     ` Marek Vasut
2021-03-31 22:50                       ` Simon Glass
2021-03-31 23:19                         ` Marek Vasut
2021-03-31 23:41                           ` Simon Glass
2021-03-31 23:47                             ` Marek Vasut
2021-03-31 23:54                               ` 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=6f735811-6f72-b2b9-62de-dbaf3671a30d@denx.de \
    --to=marex@denx.de \
    --cc=da@libre.computer \
    --cc=narmstrong@baylibre.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 a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox