]> git.baikalelectronics.ru Git - kernel.git/commit
mtd: rawnand: gpmi: Set WAIT_FOR_READY timeout based on program/erase times
authorSascha Hauer <s.hauer@pengutronix.de>
Fri, 1 Jul 2022 11:03:41 +0000 (13:03 +0200)
committerRichard Weinberger <richard@nod.at>
Fri, 15 Jul 2022 15:41:11 +0000 (17:41 +0200)
commit9f988d6a854ae5322a27d04ff9298ab6bc613c6f
tree5abfee3493a43e66407b0ab51957c9069ecc1554
parent0c8b98e40f9d61a6792a879de085b19667a1f51b
mtd: rawnand: gpmi: Set WAIT_FOR_READY timeout based on program/erase times

a4c43507bccef Fixes the calculation of the DEVICE_BUSY_TIMEOUT register
value from busy_timeout_cycles. busy_timeout_cycles is calculated wrong
though: It is calculated based on the maximum page read time, but the
timeout is also used for page write and block erase operations which
require orders of magnitude bigger timeouts.

Fix this by calculating busy_timeout_cycles from the maximum of
tBERS_max and tPROG_max.

This is for now the easiest and most obvious way to fix the driver.
There's room for improvements though: The NAND_OP_WAITRDY_INSTR tells us
the desired timeout for the current operation, so we could program the
timeout dynamically for each operation instead of setting a fixed
timeout. Also we could wire up the interrupt handler to actually detect
and forward timeouts occurred when waiting for the chip being ready.

As a sidenote I verified that the change in a4c43507bccef is really
correct. I wired up the interrupt handler in my tree and measured the
time between starting the operation and the timeout interrupt handler
coming in. The time increases 41us with each step in the timeout
register which corresponds to 4096 clock cycles with the 99MHz clock
that I have.

Fixes: a4c43507bccef ("mtd: rawnand: gpmi: Fix setting busy timeout setting")
Fixes: 16c1b23db3788 ("mtd: rawniand: gpmi: use core timings instead of an empirical derivation")
Cc: stable@vger.kernel.org
Signed-off-by: Sascha Hauer <s.hauer@pengutronix.de>
Acked-by: Han Xu <han.xu@nxp.com>
Tested-by: Tomasz Moń <tomasz.mon@camlingroup.com>
Signed-off-by: Richard Weinberger <richard@nod.at>
drivers/mtd/nand/raw/gpmi-nand/gpmi-nand.c