Tool/software:
Hi TI experts
from the gpmc nand driver file : drivers/mtd/nand/raw/omap2.c , I found that if not use NAND_BBT_USE_FLASH, will skip BBT scan. please tell me the reason.
If we not use NAND_BBT_USE_FLASH, also not set NAND_SKIP_BBTSCAN. so will storage BBT in the RAM. Will it be have some issues in TI platform ?
omap_nand_attach_chip--->
{ if (chip->bbt_options & NAND_BBT_USE_FLASH)
chip->bbt_options |= NAND_BBT_NO_OOB;
else
chip->options |= NAND_SKIP_BBTSCAN;
}
we use TI linux SDK version : 10.00.07.04
thanks very much