From: Esben Haabendal Date: Fri, 17 Jan 2020 20:05:37 +0000 (+0100) Subject: mtd: rawnand: gpmi: Restore nfc timing setup after suspend/resume X-Git-Tag: Ubuntu-5.3.0-41.33~97 X-Git-Url: https://git.proxmox.com/?a=commitdiff_plain;h=7ae282fd30d7077924ce082f8bdbe0f39a8d1e0a;p=mirror_ubuntu-eoan-kernel.git mtd: rawnand: gpmi: Restore nfc timing setup after suspend/resume BugLink: https://bugs.launchpad.net/bugs/1862429 commit d70486668cdf51b14a50425ab45fc18677a167b2 upstream. As we reset the GPMI block at resume, the timing parameters setup by a previous exec_op is lost. Rewriting GPMI timing registers on first exec_op after resume fixes the problem. Fixes: ef347c0cfd61 ("mtd: rawnand: gpmi: Implement exec_op") Cc: stable@vger.kernel.org Signed-off-by: Esben Haabendal Acked-by: Han Xu Signed-off-by: Miquel Raynal Signed-off-by: Greg Kroah-Hartman Signed-off-by: Kamal Mostafa Signed-off-by: Khalid Elmously --- diff --git a/drivers/mtd/nand/raw/gpmi-nand/gpmi-nand.c b/drivers/mtd/nand/raw/gpmi-nand/gpmi-nand.c index 879df8402446..b9d5d55a5edb 100644 --- a/drivers/mtd/nand/raw/gpmi-nand/gpmi-nand.c +++ b/drivers/mtd/nand/raw/gpmi-nand/gpmi-nand.c @@ -2727,6 +2727,10 @@ static int gpmi_pm_resume(struct device *dev) return ret; } + /* Set flag to get timing setup restored for next exec_op */ + if (this->hw.clk_rate) + this->hw.must_apply_timings = true; + /* re-init the BCH registers */ ret = bch_set_geometry(this); if (ret) {