Kumar Gala | 81a21e9 | 2007-11-29 00:15:30 -0600 | [diff] [blame] | 1 | /* |
Kumar Gala | 8975d7a | 2010-12-30 12:09:53 -0600 | [diff] [blame] | 2 | * Copyright 2007-2011 Freescale Semiconductor, Inc. |
Kumar Gala | 81a21e9 | 2007-11-29 00:15:30 -0600 | [diff] [blame] | 3 | * |
| 4 | * (C) Copyright 2000 |
| 5 | * Wolfgang Denk, DENX Software Engineering, wd@denx.de. |
| 6 | * |
Wolfgang Denk | d79de1d | 2013-07-08 09:37:19 +0200 | [diff] [blame] | 7 | * SPDX-License-Identifier: GPL-2.0+ |
Kumar Gala | 81a21e9 | 2007-11-29 00:15:30 -0600 | [diff] [blame] | 8 | */ |
| 9 | |
| 10 | #include <common.h> |
| 11 | #include <libfdt.h> |
| 12 | #include <fdt_support.h> |
Kumar Gala | ec68f93 | 2008-05-29 11:22:06 -0500 | [diff] [blame] | 13 | #include <asm/processor.h> |
Vivek Mahajan | 780e42b | 2009-09-22 12:48:27 +0530 | [diff] [blame] | 14 | #include <linux/ctype.h> |
Kumar Gala | 76eef3e | 2009-03-19 03:40:08 -0500 | [diff] [blame] | 15 | #include <asm/io.h> |
Zhao Qiang | 81136a1 | 2015-08-28 10:31:50 +0800 | [diff] [blame] | 16 | #include <asm/fsl_fdt.h> |
Kumar Gala | 38449a4 | 2009-09-10 03:02:13 -0500 | [diff] [blame] | 17 | #include <asm/fsl_portals.h> |
Sandeep Singh | 4fb16a1 | 2014-06-05 18:49:57 +0530 | [diff] [blame] | 18 | #include <hwconfig.h> |
Dipen Dudhat | 9387773 | 2009-09-02 11:25:08 +0530 | [diff] [blame] | 19 | #ifdef CONFIG_FSL_ESDHC |
| 20 | #include <fsl_esdhc.h> |
| 21 | #endif |
Qianyu Gong | 8868a64 | 2016-02-18 13:02:00 +0800 | [diff] [blame] | 22 | #ifdef CONFIG_SYS_DPAA_FMAN |
| 23 | #include <fsl_fman.h> |
| 24 | #endif |
Kumar Gala | 81a21e9 | 2007-11-29 00:15:30 -0600 | [diff] [blame] | 25 | |
Trent Piepho | bc424c9 | 2008-12-03 15:16:38 -0800 | [diff] [blame] | 26 | DECLARE_GLOBAL_DATA_PTR; |
| 27 | |
Kumar Gala | 1f16448 | 2008-01-17 08:25:45 -0600 | [diff] [blame] | 28 | extern void ft_qe_setup(void *blob); |
Poonam Aggrwal | 4ca72ae | 2009-09-02 19:40:36 +0530 | [diff] [blame] | 29 | extern void ft_fixup_num_cores(void *blob); |
Kumar Gala | 8975d7a | 2010-12-30 12:09:53 -0600 | [diff] [blame] | 30 | extern void ft_srio_setup(void *blob); |
Kim Phillips | 868e346 | 2008-06-16 15:55:53 -0500 | [diff] [blame] | 31 | |
Kumar Gala | 36d6b3f | 2008-01-17 16:48:33 -0600 | [diff] [blame] | 32 | #ifdef CONFIG_MP |
| 33 | #include "mp.h" |
Kumar Gala | 36d6b3f | 2008-01-17 16:48:33 -0600 | [diff] [blame] | 34 | |
| 35 | void ft_fixup_cpu(void *blob, u64 memory_limit) |
| 36 | { |
| 37 | int off; |
York Sun | 2394a0f | 2012-10-08 07:44:30 +0000 | [diff] [blame] | 38 | phys_addr_t spin_tbl_addr = get_spin_phys_addr(); |
York Sun | a28496f | 2012-10-08 07:44:25 +0000 | [diff] [blame] | 39 | u32 bootpg = determine_mp_bootpg(NULL); |
Kumar Gala | e1064b3 | 2009-03-31 23:11:05 -0500 | [diff] [blame] | 40 | u32 id = get_my_id(); |
Aaron Sierra | ec8863b | 2010-09-30 12:22:16 -0500 | [diff] [blame] | 41 | const char *enable_method; |
Sandeep Singh | 4fb16a1 | 2014-06-05 18:49:57 +0530 | [diff] [blame] | 42 | #if defined(T1040_TDM_QUIRK_CCSR_BASE) |
| 43 | int ret; |
| 44 | int tdm_hwconfig_enabled = 0; |
| 45 | char buffer[HWCONFIG_BUFFER_SIZE] = {0}; |
| 46 | #endif |
Kumar Gala | 36d6b3f | 2008-01-17 16:48:33 -0600 | [diff] [blame] | 47 | |
| 48 | off = fdt_node_offset_by_prop_value(blob, -1, "device_type", "cpu", 4); |
| 49 | while (off != -FDT_ERR_NOTFOUND) { |
| 50 | u32 *reg = (u32 *)fdt_getprop(blob, off, "reg", 0); |
| 51 | |
| 52 | if (reg) { |
York Sun | 2adf2ce | 2012-08-17 08:20:26 +0000 | [diff] [blame] | 53 | u32 phys_cpu_id = thread_to_core(*reg); |
| 54 | u64 val = phys_cpu_id * SIZE_BOOT_ENTRY + spin_tbl_addr; |
| 55 | val = cpu_to_fdt64(val); |
Kumar Gala | 36d6b3f | 2008-01-17 16:48:33 -0600 | [diff] [blame] | 56 | if (*reg == id) { |
Matthew McClintock | 51a1193 | 2010-08-19 13:57:48 -0500 | [diff] [blame] | 57 | fdt_setprop_string(blob, off, "status", |
| 58 | "okay"); |
Kumar Gala | 36d6b3f | 2008-01-17 16:48:33 -0600 | [diff] [blame] | 59 | } else { |
Kumar Gala | 36d6b3f | 2008-01-17 16:48:33 -0600 | [diff] [blame] | 60 | fdt_setprop_string(blob, off, "status", |
| 61 | "disabled"); |
Kumar Gala | 36d6b3f | 2008-01-17 16:48:33 -0600 | [diff] [blame] | 62 | } |
Aaron Sierra | ec8863b | 2010-09-30 12:22:16 -0500 | [diff] [blame] | 63 | |
| 64 | if (hold_cores_in_reset(0)) { |
| 65 | #ifdef CONFIG_FSL_CORENET |
| 66 | /* Cores held in reset, use BRR to release */ |
| 67 | enable_method = "fsl,brr-holdoff"; |
| 68 | #else |
| 69 | /* Cores held in reset, use EEBPCR to release */ |
| 70 | enable_method = "fsl,eebpcr-holdoff"; |
| 71 | #endif |
| 72 | } else { |
| 73 | /* Cores out of reset and in a spin-loop */ |
| 74 | enable_method = "spin-table"; |
| 75 | |
| 76 | fdt_setprop(blob, off, "cpu-release-addr", |
| 77 | &val, sizeof(val)); |
| 78 | } |
| 79 | |
Matthew McClintock | 51a1193 | 2010-08-19 13:57:48 -0500 | [diff] [blame] | 80 | fdt_setprop_string(blob, off, "enable-method", |
Aaron Sierra | ec8863b | 2010-09-30 12:22:16 -0500 | [diff] [blame] | 81 | enable_method); |
Kumar Gala | 36d6b3f | 2008-01-17 16:48:33 -0600 | [diff] [blame] | 82 | } else { |
| 83 | printf ("cpu NULL\n"); |
| 84 | } |
| 85 | off = fdt_node_offset_by_prop_value(blob, off, |
| 86 | "device_type", "cpu", 4); |
| 87 | } |
| 88 | |
Sandeep Singh | 4fb16a1 | 2014-06-05 18:49:57 +0530 | [diff] [blame] | 89 | #if defined(T1040_TDM_QUIRK_CCSR_BASE) |
| 90 | #define CONFIG_MEM_HOLE_16M 0x1000000 |
| 91 | /* |
| 92 | * Extract hwconfig from environment. |
| 93 | * Search for tdm entry in hwconfig. |
| 94 | */ |
| 95 | ret = getenv_f("hwconfig", buffer, sizeof(buffer)); |
| 96 | if (ret > 0) |
| 97 | tdm_hwconfig_enabled = hwconfig_f("tdm", buffer); |
| 98 | |
| 99 | /* Reserve the memory hole created by TDM LAW, so OSes dont use it */ |
| 100 | if (tdm_hwconfig_enabled) { |
| 101 | off = fdt_add_mem_rsv(blob, T1040_TDM_QUIRK_CCSR_BASE, |
| 102 | CONFIG_MEM_HOLE_16M); |
| 103 | if (off < 0) |
| 104 | printf("Failed to reserve memory for tdm: %s\n", |
| 105 | fdt_strerror(off)); |
| 106 | } |
| 107 | #endif |
| 108 | |
Kumar Gala | 36d6b3f | 2008-01-17 16:48:33 -0600 | [diff] [blame] | 109 | /* Reserve the boot page so OSes dont use it */ |
| 110 | if ((u64)bootpg < memory_limit) { |
| 111 | off = fdt_add_mem_rsv(blob, bootpg, (u64)4096); |
| 112 | if (off < 0) |
York Sun | 2394a0f | 2012-10-08 07:44:30 +0000 | [diff] [blame] | 113 | printf("Failed to reserve memory for bootpg: %s\n", |
| 114 | fdt_strerror(off)); |
| 115 | } |
York Sun | 33d57c3 | 2012-12-14 06:21:58 +0000 | [diff] [blame] | 116 | |
| 117 | #ifndef CONFIG_MPC8xxx_DISABLE_BPTR |
| 118 | /* |
| 119 | * Reserve the default boot page so OSes dont use it. |
| 120 | * The default boot page is always mapped to bootpg above using |
| 121 | * boot page translation. |
| 122 | */ |
| 123 | if (0xfffff000ull < memory_limit) { |
| 124 | off = fdt_add_mem_rsv(blob, 0xfffff000ull, (u64)4096); |
| 125 | if (off < 0) { |
| 126 | printf("Failed to reserve memory for 0xfffff000: %s\n", |
| 127 | fdt_strerror(off)); |
| 128 | } |
| 129 | } |
| 130 | #endif |
| 131 | |
York Sun | 2394a0f | 2012-10-08 07:44:30 +0000 | [diff] [blame] | 132 | /* Reserve spin table page */ |
| 133 | if (spin_tbl_addr < memory_limit) { |
| 134 | off = fdt_add_mem_rsv(blob, |
| 135 | (spin_tbl_addr & ~0xffful), 4096); |
| 136 | if (off < 0) |
| 137 | printf("Failed to reserve memory for spin table: %s\n", |
| 138 | fdt_strerror(off)); |
Kumar Gala | 36d6b3f | 2008-01-17 16:48:33 -0600 | [diff] [blame] | 139 | } |
Tang Yuantian | 25ccd5d | 2014-07-23 17:27:53 +0800 | [diff] [blame] | 140 | #ifdef CONFIG_DEEP_SLEEP |
| 141 | #ifdef CONFIG_SPL_MMC_BOOT |
| 142 | off = fdt_add_mem_rsv(blob, CONFIG_SYS_MMC_U_BOOT_START, |
| 143 | CONFIG_SYS_MMC_U_BOOT_SIZE); |
| 144 | if (off < 0) |
| 145 | printf("Failed to reserve memory for SD deep sleep: %s\n", |
| 146 | fdt_strerror(off)); |
| 147 | #elif defined(CONFIG_SPL_SPI_BOOT) |
| 148 | off = fdt_add_mem_rsv(blob, CONFIG_SYS_SPI_FLASH_U_BOOT_START, |
| 149 | CONFIG_SYS_SPI_FLASH_U_BOOT_SIZE); |
| 150 | if (off < 0) |
| 151 | printf("Failed to reserve memory for SPI deep sleep: %s\n", |
| 152 | fdt_strerror(off)); |
| 153 | #endif |
| 154 | #endif |
Kumar Gala | 36d6b3f | 2008-01-17 16:48:33 -0600 | [diff] [blame] | 155 | } |
| 156 | #endif |
Kumar Gala | 1f16448 | 2008-01-17 08:25:45 -0600 | [diff] [blame] | 157 | |
Kumar Gala | 76eef3e | 2009-03-19 03:40:08 -0500 | [diff] [blame] | 158 | #ifdef CONFIG_SYS_FSL_CPC |
| 159 | static inline void ft_fixup_l3cache(void *blob, int off) |
| 160 | { |
| 161 | u32 line_size, num_ways, size, num_sets; |
| 162 | cpc_corenet_t *cpc = (void *)CONFIG_SYS_FSL_CPC_ADDR; |
| 163 | u32 cfg0 = in_be32(&cpc->cpccfg0); |
| 164 | |
| 165 | size = CPC_CFG0_SZ_K(cfg0) * 1024 * CONFIG_SYS_NUM_CPC; |
| 166 | num_ways = CPC_CFG0_NUM_WAYS(cfg0); |
| 167 | line_size = CPC_CFG0_LINE_SZ(cfg0); |
| 168 | num_sets = size / (line_size * num_ways); |
| 169 | |
| 170 | fdt_setprop(blob, off, "cache-unified", NULL, 0); |
| 171 | fdt_setprop_cell(blob, off, "cache-block-size", line_size); |
| 172 | fdt_setprop_cell(blob, off, "cache-size", size); |
| 173 | fdt_setprop_cell(blob, off, "cache-sets", num_sets); |
| 174 | fdt_setprop_cell(blob, off, "cache-level", 3); |
| 175 | #ifdef CONFIG_SYS_CACHE_STASHING |
| 176 | fdt_setprop_cell(blob, off, "cache-stash-id", 1); |
| 177 | #endif |
| 178 | } |
| 179 | #else |
Kumar Gala | e56f2c5 | 2009-03-19 09:16:10 -0500 | [diff] [blame] | 180 | #define ft_fixup_l3cache(x, y) |
Kumar Gala | 76eef3e | 2009-03-19 03:40:08 -0500 | [diff] [blame] | 181 | #endif |
Kumar Gala | e56f2c5 | 2009-03-19 09:16:10 -0500 | [diff] [blame] | 182 | |
| 183 | #if defined(CONFIG_L2_CACHE) |
Kumar Gala | ec68f93 | 2008-05-29 11:22:06 -0500 | [diff] [blame] | 184 | /* return size in kilobytes */ |
| 185 | static inline u32 l2cache_size(void) |
| 186 | { |
Jean-Christophe PLAGNIOL-VILLARD | 0383694 | 2008-10-16 15:01:15 +0200 | [diff] [blame] | 187 | volatile ccsr_l2cache_t *l2cache = (void *)CONFIG_SYS_MPC85xx_L2_ADDR; |
Kumar Gala | ec68f93 | 2008-05-29 11:22:06 -0500 | [diff] [blame] | 188 | volatile u32 l2siz_field = (l2cache->l2ctl >> 28) & 0x3; |
| 189 | u32 ver = SVR_SOC_VER(get_svr()); |
| 190 | |
| 191 | switch (l2siz_field) { |
| 192 | case 0x0: |
| 193 | break; |
| 194 | case 0x1: |
| 195 | if (ver == SVR_8540 || ver == SVR_8560 || |
York Sun | 8cb6548 | 2012-07-06 17:10:33 -0500 | [diff] [blame] | 196 | ver == SVR_8541 || ver == SVR_8555) |
Kumar Gala | ec68f93 | 2008-05-29 11:22:06 -0500 | [diff] [blame] | 197 | return 128; |
| 198 | else |
| 199 | return 256; |
| 200 | break; |
| 201 | case 0x2: |
| 202 | if (ver == SVR_8540 || ver == SVR_8560 || |
York Sun | 8cb6548 | 2012-07-06 17:10:33 -0500 | [diff] [blame] | 203 | ver == SVR_8541 || ver == SVR_8555) |
Kumar Gala | ec68f93 | 2008-05-29 11:22:06 -0500 | [diff] [blame] | 204 | return 256; |
| 205 | else |
| 206 | return 512; |
| 207 | break; |
| 208 | case 0x3: |
| 209 | return 1024; |
| 210 | break; |
| 211 | } |
| 212 | |
| 213 | return 0; |
| 214 | } |
| 215 | |
| 216 | static inline void ft_fixup_l2cache(void *blob) |
| 217 | { |
| 218 | int len, off; |
| 219 | u32 *ph; |
| 220 | struct cpu_type *cpu = identify_cpu(SVR_SOC_VER(get_svr())); |
Kumar Gala | ec68f93 | 2008-05-29 11:22:06 -0500 | [diff] [blame] | 221 | |
| 222 | const u32 line_size = 32; |
| 223 | const u32 num_ways = 8; |
| 224 | const u32 size = l2cache_size() * 1024; |
| 225 | const u32 num_sets = size / (line_size * num_ways); |
| 226 | |
| 227 | off = fdt_node_offset_by_prop_value(blob, -1, "device_type", "cpu", 4); |
| 228 | if (off < 0) { |
| 229 | debug("no cpu node fount\n"); |
| 230 | return; |
| 231 | } |
| 232 | |
| 233 | ph = (u32 *)fdt_getprop(blob, off, "next-level-cache", 0); |
| 234 | |
| 235 | if (ph == NULL) { |
| 236 | debug("no next-level-cache property\n"); |
| 237 | return ; |
| 238 | } |
| 239 | |
| 240 | off = fdt_node_offset_by_phandle(blob, *ph); |
| 241 | if (off < 0) { |
| 242 | printf("%s: %s\n", __func__, fdt_strerror(off)); |
| 243 | return ; |
| 244 | } |
| 245 | |
| 246 | if (cpu) { |
Timur Tabi | 3369d29 | 2011-04-29 18:08:44 -0500 | [diff] [blame] | 247 | char buf[40]; |
Vivek Mahajan | 780e42b | 2009-09-22 12:48:27 +0530 | [diff] [blame] | 248 | |
Timur Tabi | 3369d29 | 2011-04-29 18:08:44 -0500 | [diff] [blame] | 249 | if (isdigit(cpu->name[0])) { |
| 250 | /* MPCxxxx, where xxxx == 4-digit number */ |
| 251 | len = sprintf(buf, "fsl,mpc%s-l2-cache-controller", |
| 252 | cpu->name) + 1; |
| 253 | } else { |
| 254 | /* Pxxxx or Txxxx, where xxxx == 4-digit number */ |
| 255 | len = sprintf(buf, "fsl,%c%s-l2-cache-controller", |
| 256 | tolower(cpu->name[0]), cpu->name + 1) + 1; |
| 257 | } |
| 258 | |
| 259 | /* |
| 260 | * append "cache" after the NULL character that the previous |
| 261 | * sprintf wrote. This is how a device tree stores multiple |
| 262 | * strings in a property. |
| 263 | */ |
| 264 | len += sprintf(buf + len, "cache") + 1; |
| 265 | |
| 266 | fdt_setprop(blob, off, "compatible", buf, len); |
Kumar Gala | ec68f93 | 2008-05-29 11:22:06 -0500 | [diff] [blame] | 267 | } |
| 268 | fdt_setprop(blob, off, "cache-unified", NULL, 0); |
| 269 | fdt_setprop_cell(blob, off, "cache-block-size", line_size); |
Kumar Gala | ec68f93 | 2008-05-29 11:22:06 -0500 | [diff] [blame] | 270 | fdt_setprop_cell(blob, off, "cache-size", size); |
| 271 | fdt_setprop_cell(blob, off, "cache-sets", num_sets); |
| 272 | fdt_setprop_cell(blob, off, "cache-level", 2); |
Kumar Gala | e56f2c5 | 2009-03-19 09:16:10 -0500 | [diff] [blame] | 273 | |
| 274 | /* we dont bother w/L3 since no platform of this type has one */ |
| 275 | } |
York Sun | c3d87b1 | 2012-10-08 07:44:08 +0000 | [diff] [blame] | 276 | #elif defined(CONFIG_BACKSIDE_L2_CACHE) || \ |
| 277 | defined(CONFIG_SYS_FSL_QORIQ_CHASSIS2) |
Kumar Gala | e56f2c5 | 2009-03-19 09:16:10 -0500 | [diff] [blame] | 278 | static inline void ft_fixup_l2cache(void *blob) |
| 279 | { |
| 280 | int off, l2_off, l3_off = -1; |
| 281 | u32 *ph; |
York Sun | c3d87b1 | 2012-10-08 07:44:08 +0000 | [diff] [blame] | 282 | #ifdef CONFIG_BACKSIDE_L2_CACHE |
Kumar Gala | e56f2c5 | 2009-03-19 09:16:10 -0500 | [diff] [blame] | 283 | u32 l2cfg0 = mfspr(SPRN_L2CFG0); |
York Sun | c3d87b1 | 2012-10-08 07:44:08 +0000 | [diff] [blame] | 284 | #else |
| 285 | struct ccsr_cluster_l2 *l2cache = |
| 286 | (struct ccsr_cluster_l2 __iomem *)(CONFIG_SYS_FSL_CLUSTER_1_L2); |
| 287 | u32 l2cfg0 = in_be32(&l2cache->l2cfg0); |
| 288 | #endif |
Kumar Gala | e56f2c5 | 2009-03-19 09:16:10 -0500 | [diff] [blame] | 289 | u32 size, line_size, num_ways, num_sets; |
Kumar Gala | e08c6d8 | 2011-07-21 00:20:21 -0500 | [diff] [blame] | 290 | int has_l2 = 1; |
| 291 | |
| 292 | /* P2040/P2040E has no L2, so dont set any L2 props */ |
York Sun | 8cb6548 | 2012-07-06 17:10:33 -0500 | [diff] [blame] | 293 | if (SVR_SOC_VER(get_svr()) == SVR_P2040) |
Kumar Gala | e08c6d8 | 2011-07-21 00:20:21 -0500 | [diff] [blame] | 294 | has_l2 = 0; |
Kumar Gala | e56f2c5 | 2009-03-19 09:16:10 -0500 | [diff] [blame] | 295 | |
| 296 | size = (l2cfg0 & 0x3fff) * 64 * 1024; |
| 297 | num_ways = ((l2cfg0 >> 14) & 0x1f) + 1; |
| 298 | line_size = (((l2cfg0 >> 23) & 0x3) + 1) * 32; |
| 299 | num_sets = size / (line_size * num_ways); |
| 300 | |
| 301 | off = fdt_node_offset_by_prop_value(blob, -1, "device_type", "cpu", 4); |
| 302 | |
| 303 | while (off != -FDT_ERR_NOTFOUND) { |
| 304 | ph = (u32 *)fdt_getprop(blob, off, "next-level-cache", 0); |
| 305 | |
| 306 | if (ph == NULL) { |
| 307 | debug("no next-level-cache property\n"); |
| 308 | goto next; |
| 309 | } |
| 310 | |
| 311 | l2_off = fdt_node_offset_by_phandle(blob, *ph); |
| 312 | if (l2_off < 0) { |
| 313 | printf("%s: %s\n", __func__, fdt_strerror(off)); |
| 314 | goto next; |
| 315 | } |
| 316 | |
Kumar Gala | e08c6d8 | 2011-07-21 00:20:21 -0500 | [diff] [blame] | 317 | if (has_l2) { |
Kumar Gala | 8d2817c | 2009-03-19 02:53:01 -0500 | [diff] [blame] | 318 | #ifdef CONFIG_SYS_CACHE_STASHING |
Kumar Gala | 8d2817c | 2009-03-19 02:53:01 -0500 | [diff] [blame] | 319 | u32 *reg = (u32 *)fdt_getprop(blob, off, "reg", 0); |
Prabhakar Kushwaha | cc3c5b6 | 2013-08-29 13:10:38 +0530 | [diff] [blame] | 320 | #if defined(CONFIG_SYS_FSL_QORIQ_CHASSIS2) && defined(CONFIG_E6500) |
York Sun | c3d87b1 | 2012-10-08 07:44:08 +0000 | [diff] [blame] | 321 | /* Only initialize every eighth thread */ |
Scott Wood | a77398e | 2014-03-26 20:30:56 -0500 | [diff] [blame] | 322 | if (reg && !((*reg) % 8)) { |
| 323 | fdt_setprop_cell(blob, l2_off, "cache-stash-id", |
| 324 | (*reg / 4) + 32 + 1); |
| 325 | } |
York Sun | c3d87b1 | 2012-10-08 07:44:08 +0000 | [diff] [blame] | 326 | #else |
Scott Wood | a77398e | 2014-03-26 20:30:56 -0500 | [diff] [blame] | 327 | if (reg) { |
Kumar Gala | 8d2817c | 2009-03-19 02:53:01 -0500 | [diff] [blame] | 328 | fdt_setprop_cell(blob, l2_off, "cache-stash-id", |
Scott Wood | a77398e | 2014-03-26 20:30:56 -0500 | [diff] [blame] | 329 | (*reg * 2) + 32 + 1); |
| 330 | } |
| 331 | #endif |
Kumar Gala | 8d2817c | 2009-03-19 02:53:01 -0500 | [diff] [blame] | 332 | #endif |
| 333 | |
Kumar Gala | e08c6d8 | 2011-07-21 00:20:21 -0500 | [diff] [blame] | 334 | fdt_setprop(blob, l2_off, "cache-unified", NULL, 0); |
| 335 | fdt_setprop_cell(blob, l2_off, "cache-block-size", |
| 336 | line_size); |
| 337 | fdt_setprop_cell(blob, l2_off, "cache-size", size); |
| 338 | fdt_setprop_cell(blob, l2_off, "cache-sets", num_sets); |
| 339 | fdt_setprop_cell(blob, l2_off, "cache-level", 2); |
| 340 | fdt_setprop(blob, l2_off, "compatible", "cache", 6); |
| 341 | } |
Kumar Gala | e56f2c5 | 2009-03-19 09:16:10 -0500 | [diff] [blame] | 342 | |
| 343 | if (l3_off < 0) { |
| 344 | ph = (u32 *)fdt_getprop(blob, l2_off, "next-level-cache", 0); |
| 345 | |
| 346 | if (ph == NULL) { |
| 347 | debug("no next-level-cache property\n"); |
| 348 | goto next; |
| 349 | } |
| 350 | l3_off = *ph; |
| 351 | } |
| 352 | next: |
| 353 | off = fdt_node_offset_by_prop_value(blob, off, |
| 354 | "device_type", "cpu", 4); |
| 355 | } |
| 356 | if (l3_off > 0) { |
| 357 | l3_off = fdt_node_offset_by_phandle(blob, l3_off); |
| 358 | if (l3_off < 0) { |
| 359 | printf("%s: %s\n", __func__, fdt_strerror(off)); |
| 360 | return ; |
| 361 | } |
| 362 | ft_fixup_l3cache(blob, l3_off); |
| 363 | } |
Kumar Gala | ec68f93 | 2008-05-29 11:22:06 -0500 | [diff] [blame] | 364 | } |
| 365 | #else |
| 366 | #define ft_fixup_l2cache(x) |
| 367 | #endif |
| 368 | |
| 369 | static inline void ft_fixup_cache(void *blob) |
| 370 | { |
| 371 | int off; |
| 372 | |
| 373 | off = fdt_node_offset_by_prop_value(blob, -1, "device_type", "cpu", 4); |
| 374 | |
| 375 | while (off != -FDT_ERR_NOTFOUND) { |
| 376 | u32 l1cfg0 = mfspr(SPRN_L1CFG0); |
| 377 | u32 l1cfg1 = mfspr(SPRN_L1CFG1); |
| 378 | u32 isize, iline_size, inum_sets, inum_ways; |
| 379 | u32 dsize, dline_size, dnum_sets, dnum_ways; |
| 380 | |
| 381 | /* d-side config */ |
| 382 | dsize = (l1cfg0 & 0x7ff) * 1024; |
| 383 | dnum_ways = ((l1cfg0 >> 11) & 0xff) + 1; |
| 384 | dline_size = (((l1cfg0 >> 23) & 0x3) + 1) * 32; |
| 385 | dnum_sets = dsize / (dline_size * dnum_ways); |
| 386 | |
| 387 | fdt_setprop_cell(blob, off, "d-cache-block-size", dline_size); |
Kumar Gala | ec68f93 | 2008-05-29 11:22:06 -0500 | [diff] [blame] | 388 | fdt_setprop_cell(blob, off, "d-cache-size", dsize); |
| 389 | fdt_setprop_cell(blob, off, "d-cache-sets", dnum_sets); |
| 390 | |
Kumar Gala | 8d2817c | 2009-03-19 02:53:01 -0500 | [diff] [blame] | 391 | #ifdef CONFIG_SYS_CACHE_STASHING |
| 392 | { |
| 393 | u32 *reg = (u32 *)fdt_getprop(blob, off, "reg", 0); |
| 394 | if (reg) |
| 395 | fdt_setprop_cell(blob, off, "cache-stash-id", |
| 396 | (*reg * 2) + 32 + 0); |
| 397 | } |
| 398 | #endif |
| 399 | |
Kumar Gala | ec68f93 | 2008-05-29 11:22:06 -0500 | [diff] [blame] | 400 | /* i-side config */ |
| 401 | isize = (l1cfg1 & 0x7ff) * 1024; |
| 402 | inum_ways = ((l1cfg1 >> 11) & 0xff) + 1; |
| 403 | iline_size = (((l1cfg1 >> 23) & 0x3) + 1) * 32; |
| 404 | inum_sets = isize / (iline_size * inum_ways); |
| 405 | |
| 406 | fdt_setprop_cell(blob, off, "i-cache-block-size", iline_size); |
Kumar Gala | ec68f93 | 2008-05-29 11:22:06 -0500 | [diff] [blame] | 407 | fdt_setprop_cell(blob, off, "i-cache-size", isize); |
| 408 | fdt_setprop_cell(blob, off, "i-cache-sets", inum_sets); |
| 409 | |
| 410 | off = fdt_node_offset_by_prop_value(blob, off, |
| 411 | "device_type", "cpu", 4); |
| 412 | } |
| 413 | |
| 414 | ft_fixup_l2cache(blob); |
| 415 | } |
| 416 | |
| 417 | |
Andy Fleming | e336605 | 2008-10-07 08:09:50 -0500 | [diff] [blame] | 418 | void fdt_add_enet_stashing(void *fdt) |
| 419 | { |
| 420 | do_fixup_by_compat(fdt, "gianfar", "bd-stash", NULL, 0, 1); |
| 421 | |
| 422 | do_fixup_by_compat_u32(fdt, "gianfar", "rx-stash-len", 96, 1); |
| 423 | |
| 424 | do_fixup_by_compat_u32(fdt, "gianfar", "rx-stash-idx", 0, 1); |
Pankaj Chauhan | d829fb6 | 2011-01-25 14:44:57 +0530 | [diff] [blame] | 425 | do_fixup_by_compat(fdt, "fsl,etsec2", "bd-stash", NULL, 0, 1); |
| 426 | do_fixup_by_compat_u32(fdt, "fsl,etsec2", "rx-stash-len", 96, 1); |
| 427 | do_fixup_by_compat_u32(fdt, "fsl,etsec2", "rx-stash-idx", 0, 1); |
Andy Fleming | e336605 | 2008-10-07 08:09:50 -0500 | [diff] [blame] | 428 | } |
| 429 | |
Kumar Gala | b915e0d | 2009-03-19 02:46:28 -0500 | [diff] [blame] | 430 | #if defined(CONFIG_SYS_DPAA_FMAN) || defined(CONFIG_SYS_DPAA_PME) |
Kumar Gala | 302a65c | 2011-07-31 12:55:39 -0500 | [diff] [blame] | 431 | #ifdef CONFIG_SYS_DPAA_FMAN |
Kumar Gala | 3f35bb5 | 2010-07-10 06:38:16 -0500 | [diff] [blame] | 432 | static void ft_fixup_clks(void *blob, const char *compat, u32 offset, |
| 433 | unsigned long freq) |
Kumar Gala | b915e0d | 2009-03-19 02:46:28 -0500 | [diff] [blame] | 434 | { |
Kumar Gala | 3f35bb5 | 2010-07-10 06:38:16 -0500 | [diff] [blame] | 435 | phys_addr_t phys = offset + CONFIG_SYS_CCSRBAR_PHYS; |
| 436 | int off = fdt_node_offset_by_compat_reg(blob, compat, phys); |
Kumar Gala | b915e0d | 2009-03-19 02:46:28 -0500 | [diff] [blame] | 437 | |
| 438 | if (off >= 0) { |
| 439 | off = fdt_setprop_cell(blob, off, "clock-frequency", freq); |
| 440 | if (off > 0) |
| 441 | printf("WARNING enable to set clock-frequency " |
Kumar Gala | 3f35bb5 | 2010-07-10 06:38:16 -0500 | [diff] [blame] | 442 | "for %s: %s\n", compat, fdt_strerror(off)); |
Kumar Gala | b915e0d | 2009-03-19 02:46:28 -0500 | [diff] [blame] | 443 | } |
| 444 | } |
Kumar Gala | 302a65c | 2011-07-31 12:55:39 -0500 | [diff] [blame] | 445 | #endif |
Kumar Gala | b915e0d | 2009-03-19 02:46:28 -0500 | [diff] [blame] | 446 | |
| 447 | static void ft_fixup_dpaa_clks(void *blob) |
| 448 | { |
| 449 | sys_info_t sysinfo; |
| 450 | |
| 451 | get_sys_info(&sysinfo); |
Kumar Gala | 302a65c | 2011-07-31 12:55:39 -0500 | [diff] [blame] | 452 | #ifdef CONFIG_SYS_DPAA_FMAN |
Kumar Gala | 3f35bb5 | 2010-07-10 06:38:16 -0500 | [diff] [blame] | 453 | ft_fixup_clks(blob, "fsl,fman", CONFIG_SYS_FSL_FM1_OFFSET, |
Prabhakar Kushwaha | d169808 | 2013-08-16 14:52:26 +0530 | [diff] [blame] | 454 | sysinfo.freq_fman[0]); |
Kumar Gala | b915e0d | 2009-03-19 02:46:28 -0500 | [diff] [blame] | 455 | |
| 456 | #if (CONFIG_SYS_NUM_FMAN == 2) |
Kumar Gala | 3f35bb5 | 2010-07-10 06:38:16 -0500 | [diff] [blame] | 457 | ft_fixup_clks(blob, "fsl,fman", CONFIG_SYS_FSL_FM2_OFFSET, |
Prabhakar Kushwaha | d169808 | 2013-08-16 14:52:26 +0530 | [diff] [blame] | 458 | sysinfo.freq_fman[1]); |
Kumar Gala | b915e0d | 2009-03-19 02:46:28 -0500 | [diff] [blame] | 459 | #endif |
Kumar Gala | 302a65c | 2011-07-31 12:55:39 -0500 | [diff] [blame] | 460 | #endif |
Kumar Gala | b915e0d | 2009-03-19 02:46:28 -0500 | [diff] [blame] | 461 | |
Haiying Wang | 09d0aa9 | 2012-10-11 07:13:39 +0000 | [diff] [blame] | 462 | #ifdef CONFIG_SYS_DPAA_QBMAN |
| 463 | do_fixup_by_compat_u32(blob, "fsl,qman", |
Prabhakar Kushwaha | d169808 | 2013-08-16 14:52:26 +0530 | [diff] [blame] | 464 | "clock-frequency", sysinfo.freq_qman, 1); |
Haiying Wang | 09d0aa9 | 2012-10-11 07:13:39 +0000 | [diff] [blame] | 465 | #endif |
| 466 | |
Kumar Gala | b915e0d | 2009-03-19 02:46:28 -0500 | [diff] [blame] | 467 | #ifdef CONFIG_SYS_DPAA_PME |
Kumar Gala | 3f35bb5 | 2010-07-10 06:38:16 -0500 | [diff] [blame] | 468 | do_fixup_by_compat_u32(blob, "fsl,pme", |
Prabhakar Kushwaha | d169808 | 2013-08-16 14:52:26 +0530 | [diff] [blame] | 469 | "clock-frequency", sysinfo.freq_pme, 1); |
Kumar Gala | b915e0d | 2009-03-19 02:46:28 -0500 | [diff] [blame] | 470 | #endif |
| 471 | } |
| 472 | #else |
| 473 | #define ft_fixup_dpaa_clks(x) |
| 474 | #endif |
| 475 | |
Liu Yu | d555da1 | 2010-01-15 14:58:40 +0800 | [diff] [blame] | 476 | #ifdef CONFIG_QE |
| 477 | static void ft_fixup_qe_snum(void *blob) |
| 478 | { |
| 479 | unsigned int svr; |
| 480 | |
| 481 | svr = mfspr(SPRN_SVR); |
York Sun | 8cb6548 | 2012-07-06 17:10:33 -0500 | [diff] [blame] | 482 | if (SVR_SOC_VER(svr) == SVR_8569) { |
Liu Yu | d555da1 | 2010-01-15 14:58:40 +0800 | [diff] [blame] | 483 | if(IS_SVR_REV(svr, 1, 0)) |
| 484 | do_fixup_by_compat_u32(blob, "fsl,qe", |
| 485 | "fsl,qe-num-snums", 46, 1); |
| 486 | else |
| 487 | do_fixup_by_compat_u32(blob, "fsl,qe", |
| 488 | "fsl,qe-num-snums", 76, 1); |
| 489 | } |
| 490 | } |
| 491 | #endif |
| 492 | |
York Sun | 84be8a9 | 2016-11-18 11:24:40 -0800 | [diff] [blame] | 493 | #if defined(CONFIG_ARCH_P4080) |
Shengzhou Liu | 320c2d2 | 2011-10-14 16:26:06 +0800 | [diff] [blame] | 494 | static void fdt_fixup_usb(void *fdt) |
| 495 | { |
| 496 | ccsr_gur_t *gur = (void *)(CONFIG_SYS_MPC85xx_GUTS_ADDR); |
| 497 | u32 rcwsr11 = in_be32(&gur->rcwsr[11]); |
| 498 | int off; |
| 499 | |
| 500 | off = fdt_node_offset_by_compatible(fdt, -1, "fsl,mpc85xx-usb2-mph"); |
| 501 | if ((rcwsr11 & FSL_CORENET_RCWSR11_EC1) != |
| 502 | FSL_CORENET_RCWSR11_EC1_FM1_USB1) |
| 503 | fdt_status_disabled(fdt, off); |
| 504 | |
| 505 | off = fdt_node_offset_by_compatible(fdt, -1, "fsl,mpc85xx-usb2-dr"); |
| 506 | if ((rcwsr11 & FSL_CORENET_RCWSR11_EC2) != |
| 507 | FSL_CORENET_RCWSR11_EC2_USB2) |
| 508 | fdt_status_disabled(fdt, off); |
| 509 | } |
| 510 | #else |
| 511 | #define fdt_fixup_usb(x) |
| 512 | #endif |
| 513 | |
York Sun | 0fad326 | 2016-11-21 13:35:41 -0800 | [diff] [blame] | 514 | #if defined(CONFIG_ARCH_T2080) || defined(CONFIG_ARCH_T4240) || \ |
York Sun | c184503 | 2016-11-21 13:41:30 -0800 | [diff] [blame^] | 515 | defined(CONFIG_ARCH_T4160) |
Shengzhou Liu | 55d9f82 | 2014-05-19 15:08:14 +0800 | [diff] [blame] | 516 | void fdt_fixup_dma3(void *blob) |
| 517 | { |
| 518 | /* the 3rd DMA is not functional if SRIO2 is chosen */ |
| 519 | int nodeoff; |
| 520 | ccsr_gur_t __iomem *gur = (void *)(CONFIG_SYS_MPC85xx_GUTS_ADDR); |
| 521 | |
| 522 | #define CONFIG_SYS_ELO3_DMA3 (0xffe000000 + 0x102300) |
York Sun | e20c685 | 2016-11-21 12:54:19 -0800 | [diff] [blame] | 523 | #if defined(CONFIG_ARCH_T2080) |
Shengzhou Liu | 55d9f82 | 2014-05-19 15:08:14 +0800 | [diff] [blame] | 524 | u32 srds_prtcl_s2 = in_be32(&gur->rcwsr[4]) & |
| 525 | FSL_CORENET2_RCWSR4_SRDS2_PRTCL; |
| 526 | srds_prtcl_s2 >>= FSL_CORENET2_RCWSR4_SRDS2_PRTCL_SHIFT; |
| 527 | |
| 528 | switch (srds_prtcl_s2) { |
| 529 | case 0x29: |
| 530 | case 0x2d: |
| 531 | case 0x2e: |
York Sun | c184503 | 2016-11-21 13:41:30 -0800 | [diff] [blame^] | 532 | #elif defined(CONFIG_ARCH_T4240) || defined(CONFIG_ARCH_T4160) |
Shengzhou Liu | 55d9f82 | 2014-05-19 15:08:14 +0800 | [diff] [blame] | 533 | u32 srds_prtcl_s4 = in_be32(&gur->rcwsr[4]) & |
| 534 | FSL_CORENET2_RCWSR4_SRDS4_PRTCL; |
| 535 | srds_prtcl_s4 >>= FSL_CORENET2_RCWSR4_SRDS4_PRTCL_SHIFT; |
| 536 | |
| 537 | switch (srds_prtcl_s4) { |
| 538 | case 6: |
| 539 | case 8: |
| 540 | case 14: |
| 541 | case 16: |
| 542 | #endif |
| 543 | nodeoff = fdt_node_offset_by_compat_reg(blob, "fsl,elo3-dma", |
| 544 | CONFIG_SYS_ELO3_DMA3); |
| 545 | if (nodeoff > 0) |
| 546 | fdt_status_disabled(blob, nodeoff); |
| 547 | else |
| 548 | printf("WARNING: unable to disable dma3\n"); |
| 549 | break; |
| 550 | default: |
| 551 | break; |
| 552 | } |
| 553 | } |
| 554 | #else |
| 555 | #define fdt_fixup_dma3(x) |
| 556 | #endif |
| 557 | |
York Sun | a5b5d88 | 2016-11-18 13:11:12 -0800 | [diff] [blame] | 558 | #if defined(CONFIG_ARCH_T1040) |
Codrin Ciubotariu | 568623a | 2014-03-28 18:57:29 +0200 | [diff] [blame] | 559 | static void fdt_fixup_l2_switch(void *blob) |
| 560 | { |
| 561 | uchar l2swaddr[6]; |
| 562 | int node; |
| 563 | |
| 564 | /* The l2switch node from device-tree has |
| 565 | * compatible string "vitesse-9953" */ |
| 566 | node = fdt_node_offset_by_compatible(blob, -1, "vitesse-9953"); |
| 567 | if (node == -FDT_ERR_NOTFOUND) |
| 568 | /* no l2switch node has been found */ |
| 569 | return; |
| 570 | |
| 571 | /* Get MAC address for the l2switch from "l2switchaddr"*/ |
| 572 | if (!eth_getenv_enetaddr("l2switchaddr", l2swaddr)) { |
| 573 | printf("Warning: MAC address for l2switch not found\n"); |
| 574 | memset(l2swaddr, 0, sizeof(l2swaddr)); |
| 575 | } |
| 576 | |
| 577 | /* Add MAC address to l2switch node */ |
| 578 | fdt_setprop(blob, node, "local-mac-address", l2swaddr, |
| 579 | sizeof(l2swaddr)); |
| 580 | } |
| 581 | #else |
| 582 | #define fdt_fixup_l2_switch(x) |
| 583 | #endif |
| 584 | |
Kumar Gala | 81a21e9 | 2007-11-29 00:15:30 -0600 | [diff] [blame] | 585 | void ft_cpu_setup(void *blob, bd_t *bd) |
| 586 | { |
Haiying Wang | bb8aea7 | 2009-01-15 11:58:35 -0500 | [diff] [blame] | 587 | int off; |
| 588 | int val; |
Laurentiu TUDOR | 1e573e9 | 2013-10-23 15:20:45 +0300 | [diff] [blame] | 589 | int len; |
Haiying Wang | bb8aea7 | 2009-01-15 11:58:35 -0500 | [diff] [blame] | 590 | sys_info_t sysinfo; |
| 591 | |
Kim Phillips | 868e346 | 2008-06-16 15:55:53 -0500 | [diff] [blame] | 592 | /* delete crypto node if not on an E-processor */ |
| 593 | if (!IS_E_PROCESSOR(get_svr())) |
| 594 | fdt_fixup_crypto_node(blob, 0); |
Vakul Garg | 90a7f9f | 2013-01-23 22:52:31 +0000 | [diff] [blame] | 595 | #if CONFIG_SYS_FSL_SEC_COMPAT >= 4 |
| 596 | else { |
| 597 | ccsr_sec_t __iomem *sec; |
| 598 | |
| 599 | sec = (void __iomem *)CONFIG_SYS_FSL_SEC_ADDR; |
Ruchika Gupta | bb7143b | 2014-09-09 11:50:31 +0530 | [diff] [blame] | 600 | fdt_fixup_crypto_node(blob, sec_in32(&sec->secvid_ms)); |
Vakul Garg | 90a7f9f | 2013-01-23 22:52:31 +0000 | [diff] [blame] | 601 | } |
| 602 | #endif |
Kim Phillips | 868e346 | 2008-06-16 15:55:53 -0500 | [diff] [blame] | 603 | |
Kumar Gala | fabda92 | 2008-08-19 15:41:18 -0500 | [diff] [blame] | 604 | fdt_fixup_ethernet(blob); |
Andy Fleming | e336605 | 2008-10-07 08:09:50 -0500 | [diff] [blame] | 605 | |
| 606 | fdt_add_enet_stashing(blob); |
Kumar Gala | 81a21e9 | 2007-11-29 00:15:30 -0600 | [diff] [blame] | 607 | |
York Sun | 972cc40 | 2013-06-25 11:37:41 -0700 | [diff] [blame] | 608 | #ifndef CONFIG_FSL_TBCLK_EXTRA_DIV |
| 609 | #define CONFIG_FSL_TBCLK_EXTRA_DIV 1 |
| 610 | #endif |
Kumar Gala | 81a21e9 | 2007-11-29 00:15:30 -0600 | [diff] [blame] | 611 | do_fixup_by_prop_u32(blob, "device_type", "cpu", 4, |
York Sun | 972cc40 | 2013-06-25 11:37:41 -0700 | [diff] [blame] | 612 | "timebase-frequency", get_tbclk() / CONFIG_FSL_TBCLK_EXTRA_DIV, |
| 613 | 1); |
Kumar Gala | 81a21e9 | 2007-11-29 00:15:30 -0600 | [diff] [blame] | 614 | do_fixup_by_prop_u32(blob, "device_type", "cpu", 4, |
| 615 | "bus-frequency", bd->bi_busfreq, 1); |
Haiying Wang | bb8aea7 | 2009-01-15 11:58:35 -0500 | [diff] [blame] | 616 | get_sys_info(&sysinfo); |
| 617 | off = fdt_node_offset_by_prop_value(blob, -1, "device_type", "cpu", 4); |
| 618 | while (off != -FDT_ERR_NOTFOUND) { |
Laurentiu TUDOR | 1e573e9 | 2013-10-23 15:20:45 +0300 | [diff] [blame] | 619 | u32 *reg = (u32 *)fdt_getprop(blob, off, "reg", &len); |
| 620 | val = cpu_to_fdt32(sysinfo.freq_processor[(*reg) / (len / 4)]); |
Haiying Wang | bb8aea7 | 2009-01-15 11:58:35 -0500 | [diff] [blame] | 621 | fdt_setprop(blob, off, "clock-frequency", &val, 4); |
| 622 | off = fdt_node_offset_by_prop_value(blob, off, "device_type", |
| 623 | "cpu", 4); |
| 624 | } |
Kumar Gala | 81a21e9 | 2007-11-29 00:15:30 -0600 | [diff] [blame] | 625 | do_fixup_by_prop_u32(blob, "device_type", "soc", 4, |
| 626 | "bus-frequency", bd->bi_busfreq, 1); |
Trent Piepho | bc424c9 | 2008-12-03 15:16:38 -0800 | [diff] [blame] | 627 | |
Kumar Gala | 81a21e9 | 2007-11-29 00:15:30 -0600 | [diff] [blame] | 628 | #ifdef CONFIG_QE |
Kumar Gala | 1f16448 | 2008-01-17 08:25:45 -0600 | [diff] [blame] | 629 | ft_qe_setup(blob); |
Liu Yu | d555da1 | 2010-01-15 14:58:40 +0800 | [diff] [blame] | 630 | ft_fixup_qe_snum(blob); |
Kumar Gala | 81a21e9 | 2007-11-29 00:15:30 -0600 | [diff] [blame] | 631 | #endif |
| 632 | |
Qianyu Gong | 8868a64 | 2016-02-18 13:02:00 +0800 | [diff] [blame] | 633 | #ifdef CONFIG_SYS_DPAA_FMAN |
Timur Tabi | bb76366 | 2011-05-03 13:35:11 -0500 | [diff] [blame] | 634 | fdt_fixup_fman_firmware(blob); |
Qianyu Gong | 8868a64 | 2016-02-18 13:02:00 +0800 | [diff] [blame] | 635 | #endif |
Timur Tabi | bb76366 | 2011-05-03 13:35:11 -0500 | [diff] [blame] | 636 | |
Jean-Christophe PLAGNIOL-VILLARD | 0383694 | 2008-10-16 15:01:15 +0200 | [diff] [blame] | 637 | #ifdef CONFIG_SYS_NS16550 |
Kumar Gala | 81a21e9 | 2007-11-29 00:15:30 -0600 | [diff] [blame] | 638 | do_fixup_by_compat_u32(blob, "ns16550", |
Jean-Christophe PLAGNIOL-VILLARD | 0383694 | 2008-10-16 15:01:15 +0200 | [diff] [blame] | 639 | "clock-frequency", CONFIG_SYS_NS16550_CLK, 1); |
Kumar Gala | 81a21e9 | 2007-11-29 00:15:30 -0600 | [diff] [blame] | 640 | #endif |
| 641 | |
| 642 | #ifdef CONFIG_CPM2 |
| 643 | do_fixup_by_compat_u32(blob, "fsl,cpm2-scc-uart", |
Masahiro Yamada | 197c720 | 2014-04-04 20:09:58 +0900 | [diff] [blame] | 644 | "current-speed", gd->baudrate, 1); |
Kumar Gala | 81a21e9 | 2007-11-29 00:15:30 -0600 | [diff] [blame] | 645 | |
| 646 | do_fixup_by_compat_u32(blob, "fsl,cpm2-brg", |
| 647 | "clock-frequency", bd->bi_brgfreq, 1); |
| 648 | #endif |
| 649 | |
Kumar Gala | b7177d7 | 2010-07-10 06:55:41 -0500 | [diff] [blame] | 650 | #ifdef CONFIG_FSL_CORENET |
| 651 | do_fixup_by_compat_u32(blob, "fsl,qoriq-clockgen-1.0", |
| 652 | "clock-frequency", CONFIG_SYS_CLK_FREQ, 1); |
Andy Fleming | 7bd4b72 | 2013-06-17 15:10:28 -0500 | [diff] [blame] | 653 | do_fixup_by_compat_u32(blob, "fsl,qoriq-clockgen-2.0", |
Tang Yuantian | 337c47b | 2013-02-28 23:24:34 +0000 | [diff] [blame] | 654 | "clock-frequency", CONFIG_SYS_CLK_FREQ, 1); |
Dongsheng.wang@freescale.com | 109a8d3 | 2013-01-30 18:51:52 +0000 | [diff] [blame] | 655 | do_fixup_by_compat_u32(blob, "fsl,mpic", |
| 656 | "clock-frequency", get_bus_freq(0)/2, 1); |
| 657 | #else |
| 658 | do_fixup_by_compat_u32(blob, "fsl,mpic", |
| 659 | "clock-frequency", get_bus_freq(0), 1); |
Kumar Gala | b7177d7 | 2010-07-10 06:55:41 -0500 | [diff] [blame] | 660 | #endif |
| 661 | |
Kumar Gala | 81a21e9 | 2007-11-29 00:15:30 -0600 | [diff] [blame] | 662 | fdt_fixup_memory(blob, (u64)bd->bi_memstart, (u64)bd->bi_memsize); |
Kumar Gala | 36d6b3f | 2008-01-17 16:48:33 -0600 | [diff] [blame] | 663 | |
| 664 | #ifdef CONFIG_MP |
| 665 | ft_fixup_cpu(blob, (u64)bd->bi_memstart + (u64)bd->bi_memsize); |
Poonam Aggrwal | 4ca72ae | 2009-09-02 19:40:36 +0530 | [diff] [blame] | 666 | ft_fixup_num_cores(blob); |
Kumar Gala | 819a479 | 2010-06-09 22:33:53 -0500 | [diff] [blame] | 667 | #endif |
Kumar Gala | ec68f93 | 2008-05-29 11:22:06 -0500 | [diff] [blame] | 668 | |
| 669 | ft_fixup_cache(blob); |
Dipen Dudhat | 9387773 | 2009-09-02 11:25:08 +0530 | [diff] [blame] | 670 | |
| 671 | #if defined(CONFIG_FSL_ESDHC) |
| 672 | fdt_fixup_esdhc(blob, bd); |
| 673 | #endif |
Kumar Gala | b915e0d | 2009-03-19 02:46:28 -0500 | [diff] [blame] | 674 | |
| 675 | ft_fixup_dpaa_clks(blob); |
Kumar Gala | 38449a4 | 2009-09-10 03:02:13 -0500 | [diff] [blame] | 676 | |
| 677 | #if defined(CONFIG_SYS_BMAN_MEM_PHYS) |
| 678 | fdt_portal(blob, "fsl,bman-portal", "bman-portals", |
| 679 | (u64)CONFIG_SYS_BMAN_MEM_PHYS, |
| 680 | CONFIG_SYS_BMAN_MEM_SIZE); |
Haiying Wang | d38d4b2 | 2011-03-01 09:30:07 -0500 | [diff] [blame] | 681 | fdt_fixup_bportals(blob); |
Kumar Gala | 38449a4 | 2009-09-10 03:02:13 -0500 | [diff] [blame] | 682 | #endif |
| 683 | |
| 684 | #if defined(CONFIG_SYS_QMAN_MEM_PHYS) |
| 685 | fdt_portal(blob, "fsl,qman-portal", "qman-portals", |
| 686 | (u64)CONFIG_SYS_QMAN_MEM_PHYS, |
| 687 | CONFIG_SYS_QMAN_MEM_SIZE); |
| 688 | |
| 689 | fdt_fixup_qportals(blob); |
| 690 | #endif |
Kumar Gala | 8975d7a | 2010-12-30 12:09:53 -0600 | [diff] [blame] | 691 | |
| 692 | #ifdef CONFIG_SYS_SRIO |
| 693 | ft_srio_setup(blob); |
| 694 | #endif |
bhaskar upadhaya | 2c7ab3e | 2011-02-02 14:44:28 +0000 | [diff] [blame] | 695 | |
| 696 | /* |
| 697 | * system-clock = CCB clock/2 |
| 698 | * Here gd->bus_clk = CCB clock |
| 699 | * We are using the system clock as 1588 Timer reference |
| 700 | * clock source select |
| 701 | */ |
| 702 | do_fixup_by_compat_u32(blob, "fsl,gianfar-ptp-timer", |
| 703 | "timer-frequency", gd->bus_clk/2, 1); |
Bhaskar Upadhaya | b89130d | 2011-03-04 20:27:58 +0530 | [diff] [blame] | 704 | |
Jia Hongtao | f37569d | 2011-11-15 15:04:11 +0800 | [diff] [blame] | 705 | /* |
| 706 | * clock-freq should change to clock-frequency and |
| 707 | * flexcan-v1.0 should change to p1010-flexcan respectively |
| 708 | * in the future. |
| 709 | */ |
| 710 | do_fixup_by_compat_u32(blob, "fsl,flexcan-v1.0", |
| 711 | "clock_freq", gd->bus_clk/2, 1); |
| 712 | |
Bhaskar Upadhaya | b89130d | 2011-03-04 20:27:58 +0530 | [diff] [blame] | 713 | do_fixup_by_compat_u32(blob, "fsl,flexcan-v1.0", |
Jia Hongtao | f37569d | 2011-11-15 15:04:11 +0800 | [diff] [blame] | 714 | "clock-frequency", gd->bus_clk/2, 1); |
| 715 | |
| 716 | do_fixup_by_compat_u32(blob, "fsl,p1010-flexcan", |
| 717 | "clock-frequency", gd->bus_clk/2, 1); |
Shengzhou Liu | 320c2d2 | 2011-10-14 16:26:06 +0800 | [diff] [blame] | 718 | |
| 719 | fdt_fixup_usb(blob); |
Codrin Ciubotariu | 568623a | 2014-03-28 18:57:29 +0200 | [diff] [blame] | 720 | |
| 721 | fdt_fixup_l2_switch(blob); |
Shengzhou Liu | 55d9f82 | 2014-05-19 15:08:14 +0800 | [diff] [blame] | 722 | |
| 723 | fdt_fixup_dma3(blob); |
Kumar Gala | 81a21e9 | 2007-11-29 00:15:30 -0600 | [diff] [blame] | 724 | } |
Timur Tabi | 89e4870 | 2011-05-03 13:24:08 -0500 | [diff] [blame] | 725 | |
| 726 | /* |
| 727 | * For some CCSR devices, we only have the virtual address, not the physical |
| 728 | * address. This is because we map CCSR as a whole, so we typically don't need |
| 729 | * a macro for the physical address of any device within CCSR. In this case, |
| 730 | * we calculate the physical address of that device using it's the difference |
| 731 | * between the virtual address of the device and the virtual address of the |
| 732 | * beginning of CCSR. |
| 733 | */ |
| 734 | #define CCSR_VIRT_TO_PHYS(x) \ |
| 735 | (CONFIG_SYS_CCSRBAR_PHYS + ((x) - CONFIG_SYS_CCSRBAR)) |
| 736 | |
Timur Tabi | 186d7a5 | 2011-11-16 13:28:34 -0600 | [diff] [blame] | 737 | static void msg(const char *name, uint64_t uaddr, uint64_t daddr) |
| 738 | { |
| 739 | printf("Warning: U-Boot configured %s at address %llx,\n" |
| 740 | "but the device tree has it at %llx\n", name, uaddr, daddr); |
| 741 | } |
| 742 | |
Timur Tabi | 89e4870 | 2011-05-03 13:24:08 -0500 | [diff] [blame] | 743 | /* |
| 744 | * Verify the device tree |
| 745 | * |
| 746 | * This function compares several CONFIG_xxx macros that contain physical |
| 747 | * addresses with the corresponding nodes in the device tree, to see if |
| 748 | * the physical addresses are all correct. For example, if |
| 749 | * CONFIG_SYS_NS16550_COM1 is defined, then it contains the virtual address |
| 750 | * of the first UART. We convert this to a physical address and compare |
| 751 | * that with the physical address of the first ns16550-compatible node |
| 752 | * in the device tree. If they don't match, then we display a warning. |
| 753 | * |
| 754 | * Returns 1 on success, 0 on failure |
| 755 | */ |
| 756 | int ft_verify_fdt(void *fdt) |
| 757 | { |
Timur Tabi | 186d7a5 | 2011-11-16 13:28:34 -0600 | [diff] [blame] | 758 | uint64_t addr = 0; |
Timur Tabi | 89e4870 | 2011-05-03 13:24:08 -0500 | [diff] [blame] | 759 | int aliases; |
| 760 | int off; |
| 761 | |
| 762 | /* First check the CCSR base address */ |
| 763 | off = fdt_node_offset_by_prop_value(fdt, -1, "device_type", "soc", 4); |
| 764 | if (off > 0) |
Timur Tabi | 186d7a5 | 2011-11-16 13:28:34 -0600 | [diff] [blame] | 765 | addr = fdt_get_base_address(fdt, off); |
Timur Tabi | 89e4870 | 2011-05-03 13:24:08 -0500 | [diff] [blame] | 766 | |
Timur Tabi | 186d7a5 | 2011-11-16 13:28:34 -0600 | [diff] [blame] | 767 | if (!addr) { |
Timur Tabi | 89e4870 | 2011-05-03 13:24:08 -0500 | [diff] [blame] | 768 | printf("Warning: could not determine base CCSR address in " |
| 769 | "device tree\n"); |
| 770 | /* No point in checking anything else */ |
| 771 | return 0; |
| 772 | } |
| 773 | |
Timur Tabi | 186d7a5 | 2011-11-16 13:28:34 -0600 | [diff] [blame] | 774 | if (addr != CONFIG_SYS_CCSRBAR_PHYS) { |
| 775 | msg("CCSR", CONFIG_SYS_CCSRBAR_PHYS, addr); |
Timur Tabi | 89e4870 | 2011-05-03 13:24:08 -0500 | [diff] [blame] | 776 | /* No point in checking anything else */ |
| 777 | return 0; |
| 778 | } |
| 779 | |
| 780 | /* |
Timur Tabi | 186d7a5 | 2011-11-16 13:28:34 -0600 | [diff] [blame] | 781 | * Check some nodes via aliases. We assume that U-Boot and the device |
| 782 | * tree enumerate the devices equally. E.g. the first serial port in |
| 783 | * U-Boot is the same as "serial0" in the device tree. |
Timur Tabi | 89e4870 | 2011-05-03 13:24:08 -0500 | [diff] [blame] | 784 | */ |
| 785 | aliases = fdt_path_offset(fdt, "/aliases"); |
| 786 | if (aliases > 0) { |
| 787 | #ifdef CONFIG_SYS_NS16550_COM1 |
| 788 | if (!fdt_verify_alias_address(fdt, aliases, "serial0", |
| 789 | CCSR_VIRT_TO_PHYS(CONFIG_SYS_NS16550_COM1))) |
| 790 | return 0; |
| 791 | #endif |
| 792 | |
| 793 | #ifdef CONFIG_SYS_NS16550_COM2 |
| 794 | if (!fdt_verify_alias_address(fdt, aliases, "serial1", |
| 795 | CCSR_VIRT_TO_PHYS(CONFIG_SYS_NS16550_COM2))) |
| 796 | return 0; |
| 797 | #endif |
| 798 | } |
Timur Tabi | 186d7a5 | 2011-11-16 13:28:34 -0600 | [diff] [blame] | 799 | |
| 800 | /* |
| 801 | * The localbus node is typically a root node, even though the lbc |
| 802 | * controller is part of CCSR. If we were to put the lbc node under |
| 803 | * the SOC node, then the 'ranges' property in the lbc node would |
| 804 | * translate through the 'ranges' property of the parent SOC node, and |
| 805 | * we don't want that. Since it's a separate node, it's possible for |
| 806 | * the 'reg' property to be wrong, so check it here. For now, we |
| 807 | * only check for "fsl,elbc" nodes. |
| 808 | */ |
| 809 | #ifdef CONFIG_SYS_LBC_ADDR |
| 810 | off = fdt_node_offset_by_compatible(fdt, -1, "fsl,elbc"); |
| 811 | if (off > 0) { |
Kim Phillips | 6542c07 | 2013-01-16 14:00:11 +0000 | [diff] [blame] | 812 | const fdt32_t *reg = fdt_getprop(fdt, off, "reg", NULL); |
Timur Tabi | 186d7a5 | 2011-11-16 13:28:34 -0600 | [diff] [blame] | 813 | if (reg) { |
| 814 | uint64_t uaddr = CCSR_VIRT_TO_PHYS(CONFIG_SYS_LBC_ADDR); |
| 815 | |
| 816 | addr = fdt_translate_address(fdt, off, reg); |
| 817 | if (uaddr != addr) { |
| 818 | msg("the localbus", uaddr, addr); |
| 819 | return 0; |
| 820 | } |
| 821 | } |
| 822 | } |
| 823 | #endif |
Timur Tabi | 89e4870 | 2011-05-03 13:24:08 -0500 | [diff] [blame] | 824 | |
| 825 | return 1; |
| 826 | } |
Zhao Qiang | 81136a1 | 2015-08-28 10:31:50 +0800 | [diff] [blame] | 827 | |
| 828 | void fdt_del_diu(void *blob) |
| 829 | { |
| 830 | int nodeoff = 0; |
| 831 | |
| 832 | while ((nodeoff = fdt_node_offset_by_compatible(blob, 0, |
| 833 | "fsl,diu")) >= 0) { |
| 834 | fdt_del_node(blob, nodeoff); |
| 835 | } |
| 836 | } |