From: Takahiro Kuwano <tkuw584924@gmail.com>
To: u-boot@lists.denx.de
Subject: [PATCH v4 5/9] mtd: spi-nor-core: Add the ->ready() hook
Date: Tue, 9 Feb 2021 15:10:44 +0900 [thread overview]
Message-ID: <42cfd928-0f27-3780-edfe-b4ac237a991c@gmail.com> (raw)
In-Reply-To: <20210129184901.qq3ssbixzayrkkpa@ti.com>
Hi Pratyush,
Thank you for the feedback. I will address this in v5.
On 1/30/2021 3:49 AM, Pratyush Yadav wrote:
> Hi,
>
> On 28/01/21 01:36PM, tkuw584924 at gmail.com wrote:
>> From: Takahiro Kuwano <Takahiro.Kuwano@infineon.com>
>>
>> For dual/quad die package devices from Spansion/Cypress, the device's
>> status needs to be checked by reading status registers in all dies, by
>> using Read Any Register command. To support this, a Flash specific hook
>> that can overwrite the legacy status check is needed.
>>
>> The spansion_sr_ready() reads status register 1 by Read Any Register
>> commnad. This function is called from Flash specific hook with die address
>> and dummy cycles.
>>
>> Signed-off-by: Takahiro Kuwano <Takahiro.Kuwano@infineon.com>
>> ---
>> drivers/mtd/spi/spi-nor-core.c | 32 ++++++++++++++++++++++++++++++++
>> include/linux/mtd/spi-nor.h | 4 +++-
>> 2 files changed, 35 insertions(+), 1 deletion(-)
>>
>> diff --git a/drivers/mtd/spi/spi-nor-core.c b/drivers/mtd/spi/spi-nor-core.c
>> index 624e730524..1c0ba5abf9 100644
>> --- a/drivers/mtd/spi/spi-nor-core.c
>> +++ b/drivers/mtd/spi/spi-nor-core.c
>> @@ -522,6 +522,35 @@ static int set_4byte(struct spi_nor *nor, const struct flash_info *info,
>> }
>> }
>>
>> +#ifdef CONFIG_SPI_FLASH_SPANSION
>> +/*
>> + * Read status register 1 by using Read Any Register command to support multi
>> + * die package parts.
>> + */
>> +static int spansion_sr_ready(struct spi_nor *nor, u32 addr_base, u8 dummy)
>> +{
>> + u32 reg_addr = addr_base + SPINOR_REG_ADDR_STR1V;
>> + u8 sr;
>> + int ret;
>> +
>> + ret = spansion_read_any_reg(nor, reg_addr, dummy, &sr);
>> + if (ret < 0)
>> + return ret;
>> +
>> + if (sr & (SR_E_ERR | SR_P_ERR)) {
>> + if (sr & SR_E_ERR)
>> + dev_dbg(nor->dev, "Erase Error occurred\n");
>> + else
>> + dev_dbg(nor->dev, "Programming Error occurred\n");
>> +
>> + nor->write_reg(nor, SPINOR_OP_CLSR, NULL, 0);
>> + return -EIO;
>> + }
>> +
>> + return !(sr & SR_WIP);
>> +}
>> +#endif
>> +
>
> Do not add this function in this patch. Just add the hook here. Add it
> in the patch that actually uses it.
>
>> static int spi_nor_sr_ready(struct spi_nor *nor)
>> {
>> int sr = read_sr(nor);
>> @@ -570,6 +599,9 @@ static int spi_nor_ready(struct spi_nor *nor)
>> {
>> int sr, fsr;
>>
>> + if (nor->ready)
>> + return nor->ready(nor);
>> +
>
> Move the code below in a separate function and call it something like
> spi_nor_default_ready(). Then call that function from here.
>
>> sr = spi_nor_sr_ready(nor);
>> if (sr < 0)
>> return sr;
>> diff --git a/include/linux/mtd/spi-nor.h b/include/linux/mtd/spi-nor.h
>> index e31073eb24..25234177de 100644
>> --- a/include/linux/mtd/spi-nor.h
>> +++ b/include/linux/mtd/spi-nor.h
>> @@ -434,8 +434,9 @@ struct flash_info;
>> * @flash_lock: [FLASH-SPECIFIC] lock a region of the SPI NOR
>> * @flash_unlock: [FLASH-SPECIFIC] unlock a region of the SPI NOR
>> * @flash_is_locked: [FLASH-SPECIFIC] check if a region of the SPI NOR is
>> - * @quad_enable: [FLASH-SPECIFIC] enables SPI NOR quad mode
>> * completely locked
>> + * @quad_enable: [FLASH-SPECIFIC] enables SPI NOR quad mode
>> + * @ready: [FLASH-SPECIFIC] check if the flash is ready
>> * @priv: the private data
>> */
>> struct spi_nor {
>> @@ -481,6 +482,7 @@ struct spi_nor {
>> int (*flash_unlock)(struct spi_nor *nor, loff_t ofs, uint64_t len);
>> int (*flash_is_locked)(struct spi_nor *nor, loff_t ofs, uint64_t len);
>> int (*quad_enable)(struct spi_nor *nor);
>> + int (*ready)(struct spi_nor *nor);
>>
>> void *priv;
>> /* Compatibility for spi_flash, remove once sf layer is merged with mtd */
>> --
>> 2.25.1
>>
>
Best Regards,
Takahiro
next prev parent reply other threads:[~2021-02-09 6:10 UTC|newest]
Thread overview: 25+ messages / expand[flat|nested] mbox.gz Atom feed top
2021-01-28 4:36 [PATCH v4 0/9] mtd: spi-nor: Add support for Cypress s25hl-t/s25hs-t tkuw584924 at gmail.com
2021-01-28 4:36 ` [PATCH v4 1/9] mtd: spi-nor: Add Cypress manufacturer ID tkuw584924 at gmail.com
2021-01-29 17:52 ` Pratyush Yadav
2021-01-28 4:36 ` [PATCH v4 2/9] mtd: spi-nor-ids: Add Cypress s25hl-t/s25hs-t tkuw584924 at gmail.com
2021-01-29 18:08 ` Pratyush Yadav
2021-02-09 5:44 ` Takahiro Kuwano
2021-01-28 4:36 ` [PATCH v4 3/9] mtd: spi-nor-core: Add support for Read/Write Any Register tkuw584924 at gmail.com
2021-01-29 18:17 ` Pratyush Yadav
2021-02-09 5:51 ` Takahiro Kuwano
2021-01-28 4:36 ` [PATCH v4 4/9] mtd: spi-nor-core: Add support for volatile QE bit tkuw584924 at gmail.com
2021-01-29 18:40 ` Pratyush Yadav
2021-02-09 5:57 ` Takahiro Kuwano
2021-01-28 4:36 ` [PATCH v4 5/9] mtd: spi-nor-core: Add the ->ready() hook tkuw584924 at gmail.com
2021-01-29 18:49 ` Pratyush Yadav
2021-02-09 6:10 ` Takahiro Kuwano [this message]
2021-01-28 4:36 ` [PATCH v4 6/9] mtd: spi-nor-core: Add overlaid sector erase feature tkuw584924 at gmail.com
2021-02-01 18:56 ` Pratyush Yadav
2021-02-10 2:37 ` Takahiro Kuwano
2021-01-28 4:37 ` [PATCH v4 7/9] mtd: spi-nor-core: Add Cypress manufacturer ID in set_4byte tkuw584924 at gmail.com
2021-01-28 4:37 ` [PATCH v4 8/9] mtd: spi-nor-core: Add fixups for Cypress s25hl-t/s25hs-t tkuw584924 at gmail.com
2021-02-01 19:22 ` Pratyush Yadav
2021-02-15 7:45 ` Takahiro Kuwano
2021-01-28 4:37 ` [PATCH v4 9/9] mtd: spi-nor-tiny: " tkuw584924 at gmail.com
2021-02-01 19:40 ` Pratyush Yadav
2021-02-10 9:20 ` Takahiro Kuwano
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=42cfd928-0f27-3780-edfe-b4ac237a991c@gmail.com \
--to=tkuw584924@gmail.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