mtd: rawnand: hynix: fix up bit 0 of sdr_timing_mode
authorHector Palacios <hector.palacios@digi.com>
Fri, 10 Mar 2023 08:06:09 +0000 (09:06 +0100)
committerMiquel Raynal <miquel.raynal@bootlin.com>
Wed, 22 Mar 2023 16:05:51 +0000 (17:05 +0100)
commite8c047b4a92cf4af7a81bf31e9b31fedc7434335
tree41db1400c5b46d9916607f136705071c88b0a24e
parent4080d536241652af43996d9ceee2b79aeca57267
mtd: rawnand: hynix: fix up bit 0 of sdr_timing_mode

According to the ONFI specification, bit 0 of 'SDR timing mode support'
(bytes 129-130) "shall be 1". That means the NAND supports at least
timing mode 0.

NAND chip Hynix H27U4G8F2GDA-BI (at least) is reading a 0 on this field
which makes nand_choose_best_sdr_timings() return with error and the
probe function to eventually fail.

Given that sdr_timing_modes bit 0 must be 1 by specification, force
it in case the NAND reports it is not set. This is a safe assumption
because the mode 0 is the minimum (safer) set of timings that the
NAND can work with.

Signed-off-by: Hector Palacios <hector.palacios@digi.com>
Signed-off-by: Miquel Raynal <miquel.raynal@bootlin.com>
Link: https://lore.kernel.org/linux-mtd/20230223165104.525852-1-hector.palacios@digi.com
Link: https://lore.kernel.org/linux-mtd/20230310080609.1930869-1-hector.palacios@digi.com
drivers/mtd/nand/raw/nand_hynix.c