Hi,
I have modified in uboot to change the ARM_PLL to be 720Mhz in clocks_ti814x.h as below:
#define MODENA_N 0x1
#ifdef CONFIG_TI813X
#define MODENA_M (opp_val_ti813x(0x3C, 0x48))
#else
#define MODENA_M 0x48 //0x3C
#endif
#define MODENA_M2 1
#define MODENA_CLKCTRL 0x1
I confirmed it in uboot that MN2DIV: 0x481C505C (0x481C5000 + 0x48 + 0x14) value is 0x00000048.
But after kernel boots when i verified MN2DIV: 0x481C505C (0x481C5000 + 0x48 + 0x14) value is 0x0000003C.
In kernel again it is set to 600MHz.How can i change in kernel to 720Mhz?