From: James Yang Date: Fri, 8 Feb 2008 22:44:53 +0000 (-0600) Subject: 85xx: get_tbclk() speed up and rounding fix X-Git-Tag: v1.3.3-rc1~123^2~7 X-Git-Url: https://git.sur5r.net/?a=commitdiff_plain;h=591933ca6eabc440e6ed6967233aaf56fce464a3;p=u-boot 85xx: get_tbclk() speed up and rounding fix Speed up get_tbclk() by referencing pre-computed bus clock frequency value from global data instead of sys_info_t. Fix rounding of result to nearest; previously it was rounding upwards. Signed-off-by: James Yang Signed-off-by: Kumar Gala --- diff --git a/cpu/mpc85xx/cpu.c b/cpu/mpc85xx/cpu.c index 0ac004db95..4aac599e12 100644 --- a/cpu/mpc85xx/cpu.c +++ b/cpu/mpc85xx/cpu.c @@ -30,6 +30,8 @@ #include #include +DECLARE_GLOBAL_DATA_PTR; + struct cpu_type { char name[15]; u32 soc_ver; @@ -201,11 +203,7 @@ int do_reset (cmd_tbl_t *cmdtp, bd_t *bd, int flag, int argc, char *argv[]) */ unsigned long get_tbclk (void) { - - sys_info_t sys_info; - - get_sys_info(&sys_info); - return ((sys_info.freqSystemBus + 7L) / 8L); + return (gd->bus_clk + 4UL)/8UL; }