[PATCH 1/2] mtd: spi-nor: When a flash memory is missing do not report an error

Michal Suchánek msuchanek at suse.de
Thu Jul 14 13:55:29 PDT 2022


On Thu, Jul 14, 2022 at 09:41:48PM +0200, Michael Walle wrote:
> Hi,
> 
> Am 2022-07-14 21:19, schrieb Michal Suchanek:
> > It is normal that devices are designed with multiple types of storage,
> > and only some types of storage are present.
> > 
> > The kernel can handle this situation gracefully for many types of
> > storage devices such as mmc or ata but it reports and error when spi
> > flash is not present.
> > 
> > Only print a notice that the storage device is missing when no response
> > to the identify command is received.
> > 
> > Consider reply buffers with all bits set to the same value no response.
> 
> I'm not sure you can compare SPI with ATA and MMC. I'm just speaking of
> DT now, but there, for ATA and MMC you just describe the controller and
> it will auto-detect the connected storage. Whereas with SPI you describe

Why does mmc assume storage and SDIO must be descibed? Why the special
casing?

> both the controller and the flash. So I'd argue that your hardware
> description is wrong if it describes a flash which is not present.

At any rate the situation is the same - the storage may be present
sometimes. I don't think assuming some kind of device by defualt is a
sound practice.

However, when the board is designed for a specific kind of device which
is not always present, and the kernel can detect the device, it is
perfectly fine to describe it.

The alternative is to not use the device at all, even when present,
which is kind of useless.

Thanks

Michal

> 
> > Signed-off-by: Michal Suchanek <msuchanek at suse.de>
> > ---
> >  drivers/mtd/spi-nor/core.c | 25 +++++++++++++++++++++++--
> >  1 file changed, 23 insertions(+), 2 deletions(-)
> > 
> > diff --git a/drivers/mtd/spi-nor/core.c b/drivers/mtd/spi-nor/core.c
> > index 502967c76c5f..6bab540171a4 100644
> > --- a/drivers/mtd/spi-nor/core.c
> > +++ b/drivers/mtd/spi-nor/core.c
> > @@ -1652,6 +1652,24 @@ static const struct flash_info
> > *spi_nor_match_id(struct spi_nor *nor,
> >  	return NULL;
> >  }
> > 
> > +static const bool buffer_uniform(const u8 *buffer, size_t length)
> > +{
> > +	bool all0;
> > +	size_t i;
> > +
> > +	for (all0 = true, i = 0; i < length; i++)
> > +		if (buffer[i] != 0) {
> > +			all0 = false;
> > +			break;
> > +		}
> > +	if (all0)
> > +		return true;
> > +	for (i = 0; i < length; i++)
> > +		if (buffer[i] != 0xff)
> > +			return false;
> > +	return true;
> > +}
> 
> That seems unnecessarily complex.
> if (!memchr_inv(id, '\x00', SPI_NOR_MAX_ID_LEN) ||
>     !memchr_inv(id, '\xff', SPI_NOR_MAX_ID_LEN))
> 
> should be the same.
> 
> -michael
> 
> > +
> >  static const struct flash_info *spi_nor_detect(struct spi_nor *nor)
> >  {
> >  	const struct flash_info *info;
> > @@ -1666,8 +1684,11 @@ static const struct flash_info
> > *spi_nor_detect(struct spi_nor *nor)
> > 
> >  	info = spi_nor_match_id(nor, id);
> >  	if (!info) {
> > -		dev_err(nor->dev, "unrecognized JEDEC id bytes: %*ph\n",
> > -			SPI_NOR_MAX_ID_LEN, id);
> > +		if (buffer_uniform(id, SPI_NOR_MAX_ID_LEN))
> > +			dev_info(nor->dev, "No flash memory detected.\n");
> > +		else
> > +			dev_err(nor->dev, "unrecognized JEDEC id bytes: %*ph\n",
> > +				SPI_NOR_MAX_ID_LEN, id);
> >  		return ERR_PTR(-ENODEV);
> >  	}
> >  	return info;



More information about the linux-mtd mailing list