diff options
author | Wolfgang Denk <wd@denx.de> | 2008-06-11 22:30:47 +0200 |
---|---|---|
committer | Wolfgang Denk <wd@denx.de> | 2008-06-11 22:30:47 +0200 |
commit | cdeb62e20d94005f2e80604fda03b498c3a6f704 (patch) | |
tree | 3a94ce9524267f7d9e3f689e9cf27f22f756065b /cpu | |
parent | 1859e42fbf996e0e883cdb9829ef6d260bf4cdd6 (diff) | |
parent | ae9e97fa96f643c8ba2b666b06a026cc8717eb00 (diff) | |
download | u-boot-imx-cdeb62e20d94005f2e80604fda03b498c3a6f704.zip u-boot-imx-cdeb62e20d94005f2e80604fda03b498c3a6f704.tar.gz u-boot-imx-cdeb62e20d94005f2e80604fda03b498c3a6f704.tar.bz2 |
Merge branch 'master' of git://www.denx.de/git/u-boot-fdt
Diffstat (limited to 'cpu')
-rw-r--r-- | cpu/74xx_7xx/cpu.c | 35 |
1 files changed, 13 insertions, 22 deletions
diff --git a/cpu/74xx_7xx/cpu.c b/cpu/74xx_7xx/cpu.c index 9c8998b..ea43c9a 100644 --- a/cpu/74xx_7xx/cpu.c +++ b/cpu/74xx_7xx/cpu.c @@ -44,8 +44,9 @@ #include <74xx_7xx.h> #include <asm/cache.h> -#if defined(CONFIG_OF_FLAT_TREE) -#include <ft_build.h> +#if defined(CONFIG_OF_LIBFDT) +#include <libfdt.h> +#include <fdt_support.h> #endif #ifdef CONFIG_AMIGAONEG3SE @@ -301,29 +302,19 @@ watchdog_reset(void) /* ------------------------------------------------------------------------- */ -#ifdef CONFIG_OF_FLAT_TREE -void -ft_cpu_setup (void *blob, bd_t *bd) +#ifdef CONFIG_OF_LIBFDT +void ft_cpu_setup(void *blob, bd_t *bd) { - u32 *p; - ulong clock; - int len; - - clock = bd->bi_busfreq; + do_fixup_by_prop_u32(blob, "device_type", "cpu", 4, + "timebase-frequency", bd->bi_busfreq / 4, 1); + do_fixup_by_prop_u32(blob, "device_type", "cpu", 4, + "bus-frequency", bd->bi_busfreq, 1); + do_fixup_by_prop_u32(blob, "device_type", "cpu", 4, + "clock-frequency", bd->bi_intfreq, 1); - p = ft_get_prop (blob, "/cpus/" OF_CPU "/bus-frequency", &len); - if (p != NULL) - *p = cpu_to_be32 (clock); + fdt_fixup_memory(blob, (u64)bd->bi_memstart, (u64)bd->bi_memsize); -#if defined(CONFIG_TSI108_ETH) - p = ft_get_prop (blob, "/" OF_TSI "/ethernet@6200/address", &len); - memcpy (p, bd->bi_enetaddr, 6); -#endif - -#if defined(CONFIG_HAS_ETH1) - p = ft_get_prop (blob, "/" OF_TSI "/ethernet@6600/address", &len); - memcpy (p, bd->bi_enet1addr, 6); -#endif + fdt_fixup_ethernet(blob, bd); } #endif /* ------------------------------------------------------------------------- */ |