Tom Rini | 10e4779 | 2018-05-06 17:58:06 -0400 | [diff] [blame] | 1 | // SPDX-License-Identifier: GPL-2.0 |
Jon Loeliger | 84640c9 | 2008-02-18 14:01:56 -0600 | [diff] [blame] | 2 | /* |
Kumar Gala | 3cdbd00 | 2011-01-04 17:07:54 -0600 | [diff] [blame] | 3 | * Copyright 2008, 2011 Freescale Semiconductor, Inc. |
Jon Loeliger | 84640c9 | 2008-02-18 14:01:56 -0600 | [diff] [blame] | 4 | */ |
| 5 | |
| 6 | #include <common.h> |
Masahiro Yamada | 75f82d0 | 2018-03-05 01:20:11 +0900 | [diff] [blame] | 7 | #include <linux/libfdt.h> |
Jon Loeliger | 84640c9 | 2008-02-18 14:01:56 -0600 | [diff] [blame] | 8 | #include <fdt_support.h> |
Kumar Gala | 56d150e | 2009-03-31 23:02:38 -0500 | [diff] [blame] | 9 | #include <asm/mp.h> |
Becky Bruce | d1cb6cb | 2008-11-03 15:44:01 -0600 | [diff] [blame] | 10 | |
Poonam Aggrwal | 4ca72ae | 2009-09-02 19:40:36 +0530 | [diff] [blame] | 11 | extern void ft_fixup_num_cores(void *blob); |
Kumar Gala | 3cdbd00 | 2011-01-04 17:07:54 -0600 | [diff] [blame] | 12 | extern void ft_srio_setup(void *blob); |
Poonam Aggrwal | 4ca72ae | 2009-09-02 19:40:36 +0530 | [diff] [blame] | 13 | |
Jon Loeliger | 84640c9 | 2008-02-18 14:01:56 -0600 | [diff] [blame] | 14 | void ft_cpu_setup(void *blob, bd_t *bd) |
| 15 | { |
Kumar Gala | 56d150e | 2009-03-31 23:02:38 -0500 | [diff] [blame] | 16 | #ifdef CONFIG_MP |
Becky Bruce | d1cb6cb | 2008-11-03 15:44:01 -0600 | [diff] [blame] | 17 | int off; |
York Sun | a28496f | 2012-10-08 07:44:25 +0000 | [diff] [blame] | 18 | u32 bootpg = determine_mp_bootpg(NULL); |
Becky Bruce | d1cb6cb | 2008-11-03 15:44:01 -0600 | [diff] [blame] | 19 | #endif |
| 20 | |
Jon Loeliger | 84640c9 | 2008-02-18 14:01:56 -0600 | [diff] [blame] | 21 | 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-VILLARD | 0383694 | 2008-10-16 15:01:15 +0200 | [diff] [blame] | 32 | #ifdef CONFIG_SYS_NS16550 |
Jon Loeliger | 84640c9 | 2008-02-18 14:01:56 -0600 | [diff] [blame] | 33 | do_fixup_by_compat_u32(blob, "ns16550", |
Jean-Christophe PLAGNIOL-VILLARD | 0383694 | 2008-10-16 15:01:15 +0200 | [diff] [blame] | 34 | "clock-frequency", CONFIG_SYS_NS16550_CLK, 1); |
Jon Loeliger | 84640c9 | 2008-02-18 14:01:56 -0600 | [diff] [blame] | 35 | #endif |
Becky Bruce | d1cb6cb | 2008-11-03 15:44:01 -0600 | [diff] [blame] | 36 | |
Kumar Gala | 56d150e | 2009-03-31 23:02:38 -0500 | [diff] [blame] | 37 | #ifdef CONFIG_MP |
Becky Bruce | d1cb6cb | 2008-11-03 15:44:01 -0600 | [diff] [blame] | 38 | /* 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 Gala | 819a479 | 2010-06-09 22:33:53 -0500 | [diff] [blame] | 42 | |
Poonam Aggrwal | 4ca72ae | 2009-09-02 19:40:36 +0530 | [diff] [blame] | 43 | ft_fixup_num_cores(blob); |
Kumar Gala | 819a479 | 2010-06-09 22:33:53 -0500 | [diff] [blame] | 44 | #endif |
Kumar Gala | 3cdbd00 | 2011-01-04 17:07:54 -0600 | [diff] [blame] | 45 | |
| 46 | #ifdef CONFIG_SYS_SRIO |
| 47 | ft_srio_setup(blob); |
| 48 | #endif |
Jon Loeliger | 84640c9 | 2008-02-18 14:01:56 -0600 | [diff] [blame] | 49 | } |