blob: 39c19180b4bb4e047ac1e4cc584b7d633dbc976c [file] [log] [blame]
developer8670d252021-03-19 22:13:11 +08001/*
2 * Copyright (c) 2021, MediaTek Inc. All rights reserved.
3 *
4 * SPDX-License-Identifier: BSD-3-Clause
5 */
6
7/* System Includes */
8#include <assert.h>
9
10/* Project Includes */
11#include <common/bl_common.h>
12#include <common/debug.h>
13#include <common/desc_image_load.h>
developer98b97182021-03-26 18:33:43 +080014#include <drivers/generic_delay_timer.h>
developer8670d252021-03-19 22:13:11 +080015#include <drivers/ti/uart/uart_16550.h>
16#include <lib/coreboot.h>
17
18/* Platform Includes */
christine.zhua22c10b2021-03-24 21:44:52 +080019#include <mt_gic_v3.h>
Edward-JW Yang1c7fd0b2021-06-28 11:29:51 +080020#include <mt_spm.h>
developer4c1354b2021-04-22 14:56:58 +080021#include <mt_timer.h>
developer912c7d22021-03-31 14:53:43 +080022#include <mtgpio.h>
developer8670d252021-03-19 22:13:11 +080023#include <plat_params.h>
24#include <plat_private.h>
25
26static entry_point_info_t bl32_ep_info;
27static entry_point_info_t bl33_ep_info;
28
29/*******************************************************************************
30 * Return a pointer to the 'entry_point_info' structure of the next image for
31 * the security state specified. BL33 corresponds to the non-secure image type
32 * while BL32 corresponds to the secure image type. A NULL pointer is returned
33 * if the image does not exist.
34 ******************************************************************************/
35entry_point_info_t *bl31_plat_get_next_image_ep_info(uint32_t type)
36{
37 entry_point_info_t *next_image_info;
38
39 next_image_info = (type == NON_SECURE) ? &bl33_ep_info : &bl32_ep_info;
40 assert(next_image_info->h.type == PARAM_EP);
41
42 /* None of the images on this platform can have 0x0 as the entrypoint */
43 if (next_image_info->pc) {
44 return next_image_info;
45 } else {
46 return NULL;
47 }
48}
49
50/*******************************************************************************
51 * Perform any BL31 early platform setup. Here is an opportunity to copy
52 * parameters passed by the calling EL (S-EL1 in BL2 & S-EL3 in BL1) before they
53 * are lost (potentially). This needs to be done before the MMU is initialized
54 * so that the memory layout can be used while creating page tables.
55 * BL2 has flushed this information to memory, so we are guaranteed to pick up
56 * good data.
57 ******************************************************************************/
58void bl31_early_platform_setup2(u_register_t arg0, u_register_t arg1,
59 u_register_t arg2, u_register_t arg3)
60{
61 static console_t console;
62
63 params_early_setup(arg1);
64
65#if COREBOOT
66 if (coreboot_serial.type) {
67 console_16550_register(coreboot_serial.baseaddr,
68 coreboot_serial.input_hertz,
69 coreboot_serial.baud,
70 &console);
71 }
72#else
73 console_16550_register(UART0_BASE, UART_CLOCK, UART_BAUDRATE, &console);
74#endif
75
76 NOTICE("MT8195 bl31_setup\n");
77
78 bl31_params_parse_helper(arg0, &bl32_ep_info, &bl33_ep_info);
79}
80
81
82/*******************************************************************************
83 * Perform any BL31 platform setup code
84 ******************************************************************************/
85void bl31_platform_setup(void)
86{
christine.zhua22c10b2021-03-24 21:44:52 +080087 /* Initialize the GIC driver, CPU and distributor interfaces */
88 mt_gic_driver_init();
89 mt_gic_init();
developer4c1354b2021-04-22 14:56:58 +080090
developer912c7d22021-03-31 14:53:43 +080091 mt_gpio_init();
developer4c1354b2021-04-22 14:56:58 +080092 mt_systimer_init();
developer98b97182021-03-26 18:33:43 +080093 generic_delay_timer_init();
Edward-JW Yang1c7fd0b2021-06-28 11:29:51 +080094 spm_boot_init();
developer8670d252021-03-19 22:13:11 +080095}
96
97/*******************************************************************************
98 * Perform the very early platform specific architectural setup here. At the
99 * moment this is only intializes the mmu in a quick and dirty way.
100 ******************************************************************************/
101void bl31_plat_arch_setup(void)
102{
103 plat_configure_mmu_el3(BL31_START,
104 BL31_END - BL31_START,
105 BL_CODE_BASE,
106 BL_CODE_END);
107}