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.

AM4376: NAND on custom board.

Part Number: AM4376

Hello,

I am using AM4376 with TI RTOS.

Below example code is using.

C:\ti\pdk_am437x_1_0_17\packages\ti\starterware\tools\flash_writer\src\nand-flash-writer_AM335x\Nand_flasher.

if (AM335X_NAND_writePage(hNandInfo, blockNum, function is getting passed.

I am facing problem on custom board with particular below instruction line.

under this function

 if (AM335X_NAND_verifyPage(hNandInfo, blockNum

step in to below function

Uint32 NAND_readPage(AM335X_NAND_InfoHandle hNandInfo, Uint32 block, Uint32 page, Uint8 *dest)

code fails at below line

// Use ECC bytes to correct any errors
if ((*hNandInfo->hEccInfo->fxnCorrect)(hNandInfo, (block * hNandInfo->pagesPerBlock) + page,
spareBytes, &dest[hNandInfo->dataBytesPerOp * i], i) != E_PASS) {
return E_FAIL;
}

I am using 

NAND flash Micron-MT29F4G16ABBDAH4-IT_D-datasheet

I have modified the code for AM4376 related register. particularly in .h file 

AM335X_device.h

Kindly guide.

Regards,

Vrund