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.

6657BIOS起不来



我的开发板输入时钟由100MHz调至62.5MHz之后,修改了mainpll和ddrpll配置

板子在用JTAG时一切正常工作

但是自启动时,发现main函数可以正常运行,但是BIOS起不来

(采用GPIO口不断翻转电平进行的测试)

主函数中的内容为:

EVM_init();

nand6657 = (PLATFORM_DEVICE_info*)malloc(sizeof(int)*50);

if(nand6657)
printf("that is ok");
else
printf("not enough memory");

if(!(nandInit()))
{
printf("init failed");
}

nand6657->width = 8;
nand6657->spare_size = 64;
nand6657->column = 2048;

NandGetDetails(nand6657);

gpioInit();

emifinit();

Hwi_disable();

hwiCreate();

Hwi_enable();

BIOS_start();

还请各位指教