blob: fb8e08ebd2ec3a10e3592898bc02e4d5bd2c8688 [file] [log] [blame]
Yann Gautieree8f5422019-02-14 11:13:25 +01001/*
Yann Gautierd0714c02022-01-05 18:02:46 +01002 * Copyright (c) 2015-2022, ARM Limited and Contributors. All rights reserved.
Yann Gautieree8f5422019-02-14 11:13:25 +01003 *
4 * SPDX-License-Identifier: BSD-3-Clause
5 */
6
7#include <assert.h>
Yann Gautiere97b6632019-04-19 10:48:36 +02008#include <errno.h>
Yann Gautieree8f5422019-02-14 11:13:25 +01009
Yann Gautieree8f5422019-02-14 11:13:25 +010010#include <arch_helpers.h>
11#include <common/debug.h>
Yann Gautiera205a5c2021-08-30 15:06:54 +020012#include <drivers/clk.h>
Yann Gautier7a819122021-10-18 15:26:33 +020013#include <drivers/delay_timer.h>
14#include <drivers/st/stm32_console.h>
Yann Gautier3d78a2e2019-02-14 11:01:20 +010015#include <drivers/st/stm32mp_clkfunc.h>
Yann Gautier7a819122021-10-18 15:26:33 +020016#include <drivers/st/stm32mp_reset.h>
Yann Gautiered6515d2021-03-08 15:03:35 +010017#include <lib/smccc.h>
Yann Gautiera55169b2020-01-10 18:18:59 +010018#include <lib/xlat_tables/xlat_tables_v2.h>
Yann Gautieree8f5422019-02-14 11:13:25 +010019#include <plat/common/platform.h>
Yann Gautiered6515d2021-03-08 15:03:35 +010020#include <services/arm_arch_svc.h>
Yann Gautieree8f5422019-02-14 11:13:25 +010021
Yann Gautier7a819122021-10-18 15:26:33 +020022#include <platform_def.h>
23
Nicolas Le Bayondc4bcba2019-11-18 17:12:27 +010024#define HEADER_VERSION_MAJOR_MASK GENMASK(23, 16)
Yann Gautier7a819122021-10-18 15:26:33 +020025#define RESET_TIMEOUT_US_1MS 1000U
26
27static console_t console;
Nicolas Le Bayondc4bcba2019-11-18 17:12:27 +010028
Yann Gautieree8f5422019-02-14 11:13:25 +010029uintptr_t plat_get_ns_image_entrypoint(void)
30{
31 return BL33_BASE;
32}
33
34unsigned int plat_get_syscnt_freq2(void)
35{
36 return read_cntfrq_el0();
37}
38
39static uintptr_t boot_ctx_address;
Yann Gautiercf1360d2020-08-27 18:28:57 +020040static uint16_t boot_itf_selected;
Yann Gautieree8f5422019-02-14 11:13:25 +010041
Yann Gautiera2e2a302019-02-14 11:13:39 +010042void stm32mp_save_boot_ctx_address(uintptr_t address)
Yann Gautieree8f5422019-02-14 11:13:25 +010043{
Yann Gautiercf1360d2020-08-27 18:28:57 +020044 boot_api_context_t *boot_context = (boot_api_context_t *)address;
45
Yann Gautieree8f5422019-02-14 11:13:25 +010046 boot_ctx_address = address;
Yann Gautiercf1360d2020-08-27 18:28:57 +020047 boot_itf_selected = boot_context->boot_interface_selected;
Yann Gautieree8f5422019-02-14 11:13:25 +010048}
49
Yann Gautiera2e2a302019-02-14 11:13:39 +010050uintptr_t stm32mp_get_boot_ctx_address(void)
Yann Gautieree8f5422019-02-14 11:13:25 +010051{
52 return boot_ctx_address;
53}
54
Yann Gautiercf1360d2020-08-27 18:28:57 +020055uint16_t stm32mp_get_boot_itf_selected(void)
56{
57 return boot_itf_selected;
58}
59
Yann Gautier3d78a2e2019-02-14 11:01:20 +010060uintptr_t stm32mp_ddrctrl_base(void)
61{
Yann Gautiera18f61b2020-05-05 17:58:40 +020062 return DDRCTRL_BASE;
Yann Gautier3d78a2e2019-02-14 11:01:20 +010063}
64
65uintptr_t stm32mp_ddrphyc_base(void)
66{
Yann Gautiera18f61b2020-05-05 17:58:40 +020067 return DDRPHYC_BASE;
Yann Gautier3d78a2e2019-02-14 11:01:20 +010068}
69
70uintptr_t stm32mp_pwr_base(void)
71{
Yann Gautiera18f61b2020-05-05 17:58:40 +020072 return PWR_BASE;
Yann Gautier3d78a2e2019-02-14 11:01:20 +010073}
74
75uintptr_t stm32mp_rcc_base(void)
76{
Yann Gautiera18f61b2020-05-05 17:58:40 +020077 return RCC_BASE;
Yann Gautier3d78a2e2019-02-14 11:01:20 +010078}
79
Yann Gautierf540a592019-05-22 19:13:51 +020080bool stm32mp_lock_available(void)
81{
82 const uint32_t c_m_bits = SCTLR_M_BIT | SCTLR_C_BIT;
83
84 /* The spinlocks are used only when MMU and data cache are enabled */
85 return (read_sctlr() & c_m_bits) == c_m_bits;
86}
87
Yann Gautier0ed7b2a2021-05-19 18:48:16 +020088#if STM32MP_USE_STM32IMAGE
Yann Gautiere97b6632019-04-19 10:48:36 +020089int stm32mp_check_header(boot_api_image_header_t *header, uintptr_t buffer)
90{
91 uint32_t i;
92 uint32_t img_checksum = 0U;
93
94 /*
95 * Check header/payload validity:
96 * - Header magic
97 * - Header version
98 * - Payload checksum
99 */
100 if (header->magic != BOOT_API_IMAGE_HEADER_MAGIC_NB) {
101 ERROR("Header magic\n");
102 return -EINVAL;
103 }
104
Nicolas Le Bayondc4bcba2019-11-18 17:12:27 +0100105 if ((header->header_version & HEADER_VERSION_MAJOR_MASK) !=
106 (BOOT_API_HEADER_VERSION & HEADER_VERSION_MAJOR_MASK)) {
Yann Gautiere97b6632019-04-19 10:48:36 +0200107 ERROR("Header version\n");
108 return -EINVAL;
109 }
110
111 for (i = 0U; i < header->image_length; i++) {
112 img_checksum += *(uint8_t *)(buffer + i);
113 }
114
115 if (header->payload_checksum != img_checksum) {
116 ERROR("Checksum: 0x%x (awaited: 0x%x)\n", img_checksum,
117 header->payload_checksum);
118 return -EINVAL;
119 }
120
121 return 0;
122}
Yann Gautier0ed7b2a2021-05-19 18:48:16 +0200123#endif /* STM32MP_USE_STM32IMAGE */
Yann Gautiera55169b2020-01-10 18:18:59 +0100124
125int stm32mp_map_ddr_non_cacheable(void)
126{
127 return mmap_add_dynamic_region(STM32MP_DDR_BASE, STM32MP_DDR_BASE,
128 STM32MP_DDR_MAX_SIZE,
Yann Gautierf3bd87e2020-09-04 15:55:53 +0200129 MT_NON_CACHEABLE | MT_RW | MT_SECURE);
Yann Gautiera55169b2020-01-10 18:18:59 +0100130}
131
132int stm32mp_unmap_ddr(void)
133{
134 return mmap_remove_dynamic_region(STM32MP_DDR_BASE,
135 STM32MP_DDR_MAX_SIZE);
136}
Yann Gautiered6515d2021-03-08 15:03:35 +0100137
Yann Gautier414f17c2021-10-18 15:50:05 +0200138#if defined(IMAGE_BL2)
Yann Gautier7a819122021-10-18 15:26:33 +0200139static void reset_uart(uint32_t reset)
140{
141 int ret;
142
143 ret = stm32mp_reset_assert(reset, RESET_TIMEOUT_US_1MS);
144 if (ret != 0) {
145 panic();
146 }
147
148 udelay(2);
149
150 ret = stm32mp_reset_deassert(reset, RESET_TIMEOUT_US_1MS);
151 if (ret != 0) {
152 panic();
153 }
154
155 mdelay(1);
156}
Yann Gautier414f17c2021-10-18 15:50:05 +0200157#endif
Yann Gautier7a819122021-10-18 15:26:33 +0200158
159int stm32mp_uart_console_setup(void)
160{
161 struct dt_node_info dt_uart_info;
162 unsigned int console_flags;
Yann Gautierd0714c02022-01-05 18:02:46 +0100163 uint32_t clk_rate = 0U;
Yann Gautier7a819122021-10-18 15:26:33 +0200164 int result;
Yann Gautier3d8497c2021-10-18 16:06:22 +0200165 uint32_t boot_itf __unused;
166 uint32_t boot_instance __unused;
Yann Gautier7a819122021-10-18 15:26:33 +0200167
168 result = dt_get_stdout_uart_info(&dt_uart_info);
169
170 if ((result <= 0) ||
Yann Gautierd0714c02022-01-05 18:02:46 +0100171 (dt_uart_info.status == DT_DISABLED)) {
172 return -ENODEV;
173 }
174
175#if defined(IMAGE_BL2)
176 if ((dt_uart_info.clock < 0) ||
Yann Gautier7a819122021-10-18 15:26:33 +0200177 (dt_uart_info.reset < 0)) {
178 return -ENODEV;
179 }
Yann Gautierd0714c02022-01-05 18:02:46 +0100180#endif
Yann Gautier7a819122021-10-18 15:26:33 +0200181
Yann Gautier3d8497c2021-10-18 16:06:22 +0200182#if STM32MP_UART_PROGRAMMER || !defined(IMAGE_BL2)
183 stm32_get_boot_interface(&boot_itf, &boot_instance);
184
185 if ((boot_itf == BOOT_API_CTX_BOOT_INTERFACE_SEL_SERIAL_UART) &&
186 (get_uart_address(boot_instance) == dt_uart_info.base)) {
187 return -EACCES;
188 }
189#endif
190
Yann Gautier414f17c2021-10-18 15:50:05 +0200191#if defined(IMAGE_BL2)
Yann Gautier7a819122021-10-18 15:26:33 +0200192 if (dt_set_stdout_pinctrl() != 0) {
193 return -ENODEV;
194 }
195
Yann Gautiera205a5c2021-08-30 15:06:54 +0200196 clk_enable((unsigned long)dt_uart_info.clock);
Yann Gautier7a819122021-10-18 15:26:33 +0200197
198 reset_uart((uint32_t)dt_uart_info.reset);
199
Yann Gautiera205a5c2021-08-30 15:06:54 +0200200 clk_rate = clk_get_rate((unsigned long)dt_uart_info.clock);
Yann Gautierd0714c02022-01-05 18:02:46 +0100201#endif
Yann Gautier7a819122021-10-18 15:26:33 +0200202
203 if (console_stm32_register(dt_uart_info.base, clk_rate,
204 STM32MP_UART_BAUDRATE, &console) == 0) {
205 panic();
206 }
207
208 console_flags = CONSOLE_FLAG_BOOT | CONSOLE_FLAG_CRASH |
209 CONSOLE_FLAG_TRANSLATE_CRLF;
Yann Gautier414f17c2021-10-18 15:50:05 +0200210#if !defined(IMAGE_BL2) && defined(DEBUG)
211 console_flags |= CONSOLE_FLAG_RUNTIME;
212#endif
Yann Gautier7a819122021-10-18 15:26:33 +0200213 console_set_scope(&console, console_flags);
214
215 return 0;
216}
217
Yann Gautiered6515d2021-03-08 15:03:35 +0100218/*****************************************************************************
219 * plat_is_smccc_feature_available() - This function checks whether SMCCC
220 * feature is availabile for platform.
221 * @fid: SMCCC function id
222 *
223 * Return SMC_ARCH_CALL_SUCCESS if SMCCC feature is available and
224 * SMC_ARCH_CALL_NOT_SUPPORTED otherwise.
225 *****************************************************************************/
226int32_t plat_is_smccc_feature_available(u_register_t fid)
227{
228 switch (fid) {
229 case SMCCC_ARCH_SOC_ID:
230 return SMC_ARCH_CALL_SUCCESS;
231 default:
232 return SMC_ARCH_CALL_NOT_SUPPORTED;
233 }
234}
235
236/* Get SOC version */
237int32_t plat_get_soc_version(void)
238{
239 uint32_t chip_id = stm32mp_get_chip_dev_id();
240 uint32_t manfid = SOC_ID_SET_JEP_106(JEDEC_ST_BKID, JEDEC_ST_MFID);
241
242 return (int32_t)(manfid | (chip_id & SOC_ID_IMPL_DEF_MASK));
243}
244
245/* Get SOC revision */
246int32_t plat_get_soc_revision(void)
247{
248 return (int32_t)(stm32mp_get_chip_version() & SOC_ID_REV_MASK);
249}