diff options
| author | Michael Trimarchi <[email protected]> | 2022-08-30 16:48:47 +0200 |
|---|---|---|
| committer | Dario Binacchi <[email protected]> | 2022-10-09 10:42:26 +0200 |
| commit | 90cce0582df43762e3db4176ab392e229a3194dc (patch) | |
| tree | 1d1d9cc551edc1e2d028af002098d60d1b1ff1f0 /include | |
| parent | 6b7149a04613b4468b071294ee97a415e7882ba4 (diff) | |
mtd: mxs_nand: Support EDO mode for imx8mn architecture
Add support for imx8mn architecture in order to run the NAND
in fast edo mode.
Signed-off-by: Michael Trimarchi <[email protected]>
Reviewed-by: Dario Binacchi <[email protected]>
Signed-off-by: Dario Binacchi <[email protected]>
Diffstat (limited to 'include')
| -rw-r--r-- | include/mxs_nand.h | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/include/mxs_nand.h b/include/mxs_nand.h index 741dc8734ea..bb5b84b8c26 100644 --- a/include/mxs_nand.h +++ b/include/mxs_nand.h @@ -12,6 +12,7 @@ #include <asm/cache.h> #include <nand.h> #include <asm/mach-imx/dma.h> +#include <clk.h> /** * @gf_len: The length of Galois Field. (e.g., 13 or 14) @@ -43,6 +44,7 @@ struct mxs_nand_info { struct nand_chip chip; struct udevice *dev; unsigned int max_ecc_strength_supported; + int max_chain_delay; bool use_minimum_ecc; int cur_chip; @@ -59,6 +61,7 @@ struct mxs_nand_info { struct mxs_gpmi_regs *gpmi_regs; struct mxs_bch_regs *bch_regs; + struct clk *gpmi_clk; /* Functions with altered behaviour */ int (*hooked_read_oob)(struct mtd_info *mtd, |
