From: Miquel Raynal <miquel.raynal@bootlin.com>
To: Pratyush Yadav <p.yadav@ti.com>
Cc: Richard Weinberger <richard@nod.at>,
Vignesh Raghavendra <vigneshr@ti.com>,
Tudor Ambarus <Tudor.Ambarus@microchip.com>,
Michael Walle <michael@walle.cc>, <linux-mtd@lists.infradead.org>,
Mark Brown <broonie@kernel.org>, <linux-spi@vger.kernel.org>,
Julien Su <juliensu@mxic.com.tw>,
Jaime Liao <jaimeliao@mxic.com.tw>,
Thomas Petazzoni <thomas.petazzoni@bootlin.com>,
Boris Brezillon <boris.brezillon@collabora.com>,
Xiangsheng Hou <xiangsheng.hou@mediatek.com>
Subject: Re: [PATCH v5 04/13] spi: spi-mem: Create a helper to gather all the supports_op checks
Date: Wed, 15 Dec 2021 17:11:46 +0100 [thread overview]
Message-ID: <20211215171146.2697f6f5@xps13> (raw)
In-Reply-To: <20211214195315.f7wr6ao6bdma47cn@ti.com>
Hi Pratyush,
p.yadav@ti.com wrote on Wed, 15 Dec 2021 01:23:17 +0530:
> Hi Miquel,
>
> On 14/12/21 12:41PM, Miquel Raynal wrote:
> > So far we check the support for:
> > - regular operations
> > - dtr operations
> > Soon, we will also need to check the support for ECC operations.
> >
> > As the combinatorial will increase exponentially, let's gather all the
> > checks in a single generic function which takes a capabilities structure
> > as input. This new helper is supposed to be called by the currently
> > exported functions instead of repeating a similar implementation.
>
> Nice! I think this is a very good idea.
Thanks!
>
> >
> > Signed-off-by: Miquel Raynal <miquel.raynal@bootlin.com>
> > ---
> > drivers/spi/spi-mem.c | 34 +++++++++++++++++++++++++---------
> > include/linux/spi/spi-mem.h | 8 ++++++++
> > 2 files changed, 33 insertions(+), 9 deletions(-)
> >
> > diff --git a/drivers/spi/spi-mem.c b/drivers/spi/spi-mem.c
> > index 37f4443ce9a0..4c6944d7b174 100644
> > --- a/drivers/spi/spi-mem.c
> > +++ b/drivers/spi/spi-mem.c
> > @@ -160,26 +160,42 @@ static bool spi_mem_check_buswidth(struct spi_mem *mem,
> > return true;
> > }
> >
> > +static bool spi_mem_generic_supports_op(struct spi_mem *mem,
> > + const struct spi_mem_op *op,
> > + struct spi_mem_controller_caps *caps)
> > +{
> > + if (!caps->dtr) {
>
> Nitpick: Please turn the order of the if-else around:
>
> if (caps->dtr)
> ...
> else
> ...
Yup
>
> > + if (op->cmd.dtr || op->addr.dtr ||
> > + op->dummy.dtr || op->data.dtr)
> > + return false;
> > +
> > + if (op->cmd.nbytes != 1)
> > + return false;
> > + } else {
> > + if (op->cmd.nbytes != 2)
> > + return false;
> > + }
> > +
> > + return spi_mem_check_buswidth(mem, op);
> > +}
> > +
> > bool spi_mem_dtr_supports_op(struct spi_mem *mem,
> > const struct spi_mem_op *op)
> > {
> > - if (op->cmd.nbytes != 2)
> > - return false;
> > + struct spi_mem_controller_caps caps = {
> > + .dtr = true,
> > + };
> >
> > - return spi_mem_check_buswidth(mem, op);
> > + return spi_mem_generic_supports_op(mem, op, &caps);
> > }
> > EXPORT_SYMBOL_GPL(spi_mem_dtr_supports_op);
> >
> > bool spi_mem_default_supports_op(struct spi_mem *mem,
> > const struct spi_mem_op *op)
>
> I know this would require a little bit more work from you, but can we
> make spi_mem_default_supports_op() accept the caps as a parameter? And
> drop spi_mem_dtr_supports_op() while we are at it? This would be a lot
> neater I think since we won't have lots of wrapper functions lying
> around.
Following Boris' review I planned to kill spi_mem_dtr_supports_op(). I
might as well update spi_mem_default_supports_op() so that controllers
can provide their static capacities if any.
> > {
> > - if (op->cmd.dtr || op->addr.dtr || op->dummy.dtr || op->data.dtr)
> > - return false;
> > + struct spi_mem_controller_caps caps = {};
> >
> > - if (op->cmd.nbytes != 1)
> > - return false;
> > -
> > - return spi_mem_check_buswidth(mem, op);
> > + return spi_mem_generic_supports_op(mem, op, &caps);
> > }
> > EXPORT_SYMBOL_GPL(spi_mem_default_supports_op);
> >
> > diff --git a/include/linux/spi/spi-mem.h b/include/linux/spi/spi-mem.h
> > index 85e2ff7b840d..f365efcfb719 100644
> > --- a/include/linux/spi/spi-mem.h
> > +++ b/include/linux/spi/spi-mem.h
> > @@ -220,6 +220,14 @@ static inline void *spi_mem_get_drvdata(struct spi_mem *mem)
> > return mem->drvpriv;
> > }
> >
> > +/**
> > + * struct spi_mem_controller_caps - SPI memory controller capabilities
> > + * @dtr: Supports DTR operations
> > + */
> > +struct spi_mem_controller_caps {
> > + bool dtr;
> > +};
> > +
> > /**
> > * struct spi_controller_mem_ops - SPI memory operations
> > * @adjust_op_size: shrink the data xfer of an operation to match controller's
> > --
> > 2.27.0
> >
>
Thanks,
Miquèl
next prev parent reply other threads:[~2021-12-15 16:11 UTC|newest]
Thread overview: 30+ messages / expand[flat|nested] mbox.gz Atom feed top
2021-12-14 11:41 [PATCH v5 00/13] Pipelined ECC engines & Macronix support Miquel Raynal
2021-12-14 11:41 ` [PATCH v5 01/13] mtd: nand: ecc: Provide a helper to retrieve a pilelined engine device Miquel Raynal
2021-12-14 11:41 ` [PATCH v5 02/13] mtd: nand: mxic-ecc: Support SPI pipelined mode Miquel Raynal
2021-12-14 11:41 ` [PATCH v5 03/13] mtd: spinand: Delay a little bit the dirmap creation Miquel Raynal
2021-12-14 11:41 ` [PATCH v5 04/13] spi: spi-mem: Create a helper to gather all the supports_op checks Miquel Raynal
2021-12-14 19:53 ` Pratyush Yadav
2021-12-15 16:11 ` Miquel Raynal [this message]
2021-12-14 11:41 ` [PATCH v5 05/13] spi: spi-mem: Export the spi_mem_generic_supports_op() helper Miquel Raynal
2021-12-14 11:41 ` [PATCH v5 06/13] spi: spi-mem: Add an ecc_en parameter to the spi_mem_op structure Miquel Raynal
2021-12-14 16:29 ` Boris Brezillon
2021-12-14 11:41 ` [PATCH v5 07/13] mtd: spinand: Create direct mapping descriptors for ECC operations Miquel Raynal
2021-12-14 11:41 ` [PATCH v5 08/13] spi: mxic: Fix the transmit path Miquel Raynal
2021-12-14 11:41 ` [PATCH v5 09/13] spi: mxic: Create a helper to configure the controller before an operation Miquel Raynal
2021-12-14 11:41 ` [PATCH v5 10/13] spi: mxic: Create a helper to ease the start of " Miquel Raynal
2021-12-14 11:41 ` [PATCH v5 11/13] spi: mxic: Add support for direct mapping Miquel Raynal
2021-12-14 11:41 ` [PATCH v5 12/13] spi: mxic: Use spi_mem_generic_supports_op() Miquel Raynal
2021-12-14 16:24 ` Boris Brezillon
2021-12-15 17:44 ` Miquel Raynal
2021-12-15 18:45 ` Boris Brezillon
2021-12-16 8:11 ` Miquel Raynal
2021-12-15 18:52 ` Boris Brezillon
2021-12-16 8:14 ` Miquel Raynal
2021-12-15 19:05 ` Boris Brezillon
2021-12-15 19:19 ` Mark Brown
2021-12-16 8:07 ` Miquel Raynal
2021-12-16 9:01 ` Miquel Raynal
2021-12-16 9:57 ` Miquel Raynal
2021-12-16 14:04 ` Mark Brown
2021-12-16 14:27 ` Miquel Raynal
2021-12-14 11:41 ` [PATCH v5 13/13] spi: mxic: Add support for pipelined ECC operations Miquel Raynal
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=20211215171146.2697f6f5@xps13 \
--to=miquel.raynal@bootlin.com \
--cc=Tudor.Ambarus@microchip.com \
--cc=boris.brezillon@collabora.com \
--cc=broonie@kernel.org \
--cc=jaimeliao@mxic.com.tw \
--cc=juliensu@mxic.com.tw \
--cc=linux-mtd@lists.infradead.org \
--cc=linux-spi@vger.kernel.org \
--cc=michael@walle.cc \
--cc=p.yadav@ti.com \
--cc=richard@nod.at \
--cc=thomas.petazzoni@bootlin.com \
--cc=vigneshr@ti.com \
--cc=xiangsheng.hou@mediatek.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;
as well as URLs for NNTP newsgroup(s).