I have a question. In the datasheet is written that
he can be clocked to 375/456-MHz, but I can't find how to make the clock
higher than 300 MHz.
I am now running at 450 MHz (find some information somewhere on the internet,
forgot where) by doing the following:
- changed the gel-file:
added
Set_Core_450MHz() {
device_PLL0(0,36,1,0,1,17,5); // Pll: 36 x 25 / 2 = 450
GEL_TextOut("\tPLL0 init done for Core:450MHz, EMIF:25MHz\n","Output",1,1,1);
}
and called it in OnTargetConnect()
- added to the .tcf file
bios.GBL.CLKOUT = 450.0000;
This worked, then I was using this clock as source for
the McBsp and saw that the McBsp was not clocking on the frequency
I expected.
I digged into it and found in the chip support Library in the file
soc_OMAPL138.h the following line:
#define CSL_SYSCLK_1_FREQ
(300000000u)
This can't be good if I am running on 450 MHz.
So my question is simple:
What do I have to change to run on a other than 300 MHz clock?