diff options
author | Dave Liu <daveliu@freescale.com> | 2009-05-18 17:49:23 +0800 |
---|---|---|
committer | Wolfgang Denk <wd@denx.de> | 2009-06-09 22:58:39 +0200 |
commit | 6735104924f06340071a6914a9ee3345607fc102 (patch) | |
tree | cebf8135a0f788a9c6a5e4d564f6758a3aaf1faa /include | |
parent | 16e7559c08b6f29db4596d795b92914c01e6a1b3 (diff) | |
download | u-boot-6735104924f06340071a6914a9ee3345607fc102.zip u-boot-6735104924f06340071a6914a9ee3345607fc102.tar.gz u-boot-6735104924f06340071a6914a9ee3345607fc102.tar.bz2 |
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>
Diffstat (limited to 'include')
-rw-r--r-- | include/configs/MPC8569MDS.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/include/configs/MPC8569MDS.h b/include/configs/MPC8569MDS.h index b0af5dc..64a82dd 100644 --- a/include/configs/MPC8569MDS.h +++ b/include/configs/MPC8569MDS.h @@ -55,8 +55,8 @@ extern unsigned long get_clock_freq(void); #endif /* Replace a call to get_clock_freq (after it is implemented)*/ -#define CONFIG_SYS_CLK_FREQ 66000000 -#define CONFIG_DDR_CLK_FREQ 66000000 +#define CONFIG_SYS_CLK_FREQ 66666666 +#define CONFIG_DDR_CLK_FREQ CONFIG_SYS_CLK_FREQ /* * These can be toggled for performance analysis, otherwise use default. |