1config ARCH_LS1012A
2	bool
3	select ARMV8_SET_SMPEN
4	select FSL_LSCH2
5	select SYS_FSL_DDR_BE
6	select SYS_FSL_MMDC
7	select SYS_FSL_ERRATUM_A010315
8	select ARCH_EARLY_INIT_R
9	select BOARD_EARLY_INIT_F
10
11config ARCH_LS1043A
12	bool
13	select ARMV8_SET_SMPEN
14	select FSL_LSCH2
15	select SYS_FSL_DDR
16	select SYS_FSL_DDR_BE
17	select SYS_FSL_DDR_VER_50
18	select SYS_FSL_ERRATUM_A008850
19	select SYS_FSL_ERRATUM_A009660
20	select SYS_FSL_ERRATUM_A009663
21	select SYS_FSL_ERRATUM_A009929
22	select SYS_FSL_ERRATUM_A009942
23	select SYS_FSL_ERRATUM_A010315
24	select SYS_FSL_ERRATUM_A010539
25	select SYS_FSL_HAS_DDR3
26	select SYS_FSL_HAS_DDR4
27	select ARCH_EARLY_INIT_R
28	select BOARD_EARLY_INIT_F
29
30config ARCH_LS1046A
31	bool
32	select ARMV8_SET_SMPEN
33	select FSL_LSCH2
34	select SYS_FSL_DDR
35	select SYS_FSL_DDR_BE
36	select SYS_FSL_DDR_VER_50
37	select SYS_FSL_ERRATUM_A008336
38	select SYS_FSL_ERRATUM_A008511
39	select SYS_FSL_ERRATUM_A009801
40	select SYS_FSL_ERRATUM_A009803
41	select SYS_FSL_ERRATUM_A009942
42	select SYS_FSL_ERRATUM_A010165
43	select SYS_FSL_ERRATUM_A010539
44	select SYS_FSL_HAS_DDR4
45	select SYS_FSL_SRDS_2
46	select ARCH_EARLY_INIT_R
47	select BOARD_EARLY_INIT_F
48
49config ARCH_LS2080A
50	bool
51	select ARMV8_SET_SMPEN
52	select ARM_ERRATA_826974
53	select ARM_ERRATA_828024
54	select ARM_ERRATA_829520
55	select ARM_ERRATA_833471
56	select FSL_LSCH3
57	select SYS_FSL_DDR
58	select SYS_FSL_DDR_LE
59	select SYS_FSL_DDR_VER_50
60	select SYS_FSL_HAS_DP_DDR
61	select SYS_FSL_HAS_SEC
62	select SYS_FSL_HAS_DDR4
63	select SYS_FSL_SEC_COMPAT_5
64	select SYS_FSL_SEC_LE
65	select SYS_FSL_SRDS_2
66	select SYS_FSL_ERRATUM_A008336
67	select SYS_FSL_ERRATUM_A008511
68	select SYS_FSL_ERRATUM_A008514
69	select SYS_FSL_ERRATUM_A008585
70	select SYS_FSL_ERRATUM_A009635
71	select SYS_FSL_ERRATUM_A009663
72	select SYS_FSL_ERRATUM_A009801
73	select SYS_FSL_ERRATUM_A009803
74	select SYS_FSL_ERRATUM_A009942
75	select SYS_FSL_ERRATUM_A010165
76	select SYS_FSL_ERRATUM_A009203
77	select ARCH_EARLY_INIT_R
78	select BOARD_EARLY_INIT_F
79
80config FSL_LSCH2
81	bool
82	select SYS_FSL_HAS_SEC
83	select SYS_FSL_SEC_COMPAT_5
84	select SYS_FSL_SEC_BE
85	select SYS_FSL_SRDS_1
86	select SYS_HAS_SERDES
87
88config FSL_LSCH3
89	bool
90	select SYS_FSL_SRDS_1
91	select SYS_HAS_SERDES
92
93config FSL_MC_ENET
94	bool "Management Complex network"
95	depends on ARCH_LS2080A
96	default y
97	select RESV_RAM
98	help
99	  Enable Management Complex (MC) network
100
101menu "Layerscape architecture"
102	depends on FSL_LSCH2 || FSL_LSCH3
103
104config FSL_PCIE_COMPAT
105	string "PCIe compatible of Kernel DT"
106	depends on PCIE_LAYERSCAPE
107	default "fsl,ls1012a-pcie" if ARCH_LS1012A
108	default "fsl,ls1043a-pcie" if ARCH_LS1043A
109	default "fsl,ls1046a-pcie" if ARCH_LS1046A
110	default "fsl,ls2080a-pcie" if ARCH_LS2080A
111	help
112	  This compatible is used to find pci controller node in Kernel DT
113	  to complete fixup.
114
115config HAS_FEATURE_GIC64K_ALIGN
116	bool
117	default y if ARCH_LS1043A
118
119config HAS_FEATURE_ENHANCED_MSI
120	bool
121	default y if ARCH_LS1043A
122
123menu "Layerscape PPA"
124config FSL_LS_PPA
125	bool "FSL Layerscape PPA firmware support"
126	depends on !ARMV8_PSCI
127	select ARMV8_SEC_FIRMWARE_SUPPORT
128	select SEC_FIRMWARE_ARMV8_PSCI
129	select ARMV8_SEC_FIRMWARE_ERET_ADDR_REVERT if FSL_LSCH2
130	help
131	  The FSL Primary Protected Application (PPA) is a software component
132	  which is loaded during boot stage, and then remains resident in RAM
133	  and runs in the TrustZone after boot.
134	  Say y to enable it.
135choice
136	prompt "FSL Layerscape PPA firmware loading-media select"
137	depends on FSL_LS_PPA
138	default SYS_LS_PPA_FW_IN_XIP
139
140config SYS_LS_PPA_FW_IN_XIP
141	bool "XIP"
142	help
143	  Say Y here if the PPA firmware locate at XIP flash, such
144	  as NOR or QSPI flash.
145
146endchoice
147
148config SYS_LS_PPA_FW_ADDR
149	hex "Address of PPA firmware loading from"
150	depends on FSL_LS_PPA
151	default 0x40500000 if SYS_LS_PPA_FW_IN_XIP && QSPI_BOOT
152	default 0x60500000 if SYS_LS_PPA_FW_IN_XIP
153	help
154	  If the PPA firmware locate at XIP flash, such as NOR or
155	  QSPI flash, this address is a directly memory-mapped.
156	  If it is in a serial accessed flash, such as NAND and SD
157	  card, it is a byte offset.
158endmenu
159
160config SYS_FSL_ERRATUM_A010315
161	bool "Workaround for PCIe erratum A010315"
162
163config SYS_FSL_ERRATUM_A010539
164	bool "Workaround for PIN MUX erratum A010539"
165
166config MAX_CPUS
167	int "Maximum number of CPUs permitted for Layerscape"
168	default 4 if ARCH_LS1043A
169	default 4 if ARCH_LS1046A
170	default 16 if ARCH_LS2080A
171	default 1
172	help
173	  Set this number to the maximum number of possible CPUs in the SoC.
174	  SoCs may have multiple clusters with each cluster may have multiple
175	  ports. If some ports are reserved but higher ports are used for
176	  cores, count the reserved ports. This will allocate enough memory
177	  in spin table to properly handle all cores.
178
179config SECURE_BOOT
180	bool "Secure Boot"
181	help
182		Enable Freescale Secure Boot feature
183
184config QSPI_AHB_INIT
185	bool "Init the QSPI AHB bus"
186	help
187	  The default setting for QSPI AHB bus just support 3bytes addressing.
188	  But some QSPI flash size up to 64MBytes, so initialize the QSPI AHB
189	  bus for those flashes to support the full QSPI flash size.
190
191config SYS_FSL_IFC_BANK_COUNT
192	int "Maximum banks of Integrated flash controller"
193	depends on ARCH_LS1043A || ARCH_LS1046A || ARCH_LS2080A
194	default 4 if ARCH_LS1043A
195	default 4 if ARCH_LS1046A
196	default 8 if ARCH_LS2080A
197
198config SYS_FSL_HAS_DP_DDR
199	bool
200
201config SYS_FSL_SRDS_1
202	bool
203
204config SYS_FSL_SRDS_2
205	bool
206
207config SYS_HAS_SERDES
208	bool
209
210endmenu
211
212menu "Layerscape clock tree configuration"
213	depends on FSL_LSCH2 || FSL_LSCH3
214
215config SYS_FSL_CLK
216	bool "Enable clock tree initialization"
217	default y
218
219config CLUSTER_CLK_FREQ
220	int "Reference clock of core cluster"
221	depends on ARCH_LS1012A
222	default 100000000
223	help
224	  This number is the reference clock frequency of core PLL.
225	  For most platforms, the core PLL and Platform PLL have the same
226	  reference clock, but for some platforms, LS1012A for instance,
227	  they are provided sepatately.
228
229config SYS_FSL_PCLK_DIV
230	int "Platform clock divider"
231	default 1 if ARCH_LS1043A
232	default 1 if ARCH_LS1046A
233	default 2
234	help
235	  This is the divider that is used to derive Platform clock from
236	  Platform PLL, in another word:
237		Platform_clk = Platform_PLL_freq / this_divider
238
239config SYS_FSL_DSPI_CLK_DIV
240	int "DSPI clock divider"
241	default 1 if ARCH_LS1043A
242	default 2
243	help
244	  This is the divider that is used to derive DSPI clock from Platform
245	  PLL, in another word DSPI_clk = Platform_PLL_freq / this_divider.
246
247config SYS_FSL_DUART_CLK_DIV
248	int "DUART clock divider"
249	default 1 if ARCH_LS1043A
250	default 2
251	help
252	  This is the divider that is used to derive DUART clock from Platform
253	  clock, in another word DUART_clk = Platform_clk / this_divider.
254
255config SYS_FSL_I2C_CLK_DIV
256	int "I2C clock divider"
257	default 1 if ARCH_LS1043A
258	default 2
259	help
260	  This is the divider that is used to derive I2C clock from Platform
261	  clock, in another word I2C_clk = Platform_clk / this_divider.
262
263config SYS_FSL_IFC_CLK_DIV
264	int "IFC clock divider"
265	default 1 if ARCH_LS1043A
266	default 2
267	help
268	  This is the divider that is used to derive IFC clock from Platform
269	  clock, in another word IFC_clk = Platform_clk / this_divider.
270
271config SYS_FSL_LPUART_CLK_DIV
272	int "LPUART clock divider"
273	default 1 if ARCH_LS1043A
274	default 2
275	help
276	  This is the divider that is used to derive LPUART clock from Platform
277	  clock, in another word LPUART_clk = Platform_clk / this_divider.
278
279config SYS_FSL_SDHC_CLK_DIV
280	int "SDHC clock divider"
281	default 1 if ARCH_LS1043A
282	default 1 if ARCH_LS1012A
283	default 2
284	help
285	  This is the divider that is used to derive SDHC clock from Platform
286	  clock, in another word SDHC_clk = Platform_clk / this_divider.
287endmenu
288
289config RESV_RAM
290	bool
291	help
292	  Reserve memory from the top, tracked by gd->arch.resv_ram. This
293	  reserved RAM can be used by special driver that resides in memory
294	  after U-Boot exits. It's up to implementation to allocate and allow
295	  access to this reserved memory. For example, the reserved RAM can
296	  be at the high end of physical memory. The reserve RAM may be
297	  excluded from memory bank(s) passed to OS, or marked as reserved.
298
299config SYS_FSL_ERRATUM_A008336
300	bool
301
302config SYS_FSL_ERRATUM_A008514
303	bool
304
305config SYS_FSL_ERRATUM_A008585
306	bool
307
308config SYS_FSL_ERRATUM_A008850
309	bool
310
311config SYS_FSL_ERRATUM_A009203
312	bool
313
314config SYS_FSL_ERRATUM_A009635
315	bool
316
317config SYS_FSL_ERRATUM_A009660
318	bool
319
320config SYS_FSL_ERRATUM_A009929
321	bool
322
323config SYS_MC_RSV_MEM_ALIGN
324	hex "Management Complex reserved memory alignment"
325	depends on RESV_RAM
326	default 0x20000000
327	help
328	  Reserved memory needs to be aligned for MC to use. Default value
329	  is 512MB.
330