xref: /rk3399_ARM-atf/plat/rockchip/common/bl31_plat_setup.c (revision 3c250b9ab669614c8a2fcae27f598f384c6146fe)
16fba6e04STony Xie /*
26fba6e04STony Xie  * Copyright (c) 2016, ARM Limited and Contributors. All rights reserved.
36fba6e04STony Xie  *
482cb2c1aSdp-arm  * SPDX-License-Identifier: BSD-3-Clause
56fba6e04STony Xie  */
66fba6e04STony Xie 
76fba6e04STony Xie #include <arm_gic.h>
86fba6e04STony Xie #include <assert.h>
96fba6e04STony Xie #include <bl_common.h>
106fba6e04STony Xie #include <console.h>
11*3c250b9aSJulius Werner #include <coreboot.h>
126fba6e04STony Xie #include <debug.h>
136704f425SAntonio Nino Diaz #include <generic_delay_timer.h>
146fba6e04STony Xie #include <mmio.h>
156fba6e04STony Xie #include <plat_private.h>
16ee1ebbd1SIsla Mitchell #include <platform.h>
176fba6e04STony Xie #include <platform_def.h>
18*3c250b9aSJulius Werner #include <uart_16550.h>
196fba6e04STony Xie 
206fba6e04STony Xie /*******************************************************************************
216fba6e04STony Xie  * Declarations of linker defined symbols which will help us find the layout
226fba6e04STony Xie  * of trusted SRAM
236fba6e04STony Xie  ******************************************************************************/
246fba6e04STony Xie unsigned long __RO_START__;
256fba6e04STony Xie unsigned long __RO_END__;
266fba6e04STony Xie 
276fba6e04STony Xie /*
286fba6e04STony Xie  * The next 2 constants identify the extents of the code & RO data region.
296fba6e04STony Xie  * These addresses are used by the MMU setup code and therefore they must be
306fba6e04STony Xie  * page-aligned.  It is the responsibility of the linker script to ensure that
316fba6e04STony Xie  * __RO_START__ and __RO_END__ linker symbols refer to page-aligned addresses.
326fba6e04STony Xie  */
336fba6e04STony Xie #define BL31_RO_BASE (unsigned long)(&__RO_START__)
346fba6e04STony Xie #define BL31_RO_LIMIT (unsigned long)(&__RO_END__)
356fba6e04STony Xie 
366fba6e04STony Xie static entry_point_info_t bl32_ep_info;
376fba6e04STony Xie static entry_point_info_t bl33_ep_info;
386fba6e04STony Xie 
396fba6e04STony Xie /*******************************************************************************
406fba6e04STony Xie  * Return a pointer to the 'entry_point_info' structure of the next image for
416fba6e04STony Xie  * the security state specified. BL33 corresponds to the non-secure image type
426fba6e04STony Xie  * while BL32 corresponds to the secure image type. A NULL pointer is returned
436fba6e04STony Xie  * if the image does not exist.
446fba6e04STony Xie  ******************************************************************************/
456fba6e04STony Xie entry_point_info_t *bl31_plat_get_next_image_ep_info(uint32_t type)
466fba6e04STony Xie {
476fba6e04STony Xie 	entry_point_info_t *next_image_info;
486fba6e04STony Xie 
496fba6e04STony Xie 	next_image_info = (type == NON_SECURE) ? &bl33_ep_info : &bl32_ep_info;
506fba6e04STony Xie 
516fba6e04STony Xie 	/* None of the images on this platform can have 0x0 as the entrypoint */
526fba6e04STony Xie 	if (next_image_info->pc)
536fba6e04STony Xie 		return next_image_info;
546fba6e04STony Xie 	else
556fba6e04STony Xie 		return NULL;
566fba6e04STony Xie }
576fba6e04STony Xie 
580d5ec955Stony.xie #pragma weak params_early_setup
590d5ec955Stony.xie void params_early_setup(void *plat_param_from_bl2)
600d5ec955Stony.xie {
610d5ec955Stony.xie }
620d5ec955Stony.xie 
636fba6e04STony Xie /*******************************************************************************
646fba6e04STony Xie  * Perform any BL3-1 early platform setup. Here is an opportunity to copy
656fba6e04STony Xie  * parameters passed by the calling EL (S-EL1 in BL2 & S-EL3 in BL1) before they
666fba6e04STony Xie  * are lost (potentially). This needs to be done before the MMU is initialized
676fba6e04STony Xie  * so that the memory layout can be used while creating page tables.
686fba6e04STony Xie  * BL2 has flushed this information to memory, so we are guaranteed to pick up
696fba6e04STony Xie  * good data.
706fba6e04STony Xie  ******************************************************************************/
716fba6e04STony Xie void bl31_early_platform_setup(bl31_params_t *from_bl2,
726fba6e04STony Xie 			       void *plat_params_from_bl2)
736fba6e04STony Xie {
74*3c250b9aSJulius Werner 	params_early_setup(plat_params_from_bl2);
75*3c250b9aSJulius Werner 
76*3c250b9aSJulius Werner #if COREBOOT
77*3c250b9aSJulius Werner 	if (coreboot_serial.type)
78*3c250b9aSJulius Werner 		console_init(coreboot_serial.baseaddr,
79*3c250b9aSJulius Werner 			     coreboot_serial.input_hertz, coreboot_serial.baud);
80*3c250b9aSJulius Werner #else
816fba6e04STony Xie 	console_init(PLAT_RK_UART_BASE, PLAT_RK_UART_CLOCK,
826fba6e04STony Xie 		     PLAT_RK_UART_BAUDRATE);
83*3c250b9aSJulius Werner #endif
846fba6e04STony Xie 
856fba6e04STony Xie 	VERBOSE("bl31_setup\n");
866fba6e04STony Xie 
876fba6e04STony Xie 	/* Passing a NULL context is a critical programming error */
886fba6e04STony Xie 	assert(from_bl2);
896fba6e04STony Xie 
906fba6e04STony Xie 	assert(from_bl2->h.type == PARAM_BL31);
916fba6e04STony Xie 	assert(from_bl2->h.version >= VERSION_1);
926fba6e04STony Xie 
936fba6e04STony Xie 	bl32_ep_info = *from_bl2->bl32_ep_info;
946fba6e04STony Xie 	bl33_ep_info = *from_bl2->bl33_ep_info;
956fba6e04STony Xie }
966fba6e04STony Xie 
976fba6e04STony Xie /*******************************************************************************
986fba6e04STony Xie  * Perform any BL3-1 platform setup code
996fba6e04STony Xie  ******************************************************************************/
1006fba6e04STony Xie void bl31_platform_setup(void)
1016fba6e04STony Xie {
1026704f425SAntonio Nino Diaz 	generic_delay_timer_init();
1036fba6e04STony Xie 	plat_rockchip_soc_init();
1046fba6e04STony Xie 
1056fba6e04STony Xie 	/* Initialize the gic cpu and distributor interfaces */
1066fba6e04STony Xie 	plat_rockchip_gic_driver_init();
1076fba6e04STony Xie 	plat_rockchip_gic_init();
1086fba6e04STony Xie 	plat_rockchip_pmu_init();
1096fba6e04STony Xie }
1106fba6e04STony Xie 
1116fba6e04STony Xie /*******************************************************************************
1126fba6e04STony Xie  * Perform the very early platform specific architectural setup here. At the
1136fba6e04STony Xie  * moment this is only intializes the mmu in a quick and dirty way.
1146fba6e04STony Xie  ******************************************************************************/
1156fba6e04STony Xie void bl31_plat_arch_setup(void)
1166fba6e04STony Xie {
1176fba6e04STony Xie 	plat_cci_init();
1186fba6e04STony Xie 	plat_cci_enable();
1196fba6e04STony Xie 	plat_configure_mmu_el3(BL31_RO_BASE,
12047497053SMasahiro Yamada 			       BL_COHERENT_RAM_END - BL31_RO_BASE,
1216fba6e04STony Xie 			       BL31_RO_BASE,
1226fba6e04STony Xie 			       BL31_RO_LIMIT,
12347497053SMasahiro Yamada 			       BL_COHERENT_RAM_BASE,
12447497053SMasahiro Yamada 			       BL_COHERENT_RAM_END);
1256fba6e04STony Xie }
126