I read several documentation which explains how to write to NAND falshes on EVM board. but I did not find any document on how to rad data from nand flash. Is there any way that I can read boot data from a nand flash attached to a Divinchi procesor?
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.
I read several documentation which explains how to write to NAND falshes on EVM board. but I did not find any document on how to rad data from nand flash. Is there any way that I can read boot data from a nand flash attached to a Divinchi procesor?
Hello,
Did you check in the TI81XX_PSP_U-Boot.pdf ?
Reading from Nand
To read len bytes of data from NAND block at a particular offset to the memory buffer in DDR located at addr:
TI8168_EVM# nand read <addr> <offset> <len>
If a bad block is encountered during the read operation, it is skipped and the read operation continues from next 'good' block.
For example, to read 0x40000 bytes from NAND - starting at block 32 (offset 0x400000) to memory buffer at address 0x80000000:
TI8168_EVM# nand read 0x80000000 0x400000 0x40000
Regards,
Pavel
Thanks
What is the setup for this? Should I attached the board to JTAG and then use UBOOT?
I am newbie in EVM and TI Linux so I am trying to find my way in the development. Is there any start-up document in this matter? For example a hello world type document for Linux development for TI?
Mans,
Are you following any documentation to setup linux on your board? If not, please follow that and try to get to u-boot command prompt. For this you've to flash the UBL(if required) or u-boot on the board.
Once you have the u-boot prompt, you can try executing the commands mentioned above.