xref: /rk3399_ARM-atf/plat/arm/common/arm_bl31_setup.c (revision e4d0622c7e9a259a28172a1dfcf5bc4f38ca8594)
1 /*
2  * Copyright (c) 2015-2025, Arm Limited and Contributors. All rights reserved.
3  *
4  * SPDX-License-Identifier: BSD-3-Clause
5  */
6 
7 #include <assert.h>
8 
9 #include <arch.h>
10 #include <arch_features.h>
11 #include <arch_helpers.h>
12 #include <common/bl_common.h>
13 #include <common/debug.h>
14 #include <drivers/console.h>
15 #include <lib/debugfs.h>
16 #include <lib/extensions/ras.h>
17 #include <lib/fconf/fconf.h>
18 #include <lib/gpt_rme/gpt_rme.h>
19 #include <lib/mmio.h>
20 #include <services/lfa_svc.h>
21 #if TRANSFER_LIST
22 #include <transfer_list.h>
23 #endif
24 #include <lib/xlat_tables/xlat_tables_compat.h>
25 #include <plat/arm/common/plat_arm.h>
26 #include <plat/common/platform.h>
27 #include <platform_def.h>
28 
29 struct transfer_list_header *secure_tl;
30 struct transfer_list_header *ns_tl __unused;
31 
32 #if USE_GIC_DRIVER == 3
33 uintptr_t arm_gicr_base_addrs[2] = {
34 	PLAT_ARM_GICR_BASE,	/* GICR Base address of the primary CPU */
35 	0U			/* Zero Termination */
36 };
37 #endif
38 
39 /*
40  * Placeholder variables for copying the arguments that have been passed to
41  * BL31 from BL2.
42  */
43 static entry_point_info_t bl32_image_ep_info;
44 static entry_point_info_t bl33_image_ep_info;
45 
46 #if ENABLE_RME
47 static entry_point_info_t rmm_image_ep_info;
48 #if (RME_GPT_BITLOCK_BLOCK == 0)
49 #define BITLOCK_BASE	UL(0)
50 #define BITLOCK_SIZE	UL(0)
51 #else
52 /*
53  * Number of bitlock_t entries in bitlocks array for PLAT_ARM_PPS
54  * with RME_GPT_BITLOCK_BLOCK * 512MB per bitlock.
55  */
56 #if (PLAT_ARM_PPS > (RME_GPT_BITLOCK_BLOCK * SZ_512M * UL(8)))
57 #define BITLOCKS_NUM	(PLAT_ARM_PPS) /	\
58 			(RME_GPT_BITLOCK_BLOCK * SZ_512M * UL(8))
59 #else
60 #define BITLOCKS_NUM	U(1)
61 #endif
62 /*
63  * Bitlocks array
64  */
65 static bitlock_t gpt_bitlock[BITLOCKS_NUM];
66 #define BITLOCK_BASE	(uintptr_t)gpt_bitlock
67 #define BITLOCK_SIZE	sizeof(gpt_bitlock)
68 #endif /* RME_GPT_BITLOCK_BLOCK */
69 #endif /* ENABLE_RME */
70 
71 #if !RESET_TO_BL31
72 /*
73  * Check that BL31_BASE is above ARM_FW_CONFIG_LIMIT. The reserved page
74  * is required for SOC_FW_CONFIG/TOS_FW_CONFIG passed from BL2.
75  */
76 #if TRANSFER_LIST
77 CASSERT(BL31_BASE >= PLAT_ARM_EL3_FW_HANDOFF_LIMIT, assert_bl31_base_overflows);
78 #else
79 CASSERT(BL31_BASE >= ARM_FW_CONFIG_LIMIT, assert_bl31_base_overflows);
80 #endif /* TRANSFER_LIST */
81 #endif /* RESET_TO_BL31 */
82 
83 /* Weak definitions may be overridden in specific ARM standard platform */
84 #pragma weak bl31_early_platform_setup2
85 #pragma weak bl31_platform_setup
86 #pragma weak bl31_plat_arch_setup
87 #pragma weak bl31_plat_get_next_image_ep_info
88 #pragma weak bl31_plat_runtime_setup
89 
90 #define MAP_BL31_TOTAL		MAP_REGION_FLAT(			\
91 					BL31_START,			\
92 					BL31_END - BL31_START,		\
93 					MT_MEMORY | MT_RW | EL3_PAS)
94 #if RECLAIM_INIT_CODE
95 IMPORT_SYM(unsigned long, __INIT_CODE_START__, BL_INIT_CODE_BASE);
96 IMPORT_SYM(unsigned long, __INIT_CODE_END__, BL_CODE_END_UNALIGNED);
97 IMPORT_SYM(unsigned long, __STACKS_END__, BL_STACKS_END_UNALIGNED);
98 
99 #define	BL_INIT_CODE_END	((BL_CODE_END_UNALIGNED + PAGE_SIZE - 1) & \
100 					~(PAGE_SIZE - 1))
101 #define	BL_STACKS_END		((BL_STACKS_END_UNALIGNED + PAGE_SIZE - 1) & \
102 					~(PAGE_SIZE - 1))
103 
104 #define MAP_BL_INIT_CODE	MAP_REGION_FLAT(			\
105 					BL_INIT_CODE_BASE,		\
106 					BL_INIT_CODE_END		\
107 						- BL_INIT_CODE_BASE,	\
108 					MT_CODE | EL3_PAS)
109 #endif
110 
111 #if SEPARATE_NOBITS_REGION
112 #define MAP_BL31_NOBITS		MAP_REGION_FLAT(			\
113 					BL31_NOBITS_BASE,		\
114 					BL31_NOBITS_LIMIT 		\
115 						- BL31_NOBITS_BASE,	\
116 					MT_MEMORY | MT_RW | EL3_PAS)
117 
118 #endif
119 /*******************************************************************************
120  * Return a pointer to the 'entry_point_info' structure of the next image for the
121  * security state specified. BL33 corresponds to the non-secure image type
122  * while BL32 corresponds to the secure image type. A NULL pointer is returned
123  * if the image does not exist.
124  ******************************************************************************/
125 struct entry_point_info *bl31_plat_get_next_image_ep_info(uint32_t type)
126 {
127 	entry_point_info_t *next_image_info;
128 
129 	assert(sec_state_is_valid(type));
130 	if (type == NON_SECURE) {
131 #if TRANSFER_LIST && !RESET_TO_BL31
132 		next_image_info = transfer_list_set_handoff_args(
133 			ns_tl, &bl33_image_ep_info);
134 #else
135 		next_image_info = &bl33_image_ep_info;
136 #endif
137 	}
138 #if ENABLE_RME
139 	else if (type == REALM) {
140 #if LFA_SUPPORT
141 		if (lfa_is_prime_complete(RMM_IMAGE_ID)) {
142 			rmm_image_ep_info.pc =
143 					RMM_BASE + RMM_BANK_SIZE;
144 		}
145 #endif /* LFA_SUPPORT */
146 		next_image_info = &rmm_image_ep_info;
147 	}
148 #endif
149 	else {
150 #if TRANSFER_LIST && !RESET_TO_BL31
151 		next_image_info = transfer_list_set_handoff_args(
152 			secure_tl, &bl32_image_ep_info);
153 #else
154 		next_image_info = &bl32_image_ep_info;
155 #endif
156 	}
157 
158 	/*
159 	 * None of the images on the ARM development platforms can have 0x0
160 	 * as the entrypoint
161 	 */
162 	if (next_image_info->pc)
163 		return next_image_info;
164 	else
165 		return NULL;
166 }
167 
168 /*******************************************************************************
169  * Perform any BL31 early platform setup common to ARM standard platforms.
170  * Here is an opportunity to copy parameters passed by the calling EL (S-EL1
171  * in BL2 & EL3 in BL1) before they are lost (potentially). This needs to be
172  * done before the MMU is initialized so that the memory layout can be used
173  * while creating page tables. BL2 has flushed this information to memory, so
174  * we are guaranteed to pick up good data.
175  ******************************************************************************/
176 void __init arm_bl31_early_platform_setup(u_register_t arg0, u_register_t arg1,
177 					  u_register_t arg2, u_register_t arg3)
178 {
179 #if TRANSFER_LIST
180 #if RESET_TO_BL31
181 	/* Populate entry point information for BL33 */
182 	SET_PARAM_HEAD(&bl33_image_ep_info, PARAM_EP, VERSION_1, 0);
183 	/*
184 	 * Tell BL31 where the non-trusted software image
185 	 * is located and the entry state information
186 	 */
187 	bl33_image_ep_info.pc = plat_get_ns_image_entrypoint();
188 
189 	bl33_image_ep_info.spsr = arm_get_spsr(BL33_IMAGE_ID);
190 	SET_SECURITY_STATE(bl33_image_ep_info.h.attr, NON_SECURE);
191 
192 	bl33_image_ep_info.args.arg0 = PLAT_ARM_TRANSFER_LIST_DTB_OFFSET;
193 	bl33_image_ep_info.args.arg1 =
194 		TRANSFER_LIST_HANDOFF_X1_VALUE(REGISTER_CONVENTION_VERSION);
195 	bl33_image_ep_info.args.arg3 = FW_NS_HANDOFF_BASE;
196 #else
197 	struct transfer_list_entry *te = NULL;
198 	struct entry_point_info *ep;
199 
200 	secure_tl = (struct transfer_list_header *)arg3;
201 
202 	/*
203 	 * Populate the global entry point structures used to execute subsequent
204 	 * images.
205 	 */
206 	while ((te = transfer_list_next(secure_tl, te)) != NULL) {
207 		ep = transfer_list_entry_data(te);
208 
209 		if (te->tag_id == TL_TAG_EXEC_EP_INFO64) {
210 			switch (GET_SECURITY_STATE(ep->h.attr)) {
211 			case NON_SECURE:
212 				bl33_image_ep_info = *ep;
213 				break;
214 #if ENABLE_RME
215 			case REALM:
216 				rmm_image_ep_info = *ep;
217 				break;
218 #endif
219 			case SECURE:
220 				bl32_image_ep_info = *ep;
221 				break;
222 			default:
223 				ERROR("Unrecognized Image Security State %lu\n",
224 				      GET_SECURITY_STATE(ep->h.attr));
225 				panic();
226 			}
227 		}
228 	}
229 #endif /* RESET_TO_BL31 */
230 #else /* (!TRANSFER_LIST) */
231 #if RESET_TO_BL31
232 	/* If BL31 is a reset vector, the parameters must be ignored */
233 	(void)arg0;
234 	(void)arg1;
235 	(void)arg2;
236 	(void)arg3;
237 
238 # ifdef BL32_BASE
239 	/* Populate entry point information for BL32 */
240 	SET_PARAM_HEAD(&bl32_image_ep_info,
241 				PARAM_EP,
242 				VERSION_1,
243 				0);
244 	SET_SECURITY_STATE(bl32_image_ep_info.h.attr, SECURE);
245 	bl32_image_ep_info.pc = BL32_BASE;
246 	bl32_image_ep_info.spsr = arm_get_spsr(BL32_IMAGE_ID);
247 
248 #if defined(SPD_spmd)
249 	bl32_image_ep_info.args.arg0 = ARM_SPMC_MANIFEST_BASE;
250 #endif
251 
252 # endif /* BL32_BASE */
253 
254 	/* Populate entry point information for BL33 */
255 	SET_PARAM_HEAD(&bl33_image_ep_info,
256 				PARAM_EP,
257 				VERSION_1,
258 				0);
259 	/*
260 	 * Tell BL31 where the non-trusted software image
261 	 * is located and the entry state information
262 	 */
263 	bl33_image_ep_info.pc = plat_get_ns_image_entrypoint();
264 	bl33_image_ep_info.spsr = arm_get_spsr(BL33_IMAGE_ID);
265 	SET_SECURITY_STATE(bl33_image_ep_info.h.attr, NON_SECURE);
266 
267 #if ENABLE_RME
268 	/*
269 	 * Populate entry point information for RMM.
270 	 * Only PC needs to be set as other fields are determined by RMMD.
271 	 */
272 	rmm_image_ep_info.pc = RMM_BASE;
273 #endif /* ENABLE_RME */
274 #else /* RESET_TO_BL31 */
275 	/*
276 	 * In debug builds, we pass a special value in 'arg3'
277 	 * to verify platform parameters from BL2 to BL31.
278 	 * In release builds, it's not used.
279 	 */
280 #if DEBUG
281 	assert(((uintptr_t)arg3) == ARM_BL31_PLAT_PARAM_VAL);
282 #endif
283 
284 	/*
285 	 * Check params passed from BL2 should not be NULL,
286 	 */
287 	bl_params_t *params_from_bl2 = (bl_params_t *)(uintptr_t)arg0;
288 	assert(params_from_bl2 != NULL);
289 	assert(params_from_bl2->h.type == PARAM_BL_PARAMS);
290 	assert(params_from_bl2->h.version >= VERSION_2);
291 
292 	bl_params_node_t *bl_params = params_from_bl2->head;
293 
294 	/*
295 	 * Copy BL33, BL32 and RMM (if present), entry point information.
296 	 * They are stored in Secure RAM, in BL2's address space.
297 	 */
298 	while (bl_params != NULL) {
299 		if (bl_params->image_id == BL32_IMAGE_ID) {
300 			bl32_image_ep_info = *bl_params->ep_info;
301 #if SPMC_AT_EL3
302 			/*
303 			 * Populate the BL32 image base, size and max limit in
304 			 * the entry point information, since there is no
305 			 * platform function to retrieve them in generic
306 			 * code. We choose arg2, arg3 and arg4 since the generic
307 			 * code uses arg1 for stashing the SP manifest size. The
308 			 * SPMC setup uses these arguments to update SP manifest
309 			 * with actual SP's base address and it size.
310 			 */
311 			bl32_image_ep_info.args.arg2 =
312 				bl_params->image_info->image_base;
313 			bl32_image_ep_info.args.arg3 =
314 				bl_params->image_info->image_size;
315 			bl32_image_ep_info.args.arg4 =
316 				bl_params->image_info->image_base +
317 				bl_params->image_info->image_max_size;
318 #endif
319 		}
320 #if ENABLE_RME
321 		else if (bl_params->image_id == RMM_IMAGE_ID) {
322 			rmm_image_ep_info = *bl_params->ep_info;
323 		}
324 #endif
325 		else if (bl_params->image_id == BL33_IMAGE_ID) {
326 			bl33_image_ep_info = *bl_params->ep_info;
327 		}
328 
329 		bl_params = bl_params->next_params_info;
330 	}
331 
332 	if (bl33_image_ep_info.pc == 0U)
333 		panic();
334 #if ENABLE_RME
335 	if (rmm_image_ep_info.pc == 0U)
336 		panic();
337 #endif
338 #endif /* RESET_TO_BL31 */
339 
340 #if USE_KERNEL_DT_CONVENTION
341 	/*
342 	 * Only use the default DT base address if TF-A has not supplied one.
343 	 * This can occur when the DT is side-loaded and its memory location
344 	 * is unknown (e.g., RESET_TO_BL31).
345 	 */
346 
347 	if (bl33_image_ep_info.args.arg0 == 0U) {
348 		bl33_image_ep_info.args.arg0 = HW_CONFIG_BASE;
349 	}
350 
351 #if ARM_LINUX_KERNEL_AS_BL33
352 	bl33_image_ep_info.args.arg1 = 0U;
353 	bl33_image_ep_info.args.arg2 = 0U;
354 	bl33_image_ep_info.args.arg3 = 0U;
355 #endif
356 #endif
357 #endif /* TRANSFER_LIST */
358 }
359 
360 void bl31_early_platform_setup2(u_register_t arg0, u_register_t arg1,
361 		u_register_t arg2, u_register_t arg3)
362 {
363 	/* Initialize the console to provide early debug support */
364 	arm_console_boot_init();
365 
366 	arm_bl31_early_platform_setup(arg0, arg1, arg2, arg3);
367 
368 #if !HW_ASSISTED_COHERENCY
369 	/*
370 	 * Initialize Interconnect for this cluster during cold boot.
371 	 * No need for locks as no other CPU is active.
372 	 */
373 	plat_arm_interconnect_init();
374 
375 	/*
376 	 * Enable Interconnect coherency for the primary CPU's cluster.
377 	 * Earlier bootloader stages might already do this (e.g. Trusted
378 	 * Firmware's BL1 does it) but we can't assume so. There is no harm in
379 	 * executing this code twice anyway.
380 	 * Platform specific PSCI code will enable coherency for other
381 	 * clusters.
382 	 */
383 	plat_arm_interconnect_enter_coherency();
384 #endif
385 }
386 
387 /*******************************************************************************
388  * Perform any BL31 platform setup common to ARM standard platforms
389  ******************************************************************************/
390 void arm_bl31_platform_setup(void)
391 {
392 	struct transfer_list_entry *te __unused;
393 
394 #if TRANSFER_LIST && !RESET_TO_BL31
395 	ns_tl = transfer_list_init((void *)FW_NS_HANDOFF_BASE,
396 				   PLAT_ARM_FW_HANDOFF_SIZE);
397 	if (ns_tl == NULL) {
398 		ERROR("Non-secure transfer list initialisation failed!\n");
399 		panic();
400 	}
401 	/* BL31 may modify the HW_CONFIG so defer copying it until later. */
402 	te = transfer_list_find(secure_tl, TL_TAG_FDT);
403 	assert(te != NULL);
404 
405 	/*
406 	 * A pre-existing assumption is that FCONF is unsupported w/ RESET_TO_BL2 and
407 	 * RESET_TO_BL31. In the case of RESET_TO_BL31 this makes sense because there
408 	 * isn't a prior stage to load the device tree, but the reasoning for RESET_TO_BL2 is
409 	 * less clear. For the moment hardware properties that would normally be
410 	 * derived from the DT are statically defined.
411 	 */
412 #if !RESET_TO_BL2
413 	fconf_populate("HW_CONFIG", (uintptr_t)transfer_list_entry_data(te));
414 #endif
415 
416 	te = transfer_list_add(ns_tl, TL_TAG_FDT, te->data_size,
417 			       transfer_list_entry_data(te));
418 	assert(te != NULL);
419 
420 	te = transfer_list_find(secure_tl, TL_TAG_TPM_EVLOG);
421 	if (te != NULL) {
422 		te = transfer_list_add(ns_tl, TL_TAG_TPM_EVLOG, te->data_size,
423 				  transfer_list_entry_data(te));
424 		if (te == NULL) {
425 			ERROR("Failed to load event log in Non-Secure transfer list\n");
426 			panic();
427 		}
428 	}
429 #endif /* TRANSFER_LIST && !RESET_TO_BL31 */
430 
431 #if RESET_TO_BL31
432 	/*
433 	 * Do initial security configuration to allow DRAM/device access
434 	 * (if earlier BL has not already done so).
435 	 */
436 	plat_arm_security_setup();
437 
438 #if defined(PLAT_ARM_MEM_PROT_ADDR)
439 	arm_nor_psci_do_dyn_mem_protect();
440 #endif /* PLAT_ARM_MEM_PROT_ADDR */
441 
442 #endif /* RESET_TO_BL31 */
443 
444 	/* Enable and initialize the System level generic timer */
445 	mmio_write_32(ARM_SYS_CNTCTL_BASE + CNTCR_OFF,
446 			CNTCR_FCREQ(0U) | CNTCR_EN);
447 
448 	/* Allow access to the System counter timer module */
449 	arm_configure_sys_timer();
450 
451 	/* Initialize power controller before setting up topology */
452 	plat_arm_pwrc_setup();
453 
454 #if ENABLE_FEAT_RAS && FFH_SUPPORT
455 	ras_init();
456 #endif
457 
458 #if USE_DEBUGFS
459 	debugfs_init();
460 #endif /* USE_DEBUGFS */
461 }
462 
463 /*******************************************************************************
464  * Perform any BL31 platform runtime setup prior to BL31 exit common to ARM
465  * standard platforms
466  ******************************************************************************/
467 void arm_bl31_plat_runtime_setup(void)
468 {
469 	struct transfer_list_entry *te __unused;
470 	/* Initialize the runtime console */
471 	arm_console_runtime_init();
472 
473 #if TRANSFER_LIST && !RESET_TO_BL31
474 	/*
475 	 * We assume BL31 has added all TE's required by BL33 at this stage, ensure
476 	 * that data is visible to all observers by performing a flush operation, so
477 	 * they can access the updated data even if caching is not enabled.
478 	 */
479 	flush_dcache_range((uintptr_t)ns_tl, ns_tl->size);
480 #endif /* TRANSFER_LIST && !RESET_TO_BL31 */
481 
482 #if RECLAIM_INIT_CODE
483 	arm_free_init_memory();
484 #endif
485 
486 #if PLAT_RO_XLAT_TABLES
487 	arm_xlat_make_tables_readonly();
488 #endif
489 }
490 
491 #if RECLAIM_INIT_CODE
492 /*
493  * Make memory for image boot time code RW to reclaim it as stack for the
494  * secondary cores, or RO where it cannot be reclaimed:
495  *
496  *            |-------- INIT SECTION --------|
497  *  -----------------------------------------
498  * |  CORE 0  |  CORE 1  |  CORE 2  | EXTRA  |
499  * |  STACK   |  STACK   |  STACK   | SPACE  |
500  *  -----------------------------------------
501  *             <-------------------> <------>
502  *                MAKE RW AND XN       MAKE
503  *                  FOR STACKS       RO AND XN
504  */
505 void arm_free_init_memory(void)
506 {
507 	int ret = 0;
508 
509 	if (BL_STACKS_END < BL_INIT_CODE_END) {
510 		/* Reclaim some of the init section as stack if possible. */
511 		if (BL_INIT_CODE_BASE < BL_STACKS_END) {
512 			ret |= xlat_change_mem_attributes(BL_INIT_CODE_BASE,
513 					BL_STACKS_END - BL_INIT_CODE_BASE,
514 					MT_RW_DATA);
515 		}
516 		/* Make the rest of the init section read-only. */
517 		ret |= xlat_change_mem_attributes(BL_STACKS_END,
518 				BL_INIT_CODE_END - BL_STACKS_END,
519 				MT_RO_DATA);
520 	} else {
521 		/* The stacks cover the init section, so reclaim it all. */
522 		ret |= xlat_change_mem_attributes(BL_INIT_CODE_BASE,
523 				BL_INIT_CODE_END - BL_INIT_CODE_BASE,
524 				MT_RW_DATA);
525 	}
526 
527 	if (ret != 0) {
528 		ERROR("Could not reclaim initialization code");
529 		panic();
530 	}
531 }
532 #endif
533 
534 void __init bl31_platform_setup(void)
535 {
536 	arm_bl31_platform_setup();
537 
538 #if USE_GIC_DRIVER == 3
539 	gic_set_gicr_frames(arm_gicr_base_addrs);
540 #endif
541 }
542 
543 void bl31_plat_runtime_setup(void)
544 {
545 	arm_bl31_plat_runtime_setup();
546 }
547 
548 /*******************************************************************************
549  * Perform the very early platform specific architectural setup shared between
550  * ARM standard platforms. This only does basic initialization. Later
551  * architectural setup (bl31_arch_setup()) does not do anything platform
552  * specific.
553  ******************************************************************************/
554 void __init arm_bl31_plat_arch_setup(void)
555 {
556 	const mmap_region_t bl_regions[] = {
557 		MAP_BL31_TOTAL,
558 #if ENABLE_RME
559 		ARM_MAP_L0_GPT_REGION,
560 #endif
561 #if RECLAIM_INIT_CODE
562 		MAP_BL_INIT_CODE,
563 #endif
564 #if SEPARATE_NOBITS_REGION
565 		MAP_BL31_NOBITS,
566 #endif
567 		ARM_MAP_BL_RO,
568 #if USE_ROMLIB
569 		ARM_MAP_ROMLIB_CODE,
570 		ARM_MAP_ROMLIB_DATA,
571 #endif
572 #if USE_COHERENT_MEM
573 		ARM_MAP_BL_COHERENT_RAM,
574 #endif
575 		{0}
576 	};
577 
578 	setup_page_tables(bl_regions, plat_arm_get_mmap());
579 
580 	enable_mmu_el3(0);
581 
582 #if ENABLE_RME
583 #if RESET_TO_BL31
584 	/*  initialize GPT only when RME is enabled. */
585 	assert(is_feat_rme_present());
586 
587 	/* Initialise and enable granule protection after MMU. */
588 	arm_gpt_setup();
589 #endif /* RESET_TO_BL31 */
590 	/*
591 	 * Initialise Granule Protection library and enable GPC for the primary
592 	 * processor. The tables have already been initialized by a previous BL
593 	 * stage, so there is no need to provide any PAS here. This function
594 	 * sets up pointers to those tables.
595 	 */
596 	if (gpt_runtime_init(BITLOCK_BASE, BITLOCK_SIZE) < 0) {
597 		ERROR("gpt_runtime_init() failed!\n");
598 		panic();
599 	}
600 #endif /* ENABLE_RME */
601 
602 	arm_setup_romlib();
603 }
604 
605 void __init bl31_plat_arch_setup(void)
606 {
607 	arm_bl31_plat_arch_setup();
608 }
609