[PATCH v3 3/5] mtd: spinand: identfiy SPI NAND device with Continuous Read mode

From: shiva . linuxworks
Date: Sun Feb 02 2020 - 16:57:31 EST


From: Shivamurthy Shastri <sshivamurthy@xxxxxxxxxx>

Add SPINAND_HAS_CR_FEAT_BIT flag to identify the SPI NAND device with
the Continuous Read mode.

Currently, some of the Micron SPI NAND devices enable this feature by
default, and we need to identify them to disable while probing.

Signed-off-by: Shivamurthy Shastri <sshivamurthy@xxxxxxxxxx>
---
include/linux/mtd/spinand.h | 1 +
1 file changed, 1 insertion(+)

diff --git a/include/linux/mtd/spinand.h b/include/linux/mtd/spinand.h
index 4ea558bd3c46..333149b2855f 100644
--- a/include/linux/mtd/spinand.h
+++ b/include/linux/mtd/spinand.h
@@ -270,6 +270,7 @@ struct spinand_ecc_info {
};

#define SPINAND_HAS_QE_BIT BIT(0)
+#define SPINAND_HAS_CR_FEAT_BIT BIT(1)

/**
* struct spinand_info - Structure used to describe SPI NAND chips
--
2.17.1