Skip to content

Commit e16ecee

Browse files
Olga Kitainamiquelraynal
authored andcommitted
mtd: rawnand: arasan: Fix clock rate in NV-DDR
According to the Arasan NAND controller spec, the flash clock rate for SDR must be <= 100 MHz, while for NV-DDR it must be the same as the rate of the CLK line for the mode. The driver previously always set 100 MHz for NV-DDR, which would result in incorrect behavior for NV-DDR modes 0-4. The appropriate clock rate can be calculated from the NV-DDR timing parameters as 1/tCK, or for rates measured in picoseconds, 10^12 / nand_nvddr_timings->tCK_min. Fixes: 197b88f ("mtd: rawnand: arasan: Add new Arasan NAND controller") CC: stable@vger.kernel.org # 5.8+ Signed-off-by: Olga Kitaina <okitain@gmail.com> Signed-off-by: Amit Kumar Mahapatra <amit.kumar-mahapatra@xilinx.com> Signed-off-by: Miquel Raynal <miquel.raynal@bootlin.com> Link: https://lore.kernel.org/linux-mtd/20220628154824.12222-3-amit.kumar-mahapatra@xilinx.com
1 parent 7499bfe commit e16ecee

File tree

1 file changed

+7
-1
lines changed

1 file changed

+7
-1
lines changed

drivers/mtd/nand/raw/arasan-nand-controller.c

Lines changed: 7 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1043,7 +1043,13 @@ static int anfc_setup_interface(struct nand_chip *chip, int target,
10431043
DQS_BUFF_SEL_OUT(dqs_mode);
10441044
}
10451045

1046-
anand->clk = ANFC_XLNX_SDR_DFLT_CORE_CLK;
1046+
if (nand_interface_is_sdr(conf)) {
1047+
anand->clk = ANFC_XLNX_SDR_DFLT_CORE_CLK;
1048+
} else {
1049+
/* ONFI timings are defined in picoseconds */
1050+
anand->clk = div_u64((u64)NSEC_PER_SEC * 1000,
1051+
conf->timings.nvddr.tCK_min);
1052+
}
10471053

10481054
/*
10491055
* Due to a hardware bug in the ZynqMP SoC, SDR timing modes 0-1 work

0 commit comments

Comments
 (0)