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.
Hi Kien,
Both NAND clashes have a page size of 2048, but the spare area increased from 64 bytes to 128 bytes (per 2048 bytes), so you might need to use BCH16 ECC with MT29F2G08ABAGAH4, whereas BCH8 works for MT29F4G08ABADAH4 with its 64 bytes of OOB.
Check also the last digits of the NAND part number to ensure it does not have the Error Correction field selected (after the Operating Temperature Range field): "E" = Internal ECC enabled
Check that the bootmode matches the ECC capability of the NAND based on the part number.
Refer to this e2e and the below documentation...
software-dl.ti.com/.../UG-NAND.html
Section 26.1.8.4 NAND in Initialization chapter of the TRM SPRUH73Q
Hope this helps,
Mark
Hello Mark,
Thanks for your answer.
Do you have any example code for BCH16 ECC?
Currently we are using WinCE2013 and there are only examples for BCH4/8 ECC .
Regards,
Kien Nguyen
Hi Kien,
The NAND can get away with BCH8, but the ROM bootloader is trying to use BCH16 based on the size of the spare area. You may only need to update the primary bootloader image. Once any secondary bootloader is running (ie. uboot equivalent), the image it reads does not have to be BCH16.
I believe the GPMC ECC hardware can be used to create the BCH16 codes while writing to the NAND flash. This way the programmer can react to bad blocks that could be different from board to board. How are you currently programming the NAND?
You could study the uBoot mtd source and programming sequence
Source: see uBoot source code (omap_gpmc.c, omap_elm.c, am335x_spl_bch.c) in
am335x-evm-linux-sdk-src-07.03.00.005\board-support\u-boot-2020.01+gitAUTOINC+2781231a33-g2781231a33\drivers\mtd\nand\raw\
Download from www.ti.com/.../PROCESSOR-SDK-AM335X
Sequence:
software-dl.ti.com/.../NAND.html
I believe the BCH selection is made in this line (0:1m, 0:2m):
$ modprobe cmdlinepart mtdparts="davinci-nand.0:2m(image)ro,-(free space)"
If you require the ability program NAND offline, it appears we can provide you a software tool. Let me know if that is what you require.
See: https://e2e.ti.com/support/processors-group/processors/f/processors-forum/690789/linux-am3352-nand-ecc-calculator-for-factory-programming
See also the below e2e links:
https://e2e.ti.com/support/processors-group/processors/f/processors-forum/400119/sitara-am3352zcz60-bch-ecc-algorithm-source-code-request
https://e2e.ti.com/support/processors-group/processors/f/processors-forum/445193/mlo-not-booting-from-nand-on-am335x
https://e2e.ti.com/support/processors-group/processors/f/processors-forum/411921/nand-flash-pre-programming
https://e2e.ti.com/support/processors-group/processors/f/processors-forum/991472/how-to-apply-the-new-nand-question/3665977#3665977
Regards,
Mark
Hi Mark,
Thanks for your reply.
We will try and keep you posted.
Regards,
Kien Nguyen