[<prev] [next>] [<thread-prev] [thread-next>] [day] [month] [year] [list]
Message-ID: <33e2708a-7e69-86c9-089c-2ace27f7768c@microchip.com>
Date: Mon, 13 Jul 2020 06:19:25 +0000
From: <Tudor.Ambarus@...rochip.com>
To: <p.yadav@...com>, <miquel.raynal@...tlin.com>, <richard@....at>,
<vigneshr@...com>, <broonie@...nel.org>,
<Nicolas.Ferre@...rochip.com>, <alexandre.belloni@...tlin.com>,
<Ludovic.Desroches@...rochip.com>, <matthias.bgg@...il.com>,
<michal.simek@...inx.com>, <linux-mtd@...ts.infradead.org>,
<linux-kernel@...r.kernel.org>, <linux-spi@...r.kernel.org>,
<linux-arm-kernel@...ts.infradead.org>,
<linux-mediatek@...ts.infradead.org>
CC: <nsekhar@...com>, <boris.brezillon@...labora.com>
Subject: Re: [PATCH v10 03/17] spi: atmel-quadspi: reject DTR ops
On 6/23/20 9:30 PM, Pratyush Yadav wrote:
> EXTERNAL EMAIL: Do not click links or open attachments unless you know the content is safe
>
> Double Transfer Rate (DTR) ops are added in spi-mem. But this controller
> doesn't support DTR transactions. Since we don't use the default
the sam9x60 version of the controller supports DTR ops.
> supports_op(), which rejects all DTR ops, do that explicitly in our
> supports_op().
>
> Signed-off-by: Pratyush Yadav <p.yadav@...com>
> ---
> drivers/spi/atmel-quadspi.c | 6 ++++++
> 1 file changed, 6 insertions(+)
>
> diff --git a/drivers/spi/atmel-quadspi.c b/drivers/spi/atmel-quadspi.c
> index cb44d1e169aa..a898755fb41e 100644
> --- a/drivers/spi/atmel-quadspi.c
> +++ b/drivers/spi/atmel-quadspi.c
> @@ -285,6 +285,12 @@ static bool atmel_qspi_supports_op(struct spi_mem *mem,
> op->dummy.nbytes == 0)
> return false;
>
> + /* DTR ops not supported. */
Better to say that "DTR ops are not implemented."
> + if (op->cmd.dtr || op->addr.dtr || op->dummy.dtr || op->data.dtr)
> + return false;
> + if (op->cmd.nbytes != 1)
> + return false;
> +
I would move these the first thing in the function, to speed up the exit.
With these addressed:
Reviewed-by: Tudor Ambarus <tudor.ambarus@...rochip.com>
> return true;
> }
>
> --
> 2.27.0
>
Powered by blists - more mailing lists