All of lore.kernel.org
 help / color / mirror / Atom feed
From: Pratyush Yadav <p.yadav@ti.com>
To: <Tudor.Ambarus@microchip.com>
Cc: <michael@walle.cc>, <miquel.raynal@bootlin.com>, <richard@nod.at>,
	<vigneshr@ti.com>, <linux-mtd@lists.infradead.org>,
	<linux-kernel@vger.kernel.org>, <Nicolas.Ferre@microchip.com>
Subject: Re: [PATCH v2 4/8] mtd: spi-nor: core: Introduce method for RDID op
Date: Mon, 21 Mar 2022 23:09:08 +0530	[thread overview]
Message-ID: <20220321173908.tcqx3ygo6qd62ukg@ti.com> (raw)
In-Reply-To: <32b3449a-66db-3ed1-da96-47e124800500@microchip.com>

On 21/03/22 01:18PM, Tudor.Ambarus@microchip.com wrote:
> On 3/21/22 14:21, Pratyush Yadav wrote:
> > EXTERNAL EMAIL: Do not click links or open attachments unless you know the content is safe
> > 
> > On 28/02/22 01:17PM, Tudor Ambarus wrote:
> >> RDID is used in the core to auto detect the flash, but also by some
> >> manufacturer drivers that contain flashes that support Octal DTR mode,
> >> so that they can read the flash ID after the switch to Octal DTR was made
> >> to test if the switch was successful. Introduce a core method for RDID op
> >> to avoid code duplication.
> >>
> >> Signed-off-by: Tudor Ambarus <tudor.ambarus@microchip.com>
> >> ---
> >>  drivers/mtd/spi-nor/core.c | 58 ++++++++++++++++++++++++++------------
> >>  drivers/mtd/spi-nor/core.h |  9 ++++++
> >>  2 files changed, 49 insertions(+), 18 deletions(-)
> >>
> >> diff --git a/drivers/mtd/spi-nor/core.c b/drivers/mtd/spi-nor/core.c
> >> index b1d6fa65417d..281e3d25f74c 100644
> >> --- a/drivers/mtd/spi-nor/core.c
> >> +++ b/drivers/mtd/spi-nor/core.c
> >> @@ -369,6 +369,41 @@ int spi_nor_write_disable(struct spi_nor *nor)
> >>       return ret;
> >>  }
> >>
> >> +/**
> >> + * spi_nor_read_id() - Read the JEDEC ID.
> >> + * @nor:     pointer to 'struct spi_nor'.
> >> + * @naddr:   number of address bytes to send. Can be zero if the operation
> >> + *           does not need to send an address.
> >> + * @ndummy:  number of dummy bytes to send after an opcode or address. Can
> >> + *           be zero if the operation does not require dummy bytes.
> >> + * @id:              pointer to a DMA-able buffer where the value of the JEDEC ID
> >> + *           will be written.
> >> + * @reg_proto:       the SPI protocol for register operation.
> >> + *
> >> + * Return: 0 on success, -errno otherwise.
> >> + */
> >> +int spi_nor_read_id(struct spi_nor *nor, u8 naddr, u8 ndummy, u8 *id,
> >> +                 enum spi_nor_protocol reg_proto)
> > 
> > Nitpick: Could just call it 'proto'.
> 
> sure, will update
> 
> > 
> >> +{
> >> +     int ret;
> >> +
> >> +     if (nor->spimem) {
> >> +             struct spi_mem_op op =
> >> +                     SPI_NOR_READID_OP(naddr, ndummy, id, SPI_NOR_MAX_ID_LEN);
> >> +
> >> +             spi_nor_spimem_setup_op(nor, &op, reg_proto);
> >> +             ret = spi_mem_exec_op(nor->spimem, &op);
> >> +     } else {
> >> +             ret = nor->controller_ops->read_reg(nor, SPINOR_OP_RDID, id,
> >> +                                                 SPI_NOR_MAX_ID_LEN);
> >> +     }
> >> +
> >> +     if (ret)
> >> +             dev_dbg(nor->dev, "error %d reading JEDEC ID\n", ret);
> > 
> > I think this message should be in spi_nor_detect(). Let octal DTR enable
> 
> As of now every SPI NOR operation that return an error also prints a dbg
> message. I like this because it offers a smaller granularity on the error
> cause.

Yes, but I think this message would be misleading. If someone sees 
"error reading JEDEC ID", they would think flash detection itself has 
failed, not that we failed to switch to Octal DTR mode.

> 
> > methods print their own, more specific error messages.
> 
> How about duplicating the error in the octal dtr enable methods if you
> feel it is worth it?

They should at the very least explain that reading ID failed _after_ 
attempting to switch to Octal DTR. But I think it would just be simpler 
if this is not printed here and the caller has the flexibility to 
explain the error.

> 
> > 
> >> +
> >> +     return ret;
> >> +}
> >> +
> >>  /**
> >>   * spi_nor_read_sr() - Read the Status Register.
> >>   * @nor:     pointer to 'struct spi_nor'.
> >> @@ -1649,28 +1684,15 @@ static const struct flash_info *spi_nor_match_id(struct spi_nor *nor,
> >>       return NULL;
> >>  }
> >>
> >> -static const struct flash_info *spi_nor_read_id(struct spi_nor *nor)
> >> +static const struct flash_info *spi_nor_detect(struct spi_nor *nor)
> >>  {
> >>       const struct flash_info *info;
> >>       u8 *id = nor->bouncebuf;
> >>       int ret;
> >>
> >> -     if (nor->spimem) {
> >> -             struct spi_mem_op op =
> >> -                     SPI_MEM_OP(SPI_MEM_OP_CMD(SPINOR_OP_RDID, 1),
> >> -                                SPI_MEM_OP_NO_ADDR,
> >> -                                SPI_MEM_OP_NO_DUMMY,
> >> -                                SPI_MEM_OP_DATA_IN(SPI_NOR_MAX_ID_LEN, id, 1));
> >> -
> >> -             ret = spi_mem_exec_op(nor->spimem, &op);
> >> -     } else {
> >> -             ret = nor->controller_ops->read_reg(nor, SPINOR_OP_RDID, id,
> >> -                                                 SPI_NOR_MAX_ID_LEN);
> >> -     }
> >> -     if (ret) {
> >> -             dev_dbg(nor->dev, "error %d reading JEDEC ID\n", ret);
> >> +     ret = spi_nor_read_id(nor, 0, 0, id, nor->reg_proto);
> > 
> > Hmm, I wonder if it is better to explicitly use SNOR_PROTO_1_1_1 so
> > clearly signify that this is intended to use 1S-1S-1S only. What do you
> > think?
> 
> I would keep it as it is for now, because it offers flexibility.
> If we ever gonna determine the protocol at runtime this will come in handy
> because it will work without touching the code. JESD216 suggests an algorithm
> that tries to determine the mode depending on the SFDP signature.

I was thinking exactly this but came to the opposite conclusion ;-). I 
think this would imply that other protocols can be used to detect the 
flash which is not true.

But I have no strong preferences here. Either is fine by me.

-- 
Regards,
Pratyush Yadav
Texas Instruments Inc.

WARNING: multiple messages have this Message-ID (diff)
From: Pratyush Yadav <p.yadav@ti.com>
To: <Tudor.Ambarus@microchip.com>
Cc: <michael@walle.cc>, <miquel.raynal@bootlin.com>, <richard@nod.at>,
	<vigneshr@ti.com>, <linux-mtd@lists.infradead.org>,
	<linux-kernel@vger.kernel.org>, <Nicolas.Ferre@microchip.com>
Subject: Re: [PATCH v2 4/8] mtd: spi-nor: core: Introduce method for RDID op
Date: Mon, 21 Mar 2022 23:09:08 +0530	[thread overview]
Message-ID: <20220321173908.tcqx3ygo6qd62ukg@ti.com> (raw)
In-Reply-To: <32b3449a-66db-3ed1-da96-47e124800500@microchip.com>

On 21/03/22 01:18PM, Tudor.Ambarus@microchip.com wrote:
> On 3/21/22 14:21, Pratyush Yadav wrote:
> > EXTERNAL EMAIL: Do not click links or open attachments unless you know the content is safe
> > 
> > On 28/02/22 01:17PM, Tudor Ambarus wrote:
> >> RDID is used in the core to auto detect the flash, but also by some
> >> manufacturer drivers that contain flashes that support Octal DTR mode,
> >> so that they can read the flash ID after the switch to Octal DTR was made
> >> to test if the switch was successful. Introduce a core method for RDID op
> >> to avoid code duplication.
> >>
> >> Signed-off-by: Tudor Ambarus <tudor.ambarus@microchip.com>
> >> ---
> >>  drivers/mtd/spi-nor/core.c | 58 ++++++++++++++++++++++++++------------
> >>  drivers/mtd/spi-nor/core.h |  9 ++++++
> >>  2 files changed, 49 insertions(+), 18 deletions(-)
> >>
> >> diff --git a/drivers/mtd/spi-nor/core.c b/drivers/mtd/spi-nor/core.c
> >> index b1d6fa65417d..281e3d25f74c 100644
> >> --- a/drivers/mtd/spi-nor/core.c
> >> +++ b/drivers/mtd/spi-nor/core.c
> >> @@ -369,6 +369,41 @@ int spi_nor_write_disable(struct spi_nor *nor)
> >>       return ret;
> >>  }
> >>
> >> +/**
> >> + * spi_nor_read_id() - Read the JEDEC ID.
> >> + * @nor:     pointer to 'struct spi_nor'.
> >> + * @naddr:   number of address bytes to send. Can be zero if the operation
> >> + *           does not need to send an address.
> >> + * @ndummy:  number of dummy bytes to send after an opcode or address. Can
> >> + *           be zero if the operation does not require dummy bytes.
> >> + * @id:              pointer to a DMA-able buffer where the value of the JEDEC ID
> >> + *           will be written.
> >> + * @reg_proto:       the SPI protocol for register operation.
> >> + *
> >> + * Return: 0 on success, -errno otherwise.
> >> + */
> >> +int spi_nor_read_id(struct spi_nor *nor, u8 naddr, u8 ndummy, u8 *id,
> >> +                 enum spi_nor_protocol reg_proto)
> > 
> > Nitpick: Could just call it 'proto'.
> 
> sure, will update
> 
> > 
> >> +{
> >> +     int ret;
> >> +
> >> +     if (nor->spimem) {
> >> +             struct spi_mem_op op =
> >> +                     SPI_NOR_READID_OP(naddr, ndummy, id, SPI_NOR_MAX_ID_LEN);
> >> +
> >> +             spi_nor_spimem_setup_op(nor, &op, reg_proto);
> >> +             ret = spi_mem_exec_op(nor->spimem, &op);
> >> +     } else {
> >> +             ret = nor->controller_ops->read_reg(nor, SPINOR_OP_RDID, id,
> >> +                                                 SPI_NOR_MAX_ID_LEN);
> >> +     }
> >> +
> >> +     if (ret)
> >> +             dev_dbg(nor->dev, "error %d reading JEDEC ID\n", ret);
> > 
> > I think this message should be in spi_nor_detect(). Let octal DTR enable
> 
> As of now every SPI NOR operation that return an error also prints a dbg
> message. I like this because it offers a smaller granularity on the error
> cause.

Yes, but I think this message would be misleading. If someone sees 
"error reading JEDEC ID", they would think flash detection itself has 
failed, not that we failed to switch to Octal DTR mode.

> 
> > methods print their own, more specific error messages.
> 
> How about duplicating the error in the octal dtr enable methods if you
> feel it is worth it?

They should at the very least explain that reading ID failed _after_ 
attempting to switch to Octal DTR. But I think it would just be simpler 
if this is not printed here and the caller has the flexibility to 
explain the error.

> 
> > 
> >> +
> >> +     return ret;
> >> +}
> >> +
> >>  /**
> >>   * spi_nor_read_sr() - Read the Status Register.
> >>   * @nor:     pointer to 'struct spi_nor'.
> >> @@ -1649,28 +1684,15 @@ static const struct flash_info *spi_nor_match_id(struct spi_nor *nor,
> >>       return NULL;
> >>  }
> >>
> >> -static const struct flash_info *spi_nor_read_id(struct spi_nor *nor)
> >> +static const struct flash_info *spi_nor_detect(struct spi_nor *nor)
> >>  {
> >>       const struct flash_info *info;
> >>       u8 *id = nor->bouncebuf;
> >>       int ret;
> >>
> >> -     if (nor->spimem) {
> >> -             struct spi_mem_op op =
> >> -                     SPI_MEM_OP(SPI_MEM_OP_CMD(SPINOR_OP_RDID, 1),
> >> -                                SPI_MEM_OP_NO_ADDR,
> >> -                                SPI_MEM_OP_NO_DUMMY,
> >> -                                SPI_MEM_OP_DATA_IN(SPI_NOR_MAX_ID_LEN, id, 1));
> >> -
> >> -             ret = spi_mem_exec_op(nor->spimem, &op);
> >> -     } else {
> >> -             ret = nor->controller_ops->read_reg(nor, SPINOR_OP_RDID, id,
> >> -                                                 SPI_NOR_MAX_ID_LEN);
> >> -     }
> >> -     if (ret) {
> >> -             dev_dbg(nor->dev, "error %d reading JEDEC ID\n", ret);
> >> +     ret = spi_nor_read_id(nor, 0, 0, id, nor->reg_proto);
> > 
> > Hmm, I wonder if it is better to explicitly use SNOR_PROTO_1_1_1 so
> > clearly signify that this is intended to use 1S-1S-1S only. What do you
> > think?
> 
> I would keep it as it is for now, because it offers flexibility.
> If we ever gonna determine the protocol at runtime this will come in handy
> because it will work without touching the code. JESD216 suggests an algorithm
> that tries to determine the mode depending on the SFDP signature.

I was thinking exactly this but came to the opposite conclusion ;-). I 
think this would imply that other protocols can be used to detect the 
flash which is not true.

But I have no strong preferences here. Either is fine by me.

-- 
Regards,
Pratyush Yadav
Texas Instruments Inc.

______________________________________________________
Linux MTD discussion mailing list
http://lists.infradead.org/mailman/listinfo/linux-mtd/

  reply	other threads:[~2022-03-21 17:39 UTC|newest]

Thread overview: 64+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2022-02-28 11:17 [PATCH v2 0/8] mtd: spi-nor: Rework Octal DTR methods Tudor Ambarus
2022-02-28 11:17 ` Tudor Ambarus
2022-02-28 11:17 ` [PATCH v2 1/8] mtd: spi-nor: Rename method, s/spi_nor_match_id/spi_nor_match_name Tudor Ambarus
2022-02-28 11:17   ` Tudor Ambarus
2022-03-21 11:57   ` Pratyush Yadav
2022-03-21 11:57     ` Pratyush Yadav
2022-03-21 22:14   ` Michael Walle
2022-03-21 22:14     ` Michael Walle
2022-02-28 11:17 ` [PATCH v2 2/8] mtd: spi-nor: Introduce spi_nor_match_id() Tudor Ambarus
2022-02-28 11:17   ` Tudor Ambarus
2022-03-21 12:00   ` Pratyush Yadav
2022-03-21 12:00     ` Pratyush Yadav
2022-03-21 22:15   ` Michael Walle
2022-03-21 22:15     ` Michael Walle
2022-02-28 11:17 ` [PATCH v2 3/8] mtd: spi-nor: core: Use auto-detection only once Tudor Ambarus
2022-02-28 11:17   ` Tudor Ambarus
2022-03-21 12:14   ` Pratyush Yadav
2022-03-21 12:14     ` Pratyush Yadav
2022-03-21 12:50     ` Tudor.Ambarus
2022-03-21 12:50       ` Tudor.Ambarus
2022-03-21 17:42       ` Pratyush Yadav
2022-03-21 17:42         ` Pratyush Yadav
2022-03-21 22:38         ` Michael Walle
2022-03-21 22:38           ` Michael Walle
2022-03-30 18:50           ` Pratyush Yadav
2022-03-30 18:50             ` Pratyush Yadav
2022-02-28 11:17 ` [PATCH v2 4/8] mtd: spi-nor: core: Introduce method for RDID op Tudor Ambarus
2022-02-28 11:17   ` Tudor Ambarus
2022-03-21 12:21   ` Pratyush Yadav
2022-03-21 12:21     ` Pratyush Yadav
2022-03-21 13:18     ` Tudor.Ambarus
2022-03-21 13:18       ` Tudor.Ambarus
2022-03-21 17:39       ` Pratyush Yadav [this message]
2022-03-21 17:39         ` Pratyush Yadav
2022-03-30  6:53         ` Tudor.Ambarus
2022-03-30  6:53           ` Tudor.Ambarus
2022-03-30 18:49           ` Pratyush Yadav
2022-03-30 18:49             ` Pratyush Yadav
2022-03-21 22:56   ` Michael Walle
2022-03-21 22:56     ` Michael Walle
2022-03-22  7:32     ` Pratyush Yadav
2022-03-22  7:32       ` Pratyush Yadav
2022-03-22  8:19       ` Michael Walle
2022-03-22  8:19         ` Michael Walle
2022-02-28 11:17 ` [PATCH v2 5/8] mtd: spi-nor: manufacturers: Use spi_nor_read_id() core method Tudor Ambarus
2022-02-28 11:17   ` Tudor Ambarus
2022-03-21 12:27   ` Pratyush Yadav
2022-03-21 12:27     ` Pratyush Yadav
2022-02-28 11:17 ` [PATCH v2 6/8] mtd: spi-nor: core: Add helpers to read/write any register Tudor Ambarus
2022-02-28 11:17   ` Tudor Ambarus
2022-03-21 23:13   ` Michael Walle
2022-03-21 23:13     ` Michael Walle
2022-04-11  7:29     ` Tudor.Ambarus
2022-04-11  7:29       ` Tudor.Ambarus
2022-02-28 11:17 ` [PATCH v2 7/8] mtd: spi-nor: micron-st: Rework spi_nor_micron_octal_dtr_enable() Tudor Ambarus
2022-02-28 11:17   ` Tudor Ambarus
2022-03-21 12:33   ` Pratyush Yadav
2022-03-21 12:33     ` Pratyush Yadav
2022-02-28 11:17 ` [PATCH v2 8/8] mtd: spi-nor: spansion: Rework spi_nor_cypress_octal_dtr_enable() Tudor Ambarus
2022-02-28 11:17   ` Tudor Ambarus
2022-03-21 12:34   ` Pratyush Yadav
2022-03-21 12:34     ` Pratyush Yadav
2022-03-21 13:19     ` Tudor.Ambarus
2022-03-21 13:19       ` 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=20220321173908.tcqx3ygo6qd62ukg@ti.com \
    --to=p.yadav@ti.com \
    --cc=Nicolas.Ferre@microchip.com \
    --cc=Tudor.Ambarus@microchip.com \
    --cc=linux-kernel@vger.kernel.org \
    --cc=linux-mtd@lists.infradead.org \
    --cc=michael@walle.cc \
    --cc=miquel.raynal@bootlin.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 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.