From: Takahiro Kuwano <tkuw584924@gmail.com>
To: Tudor.Ambarus@microchip.com, linux-mtd@lists.infradead.org
Cc: miquel.raynal@bootlin.com, richard@nod.at, vigneshr@ti.com,
p.yadav@ti.com, Bacem.Daassi@infineon.com,
Takahiro.Kuwano@infineon.com
Subject: Re: [PATCH v11 3/3] mtd: spi-nor: spansion: Add s25hl-t/s25hs-t IDs and fixups
Date: Wed, 20 Apr 2022 14:34:25 +0900 [thread overview]
Message-ID: <c8007288-00ef-bc3d-5337-8db710feee67@gmail.com> (raw)
In-Reply-To: <201f90e6-e03b-9469-f3bd-f1ae3b5737dd@microchip.com>
Hi Tudor,
Thank you for your feedback.
On 4/19/2022 6:32 PM, Tudor.Ambarus@microchip.com wrote:
> On 4/18/22 08:41, tkuw584924@gmail.com wrote:
>> EXTERNAL EMAIL: Do not click links or open attachments unless you know the content is safe
>>
>> From: Takahiro Kuwano <Takahiro.Kuwano@infineon.com>
>>
>> The S25HL-T/S25HS-T family is the Infineon SEMPER Flash with Quad SPI.
>>
>> For the single-die package parts (512Mb and 1Gb), only bottom 4KB and
>> uniform sector sizes are supported. This is due to missing or incorrect
>> entries in SMPT. Fixup for other sector sizes configurations will be
>> followed up as needed.
>>
>> Tested on Xilinx Zynq-7000 FPGA board.
>>
>> Signed-off-by: Takahiro Kuwano <Takahiro.Kuwano@infineon.com>
>> ---
>> Changes in v11:
>> - Cleanup fixups based on other patches in this series
>>
>> Changes in v10:
>> - Cleanup fixups and ID table based on other patches in this series
>>
>> Changes in v9:
>> - Use late_init() hook to fix mode clocks and writesize
>> - Use PARSE_SFDP instead of NO_SFDP_FLAGS
>> - Use MFR_FLAGS for USE_CLSR
>> - Add comment block to explain about addr mode in post_bfpt_fixups()
>>
>> Changes in v8:
>> - Call write_disable in error case only
>> - Use spi_nor_read_reg() helper
>> - Use nor->bouncebuf instead of variable on stack
>> - Update ID table to use FLAGS macro
>>
>> Changes in v7:
>> - Add missing device info table in v6
>>
>> Changes in v6:
>> - Remove 2Gb multi die pacakge support
>>
>> Changes in v5:
>> - Add NO_CHIP_ERASE flag to S25HL02GT and S25HS02GT
>>
>> Changes in v4:
>> - Merge block comments about SMPT in s25hx_t_post_sfdp_fixups()
>> - Remove USE_CLSR flags from S25HL02GT and S25HS02GT
>>
>> Changes in v3:
>> - Remove S25HL256T and S25HS256T
>> - Add S25HL02GT and S25HS02GT
>> - Add support for multi-die package parts support
>> - Remove erase_map fix for top/split sector layout
>> - Set ECC data unit size (16B) to writesize
>>
>> drivers/mtd/spi-nor/spansion.c | 54 ++++++++++++++++++++++++++++++++++
>> 1 file changed, 54 insertions(+)
>>
>> diff --git a/drivers/mtd/spi-nor/spansion.c b/drivers/mtd/spi-nor/spansion.c
>> index 493240ebfd70..dd37b829efbc 100644
>> --- a/drivers/mtd/spi-nor/spansion.c
>> +++ b/drivers/mtd/spi-nor/spansion.c
>> @@ -208,6 +208,44 @@ static int cypress_nor_set_page_size(struct spi_nor *nor, u8 addr_width)
>> return 0;
>> }
>>
>> +static int
>> +s25hx_t_post_bfpt_fixups(struct spi_nor *nor,
>> + const struct sfdp_parameter_header *bfpt_header,
>> + const struct sfdp_bfpt *bfpt)
>> +{
>> + int ret;
>> +
>> + /*
>> + * From BFPT, the nor->addr_width is set to 3. In Read Any Reg op, the
>> + * Flash takes 3-byte or 4-byte addr depending current addr mode. Since
>> + * Read Any Reg op is called in this hook and SMPT parse, we would sync
>
> Hi, Takahiro,
>
> I would like some details, please.
> 1/ with "this hook" you refer to cypress_nor_set_page_size(). Why can't you use a
> addr_width of value 3 when reading SPINOR_REG_CYPRESS_CFR3V?
>
If we are sure that the Flash is in 3-byte address mode, we can use the value 3
for reading CFR3V. However, the Flash's address mode may be changed prior to
Linux MTD probe in some use cases. Actually, in u-boot, it is set to 4-byte
address mode. We need to set the Flash's address mode in known state and update
nor->addr_width accordingly. Due to SMPT issue below, value of 4 would be better
choice.
> 2/ Where in SMPT parse? I looked through the code and couldn't find the Read Any
> Reg op used. Why do you need an addr_width of value 4 in SMPT parse?
>
In the spi_nor_get_map_in_use(), the nor->read_opcode is set to 0x65 (=Read Any Reg).
The spi_nor_smpt_addr_width() returns the value of the nor->addr_width due to
SMPT_CMD_ADDRESS_LEN_USE_CURRENT. The nor->addr_width is set to 4 in the
spi_nor_parse_4bait() before SMPT parse. Therefore, the host issues Read Any Reg
with 4-byte address. We need to set the Flash into 4-byte address mode in advance.
>
>> + * Flash's addr mode and nor->addr_width here.
>> + */
>> + ret = spi_nor_set_4byte_addr_mode(nor, true);
>> + if (ret)
>> + return ret;
>> + nor->addr_width = 4;
>> +
>> + /* Replace Quad Enable with volatile version */
>> + nor->params->quad_enable = cypress_nor_quad_enable_volatile;
>> +
>> + return cypress_nor_set_page_size(nor, nor->addr_width);
>> +}
>> +
>> +void s25hx_t_late_init(struct spi_nor *nor)
>> +{
>> + /* Fast Read 4B requires mode cycles */
>> + nor->params->reads[SNOR_CMD_READ_FAST].num_mode_clocks = 8;
>
> Isn't this info already handled in BFPT? What value of num_mode_clocks
> do you obtain from BFPT for the non-4B opcode?
>
There is no parameter in BFPT that describes about Fast Read 1-1-1 op
(as we can see 'struct sfdp_bfpt_read' in sfdp.c).
The value of num_mode_clocks for Fast Read 1-1-1 is set to 0 in
spi_nor_init_default_params().
>> +
>> + /* The writesize should be ECC data unit size */
>> + nor->params->writesize = 16;
>> +}
>> +
>> +static struct spi_nor_fixups s25hx_t_fixups = {
>> + .post_bfpt = s25hx_t_post_bfpt_fixups,
>> + .late_init = s25hx_t_late_init,
>> +};
>> +
>> /**
>> * cypress_nor_octal_dtr_enable() - Enable octal DTR on Cypress flashes.
>> * @nor: pointer to a 'struct spi_nor'
>> @@ -384,6 +422,22 @@ static const struct flash_info spansion_nor_parts[] = {
>> { "s25fl256l", INFO(0x016019, 0, 64 * 1024, 512)
>> NO_SFDP_FLAGS(SECT_4K | SPI_NOR_DUAL_READ | SPI_NOR_QUAD_READ)
>> FIXUP_FLAGS(SPI_NOR_4B_OPCODES) },
>> + { "s25hl512t", INFO6(0x342a1a, 0x0f0390, 256 * 1024, 256)
>> + PARSE_SFDP
>> + MFR_FLAGS(USE_CLSR)
>> + .fixups = &s25hx_t_fixups },
>> + { "s25hl01gt", INFO6(0x342a1b, 0x0f0390, 256 * 1024, 512)
>> + PARSE_SFDP
>> + MFR_FLAGS(USE_CLSR)
>> + .fixups = &s25hx_t_fixups },
>> + { "s25hs512t", INFO6(0x342b1a, 0x0f0390, 256 * 1024, 256)
>> + PARSE_SFDP
>> + MFR_FLAGS(USE_CLSR)
>> + .fixups = &s25hx_t_fixups },
>> + { "s25hs01gt", INFO6(0x342b1b, 0x0f0390, 256 * 1024, 512)
>> + PARSE_SFDP
>> + MFR_FLAGS(USE_CLSR)
>> + .fixups = &s25hx_t_fixups },
>
> After we establish the details from above, would you please run this test_qspi.sh
> script for all the flashes?
>
> #!/bin/sh
> dd if=/dev/urandom of=./qspi_test bs=1M count=6
> mtd_debug write /dev/mtd0 0 6291456 qspi_test
> mtd_debug erase /dev/mtd0 0 6291456
> mtd_debug read /dev/mtd0 0 6291456 qspi_read
> hexdump qspi_read
> mtd_debug write /dev/mtd0 0 6291456 qspi_test
> mtd_debug read /dev/mtd0 0 6291456 qspi_read
> sha1sum qspi_test qspi_read
>
> The two SHA-1 sums must be the same to pass this test. Send us the output,
> please.
>
OK.
> thanks,
> ta
>
>> { "cy15x104q", INFO6(0x042cc2, 0x7f7f7f, 512 * 1024, 1)
>> FLAGS(SPI_NOR_NO_ERASE) },
>> { "s28hs512t", INFO(0x345b1a, 0, 256 * 1024, 256)
>> --
>> 2.25.1
>>
>
Best Regards,
Takahiro
______________________________________________________
Linux MTD discussion mailing list
http://lists.infradead.org/mailman/listinfo/linux-mtd/
next prev parent reply other threads:[~2022-04-20 5:34 UTC|newest]
Thread overview: 23+ messages / expand[flat|nested] mbox.gz Atom feed top
2022-04-18 5:41 [PATCH v11 0/3] mtd: spi-nor: Add support for Infineon s25hl-t/s25hs-t tkuw584924
2022-04-18 5:41 ` [PATCH v11 1/3] mtd: spi-nor: spansion: Add support for volatile QE bit tkuw584924
2022-04-19 8:01 ` Tudor.Ambarus
2022-04-20 1:03 ` Takahiro Kuwano
2022-04-19 12:53 ` Tudor.Ambarus
2022-04-20 0:48 ` Takahiro Kuwano
2022-04-18 5:41 ` [PATCH v11 2/3] mtd: spi-nor: spansion: Add local function to discover page size tkuw584924
2022-04-19 8:06 ` Tudor.Ambarus
2022-04-20 1:41 ` Takahiro Kuwano
2022-04-18 5:41 ` [PATCH v11 3/3] mtd: spi-nor: spansion: Add s25hl-t/s25hs-t IDs and fixups tkuw584924
2022-04-19 9:32 ` Tudor.Ambarus
2022-04-20 5:34 ` Takahiro Kuwano [this message]
2022-04-20 6:11 ` Tudor.Ambarus
2022-04-20 6:58 ` Takahiro Kuwano
2022-04-20 7:35 ` Tudor.Ambarus
2022-04-20 7:47 ` Tudor.Ambarus
2022-04-20 7:50 ` Takahiro Kuwano
2022-04-20 8:11 ` Tudor.Ambarus
2022-04-20 8:38 ` Takahiro Kuwano
2022-04-20 8:46 ` Tudor.Ambarus
2022-04-21 6:58 ` Takahiro Kuwano
2022-04-20 8:32 ` Takahiro Kuwano
2022-04-20 8:49 ` Tudor.Ambarus
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=c8007288-00ef-bc3d-5337-8db710feee67@gmail.com \
--to=tkuw584924@gmail.com \
--cc=Bacem.Daassi@infineon.com \
--cc=Takahiro.Kuwano@infineon.com \
--cc=Tudor.Ambarus@microchip.com \
--cc=linux-mtd@lists.infradead.org \
--cc=miquel.raynal@bootlin.com \
--cc=p.yadav@ti.com \
--cc=richard@nod.at \
--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 a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox