Skip to content
Snippets Groups Projects
Commit 67351049 authored by Dave Liu's avatar Dave Liu Committed by Wolfgang Denk
Browse files

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: default avatarDave Liu <daveliu@freescale.com>
parent 16e7559c
No related branches found
No related tags found
No related merge requests found
...@@ -55,8 +55,8 @@ ...@@ -55,8 +55,8 @@
extern unsigned long get_clock_freq(void); extern unsigned long get_clock_freq(void);
#endif #endif
/* Replace a call to get_clock_freq (after it is implemented)*/ /* Replace a call to get_clock_freq (after it is implemented)*/
#define CONFIG_SYS_CLK_FREQ 66000000 #define CONFIG_SYS_CLK_FREQ 66666666
#define CONFIG_DDR_CLK_FREQ 66000000 #define CONFIG_DDR_CLK_FREQ CONFIG_SYS_CLK_FREQ
/* /*
* These can be toggled for performance analysis, otherwise use default. * These can be toggled for performance analysis, otherwise use default.
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment