Commit 6735104924f06340071a6914a9ee3345607fc102

Authored by Dave Liu
Committed by Wolfgang Denk
1 parent 16e7559c08

85xx: Fix the wrong SYS_CLK_IN for 8569MDS

The SYS_CLK_IN of MPC8569MDS is 66.66MHz,
The DDR_CLK_IN is same with SYS_CLK_IN in 8569 processor.
so, change the SYS_CLK_IN from 66MHz to 66.66MHz.

Signed-off-by: Dave Liu <daveliu@freescale.com>

Showing 1 changed file with 2 additions and 2 deletions Side-by-side Diff

include/configs/MPC8569MDS.h
... ... @@ -55,8 +55,8 @@
55 55 extern unsigned long get_clock_freq(void);
56 56 #endif
57 57 /* Replace a call to get_clock_freq (after it is implemented)*/
58   -#define CONFIG_SYS_CLK_FREQ 66000000
59   -#define CONFIG_DDR_CLK_FREQ 66000000
  58 +#define CONFIG_SYS_CLK_FREQ 66666666
  59 +#define CONFIG_DDR_CLK_FREQ CONFIG_SYS_CLK_FREQ
60 60  
61 61 /*
62 62 * These can be toggled for performance analysis, otherwise use default.