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.

如何修改GEL文件中DDR3 PLL配置?



背景:由于使用的是自己做的6678的板子,因此DDR3布线与EVM略有出入,DDR3无法运行在1333速率,只能运行在1066速率。

现在想要在板子上实现Nor flash boot,因此尝试使用MCSDK提供的norwriter_evm6678l例程,按照论坛上提供的方法,进行程序烧写。而该例程的CCS启动用到DDR3,需要使用gel文件,对DDR3做初始化。因此自己尝试去修改gel中DDR3 PLL配置段代码。但是发现该段代码如下:

/****************************************************************************
 *
 * NAME
 *      Set_Pll2_666_7_MHz
 *
 * PURPOSE:
 *      Setup PLL 2 DDR @ 666.7 MHz with External clock
 *
 * USAGE
 *      This routine can be called as:
 *
 *      Set_Pll2_666_7_MHz()
 *
 * RETURN VALUE
 *      NONE
 *
 * REFERENCE
 *
 ****************************************************************************/
hotmenu Set_Pll2_666_7_MHz( )
{
    Set_Pll2();
}

而Set_Pll2()函数我无法找到,因此不知道如何修改?

请问有办法能够修改gel文件中DDR3 PLL的配置么?