diff options
author | wdenk <wdenk> | 2004-09-28 17:59:53 (GMT) |
---|---|---|
committer | wdenk <wdenk> | 2004-09-28 17:59:53 (GMT) |
commit | 66ca92a5ba882807ba8ed8f772c0fc22b25976cc (patch) | |
tree | 45f62d161cf60f9b5be79427073c979d99a41be2 /lib_ppc/board.c | |
parent | 4ec3a7f0fdbad19ad4fa0172b97451b98e82316a (diff) | |
download | u-boot-fsl-qoriq-66ca92a5ba882807ba8ed8f772c0fc22b25976cc.tar.xz |
* Patch by Yuli Barcohen, 13 Jul 2004:
Allow clock setting on MPC866/MPC885 series chips according to
environment variable `cpuclk'
* Patch by Yuli Barcohen, 20 Apr 2004:
Remove unnecessary redefine of CPM_DATAONLY_SIZE for MPC826x
Diffstat (limited to 'lib_ppc/board.c')
-rw-r--r-- | lib_ppc/board.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/lib_ppc/board.c b/lib_ppc/board.c index 419c12d..a2d3023 100644 --- a/lib_ppc/board.c +++ b/lib_ppc/board.c @@ -264,7 +264,7 @@ init_fnc_t *init_sequence[] = { board_early_init_f, #endif -#if !defined(CONFIG_TQM866M) && !defined(CONFIG_NC650) +#if !defined(CONFIG_8xx_CPUCLK_DEFAULT) get_clocks, /* get CPU and bus clocks (etc.) */ #if defined(CONFIG_TQM8xxL) && !defined(CONFIG_TQM866M) adjust_sdram_tbs_8xx, @@ -280,7 +280,7 @@ init_fnc_t *init_sequence[] = { board_postclk_init, #endif env_init, -#if defined(CONFIG_TQM866M) || defined(CONFIG_NC650) +#if defined(CONFIG_8xx_CPUCLK_DEFAULT) get_clocks_866, /* get CPU and bus clocks according to the environment variable */ sdram_adjust_866, /* adjust sdram refresh rate according to the new clock */ init_timebase, |