Re: [PATCH 1/1] mtd: spi-nor: add an alternative method to support memory >16MiB

From: Brian Norris
Date: Mon Mar 21 2016 - 13:01:17 EST


On Mon, Mar 21, 2016 at 11:33:49AM +0100, Cyrille Pitchen wrote:
> This patch provides an alternative mean to support memory above 16MiB
> (128Mib) by replacing 3byte address op codes by their associated 4byte
> address versions.
>
> Using the dedicated 4byte address op codes doesn't change the internal
> state of the SPI NOR memory as opposed to using other means such as
> updating a Base Address Register (BAR) and sending command to enter/leave
> the 4byte mode.
>
> Hence when a CPU reset occurs, early bootloaders don't need to be aware
> of BAR value or 4byte mode being enabled: they can still access the first
> 16MiB of the SPI NOR memory using the regular 3byte address op codes.
>
> Signed-off-by: Cyrille Pitchen <cyrille.pitchen@xxxxxxxxx>

I understand this reasoning, and that's all well and good. I'd like to
see this happen for all flash that support it, since the stateful 4-byte
modes just seem to break things a lot. But one question below.

> ---
>
> Hi all,
>
> This patch was tested on a sama5d2 xplained board + Macronix mx25l25635e.
>
> Best regards,
>
> Cyrille
>
> drivers/mtd/spi-nor/Kconfig | 12 +++++
> drivers/mtd/spi-nor/spi-nor.c | 105 +++++++++++++++++++++++++++++++++---------
> include/linux/mtd/spi-nor.h | 23 ++++++---
> 3 files changed, 113 insertions(+), 27 deletions(-)
>
> diff --git a/drivers/mtd/spi-nor/Kconfig b/drivers/mtd/spi-nor/Kconfig
> index d42c98e1f581..7fae36fc8526 100644
> --- a/drivers/mtd/spi-nor/Kconfig
> +++ b/drivers/mtd/spi-nor/Kconfig
> @@ -29,6 +29,18 @@ config MTD_SPI_NOR_USE_4K_SECTORS
> Please note that some tools/drivers/filesystems may not work with
> 4096 B erase size (e.g. UBIFS requires 15 KiB as a minimum).
>
> +config MTD_SPI_NOR_USE_4B_OPCODES
> + bool "Use 4-byte address op codes"
> + default n
> + help
> + This is an alternative to the "Enter/Exit 4-byte mode" commands and
> + Base Address Register (BAR) updates to support flash size above 16MiB.
> + Using dedicated 4-byte address op codes for (Fast) Read, Page Program
> + and Sector Erase operations avoids changing the internal state of the
> + SPI NOR memory. Hence if a CPU reset occurs, early bootloaders can
> + still use regular 3-byte address op codes and read from the very first
> + 16MiB of the flash memory.
> +

Why does this need to be a Kconfig option? Can't it just as well be
supported by keeping entries in the ID table, to show which flash
support these opcodes and which don't? Kconfig is really a bad mechanism
for trying to configure your flash.

> config SPI_FSL_QUADSPI
> tristate "Freescale Quad SPI controller"
> depends on ARCH_MXC || SOC_LS1021A || ARCH_LAYERSCAPE || COMPILE_TEST

[snip the rest for now, since I don't think it's relevant]

Brian