]> Git Repo - J-u-boot.git/blobdiff - nand_spl/nand_boot_fsl_nfc.c
spl mxc nand: Fix broken boot for correctable ECC errors
[J-u-boot.git] / nand_spl / nand_boot_fsl_nfc.c
index 4c5a7feec1629aacc22d1c26ab1bd843339ea56c..ea05952eb5e1fd8c8617c742e8e1dc3f77e8332e 100644 (file)
@@ -140,9 +140,21 @@ static void nfc_nand_data_output(void)
 static int nfc_nand_check_ecc(void)
 {
 #if defined(MXC_NFC_V1)
-       return readw(&nfc->ecc_status_result);
+       u16 ecc_status = readw(&nfc->ecc_status_result);
+       return (ecc_status & 0x3) == 2 || (ecc_status >> 2) == 2;
 #elif defined(MXC_NFC_V1_1)
-       return readl(&nfc->ecc_status_result);
+       u32 ecc_status = readl(&nfc->ecc_status_result);
+       int ecc_per_page = CONFIG_SYS_NAND_PAGE_SIZE / 512;
+       int err_limit = CONFIG_SYS_NAND_SPARE_SIZE / ecc_per_page > 16 ? 8 : 4;
+       int subpages = CONFIG_SYS_NAND_PAGE_SIZE / 512;
+
+       do {
+               if ((ecc_status & 0xf) > err_limit)
+                       return 1;
+               ecc_status >>= 4;
+       } while (--subpages);
+
+       return 0;
 #endif
 }
 
This page took 0.021786 seconds and 4 git commands to generate.