From: Jules Maselbas <jmaselbas@zdiv.net>
To: Sascha Hauer <sha@pengutronix.de>
Cc: barebox@lists.infradead.org
Subject: Re: [PATCH 5/5] mtd: spi-nor: Add Synopsys DesignWare Octal SPI driver
Date: Thu, 10 Aug 2023 17:20:08 +0200 [thread overview]
Message-ID: <ZNTl8Y2syTlCdZnP@tour> (raw)
In-Reply-To: <20230726113912.GL18491@pengutronix.de>
Hi Sascha,
On Wed, Jul 26, 2023 at 01:39:12PM +0200, Sascha Hauer wrote:
> Hi Jules,
>
> On Mon, Jul 17, 2023 at 06:54:28PM +0200, Jules Maselbas wrote:
> > Signed-off-by: Jules Maselbas <jmaselbas@kalray.eu>
> > ---
> > drivers/mtd/spi-nor/Kconfig | 6 +
> > drivers/mtd/spi-nor/Makefile | 1 +
> > drivers/mtd/spi-nor/dw-ospi-nor.c | 960 ++++++++++++++++++++++++++++++
> > 3 files changed, 967 insertions(+)
> > create mode 100644 drivers/mtd/spi-nor/dw-ospi-nor.c
> >
> > diff --git a/drivers/mtd/spi-nor/Kconfig b/drivers/mtd/spi-nor/Kconfig
> > index 2beb26006e..b34c69203e 100644
> > --- a/drivers/mtd/spi-nor/Kconfig
> > +++ b/drivers/mtd/spi-nor/Kconfig
> > @@ -26,4 +26,10 @@ config SPI_CADENCE_QUADSPI
> > help
> > This enables support for the Cadence Quad SPI controller and NOR flash.
> >
> > +config SPI_SYNOPSYS_OCTALSPI_NOR
> > + tristate "Synopsys DesignWare Octal SPI controller"
> > + help
> > + This enables support for the Synopsys DesignWare Octal SPI controller
> > + and NOR flash.
> > +
> > endif
> > diff --git a/drivers/mtd/spi-nor/Makefile b/drivers/mtd/spi-nor/Makefile
> > index 457a2f0488..61cf789182 100644
> > --- a/drivers/mtd/spi-nor/Makefile
> > +++ b/drivers/mtd/spi-nor/Makefile
> > @@ -1,3 +1,4 @@
> > # SPDX-License-Identifier: GPL-2.0-only
> > obj-$(CONFIG_MTD_SPI_NOR) += spi-nor.o
> > obj-$(CONFIG_SPI_CADENCE_QUADSPI) += cadence-quadspi.o
> > +obj-$(CONFIG_SPI_SYNOPSYS_OCTALSPI_NOR) += dw-ospi-nor.o
> > diff --git a/drivers/mtd/spi-nor/dw-ospi-nor.c b/drivers/mtd/spi-nor/dw-ospi-nor.c
> > new file mode 100644
> > index 0000000000..13033f9500
> > --- /dev/null
> > +static int dw_spi_find_chipselect(struct spi_nor *nor)
> > +{
> > + int cs = -1;
> > + struct dw_spi_nor *dw_spi = nor->priv;
>
> Better put a pointer to dw_spi_flash_pdata into nor->priv...
> (or use container_of() to get dw_spi_flash_pdata from *nor)
Yeah, I am going to use container_of to get dw_spi_flash_pdata,
and keep dw_spi in priv.
>
> > +
> > + for (cs = 0; cs < dw_spi->supported_cs; cs++)
> > + if (nor == &dw_spi->f_pdata[cs].nor)
> > + break;
> > + return cs;
> > +}
>
> ...and put cs into struct dw_spi_flash_pdata. This way you don't have to
> iterate to get the current chip select.
>
> > +static int dw_spi_write_reg(struct spi_nor *nor, u8 opcode, u8 *buf, int len)
> > +{
> > + int i, ret;
> > +
> > + dev_dbg(nor->dev, "write_reg opcode 0x%02x: ", opcode);
> > + for (i = 0; i < len; i++)
> > + pr_debug("%02x ", buf[i]);
> > + pr_debug("\n");
> > +
> > + if (!IS_ENABLED(CONFIG_MTD_WRITE))
> > + return -ENOTSUPP;
>
> This function looks like it's supposed to write a register. Are you sure
> this is not needed when MTD write support is disabled?
I am not sure about this, this looks exactly the same in the cadence-quadspi
driver. I though adding a condition to only refuse writing to the "write enable"
register, like so:
- if (!IS_ENABLED(CONFIG_MTD_WRITE))
+ if (!IS_ENABLED(CONFIG_MTD_WRITE) && opcode == SPINOR_OP_WREN)
But I think it should not be handled at the driver level... and it is probably
already handled by core spi-nor driver... In the end I think I'll remove theses
from this driver.
> > +
> > + ret = dw_spi_prep_std(nor, SPI_TMOD_TO);
> > + if (ret)
> > + return ret;
> > +
> > + return dw_spi_write_std(nor, &opcode, 1, buf, len);
> > +}
>
> [...]
>
> > +
> > + if (!dev->of_node) {
> > + f_pdata = &dw_spi->f_pdata[0];
> > +
> > + ret = dw_spi_setup_flash(dev, f_pdata, np);
> > + if (ret)
> > + goto probe_failed;
>
> Do we need probing without device tree? If not, please remove this case.
Only device-tree probing is needed, this likely is a copy-paste from cadence-quadspi
driver.
Best,
Jules
prev parent reply other threads:[~2023-08-10 15:22 UTC|newest]
Thread overview: 7+ messages / expand[flat|nested] mbox.gz Atom feed top
2023-07-17 16:54 [PATCH 1/5] mtd: spi-nor: Add SPI_NOR_QUAD_WRITE hwcap Jules Maselbas
2023-07-17 16:54 ` [PATCH 2/5] mtd: spi-nor: enable {dual,quad}-read and quad-write for w25q256 Jules Maselbas
2023-07-17 16:54 ` [PATCH 3/5] mtd: spi-nor: enable quad-write for is25lp01g Jules Maselbas
2023-07-17 16:54 ` [PATCH 4/5] mtd: spi-nor: move SPI_NOR_MAX_ADDR_WIDTH define to spi-nor.h Jules Maselbas
2023-07-17 16:54 ` [PATCH 5/5] mtd: spi-nor: Add Synopsys DesignWare Octal SPI driver Jules Maselbas
2023-07-26 11:39 ` Sascha Hauer
2023-08-10 15:20 ` Jules Maselbas [this message]
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=ZNTl8Y2syTlCdZnP@tour \
--to=jmaselbas@zdiv.net \
--cc=barebox@lists.infradead.org \
--cc=sha@pengutronix.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