From: Esben Haabendal Date: Wed, 18 Jun 2008 09:03:57 +0000 (+0200) Subject: mpc8260: add fdt_fixup_ethernet support X-Git-Tag: v1.3.4-rc1~90^2~14 X-Git-Url: https://git.sur5r.net/?a=commitdiff_plain;h=ee4ae38342142237ca85913f88ee570c1eb5ca7c;p=u-boot mpc8260: add fdt_fixup_ethernet support Add support for updating mac-address and local-mac-address in fdt for all MPC8260 targets. Signed-off-by: Esben Haabendal --- diff --git a/cpu/mpc8260/cpu.c b/cpu/mpc8260/cpu.c index 414759e74c..4d5d141ea2 100644 --- a/cpu/mpc8260/cpu.c +++ b/cpu/mpc8260/cpu.c @@ -305,6 +305,11 @@ void ft_cpu_setup (void *blob, bd_t *bd) { char * cpu_path = "/cpus/" OF_CPU; +#if defined(CONFIG_HAS_ETH0) || defined(CONFIG_HAS_ETH1) ||\ + defined(CONFIG_HAS_ETH2) || defined(CONFIG_HAS_ETH3) + fdt_fixup_ethernet(blob, bd); +#endif + 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);