blob: 02c4d0529ce30dbbd3494bac860d1ae5412c3714 [file] [log] [blame]
Kim Phillips5b8bc602007-12-20 14:09:22 -06001/*
2 * Copyright 2007 Freescale Semiconductor, Inc.
3 *
4 * (C) Copyright 2000
5 * Wolfgang Denk, DENX Software Engineering, wd@denx.de.
6 *
7 * See file CREDITS for list of people who contributed to this
8 * project.
9 *
10 * This program is free software; you can redistribute it and/or
11 * modify it under the terms of the GNU General Public License as
12 * published by the Free Software Foundation; either version 2 of
13 * the License, or (at your option) any later version.
14 *
15 * This program is distributed in the hope that it will be useful,
16 * but WITHOUT ANY WARRANTY; without even the implied warranty of
17 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
18 * GNU General Public License for more details.
19 *
20 * You should have received a copy of the GNU General Public License
21 * along with this program; if not, write to the Free Software
22 * Foundation, Inc., 59 Temple Place, Suite 330, Boston,
23 * MA 02111-1307 USA
24 */
25
26#include <common.h>
Kim Phillips5b8bc602007-12-20 14:09:22 -060027#include <libfdt.h>
28#include <fdt_support.h>
29
Kumar Gala69018ce2008-01-17 08:25:45 -060030extern void ft_qe_setup(void *blob);
31
Kim Phillips5b8bc602007-12-20 14:09:22 -060032DECLARE_GLOBAL_DATA_PTR;
33
34void ft_cpu_setup(void *blob, bd_t *bd)
35{
36#if defined(CONFIG_HAS_ETH0) || defined(CONFIG_HAS_ETH1) ||\
37 defined(CONFIG_HAS_ETH2) || defined(CONFIG_HAS_ETH3)
38 fdt_fixup_ethernet(blob, bd);
39#endif
40
41 do_fixup_by_prop_u32(blob, "device_type", "cpu", 4,
42 "timebase-frequency", (bd->bi_busfreq / 4), 1);
43 do_fixup_by_prop_u32(blob, "device_type", "cpu", 4,
44 "bus-frequency", bd->bi_busfreq, 1);
45 do_fixup_by_prop_u32(blob, "device_type", "cpu", 4,
46 "clock-frequency", gd->core_clk, 1);
47 do_fixup_by_prop_u32(blob, "device_type", "soc", 4,
48 "bus-frequency", bd->bi_busfreq, 1);
Anton Vorontsov7fa9cbb2008-03-24 20:47:09 +030049 do_fixup_by_compat_u32(blob, "fsl,soc",
50 "bus-frequency", bd->bi_busfreq, 1);
51 do_fixup_by_compat_u32(blob, "fsl,soc",
52 "clock-frequency", bd->bi_busfreq, 1);
53 do_fixup_by_compat_u32(blob, "fsl,immr",
54 "bus-frequency", bd->bi_busfreq, 1);
55 do_fixup_by_compat_u32(blob, "fsl,immr",
56 "clock-frequency", bd->bi_busfreq, 1);
Kim Phillips5b8bc602007-12-20 14:09:22 -060057#ifdef CONFIG_QE
Kumar Gala69018ce2008-01-17 08:25:45 -060058 ft_qe_setup(blob);
Kim Phillips5b8bc602007-12-20 14:09:22 -060059#endif
60
61#ifdef CFG_NS16550
62 do_fixup_by_compat_u32(blob, "ns16550",
63 "clock-frequency", bd->bi_busfreq, 1);
64#endif
65
Kim Phillips5b8bc602007-12-20 14:09:22 -060066 fdt_fixup_memory(blob, (u64)bd->bi_memstart, (u64)bd->bi_memsize);
67}