2 * Copyright 2007-2011 Freescale Semiconductor, Inc.
5 * Wolfgang Denk, DENX Software Engineering, wd@denx.de.
7 * See file CREDITS for list of people who contributed to this
10 * This program is free software; you can redistribute it and/or
11 * modify it under the terms of the GNU General Public License as
12 * published by the Free Software Foundation; either version 2 of
13 * the License, or (at your option) any later version.
15 * This program is distributed in the hope that it will be useful,
16 * but WITHOUT ANY WARRANTY; without even the implied warranty of
17 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
18 * GNU General Public License for more details.
20 * You should have received a copy of the GNU General Public License
21 * along with this program; if not, write to the Free Software
22 * Foundation, Inc., 59 Temple Place, Suite 330, Boston,
28 #include <fdt_support.h>
29 #include <asm/processor.h>
30 #include <linux/ctype.h>
32 #include <asm/fsl_portals.h>
33 #ifdef CONFIG_FSL_ESDHC
34 #include <fsl_esdhc.h>
37 DECLARE_GLOBAL_DATA_PTR;
39 extern void ft_qe_setup(void *blob);
40 extern void ft_fixup_num_cores(void *blob);
41 extern void ft_srio_setup(void *blob);
46 void ft_fixup_cpu(void *blob, u64 memory_limit)
49 ulong spin_tbl_addr = get_spin_phys_addr();
50 u32 bootpg = determine_mp_bootpg();
52 const char *enable_method;
54 off = fdt_node_offset_by_prop_value(blob, -1, "device_type", "cpu", 4);
55 while (off != -FDT_ERR_NOTFOUND) {
56 u32 *reg = (u32 *)fdt_getprop(blob, off, "reg", 0);
59 u64 val = *reg * SIZE_BOOT_ENTRY + spin_tbl_addr;
60 val = cpu_to_fdt32(val);
62 fdt_setprop_string(blob, off, "status",
65 fdt_setprop_string(blob, off, "status",
69 if (hold_cores_in_reset(0)) {
70 #ifdef CONFIG_FSL_CORENET
71 /* Cores held in reset, use BRR to release */
72 enable_method = "fsl,brr-holdoff";
74 /* Cores held in reset, use EEBPCR to release */
75 enable_method = "fsl,eebpcr-holdoff";
78 /* Cores out of reset and in a spin-loop */
79 enable_method = "spin-table";
81 fdt_setprop(blob, off, "cpu-release-addr",
85 fdt_setprop_string(blob, off, "enable-method",
88 printf ("cpu NULL\n");
90 off = fdt_node_offset_by_prop_value(blob, off,
91 "device_type", "cpu", 4);
94 /* Reserve the boot page so OSes dont use it */
95 if ((u64)bootpg < memory_limit) {
96 off = fdt_add_mem_rsv(blob, bootpg, (u64)4096);
98 printf("%s: %s\n", __FUNCTION__, fdt_strerror(off));
103 #ifdef CONFIG_SYS_FSL_CPC
104 static inline void ft_fixup_l3cache(void *blob, int off)
106 u32 line_size, num_ways, size, num_sets;
107 cpc_corenet_t *cpc = (void *)CONFIG_SYS_FSL_CPC_ADDR;
108 u32 cfg0 = in_be32(&cpc->cpccfg0);
110 size = CPC_CFG0_SZ_K(cfg0) * 1024 * CONFIG_SYS_NUM_CPC;
111 num_ways = CPC_CFG0_NUM_WAYS(cfg0);
112 line_size = CPC_CFG0_LINE_SZ(cfg0);
113 num_sets = size / (line_size * num_ways);
115 fdt_setprop(blob, off, "cache-unified", NULL, 0);
116 fdt_setprop_cell(blob, off, "cache-block-size", line_size);
117 fdt_setprop_cell(blob, off, "cache-size", size);
118 fdt_setprop_cell(blob, off, "cache-sets", num_sets);
119 fdt_setprop_cell(blob, off, "cache-level", 3);
120 #ifdef CONFIG_SYS_CACHE_STASHING
121 fdt_setprop_cell(blob, off, "cache-stash-id", 1);
125 #define ft_fixup_l3cache(x, y)
128 #if defined(CONFIG_L2_CACHE)
129 /* return size in kilobytes */
130 static inline u32 l2cache_size(void)
132 volatile ccsr_l2cache_t *l2cache = (void *)CONFIG_SYS_MPC85xx_L2_ADDR;
133 volatile u32 l2siz_field = (l2cache->l2ctl >> 28) & 0x3;
134 u32 ver = SVR_SOC_VER(get_svr());
136 switch (l2siz_field) {
140 if (ver == SVR_8540 || ver == SVR_8560 ||
141 ver == SVR_8541 || ver == SVR_8541_E ||
142 ver == SVR_8555 || ver == SVR_8555_E)
148 if (ver == SVR_8540 || ver == SVR_8560 ||
149 ver == SVR_8541 || ver == SVR_8541_E ||
150 ver == SVR_8555 || ver == SVR_8555_E)
163 static inline void ft_fixup_l2cache(void *blob)
167 struct cpu_type *cpu = identify_cpu(SVR_SOC_VER(get_svr()));
170 const u32 line_size = 32;
171 const u32 num_ways = 8;
172 const u32 size = l2cache_size() * 1024;
173 const u32 num_sets = size / (line_size * num_ways);
175 off = fdt_node_offset_by_prop_value(blob, -1, "device_type", "cpu", 4);
177 debug("no cpu node fount\n");
181 ph = (u32 *)fdt_getprop(blob, off, "next-level-cache", 0);
184 debug("no next-level-cache property\n");
188 off = fdt_node_offset_by_phandle(blob, *ph);
190 printf("%s: %s\n", __func__, fdt_strerror(off));
195 if (isdigit(cpu->name[0]))
196 len = sprintf(compat_buf,
197 "fsl,mpc%s-l2-cache-controller", cpu->name);
199 len = sprintf(compat_buf,
200 "fsl,%c%s-l2-cache-controller",
201 tolower(cpu->name[0]), cpu->name + 1);
203 sprintf(&compat_buf[len + 1], "cache");
205 fdt_setprop(blob, off, "cache-unified", NULL, 0);
206 fdt_setprop_cell(blob, off, "cache-block-size", line_size);
207 fdt_setprop_cell(blob, off, "cache-size", size);
208 fdt_setprop_cell(blob, off, "cache-sets", num_sets);
209 fdt_setprop_cell(blob, off, "cache-level", 2);
210 fdt_setprop(blob, off, "compatible", compat_buf, sizeof(compat_buf));
212 /* we dont bother w/L3 since no platform of this type has one */
214 #elif defined(CONFIG_BACKSIDE_L2_CACHE)
215 static inline void ft_fixup_l2cache(void *blob)
217 int off, l2_off, l3_off = -1;
219 u32 l2cfg0 = mfspr(SPRN_L2CFG0);
220 u32 size, line_size, num_ways, num_sets;
222 size = (l2cfg0 & 0x3fff) * 64 * 1024;
223 num_ways = ((l2cfg0 >> 14) & 0x1f) + 1;
224 line_size = (((l2cfg0 >> 23) & 0x3) + 1) * 32;
225 num_sets = size / (line_size * num_ways);
227 off = fdt_node_offset_by_prop_value(blob, -1, "device_type", "cpu", 4);
229 while (off != -FDT_ERR_NOTFOUND) {
230 ph = (u32 *)fdt_getprop(blob, off, "next-level-cache", 0);
233 debug("no next-level-cache property\n");
237 l2_off = fdt_node_offset_by_phandle(blob, *ph);
239 printf("%s: %s\n", __func__, fdt_strerror(off));
243 #ifdef CONFIG_SYS_CACHE_STASHING
245 u32 *reg = (u32 *)fdt_getprop(blob, off, "reg", 0);
247 fdt_setprop_cell(blob, l2_off, "cache-stash-id",
248 (*reg * 2) + 32 + 1);
252 fdt_setprop(blob, l2_off, "cache-unified", NULL, 0);
253 fdt_setprop_cell(blob, l2_off, "cache-block-size", line_size);
254 fdt_setprop_cell(blob, l2_off, "cache-size", size);
255 fdt_setprop_cell(blob, l2_off, "cache-sets", num_sets);
256 fdt_setprop_cell(blob, l2_off, "cache-level", 2);
257 fdt_setprop(blob, l2_off, "compatible", "cache", 6);
260 ph = (u32 *)fdt_getprop(blob, l2_off, "next-level-cache", 0);
263 debug("no next-level-cache property\n");
269 off = fdt_node_offset_by_prop_value(blob, off,
270 "device_type", "cpu", 4);
273 l3_off = fdt_node_offset_by_phandle(blob, l3_off);
275 printf("%s: %s\n", __func__, fdt_strerror(off));
278 ft_fixup_l3cache(blob, l3_off);
282 #define ft_fixup_l2cache(x)
285 static inline void ft_fixup_cache(void *blob)
289 off = fdt_node_offset_by_prop_value(blob, -1, "device_type", "cpu", 4);
291 while (off != -FDT_ERR_NOTFOUND) {
292 u32 l1cfg0 = mfspr(SPRN_L1CFG0);
293 u32 l1cfg1 = mfspr(SPRN_L1CFG1);
294 u32 isize, iline_size, inum_sets, inum_ways;
295 u32 dsize, dline_size, dnum_sets, dnum_ways;
298 dsize = (l1cfg0 & 0x7ff) * 1024;
299 dnum_ways = ((l1cfg0 >> 11) & 0xff) + 1;
300 dline_size = (((l1cfg0 >> 23) & 0x3) + 1) * 32;
301 dnum_sets = dsize / (dline_size * dnum_ways);
303 fdt_setprop_cell(blob, off, "d-cache-block-size", dline_size);
304 fdt_setprop_cell(blob, off, "d-cache-size", dsize);
305 fdt_setprop_cell(blob, off, "d-cache-sets", dnum_sets);
307 #ifdef CONFIG_SYS_CACHE_STASHING
309 u32 *reg = (u32 *)fdt_getprop(blob, off, "reg", 0);
311 fdt_setprop_cell(blob, off, "cache-stash-id",
312 (*reg * 2) + 32 + 0);
317 isize = (l1cfg1 & 0x7ff) * 1024;
318 inum_ways = ((l1cfg1 >> 11) & 0xff) + 1;
319 iline_size = (((l1cfg1 >> 23) & 0x3) + 1) * 32;
320 inum_sets = isize / (iline_size * inum_ways);
322 fdt_setprop_cell(blob, off, "i-cache-block-size", iline_size);
323 fdt_setprop_cell(blob, off, "i-cache-size", isize);
324 fdt_setprop_cell(blob, off, "i-cache-sets", inum_sets);
326 off = fdt_node_offset_by_prop_value(blob, off,
327 "device_type", "cpu", 4);
330 ft_fixup_l2cache(blob);
334 void fdt_add_enet_stashing(void *fdt)
336 do_fixup_by_compat(fdt, "gianfar", "bd-stash", NULL, 0, 1);
338 do_fixup_by_compat_u32(fdt, "gianfar", "rx-stash-len", 96, 1);
340 do_fixup_by_compat_u32(fdt, "gianfar", "rx-stash-idx", 0, 1);
343 #if defined(CONFIG_SYS_DPAA_FMAN) || defined(CONFIG_SYS_DPAA_PME)
344 static void ft_fixup_clks(void *blob, const char *compat, u32 offset,
347 phys_addr_t phys = offset + CONFIG_SYS_CCSRBAR_PHYS;
348 int off = fdt_node_offset_by_compat_reg(blob, compat, phys);
351 off = fdt_setprop_cell(blob, off, "clock-frequency", freq);
353 printf("WARNING enable to set clock-frequency "
354 "for %s: %s\n", compat, fdt_strerror(off));
358 static void ft_fixup_dpaa_clks(void *blob)
362 get_sys_info(&sysinfo);
363 ft_fixup_clks(blob, "fsl,fman", CONFIG_SYS_FSL_FM1_OFFSET,
364 sysinfo.freqFMan[0]);
366 #if (CONFIG_SYS_NUM_FMAN == 2)
367 ft_fixup_clks(blob, "fsl,fman", CONFIG_SYS_FSL_FM2_OFFSET,
368 sysinfo.freqFMan[1]);
371 #ifdef CONFIG_SYS_DPAA_PME
372 do_fixup_by_compat_u32(blob, "fsl,pme",
373 "clock-frequency", sysinfo.freqPME, 1);
377 #define ft_fixup_dpaa_clks(x)
381 static void ft_fixup_qe_snum(void *blob)
385 svr = mfspr(SPRN_SVR);
386 if (SVR_SOC_VER(svr) == SVR_8569_E) {
387 if(IS_SVR_REV(svr, 1, 0))
388 do_fixup_by_compat_u32(blob, "fsl,qe",
389 "fsl,qe-num-snums", 46, 1);
391 do_fixup_by_compat_u32(blob, "fsl,qe",
392 "fsl,qe-num-snums", 76, 1);
397 void ft_cpu_setup(void *blob, bd_t *bd)
403 /* delete crypto node if not on an E-processor */
404 if (!IS_E_PROCESSOR(get_svr()))
405 fdt_fixup_crypto_node(blob, 0);
407 fdt_fixup_ethernet(blob);
409 fdt_add_enet_stashing(blob);
411 do_fixup_by_prop_u32(blob, "device_type", "cpu", 4,
412 "timebase-frequency", get_tbclk(), 1);
413 do_fixup_by_prop_u32(blob, "device_type", "cpu", 4,
414 "bus-frequency", bd->bi_busfreq, 1);
415 get_sys_info(&sysinfo);
416 off = fdt_node_offset_by_prop_value(blob, -1, "device_type", "cpu", 4);
417 while (off != -FDT_ERR_NOTFOUND) {
418 u32 *reg = (u32 *)fdt_getprop(blob, off, "reg", 0);
419 val = cpu_to_fdt32(sysinfo.freqProcessor[*reg]);
420 fdt_setprop(blob, off, "clock-frequency", &val, 4);
421 off = fdt_node_offset_by_prop_value(blob, off, "device_type",
424 do_fixup_by_prop_u32(blob, "device_type", "soc", 4,
425 "bus-frequency", bd->bi_busfreq, 1);
427 do_fixup_by_compat_u32(blob, "fsl,pq3-localbus",
428 "bus-frequency", gd->lbc_clk, 1);
429 do_fixup_by_compat_u32(blob, "fsl,elbc",
430 "bus-frequency", gd->lbc_clk, 1);
433 ft_fixup_qe_snum(blob);
436 #ifdef CONFIG_SYS_NS16550
437 do_fixup_by_compat_u32(blob, "ns16550",
438 "clock-frequency", CONFIG_SYS_NS16550_CLK, 1);
442 do_fixup_by_compat_u32(blob, "fsl,cpm2-scc-uart",
443 "current-speed", bd->bi_baudrate, 1);
445 do_fixup_by_compat_u32(blob, "fsl,cpm2-brg",
446 "clock-frequency", bd->bi_brgfreq, 1);
449 #ifdef CONFIG_FSL_CORENET
450 do_fixup_by_compat_u32(blob, "fsl,qoriq-clockgen-1.0",
451 "clock-frequency", CONFIG_SYS_CLK_FREQ, 1);
454 fdt_fixup_memory(blob, (u64)bd->bi_memstart, (u64)bd->bi_memsize);
457 ft_fixup_cpu(blob, (u64)bd->bi_memstart + (u64)bd->bi_memsize);
458 ft_fixup_num_cores(blob);
461 ft_fixup_cache(blob);
463 #if defined(CONFIG_FSL_ESDHC)
464 fdt_fixup_esdhc(blob, bd);
467 ft_fixup_dpaa_clks(blob);
469 #if defined(CONFIG_SYS_BMAN_MEM_PHYS)
470 fdt_portal(blob, "fsl,bman-portal", "bman-portals",
471 (u64)CONFIG_SYS_BMAN_MEM_PHYS,
472 CONFIG_SYS_BMAN_MEM_SIZE);
475 #if defined(CONFIG_SYS_QMAN_MEM_PHYS)
476 fdt_portal(blob, "fsl,qman-portal", "qman-portals",
477 (u64)CONFIG_SYS_QMAN_MEM_PHYS,
478 CONFIG_SYS_QMAN_MEM_SIZE);
480 fdt_fixup_qportals(blob);
483 #ifdef CONFIG_SYS_SRIO