[PATCH v2 04/10] spi: Extend the core to ease integration of SPI memory controllers
Frieder Schrempf
frieder.schrempf at exceet.de
Mon Apr 16 03:33:54 PDT 2018
Hi Boris,
On 11.04.2018 00:44, Boris Brezillon wrote:
> Some controllers are exposing high-level interfaces to access various
> kind of SPI memories. Unfortunately they do not fit in the current
> spi_controller model and usually have drivers placed in
> drivers/mtd/spi-nor which are only supporting SPI NORs and not SPI
> memories in general.
>
> This is an attempt at defining a SPI memory interface which works for
> all kinds of SPI memories (NORs, NANDs, SRAMs).
>
> Signed-off-by: Boris Brezillon <boris.brezillon at bootlin.com>
> ---
[...]
> +
> +/**
> + * spi_mem_supports_op() - Check if a memory device and the controller it is
> + * connected to support a specific memory operation
> + * @mem: the SPI memory
> + * @op: the memory operation to check
> + *
> + * Some controllers are only supporting Single or Dual IOs, others might only
> + * support specific opcodes, or it can even be that the controller and device
> + * both support Quad IOs but the hardware prevents you from using it because
> + * only 2 IO lines are connected.
> + *
> + * This function checks whether a specific operation is supported.
> + *
> + * Return: true if @op is supported, false otherwise.
> + */
> +bool spi_mem_supports_op(struct spi_mem *mem, const struct spi_mem_op *op)
> +{
> + struct spi_controller *ctlr = mem->spi->controller;
> +
> + if (ctlr->mem_ops->supports_op)
this misses a null check for mem_ops:
if (ctlr->mem_ops && ctlr->mem_ops->supports_op)
> + return ctlr->mem_ops->supports_op(mem, op);
> +
> + return spi_mem_default_supports_op(mem, op);
> +}
[...]
Regards,
Frieder
More information about the linux-mtd
mailing list