I try boot C6678 by SPI + NOR , but I found a strange thing .
The input configure for Romparse as below:
section {
.......
sw_pll_prediv = 5
sw_pll_mult = 32
sw_pll_postdiv = 2
sw_pll_flags = 1
.......
}
But i readed the source code of bootloader , and find the struct of SPI as below :
typedef struct boot_params_spi_s
{
.......
UINT16 swPllCfg_msw; /* CPU PLL configuration, MSW */
UINT16 swPllCfg_lsw; /* CPU PLL configuration, LSW */
......
} BOOT_PARAMS_SPI_T;
why the pll config keywords in romparse is sw_pll_prediv but the keywords in bootloader is swPllCfg_msw ?