Hi Sir :
I work on AM335x platform, the tools's version are as below.
CCS V6
am335x_sysbios_ind_sdk_1.1.0.8
bios_6_41_04_54
ndk_2_24_01_18
xdctools_3_30_06_67_core
My custom board uses AM3358 1Ghz and DDR3 as beagle bone black does.
So, I use beagle bone black's gel file to initial my custom boards.
Since the CPU frequency of AM3358 is 1Ghz, so I modify the gel file as below.
hotmenu ARM_OPP100_Config()
{
GEL_TextOut("**** AM335x ALL PLL Config for OPP == OPP100 is in progress ......... \n","Output",1,1,1);
GetInputClockFrequency();
if(CLKIN==24)
{
MPU_PLL_Config( CLKIN, 23, 1000, 1);
CORE_PLL_Config( CLKIN, 23, 1000, 10, 8, 4);
DDR_PLL_Config( CLKIN, 23, 400, 1);
PER_PLL_Config( CLKIN, 23, 960, 5);
DISP_PLL_Config( CLKIN, 23, 48, 1);
GEL_TextOut("**** AM335x ALL ADPLL Config for OPP == OPP100 is Done ......... \n","Output",1,1,1);
}
else
GEL_TextOut("**** AM335x PLL Config failed!! Check SYSBOOT[15:14] for proper input freq config \n","Output",1,1,1);
}
However, when I load my out file, the resume button never turn to green.
My question is how to change my CPU frequency and how to confirm my CPU frequency?
Please give me some suggestion.
Best regards,
Marcus