Skip to content

Commit

Permalink
WIP: mtd: rawnand: Override automatic NAND timing mode from dts
Browse files Browse the repository at this point in the history
Makes it possible to use problematic combinations of flash chips and
controllers like for example SMC on at91 SAM9X60 with S34ML02G1 by
explicitly giving an ONFI timing mode in dts instead of finding the best
mode automatically.
  • Loading branch information
LeSpocky committed Apr 11, 2024
1 parent 7ded957 commit 39c47d7
Showing 1 changed file with 54 additions and 2 deletions.
56 changes: 54 additions & 2 deletions drivers/mtd/nand/raw/nand_base.c
Original file line number Diff line number Diff line change
Expand Up @@ -916,6 +916,28 @@ static int nand_setup_interface(struct nand_chip *chip, int chipnr)
return ret;
}

static int of_get_nand_onfi_timing_mode(struct nand_chip *chip)
{
struct device_node *dn = nand_get_flash_node(chip);
u32 val;
int ret;

ret = of_property_read_u32(dn, "nand-onfi-timing-mode", &val);

#if 0
if (ret < 0)
{
pr_debug("Error (%d) reading property 'nand-onfi-timing-mode'.\n", ret);
return ret;
} else {
pr_debug("Got nand-onfi-timing-mode val %u\n", val);
return val;
}
#else
return (ret < 0) ? ret : val;
#endif
}

/**
* nand_choose_best_sdr_timings - Pick up the best SDR timings that both the
* NAND controller and the NAND chip support
Expand All @@ -935,14 +957,23 @@ int nand_choose_best_sdr_timings(struct nand_chip *chip,

iface->type = NAND_SDR_IFACE;

if (spec_timings) {
mode = of_get_nand_onfi_timing_mode(chip);

if (mode >= 0) {
/* Optionally override best mode from device tree. */
pr_debug("Overriding automatic NAND timing mode, trying ONFI mode %d on %s interface\n",
mode, "SDR");
best_mode = mode;
} else if (spec_timings) {
pr_debug("Trying specific NAND timings on %s interface\n", "SDR");
iface->timings.sdr = *spec_timings;
iface->timings.mode = onfi_find_closest_sdr_mode(spec_timings);

/* Verify the controller supports the requested interface */
ret = ops->setup_interface(chip, NAND_DATA_IFACE_CHECK_ONLY,
iface);
if (!ret) {
pr_debug("Using specific NAND timings on %s interface\n", "SDR");
chip->best_interface_config = iface;
return ret;
}
Expand All @@ -951,6 +982,7 @@ int nand_choose_best_sdr_timings(struct nand_chip *chip,
best_mode = iface->timings.mode;
} else if (chip->parameters.onfi) {
best_mode = fls(chip->parameters.onfi->sdr_timing_modes) - 1;
pr_debug("Trying ONFI mode %d on %s interface\n", best_mode, "SDR");
}

for (mode = best_mode; mode >= 0; mode--) {
Expand All @@ -964,6 +996,11 @@ int nand_choose_best_sdr_timings(struct nand_chip *chip,
}
}

if (ret)
pr_debug("No timing mode found for %s interface\n", "SDR");
else
pr_debug("Using ONFI timing mode %d for %s interface\n", mode, "SDR");

return ret;
}

Expand All @@ -986,14 +1023,23 @@ int nand_choose_best_nvddr_timings(struct nand_chip *chip,

iface->type = NAND_NVDDR_IFACE;

if (spec_timings) {
mode = of_get_nand_onfi_timing_mode(chip);

if (mode >= 0) {
/* Optionally override best mode from device tree. */
pr_debug("Overriding automatic NAND timing mode, trying ONFI mode %d on %s interface\n",
mode, "NV-DDR");
best_mode = mode;
} else if (spec_timings) {
pr_debug("Trying specific NAND timings on %s interface\n", "NV-DDR");
iface->timings.nvddr = *spec_timings;
iface->timings.mode = onfi_find_closest_nvddr_mode(spec_timings);

/* Verify the controller supports the requested interface */
ret = ops->setup_interface(chip, NAND_DATA_IFACE_CHECK_ONLY,
iface);
if (!ret) {
pr_debug("Using specific NAND timings on %s interface\n", "NV-DDR");
chip->best_interface_config = iface;
return ret;
}
Expand All @@ -1002,6 +1048,7 @@ int nand_choose_best_nvddr_timings(struct nand_chip *chip,
best_mode = iface->timings.mode;
} else if (chip->parameters.onfi) {
best_mode = fls(chip->parameters.onfi->nvddr_timing_modes) - 1;
pr_debug("Trying ONFI mode %d on %s interface\n", best_mode, "NV-DDR");
}

for (mode = best_mode; mode >= 0; mode--) {
Expand All @@ -1015,6 +1062,11 @@ int nand_choose_best_nvddr_timings(struct nand_chip *chip,
}
}

if (ret)
pr_debug("No timing mode found for %s interface\n", "NV-DDR");
else
pr_debug("Using ONFI timing mode %d for %s interface\n", mode, "NV-DDR");

return ret;
}

Expand Down

0 comments on commit 39c47d7

Please sign in to comment.