blob: 17ac145ab90c3fdf989bcc17f064213ebe49c72b [file] [log] [blame]
Yann Gautieree8f5422019-02-14 11:13:25 +01001/*
Yann Gautiered6515d2021-03-08 15:03:35 +01002 * Copyright (c) 2015-2021, 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
10#include <platform_def.h>
11
12#include <arch_helpers.h>
13#include <common/debug.h>
Yann Gautier3d78a2e2019-02-14 11:01:20 +010014#include <drivers/st/stm32mp_clkfunc.h>
Yann Gautiered6515d2021-03-08 15:03:35 +010015#include <lib/smccc.h>
Yann Gautiera55169b2020-01-10 18:18:59 +010016#include <lib/xlat_tables/xlat_tables_v2.h>
Yann Gautieree8f5422019-02-14 11:13:25 +010017#include <plat/common/platform.h>
Yann Gautiered6515d2021-03-08 15:03:35 +010018#include <services/arm_arch_svc.h>
Yann Gautieree8f5422019-02-14 11:13:25 +010019
20uintptr_t plat_get_ns_image_entrypoint(void)
21{
22 return BL33_BASE;
23}
24
25unsigned int plat_get_syscnt_freq2(void)
26{
27 return read_cntfrq_el0();
28}
29
30static uintptr_t boot_ctx_address;
Yann Gautiercf1360d2020-08-27 18:28:57 +020031static uint16_t boot_itf_selected;
Yann Gautieree8f5422019-02-14 11:13:25 +010032
Yann Gautiera2e2a302019-02-14 11:13:39 +010033void stm32mp_save_boot_ctx_address(uintptr_t address)
Yann Gautieree8f5422019-02-14 11:13:25 +010034{
Yann Gautiercf1360d2020-08-27 18:28:57 +020035 boot_api_context_t *boot_context = (boot_api_context_t *)address;
36
Yann Gautieree8f5422019-02-14 11:13:25 +010037 boot_ctx_address = address;
Yann Gautiercf1360d2020-08-27 18:28:57 +020038 boot_itf_selected = boot_context->boot_interface_selected;
Yann Gautieree8f5422019-02-14 11:13:25 +010039}
40
Yann Gautiera2e2a302019-02-14 11:13:39 +010041uintptr_t stm32mp_get_boot_ctx_address(void)
Yann Gautieree8f5422019-02-14 11:13:25 +010042{
43 return boot_ctx_address;
44}
45
Yann Gautiercf1360d2020-08-27 18:28:57 +020046uint16_t stm32mp_get_boot_itf_selected(void)
47{
48 return boot_itf_selected;
49}
50
Yann Gautier3d78a2e2019-02-14 11:01:20 +010051uintptr_t stm32mp_ddrctrl_base(void)
52{
Yann Gautiera18f61b2020-05-05 17:58:40 +020053 return DDRCTRL_BASE;
Yann Gautier3d78a2e2019-02-14 11:01:20 +010054}
55
56uintptr_t stm32mp_ddrphyc_base(void)
57{
Yann Gautiera18f61b2020-05-05 17:58:40 +020058 return DDRPHYC_BASE;
Yann Gautier3d78a2e2019-02-14 11:01:20 +010059}
60
61uintptr_t stm32mp_pwr_base(void)
62{
Yann Gautiera18f61b2020-05-05 17:58:40 +020063 return PWR_BASE;
Yann Gautier3d78a2e2019-02-14 11:01:20 +010064}
65
66uintptr_t stm32mp_rcc_base(void)
67{
Yann Gautiera18f61b2020-05-05 17:58:40 +020068 return RCC_BASE;
Yann Gautier3d78a2e2019-02-14 11:01:20 +010069}
70
Yann Gautierf540a592019-05-22 19:13:51 +020071bool stm32mp_lock_available(void)
72{
73 const uint32_t c_m_bits = SCTLR_M_BIT | SCTLR_C_BIT;
74
75 /* The spinlocks are used only when MMU and data cache are enabled */
76 return (read_sctlr() & c_m_bits) == c_m_bits;
77}
78
Yann Gautier0ed7b2a2021-05-19 18:48:16 +020079#if STM32MP_USE_STM32IMAGE
Yann Gautiere97b6632019-04-19 10:48:36 +020080int stm32mp_check_header(boot_api_image_header_t *header, uintptr_t buffer)
81{
82 uint32_t i;
83 uint32_t img_checksum = 0U;
84
85 /*
86 * Check header/payload validity:
87 * - Header magic
88 * - Header version
89 * - Payload checksum
90 */
91 if (header->magic != BOOT_API_IMAGE_HEADER_MAGIC_NB) {
92 ERROR("Header magic\n");
93 return -EINVAL;
94 }
95
96 if (header->header_version != BOOT_API_HEADER_VERSION) {
97 ERROR("Header version\n");
98 return -EINVAL;
99 }
100
101 for (i = 0U; i < header->image_length; i++) {
102 img_checksum += *(uint8_t *)(buffer + i);
103 }
104
105 if (header->payload_checksum != img_checksum) {
106 ERROR("Checksum: 0x%x (awaited: 0x%x)\n", img_checksum,
107 header->payload_checksum);
108 return -EINVAL;
109 }
110
111 return 0;
112}
Yann Gautier0ed7b2a2021-05-19 18:48:16 +0200113#endif /* STM32MP_USE_STM32IMAGE */
Yann Gautiera55169b2020-01-10 18:18:59 +0100114
115int stm32mp_map_ddr_non_cacheable(void)
116{
117 return mmap_add_dynamic_region(STM32MP_DDR_BASE, STM32MP_DDR_BASE,
118 STM32MP_DDR_MAX_SIZE,
Yann Gautierf3bd87e2020-09-04 15:55:53 +0200119 MT_NON_CACHEABLE | MT_RW | MT_SECURE);
Yann Gautiera55169b2020-01-10 18:18:59 +0100120}
121
122int stm32mp_unmap_ddr(void)
123{
124 return mmap_remove_dynamic_region(STM32MP_DDR_BASE,
125 STM32MP_DDR_MAX_SIZE);
126}
Yann Gautiered6515d2021-03-08 15:03:35 +0100127
128/*****************************************************************************
129 * plat_is_smccc_feature_available() - This function checks whether SMCCC
130 * feature is availabile for platform.
131 * @fid: SMCCC function id
132 *
133 * Return SMC_ARCH_CALL_SUCCESS if SMCCC feature is available and
134 * SMC_ARCH_CALL_NOT_SUPPORTED otherwise.
135 *****************************************************************************/
136int32_t plat_is_smccc_feature_available(u_register_t fid)
137{
138 switch (fid) {
139 case SMCCC_ARCH_SOC_ID:
140 return SMC_ARCH_CALL_SUCCESS;
141 default:
142 return SMC_ARCH_CALL_NOT_SUPPORTED;
143 }
144}
145
146/* Get SOC version */
147int32_t plat_get_soc_version(void)
148{
149 uint32_t chip_id = stm32mp_get_chip_dev_id();
150 uint32_t manfid = SOC_ID_SET_JEP_106(JEDEC_ST_BKID, JEDEC_ST_MFID);
151
152 return (int32_t)(manfid | (chip_id & SOC_ID_IMPL_DEF_MASK));
153}
154
155/* Get SOC revision */
156int32_t plat_get_soc_revision(void)
157{
158 return (int32_t)(stm32mp_get_chip_version() & SOC_ID_REV_MASK);
159}