diff options
author | Jason Jin <Jason.jin@freescale.com> | 2013-06-26 10:21:31 +0800 |
---|---|---|
committer | jason <jason@jason-ThinkPad-T61.(none)> | 2013-06-27 08:44:00 +0800 |
commit | 1b9591c2375d59be333c98c760e06605007e20c3 (patch) | |
tree | d477cdbd0ad82151b1363955522cbbce9d12d488 /arch/m68k/cpu/mcf5445x/speed.c | |
parent | 08dbd6ccd58a639fc2179ae472245e6e87042696 (diff) | |
download | u-boot-imx-1b9591c2375d59be333c98c760e06605007e20c3.zip u-boot-imx-1b9591c2375d59be333c98c760e06605007e20c3.tar.gz u-boot-imx-1b9591c2375d59be333c98c760e06605007e20c3.tar.bz2 |
ColdFire: Update the arch_global_date changes for mcf5441x
Update inp_clk, vco_clk and flb_clk for mcf5441x as those
items were moved to arch_global_data.
Signed-off-by: Jason Jin <Jason.jin@freescale.com>
Diffstat (limited to 'arch/m68k/cpu/mcf5445x/speed.c')
-rw-r--r-- | arch/m68k/cpu/mcf5445x/speed.c | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/arch/m68k/cpu/mcf5445x/speed.c b/arch/m68k/cpu/mcf5445x/speed.c index aa73e1f..0276d4d 100644 --- a/arch/m68k/cpu/mcf5445x/speed.c +++ b/arch/m68k/cpu/mcf5445x/speed.c @@ -122,17 +122,17 @@ void setup_5441x_clocks(void) vco = ((in_be32(&pll->pcr) & PLL_CR_FBKDIV_BITS) + 1) * CONFIG_SYS_INPUT_CLKSRC; - gd->vco_clk = vco; + gd->arch.vco_clk = vco; - gd->inp_clk = CONFIG_SYS_INPUT_CLKSRC; /* Input clock */ + gd->arch.inp_clk = CONFIG_SYS_INPUT_CLKSRC; /* Input clock */ pdr = in_be32(&pll->pdr); temp = (pdr & PLL_DR_OUTDIV1_BITS) + 1; gd->cpu_clk = vco / temp; /* cpu clock */ - gd->flb_clk = vco / temp; /* FlexBus clock */ - gd->flb_clk >>= 1; + gd->arch.flb_clk = vco / temp; /* FlexBus clock */ + gd->arch.flb_clk >>= 1; if (in_be16(ccm->misccr2) & 2) /* fsys/4 */ - gd->flb_clk >>= 1; + gd->arch.flb_clk >>= 1; temp = ((pdr & PLL_DR_OUTDIV2_BITS) >> 5) + 1; gd->bus_clk = vco / temp; /* bus clock */ |