York Sun | 56cc3db | 2014-09-08 12:20:00 -0700 | [diff] [blame] | 1 | /* |
Mingkai Hu | 0e58b51 | 2015-10-26 19:47:50 +0800 | [diff] [blame] | 2 | * Copyright 2014-2015 Freescale Semiconductor, Inc. |
York Sun | 56cc3db | 2014-09-08 12:20:00 -0700 | [diff] [blame] | 3 | * |
| 4 | * SPDX-License-Identifier: GPL-2.0+ |
| 5 | */ |
| 6 | |
| 7 | #include <common.h> |
| 8 | #include <libfdt.h> |
| 9 | #include <fdt_support.h> |
Mingkai Hu | 0e58b51 | 2015-10-26 19:47:50 +0800 | [diff] [blame] | 10 | #include <phy.h> |
| 11 | #ifdef CONFIG_FSL_LSCH3 |
| 12 | #include <asm/arch/fdt.h> |
| 13 | #endif |
Yangbo Lu | d0e295d | 2015-03-20 19:28:31 -0700 | [diff] [blame] | 14 | #ifdef CONFIG_FSL_ESDHC |
| 15 | #include <fsl_esdhc.h> |
| 16 | #endif |
Qianyu Gong | 4026f66 | 2016-02-18 13:02:02 +0800 | [diff] [blame] | 17 | #ifdef CONFIG_SYS_DPAA_FMAN |
| 18 | #include <fsl_fman.h> |
| 19 | #endif |
Mingkai Hu | 0e58b51 | 2015-10-26 19:47:50 +0800 | [diff] [blame] | 20 | #ifdef CONFIG_MP |
| 21 | #include <asm/arch/mp.h> |
| 22 | #endif |
York Sun | 56cc3db | 2014-09-08 12:20:00 -0700 | [diff] [blame] | 23 | |
Shaohui Xie | 0464326 | 2015-10-26 19:47:54 +0800 | [diff] [blame] | 24 | int fdt_fixup_phy_connection(void *blob, int offset, phy_interface_t phyc) |
| 25 | { |
| 26 | return fdt_setprop_string(blob, offset, "phy-connection-type", |
| 27 | phy_string_for_interface(phyc)); |
| 28 | } |
| 29 | |
York Sun | 56cc3db | 2014-09-08 12:20:00 -0700 | [diff] [blame] | 30 | #ifdef CONFIG_MP |
| 31 | void ft_fixup_cpu(void *blob) |
| 32 | { |
| 33 | int off; |
| 34 | __maybe_unused u64 spin_tbl_addr = (u64)get_spin_tbl_addr(); |
| 35 | fdt32_t *reg; |
| 36 | int addr_cells; |
Arnab Basu | 0cb1942 | 2015-01-06 13:18:41 -0800 | [diff] [blame] | 37 | u64 val, core_id; |
York Sun | 56cc3db | 2014-09-08 12:20:00 -0700 | [diff] [blame] | 38 | size_t *boot_code_size = &(__secondary_boot_code_size); |
| 39 | |
| 40 | off = fdt_path_offset(blob, "/cpus"); |
| 41 | if (off < 0) { |
| 42 | puts("couldn't find /cpus node\n"); |
| 43 | return; |
| 44 | } |
| 45 | of_bus_default_count_cells(blob, off, &addr_cells, NULL); |
| 46 | |
| 47 | off = fdt_node_offset_by_prop_value(blob, -1, "device_type", "cpu", 4); |
| 48 | while (off != -FDT_ERR_NOTFOUND) { |
| 49 | reg = (fdt32_t *)fdt_getprop(blob, off, "reg", 0); |
| 50 | if (reg) { |
Alison Wang | a978fc1 | 2015-09-01 10:47:27 +0800 | [diff] [blame] | 51 | core_id = of_read_number(reg, addr_cells); |
Arnab Basu | 0cb1942 | 2015-01-06 13:18:41 -0800 | [diff] [blame] | 52 | if (core_id == 0 || (is_core_online(core_id))) { |
| 53 | val = spin_tbl_addr; |
| 54 | val += id_to_core(core_id) * |
| 55 | SPIN_TABLE_ELEM_SIZE; |
| 56 | val = cpu_to_fdt64(val); |
| 57 | fdt_setprop_string(blob, off, "enable-method", |
| 58 | "spin-table"); |
| 59 | fdt_setprop(blob, off, "cpu-release-addr", |
| 60 | &val, sizeof(val)); |
| 61 | } else { |
| 62 | debug("skipping offline core\n"); |
| 63 | } |
York Sun | 56cc3db | 2014-09-08 12:20:00 -0700 | [diff] [blame] | 64 | } else { |
| 65 | puts("Warning: found cpu node without reg property\n"); |
| 66 | } |
| 67 | off = fdt_node_offset_by_prop_value(blob, off, "device_type", |
| 68 | "cpu", 4); |
| 69 | } |
| 70 | |
| 71 | fdt_add_mem_rsv(blob, (uintptr_t)&secondary_boot_code, |
| 72 | *boot_code_size); |
| 73 | } |
| 74 | #endif |
| 75 | |
| 76 | void ft_cpu_setup(void *blob, bd_t *bd) |
| 77 | { |
| 78 | #ifdef CONFIG_MP |
| 79 | ft_fixup_cpu(blob); |
| 80 | #endif |
Bhupesh Sharma | c771040 | 2015-01-06 13:18:44 -0800 | [diff] [blame] | 81 | |
| 82 | #ifdef CONFIG_SYS_NS16550 |
Scott Wood | 3e7fd6f | 2015-03-20 19:28:14 -0700 | [diff] [blame] | 83 | do_fixup_by_compat_u32(blob, "fsl,ns16550", |
Bhupesh Sharma | c771040 | 2015-01-06 13:18:44 -0800 | [diff] [blame] | 84 | "clock-frequency", CONFIG_SYS_NS16550_CLK, 1); |
| 85 | #endif |
Yangbo Lu | d0e295d | 2015-03-20 19:28:31 -0700 | [diff] [blame] | 86 | |
Prabhakar Kushwaha | 53d1cdc | 2015-12-24 17:25:06 +0530 | [diff] [blame] | 87 | do_fixup_by_compat_u32(blob, "fixed-clock", |
| 88 | "clock-frequency", CONFIG_SYS_CLK_FREQ, 1); |
| 89 | |
Prabhakar Kushwaha | 940a316 | 2015-05-28 14:53:59 +0530 | [diff] [blame] | 90 | #ifdef CONFIG_PCI |
| 91 | ft_pci_setup(blob, bd); |
| 92 | #endif |
| 93 | |
Mingkai Hu | 0e58b51 | 2015-10-26 19:47:50 +0800 | [diff] [blame] | 94 | #ifdef CONFIG_FSL_ESDHC |
Yangbo Lu | d0e295d | 2015-03-20 19:28:31 -0700 | [diff] [blame] | 95 | fdt_fixup_esdhc(blob, bd); |
| 96 | #endif |
Stuart Yoder | eaea504 | 2015-07-02 11:29:04 +0530 | [diff] [blame] | 97 | |
Qianyu Gong | 4026f66 | 2016-02-18 13:02:02 +0800 | [diff] [blame] | 98 | #ifdef CONFIG_SYS_DPAA_FMAN |
| 99 | fdt_fixup_fman_firmware(blob); |
| 100 | #endif |
York Sun | 56cc3db | 2014-09-08 12:20:00 -0700 | [diff] [blame] | 101 | } |