blob: 82262da26293b79bcc56a3260bfa760c74111a4e [file] [log] [blame]
Tom Rini10e47792018-05-06 17:58:06 -04001// SPDX-License-Identifier: GPL-2.0
Jon Loeliger84640c92008-02-18 14:01:56 -06002/*
Kumar Gala3cdbd002011-01-04 17:07:54 -06003 * Copyright 2008, 2011 Freescale Semiconductor, Inc.
Jon Loeliger84640c92008-02-18 14:01:56 -06004 */
5
6#include <common.h>
Masahiro Yamada75f82d02018-03-05 01:20:11 +09007#include <linux/libfdt.h>
Jon Loeliger84640c92008-02-18 14:01:56 -06008#include <fdt_support.h>
Kumar Gala56d150e2009-03-31 23:02:38 -05009#include <asm/mp.h>
Becky Bruced1cb6cb2008-11-03 15:44:01 -060010
Poonam Aggrwal4ca72ae2009-09-02 19:40:36 +053011extern void ft_fixup_num_cores(void *blob);
Kumar Gala3cdbd002011-01-04 17:07:54 -060012extern void ft_srio_setup(void *blob);
Poonam Aggrwal4ca72ae2009-09-02 19:40:36 +053013
Jon Loeliger84640c92008-02-18 14:01:56 -060014void ft_cpu_setup(void *blob, bd_t *bd)
15{
Kumar Gala56d150e2009-03-31 23:02:38 -050016#ifdef CONFIG_MP
Becky Bruced1cb6cb2008-11-03 15:44:01 -060017 int off;
York Suna28496f2012-10-08 07:44:25 +000018 u32 bootpg = determine_mp_bootpg(NULL);
Becky Bruced1cb6cb2008-11-03 15:44:01 -060019#endif
20
Jon Loeliger84640c92008-02-18 14:01:56 -060021 do_fixup_by_prop_u32(blob, "device_type", "cpu", 4,
22 "timebase-frequency", bd->bi_busfreq / 4, 1);
23 do_fixup_by_prop_u32(blob, "device_type", "cpu", 4,
24 "bus-frequency", bd->bi_busfreq, 1);
25 do_fixup_by_prop_u32(blob, "device_type", "cpu", 4,
26 "clock-frequency", bd->bi_intfreq, 1);
27 do_fixup_by_prop_u32(blob, "device_type", "soc", 4,
28 "bus-frequency", bd->bi_busfreq, 1);
29
30 fdt_fixup_memory(blob, (u64)bd->bi_memstart, (u64)bd->bi_memsize);
31
Jean-Christophe PLAGNIOL-VILLARD03836942008-10-16 15:01:15 +020032#ifdef CONFIG_SYS_NS16550
Jon Loeliger84640c92008-02-18 14:01:56 -060033 do_fixup_by_compat_u32(blob, "ns16550",
Jean-Christophe PLAGNIOL-VILLARD03836942008-10-16 15:01:15 +020034 "clock-frequency", CONFIG_SYS_NS16550_CLK, 1);
Jon Loeliger84640c92008-02-18 14:01:56 -060035#endif
Becky Bruced1cb6cb2008-11-03 15:44:01 -060036
Kumar Gala56d150e2009-03-31 23:02:38 -050037#ifdef CONFIG_MP
Becky Bruced1cb6cb2008-11-03 15:44:01 -060038 /* Reserve the boot page so OSes dont use it */
39 off = fdt_add_mem_rsv(blob, bootpg, (u64)4096);
40 if (off < 0)
41 printf("%s: %s\n", __FUNCTION__, fdt_strerror(off));
Kumar Gala819a4792010-06-09 22:33:53 -050042
Poonam Aggrwal4ca72ae2009-09-02 19:40:36 +053043 ft_fixup_num_cores(blob);
Kumar Gala819a4792010-06-09 22:33:53 -050044#endif
Kumar Gala3cdbd002011-01-04 17:07:54 -060045
46#ifdef CONFIG_SYS_SRIO
47 ft_srio_setup(blob);
48#endif
Jon Loeliger84640c92008-02-18 14:01:56 -060049}