This thread has been locked.

If you have a related question, please click the "Ask a related question" button in the top right corner. The newly created question will be automatically linked to this question.

PSP3.00.00.05 and NAND HWECC support

Hi,

 

I am looking at drivers/mtd/nand/omap2.c and see a configuration

#ifdef CONFIG_MTD_NAND_OMAP_HWECC
        info->nand.ecc.bytes            = 3;
        info->nand.ecc.size             = 512;
        info->nand.ecc.calculate        = omap_calculate_ecc;
        info->nand.ecc.hwctl            = omap_enable_hwecc;
        info->nand.ecc.correct          = omap_correct_data;
        info->nand.ecc.mode             = NAND_ECC_HW;

        /* init HW ECC */
        omap_hwecc_init(&info->mtd);
#else
        info->nand.ecc.mode = NAND_ECC_SOFT;
#endif

 

but I don't see this CONFIG_MTD_NAND_OMAP_HWECC in the menuconfig. Has this been tested with PSP3.00?

 

Thanks,

--Gunter