blob: 7638dac563469c83d214384547781f0a7ed7a60a [file] [log] [blame]
Heiko Stuebner9dc28332019-03-14 22:11:34 +01001/*
Julius Wernerf1d230c2019-05-30 16:57:15 -07002 * Copyright (c) 2016-2019, ARM Limited and Contributors. All rights reserved.
Heiko Stuebner9dc28332019-03-14 22:11:34 +01003 *
4 * SPDX-License-Identifier: BSD-3-Clause
5 */
6
7#include <assert.h>
8
9#include <platform_def.h>
10
11#include <arch_helpers.h>
12#include <common/bl_common.h>
13#include <common/debug.h>
Julius Wernerf1d230c2019-05-30 16:57:15 -070014#include <common/desc_image_load.h>
Heiko Stuebner9dc28332019-03-14 22:11:34 +010015#include <drivers/console.h>
16#include <drivers/generic_delay_timer.h>
17#include <drivers/ti/uart/uart_16550.h>
18#include <lib/coreboot.h>
19#include <lib/mmio.h>
20#include <plat_private.h>
21#include <plat/common/platform.h>
22
23static entry_point_info_t bl33_ep_info;
24
25/*******************************************************************************
26 * Return a pointer to the 'entry_point_info' structure of the next image for
27 * the security state specified. BL33 corresponds to the non-secure image type.
28 * A NULL pointer is returned if the image does not exist.
29 ******************************************************************************/
30entry_point_info_t *sp_min_plat_get_bl33_ep_info(void)
31{
32 entry_point_info_t *next_image_info;
33
34 next_image_info = &bl33_ep_info;
35
36 if (next_image_info->pc == 0U) {
37 return NULL;
38 }
39
40 return next_image_info;
41}
42
43#pragma weak params_early_setup
Julius Werner65d52672019-05-24 20:37:58 -070044void params_early_setup(u_register_t plat_param_from_bl2)
Heiko Stuebner9dc28332019-03-14 22:11:34 +010045{
46}
47
48unsigned int plat_is_my_cpu_primary(void);
49
50/*******************************************************************************
51 * Perform any BL32 specific platform actions.
52 ******************************************************************************/
53void sp_min_early_platform_setup2(u_register_t arg0, u_register_t arg1,
54 u_register_t arg2, u_register_t arg3)
55{
56 static console_16550_t console;
Heiko Stuebner9dc28332019-03-14 22:11:34 +010057
Julius Werner65d52672019-05-24 20:37:58 -070058 params_early_setup(arg1);
Heiko Stuebner9dc28332019-03-14 22:11:34 +010059
60#if COREBOOT
61 if (coreboot_serial.type)
62 console_16550_register(coreboot_serial.baseaddr,
63 coreboot_serial.input_hertz,
64 coreboot_serial.baud,
65 &console);
66#else
Christoph Müllnercb9204a2019-04-19 14:16:27 +020067 console_16550_register(rockchip_get_uart_base(), PLAT_RK_UART_CLOCK,
Heiko Stuebner42aba052019-08-05 14:46:00 +020068 rockchip_get_uart_baudrate(), &console);
Heiko Stuebner9dc28332019-03-14 22:11:34 +010069#endif
70 VERBOSE("sp_min_setup\n");
71
Julius Wernerf1d230c2019-05-30 16:57:15 -070072 bl31_params_parse_helper(arg0, NULL, &bl33_ep_info);
Heiko Stuebner9dc28332019-03-14 22:11:34 +010073}
74
75/*******************************************************************************
76 * Perform any sp_min platform setup code
77 ******************************************************************************/
78void sp_min_platform_setup(void)
79{
80 generic_delay_timer_init();
81 plat_rockchip_soc_init();
82
83 /* Initialize the gic cpu and distributor interfaces */
84 plat_rockchip_gic_driver_init();
85 plat_rockchip_gic_init();
86 plat_rockchip_pmu_init();
87}
88
89/*******************************************************************************
90 * Perform the very early platform specific architectural setup here. At the
91 * moment this is only intializes the mmu in a quick and dirty way.
92 ******************************************************************************/
93void sp_min_plat_arch_setup(void)
94{
95 plat_cci_init();
96 plat_cci_enable();
97
98 plat_configure_mmu_svc_mon(BL_CODE_BASE,
99 BL_COHERENT_RAM_END - BL_CODE_BASE,
100 BL_CODE_BASE,
101 BL_CODE_END,
102 BL_COHERENT_RAM_BASE,
103 BL_COHERENT_RAM_END);
104}
105
106void sp_min_plat_fiq_handler(uint32_t id)
107{
108 VERBOSE("[sp_min] interrupt #%d\n", id);
109}