From: Scott Wood Date: Thu, 2 Apr 2009 21:10:36 +0000 (-0500) Subject: mpc8260: Fill in brg's clock-frequency in device tree. X-Git-Tag: v2009.06-rc1~54 X-Git-Url: https://git.sur5r.net/?a=commitdiff_plain;h=3a671fc06ae1d9e8eba76600372317c75ae0eb3e;p=u-boot mpc8260: Fill in brg's clock-frequency in device tree. Signed-off-by: Scott Wood --- diff --git a/cpu/mpc8260/cpu.c b/cpu/mpc8260/cpu.c index 1b034cd574..d4622ca0cd 100644 --- a/cpu/mpc8260/cpu.c +++ b/cpu/mpc8260/cpu.c @@ -311,6 +311,9 @@ void ft_cpu_setup (void *blob, bd_t *bd) fdt_fixup_ethernet(blob); #endif + do_fixup_by_compat_u32(blob, "fsl,cpm2-brg", + "clock-frequency", bd->bi_brgfreq, 1); + do_fixup_by_path_u32(blob, cpu_path, "bus-frequency", bd->bi_busfreq, 1); do_fixup_by_path_u32(blob, cpu_path, "timebase-frequency", OF_TBCLK, 1); do_fixup_by_path_u32(blob, cpu_path, "clock-frequency", bd->bi_intfreq, 1);