Jon Loeliger | 84640c9 | 2008-02-18 14:01:56 -0600 | [diff] [blame] | 1 | /* |
Kumar Gala | 3cdbd00 | 2011-01-04 17:07:54 -0600 | [diff] [blame] | 2 | * Copyright 2008, 2011 Freescale Semiconductor, Inc. |
Jon Loeliger | 84640c9 | 2008-02-18 14:01:56 -0600 | [diff] [blame] | 3 | * |
Tom Rini | e237880 | 2016-01-14 22:05:13 -0500 | [diff] [blame] | 4 | * SPDX-License-Identifier: GPL-2.0 |
Jon Loeliger | 84640c9 | 2008-02-18 14:01:56 -0600 | [diff] [blame] | 5 | */ |
| 6 | |
| 7 | #include <common.h> |
| 8 | #include <libfdt.h> |
| 9 | #include <fdt_support.h> |
Kumar Gala | 56d150e | 2009-03-31 23:02:38 -0500 | [diff] [blame] | 10 | #include <asm/mp.h> |
Becky Bruce | d1cb6cb | 2008-11-03 15:44:01 -0600 | [diff] [blame] | 11 | |
| 12 | DECLARE_GLOBAL_DATA_PTR; |
Jon Loeliger | 84640c9 | 2008-02-18 14:01:56 -0600 | [diff] [blame] | 13 | |
Poonam Aggrwal | 4ca72ae | 2009-09-02 19:40:36 +0530 | [diff] [blame] | 14 | extern void ft_fixup_num_cores(void *blob); |
Kumar Gala | 3cdbd00 | 2011-01-04 17:07:54 -0600 | [diff] [blame] | 15 | extern void ft_srio_setup(void *blob); |
Poonam Aggrwal | 4ca72ae | 2009-09-02 19:40:36 +0530 | [diff] [blame] | 16 | |
Jon Loeliger | 84640c9 | 2008-02-18 14:01:56 -0600 | [diff] [blame] | 17 | void ft_cpu_setup(void *blob, bd_t *bd) |
| 18 | { |
Kumar Gala | 56d150e | 2009-03-31 23:02:38 -0500 | [diff] [blame] | 19 | #ifdef CONFIG_MP |
Becky Bruce | d1cb6cb | 2008-11-03 15:44:01 -0600 | [diff] [blame] | 20 | int off; |
York Sun | a28496f | 2012-10-08 07:44:25 +0000 | [diff] [blame] | 21 | u32 bootpg = determine_mp_bootpg(NULL); |
Becky Bruce | d1cb6cb | 2008-11-03 15:44:01 -0600 | [diff] [blame] | 22 | #endif |
| 23 | |
Jon Loeliger | 84640c9 | 2008-02-18 14:01:56 -0600 | [diff] [blame] | 24 | do_fixup_by_prop_u32(blob, "device_type", "cpu", 4, |
| 25 | "timebase-frequency", bd->bi_busfreq / 4, 1); |
| 26 | do_fixup_by_prop_u32(blob, "device_type", "cpu", 4, |
| 27 | "bus-frequency", bd->bi_busfreq, 1); |
| 28 | do_fixup_by_prop_u32(blob, "device_type", "cpu", 4, |
| 29 | "clock-frequency", bd->bi_intfreq, 1); |
| 30 | do_fixup_by_prop_u32(blob, "device_type", "soc", 4, |
| 31 | "bus-frequency", bd->bi_busfreq, 1); |
| 32 | |
Trent Piepho | bc424c9 | 2008-12-03 15:16:38 -0800 | [diff] [blame] | 33 | #if defined(CONFIG_MPC8641) |
| 34 | do_fixup_by_compat_u32(blob, "fsl,mpc8641-localbus", |
Simon Glass | a8b5739 | 2012-12-13 20:48:48 +0000 | [diff] [blame] | 35 | "bus-frequency", gd->arch.lbc_clk, 1); |
Trent Piepho | bc424c9 | 2008-12-03 15:16:38 -0800 | [diff] [blame] | 36 | #endif |
| 37 | do_fixup_by_compat_u32(blob, "fsl,elbc", |
Simon Glass | a8b5739 | 2012-12-13 20:48:48 +0000 | [diff] [blame] | 38 | "bus-frequency", gd->arch.lbc_clk, 1); |
Trent Piepho | bc424c9 | 2008-12-03 15:16:38 -0800 | [diff] [blame] | 39 | |
Jon Loeliger | 84640c9 | 2008-02-18 14:01:56 -0600 | [diff] [blame] | 40 | fdt_fixup_memory(blob, (u64)bd->bi_memstart, (u64)bd->bi_memsize); |
| 41 | |
| 42 | #if defined(CONFIG_HAS_ETH0) || defined(CONFIG_HAS_ETH1) \ |
| 43 | || defined(CONFIG_HAS_ETH2) || defined(CONFIG_HAS_ETH3) |
Kumar Gala | fabda92 | 2008-08-19 15:41:18 -0500 | [diff] [blame] | 44 | fdt_fixup_ethernet(blob); |
Jon Loeliger | 84640c9 | 2008-02-18 14:01:56 -0600 | [diff] [blame] | 45 | #endif |
| 46 | |
Jean-Christophe PLAGNIOL-VILLARD | 0383694 | 2008-10-16 15:01:15 +0200 | [diff] [blame] | 47 | #ifdef CONFIG_SYS_NS16550 |
Jon Loeliger | 84640c9 | 2008-02-18 14:01:56 -0600 | [diff] [blame] | 48 | do_fixup_by_compat_u32(blob, "ns16550", |
Jean-Christophe PLAGNIOL-VILLARD | 0383694 | 2008-10-16 15:01:15 +0200 | [diff] [blame] | 49 | "clock-frequency", CONFIG_SYS_NS16550_CLK, 1); |
Jon Loeliger | 84640c9 | 2008-02-18 14:01:56 -0600 | [diff] [blame] | 50 | #endif |
Becky Bruce | d1cb6cb | 2008-11-03 15:44:01 -0600 | [diff] [blame] | 51 | |
Kumar Gala | 56d150e | 2009-03-31 23:02:38 -0500 | [diff] [blame] | 52 | #ifdef CONFIG_MP |
Becky Bruce | d1cb6cb | 2008-11-03 15:44:01 -0600 | [diff] [blame] | 53 | /* Reserve the boot page so OSes dont use it */ |
| 54 | off = fdt_add_mem_rsv(blob, bootpg, (u64)4096); |
| 55 | if (off < 0) |
| 56 | printf("%s: %s\n", __FUNCTION__, fdt_strerror(off)); |
Kumar Gala | 819a479 | 2010-06-09 22:33:53 -0500 | [diff] [blame] | 57 | |
Poonam Aggrwal | 4ca72ae | 2009-09-02 19:40:36 +0530 | [diff] [blame] | 58 | ft_fixup_num_cores(blob); |
Kumar Gala | 819a479 | 2010-06-09 22:33:53 -0500 | [diff] [blame] | 59 | #endif |
Kumar Gala | 3cdbd00 | 2011-01-04 17:07:54 -0600 | [diff] [blame] | 60 | |
| 61 | #ifdef CONFIG_SYS_SRIO |
| 62 | ft_srio_setup(blob); |
| 63 | #endif |
Jon Loeliger | 84640c9 | 2008-02-18 14:01:56 -0600 | [diff] [blame] | 64 | } |