blob: 7a9f7a9d10f740b43c56db4527660633d7d8a49e [file] [log] [blame]
Tony Xief6118cc2016-01-15 17:17:32 +08001/*
Joel Hutton5cc3bc82018-03-21 11:40:57 +00002 * Copyright (c) 2016-2018, ARM Limited and Contributors. All rights reserved.
Tony Xief6118cc2016-01-15 17:17:32 +08003 *
dp-armfa3cf0b2017-05-03 09:38:09 +01004 * SPDX-License-Identifier: BSD-3-Clause
Tony Xief6118cc2016-01-15 17:17:32 +08005 */
6
Tony Xief6118cc2016-01-15 17:17:32 +08007#include <assert.h>
8#include <bl_common.h>
9#include <console.h>
Julius Wernerc7087782017-06-09 15:22:44 -070010#include <coreboot.h>
Tony Xief6118cc2016-01-15 17:17:32 +080011#include <debug.h>
Antonio Nino Diaz2361fcc2016-05-05 15:25:02 +010012#include <generic_delay_timer.h>
Tony Xief6118cc2016-01-15 17:17:32 +080013#include <mmio.h>
Tony Xief6118cc2016-01-15 17:17:32 +080014#include <plat_private.h>
Isla Mitchelle3631462017-07-14 10:46:32 +010015#include <platform.h>
Tony Xief6118cc2016-01-15 17:17:32 +080016#include <platform_def.h>
Julius Wernerc7087782017-06-09 15:22:44 -070017#include <uart_16550.h>
Tony Xief6118cc2016-01-15 17:17:32 +080018
Tony Xief6118cc2016-01-15 17:17:32 +080019/*
20 * The next 2 constants identify the extents of the code & RO data region.
21 * These addresses are used by the MMU setup code and therefore they must be
22 * page-aligned. It is the responsibility of the linker script to ensure that
23 * __RO_START__ and __RO_END__ linker symbols refer to page-aligned addresses.
24 */
Joel Hutton5cc3bc82018-03-21 11:40:57 +000025IMPORT_SYM(unsigned long, __RO_START__, BL31_RO_BASE);
26IMPORT_SYM(unsigned long, __RO_END__, BL31_RO_LIMIT);
Tony Xief6118cc2016-01-15 17:17:32 +080027
Tony Xief6118cc2016-01-15 17:17:32 +080028static entry_point_info_t bl32_ep_info;
29static entry_point_info_t bl33_ep_info;
30
31/*******************************************************************************
32 * Return a pointer to the 'entry_point_info' structure of the next image for
33 * the security state specified. BL33 corresponds to the non-secure image type
34 * while BL32 corresponds to the secure image type. A NULL pointer is returned
35 * if the image does not exist.
36 ******************************************************************************/
37entry_point_info_t *bl31_plat_get_next_image_ep_info(uint32_t type)
38{
39 entry_point_info_t *next_image_info;
40
41 next_image_info = (type == NON_SECURE) ? &bl33_ep_info : &bl32_ep_info;
42
43 /* None of the images on this platform can have 0x0 as the entrypoint */
44 if (next_image_info->pc)
45 return next_image_info;
46 else
47 return NULL;
48}
49
tony.xie54973e72017-04-24 16:18:10 +080050#pragma weak params_early_setup
51void params_early_setup(void *plat_param_from_bl2)
52{
53}
54
Tony Xief6118cc2016-01-15 17:17:32 +080055/*******************************************************************************
56 * Perform any BL3-1 early platform setup. Here is an opportunity to copy
John Tsichritzisd653d332018-09-14 10:34:57 +010057 * parameters passed by the calling EL (S-EL1 in BL2 & EL3 in BL1) before they
Tony Xief6118cc2016-01-15 17:17:32 +080058 * are lost (potentially). This needs to be done before the MMU is initialized
59 * so that the memory layout can be used while creating page tables.
60 * BL2 has flushed this information to memory, so we are guaranteed to pick up
61 * good data.
62 ******************************************************************************/
Antonio Nino Diaz58230902018-09-24 17:16:20 +010063void bl31_early_platform_setup2(u_register_t arg0, u_register_t arg1,
64 u_register_t arg2, u_register_t arg3)
Tony Xief6118cc2016-01-15 17:17:32 +080065{
Julius Wernerf39c8062017-08-02 16:31:04 -070066 static console_16550_t console;
Antonio Nino Diaz58230902018-09-24 17:16:20 +010067 struct rockchip_bl31_params *arg_from_bl2 = (struct rockchip_bl31_params *) arg0;
68 void *plat_params_from_bl2 = (void *) arg1;
Julius Wernerf39c8062017-08-02 16:31:04 -070069
Julius Wernerc7087782017-06-09 15:22:44 -070070 params_early_setup(plat_params_from_bl2);
71
72#if COREBOOT
73 if (coreboot_serial.type)
Julius Wernerf39c8062017-08-02 16:31:04 -070074 console_16550_register(coreboot_serial.baseaddr,
75 coreboot_serial.input_hertz,
76 coreboot_serial.baud,
77 &console);
Julius Wernerc7087782017-06-09 15:22:44 -070078#else
Julius Wernerf39c8062017-08-02 16:31:04 -070079 console_16550_register(PLAT_RK_UART_BASE, PLAT_RK_UART_CLOCK,
80 PLAT_RK_UART_BAUDRATE, &console);
Julius Wernerc7087782017-06-09 15:22:44 -070081#endif
Tony Xief6118cc2016-01-15 17:17:32 +080082
83 VERBOSE("bl31_setup\n");
84
85 /* Passing a NULL context is a critical programming error */
Antonio Nino Diaz58230902018-09-24 17:16:20 +010086 assert(arg_from_bl2);
Tony Xief6118cc2016-01-15 17:17:32 +080087
Antonio Nino Diaz58230902018-09-24 17:16:20 +010088 assert(arg_from_bl2->h.type == PARAM_BL31);
89 assert(arg_from_bl2->h.version >= VERSION_1);
Tony Xief6118cc2016-01-15 17:17:32 +080090
Antonio Nino Diaz58230902018-09-24 17:16:20 +010091 bl32_ep_info = *arg_from_bl2->bl32_ep_info;
92 bl33_ep_info = *arg_from_bl2->bl33_ep_info;
Tony Xief6118cc2016-01-15 17:17:32 +080093}
94
95/*******************************************************************************
96 * Perform any BL3-1 platform setup code
97 ******************************************************************************/
98void bl31_platform_setup(void)
99{
Antonio Nino Diaz2361fcc2016-05-05 15:25:02 +0100100 generic_delay_timer_init();
Tony Xief6118cc2016-01-15 17:17:32 +0800101 plat_rockchip_soc_init();
102
103 /* Initialize the gic cpu and distributor interfaces */
104 plat_rockchip_gic_driver_init();
105 plat_rockchip_gic_init();
106 plat_rockchip_pmu_init();
107}
108
109/*******************************************************************************
110 * Perform the very early platform specific architectural setup here. At the
111 * moment this is only intializes the mmu in a quick and dirty way.
112 ******************************************************************************/
113void bl31_plat_arch_setup(void)
114{
115 plat_cci_init();
116 plat_cci_enable();
117 plat_configure_mmu_el3(BL31_RO_BASE,
Masahiro Yamada0fac5af2016-12-28 16:11:41 +0900118 BL_COHERENT_RAM_END - BL31_RO_BASE,
Tony Xief6118cc2016-01-15 17:17:32 +0800119 BL31_RO_BASE,
120 BL31_RO_LIMIT,
Masahiro Yamada0fac5af2016-12-28 16:11:41 +0900121 BL_COHERENT_RAM_BASE,
122 BL_COHERENT_RAM_END);
Tony Xief6118cc2016-01-15 17:17:32 +0800123}