]> git.dujemihanovic.xyz Git - u-boot.git/commitdiff
spi: nxp_fspi: reset the FLSHxCR1 registers
authorHan Xu <han.xu@nxp.com>
Wed, 13 Sep 2023 21:15:35 +0000 (16:15 -0500)
committerPeng Fan <peng.fan@nxp.com>
Tue, 10 Oct 2023 02:13:51 +0000 (10:13 +0800)
Reset the FLSHxCR1 registers to default value. ROM may set the register
value and it affects the SPI NAND normal functions.

Signed-off-by: Han Xu <han.xu@nxp.com>
Signed-off-by: Peng Fan <peng.fan@nxp.com>
drivers/spi/nxp_fspi.c

index 579d6bac9b14eaec04dceb444992820ad484dd1d..5db27f9ae2c991a8e3e521afee79b523effd0dea 100644 (file)
@@ -927,6 +927,13 @@ static int nxp_fspi_default_setup(struct nxp_fspi *f)
        fspi_writel(f, FSPI_AHBCR_PREF_EN | FSPI_AHBCR_RDADDROPT,
                    base + FSPI_AHBCR);
 
+       /* Reset the flashx control1 registers */
+       reg = FSPI_FLSHXCR1_TCSH(0x3) | FSPI_FLSHXCR1_TCSS(0x3);
+       fspi_writel(f, reg, base + FSPI_FLSHA1CR1);
+       fspi_writel(f, reg, base + FSPI_FLSHA2CR1);
+       fspi_writel(f, reg, base + FSPI_FLSHB1CR1);
+       fspi_writel(f, reg, base + FSPI_FLSHB2CR1);
+
        /* AHB Read - Set lut sequence ID for all CS. */
        fspi_writel(f, SEQID_LUT, base + FSPI_FLSHA1CR2);
        fspi_writel(f, SEQID_LUT, base + FSPI_FLSHA2CR2);