blob: 9383265ec684fb6268988887beb2a292470f7622 [file] [log] [blame]
Haojian Zhuang1b5c2252017-06-01 15:20:46 +08001/*
2 * Copyright (c) 2017, ARM Limited and Contributors. All rights reserved.
3 *
4 * SPDX-License-Identifier: BSD-3-Clause
5 */
6
Haojian Zhuang1b5c2252017-06-01 15:20:46 +08007#include <assert.h>
Haojian Zhuang1b5c2252017-06-01 15:20:46 +08008#include <errno.h>
Antonio Nino Diaze0f90632018-12-14 00:18:21 +00009
Haojian Zhuang1b5c2252017-06-01 15:20:46 +080010#include <platform_def.h>
11
Antonio Nino Diaze0f90632018-12-14 00:18:21 +000012#include <arch_helpers.h>
13#include <bl31/interrupt_mgmt.h>
14#include <common/bl_common.h>
15#include <common/debug.h>
16#include <common/interrupt_props.h>
17#include <drivers/arm/cci.h>
18#include <drivers/arm/gicv2.h>
19#include <drivers/arm/pl011.h>
20#include <drivers/console.h>
21#include <drivers/generic_delay_timer.h>
22#include <lib/mmio.h>
23#include <plat/common/platform.h>
24
25#include <hi3660.h>
26#include <hisi_ipc.h>
Haojian Zhuang1b5c2252017-06-01 15:20:46 +080027#include "hikey960_def.h"
28#include "hikey960_private.h"
29
Haojian Zhuang1b5c2252017-06-01 15:20:46 +080030static entry_point_info_t bl32_ep_info;
31static entry_point_info_t bl33_ep_info;
Jerome Forissier3fb19df2018-11-08 09:59:29 +010032static console_pl011_t console;
Haojian Zhuang1b5c2252017-06-01 15:20:46 +080033
34/******************************************************************************
35 * On a GICv2 system, the Group 1 secure interrupts are treated as Group 0
36 * interrupts.
37 *****************************************************************************/
Antonio Nino Diaz582c2d72018-09-24 17:23:47 +010038static const interrupt_prop_t g0_interrupt_props[] = {
39 INTR_PROP_DESC(IRQ_SEC_PHY_TIMER, GIC_HIGHEST_SEC_PRIORITY,
40 GICV2_INTR_GROUP0, GIC_INTR_CFG_LEVEL),
41 INTR_PROP_DESC(IRQ_SEC_SGI_0, GIC_HIGHEST_SEC_PRIORITY,
42 GICV2_INTR_GROUP0, GIC_INTR_CFG_LEVEL),
Haojian Zhuang1b5c2252017-06-01 15:20:46 +080043};
44
45const gicv2_driver_data_t hikey960_gic_data = {
46 .gicd_base = GICD_REG_BASE,
47 .gicc_base = GICC_REG_BASE,
Antonio Nino Diaz582c2d72018-09-24 17:23:47 +010048 .interrupt_props = g0_interrupt_props,
49 .interrupt_props_num = ARRAY_SIZE(g0_interrupt_props),
Haojian Zhuang1b5c2252017-06-01 15:20:46 +080050};
51
52static const int cci_map[] = {
53 CCI400_SL_IFACE3_CLUSTER_IX,
54 CCI400_SL_IFACE4_CLUSTER_IX
55};
56
Victor Chong7d787f52017-08-16 13:53:56 +090057entry_point_info_t *bl31_plat_get_next_image_ep_info(uint32_t type)
Haojian Zhuang1b5c2252017-06-01 15:20:46 +080058{
59 entry_point_info_t *next_image_info;
60
61 next_image_info = (type == NON_SECURE) ? &bl33_ep_info : &bl32_ep_info;
62
63 /* None of the images on this platform can have 0x0 as the entrypoint */
64 if (next_image_info->pc)
65 return next_image_info;
66 return NULL;
67}
68
Antonio Nino Diaz582c2d72018-09-24 17:23:47 +010069void bl31_early_platform_setup2(u_register_t arg0, u_register_t arg1,
70 u_register_t arg2, u_register_t arg3)
Haojian Zhuang1b5c2252017-06-01 15:20:46 +080071{
72 unsigned int id, uart_base;
Antonio Nino Diaz582c2d72018-09-24 17:23:47 +010073 void *from_bl2;
74
75 from_bl2 = (void *) arg0;
Haojian Zhuang1b5c2252017-06-01 15:20:46 +080076
77 generic_delay_timer_init();
78 hikey960_read_boardid(&id);
79 if (id == 5300)
80 uart_base = PL011_UART5_BASE;
81 else
82 uart_base = PL011_UART6_BASE;
83
84 /* Initialize the console to provide early debug support */
Jerome Forissier3fb19df2018-11-08 09:59:29 +010085 console_pl011_register(uart_base, PL011_UART_CLK_IN_HZ,
86 PL011_BAUDRATE, &console);
Haojian Zhuang1b5c2252017-06-01 15:20:46 +080087
88 /* Initialize CCI driver */
89 cci_init(CCI400_REG_BASE, cci_map, ARRAY_SIZE(cci_map));
90 cci_enable_snoop_dvm_reqs(MPIDR_AFFLVL1_VAL(read_mpidr_el1()));
91
Victor Chong2d9a42d2017-08-17 15:21:10 +090092 /*
93 * Check params passed from BL2 should not be NULL,
94 */
95 bl_params_t *params_from_bl2 = (bl_params_t *)from_bl2;
96 assert(params_from_bl2 != NULL);
97 assert(params_from_bl2->h.type == PARAM_BL_PARAMS);
98 assert(params_from_bl2->h.version >= VERSION_2);
99
100 bl_params_node_t *bl_params = params_from_bl2->head;
101
102 /*
103 * Copy BL33 and BL32 (if present), entry point information.
104 * They are stored in Secure RAM, in BL2's address space.
105 */
106 while (bl_params) {
107 if (bl_params->image_id == BL32_IMAGE_ID)
108 bl32_ep_info = *bl_params->ep_info;
109
110 if (bl_params->image_id == BL33_IMAGE_ID)
111 bl33_ep_info = *bl_params->ep_info;
112
113 bl_params = bl_params->next_params_info;
114 }
115
116 if (bl33_ep_info.pc == 0)
117 panic();
Haojian Zhuang1b5c2252017-06-01 15:20:46 +0800118}
119
120void bl31_plat_arch_setup(void)
121{
122 hikey960_init_mmu_el3(BL31_BASE,
123 BL31_LIMIT - BL31_BASE,
Antonio Nino Diazde97ff32019-01-25 13:28:38 +0000124 BL_CODE_BASE,
125 BL_CODE_END,
126 BL_COHERENT_RAM_BASE,
127 BL_COHERENT_RAM_END);
Haojian Zhuang1b5c2252017-06-01 15:20:46 +0800128}
129
Ryan Grachek44f8d652018-11-29 12:45:55 -0600130static void hikey960_edma_init(void)
131{
132 int i;
133 uint32_t non_secure;
134
135 non_secure = EDMAC_SEC_CTRL_INTR_SEC | EDMAC_SEC_CTRL_GLOBAL_SEC;
136 mmio_write_32(EDMAC_SEC_CTRL, non_secure);
137
Ryan Gracheke2713b62019-01-11 08:33:00 -0600138 /* Channel 0 is reserved for LPM3, keep secure */
139 for (i = 1; i < EDMAC_CHANNEL_NUMS; i++) {
Ryan Grachek44f8d652018-11-29 12:45:55 -0600140 mmio_write_32(EDMAC_AXI_CONF(i), (1 << 6) | (1 << 18));
141 }
142}
143
Ryan Grachek62a84ed2019-02-11 10:22:24 -0600144static void hikey960_iomcu_dma_init(void)
145{
146 int i;
147 uint32_t non_secure;
148
149 non_secure = IOMCU_DMAC_SEC_CTRL_INTR_SEC | IOMCU_DMAC_SEC_CTRL_GLOBAL_SEC;
150 mmio_write_32(IOMCU_DMAC_SEC_CTRL, non_secure);
151
152 /* channels 0-3 are reserved */
153 for (i = 4; i < IOMCU_DMAC_CHANNEL_NUMS; i++) {
154 mmio_write_32(IOMCU_DMAC_AXI_CONF(i), IOMCU_DMAC_AXI_CONF_ARPROT_NS |
155 IOMCU_DMAC_AXI_CONF_AWPROT_NS);
156 }
157}
158
Haojian Zhuang1b5c2252017-06-01 15:20:46 +0800159void bl31_platform_setup(void)
160{
161 /* Initialize the GIC driver, cpu and distributor interfaces */
162 gicv2_driver_init(&hikey960_gic_data);
163 gicv2_distif_init();
164 gicv2_pcpu_distif_init();
165 gicv2_cpuif_enable();
166
Ryan Grachek44f8d652018-11-29 12:45:55 -0600167 hikey960_edma_init();
Ryan Grachek62a84ed2019-02-11 10:22:24 -0600168 hikey960_iomcu_dma_init();
Ryan Grachek44f8d652018-11-29 12:45:55 -0600169
Haojian Zhuang1b5c2252017-06-01 15:20:46 +0800170 hisi_ipc_init();
171}
172
Leo Yanaf316a32018-01-22 12:40:25 +0800173#ifdef SPD_none
174static uint64_t hikey_debug_fiq_handler(uint32_t id,
175 uint32_t flags,
176 void *handle,
177 void *cookie)
178{
179 int intr, intr_raw;
180
181 /* Acknowledge interrupt */
182 intr_raw = plat_ic_acknowledge_interrupt();
183 intr = plat_ic_get_interrupt_id(intr_raw);
184 ERROR("Invalid interrupt: intr=%d\n", intr);
185 console_flush();
186 panic();
187
188 return 0;
189}
190#endif
191
Haojian Zhuang1b5c2252017-06-01 15:20:46 +0800192void bl31_plat_runtime_setup(void)
193{
Leo Yanaf316a32018-01-22 12:40:25 +0800194#ifdef SPD_none
195 uint32_t flags;
196 int32_t rc;
197
198 flags = 0;
199 set_interrupt_rm_flag(flags, NON_SECURE);
200 rc = register_interrupt_type_handler(INTR_TYPE_S_EL1,
201 hikey_debug_fiq_handler,
202 flags);
203 if (rc != 0)
204 panic();
205#endif
Haojian Zhuang1b5c2252017-06-01 15:20:46 +0800206}