Miquel,
is there any comments?
Best regards,
Mikhail Kshevetskiy
On 24.08.2025 21:18, Mikhail Kshevetskiy wrote:
> Continuous reading mode is broken for some spi controllers. There are two
> possible bug scenarios:
>
> 1) "continuous mode" flash and spi controller without dirmap support,
> but with restriction on transfer length in adjust_op_size()
>
> 2) "continuous mode" flash and spi controller with dirmap support for a
> single flash page
>
> In the first case, any read that exceeds the limit specified in adjust_op_size()
> will result in an EIO error. The limit may even be less than a size of a single
> flash page. In this case, any read will result in an error.
>
> In the second case, any read larger than flash page size will result in an EIO
> error or spinand driver spoofing (because the spi controller driver returns
> more bytes than were actually read).
>
> This patch series tries to fix continuous reading (spinand driver side).
> Unfortunately these fixes can't resolve "spinand driver spoofing" case.
> Spi controller drivers might need fixes as well.
>
> Changes v2:
> * added helper to create reading dirmap descriptor
> * fix spelling
> * error code is not used for regular reading fallback anymore
> * it's possible (but very unlucky) that someone will do raw reading
> of the flash in continuous mode (i.e. without OOB), so fix dirmap
> creation for that case as well.
>
> Changes v3:
> * improve description
> * move airoha spi controller driver fix to a separate airoha spi fix series
>
> Changes v4:
> * the period '.' at the end of the commit title was removed
>
> Changes v5:
> * rename spinand_create_rdesc_helper() to spinand_create_rdesc()
> * get rid of controller_is_buggy boolean
>
> Mikhail Kshevetskiy (3):
> mtd: spinand: fix direct mapping creation sizes
> mtd: spinand: try a regular dirmap if creating a dirmap for continuous
> reading fails
> mtd: spinand: repeat reading in regular mode if continuous reading
> fails
>
> drivers/mtd/nand/spi/core.c | 74 +++++++++++++++++++++++++++++--------
> 1 file changed, 59 insertions(+), 15 deletions(-)
>