xref: /optee_os/core/arch/arm/plat-rockchip/psci_rk322x.c (revision 1032b987170022c6e8e386bae745e6681e6ae2e1)
1 /*
2  * Copyright (C) 2017, Fuzhou Rockchip Electronics Co., Ltd.
3  * All rights reserved.
4  *
5  * Redistribution and use in source and binary forms, with or without
6  * modification, are permitted provided that the following conditions are met:
7  *
8  * 1. Redistributions of source code must retain the above copyright notice,
9  * this list of conditions and the following disclaimer.
10  *
11  * 2. Redistributions in binary form must reproduce the above copyright notice,
12  * this list of conditions and the following disclaimer in the documentation
13  * and/or other materials provided with the distribution.
14  *
15  * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS"
16  * AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
17  * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
18  * ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE
19  * LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
20  * CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
21  * SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
22  * INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
23  * CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
24  * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
25  * POSSIBILITY OF SUCH DAMAGE.
26  */
27 
28 #include <common.h>
29 #include <console.h>
30 #include <cru.h>
31 #include <grf.h>
32 #include <initcall.h>
33 #include <io.h>
34 #include <kernel/delay.h>
35 #include <kernel/generic_boot.h>
36 #include <kernel/misc.h>
37 #include <mm/core_mmu.h>
38 #include <mm/core_memprot.h>
39 #include <platform_config.h>
40 #include <sm/optee_smc.h>
41 #include <sm/psci.h>
42 #include <stdint.h>
43 #include <tee/entry_std.h>
44 #include <tee/entry_fast.h>
45 
46 static bool wait_core_wfe_i(uint32_t core)
47 {
48 	uint32_t wfei_mask, loop = 0;
49 	vaddr_t va_base = (vaddr_t)phys_to_virt_io(GRF_BASE);
50 
51 	wfei_mask = CORE_WFE_I_MASK(core);
52 	while (!(read32(va_base + GRF_CPU_STATUS1) & wfei_mask) && loop < 500) {
53 		udelay(2);
54 		loop++;
55 	}
56 
57 	return read32(va_base + GRF_CPU_STATUS1) & wfei_mask;
58 }
59 
60 static bool core_held_in_reset(uint32_t core)
61 {
62 	uint32_t val;
63 	vaddr_t va_base = (vaddr_t)phys_to_virt_io(CRU_BASE);
64 
65 	val = read32(va_base + CRU_SOFTRST_CON(0));
66 
67 	return val & CORE_HELD_IN_RESET(core);
68 }
69 
70 uint32_t psci_version(void)
71 {
72 	return PSCI_VERSION_1_0;
73 }
74 
75 int psci_features(uint32_t psci_fid)
76 {
77 	switch (psci_fid) {
78 	case PSCI_PSCI_FEATURES:
79 	case PSCI_VERSION:
80 	case PSCI_CPU_ON:
81 	case PSCI_CPU_OFF:
82 	case PSCI_SYSTEM_RESET:
83 		return PSCI_RET_SUCCESS;
84 	default:
85 		return PSCI_RET_NOT_SUPPORTED;
86 	}
87 }
88 
89 int psci_cpu_on(uint32_t core_idx, uint32_t entry,
90 		uint32_t context_id __unused)
91 {
92 	bool wfei;
93 	vaddr_t cru_base = (vaddr_t)phys_to_virt_io(CRU_BASE);
94 	vaddr_t isram_base = (vaddr_t)phys_to_virt_io(ISRAM_BASE);
95 
96 	core_idx &= MPIDR_CPU_MASK;
97 	if ((core_idx == 0) || (core_idx >= CFG_TEE_CORE_NB_CORE))
98 		return PSCI_RET_INVALID_PARAMETERS;
99 
100 	DMSG("core_id: %" PRIu32, core_idx);
101 
102 	/* set secondary cores' NS entry addresses */
103 	ns_entry_addrs[core_idx] = entry;
104 
105 	/* wait */
106 	if (!core_held_in_reset(core_idx)) {
107 		wfei = wait_core_wfe_i(core_idx);
108 		if (!wfei) {
109 			EMSG("Can't wait cpu%" PRIu32 " wfei before softrst",
110 			     core_idx);
111 			return PSCI_RET_DENIED;
112 		}
113 	}
114 
115 	/* soft reset core */
116 	write32(CORE_SOFT_RESET(core_idx), cru_base + CRU_SOFTRST_CON(0));
117 	dsb();
118 
119 	udelay(2);
120 
121 	/* soft release core */
122 	write32(CORE_SOFT_RELEASE(core_idx), cru_base + CRU_SOFTRST_CON(0));
123 	dsb();
124 
125 	/* wait */
126 	wfei = wait_core_wfe_i(core_idx);
127 	if (!wfei) {
128 		EMSG("Can't wait cpu%" PRIu32 " wfei after softrst", core_idx);
129 		return PSCI_RET_DENIED;
130 	}
131 
132 	/* set secondary secure entry address and lock tag */
133 	write32(CFG_TEE_LOAD_ADDR, isram_base + BOOT_ADDR_OFFSET);
134 	write32(LOCK_TAG, isram_base + LOCK_ADDR_OFFSET);
135 	dsb();
136 
137 	sev();
138 	dsb();
139 
140 	return PSCI_RET_SUCCESS;
141 }
142 
143 int psci_cpu_off(void)
144 {
145 	uint32_t core = get_core_pos();
146 
147 	if ((core == 0) || (core >= CFG_TEE_CORE_NB_CORE))
148 		return PSCI_RET_INVALID_PARAMETERS;
149 
150 	DMSG("core_id: %" PRIu32, core);
151 
152 	psci_armv7_cpu_off();
153 	thread_mask_exceptions(THREAD_EXCP_ALL);
154 
155 	while (1)
156 		wfi();
157 
158 	return PSCI_RET_INTERNAL_FAILURE;
159 }
160 
161 int psci_affinity_info(uint32_t affinity,
162 		       uint32_t lowest_affnity_level __unused)
163 {
164 	uint32_t core_idx = affinity & MPIDR_CPU_MASK;
165 	uint32_t wfi_mask = CORE_WFI_MASK(core_idx);
166 	vaddr_t va_base = (vaddr_t)phys_to_virt_io(GRF_BASE);
167 
168 	DMSG("core_id: %" PRIu32 " STATUS: %" PRIx32 " MASK: %" PRIx32,
169 	     core_idx, read32(va_base + GRF_CPU_STATUS1), wfi_mask);
170 
171 	return (read32(va_base + GRF_CPU_STATUS1) & wfi_mask) ?
172 		PSCI_AFFINITY_LEVEL_OFF : PSCI_AFFINITY_LEVEL_ON;
173 }
174 
175 void psci_system_reset(void)
176 {
177 	vaddr_t va_base = (vaddr_t)phys_to_virt_io(CRU_BASE);
178 
179 	/* PLLs enter slow mode */
180 	write32(PLLS_SLOW_MODE, va_base + CRU_MODE_CON);
181 	dsb();
182 
183 	/* Global second reset */
184 	write32(CRU_SNDRST_VAL, va_base + CRU_SNDRST_VAL_BASE);
185 	dsb();
186 }
187 
188 /* When SMP bootup, we release cores one by one */
189 static TEE_Result reset_nonboot_cores(void)
190 {
191 	vaddr_t va_base = (vaddr_t)phys_to_virt_io(CRU_BASE);
192 
193 	write32(NONBOOT_CORES_SOFT_RESET, va_base + CRU_SOFTRST_CON(0));
194 
195 	return TEE_SUCCESS;
196 }
197 
198 service_init_late(reset_nonboot_cores);
199