xref: /rk3399_rockchip-uboot/arch/powerpc/cpu/mpc85xx/fdt.c (revision 9d64c6bb4a0db0f1c74a46f1cabe85d5a7a8a19b)
1a47a12beSStefan Roese /*
28f3a7fa4SKumar Gala  * Copyright 2007-2010 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
36a47a12beSStefan Roese 
37a47a12beSStefan Roese DECLARE_GLOBAL_DATA_PTR;
38a47a12beSStefan Roese 
39a47a12beSStefan Roese extern void ft_qe_setup(void *blob);
40a47a12beSStefan Roese extern void ft_fixup_num_cores(void *blob);
41a47a12beSStefan Roese 
42a47a12beSStefan Roese #ifdef CONFIG_MP
43a47a12beSStefan Roese #include "mp.h"
44a47a12beSStefan Roese 
45a47a12beSStefan Roese void ft_fixup_cpu(void *blob, u64 memory_limit)
46a47a12beSStefan Roese {
47a47a12beSStefan Roese 	int off;
48a47a12beSStefan Roese 	ulong spin_tbl_addr = get_spin_phys_addr();
49a47a12beSStefan Roese 	u32 bootpg = determine_mp_bootpg();
50a47a12beSStefan Roese 	u32 id = get_my_id();
51*9d64c6bbSAaron Sierra 	const char *enable_method;
52a47a12beSStefan Roese 
53a47a12beSStefan Roese 	off = fdt_node_offset_by_prop_value(blob, -1, "device_type", "cpu", 4);
54a47a12beSStefan Roese 	while (off != -FDT_ERR_NOTFOUND) {
55a47a12beSStefan Roese 		u32 *reg = (u32 *)fdt_getprop(blob, off, "reg", 0);
56a47a12beSStefan Roese 
57a47a12beSStefan Roese 		if (reg) {
58a47a12beSStefan Roese 			u64 val = *reg * SIZE_BOOT_ENTRY + spin_tbl_addr;
59a47a12beSStefan Roese 			val = cpu_to_fdt32(val);
60b80d3054SMatthew McClintock 			if (*reg == id) {
61b80d3054SMatthew McClintock 				fdt_setprop_string(blob, off, "status",
62b80d3054SMatthew McClintock 								"okay");
63b80d3054SMatthew McClintock 			} else {
64a47a12beSStefan Roese 				fdt_setprop_string(blob, off, "status",
65a47a12beSStefan Roese 								"disabled");
66b80d3054SMatthew McClintock 			}
67*9d64c6bbSAaron Sierra 
68*9d64c6bbSAaron Sierra 			if (hold_cores_in_reset(0)) {
69*9d64c6bbSAaron Sierra #ifdef CONFIG_FSL_CORENET
70*9d64c6bbSAaron Sierra 				/* Cores held in reset, use BRR to release */
71*9d64c6bbSAaron Sierra 				enable_method = "fsl,brr-holdoff";
72*9d64c6bbSAaron Sierra #else
73*9d64c6bbSAaron Sierra 				/* Cores held in reset, use EEBPCR to release */
74*9d64c6bbSAaron Sierra 				enable_method = "fsl,eebpcr-holdoff";
75*9d64c6bbSAaron Sierra #endif
76*9d64c6bbSAaron Sierra 			} else {
77*9d64c6bbSAaron Sierra 				/* Cores out of reset and in a spin-loop */
78*9d64c6bbSAaron Sierra 				enable_method = "spin-table";
79*9d64c6bbSAaron Sierra 
80a47a12beSStefan Roese 				fdt_setprop(blob, off, "cpu-release-addr",
81a47a12beSStefan Roese 						&val, sizeof(val));
82*9d64c6bbSAaron Sierra 			}
83*9d64c6bbSAaron Sierra 
84*9d64c6bbSAaron Sierra 			fdt_setprop_string(blob, off, "enable-method",
85*9d64c6bbSAaron Sierra 							enable_method);
86a47a12beSStefan Roese 		} else {
87a47a12beSStefan Roese 			printf ("cpu NULL\n");
88a47a12beSStefan Roese 		}
89a47a12beSStefan Roese 		off = fdt_node_offset_by_prop_value(blob, off,
90a47a12beSStefan Roese 				"device_type", "cpu", 4);
91a47a12beSStefan Roese 	}
92a47a12beSStefan Roese 
93a47a12beSStefan Roese 	/* Reserve the boot page so OSes dont use it */
94a47a12beSStefan Roese 	if ((u64)bootpg < memory_limit) {
95a47a12beSStefan Roese 		off = fdt_add_mem_rsv(blob, bootpg, (u64)4096);
96a47a12beSStefan Roese 		if (off < 0)
97a47a12beSStefan Roese 			printf("%s: %s\n", __FUNCTION__, fdt_strerror(off));
98a47a12beSStefan Roese 	}
99a47a12beSStefan Roese }
100a47a12beSStefan Roese #endif
101a47a12beSStefan Roese 
1026aba33e9SKumar Gala #ifdef CONFIG_SYS_FSL_CPC
1036aba33e9SKumar Gala static inline void ft_fixup_l3cache(void *blob, int off)
1046aba33e9SKumar Gala {
1056aba33e9SKumar Gala 	u32 line_size, num_ways, size, num_sets;
1066aba33e9SKumar Gala 	cpc_corenet_t *cpc = (void *)CONFIG_SYS_FSL_CPC_ADDR;
1076aba33e9SKumar Gala 	u32 cfg0 = in_be32(&cpc->cpccfg0);
1086aba33e9SKumar Gala 
1096aba33e9SKumar Gala 	size = CPC_CFG0_SZ_K(cfg0) * 1024 * CONFIG_SYS_NUM_CPC;
1106aba33e9SKumar Gala 	num_ways = CPC_CFG0_NUM_WAYS(cfg0);
1116aba33e9SKumar Gala 	line_size = CPC_CFG0_LINE_SZ(cfg0);
1126aba33e9SKumar Gala 	num_sets = size / (line_size * num_ways);
1136aba33e9SKumar Gala 
1146aba33e9SKumar Gala 	fdt_setprop(blob, off, "cache-unified", NULL, 0);
1156aba33e9SKumar Gala 	fdt_setprop_cell(blob, off, "cache-block-size", line_size);
1166aba33e9SKumar Gala 	fdt_setprop_cell(blob, off, "cache-size", size);
1176aba33e9SKumar Gala 	fdt_setprop_cell(blob, off, "cache-sets", num_sets);
1186aba33e9SKumar Gala 	fdt_setprop_cell(blob, off, "cache-level", 3);
1196aba33e9SKumar Gala #ifdef CONFIG_SYS_CACHE_STASHING
1206aba33e9SKumar Gala 	fdt_setprop_cell(blob, off, "cache-stash-id", 1);
1216aba33e9SKumar Gala #endif
1226aba33e9SKumar Gala }
1236aba33e9SKumar Gala #else
124a47a12beSStefan Roese #define ft_fixup_l3cache(x, y)
1256aba33e9SKumar Gala #endif
126a47a12beSStefan Roese 
127a47a12beSStefan Roese #if defined(CONFIG_L2_CACHE)
128a47a12beSStefan Roese /* return size in kilobytes */
129a47a12beSStefan Roese static inline u32 l2cache_size(void)
130a47a12beSStefan Roese {
131a47a12beSStefan Roese 	volatile ccsr_l2cache_t *l2cache = (void *)CONFIG_SYS_MPC85xx_L2_ADDR;
132a47a12beSStefan Roese 	volatile u32 l2siz_field = (l2cache->l2ctl >> 28) & 0x3;
133a47a12beSStefan Roese 	u32 ver = SVR_SOC_VER(get_svr());
134a47a12beSStefan Roese 
135a47a12beSStefan Roese 	switch (l2siz_field) {
136a47a12beSStefan Roese 	case 0x0:
137a47a12beSStefan Roese 		break;
138a47a12beSStefan Roese 	case 0x1:
139a47a12beSStefan Roese 		if (ver == SVR_8540 || ver == SVR_8560   ||
140a47a12beSStefan Roese 		    ver == SVR_8541 || ver == SVR_8541_E ||
141a47a12beSStefan Roese 		    ver == SVR_8555 || ver == SVR_8555_E)
142a47a12beSStefan Roese 			return 128;
143a47a12beSStefan Roese 		else
144a47a12beSStefan Roese 			return 256;
145a47a12beSStefan Roese 		break;
146a47a12beSStefan Roese 	case 0x2:
147a47a12beSStefan Roese 		if (ver == SVR_8540 || ver == SVR_8560   ||
148a47a12beSStefan Roese 		    ver == SVR_8541 || ver == SVR_8541_E ||
149a47a12beSStefan Roese 		    ver == SVR_8555 || ver == SVR_8555_E)
150a47a12beSStefan Roese 			return 256;
151a47a12beSStefan Roese 		else
152a47a12beSStefan Roese 			return 512;
153a47a12beSStefan Roese 		break;
154a47a12beSStefan Roese 	case 0x3:
155a47a12beSStefan Roese 		return 1024;
156a47a12beSStefan Roese 		break;
157a47a12beSStefan Roese 	}
158a47a12beSStefan Roese 
159a47a12beSStefan Roese 	return 0;
160a47a12beSStefan Roese }
161a47a12beSStefan Roese 
162a47a12beSStefan Roese static inline void ft_fixup_l2cache(void *blob)
163a47a12beSStefan Roese {
164a47a12beSStefan Roese 	int len, off;
165a47a12beSStefan Roese 	u32 *ph;
166a47a12beSStefan Roese 	struct cpu_type *cpu = identify_cpu(SVR_SOC_VER(get_svr()));
167a47a12beSStefan Roese 	char compat_buf[38];
168a47a12beSStefan Roese 
169a47a12beSStefan Roese 	const u32 line_size = 32;
170a47a12beSStefan Roese 	const u32 num_ways = 8;
171a47a12beSStefan Roese 	const u32 size = l2cache_size() * 1024;
172a47a12beSStefan Roese 	const u32 num_sets = size / (line_size * num_ways);
173a47a12beSStefan Roese 
174a47a12beSStefan Roese 	off = fdt_node_offset_by_prop_value(blob, -1, "device_type", "cpu", 4);
175a47a12beSStefan Roese 	if (off < 0) {
176a47a12beSStefan Roese 		debug("no cpu node fount\n");
177a47a12beSStefan Roese 		return;
178a47a12beSStefan Roese 	}
179a47a12beSStefan Roese 
180a47a12beSStefan Roese 	ph = (u32 *)fdt_getprop(blob, off, "next-level-cache", 0);
181a47a12beSStefan Roese 
182a47a12beSStefan Roese 	if (ph == NULL) {
183a47a12beSStefan Roese 		debug("no next-level-cache property\n");
184a47a12beSStefan Roese 		return ;
185a47a12beSStefan Roese 	}
186a47a12beSStefan Roese 
187a47a12beSStefan Roese 	off = fdt_node_offset_by_phandle(blob, *ph);
188a47a12beSStefan Roese 	if (off < 0) {
189a47a12beSStefan Roese 		printf("%s: %s\n", __func__, fdt_strerror(off));
190a47a12beSStefan Roese 		return ;
191a47a12beSStefan Roese 	}
192a47a12beSStefan Roese 
193a47a12beSStefan Roese 	if (cpu) {
194a47a12beSStefan Roese 		if (isdigit(cpu->name[0]))
195a47a12beSStefan Roese 			len = sprintf(compat_buf,
196a47a12beSStefan Roese 				"fsl,mpc%s-l2-cache-controller", cpu->name);
197a47a12beSStefan Roese 		else
198a47a12beSStefan Roese 			len = sprintf(compat_buf,
199a47a12beSStefan Roese 				"fsl,%c%s-l2-cache-controller",
200a47a12beSStefan Roese 				tolower(cpu->name[0]), cpu->name + 1);
201a47a12beSStefan Roese 
202a47a12beSStefan Roese 		sprintf(&compat_buf[len + 1], "cache");
203a47a12beSStefan Roese 	}
204a47a12beSStefan Roese 	fdt_setprop(blob, off, "cache-unified", NULL, 0);
205a47a12beSStefan Roese 	fdt_setprop_cell(blob, off, "cache-block-size", line_size);
206a47a12beSStefan Roese 	fdt_setprop_cell(blob, off, "cache-size", size);
207a47a12beSStefan Roese 	fdt_setprop_cell(blob, off, "cache-sets", num_sets);
208a47a12beSStefan Roese 	fdt_setprop_cell(blob, off, "cache-level", 2);
209a47a12beSStefan Roese 	fdt_setprop(blob, off, "compatible", compat_buf, sizeof(compat_buf));
210a47a12beSStefan Roese 
211a47a12beSStefan Roese 	/* we dont bother w/L3 since no platform of this type has one */
212a47a12beSStefan Roese }
213a47a12beSStefan Roese #elif defined(CONFIG_BACKSIDE_L2_CACHE)
214a47a12beSStefan Roese static inline void ft_fixup_l2cache(void *blob)
215a47a12beSStefan Roese {
216a47a12beSStefan Roese 	int off, l2_off, l3_off = -1;
217a47a12beSStefan Roese 	u32 *ph;
218a47a12beSStefan Roese 	u32 l2cfg0 = mfspr(SPRN_L2CFG0);
219a47a12beSStefan Roese 	u32 size, line_size, num_ways, num_sets;
220a47a12beSStefan Roese 
221a47a12beSStefan Roese 	size = (l2cfg0 & 0x3fff) * 64 * 1024;
222a47a12beSStefan Roese 	num_ways = ((l2cfg0 >> 14) & 0x1f) + 1;
223a47a12beSStefan Roese 	line_size = (((l2cfg0 >> 23) & 0x3) + 1) * 32;
224a47a12beSStefan Roese 	num_sets = size / (line_size * num_ways);
225a47a12beSStefan Roese 
226a47a12beSStefan Roese 	off = fdt_node_offset_by_prop_value(blob, -1, "device_type", "cpu", 4);
227a47a12beSStefan Roese 
228a47a12beSStefan Roese 	while (off != -FDT_ERR_NOTFOUND) {
229a47a12beSStefan Roese 		ph = (u32 *)fdt_getprop(blob, off, "next-level-cache", 0);
230a47a12beSStefan Roese 
231a47a12beSStefan Roese 		if (ph == NULL) {
232a47a12beSStefan Roese 			debug("no next-level-cache property\n");
233a47a12beSStefan Roese 			goto next;
234a47a12beSStefan Roese 		}
235a47a12beSStefan Roese 
236a47a12beSStefan Roese 		l2_off = fdt_node_offset_by_phandle(blob, *ph);
237a47a12beSStefan Roese 		if (l2_off < 0) {
238a47a12beSStefan Roese 			printf("%s: %s\n", __func__, fdt_strerror(off));
239a47a12beSStefan Roese 			goto next;
240a47a12beSStefan Roese 		}
241a47a12beSStefan Roese 
242a47a12beSStefan Roese #ifdef CONFIG_SYS_CACHE_STASHING
243a47a12beSStefan Roese 		{
244a47a12beSStefan Roese 			u32 *reg = (u32 *)fdt_getprop(blob, off, "reg", 0);
245a47a12beSStefan Roese 			if (reg)
246a47a12beSStefan Roese 				fdt_setprop_cell(blob, l2_off, "cache-stash-id",
247a47a12beSStefan Roese 					 (*reg * 2) + 32 + 1);
248a47a12beSStefan Roese 		}
249a47a12beSStefan Roese #endif
250a47a12beSStefan Roese 
251a47a12beSStefan Roese 		fdt_setprop(blob, l2_off, "cache-unified", NULL, 0);
252a47a12beSStefan Roese 		fdt_setprop_cell(blob, l2_off, "cache-block-size", line_size);
253a47a12beSStefan Roese 		fdt_setprop_cell(blob, l2_off, "cache-size", size);
254a47a12beSStefan Roese 		fdt_setprop_cell(blob, l2_off, "cache-sets", num_sets);
255a47a12beSStefan Roese 		fdt_setprop_cell(blob, l2_off, "cache-level", 2);
256a47a12beSStefan Roese 		fdt_setprop(blob, l2_off, "compatible", "cache", 6);
257a47a12beSStefan Roese 
258a47a12beSStefan Roese 		if (l3_off < 0) {
259a47a12beSStefan Roese 			ph = (u32 *)fdt_getprop(blob, l2_off, "next-level-cache", 0);
260a47a12beSStefan Roese 
261a47a12beSStefan Roese 			if (ph == NULL) {
262a47a12beSStefan Roese 				debug("no next-level-cache property\n");
263a47a12beSStefan Roese 				goto next;
264a47a12beSStefan Roese 			}
265a47a12beSStefan Roese 			l3_off = *ph;
266a47a12beSStefan Roese 		}
267a47a12beSStefan Roese next:
268a47a12beSStefan Roese 		off = fdt_node_offset_by_prop_value(blob, off,
269a47a12beSStefan Roese 				"device_type", "cpu", 4);
270a47a12beSStefan Roese 	}
271a47a12beSStefan Roese 	if (l3_off > 0) {
272a47a12beSStefan Roese 		l3_off = fdt_node_offset_by_phandle(blob, l3_off);
273a47a12beSStefan Roese 		if (l3_off < 0) {
274a47a12beSStefan Roese 			printf("%s: %s\n", __func__, fdt_strerror(off));
275a47a12beSStefan Roese 			return ;
276a47a12beSStefan Roese 		}
277a47a12beSStefan Roese 		ft_fixup_l3cache(blob, l3_off);
278a47a12beSStefan Roese 	}
279a47a12beSStefan Roese }
280a47a12beSStefan Roese #else
281a47a12beSStefan Roese #define ft_fixup_l2cache(x)
282a47a12beSStefan Roese #endif
283a47a12beSStefan Roese 
284a47a12beSStefan Roese static inline void ft_fixup_cache(void *blob)
285a47a12beSStefan Roese {
286a47a12beSStefan Roese 	int off;
287a47a12beSStefan Roese 
288a47a12beSStefan Roese 	off = fdt_node_offset_by_prop_value(blob, -1, "device_type", "cpu", 4);
289a47a12beSStefan Roese 
290a47a12beSStefan Roese 	while (off != -FDT_ERR_NOTFOUND) {
291a47a12beSStefan Roese 		u32 l1cfg0 = mfspr(SPRN_L1CFG0);
292a47a12beSStefan Roese 		u32 l1cfg1 = mfspr(SPRN_L1CFG1);
293a47a12beSStefan Roese 		u32 isize, iline_size, inum_sets, inum_ways;
294a47a12beSStefan Roese 		u32 dsize, dline_size, dnum_sets, dnum_ways;
295a47a12beSStefan Roese 
296a47a12beSStefan Roese 		/* d-side config */
297a47a12beSStefan Roese 		dsize = (l1cfg0 & 0x7ff) * 1024;
298a47a12beSStefan Roese 		dnum_ways = ((l1cfg0 >> 11) & 0xff) + 1;
299a47a12beSStefan Roese 		dline_size = (((l1cfg0 >> 23) & 0x3) + 1) * 32;
300a47a12beSStefan Roese 		dnum_sets = dsize / (dline_size * dnum_ways);
301a47a12beSStefan Roese 
302a47a12beSStefan Roese 		fdt_setprop_cell(blob, off, "d-cache-block-size", dline_size);
303a47a12beSStefan Roese 		fdt_setprop_cell(blob, off, "d-cache-size", dsize);
304a47a12beSStefan Roese 		fdt_setprop_cell(blob, off, "d-cache-sets", dnum_sets);
305a47a12beSStefan Roese 
306a47a12beSStefan Roese #ifdef CONFIG_SYS_CACHE_STASHING
307a47a12beSStefan Roese 		{
308a47a12beSStefan Roese 			u32 *reg = (u32 *)fdt_getprop(blob, off, "reg", 0);
309a47a12beSStefan Roese 			if (reg)
310a47a12beSStefan Roese 				fdt_setprop_cell(blob, off, "cache-stash-id",
311a47a12beSStefan Roese 					 (*reg * 2) + 32 + 0);
312a47a12beSStefan Roese 		}
313a47a12beSStefan Roese #endif
314a47a12beSStefan Roese 
315a47a12beSStefan Roese 		/* i-side config */
316a47a12beSStefan Roese 		isize = (l1cfg1 & 0x7ff) * 1024;
317a47a12beSStefan Roese 		inum_ways = ((l1cfg1 >> 11) & 0xff) + 1;
318a47a12beSStefan Roese 		iline_size = (((l1cfg1 >> 23) & 0x3) + 1) * 32;
319a47a12beSStefan Roese 		inum_sets = isize / (iline_size * inum_ways);
320a47a12beSStefan Roese 
321a47a12beSStefan Roese 		fdt_setprop_cell(blob, off, "i-cache-block-size", iline_size);
322a47a12beSStefan Roese 		fdt_setprop_cell(blob, off, "i-cache-size", isize);
323a47a12beSStefan Roese 		fdt_setprop_cell(blob, off, "i-cache-sets", inum_sets);
324a47a12beSStefan Roese 
325a47a12beSStefan Roese 		off = fdt_node_offset_by_prop_value(blob, off,
326a47a12beSStefan Roese 				"device_type", "cpu", 4);
327a47a12beSStefan Roese 	}
328a47a12beSStefan Roese 
329a47a12beSStefan Roese 	ft_fixup_l2cache(blob);
330a47a12beSStefan Roese }
331a47a12beSStefan Roese 
332a47a12beSStefan Roese 
333a47a12beSStefan Roese void fdt_add_enet_stashing(void *fdt)
334a47a12beSStefan Roese {
335a47a12beSStefan Roese 	do_fixup_by_compat(fdt, "gianfar", "bd-stash", NULL, 0, 1);
336a47a12beSStefan Roese 
337a47a12beSStefan Roese 	do_fixup_by_compat_u32(fdt, "gianfar", "rx-stash-len", 96, 1);
338a47a12beSStefan Roese 
339a47a12beSStefan Roese 	do_fixup_by_compat_u32(fdt, "gianfar", "rx-stash-idx", 0, 1);
340a47a12beSStefan Roese }
341a47a12beSStefan Roese 
342a47a12beSStefan Roese #if defined(CONFIG_SYS_DPAA_FMAN) || defined(CONFIG_SYS_DPAA_PME)
3431b942f74SKumar Gala static void ft_fixup_clks(void *blob, const char *compat, u32 offset,
3441b942f74SKumar Gala 			  unsigned long freq)
345a47a12beSStefan Roese {
3461b942f74SKumar Gala 	phys_addr_t phys = offset + CONFIG_SYS_CCSRBAR_PHYS;
3471b942f74SKumar Gala 	int off = fdt_node_offset_by_compat_reg(blob, compat, phys);
348a47a12beSStefan Roese 
349a47a12beSStefan Roese 	if (off >= 0) {
350a47a12beSStefan Roese 		off = fdt_setprop_cell(blob, off, "clock-frequency", freq);
351a47a12beSStefan Roese 		if (off > 0)
352a47a12beSStefan Roese 			printf("WARNING enable to set clock-frequency "
3531b942f74SKumar Gala 				"for %s: %s\n", compat, fdt_strerror(off));
354a47a12beSStefan Roese 	}
355a47a12beSStefan Roese }
356a47a12beSStefan Roese 
357a47a12beSStefan Roese static void ft_fixup_dpaa_clks(void *blob)
358a47a12beSStefan Roese {
359a47a12beSStefan Roese 	sys_info_t sysinfo;
360a47a12beSStefan Roese 
361a47a12beSStefan Roese 	get_sys_info(&sysinfo);
3621b942f74SKumar Gala 	ft_fixup_clks(blob, "fsl,fman", CONFIG_SYS_FSL_FM1_OFFSET,
3631b942f74SKumar Gala 			sysinfo.freqFMan[0]);
364a47a12beSStefan Roese 
365a47a12beSStefan Roese #if (CONFIG_SYS_NUM_FMAN == 2)
3661b942f74SKumar Gala 	ft_fixup_clks(blob, "fsl,fman", CONFIG_SYS_FSL_FM2_OFFSET,
3671b942f74SKumar Gala 			sysinfo.freqFMan[1]);
368a47a12beSStefan Roese #endif
369a47a12beSStefan Roese 
370a47a12beSStefan Roese #ifdef CONFIG_SYS_DPAA_PME
3711b942f74SKumar Gala 	do_fixup_by_compat_u32(blob, "fsl,pme",
3721b942f74SKumar Gala 		"clock-frequency", sysinfo.freqPME, 1);
373a47a12beSStefan Roese #endif
374a47a12beSStefan Roese }
375a47a12beSStefan Roese #else
376a47a12beSStefan Roese #define ft_fixup_dpaa_clks(x)
377a47a12beSStefan Roese #endif
378a47a12beSStefan Roese 
379a47a12beSStefan Roese #ifdef CONFIG_QE
380a47a12beSStefan Roese static void ft_fixup_qe_snum(void *blob)
381a47a12beSStefan Roese {
382a47a12beSStefan Roese 	unsigned int svr;
383a47a12beSStefan Roese 
384a47a12beSStefan Roese 	svr = mfspr(SPRN_SVR);
385a47a12beSStefan Roese 	if (SVR_SOC_VER(svr) == SVR_8569_E) {
386a47a12beSStefan Roese 		if(IS_SVR_REV(svr, 1, 0))
387a47a12beSStefan Roese 			do_fixup_by_compat_u32(blob, "fsl,qe",
388a47a12beSStefan Roese 				"fsl,qe-num-snums", 46, 1);
389a47a12beSStefan Roese 		else
390a47a12beSStefan Roese 			do_fixup_by_compat_u32(blob, "fsl,qe",
391a47a12beSStefan Roese 				"fsl,qe-num-snums", 76, 1);
392a47a12beSStefan Roese 	}
393a47a12beSStefan Roese }
394a47a12beSStefan Roese #endif
395a47a12beSStefan Roese 
396a47a12beSStefan Roese void ft_cpu_setup(void *blob, bd_t *bd)
397a47a12beSStefan Roese {
398a47a12beSStefan Roese 	int off;
399a47a12beSStefan Roese 	int val;
400a47a12beSStefan Roese 	sys_info_t sysinfo;
401a47a12beSStefan Roese 
402a47a12beSStefan Roese 	/* delete crypto node if not on an E-processor */
403a47a12beSStefan Roese 	if (!IS_E_PROCESSOR(get_svr()))
404a47a12beSStefan Roese 		fdt_fixup_crypto_node(blob, 0);
405a47a12beSStefan Roese 
406a47a12beSStefan Roese 	fdt_fixup_ethernet(blob);
407a47a12beSStefan Roese 
408a47a12beSStefan Roese 	fdt_add_enet_stashing(blob);
409a47a12beSStefan Roese 
410a47a12beSStefan Roese 	do_fixup_by_prop_u32(blob, "device_type", "cpu", 4,
411a47a12beSStefan Roese 		"timebase-frequency", get_tbclk(), 1);
412a47a12beSStefan Roese 	do_fixup_by_prop_u32(blob, "device_type", "cpu", 4,
413a47a12beSStefan Roese 		"bus-frequency", bd->bi_busfreq, 1);
414a47a12beSStefan Roese 	get_sys_info(&sysinfo);
415a47a12beSStefan Roese 	off = fdt_node_offset_by_prop_value(blob, -1, "device_type", "cpu", 4);
416a47a12beSStefan Roese 	while (off != -FDT_ERR_NOTFOUND) {
417a47a12beSStefan Roese 		u32 *reg = (u32 *)fdt_getprop(blob, off, "reg", 0);
418a47a12beSStefan Roese 		val = cpu_to_fdt32(sysinfo.freqProcessor[*reg]);
419a47a12beSStefan Roese 		fdt_setprop(blob, off, "clock-frequency", &val, 4);
420a47a12beSStefan Roese 		off = fdt_node_offset_by_prop_value(blob, off, "device_type",
421a47a12beSStefan Roese 							"cpu", 4);
422a47a12beSStefan Roese 	}
423a47a12beSStefan Roese 	do_fixup_by_prop_u32(blob, "device_type", "soc", 4,
424a47a12beSStefan Roese 		"bus-frequency", bd->bi_busfreq, 1);
425a47a12beSStefan Roese 
426a47a12beSStefan Roese 	do_fixup_by_compat_u32(blob, "fsl,pq3-localbus",
427a47a12beSStefan Roese 		"bus-frequency", gd->lbc_clk, 1);
428a47a12beSStefan Roese 	do_fixup_by_compat_u32(blob, "fsl,elbc",
429a47a12beSStefan Roese 		"bus-frequency", gd->lbc_clk, 1);
430a47a12beSStefan Roese #ifdef CONFIG_QE
431a47a12beSStefan Roese 	ft_qe_setup(blob);
432a47a12beSStefan Roese 	ft_fixup_qe_snum(blob);
433a47a12beSStefan Roese #endif
434a47a12beSStefan Roese 
435a47a12beSStefan Roese #ifdef CONFIG_SYS_NS16550
436a47a12beSStefan Roese 	do_fixup_by_compat_u32(blob, "ns16550",
437a47a12beSStefan Roese 		"clock-frequency", CONFIG_SYS_NS16550_CLK, 1);
438a47a12beSStefan Roese #endif
439a47a12beSStefan Roese 
440a47a12beSStefan Roese #ifdef CONFIG_CPM2
441a47a12beSStefan Roese 	do_fixup_by_compat_u32(blob, "fsl,cpm2-scc-uart",
442a47a12beSStefan Roese 		"current-speed", bd->bi_baudrate, 1);
443a47a12beSStefan Roese 
444a47a12beSStefan Roese 	do_fixup_by_compat_u32(blob, "fsl,cpm2-brg",
445a47a12beSStefan Roese 		"clock-frequency", bd->bi_brgfreq, 1);
446a47a12beSStefan Roese #endif
447a47a12beSStefan Roese 
44885f8cda3SKumar Gala #ifdef CONFIG_FSL_CORENET
44985f8cda3SKumar Gala 	do_fixup_by_compat_u32(blob, "fsl,qoriq-clockgen-1.0",
45085f8cda3SKumar Gala 		"clock-frequency", CONFIG_SYS_CLK_FREQ, 1);
45185f8cda3SKumar Gala #endif
45285f8cda3SKumar Gala 
453a47a12beSStefan Roese 	fdt_fixup_memory(blob, (u64)bd->bi_memstart, (u64)bd->bi_memsize);
454a47a12beSStefan Roese 
455a47a12beSStefan Roese #ifdef CONFIG_MP
456a47a12beSStefan Roese 	ft_fixup_cpu(blob, (u64)bd->bi_memstart + (u64)bd->bi_memsize);
457a47a12beSStefan Roese 	ft_fixup_num_cores(blob);
4588f3a7fa4SKumar Gala #endif
459a47a12beSStefan Roese 
460a47a12beSStefan Roese 	ft_fixup_cache(blob);
461a47a12beSStefan Roese 
462a47a12beSStefan Roese #if defined(CONFIG_FSL_ESDHC)
463a47a12beSStefan Roese 	fdt_fixup_esdhc(blob, bd);
464a47a12beSStefan Roese #endif
465a47a12beSStefan Roese 
466a47a12beSStefan Roese 	ft_fixup_dpaa_clks(blob);
467db977abfSKumar Gala 
468db977abfSKumar Gala #if defined(CONFIG_SYS_BMAN_MEM_PHYS)
469db977abfSKumar Gala 	fdt_portal(blob, "fsl,bman-portal", "bman-portals",
470db977abfSKumar Gala 			(u64)CONFIG_SYS_BMAN_MEM_PHYS,
471db977abfSKumar Gala 			CONFIG_SYS_BMAN_MEM_SIZE);
472db977abfSKumar Gala #endif
473db977abfSKumar Gala 
474db977abfSKumar Gala #if defined(CONFIG_SYS_QMAN_MEM_PHYS)
475db977abfSKumar Gala 	fdt_portal(blob, "fsl,qman-portal", "qman-portals",
476db977abfSKumar Gala 			(u64)CONFIG_SYS_QMAN_MEM_PHYS,
477db977abfSKumar Gala 			CONFIG_SYS_QMAN_MEM_SIZE);
478db977abfSKumar Gala 
479db977abfSKumar Gala 	fdt_fixup_qportals(blob);
480db977abfSKumar Gala #endif
481a47a12beSStefan Roese }
482