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.

J5 eco :ARM PLL setting need to change from 600Mhz to 720Mhz in kernel

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?