1a47a12beSStefan Roese /* 2a09b9b68SKumar Gala * Copyright 2007-2011 Freescale Semiconductor, Inc. 3a47a12beSStefan Roese * 4a47a12beSStefan Roese * (C) Copyright 2000 5a47a12beSStefan Roese * Wolfgang Denk, DENX Software Engineering, wd@denx.de. 6a47a12beSStefan Roese * 7a47a12beSStefan Roese * See file CREDITS for list of people who contributed to this 8a47a12beSStefan Roese * project. 9a47a12beSStefan Roese * 10a47a12beSStefan Roese * This program is free software; you can redistribute it and/or 11a47a12beSStefan Roese * modify it under the terms of the GNU General Public License as 12a47a12beSStefan Roese * published by the Free Software Foundation; either version 2 of 13a47a12beSStefan Roese * the License, or (at your option) any later version. 14a47a12beSStefan Roese * 15a47a12beSStefan Roese * This program is distributed in the hope that it will be useful, 16a47a12beSStefan Roese * but WITHOUT ANY WARRANTY; without even the implied warranty of 17a47a12beSStefan Roese * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 18a47a12beSStefan Roese * GNU General Public License for more details. 19a47a12beSStefan Roese * 20a47a12beSStefan Roese * You should have received a copy of the GNU General Public License 21a47a12beSStefan Roese * along with this program; if not, write to the Free Software 22a47a12beSStefan Roese * Foundation, Inc., 59 Temple Place, Suite 330, Boston, 23a47a12beSStefan Roese * MA 02111-1307 USA 24a47a12beSStefan Roese */ 25a47a12beSStefan Roese 26a47a12beSStefan Roese #include <common.h> 27a47a12beSStefan Roese #include <libfdt.h> 28a47a12beSStefan Roese #include <fdt_support.h> 29a47a12beSStefan Roese #include <asm/processor.h> 30a47a12beSStefan Roese #include <linux/ctype.h> 316aba33e9SKumar Gala #include <asm/io.h> 32db977abfSKumar Gala #include <asm/fsl_portals.h> 33a47a12beSStefan Roese #ifdef CONFIG_FSL_ESDHC 34a47a12beSStefan Roese #include <fsl_esdhc.h> 35a47a12beSStefan Roese #endif 36*ffadc441STimur Tabi #include "../../../../drivers/qe/qe.h" /* For struct qe_firmware */ 37a47a12beSStefan Roese 38a47a12beSStefan Roese DECLARE_GLOBAL_DATA_PTR; 39a47a12beSStefan Roese 40a47a12beSStefan Roese extern void ft_qe_setup(void *blob); 41a47a12beSStefan Roese extern void ft_fixup_num_cores(void *blob); 42a09b9b68SKumar Gala extern void ft_srio_setup(void *blob); 43a47a12beSStefan Roese 44a47a12beSStefan Roese #ifdef CONFIG_MP 45a47a12beSStefan Roese #include "mp.h" 46a47a12beSStefan Roese 47a47a12beSStefan Roese void ft_fixup_cpu(void *blob, u64 memory_limit) 48a47a12beSStefan Roese { 49a47a12beSStefan Roese int off; 50a47a12beSStefan Roese ulong spin_tbl_addr = get_spin_phys_addr(); 51a47a12beSStefan Roese u32 bootpg = determine_mp_bootpg(); 52a47a12beSStefan Roese u32 id = get_my_id(); 539d64c6bbSAaron Sierra const char *enable_method; 54a47a12beSStefan Roese 55a47a12beSStefan Roese off = fdt_node_offset_by_prop_value(blob, -1, "device_type", "cpu", 4); 56a47a12beSStefan Roese while (off != -FDT_ERR_NOTFOUND) { 57a47a12beSStefan Roese u32 *reg = (u32 *)fdt_getprop(blob, off, "reg", 0); 58a47a12beSStefan Roese 59a47a12beSStefan Roese if (reg) { 60a47a12beSStefan Roese u64 val = *reg * SIZE_BOOT_ENTRY + spin_tbl_addr; 61a47a12beSStefan Roese val = cpu_to_fdt32(val); 62b80d3054SMatthew McClintock if (*reg == id) { 63b80d3054SMatthew McClintock fdt_setprop_string(blob, off, "status", 64b80d3054SMatthew McClintock "okay"); 65b80d3054SMatthew McClintock } else { 66a47a12beSStefan Roese fdt_setprop_string(blob, off, "status", 67a47a12beSStefan Roese "disabled"); 68b80d3054SMatthew McClintock } 699d64c6bbSAaron Sierra 709d64c6bbSAaron Sierra if (hold_cores_in_reset(0)) { 719d64c6bbSAaron Sierra #ifdef CONFIG_FSL_CORENET 729d64c6bbSAaron Sierra /* Cores held in reset, use BRR to release */ 739d64c6bbSAaron Sierra enable_method = "fsl,brr-holdoff"; 749d64c6bbSAaron Sierra #else 759d64c6bbSAaron Sierra /* Cores held in reset, use EEBPCR to release */ 769d64c6bbSAaron Sierra enable_method = "fsl,eebpcr-holdoff"; 779d64c6bbSAaron Sierra #endif 789d64c6bbSAaron Sierra } else { 799d64c6bbSAaron Sierra /* Cores out of reset and in a spin-loop */ 809d64c6bbSAaron Sierra enable_method = "spin-table"; 819d64c6bbSAaron Sierra 82a47a12beSStefan Roese fdt_setprop(blob, off, "cpu-release-addr", 83a47a12beSStefan Roese &val, sizeof(val)); 849d64c6bbSAaron Sierra } 859d64c6bbSAaron Sierra 869d64c6bbSAaron Sierra fdt_setprop_string(blob, off, "enable-method", 879d64c6bbSAaron Sierra enable_method); 88a47a12beSStefan Roese } else { 89a47a12beSStefan Roese printf ("cpu NULL\n"); 90a47a12beSStefan Roese } 91a47a12beSStefan Roese off = fdt_node_offset_by_prop_value(blob, off, 92a47a12beSStefan Roese "device_type", "cpu", 4); 93a47a12beSStefan Roese } 94a47a12beSStefan Roese 95a47a12beSStefan Roese /* Reserve the boot page so OSes dont use it */ 96a47a12beSStefan Roese if ((u64)bootpg < memory_limit) { 97a47a12beSStefan Roese off = fdt_add_mem_rsv(blob, bootpg, (u64)4096); 98a47a12beSStefan Roese if (off < 0) 99a47a12beSStefan Roese printf("%s: %s\n", __FUNCTION__, fdt_strerror(off)); 100a47a12beSStefan Roese } 101a47a12beSStefan Roese } 102a47a12beSStefan Roese #endif 103a47a12beSStefan Roese 1046aba33e9SKumar Gala #ifdef CONFIG_SYS_FSL_CPC 1056aba33e9SKumar Gala static inline void ft_fixup_l3cache(void *blob, int off) 1066aba33e9SKumar Gala { 1076aba33e9SKumar Gala u32 line_size, num_ways, size, num_sets; 1086aba33e9SKumar Gala cpc_corenet_t *cpc = (void *)CONFIG_SYS_FSL_CPC_ADDR; 1096aba33e9SKumar Gala u32 cfg0 = in_be32(&cpc->cpccfg0); 1106aba33e9SKumar Gala 1116aba33e9SKumar Gala size = CPC_CFG0_SZ_K(cfg0) * 1024 * CONFIG_SYS_NUM_CPC; 1126aba33e9SKumar Gala num_ways = CPC_CFG0_NUM_WAYS(cfg0); 1136aba33e9SKumar Gala line_size = CPC_CFG0_LINE_SZ(cfg0); 1146aba33e9SKumar Gala num_sets = size / (line_size * num_ways); 1156aba33e9SKumar Gala 1166aba33e9SKumar Gala fdt_setprop(blob, off, "cache-unified", NULL, 0); 1176aba33e9SKumar Gala fdt_setprop_cell(blob, off, "cache-block-size", line_size); 1186aba33e9SKumar Gala fdt_setprop_cell(blob, off, "cache-size", size); 1196aba33e9SKumar Gala fdt_setprop_cell(blob, off, "cache-sets", num_sets); 1206aba33e9SKumar Gala fdt_setprop_cell(blob, off, "cache-level", 3); 1216aba33e9SKumar Gala #ifdef CONFIG_SYS_CACHE_STASHING 1226aba33e9SKumar Gala fdt_setprop_cell(blob, off, "cache-stash-id", 1); 1236aba33e9SKumar Gala #endif 1246aba33e9SKumar Gala } 1256aba33e9SKumar Gala #else 126a47a12beSStefan Roese #define ft_fixup_l3cache(x, y) 1276aba33e9SKumar Gala #endif 128a47a12beSStefan Roese 129a47a12beSStefan Roese #if defined(CONFIG_L2_CACHE) 130a47a12beSStefan Roese /* return size in kilobytes */ 131a47a12beSStefan Roese static inline u32 l2cache_size(void) 132a47a12beSStefan Roese { 133a47a12beSStefan Roese volatile ccsr_l2cache_t *l2cache = (void *)CONFIG_SYS_MPC85xx_L2_ADDR; 134a47a12beSStefan Roese volatile u32 l2siz_field = (l2cache->l2ctl >> 28) & 0x3; 135a47a12beSStefan Roese u32 ver = SVR_SOC_VER(get_svr()); 136a47a12beSStefan Roese 137a47a12beSStefan Roese switch (l2siz_field) { 138a47a12beSStefan Roese case 0x0: 139a47a12beSStefan Roese break; 140a47a12beSStefan Roese case 0x1: 141a47a12beSStefan Roese if (ver == SVR_8540 || ver == SVR_8560 || 142a47a12beSStefan Roese ver == SVR_8541 || ver == SVR_8541_E || 143a47a12beSStefan Roese ver == SVR_8555 || ver == SVR_8555_E) 144a47a12beSStefan Roese return 128; 145a47a12beSStefan Roese else 146a47a12beSStefan Roese return 256; 147a47a12beSStefan Roese break; 148a47a12beSStefan Roese case 0x2: 149a47a12beSStefan Roese if (ver == SVR_8540 || ver == SVR_8560 || 150a47a12beSStefan Roese ver == SVR_8541 || ver == SVR_8541_E || 151a47a12beSStefan Roese ver == SVR_8555 || ver == SVR_8555_E) 152a47a12beSStefan Roese return 256; 153a47a12beSStefan Roese else 154a47a12beSStefan Roese return 512; 155a47a12beSStefan Roese break; 156a47a12beSStefan Roese case 0x3: 157a47a12beSStefan Roese return 1024; 158a47a12beSStefan Roese break; 159a47a12beSStefan Roese } 160a47a12beSStefan Roese 161a47a12beSStefan Roese return 0; 162a47a12beSStefan Roese } 163a47a12beSStefan Roese 164a47a12beSStefan Roese static inline void ft_fixup_l2cache(void *blob) 165a47a12beSStefan Roese { 166a47a12beSStefan Roese int len, off; 167a47a12beSStefan Roese u32 *ph; 168a47a12beSStefan Roese struct cpu_type *cpu = identify_cpu(SVR_SOC_VER(get_svr())); 169a47a12beSStefan Roese 170a47a12beSStefan Roese const u32 line_size = 32; 171a47a12beSStefan Roese const u32 num_ways = 8; 172a47a12beSStefan Roese const u32 size = l2cache_size() * 1024; 173a47a12beSStefan Roese const u32 num_sets = size / (line_size * num_ways); 174a47a12beSStefan Roese 175a47a12beSStefan Roese off = fdt_node_offset_by_prop_value(blob, -1, "device_type", "cpu", 4); 176a47a12beSStefan Roese if (off < 0) { 177a47a12beSStefan Roese debug("no cpu node fount\n"); 178a47a12beSStefan Roese return; 179a47a12beSStefan Roese } 180a47a12beSStefan Roese 181a47a12beSStefan Roese ph = (u32 *)fdt_getprop(blob, off, "next-level-cache", 0); 182a47a12beSStefan Roese 183a47a12beSStefan Roese if (ph == NULL) { 184a47a12beSStefan Roese debug("no next-level-cache property\n"); 185a47a12beSStefan Roese return ; 186a47a12beSStefan Roese } 187a47a12beSStefan Roese 188a47a12beSStefan Roese off = fdt_node_offset_by_phandle(blob, *ph); 189a47a12beSStefan Roese if (off < 0) { 190a47a12beSStefan Roese printf("%s: %s\n", __func__, fdt_strerror(off)); 191a47a12beSStefan Roese return ; 192a47a12beSStefan Roese } 193a47a12beSStefan Roese 194a47a12beSStefan Roese if (cpu) { 195ee4756d4STimur Tabi char buf[40]; 196a47a12beSStefan Roese 197ee4756d4STimur Tabi if (isdigit(cpu->name[0])) { 198ee4756d4STimur Tabi /* MPCxxxx, where xxxx == 4-digit number */ 199ee4756d4STimur Tabi len = sprintf(buf, "fsl,mpc%s-l2-cache-controller", 200ee4756d4STimur Tabi cpu->name) + 1; 201ee4756d4STimur Tabi } else { 202ee4756d4STimur Tabi /* Pxxxx or Txxxx, where xxxx == 4-digit number */ 203ee4756d4STimur Tabi len = sprintf(buf, "fsl,%c%s-l2-cache-controller", 204ee4756d4STimur Tabi tolower(cpu->name[0]), cpu->name + 1) + 1; 205ee4756d4STimur Tabi } 206ee4756d4STimur Tabi 207ee4756d4STimur Tabi /* 208ee4756d4STimur Tabi * append "cache" after the NULL character that the previous 209ee4756d4STimur Tabi * sprintf wrote. This is how a device tree stores multiple 210ee4756d4STimur Tabi * strings in a property. 211ee4756d4STimur Tabi */ 212ee4756d4STimur Tabi len += sprintf(buf + len, "cache") + 1; 213ee4756d4STimur Tabi 214ee4756d4STimur Tabi fdt_setprop(blob, off, "compatible", buf, len); 215a47a12beSStefan Roese } 216a47a12beSStefan Roese fdt_setprop(blob, off, "cache-unified", NULL, 0); 217a47a12beSStefan Roese fdt_setprop_cell(blob, off, "cache-block-size", line_size); 218a47a12beSStefan Roese fdt_setprop_cell(blob, off, "cache-size", size); 219a47a12beSStefan Roese fdt_setprop_cell(blob, off, "cache-sets", num_sets); 220a47a12beSStefan Roese fdt_setprop_cell(blob, off, "cache-level", 2); 221a47a12beSStefan Roese 222a47a12beSStefan Roese /* we dont bother w/L3 since no platform of this type has one */ 223a47a12beSStefan Roese } 224a47a12beSStefan Roese #elif defined(CONFIG_BACKSIDE_L2_CACHE) 225a47a12beSStefan Roese static inline void ft_fixup_l2cache(void *blob) 226a47a12beSStefan Roese { 227a47a12beSStefan Roese int off, l2_off, l3_off = -1; 228a47a12beSStefan Roese u32 *ph; 229a47a12beSStefan Roese u32 l2cfg0 = mfspr(SPRN_L2CFG0); 230a47a12beSStefan Roese u32 size, line_size, num_ways, num_sets; 231a47a12beSStefan Roese 232a47a12beSStefan Roese size = (l2cfg0 & 0x3fff) * 64 * 1024; 233a47a12beSStefan Roese num_ways = ((l2cfg0 >> 14) & 0x1f) + 1; 234a47a12beSStefan Roese line_size = (((l2cfg0 >> 23) & 0x3) + 1) * 32; 235a47a12beSStefan Roese num_sets = size / (line_size * num_ways); 236a47a12beSStefan Roese 237a47a12beSStefan Roese off = fdt_node_offset_by_prop_value(blob, -1, "device_type", "cpu", 4); 238a47a12beSStefan Roese 239a47a12beSStefan Roese while (off != -FDT_ERR_NOTFOUND) { 240a47a12beSStefan Roese ph = (u32 *)fdt_getprop(blob, off, "next-level-cache", 0); 241a47a12beSStefan Roese 242a47a12beSStefan Roese if (ph == NULL) { 243a47a12beSStefan Roese debug("no next-level-cache property\n"); 244a47a12beSStefan Roese goto next; 245a47a12beSStefan Roese } 246a47a12beSStefan Roese 247a47a12beSStefan Roese l2_off = fdt_node_offset_by_phandle(blob, *ph); 248a47a12beSStefan Roese if (l2_off < 0) { 249a47a12beSStefan Roese printf("%s: %s\n", __func__, fdt_strerror(off)); 250a47a12beSStefan Roese goto next; 251a47a12beSStefan Roese } 252a47a12beSStefan Roese 253a47a12beSStefan Roese #ifdef CONFIG_SYS_CACHE_STASHING 254a47a12beSStefan Roese { 255a47a12beSStefan Roese u32 *reg = (u32 *)fdt_getprop(blob, off, "reg", 0); 256a47a12beSStefan Roese if (reg) 257a47a12beSStefan Roese fdt_setprop_cell(blob, l2_off, "cache-stash-id", 258a47a12beSStefan Roese (*reg * 2) + 32 + 1); 259a47a12beSStefan Roese } 260a47a12beSStefan Roese #endif 261a47a12beSStefan Roese 262a47a12beSStefan Roese fdt_setprop(blob, l2_off, "cache-unified", NULL, 0); 263a47a12beSStefan Roese fdt_setprop_cell(blob, l2_off, "cache-block-size", line_size); 264a47a12beSStefan Roese fdt_setprop_cell(blob, l2_off, "cache-size", size); 265a47a12beSStefan Roese fdt_setprop_cell(blob, l2_off, "cache-sets", num_sets); 266a47a12beSStefan Roese fdt_setprop_cell(blob, l2_off, "cache-level", 2); 267a47a12beSStefan Roese fdt_setprop(blob, l2_off, "compatible", "cache", 6); 268a47a12beSStefan Roese 269a47a12beSStefan Roese if (l3_off < 0) { 270a47a12beSStefan Roese ph = (u32 *)fdt_getprop(blob, l2_off, "next-level-cache", 0); 271a47a12beSStefan Roese 272a47a12beSStefan Roese if (ph == NULL) { 273a47a12beSStefan Roese debug("no next-level-cache property\n"); 274a47a12beSStefan Roese goto next; 275a47a12beSStefan Roese } 276a47a12beSStefan Roese l3_off = *ph; 277a47a12beSStefan Roese } 278a47a12beSStefan Roese next: 279a47a12beSStefan Roese off = fdt_node_offset_by_prop_value(blob, off, 280a47a12beSStefan Roese "device_type", "cpu", 4); 281a47a12beSStefan Roese } 282a47a12beSStefan Roese if (l3_off > 0) { 283a47a12beSStefan Roese l3_off = fdt_node_offset_by_phandle(blob, l3_off); 284a47a12beSStefan Roese if (l3_off < 0) { 285a47a12beSStefan Roese printf("%s: %s\n", __func__, fdt_strerror(off)); 286a47a12beSStefan Roese return ; 287a47a12beSStefan Roese } 288a47a12beSStefan Roese ft_fixup_l3cache(blob, l3_off); 289a47a12beSStefan Roese } 290a47a12beSStefan Roese } 291a47a12beSStefan Roese #else 292a47a12beSStefan Roese #define ft_fixup_l2cache(x) 293a47a12beSStefan Roese #endif 294a47a12beSStefan Roese 295a47a12beSStefan Roese static inline void ft_fixup_cache(void *blob) 296a47a12beSStefan Roese { 297a47a12beSStefan Roese int off; 298a47a12beSStefan Roese 299a47a12beSStefan Roese off = fdt_node_offset_by_prop_value(blob, -1, "device_type", "cpu", 4); 300a47a12beSStefan Roese 301a47a12beSStefan Roese while (off != -FDT_ERR_NOTFOUND) { 302a47a12beSStefan Roese u32 l1cfg0 = mfspr(SPRN_L1CFG0); 303a47a12beSStefan Roese u32 l1cfg1 = mfspr(SPRN_L1CFG1); 304a47a12beSStefan Roese u32 isize, iline_size, inum_sets, inum_ways; 305a47a12beSStefan Roese u32 dsize, dline_size, dnum_sets, dnum_ways; 306a47a12beSStefan Roese 307a47a12beSStefan Roese /* d-side config */ 308a47a12beSStefan Roese dsize = (l1cfg0 & 0x7ff) * 1024; 309a47a12beSStefan Roese dnum_ways = ((l1cfg0 >> 11) & 0xff) + 1; 310a47a12beSStefan Roese dline_size = (((l1cfg0 >> 23) & 0x3) + 1) * 32; 311a47a12beSStefan Roese dnum_sets = dsize / (dline_size * dnum_ways); 312a47a12beSStefan Roese 313a47a12beSStefan Roese fdt_setprop_cell(blob, off, "d-cache-block-size", dline_size); 314a47a12beSStefan Roese fdt_setprop_cell(blob, off, "d-cache-size", dsize); 315a47a12beSStefan Roese fdt_setprop_cell(blob, off, "d-cache-sets", dnum_sets); 316a47a12beSStefan Roese 317a47a12beSStefan Roese #ifdef CONFIG_SYS_CACHE_STASHING 318a47a12beSStefan Roese { 319a47a12beSStefan Roese u32 *reg = (u32 *)fdt_getprop(blob, off, "reg", 0); 320a47a12beSStefan Roese if (reg) 321a47a12beSStefan Roese fdt_setprop_cell(blob, off, "cache-stash-id", 322a47a12beSStefan Roese (*reg * 2) + 32 + 0); 323a47a12beSStefan Roese } 324a47a12beSStefan Roese #endif 325a47a12beSStefan Roese 326a47a12beSStefan Roese /* i-side config */ 327a47a12beSStefan Roese isize = (l1cfg1 & 0x7ff) * 1024; 328a47a12beSStefan Roese inum_ways = ((l1cfg1 >> 11) & 0xff) + 1; 329a47a12beSStefan Roese iline_size = (((l1cfg1 >> 23) & 0x3) + 1) * 32; 330a47a12beSStefan Roese inum_sets = isize / (iline_size * inum_ways); 331a47a12beSStefan Roese 332a47a12beSStefan Roese fdt_setprop_cell(blob, off, "i-cache-block-size", iline_size); 333a47a12beSStefan Roese fdt_setprop_cell(blob, off, "i-cache-size", isize); 334a47a12beSStefan Roese fdt_setprop_cell(blob, off, "i-cache-sets", inum_sets); 335a47a12beSStefan Roese 336a47a12beSStefan Roese off = fdt_node_offset_by_prop_value(blob, off, 337a47a12beSStefan Roese "device_type", "cpu", 4); 338a47a12beSStefan Roese } 339a47a12beSStefan Roese 340a47a12beSStefan Roese ft_fixup_l2cache(blob); 341a47a12beSStefan Roese } 342a47a12beSStefan Roese 343a47a12beSStefan Roese 344a47a12beSStefan Roese void fdt_add_enet_stashing(void *fdt) 345a47a12beSStefan Roese { 346a47a12beSStefan Roese do_fixup_by_compat(fdt, "gianfar", "bd-stash", NULL, 0, 1); 347a47a12beSStefan Roese 348a47a12beSStefan Roese do_fixup_by_compat_u32(fdt, "gianfar", "rx-stash-len", 96, 1); 349a47a12beSStefan Roese 350a47a12beSStefan Roese do_fixup_by_compat_u32(fdt, "gianfar", "rx-stash-idx", 0, 1); 351eea9a123SPankaj Chauhan do_fixup_by_compat(fdt, "fsl,etsec2", "bd-stash", NULL, 0, 1); 352eea9a123SPankaj Chauhan do_fixup_by_compat_u32(fdt, "fsl,etsec2", "rx-stash-len", 96, 1); 353eea9a123SPankaj Chauhan do_fixup_by_compat_u32(fdt, "fsl,etsec2", "rx-stash-idx", 0, 1); 354a47a12beSStefan Roese } 355a47a12beSStefan Roese 356a47a12beSStefan Roese #if defined(CONFIG_SYS_DPAA_FMAN) || defined(CONFIG_SYS_DPAA_PME) 3571b942f74SKumar Gala static void ft_fixup_clks(void *blob, const char *compat, u32 offset, 3581b942f74SKumar Gala unsigned long freq) 359a47a12beSStefan Roese { 3601b942f74SKumar Gala phys_addr_t phys = offset + CONFIG_SYS_CCSRBAR_PHYS; 3611b942f74SKumar Gala int off = fdt_node_offset_by_compat_reg(blob, compat, phys); 362a47a12beSStefan Roese 363a47a12beSStefan Roese if (off >= 0) { 364a47a12beSStefan Roese off = fdt_setprop_cell(blob, off, "clock-frequency", freq); 365a47a12beSStefan Roese if (off > 0) 366a47a12beSStefan Roese printf("WARNING enable to set clock-frequency " 3671b942f74SKumar Gala "for %s: %s\n", compat, fdt_strerror(off)); 368a47a12beSStefan Roese } 369a47a12beSStefan Roese } 370a47a12beSStefan Roese 371a47a12beSStefan Roese static void ft_fixup_dpaa_clks(void *blob) 372a47a12beSStefan Roese { 373a47a12beSStefan Roese sys_info_t sysinfo; 374a47a12beSStefan Roese 375a47a12beSStefan Roese get_sys_info(&sysinfo); 3761b942f74SKumar Gala ft_fixup_clks(blob, "fsl,fman", CONFIG_SYS_FSL_FM1_OFFSET, 3771b942f74SKumar Gala sysinfo.freqFMan[0]); 378a47a12beSStefan Roese 379a47a12beSStefan Roese #if (CONFIG_SYS_NUM_FMAN == 2) 3801b942f74SKumar Gala ft_fixup_clks(blob, "fsl,fman", CONFIG_SYS_FSL_FM2_OFFSET, 3811b942f74SKumar Gala sysinfo.freqFMan[1]); 382a47a12beSStefan Roese #endif 383a47a12beSStefan Roese 384a47a12beSStefan Roese #ifdef CONFIG_SYS_DPAA_PME 3851b942f74SKumar Gala do_fixup_by_compat_u32(blob, "fsl,pme", 3861b942f74SKumar Gala "clock-frequency", sysinfo.freqPME, 1); 387a47a12beSStefan Roese #endif 388a47a12beSStefan Roese } 389a47a12beSStefan Roese #else 390a47a12beSStefan Roese #define ft_fixup_dpaa_clks(x) 391a47a12beSStefan Roese #endif 392a47a12beSStefan Roese 393a47a12beSStefan Roese #ifdef CONFIG_QE 394a47a12beSStefan Roese static void ft_fixup_qe_snum(void *blob) 395a47a12beSStefan Roese { 396a47a12beSStefan Roese unsigned int svr; 397a47a12beSStefan Roese 398a47a12beSStefan Roese svr = mfspr(SPRN_SVR); 399a47a12beSStefan Roese if (SVR_SOC_VER(svr) == SVR_8569_E) { 400a47a12beSStefan Roese if(IS_SVR_REV(svr, 1, 0)) 401a47a12beSStefan Roese do_fixup_by_compat_u32(blob, "fsl,qe", 402a47a12beSStefan Roese "fsl,qe-num-snums", 46, 1); 403a47a12beSStefan Roese else 404a47a12beSStefan Roese do_fixup_by_compat_u32(blob, "fsl,qe", 405a47a12beSStefan Roese "fsl,qe-num-snums", 76, 1); 406a47a12beSStefan Roese } 407a47a12beSStefan Roese } 408a47a12beSStefan Roese #endif 409a47a12beSStefan Roese 410*ffadc441STimur Tabi /** 411*ffadc441STimur Tabi * fdt_fixup_fman_firmware -- insert the Fman firmware into the device tree 412*ffadc441STimur Tabi * 413*ffadc441STimur Tabi * The binding for an Fman firmware node is documented in 414*ffadc441STimur Tabi * Documentation/powerpc/dts-bindings/fsl/dpaa/fman.txt. This node contains 415*ffadc441STimur Tabi * the actual Fman firmware binary data. The operating system is expected to 416*ffadc441STimur Tabi * be able to parse the binary data to determine any attributes it needs. 417*ffadc441STimur Tabi */ 418*ffadc441STimur Tabi #ifdef CONFIG_SYS_DPAA_FMAN 419*ffadc441STimur Tabi void fdt_fixup_fman_firmware(void *blob) 420*ffadc441STimur Tabi { 421*ffadc441STimur Tabi int rc, fmnode, fwnode = -1; 422*ffadc441STimur Tabi uint32_t phandle; 423*ffadc441STimur Tabi struct qe_firmware *fmanfw; 424*ffadc441STimur Tabi const struct qe_header *hdr; 425*ffadc441STimur Tabi unsigned int length; 426*ffadc441STimur Tabi uint32_t crc; 427*ffadc441STimur Tabi const char *p; 428*ffadc441STimur Tabi 429*ffadc441STimur Tabi /* The first Fman we find will contain the actual firmware. */ 430*ffadc441STimur Tabi fmnode = fdt_node_offset_by_compatible(blob, -1, "fsl,fman"); 431*ffadc441STimur Tabi if (fmnode < 0) 432*ffadc441STimur Tabi /* Exit silently if there are no Fman devices */ 433*ffadc441STimur Tabi return; 434*ffadc441STimur Tabi 435*ffadc441STimur Tabi /* If we already have a firmware node, then also exit silently. */ 436*ffadc441STimur Tabi if (fdt_node_offset_by_compatible(blob, -1, "fsl,fman-firmware") > 0) 437*ffadc441STimur Tabi return; 438*ffadc441STimur Tabi 439*ffadc441STimur Tabi /* If the environment variable is not set, then exit silently */ 440*ffadc441STimur Tabi p = getenv("fman_ucode"); 441*ffadc441STimur Tabi if (!p) 442*ffadc441STimur Tabi return; 443*ffadc441STimur Tabi 444*ffadc441STimur Tabi fmanfw = (struct qe_firmware *) simple_strtoul(p, NULL, 0); 445*ffadc441STimur Tabi if (!fmanfw) 446*ffadc441STimur Tabi return; 447*ffadc441STimur Tabi 448*ffadc441STimur Tabi hdr = &fmanfw->header; 449*ffadc441STimur Tabi length = be32_to_cpu(hdr->length); 450*ffadc441STimur Tabi 451*ffadc441STimur Tabi /* Verify the firmware. */ 452*ffadc441STimur Tabi if ((hdr->magic[0] != 'Q') || (hdr->magic[1] != 'E') || 453*ffadc441STimur Tabi (hdr->magic[2] != 'F')) { 454*ffadc441STimur Tabi printf("Data at %p is not an Fman firmware\n", fmanfw); 455*ffadc441STimur Tabi return; 456*ffadc441STimur Tabi } 457*ffadc441STimur Tabi 458*ffadc441STimur Tabi if (length > CONFIG_SYS_FMAN_FW_LENGTH) { 459*ffadc441STimur Tabi printf("Fman firmware at %p is too large (size=%u)\n", 460*ffadc441STimur Tabi fmanfw, length); 461*ffadc441STimur Tabi return; 462*ffadc441STimur Tabi } 463*ffadc441STimur Tabi 464*ffadc441STimur Tabi length -= sizeof(u32); /* Subtract the size of the CRC */ 465*ffadc441STimur Tabi crc = be32_to_cpu(*(u32 *)((void *)fmanfw + length)); 466*ffadc441STimur Tabi if (crc != crc32_no_comp(0, (void *)fmanfw, length)) { 467*ffadc441STimur Tabi printf("Fman firmware at %p has invalid CRC\n", fmanfw); 468*ffadc441STimur Tabi return; 469*ffadc441STimur Tabi } 470*ffadc441STimur Tabi 471*ffadc441STimur Tabi /* Increase the size of the fdt to make room for the node. */ 472*ffadc441STimur Tabi rc = fdt_increase_size(blob, fmanfw->header.length); 473*ffadc441STimur Tabi if (rc < 0) { 474*ffadc441STimur Tabi printf("Unable to make room for Fman firmware: %s\n", 475*ffadc441STimur Tabi fdt_strerror(rc)); 476*ffadc441STimur Tabi return; 477*ffadc441STimur Tabi } 478*ffadc441STimur Tabi 479*ffadc441STimur Tabi /* Create the firmware node. */ 480*ffadc441STimur Tabi fwnode = fdt_add_subnode(blob, fmnode, "fman-firmware"); 481*ffadc441STimur Tabi if (fwnode < 0) { 482*ffadc441STimur Tabi char s[64]; 483*ffadc441STimur Tabi fdt_get_path(blob, fmnode, s, sizeof(s)); 484*ffadc441STimur Tabi printf("Could not add firmware node to %s: %s\n", s, 485*ffadc441STimur Tabi fdt_strerror(fwnode)); 486*ffadc441STimur Tabi return; 487*ffadc441STimur Tabi } 488*ffadc441STimur Tabi rc = fdt_setprop_string(blob, fwnode, "compatible", "fsl,fman-firmware"); 489*ffadc441STimur Tabi if (rc < 0) { 490*ffadc441STimur Tabi char s[64]; 491*ffadc441STimur Tabi fdt_get_path(blob, fwnode, s, sizeof(s)); 492*ffadc441STimur Tabi printf("Could not add compatible property to node %s: %s\n", s, 493*ffadc441STimur Tabi fdt_strerror(rc)); 494*ffadc441STimur Tabi return; 495*ffadc441STimur Tabi } 496*ffadc441STimur Tabi phandle = fdt_alloc_phandle(blob); 497*ffadc441STimur Tabi rc = fdt_setprop_cell(blob, fwnode, "linux,phandle", phandle); 498*ffadc441STimur Tabi if (rc < 0) { 499*ffadc441STimur Tabi char s[64]; 500*ffadc441STimur Tabi fdt_get_path(blob, fwnode, s, sizeof(s)); 501*ffadc441STimur Tabi printf("Could not add phandle property to node %s: %s\n", s, 502*ffadc441STimur Tabi fdt_strerror(rc)); 503*ffadc441STimur Tabi return; 504*ffadc441STimur Tabi } 505*ffadc441STimur Tabi rc = fdt_setprop(blob, fwnode, "fsl,firmware", fmanfw, fmanfw->header.length); 506*ffadc441STimur Tabi if (rc < 0) { 507*ffadc441STimur Tabi char s[64]; 508*ffadc441STimur Tabi fdt_get_path(blob, fwnode, s, sizeof(s)); 509*ffadc441STimur Tabi printf("Could not add firmware property to node %s: %s\n", s, 510*ffadc441STimur Tabi fdt_strerror(rc)); 511*ffadc441STimur Tabi return; 512*ffadc441STimur Tabi } 513*ffadc441STimur Tabi 514*ffadc441STimur Tabi /* Find all other Fman nodes and point them to the firmware node. */ 515*ffadc441STimur Tabi while ((fmnode = fdt_node_offset_by_compatible(blob, fmnode, "fsl,fman")) > 0) { 516*ffadc441STimur Tabi rc = fdt_setprop_cell(blob, fmnode, "fsl,firmware-phandle", phandle); 517*ffadc441STimur Tabi if (rc < 0) { 518*ffadc441STimur Tabi char s[64]; 519*ffadc441STimur Tabi fdt_get_path(blob, fmnode, s, sizeof(s)); 520*ffadc441STimur Tabi printf("Could not add pointer property to node %s: %s\n", 521*ffadc441STimur Tabi s, fdt_strerror(rc)); 522*ffadc441STimur Tabi return; 523*ffadc441STimur Tabi } 524*ffadc441STimur Tabi } 525*ffadc441STimur Tabi } 526*ffadc441STimur Tabi #else 527*ffadc441STimur Tabi #define fdt_fixup_fman_firmware(x) 528*ffadc441STimur Tabi #endif 529*ffadc441STimur Tabi 530a47a12beSStefan Roese void ft_cpu_setup(void *blob, bd_t *bd) 531a47a12beSStefan Roese { 532a47a12beSStefan Roese int off; 533a47a12beSStefan Roese int val; 534a47a12beSStefan Roese sys_info_t sysinfo; 535a47a12beSStefan Roese 536a47a12beSStefan Roese /* delete crypto node if not on an E-processor */ 537a47a12beSStefan Roese if (!IS_E_PROCESSOR(get_svr())) 538a47a12beSStefan Roese fdt_fixup_crypto_node(blob, 0); 539a47a12beSStefan Roese 540a47a12beSStefan Roese fdt_fixup_ethernet(blob); 541a47a12beSStefan Roese 542a47a12beSStefan Roese fdt_add_enet_stashing(blob); 543a47a12beSStefan Roese 544a47a12beSStefan Roese do_fixup_by_prop_u32(blob, "device_type", "cpu", 4, 545a47a12beSStefan Roese "timebase-frequency", get_tbclk(), 1); 546a47a12beSStefan Roese do_fixup_by_prop_u32(blob, "device_type", "cpu", 4, 547a47a12beSStefan Roese "bus-frequency", bd->bi_busfreq, 1); 548a47a12beSStefan Roese get_sys_info(&sysinfo); 549a47a12beSStefan Roese off = fdt_node_offset_by_prop_value(blob, -1, "device_type", "cpu", 4); 550a47a12beSStefan Roese while (off != -FDT_ERR_NOTFOUND) { 551a47a12beSStefan Roese u32 *reg = (u32 *)fdt_getprop(blob, off, "reg", 0); 552a47a12beSStefan Roese val = cpu_to_fdt32(sysinfo.freqProcessor[*reg]); 553a47a12beSStefan Roese fdt_setprop(blob, off, "clock-frequency", &val, 4); 554a47a12beSStefan Roese off = fdt_node_offset_by_prop_value(blob, off, "device_type", 555a47a12beSStefan Roese "cpu", 4); 556a47a12beSStefan Roese } 557a47a12beSStefan Roese do_fixup_by_prop_u32(blob, "device_type", "soc", 4, 558a47a12beSStefan Roese "bus-frequency", bd->bi_busfreq, 1); 559a47a12beSStefan Roese 560a47a12beSStefan Roese do_fixup_by_compat_u32(blob, "fsl,pq3-localbus", 561a47a12beSStefan Roese "bus-frequency", gd->lbc_clk, 1); 562a47a12beSStefan Roese do_fixup_by_compat_u32(blob, "fsl,elbc", 563a47a12beSStefan Roese "bus-frequency", gd->lbc_clk, 1); 564a47a12beSStefan Roese #ifdef CONFIG_QE 565a47a12beSStefan Roese ft_qe_setup(blob); 566a47a12beSStefan Roese ft_fixup_qe_snum(blob); 567a47a12beSStefan Roese #endif 568a47a12beSStefan Roese 569*ffadc441STimur Tabi fdt_fixup_fman_firmware(blob); 570*ffadc441STimur Tabi 571a47a12beSStefan Roese #ifdef CONFIG_SYS_NS16550 572a47a12beSStefan Roese do_fixup_by_compat_u32(blob, "ns16550", 573a47a12beSStefan Roese "clock-frequency", CONFIG_SYS_NS16550_CLK, 1); 574a47a12beSStefan Roese #endif 575a47a12beSStefan Roese 576a47a12beSStefan Roese #ifdef CONFIG_CPM2 577a47a12beSStefan Roese do_fixup_by_compat_u32(blob, "fsl,cpm2-scc-uart", 578a47a12beSStefan Roese "current-speed", bd->bi_baudrate, 1); 579a47a12beSStefan Roese 580a47a12beSStefan Roese do_fixup_by_compat_u32(blob, "fsl,cpm2-brg", 581a47a12beSStefan Roese "clock-frequency", bd->bi_brgfreq, 1); 582a47a12beSStefan Roese #endif 583a47a12beSStefan Roese 58485f8cda3SKumar Gala #ifdef CONFIG_FSL_CORENET 58585f8cda3SKumar Gala do_fixup_by_compat_u32(blob, "fsl,qoriq-clockgen-1.0", 58685f8cda3SKumar Gala "clock-frequency", CONFIG_SYS_CLK_FREQ, 1); 58785f8cda3SKumar Gala #endif 58885f8cda3SKumar Gala 589a47a12beSStefan Roese fdt_fixup_memory(blob, (u64)bd->bi_memstart, (u64)bd->bi_memsize); 590a47a12beSStefan Roese 591a47a12beSStefan Roese #ifdef CONFIG_MP 592a47a12beSStefan Roese ft_fixup_cpu(blob, (u64)bd->bi_memstart + (u64)bd->bi_memsize); 593a47a12beSStefan Roese ft_fixup_num_cores(blob); 5948f3a7fa4SKumar Gala #endif 595a47a12beSStefan Roese 596a47a12beSStefan Roese ft_fixup_cache(blob); 597a47a12beSStefan Roese 598a47a12beSStefan Roese #if defined(CONFIG_FSL_ESDHC) 599a47a12beSStefan Roese fdt_fixup_esdhc(blob, bd); 600a47a12beSStefan Roese #endif 601a47a12beSStefan Roese 602a47a12beSStefan Roese ft_fixup_dpaa_clks(blob); 603db977abfSKumar Gala 604db977abfSKumar Gala #if defined(CONFIG_SYS_BMAN_MEM_PHYS) 605db977abfSKumar Gala fdt_portal(blob, "fsl,bman-portal", "bman-portals", 606db977abfSKumar Gala (u64)CONFIG_SYS_BMAN_MEM_PHYS, 607db977abfSKumar Gala CONFIG_SYS_BMAN_MEM_SIZE); 6082a0ffb84SHaiying Wang fdt_fixup_bportals(blob); 609db977abfSKumar Gala #endif 610db977abfSKumar Gala 611db977abfSKumar Gala #if defined(CONFIG_SYS_QMAN_MEM_PHYS) 612db977abfSKumar Gala fdt_portal(blob, "fsl,qman-portal", "qman-portals", 613db977abfSKumar Gala (u64)CONFIG_SYS_QMAN_MEM_PHYS, 614db977abfSKumar Gala CONFIG_SYS_QMAN_MEM_SIZE); 615db977abfSKumar Gala 616db977abfSKumar Gala fdt_fixup_qportals(blob); 617db977abfSKumar Gala #endif 618a09b9b68SKumar Gala 619a09b9b68SKumar Gala #ifdef CONFIG_SYS_SRIO 620a09b9b68SKumar Gala ft_srio_setup(blob); 621a09b9b68SKumar Gala #endif 622f5feb5afSbhaskar upadhaya 623f5feb5afSbhaskar upadhaya /* 624f5feb5afSbhaskar upadhaya * system-clock = CCB clock/2 625f5feb5afSbhaskar upadhaya * Here gd->bus_clk = CCB clock 626f5feb5afSbhaskar upadhaya * We are using the system clock as 1588 Timer reference 627f5feb5afSbhaskar upadhaya * clock source select 628f5feb5afSbhaskar upadhaya */ 629f5feb5afSbhaskar upadhaya do_fixup_by_compat_u32(blob, "fsl,gianfar-ptp-timer", 630f5feb5afSbhaskar upadhaya "timer-frequency", gd->bus_clk/2, 1); 631a47a12beSStefan Roese } 632