xref: /rk3399_rockchip-uboot/arch/powerpc/include/asm/config_mpc85xx.h (revision c657d898bcf95d5af15f081ed9f03e0ea5b1a16e)
1243be8e2SKumar Gala /*
2243be8e2SKumar Gala  * Copyright 2011 Freescale Semiconductor, Inc.
3243be8e2SKumar Gala  *
4243be8e2SKumar Gala  * This program is free software; you can redistribute it and/or
5243be8e2SKumar Gala  * modify it under the terms of the GNU General Public License as
6243be8e2SKumar Gala  * published by the Free Software Foundation; either version 2 of
7243be8e2SKumar Gala  * the License, or (at your option) any later version.
8243be8e2SKumar Gala  *
9243be8e2SKumar Gala  * This program is distributed in the hope that it will be useful,
10243be8e2SKumar Gala  * but WITHOUT ANY WARRANTY; without even the implied warranty of
11243be8e2SKumar Gala  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
12243be8e2SKumar Gala  * GNU General Public License for more details.
13243be8e2SKumar Gala  *
14243be8e2SKumar Gala  * You should have received a copy of the GNU General Public License
15243be8e2SKumar Gala  * along with this program; if not, write to the Free Software
16243be8e2SKumar Gala  * Foundation, Inc., 59 Temple Place, Suite 330, Boston,
17243be8e2SKumar Gala  * MA 02111-1307 USA
18243be8e2SKumar Gala  *
19243be8e2SKumar Gala  */
20243be8e2SKumar Gala 
21243be8e2SKumar Gala #ifndef _ASM_MPC85xx_CONFIG_H_
22243be8e2SKumar Gala #define _ASM_MPC85xx_CONFIG_H_
23243be8e2SKumar Gala 
24243be8e2SKumar Gala /* SoC specific defines for Freescale MPC85xx (PQ3) and QorIQ processors */
25243be8e2SKumar Gala 
26243be8e2SKumar Gala /* Number of TLB CAM entries we have on FSL Book-E chips */
27243be8e2SKumar Gala #if defined(CONFIG_E500MC)
28243be8e2SKumar Gala #define CONFIG_SYS_NUM_TLBCAMS		64
29243be8e2SKumar Gala #elif defined(CONFIG_E500)
30243be8e2SKumar Gala #define CONFIG_SYS_NUM_TLBCAMS		16
31243be8e2SKumar Gala #endif
32243be8e2SKumar Gala 
33243be8e2SKumar Gala #if defined(CONFIG_MPC8536)
34243be8e2SKumar Gala #define CONFIG_MAX_CPUS			1
35243be8e2SKumar Gala #define CONFIG_SYS_FSL_NUM_LAWS		12
36243be8e2SKumar Gala #define CONFIG_SYS_FSL_SEC_COMPAT	2
37243be8e2SKumar Gala 
38243be8e2SKumar Gala #elif defined(CONFIG_MPC8540)
39243be8e2SKumar Gala #define CONFIG_MAX_CPUS			1
40243be8e2SKumar Gala #define CONFIG_SYS_FSL_NUM_LAWS		8
41243be8e2SKumar Gala 
42243be8e2SKumar Gala #elif defined(CONFIG_MPC8541)
43243be8e2SKumar Gala #define CONFIG_MAX_CPUS			1
44243be8e2SKumar Gala #define CONFIG_SYS_FSL_NUM_LAWS		8
45243be8e2SKumar Gala #define CONFIG_SYS_FSL_SEC_COMPAT	2
46243be8e2SKumar Gala 
47243be8e2SKumar Gala #elif defined(CONFIG_MPC8544)
48243be8e2SKumar Gala #define CONFIG_MAX_CPUS			1
49243be8e2SKumar Gala #define CONFIG_SYS_FSL_NUM_LAWS		10
50243be8e2SKumar Gala #define CONFIG_SYS_FSL_SEC_COMPAT	2
51243be8e2SKumar Gala 
52243be8e2SKumar Gala #elif defined(CONFIG_MPC8548)
53243be8e2SKumar Gala #define CONFIG_MAX_CPUS			1
54243be8e2SKumar Gala #define CONFIG_SYS_FSL_NUM_LAWS		10
55243be8e2SKumar Gala #define CONFIG_SYS_FSL_SEC_COMPAT	2
56243be8e2SKumar Gala 
57243be8e2SKumar Gala #elif defined(CONFIG_MPC8555)
58243be8e2SKumar Gala #define CONFIG_MAX_CPUS			1
59243be8e2SKumar Gala #define CONFIG_SYS_FSL_NUM_LAWS		8
60243be8e2SKumar Gala #define CONFIG_SYS_FSL_SEC_COMPAT	2
61243be8e2SKumar Gala 
62243be8e2SKumar Gala #elif defined(CONFIG_MPC8560)
63243be8e2SKumar Gala #define CONFIG_MAX_CPUS			1
64243be8e2SKumar Gala #define CONFIG_SYS_FSL_NUM_LAWS		8
65243be8e2SKumar Gala 
66243be8e2SKumar Gala #elif defined(CONFIG_MPC8568)
67243be8e2SKumar Gala #define CONFIG_MAX_CPUS			1
68243be8e2SKumar Gala #define CONFIG_SYS_FSL_NUM_LAWS		10
69243be8e2SKumar Gala #define CONFIG_SYS_FSL_SEC_COMPAT	2
70fdb4dad3SKumar Gala #define QE_MURAM_SIZE			0x10000UL
71fdb4dad3SKumar Gala #define MAX_QE_RISC			2
72fdb4dad3SKumar Gala #define QE_NUM_OF_SNUM			28
73243be8e2SKumar Gala 
74243be8e2SKumar Gala #elif defined(CONFIG_MPC8569)
75243be8e2SKumar Gala #define CONFIG_MAX_CPUS			1
76243be8e2SKumar Gala #define CONFIG_SYS_FSL_NUM_LAWS		10
77243be8e2SKumar Gala #define CONFIG_SYS_FSL_SEC_COMPAT	2
78fdb4dad3SKumar Gala #define QE_MURAM_SIZE			0x20000UL
79fdb4dad3SKumar Gala #define MAX_QE_RISC			4
80fdb4dad3SKumar Gala #define QE_NUM_OF_SNUM			46
81243be8e2SKumar Gala 
82243be8e2SKumar Gala #elif defined(CONFIG_MPC8572)
83243be8e2SKumar Gala #define CONFIG_MAX_CPUS			2
84243be8e2SKumar Gala #define CONFIG_SYS_FSL_NUM_LAWS		12
85243be8e2SKumar Gala #define CONFIG_SYS_FSL_SEC_COMPAT	2
86eb0aff77SYork Sun #define CONFIG_SYS_FSL_ERRATUM_DDR_115
8791671913SYork Sun #define CONFIG_SYS_FSL_ERRATUM_DDR111_DDR134
88243be8e2SKumar Gala 
89243be8e2SKumar Gala #elif defined(CONFIG_P1010)
90243be8e2SKumar Gala #define CONFIG_MAX_CPUS			1
91243be8e2SKumar Gala #define CONFIG_SYS_FSL_NUM_LAWS		12
92243be8e2SKumar Gala #define CONFIG_TSECV2
93243be8e2SKumar Gala #define CONFIG_SYS_FSL_SEC_COMPAT	4
941fbf3483SPoonam Aggrwal #define CONFIG_FSL_SATA_V2
951fbf3483SPoonam Aggrwal #define CONFIG_SYS_FSL_ERRATUM_ESDHC111
961fbf3483SPoonam Aggrwal #define CONFIG_NUM_DDR_CONTROLLERS	1
971fbf3483SPoonam Aggrwal #define CONFIG_SYS_CCSRBAR_DEFAULT	0xff700000
98243be8e2SKumar Gala 
99093cffbeSKumar Gala /* P1011 is single core version of P1020 */
100243be8e2SKumar Gala #elif defined(CONFIG_P1011)
101243be8e2SKumar Gala #define CONFIG_MAX_CPUS			1
102243be8e2SKumar Gala #define CONFIG_SYS_FSL_NUM_LAWS		12
103243be8e2SKumar Gala #define CONFIG_TSECV2
104b03a466dSPrabhakar Kushwaha #define CONFIG_FSL_PCIE_DISABLE_ASPM
105243be8e2SKumar Gala #define CONFIG_SYS_FSL_SEC_COMPAT	2
106093cffbeSKumar Gala #define CONFIG_SYS_FSL_ERRATUM_ELBC_A001
107093cffbeSKumar Gala #define CONFIG_SYS_FSL_ERRATUM_ESDHC111
108243be8e2SKumar Gala 
109093cffbeSKumar Gala /* P1012 is single core version of P1021 */
110243be8e2SKumar Gala #elif defined(CONFIG_P1012)
111243be8e2SKumar Gala #define CONFIG_MAX_CPUS			1
112243be8e2SKumar Gala #define CONFIG_SYS_FSL_NUM_LAWS		12
113243be8e2SKumar Gala #define CONFIG_TSECV2
114b03a466dSPrabhakar Kushwaha #define CONFIG_FSL_PCIE_DISABLE_ASPM
115243be8e2SKumar Gala #define CONFIG_SYS_FSL_SEC_COMPAT	2
116093cffbeSKumar Gala #define CONFIG_SYS_FSL_ERRATUM_ELBC_A001
117093cffbeSKumar Gala #define CONFIG_SYS_FSL_ERRATUM_ESDHC111
118243be8e2SKumar Gala 
119093cffbeSKumar Gala /* P1013 is single core version of P1022 */
120243be8e2SKumar Gala #elif defined(CONFIG_P1013)
121243be8e2SKumar Gala #define CONFIG_MAX_CPUS			1
122243be8e2SKumar Gala #define CONFIG_SYS_FSL_NUM_LAWS		12
123243be8e2SKumar Gala #define CONFIG_TSECV2
124243be8e2SKumar Gala #define CONFIG_SYS_FSL_SEC_COMPAT	2
1252d7534a3SJiang Yutang #define CONFIG_SYS_FSL_ERRATUM_ELBC_A001
1262d7534a3SJiang Yutang #define CONFIG_SYS_FSL_ERRATUM_ESDHC111
1272d7534a3SJiang Yutang #define CONFIG_FSL_SATA_ERRATUM_A001
128243be8e2SKumar Gala 
129243be8e2SKumar Gala #elif defined(CONFIG_P1014)
130243be8e2SKumar Gala #define CONFIG_MAX_CPUS			1
131243be8e2SKumar Gala #define CONFIG_SYS_FSL_NUM_LAWS		12
132243be8e2SKumar Gala #define CONFIG_TSECV2
133243be8e2SKumar Gala #define CONFIG_SYS_FSL_SEC_COMPAT	4
1341fbf3483SPoonam Aggrwal #define CONFIG_FSL_SATA_V2
1351fbf3483SPoonam Aggrwal #define CONFIG_SYS_FSL_ERRATUM_ESDHC111
1361fbf3483SPoonam Aggrwal #define CONFIG_NUM_DDR_CONTROLLERS	1
1371fbf3483SPoonam Aggrwal #define CONFIG_SYS_CCSRBAR_DEFAULT	0xff700000
138243be8e2SKumar Gala 
139093cffbeSKumar Gala /* P1015 is single core version of P1024 */
140093cffbeSKumar Gala #elif defined(CONFIG_P1015)
141093cffbeSKumar Gala #define CONFIG_MAX_CPUS			1
142093cffbeSKumar Gala #define CONFIG_SYS_FSL_NUM_LAWS		12
143093cffbeSKumar Gala #define CONFIG_TSECV2
144093cffbeSKumar Gala #define CONFIG_FSL_PCIE_DISABLE_ASPM
145093cffbeSKumar Gala #define CONFIG_SYS_FSL_SEC_COMPAT	2
146093cffbeSKumar Gala #define CONFIG_SYS_FSL_ERRATUM_ELBC_A001
147093cffbeSKumar Gala #define CONFIG_SYS_FSL_ERRATUM_ESDHC111
148093cffbeSKumar Gala 
149093cffbeSKumar Gala /* P1016 is single core version of P1025 */
150093cffbeSKumar Gala #elif defined(CONFIG_P1016)
151093cffbeSKumar Gala #define CONFIG_MAX_CPUS			1
152093cffbeSKumar Gala #define CONFIG_SYS_FSL_NUM_LAWS		12
153093cffbeSKumar Gala #define CONFIG_TSECV2
154093cffbeSKumar Gala #define CONFIG_FSL_PCIE_DISABLE_ASPM
155093cffbeSKumar Gala #define CONFIG_SYS_FSL_SEC_COMPAT	2
156093cffbeSKumar Gala #define CONFIG_SYS_FSL_ERRATUM_ELBC_A001
157093cffbeSKumar Gala #define CONFIG_SYS_FSL_ERRATUM_ESDHC111
158093cffbeSKumar Gala 
159093cffbeSKumar Gala /* P1017 is single core version of P1023 */
16067a719daSRoy Zang #elif defined(CONFIG_P1017)
16167a719daSRoy Zang #define CONFIG_MAX_CPUS			1
16267a719daSRoy Zang #define CONFIG_SYS_FSL_NUM_LAWS		12
16367a719daSRoy Zang #define CONFIG_SYS_FSL_SEC_COMPAT	4
16467a719daSRoy Zang #define CONFIG_SYS_NUM_FMAN		1
16567a719daSRoy Zang #define CONFIG_SYS_NUM_FM1_DTSEC	2
16667a719daSRoy Zang #define CONFIG_NUM_DDR_CONTROLLERS	1
16767a719daSRoy Zang #define CONFIG_SYS_QMAN_NUM_PORTALS	3
16867a719daSRoy Zang #define CONFIG_SYS_BMAN_NUM_PORTALS	3
169*c657d898SKumar Gala #define CONFIG_SYS_FM_MURAM_SIZE	0x10000
17067a719daSRoy Zang 
171243be8e2SKumar Gala #elif defined(CONFIG_P1020)
172243be8e2SKumar Gala #define CONFIG_MAX_CPUS			2
173243be8e2SKumar Gala #define CONFIG_SYS_FSL_NUM_LAWS		12
174243be8e2SKumar Gala #define CONFIG_TSECV2
175b03a466dSPrabhakar Kushwaha #define CONFIG_FSL_PCIE_DISABLE_ASPM
176243be8e2SKumar Gala #define CONFIG_SYS_FSL_SEC_COMPAT	2
177093cffbeSKumar Gala #define CONFIG_SYS_FSL_ERRATUM_ELBC_A001
178093cffbeSKumar Gala #define CONFIG_SYS_FSL_ERRATUM_ESDHC111
179243be8e2SKumar Gala 
180243be8e2SKumar Gala #elif defined(CONFIG_P1021)
181243be8e2SKumar Gala #define CONFIG_MAX_CPUS			2
182243be8e2SKumar Gala #define CONFIG_SYS_FSL_NUM_LAWS		12
183243be8e2SKumar Gala #define CONFIG_TSECV2
184b03a466dSPrabhakar Kushwaha #define CONFIG_FSL_PCIE_DISABLE_ASPM
185243be8e2SKumar Gala #define CONFIG_SYS_FSL_SEC_COMPAT	2
186093cffbeSKumar Gala #define CONFIG_SYS_FSL_ERRATUM_ELBC_A001
187093cffbeSKumar Gala #define CONFIG_SYS_FSL_ERRATUM_ESDHC111
188243be8e2SKumar Gala 
189243be8e2SKumar Gala #elif defined(CONFIG_P1022)
190243be8e2SKumar Gala #define CONFIG_MAX_CPUS			2
191243be8e2SKumar Gala #define CONFIG_SYS_FSL_NUM_LAWS		12
192243be8e2SKumar Gala #define CONFIG_TSECV2
193243be8e2SKumar Gala #define CONFIG_SYS_FSL_SEC_COMPAT	2
1942d7534a3SJiang Yutang #define CONFIG_SYS_FSL_ERRATUM_ELBC_A001
1952d7534a3SJiang Yutang #define CONFIG_SYS_FSL_ERRATUM_ESDHC111
1962d7534a3SJiang Yutang #define CONFIG_FSL_SATA_ERRATUM_A001
197243be8e2SKumar Gala 
19867a719daSRoy Zang #elif defined(CONFIG_P1023)
19967a719daSRoy Zang #define CONFIG_MAX_CPUS			2
20067a719daSRoy Zang #define CONFIG_SYS_FSL_NUM_LAWS		12
20167a719daSRoy Zang #define CONFIG_SYS_FSL_SEC_COMPAT	4
20267a719daSRoy Zang #define CONFIG_SYS_NUM_FMAN		1
20367a719daSRoy Zang #define CONFIG_SYS_NUM_FM1_DTSEC	2
20467a719daSRoy Zang #define CONFIG_NUM_DDR_CONTROLLERS	1
20567a719daSRoy Zang #define CONFIG_SYS_QMAN_NUM_PORTALS	3
20667a719daSRoy Zang #define CONFIG_SYS_BMAN_NUM_PORTALS	3
207*c657d898SKumar Gala #define CONFIG_SYS_FM_MURAM_SIZE	0x10000
20867a719daSRoy Zang 
209093cffbeSKumar Gala /* P1024 is lower end variant of P1020 */
210093cffbeSKumar Gala #elif defined(CONFIG_P1024)
211093cffbeSKumar Gala #define CONFIG_MAX_CPUS			2
212093cffbeSKumar Gala #define CONFIG_SYS_FSL_NUM_LAWS		12
213093cffbeSKumar Gala #define CONFIG_TSECV2
214093cffbeSKumar Gala #define CONFIG_FSL_PCIE_DISABLE_ASPM
215093cffbeSKumar Gala #define CONFIG_SYS_FSL_SEC_COMPAT	2
216093cffbeSKumar Gala #define CONFIG_SYS_FSL_ERRATUM_ELBC_A001
217093cffbeSKumar Gala #define CONFIG_SYS_FSL_ERRATUM_ESDHC111
218093cffbeSKumar Gala 
219093cffbeSKumar Gala /* P1025 is lower end variant of P1021 */
220093cffbeSKumar Gala #elif defined(CONFIG_P1025)
221093cffbeSKumar Gala #define CONFIG_MAX_CPUS			2
222093cffbeSKumar Gala #define CONFIG_SYS_FSL_NUM_LAWS		12
223093cffbeSKumar Gala #define CONFIG_TSECV2
224093cffbeSKumar Gala #define CONFIG_FSL_PCIE_DISABLE_ASPM
225093cffbeSKumar Gala #define CONFIG_SYS_FSL_SEC_COMPAT	2
226093cffbeSKumar Gala #define CONFIG_SYS_FSL_ERRATUM_ELBC_A001
227093cffbeSKumar Gala #define CONFIG_SYS_FSL_ERRATUM_ESDHC111
228093cffbeSKumar Gala 
229093cffbeSKumar Gala /* P2010 is single core version of P2020 */
230243be8e2SKumar Gala #elif defined(CONFIG_P2010)
231243be8e2SKumar Gala #define CONFIG_MAX_CPUS			1
232243be8e2SKumar Gala #define CONFIG_SYS_FSL_NUM_LAWS		12
233243be8e2SKumar Gala #define CONFIG_SYS_FSL_SEC_COMPAT	2
2346e7f0bc0SKumar Gala #define CONFIG_SYS_FSL_ERRATUM_ESDHC111
2355103a03aSKumar Gala #define CONFIG_SYS_FSL_ERRATUM_ESDHC_A001
236243be8e2SKumar Gala 
237243be8e2SKumar Gala #elif defined(CONFIG_P2020)
238243be8e2SKumar Gala #define CONFIG_MAX_CPUS			2
239243be8e2SKumar Gala #define CONFIG_SYS_FSL_NUM_LAWS		12
240243be8e2SKumar Gala #define CONFIG_SYS_FSL_SEC_COMPAT	2
2416e7f0bc0SKumar Gala #define CONFIG_SYS_FSL_ERRATUM_ESDHC111
2425103a03aSKumar Gala #define CONFIG_SYS_FSL_ERRATUM_ESDHC_A001
243243be8e2SKumar Gala 
244243be8e2SKumar Gala #elif defined(CONFIG_PPC_P2040)
245243be8e2SKumar Gala #define CONFIG_MAX_CPUS			4
246243be8e2SKumar Gala #define CONFIG_SYS_FSL_NUM_LAWS		32
247243be8e2SKumar Gala #define CONFIG_SYS_FSL_SEC_COMPAT	4
248fbee0f7fSKumar Gala #define CONFIG_SYS_NUM_FMAN		1
249fbee0f7fSKumar Gala #define CONFIG_SYS_NUM_FM1_DTSEC	5
250fbee0f7fSKumar Gala #define CONFIG_NUM_DDR_CONTROLLERS	1
251*c657d898SKumar Gala #define CONFIG_SYS_FM_MURAM_SIZE	0x28000
252243be8e2SKumar Gala 
253243be8e2SKumar Gala #elif defined(CONFIG_PPC_P3041)
254243be8e2SKumar Gala #define CONFIG_MAX_CPUS			4
255243be8e2SKumar Gala #define CONFIG_SYS_FSL_NUM_LAWS		32
256243be8e2SKumar Gala #define CONFIG_SYS_FSL_SEC_COMPAT	4
257fbee0f7fSKumar Gala #define CONFIG_SYS_NUM_FMAN		1
258fbee0f7fSKumar Gala #define CONFIG_SYS_NUM_FM1_DTSEC	5
259fbee0f7fSKumar Gala #define CONFIG_SYS_NUM_FM1_10GEC	1
260fbee0f7fSKumar Gala #define CONFIG_NUM_DDR_CONTROLLERS	1
261*c657d898SKumar Gala #define CONFIG_SYS_FM_MURAM_SIZE	0x28000
262243be8e2SKumar Gala 
263243be8e2SKumar Gala #elif defined(CONFIG_PPC_P4040)
264243be8e2SKumar Gala #define CONFIG_MAX_CPUS			4
265243be8e2SKumar Gala #define CONFIG_SYS_FSL_NUM_LAWS		32
266243be8e2SKumar Gala #define CONFIG_SYS_FSL_SEC_COMPAT	4
267*c657d898SKumar Gala #define CONFIG_SYS_FM_MURAM_SIZE	0x28000
268243be8e2SKumar Gala 
269243be8e2SKumar Gala #elif defined(CONFIG_PPC_P4080)
270243be8e2SKumar Gala #define CONFIG_MAX_CPUS			8
271243be8e2SKumar Gala #define CONFIG_SYS_FSL_NUM_LAWS		32
272243be8e2SKumar Gala #define CONFIG_SYS_FSL_SEC_COMPAT	4
273243be8e2SKumar Gala #define CONFIG_SYS_NUM_FMAN		2
274243be8e2SKumar Gala #define CONFIG_SYS_NUM_FM1_DTSEC	4
275243be8e2SKumar Gala #define CONFIG_SYS_NUM_FM2_DTSEC	4
276243be8e2SKumar Gala #define CONFIG_SYS_NUM_FM1_10GEC	1
277243be8e2SKumar Gala #define CONFIG_SYS_NUM_FM2_10GEC	1
278243be8e2SKumar Gala #define CONFIG_NUM_DDR_CONTROLLERS	2
279*c657d898SKumar Gala #define CONFIG_SYS_FM_MURAM_SIZE	0x28000
280243be8e2SKumar Gala #define CONFIG_SYS_FSL_ERRATUM_CPC_A002
281243be8e2SKumar Gala #define CONFIG_SYS_FSL_ERRATUM_CPC_A003
282fa8d23c0SYork Sun #define CONFIG_SYS_FSL_ERRATUM_DDR_A003
283243be8e2SKumar Gala #define CONFIG_SYS_FSL_ERRATUM_ELBC_A001
284243be8e2SKumar Gala #define CONFIG_SYS_FSL_ERRATUM_ESDHC111
285243be8e2SKumar Gala #define CONFIG_SYS_FSL_ERRATUM_ESDHC135
286243be8e2SKumar Gala #define CONFIG_SYS_FSL_ERRATUM_ESDHC136
287243be8e2SKumar Gala #define CONFIG_SYS_P4080_ERRATUM_CPU22
288243be8e2SKumar Gala #define CONFIG_SYS_P4080_ERRATUM_SERDES8
289243be8e2SKumar Gala 
290093cffbeSKumar Gala /* P5010 is single core version of P5020 */
291243be8e2SKumar Gala #elif defined(CONFIG_PPC_P5010)
292243be8e2SKumar Gala #define CONFIG_MAX_CPUS			1
293243be8e2SKumar Gala #define CONFIG_SYS_FSL_NUM_LAWS		32
294243be8e2SKumar Gala #define CONFIG_SYS_FSL_SEC_COMPAT	4
295fbee0f7fSKumar Gala #define CONFIG_SYS_NUM_FMAN		1
296fbee0f7fSKumar Gala #define CONFIG_SYS_NUM_FM1_DTSEC	5
297fbee0f7fSKumar Gala #define CONFIG_SYS_NUM_FM1_10GEC	1
298fbee0f7fSKumar Gala #define CONFIG_NUM_DDR_CONTROLLERS	1
299*c657d898SKumar Gala #define CONFIG_SYS_FM_MURAM_SIZE	0x28000
300243be8e2SKumar Gala 
301243be8e2SKumar Gala #elif defined(CONFIG_PPC_P5020)
302243be8e2SKumar Gala #define CONFIG_MAX_CPUS			2
303243be8e2SKumar Gala #define CONFIG_SYS_FSL_NUM_LAWS		32
304243be8e2SKumar Gala #define CONFIG_SYS_FSL_SEC_COMPAT	4
305fbee0f7fSKumar Gala #define CONFIG_SYS_NUM_FMAN		1
306fbee0f7fSKumar Gala #define CONFIG_SYS_NUM_FM1_DTSEC	5
307fbee0f7fSKumar Gala #define CONFIG_SYS_NUM_FM1_10GEC	1
308fbee0f7fSKumar Gala #define CONFIG_NUM_DDR_CONTROLLERS	2
309*c657d898SKumar Gala #define CONFIG_SYS_FM_MURAM_SIZE	0x28000
310243be8e2SKumar Gala 
311243be8e2SKumar Gala #else
312243be8e2SKumar Gala #error Processor type not defined for this platform
313243be8e2SKumar Gala #endif
314243be8e2SKumar Gala 
315243be8e2SKumar Gala #endif /* _ASM_MPC85xx_CONFIG_H_ */
316