xref: /openbmc/u-boot/arch/powerpc/cpu/mpc85xx/fdt.c (revision 6aba33e939c41358cf731cbbdd9d5ca59c9266e8)
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>
31*6aba33e9SKumar Gala #include <asm/io.h>
32a47a12beSStefan Roese #ifdef CONFIG_FSL_ESDHC
33a47a12beSStefan Roese #include <fsl_esdhc.h>
34a47a12beSStefan Roese #endif
35a47a12beSStefan Roese 
36a47a12beSStefan Roese DECLARE_GLOBAL_DATA_PTR;
37a47a12beSStefan Roese 
38a47a12beSStefan Roese extern void ft_qe_setup(void *blob);
39a47a12beSStefan Roese extern void ft_fixup_num_cores(void *blob);
40a47a12beSStefan Roese 
41a47a12beSStefan Roese #ifdef CONFIG_MP
42a47a12beSStefan Roese #include "mp.h"
43a47a12beSStefan Roese 
44a47a12beSStefan Roese void ft_fixup_cpu(void *blob, u64 memory_limit)
45a47a12beSStefan Roese {
46a47a12beSStefan Roese 	int off;
47a47a12beSStefan Roese 	ulong spin_tbl_addr = get_spin_phys_addr();
48a47a12beSStefan Roese 	u32 bootpg = determine_mp_bootpg();
49a47a12beSStefan Roese 	u32 id = get_my_id();
50a47a12beSStefan Roese 
51a47a12beSStefan Roese 	off = fdt_node_offset_by_prop_value(blob, -1, "device_type", "cpu", 4);
52a47a12beSStefan Roese 	while (off != -FDT_ERR_NOTFOUND) {
53a47a12beSStefan Roese 		u32 *reg = (u32 *)fdt_getprop(blob, off, "reg", 0);
54a47a12beSStefan Roese 
55a47a12beSStefan Roese 		if (reg) {
56a47a12beSStefan Roese 			if (*reg == id) {
57a47a12beSStefan Roese 				fdt_setprop_string(blob, off, "status", "okay");
58a47a12beSStefan Roese 			} else {
59a47a12beSStefan Roese 				u64 val = *reg * SIZE_BOOT_ENTRY + spin_tbl_addr;
60a47a12beSStefan Roese 				val = cpu_to_fdt32(val);
61a47a12beSStefan Roese 				fdt_setprop_string(blob, off, "status",
62a47a12beSStefan Roese 								"disabled");
63a47a12beSStefan Roese 				fdt_setprop_string(blob, off, "enable-method",
64a47a12beSStefan Roese 								"spin-table");
65a47a12beSStefan Roese 				fdt_setprop(blob, off, "cpu-release-addr",
66a47a12beSStefan Roese 						&val, sizeof(val));
67a47a12beSStefan Roese 			}
68a47a12beSStefan Roese 		} else {
69a47a12beSStefan Roese 			printf ("cpu NULL\n");
70a47a12beSStefan Roese 		}
71a47a12beSStefan Roese 		off = fdt_node_offset_by_prop_value(blob, off,
72a47a12beSStefan Roese 				"device_type", "cpu", 4);
73a47a12beSStefan Roese 	}
74a47a12beSStefan Roese 
75a47a12beSStefan Roese 	/* Reserve the boot page so OSes dont use it */
76a47a12beSStefan Roese 	if ((u64)bootpg < memory_limit) {
77a47a12beSStefan Roese 		off = fdt_add_mem_rsv(blob, bootpg, (u64)4096);
78a47a12beSStefan Roese 		if (off < 0)
79a47a12beSStefan Roese 			printf("%s: %s\n", __FUNCTION__, fdt_strerror(off));
80a47a12beSStefan Roese 	}
81a47a12beSStefan Roese }
82a47a12beSStefan Roese #endif
83a47a12beSStefan Roese 
84*6aba33e9SKumar Gala #ifdef CONFIG_SYS_FSL_CPC
85*6aba33e9SKumar Gala static inline void ft_fixup_l3cache(void *blob, int off)
86*6aba33e9SKumar Gala {
87*6aba33e9SKumar Gala 	u32 line_size, num_ways, size, num_sets;
88*6aba33e9SKumar Gala 	cpc_corenet_t *cpc = (void *)CONFIG_SYS_FSL_CPC_ADDR;
89*6aba33e9SKumar Gala 	u32 cfg0 = in_be32(&cpc->cpccfg0);
90*6aba33e9SKumar Gala 
91*6aba33e9SKumar Gala 	size = CPC_CFG0_SZ_K(cfg0) * 1024 * CONFIG_SYS_NUM_CPC;
92*6aba33e9SKumar Gala 	num_ways = CPC_CFG0_NUM_WAYS(cfg0);
93*6aba33e9SKumar Gala 	line_size = CPC_CFG0_LINE_SZ(cfg0);
94*6aba33e9SKumar Gala 	num_sets = size / (line_size * num_ways);
95*6aba33e9SKumar Gala 
96*6aba33e9SKumar Gala 	fdt_setprop(blob, off, "cache-unified", NULL, 0);
97*6aba33e9SKumar Gala 	fdt_setprop_cell(blob, off, "cache-block-size", line_size);
98*6aba33e9SKumar Gala 	fdt_setprop_cell(blob, off, "cache-size", size);
99*6aba33e9SKumar Gala 	fdt_setprop_cell(blob, off, "cache-sets", num_sets);
100*6aba33e9SKumar Gala 	fdt_setprop_cell(blob, off, "cache-level", 3);
101*6aba33e9SKumar Gala #ifdef CONFIG_SYS_CACHE_STASHING
102*6aba33e9SKumar Gala 	fdt_setprop_cell(blob, off, "cache-stash-id", 1);
103*6aba33e9SKumar Gala #endif
104*6aba33e9SKumar Gala }
105*6aba33e9SKumar Gala #else
106a47a12beSStefan Roese #define ft_fixup_l3cache(x, y)
107*6aba33e9SKumar Gala #endif
108a47a12beSStefan Roese 
109a47a12beSStefan Roese #if defined(CONFIG_L2_CACHE)
110a47a12beSStefan Roese /* return size in kilobytes */
111a47a12beSStefan Roese static inline u32 l2cache_size(void)
112a47a12beSStefan Roese {
113a47a12beSStefan Roese 	volatile ccsr_l2cache_t *l2cache = (void *)CONFIG_SYS_MPC85xx_L2_ADDR;
114a47a12beSStefan Roese 	volatile u32 l2siz_field = (l2cache->l2ctl >> 28) & 0x3;
115a47a12beSStefan Roese 	u32 ver = SVR_SOC_VER(get_svr());
116a47a12beSStefan Roese 
117a47a12beSStefan Roese 	switch (l2siz_field) {
118a47a12beSStefan Roese 	case 0x0:
119a47a12beSStefan Roese 		break;
120a47a12beSStefan Roese 	case 0x1:
121a47a12beSStefan Roese 		if (ver == SVR_8540 || ver == SVR_8560   ||
122a47a12beSStefan Roese 		    ver == SVR_8541 || ver == SVR_8541_E ||
123a47a12beSStefan Roese 		    ver == SVR_8555 || ver == SVR_8555_E)
124a47a12beSStefan Roese 			return 128;
125a47a12beSStefan Roese 		else
126a47a12beSStefan Roese 			return 256;
127a47a12beSStefan Roese 		break;
128a47a12beSStefan Roese 	case 0x2:
129a47a12beSStefan Roese 		if (ver == SVR_8540 || ver == SVR_8560   ||
130a47a12beSStefan Roese 		    ver == SVR_8541 || ver == SVR_8541_E ||
131a47a12beSStefan Roese 		    ver == SVR_8555 || ver == SVR_8555_E)
132a47a12beSStefan Roese 			return 256;
133a47a12beSStefan Roese 		else
134a47a12beSStefan Roese 			return 512;
135a47a12beSStefan Roese 		break;
136a47a12beSStefan Roese 	case 0x3:
137a47a12beSStefan Roese 		return 1024;
138a47a12beSStefan Roese 		break;
139a47a12beSStefan Roese 	}
140a47a12beSStefan Roese 
141a47a12beSStefan Roese 	return 0;
142a47a12beSStefan Roese }
143a47a12beSStefan Roese 
144a47a12beSStefan Roese static inline void ft_fixup_l2cache(void *blob)
145a47a12beSStefan Roese {
146a47a12beSStefan Roese 	int len, off;
147a47a12beSStefan Roese 	u32 *ph;
148a47a12beSStefan Roese 	struct cpu_type *cpu = identify_cpu(SVR_SOC_VER(get_svr()));
149a47a12beSStefan Roese 	char compat_buf[38];
150a47a12beSStefan Roese 
151a47a12beSStefan Roese 	const u32 line_size = 32;
152a47a12beSStefan Roese 	const u32 num_ways = 8;
153a47a12beSStefan Roese 	const u32 size = l2cache_size() * 1024;
154a47a12beSStefan Roese 	const u32 num_sets = size / (line_size * num_ways);
155a47a12beSStefan Roese 
156a47a12beSStefan Roese 	off = fdt_node_offset_by_prop_value(blob, -1, "device_type", "cpu", 4);
157a47a12beSStefan Roese 	if (off < 0) {
158a47a12beSStefan Roese 		debug("no cpu node fount\n");
159a47a12beSStefan Roese 		return;
160a47a12beSStefan Roese 	}
161a47a12beSStefan Roese 
162a47a12beSStefan Roese 	ph = (u32 *)fdt_getprop(blob, off, "next-level-cache", 0);
163a47a12beSStefan Roese 
164a47a12beSStefan Roese 	if (ph == NULL) {
165a47a12beSStefan Roese 		debug("no next-level-cache property\n");
166a47a12beSStefan Roese 		return ;
167a47a12beSStefan Roese 	}
168a47a12beSStefan Roese 
169a47a12beSStefan Roese 	off = fdt_node_offset_by_phandle(blob, *ph);
170a47a12beSStefan Roese 	if (off < 0) {
171a47a12beSStefan Roese 		printf("%s: %s\n", __func__, fdt_strerror(off));
172a47a12beSStefan Roese 		return ;
173a47a12beSStefan Roese 	}
174a47a12beSStefan Roese 
175a47a12beSStefan Roese 	if (cpu) {
176a47a12beSStefan Roese 		if (isdigit(cpu->name[0]))
177a47a12beSStefan Roese 			len = sprintf(compat_buf,
178a47a12beSStefan Roese 				"fsl,mpc%s-l2-cache-controller", cpu->name);
179a47a12beSStefan Roese 		else
180a47a12beSStefan Roese 			len = sprintf(compat_buf,
181a47a12beSStefan Roese 				"fsl,%c%s-l2-cache-controller",
182a47a12beSStefan Roese 				tolower(cpu->name[0]), cpu->name + 1);
183a47a12beSStefan Roese 
184a47a12beSStefan Roese 		sprintf(&compat_buf[len + 1], "cache");
185a47a12beSStefan Roese 	}
186a47a12beSStefan Roese 	fdt_setprop(blob, off, "cache-unified", NULL, 0);
187a47a12beSStefan Roese 	fdt_setprop_cell(blob, off, "cache-block-size", line_size);
188a47a12beSStefan Roese 	fdt_setprop_cell(blob, off, "cache-size", size);
189a47a12beSStefan Roese 	fdt_setprop_cell(blob, off, "cache-sets", num_sets);
190a47a12beSStefan Roese 	fdt_setprop_cell(blob, off, "cache-level", 2);
191a47a12beSStefan Roese 	fdt_setprop(blob, off, "compatible", compat_buf, sizeof(compat_buf));
192a47a12beSStefan Roese 
193a47a12beSStefan Roese 	/* we dont bother w/L3 since no platform of this type has one */
194a47a12beSStefan Roese }
195a47a12beSStefan Roese #elif defined(CONFIG_BACKSIDE_L2_CACHE)
196a47a12beSStefan Roese static inline void ft_fixup_l2cache(void *blob)
197a47a12beSStefan Roese {
198a47a12beSStefan Roese 	int off, l2_off, l3_off = -1;
199a47a12beSStefan Roese 	u32 *ph;
200a47a12beSStefan Roese 	u32 l2cfg0 = mfspr(SPRN_L2CFG0);
201a47a12beSStefan Roese 	u32 size, line_size, num_ways, num_sets;
202a47a12beSStefan Roese 
203a47a12beSStefan Roese 	size = (l2cfg0 & 0x3fff) * 64 * 1024;
204a47a12beSStefan Roese 	num_ways = ((l2cfg0 >> 14) & 0x1f) + 1;
205a47a12beSStefan Roese 	line_size = (((l2cfg0 >> 23) & 0x3) + 1) * 32;
206a47a12beSStefan Roese 	num_sets = size / (line_size * num_ways);
207a47a12beSStefan Roese 
208a47a12beSStefan Roese 	off = fdt_node_offset_by_prop_value(blob, -1, "device_type", "cpu", 4);
209a47a12beSStefan Roese 
210a47a12beSStefan Roese 	while (off != -FDT_ERR_NOTFOUND) {
211a47a12beSStefan Roese 		ph = (u32 *)fdt_getprop(blob, off, "next-level-cache", 0);
212a47a12beSStefan Roese 
213a47a12beSStefan Roese 		if (ph == NULL) {
214a47a12beSStefan Roese 			debug("no next-level-cache property\n");
215a47a12beSStefan Roese 			goto next;
216a47a12beSStefan Roese 		}
217a47a12beSStefan Roese 
218a47a12beSStefan Roese 		l2_off = fdt_node_offset_by_phandle(blob, *ph);
219a47a12beSStefan Roese 		if (l2_off < 0) {
220a47a12beSStefan Roese 			printf("%s: %s\n", __func__, fdt_strerror(off));
221a47a12beSStefan Roese 			goto next;
222a47a12beSStefan Roese 		}
223a47a12beSStefan Roese 
224a47a12beSStefan Roese #ifdef CONFIG_SYS_CACHE_STASHING
225a47a12beSStefan Roese 		{
226a47a12beSStefan Roese 			u32 *reg = (u32 *)fdt_getprop(blob, off, "reg", 0);
227a47a12beSStefan Roese 			if (reg)
228a47a12beSStefan Roese 				fdt_setprop_cell(blob, l2_off, "cache-stash-id",
229a47a12beSStefan Roese 					 (*reg * 2) + 32 + 1);
230a47a12beSStefan Roese 		}
231a47a12beSStefan Roese #endif
232a47a12beSStefan Roese 
233a47a12beSStefan Roese 		fdt_setprop(blob, l2_off, "cache-unified", NULL, 0);
234a47a12beSStefan Roese 		fdt_setprop_cell(blob, l2_off, "cache-block-size", line_size);
235a47a12beSStefan Roese 		fdt_setprop_cell(blob, l2_off, "cache-size", size);
236a47a12beSStefan Roese 		fdt_setprop_cell(blob, l2_off, "cache-sets", num_sets);
237a47a12beSStefan Roese 		fdt_setprop_cell(blob, l2_off, "cache-level", 2);
238a47a12beSStefan Roese 		fdt_setprop(blob, l2_off, "compatible", "cache", 6);
239a47a12beSStefan Roese 
240a47a12beSStefan Roese 		if (l3_off < 0) {
241a47a12beSStefan Roese 			ph = (u32 *)fdt_getprop(blob, l2_off, "next-level-cache", 0);
242a47a12beSStefan Roese 
243a47a12beSStefan Roese 			if (ph == NULL) {
244a47a12beSStefan Roese 				debug("no next-level-cache property\n");
245a47a12beSStefan Roese 				goto next;
246a47a12beSStefan Roese 			}
247a47a12beSStefan Roese 			l3_off = *ph;
248a47a12beSStefan Roese 		}
249a47a12beSStefan Roese next:
250a47a12beSStefan Roese 		off = fdt_node_offset_by_prop_value(blob, off,
251a47a12beSStefan Roese 				"device_type", "cpu", 4);
252a47a12beSStefan Roese 	}
253a47a12beSStefan Roese 	if (l3_off > 0) {
254a47a12beSStefan Roese 		l3_off = fdt_node_offset_by_phandle(blob, l3_off);
255a47a12beSStefan Roese 		if (l3_off < 0) {
256a47a12beSStefan Roese 			printf("%s: %s\n", __func__, fdt_strerror(off));
257a47a12beSStefan Roese 			return ;
258a47a12beSStefan Roese 		}
259a47a12beSStefan Roese 		ft_fixup_l3cache(blob, l3_off);
260a47a12beSStefan Roese 	}
261a47a12beSStefan Roese }
262a47a12beSStefan Roese #else
263a47a12beSStefan Roese #define ft_fixup_l2cache(x)
264a47a12beSStefan Roese #endif
265a47a12beSStefan Roese 
266a47a12beSStefan Roese static inline void ft_fixup_cache(void *blob)
267a47a12beSStefan Roese {
268a47a12beSStefan Roese 	int off;
269a47a12beSStefan Roese 
270a47a12beSStefan Roese 	off = fdt_node_offset_by_prop_value(blob, -1, "device_type", "cpu", 4);
271a47a12beSStefan Roese 
272a47a12beSStefan Roese 	while (off != -FDT_ERR_NOTFOUND) {
273a47a12beSStefan Roese 		u32 l1cfg0 = mfspr(SPRN_L1CFG0);
274a47a12beSStefan Roese 		u32 l1cfg1 = mfspr(SPRN_L1CFG1);
275a47a12beSStefan Roese 		u32 isize, iline_size, inum_sets, inum_ways;
276a47a12beSStefan Roese 		u32 dsize, dline_size, dnum_sets, dnum_ways;
277a47a12beSStefan Roese 
278a47a12beSStefan Roese 		/* d-side config */
279a47a12beSStefan Roese 		dsize = (l1cfg0 & 0x7ff) * 1024;
280a47a12beSStefan Roese 		dnum_ways = ((l1cfg0 >> 11) & 0xff) + 1;
281a47a12beSStefan Roese 		dline_size = (((l1cfg0 >> 23) & 0x3) + 1) * 32;
282a47a12beSStefan Roese 		dnum_sets = dsize / (dline_size * dnum_ways);
283a47a12beSStefan Roese 
284a47a12beSStefan Roese 		fdt_setprop_cell(blob, off, "d-cache-block-size", dline_size);
285a47a12beSStefan Roese 		fdt_setprop_cell(blob, off, "d-cache-size", dsize);
286a47a12beSStefan Roese 		fdt_setprop_cell(blob, off, "d-cache-sets", dnum_sets);
287a47a12beSStefan Roese 
288a47a12beSStefan Roese #ifdef CONFIG_SYS_CACHE_STASHING
289a47a12beSStefan Roese 		{
290a47a12beSStefan Roese 			u32 *reg = (u32 *)fdt_getprop(blob, off, "reg", 0);
291a47a12beSStefan Roese 			if (reg)
292a47a12beSStefan Roese 				fdt_setprop_cell(blob, off, "cache-stash-id",
293a47a12beSStefan Roese 					 (*reg * 2) + 32 + 0);
294a47a12beSStefan Roese 		}
295a47a12beSStefan Roese #endif
296a47a12beSStefan Roese 
297a47a12beSStefan Roese 		/* i-side config */
298a47a12beSStefan Roese 		isize = (l1cfg1 & 0x7ff) * 1024;
299a47a12beSStefan Roese 		inum_ways = ((l1cfg1 >> 11) & 0xff) + 1;
300a47a12beSStefan Roese 		iline_size = (((l1cfg1 >> 23) & 0x3) + 1) * 32;
301a47a12beSStefan Roese 		inum_sets = isize / (iline_size * inum_ways);
302a47a12beSStefan Roese 
303a47a12beSStefan Roese 		fdt_setprop_cell(blob, off, "i-cache-block-size", iline_size);
304a47a12beSStefan Roese 		fdt_setprop_cell(blob, off, "i-cache-size", isize);
305a47a12beSStefan Roese 		fdt_setprop_cell(blob, off, "i-cache-sets", inum_sets);
306a47a12beSStefan Roese 
307a47a12beSStefan Roese 		off = fdt_node_offset_by_prop_value(blob, off,
308a47a12beSStefan Roese 				"device_type", "cpu", 4);
309a47a12beSStefan Roese 	}
310a47a12beSStefan Roese 
311a47a12beSStefan Roese 	ft_fixup_l2cache(blob);
312a47a12beSStefan Roese }
313a47a12beSStefan Roese 
314a47a12beSStefan Roese 
315a47a12beSStefan Roese void fdt_add_enet_stashing(void *fdt)
316a47a12beSStefan Roese {
317a47a12beSStefan Roese 	do_fixup_by_compat(fdt, "gianfar", "bd-stash", NULL, 0, 1);
318a47a12beSStefan Roese 
319a47a12beSStefan Roese 	do_fixup_by_compat_u32(fdt, "gianfar", "rx-stash-len", 96, 1);
320a47a12beSStefan Roese 
321a47a12beSStefan Roese 	do_fixup_by_compat_u32(fdt, "gianfar", "rx-stash-idx", 0, 1);
322a47a12beSStefan Roese }
323a47a12beSStefan Roese 
324a47a12beSStefan Roese #if defined(CONFIG_SYS_DPAA_FMAN) || defined(CONFIG_SYS_DPAA_PME)
3251b942f74SKumar Gala static void ft_fixup_clks(void *blob, const char *compat, u32 offset,
3261b942f74SKumar Gala 			  unsigned long freq)
327a47a12beSStefan Roese {
3281b942f74SKumar Gala 	phys_addr_t phys = offset + CONFIG_SYS_CCSRBAR_PHYS;
3291b942f74SKumar Gala 	int off = fdt_node_offset_by_compat_reg(blob, compat, phys);
330a47a12beSStefan Roese 
331a47a12beSStefan Roese 	if (off >= 0) {
332a47a12beSStefan Roese 		off = fdt_setprop_cell(blob, off, "clock-frequency", freq);
333a47a12beSStefan Roese 		if (off > 0)
334a47a12beSStefan Roese 			printf("WARNING enable to set clock-frequency "
3351b942f74SKumar Gala 				"for %s: %s\n", compat, fdt_strerror(off));
336a47a12beSStefan Roese 	}
337a47a12beSStefan Roese }
338a47a12beSStefan Roese 
339a47a12beSStefan Roese static void ft_fixup_dpaa_clks(void *blob)
340a47a12beSStefan Roese {
341a47a12beSStefan Roese 	sys_info_t sysinfo;
342a47a12beSStefan Roese 
343a47a12beSStefan Roese 	get_sys_info(&sysinfo);
3441b942f74SKumar Gala 	ft_fixup_clks(blob, "fsl,fman", CONFIG_SYS_FSL_FM1_OFFSET,
3451b942f74SKumar Gala 			sysinfo.freqFMan[0]);
346a47a12beSStefan Roese 
347a47a12beSStefan Roese #if (CONFIG_SYS_NUM_FMAN == 2)
3481b942f74SKumar Gala 	ft_fixup_clks(blob, "fsl,fman", CONFIG_SYS_FSL_FM2_OFFSET,
3491b942f74SKumar Gala 			sysinfo.freqFMan[1]);
350a47a12beSStefan Roese #endif
351a47a12beSStefan Roese 
352a47a12beSStefan Roese #ifdef CONFIG_SYS_DPAA_PME
3531b942f74SKumar Gala 	do_fixup_by_compat_u32(blob, "fsl,pme",
3541b942f74SKumar Gala 		"clock-frequency", sysinfo.freqPME, 1);
355a47a12beSStefan Roese #endif
356a47a12beSStefan Roese }
357a47a12beSStefan Roese #else
358a47a12beSStefan Roese #define ft_fixup_dpaa_clks(x)
359a47a12beSStefan Roese #endif
360a47a12beSStefan Roese 
361a47a12beSStefan Roese #ifdef CONFIG_QE
362a47a12beSStefan Roese static void ft_fixup_qe_snum(void *blob)
363a47a12beSStefan Roese {
364a47a12beSStefan Roese 	unsigned int svr;
365a47a12beSStefan Roese 
366a47a12beSStefan Roese 	svr = mfspr(SPRN_SVR);
367a47a12beSStefan Roese 	if (SVR_SOC_VER(svr) == SVR_8569_E) {
368a47a12beSStefan Roese 		if(IS_SVR_REV(svr, 1, 0))
369a47a12beSStefan Roese 			do_fixup_by_compat_u32(blob, "fsl,qe",
370a47a12beSStefan Roese 				"fsl,qe-num-snums", 46, 1);
371a47a12beSStefan Roese 		else
372a47a12beSStefan Roese 			do_fixup_by_compat_u32(blob, "fsl,qe",
373a47a12beSStefan Roese 				"fsl,qe-num-snums", 76, 1);
374a47a12beSStefan Roese 	}
375a47a12beSStefan Roese }
376a47a12beSStefan Roese #endif
377a47a12beSStefan Roese 
378a47a12beSStefan Roese void ft_cpu_setup(void *blob, bd_t *bd)
379a47a12beSStefan Roese {
380a47a12beSStefan Roese 	int off;
381a47a12beSStefan Roese 	int val;
382a47a12beSStefan Roese 	sys_info_t sysinfo;
383a47a12beSStefan Roese 
384a47a12beSStefan Roese 	/* delete crypto node if not on an E-processor */
385a47a12beSStefan Roese 	if (!IS_E_PROCESSOR(get_svr()))
386a47a12beSStefan Roese 		fdt_fixup_crypto_node(blob, 0);
387a47a12beSStefan Roese 
388a47a12beSStefan Roese 	fdt_fixup_ethernet(blob);
389a47a12beSStefan Roese 
390a47a12beSStefan Roese 	fdt_add_enet_stashing(blob);
391a47a12beSStefan Roese 
392a47a12beSStefan Roese 	do_fixup_by_prop_u32(blob, "device_type", "cpu", 4,
393a47a12beSStefan Roese 		"timebase-frequency", get_tbclk(), 1);
394a47a12beSStefan Roese 	do_fixup_by_prop_u32(blob, "device_type", "cpu", 4,
395a47a12beSStefan Roese 		"bus-frequency", bd->bi_busfreq, 1);
396a47a12beSStefan Roese 	get_sys_info(&sysinfo);
397a47a12beSStefan Roese 	off = fdt_node_offset_by_prop_value(blob, -1, "device_type", "cpu", 4);
398a47a12beSStefan Roese 	while (off != -FDT_ERR_NOTFOUND) {
399a47a12beSStefan Roese 		u32 *reg = (u32 *)fdt_getprop(blob, off, "reg", 0);
400a47a12beSStefan Roese 		val = cpu_to_fdt32(sysinfo.freqProcessor[*reg]);
401a47a12beSStefan Roese 		fdt_setprop(blob, off, "clock-frequency", &val, 4);
402a47a12beSStefan Roese 		off = fdt_node_offset_by_prop_value(blob, off, "device_type",
403a47a12beSStefan Roese 							"cpu", 4);
404a47a12beSStefan Roese 	}
405a47a12beSStefan Roese 	do_fixup_by_prop_u32(blob, "device_type", "soc", 4,
406a47a12beSStefan Roese 		"bus-frequency", bd->bi_busfreq, 1);
407a47a12beSStefan Roese 
408a47a12beSStefan Roese 	do_fixup_by_compat_u32(blob, "fsl,pq3-localbus",
409a47a12beSStefan Roese 		"bus-frequency", gd->lbc_clk, 1);
410a47a12beSStefan Roese 	do_fixup_by_compat_u32(blob, "fsl,elbc",
411a47a12beSStefan Roese 		"bus-frequency", gd->lbc_clk, 1);
412a47a12beSStefan Roese #ifdef CONFIG_QE
413a47a12beSStefan Roese 	ft_qe_setup(blob);
414a47a12beSStefan Roese 	ft_fixup_qe_snum(blob);
415a47a12beSStefan Roese #endif
416a47a12beSStefan Roese 
417a47a12beSStefan Roese #ifdef CONFIG_SYS_NS16550
418a47a12beSStefan Roese 	do_fixup_by_compat_u32(blob, "ns16550",
419a47a12beSStefan Roese 		"clock-frequency", CONFIG_SYS_NS16550_CLK, 1);
420a47a12beSStefan Roese #endif
421a47a12beSStefan Roese 
422a47a12beSStefan Roese #ifdef CONFIG_CPM2
423a47a12beSStefan Roese 	do_fixup_by_compat_u32(blob, "fsl,cpm2-scc-uart",
424a47a12beSStefan Roese 		"current-speed", bd->bi_baudrate, 1);
425a47a12beSStefan Roese 
426a47a12beSStefan Roese 	do_fixup_by_compat_u32(blob, "fsl,cpm2-brg",
427a47a12beSStefan Roese 		"clock-frequency", bd->bi_brgfreq, 1);
428a47a12beSStefan Roese #endif
429a47a12beSStefan Roese 
43085f8cda3SKumar Gala #ifdef CONFIG_FSL_CORENET
43185f8cda3SKumar Gala 	do_fixup_by_compat_u32(blob, "fsl,qoriq-clockgen-1.0",
43285f8cda3SKumar Gala 		"clock-frequency", CONFIG_SYS_CLK_FREQ, 1);
43385f8cda3SKumar Gala #endif
43485f8cda3SKumar Gala 
435a47a12beSStefan Roese 	fdt_fixup_memory(blob, (u64)bd->bi_memstart, (u64)bd->bi_memsize);
436a47a12beSStefan Roese 
437a47a12beSStefan Roese #ifdef CONFIG_MP
438a47a12beSStefan Roese 	ft_fixup_cpu(blob, (u64)bd->bi_memstart + (u64)bd->bi_memsize);
439a47a12beSStefan Roese 	ft_fixup_num_cores(blob);
4408f3a7fa4SKumar Gala #endif
441a47a12beSStefan Roese 
442a47a12beSStefan Roese 	ft_fixup_cache(blob);
443a47a12beSStefan Roese 
444a47a12beSStefan Roese #if defined(CONFIG_FSL_ESDHC)
445a47a12beSStefan Roese 	fdt_fixup_esdhc(blob, bd);
446a47a12beSStefan Roese #endif
447a47a12beSStefan Roese 
448a47a12beSStefan Roese 	ft_fixup_dpaa_clks(blob);
449a47a12beSStefan Roese }
450