mtd: rawnand: rockchip: ensure NVDDR timings are rejected
BugLink: https://bugs.launchpad.net/bugs/2077600
commit b27d8946b5edd9827ee3c2f9ea1dd30022fb1ebe upstream.
.setup_interface first gets called with a "target" value of
NAND_DATA_IFACE_CHECK_ONLY, in which case an error is expected
if the controller driver does not support the timing mode (NVDDR).
Fixes: a9ecc8c814 ("mtd: rawnand: Choose the best timings, NV-DDR included")
Signed-off-by: Val Packett <val@packett.cool>
Cc: stable@vger.kernel.org
Signed-off-by: Miquel Raynal <miquel.raynal@bootlin.com>
Link: https://lore.kernel.org/linux-mtd/20240519031409.26464-1-val@packett.cool
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
Signed-off-by: Portia Stephens <portia.stephens@canonical.com>
Signed-off-by: Roxana Nicolescu <roxana.nicolescu@canonical.com>
This commit is contained in:
committed by
Stefan Bader
parent
ef7e9b8d9a
commit
f701b4c603
@@ -420,13 +420,13 @@ static int rk_nfc_setup_interface(struct nand_chip *chip, int target,
|
||||
u32 rate, tc2rw, trwpw, trw2c;
|
||||
u32 temp;
|
||||
|
||||
if (target < 0)
|
||||
return 0;
|
||||
|
||||
timings = nand_get_sdr_timings(conf);
|
||||
if (IS_ERR(timings))
|
||||
return -EOPNOTSUPP;
|
||||
|
||||
if (target < 0)
|
||||
return 0;
|
||||
|
||||
if (IS_ERR(nfc->nfc_clk))
|
||||
rate = clk_get_rate(nfc->ahb_clk);
|
||||
else
|
||||
|
||||
Reference in New Issue
Block a user