blob: 6331238178d2adf58a62c7c3f3751559c170eee1 [file] [log] [blame]
Samuel Holland58032582017-08-12 04:07:39 -05001/*
2 * Copyright (c) 2017-2018, ARM Limited and Contributors. All rights reserved.
3 *
4 * SPDX-License-Identifier: BSD-3-Clause
5 */
6
7#include <arch.h>
8#include <assert.h>
9#include <console.h>
10#include <debug.h>
11#include <generic_delay_timer.h>
12#include <gicv2.h>
13#include <platform.h>
14#include <platform_def.h>
15#include <sunxi_def.h>
16#include <sunxi_mmap.h>
17#include <uart_16550.h>
18
19#include "sunxi_private.h"
20
21static entry_point_info_t bl33_image_ep_info;
22
23static console_16550_t console;
24
25static const gicv2_driver_data_t sunxi_gic_data = {
26 .gicd_base = SUNXI_GICD_BASE,
27 .gicc_base = SUNXI_GICC_BASE,
28};
29
30void bl31_early_platform_setup2(u_register_t arg0, u_register_t arg1,
31 u_register_t arg2, u_register_t arg3)
32{
33 /* Initialize the debug console as soon as possible */
34 console_16550_register(SUNXI_UART0_BASE, SUNXI_UART0_CLK_IN_HZ,
35 SUNXI_UART0_BAUDRATE, &console);
36
37 /* Populate entry point information for BL33 */
38 SET_PARAM_HEAD(&bl33_image_ep_info, PARAM_EP, VERSION_1, 0);
39 /*
40 * Tell BL31 where the non-trusted software image
41 * is located and the entry state information
42 */
43 bl33_image_ep_info.pc = plat_get_ns_image_entrypoint();
44 bl33_image_ep_info.spsr = SPSR_64(MODE_EL2, MODE_SP_ELX,
45 DISABLE_ALL_EXCEPTIONS);
46 SET_SECURITY_STATE(bl33_image_ep_info.h.attr, NON_SECURE);
47}
48
49void bl31_plat_arch_setup(void)
50{
51 sunxi_configure_mmu_el3(0);
52}
53
54void bl31_platform_setup(void)
55{
56 generic_delay_timer_init();
57
58 /* Configure the interrupt controller */
59 gicv2_driver_init(&sunxi_gic_data);
60 gicv2_distif_init();
61 gicv2_pcpu_distif_init();
62 gicv2_cpuif_enable();
63
64 INFO("BL31: Platform setup done\n");
65}
66
67entry_point_info_t *bl31_plat_get_next_image_ep_info(uint32_t type)
68{
69 assert(sec_state_is_valid(type) != 0);
70 assert(type == NON_SECURE);
71
72 return &bl33_image_ep_info;
73}