Hi,
Currently I am using DM8148 EVK and notice that ARM is running at 600MHz and DDR at 400MHz as showed in following U-Boot message:
ARM clk: 600MHz
DDR clk: 400MHz
I want to configure ARM and DDR to higher clock speed in our project, for example, ARM to 720MHz or 1GHZ (if chip supports), DDR to 800MHz or higher. Does anyone know how to do it? Is there any document on this area?
I noticed that following code in U-Boot to calculate the current ARM/DDR speed. What is meaning for these two formula? Any document on this?
/* clk_out = ((OSC_0/ ( N+1 )) * M) / M2 */
arm_freq = ((OSC_0_FREQ / (MODENA_N + 1) * MODENA_M) / MODENA_M2);
ddr_freq = ((OSC_0_FREQ / (DDR_N + 1) * DDR_M) / DDR_M2);
Thanks in advance for your help!
Regards,
Shunnian