Commit 55e06ae2 authored by Miquel Raynal's avatar Miquel Raynal

mtd: rawnand: onfi: Fix endianness when reading NV-DDR values

Without the use of le16_to_cpu(), these accesses would have been wrong
on a big-endian machine.
Reported-by: default avatarkernel test robot <lkp@intel.com>
Fixes: 45606518 ("mtd: rawnand: Add onfi_fill_nvddr_interface_config() helper")
Fixes: 9310668f ("mtd: rawnand: Retrieve NV-DDR timing modes from the ONFI parameter page")
Signed-off-by: default avatarMiquel Raynal <miquel.raynal@bootlin.com>
Link: https://lore.kernel.org/linux-mtd/20210527084913.208635-1-miquel.raynal@bootlin.com
parent cf67edce
......@@ -315,10 +315,10 @@ int nand_onfi_detect(struct nand_chip *chip)
onfi->tBERS = le16_to_cpu(p->t_bers);
onfi->tR = le16_to_cpu(p->t_r);
onfi->tCCS = le16_to_cpu(p->t_ccs);
onfi->fast_tCAD = p->nvddr_nvddr2_features & BIT(0);
onfi->fast_tCAD = le16_to_cpu(p->nvddr_nvddr2_features) & BIT(0);
onfi->sdr_timing_modes = le16_to_cpu(p->sdr_timing_modes);
if (p->features & ONFI_FEATURE_NV_DDR)
onfi->nvddr_timing_modes = p->nvddr_timing_modes;
if (le16_to_cpu(p->features) & ONFI_FEATURE_NV_DDR)
onfi->nvddr_timing_modes = le16_to_cpu(p->nvddr_timing_modes);
onfi->vendor_revision = le16_to_cpu(p->vendor_revision);
memcpy(onfi->vendor, p->vendor, sizeof(p->vendor));
chip->parameters.onfi = onfi;
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment