blob: efa30f6119f6f1858d09dc6b299eacb8a7028cfa [file] [log] [blame]
kenny liang3fa9dec2019-04-10 21:09:26 +08001/*
kenny liang7352f322019-05-02 19:29:25 +08002 * Copyright (c) 2019, MediaTek Inc. All rights reserved.
kenny liang3fa9dec2019-04-10 21:09:26 +08003 *
4 * SPDX-License-Identifier: BSD-3-Clause
5 */
6
7/* common headers */
8#include <arch_helpers.h>
9#include <assert.h>
10#include <common/debug.h>
11#include <lib/mmio.h>
12#include <lib/psci/psci.h>
13#include <errno.h>
14
15/* mediatek platform specific headers */
16#include <platform_def.h>
17#include <scu.h>
kenny liang7352f322019-05-02 19:29:25 +080018#include <mt_gic_v3.h>
kenny liang539061b2019-08-21 22:49:49 +080019#include <mtk_mcdi.h>
kenny liang3fa9dec2019-04-10 21:09:26 +080020#include <mtk_plat_common.h>
kenny liang3d91c9c2019-05-03 17:02:46 +080021#include <mtgpio.h>
kenny liang7352f322019-05-02 19:29:25 +080022#include <mtspmc.h>
kenny liang7352f322019-05-02 19:29:25 +080023#include <plat_dcm.h>
24#include <plat_debug.h>
kenny liang3d91c9c2019-05-03 17:02:46 +080025#include <plat_params.h>
kenny liang3fa9dec2019-04-10 21:09:26 +080026#include <plat_private.h>
kenny liang3d91c9c2019-05-03 17:02:46 +080027#include <power_tracer.h>
kenny liange977b4d2019-05-02 20:02:05 +080028#include <pmic.h>
kenny liang3c25ba42019-08-21 20:50:20 +080029#include <spm.h>
30#include <spm_suspend.h>
kenny liang539061b2019-08-21 22:49:49 +080031#include <sspm.h>
kenny liange977b4d2019-05-02 20:02:05 +080032#include <rtc.h>
kenny liang3fa9dec2019-04-10 21:09:26 +080033
kenny liang539061b2019-08-21 22:49:49 +080034/* Local power state for power domains in Run state. */
35#define MTK_LOCAL_STATE_RUN 0
36/* Local power state for retention. */
37#define MTK_LOCAL_STATE_RET 1
38/* Local power state for OFF/power-down. */
39#define MTK_LOCAL_STATE_OFF 2
40
41#if PSCI_EXTENDED_STATE_ID
42/*
43 * Macros used to parse state information from State-ID if it is using the
44 * recommended encoding for State-ID.
45 */
46#define MTK_LOCAL_PSTATE_WIDTH 4
47#define MTK_LOCAL_PSTATE_MASK ((1 << MTK_LOCAL_PSTATE_WIDTH) - 1)
48
49/* Macros to construct the composite power state */
50
51/* Make composite power state parameter till power level 0 */
52
53#define mtk_make_pwrstate_lvl0(lvl0_state, pwr_lvl, type) \
54 (((lvl0_state) << PSTATE_ID_SHIFT) | ((type) << PSTATE_TYPE_SHIFT))
55
56#else /* !PSCI_EXTENDED_STATE_ID */
57
58#define mtk_make_pwrstate_lvl0(lvl0_state, pwr_lvl, type) \
59 (((lvl0_state) << PSTATE_ID_SHIFT) | \
60 ((pwr_lvl) << PSTATE_PWR_LVL_SHIFT) | \
61 ((type) << PSTATE_TYPE_SHIFT))
62
63#endif /* PSCI_EXTENDED_STATE_ID */
64
65/* Make composite power state parameter till power level 1 */
66#define mtk_make_pwrstate_lvl1(lvl1_state, lvl0_state, pwr_lvl, type) \
67 (((lvl1_state) << MTK_LOCAL_PSTATE_WIDTH) | \
68 mtk_make_pwrstate_lvl0(lvl0_state, pwr_lvl, type))
69
70/* Make composite power state parameter till power level 2 */
71#define mtk_make_pwrstate_lvl2( \
72 lvl2_state, lvl1_state, lvl0_state, pwr_lvl, type) \
73 (((lvl2_state) << (MTK_LOCAL_PSTATE_WIDTH * 2)) | \
74 mtk_make_pwrstate_lvl1(lvl1_state, lvl0_state, pwr_lvl, type))
75
76#define MTK_PWR_LVL0 0
77#define MTK_PWR_LVL1 1
78#define MTK_PWR_LVL2 2
79
80/* Macros to read the MTK power domain state */
81#define MTK_CORE_PWR_STATE(state) (state)->pwr_domain_state[MTK_PWR_LVL0]
82#define MTK_CLUSTER_PWR_STATE(state) (state)->pwr_domain_state[MTK_PWR_LVL1]
83#define MTK_SYSTEM_PWR_STATE(state) ((PLAT_MAX_PWR_LVL > MTK_PWR_LVL1) ? \
84 (state)->pwr_domain_state[MTK_PWR_LVL2] : 0)
85
86#if PSCI_EXTENDED_STATE_ID
87/*
88 * The table storing the valid idle power states. Ensure that the
89 * array entries are populated in ascending order of state-id to
90 * enable us to use binary search during power state validation.
91 * The table must be terminated by a NULL entry.
92 */
93const unsigned int mtk_pm_idle_states[] = {
94 /* State-id - 0x001 */
95 mtk_make_pwrstate_lvl2(MTK_LOCAL_STATE_RUN, MTK_LOCAL_STATE_RUN,
96 MTK_LOCAL_STATE_RET, MTK_PWR_LVL0, PSTATE_TYPE_STANDBY),
97 /* State-id - 0x002 */
98 mtk_make_pwrstate_lvl2(MTK_LOCAL_STATE_RUN, MTK_LOCAL_STATE_RUN,
99 MTK_LOCAL_STATE_OFF, MTK_PWR_LVL0, PSTATE_TYPE_POWERDOWN),
100 /* State-id - 0x022 */
101 mtk_make_pwrstate_lvl2(MTK_LOCAL_STATE_RUN, MTK_LOCAL_STATE_OFF,
102 MTK_LOCAL_STATE_OFF, MTK_PWR_LVL1, PSTATE_TYPE_POWERDOWN),
103#if PLAT_MAX_PWR_LVL > MTK_PWR_LVL1
104 /* State-id - 0x222 */
105 mtk_make_pwrstate_lvl2(MTK_LOCAL_STATE_OFF, MTK_LOCAL_STATE_OFF,
106 MTK_LOCAL_STATE_OFF, MTK_PWR_LVL2, PSTATE_TYPE_POWERDOWN),
107#endif
108 0,
109};
110#endif
111
112#define CPU_IDX(cluster, cpu) ((cluster << 2) + cpu)
113#define ON true
114#define OFF false
115
116/* Pause MCDI when CPU hotplug */
117static bool HP_SSPM_PAUSE;
118/* CPU Hotplug by SSPM */
119static bool HP_SSPM_CTRL = true;
120/* Turn off cluster when CPU hotplug off */
121static bool HP_CLUSTER_OFF = true;
122/* Turn off cluster when CPU MCDI off */
123static bool MCDI_C2 = true;
124/* Enable MCDI */
125static bool MCDI_SSPM = true;
kenny liang7352f322019-05-02 19:29:25 +0800126
127static uintptr_t secure_entrypoint;
128
129static void mp1_L2_desel_config(void)
130{
131 mmio_write_64(MCUCFG_BASE + 0x2200, 0x2092c820);
132
133 dsb();
134}
135
kenny liang539061b2019-08-21 22:49:49 +0800136static bool clst_single_pwr(int cluster, int cpu)
137{
138 uint32_t cpu_mask[2] = {0x00001e00, 0x000f0000};
139 uint32_t cpu_pwr_bit[] = {9, 10, 11, 12, 16, 17, 18, 19};
140 int my_idx = (cluster << 2) + cpu;
141 uint32_t pwr_stat = mmio_read_32(0x10006180);
142
143 return !(pwr_stat & (cpu_mask[cluster] & ~BIT(cpu_pwr_bit[my_idx])));
144}
145
146static bool clst_single_on(int cluster, int cpu)
147{
148 uint32_t cpu_mask[2] = {0x0f, 0xf0};
149 int my_idx = (cluster << 2) + cpu;
150 uint32_t on_stat = mcdi_avail_cpu_mask_read();
151
152 return !(on_stat & (cpu_mask[cluster] & ~BIT(my_idx)));
153}
154
kenny liang4450a512019-10-04 10:47:11 +0800155static void plat_cpu_pwrdwn_common(void)
156{
157 /* Prevent interrupts from spuriously waking up this cpu */
158 mt_gic_rdistif_save();
159 mt_gic_cpuif_disable();
160}
161
162static void plat_cpu_pwron_common(void)
163{
164 /* Enable the gic cpu interface */
165 mt_gic_cpuif_enable();
166 mt_gic_rdistif_init();
167 mt_gic_rdistif_restore();
168}
169
kenny liang539061b2019-08-21 22:49:49 +0800170static void plat_cluster_pwrdwn_common(uint64_t mpidr, int cluster)
171{
172 if (cluster > 0)
173 mt_gic_sync_dcm_enable();
174
175 /* Disable coherency */
176 plat_mtk_cci_disable();
177 disable_scu(mpidr);
178}
179
180static void plat_cluster_pwron_common(uint64_t mpidr, int cluster)
181{
182 if (cluster > 0) {
183 l2c_parity_check_setup();
184 circular_buffer_setup();
185 mp1_L2_desel_config();
186 mt_gic_sync_dcm_disable();
187 }
188
189 /* Enable coherency */
190 enable_scu(mpidr);
191 plat_mtk_cci_enable();
192 /* Enable big core dcm */
193 plat_dcm_restore_cluster_on(mpidr);
194 /* Enable rgu dcm */
195 plat_dcm_rgu_enable();
196}
197
198static void plat_cpu_standby(plat_local_state_t cpu_state)
199{
200 unsigned int scr;
201
202 scr = read_scr_el3();
203 write_scr_el3(scr | SCR_IRQ_BIT | SCR_FIQ_BIT);
204
205 isb();
206 dsb();
207 wfi();
208
209 write_scr_el3(scr);
210}
211
212static void mcdi_ctrl_before_hotplug_on(int cluster, int cpu)
213{
214 if (!HP_SSPM_CTRL && HP_SSPM_PAUSE && MCDI_SSPM) {
215 mcdi_pause_clr(cluster, CPU_IDX(cluster, cpu), OFF);
216 mcdi_pause_set(cluster, CPU_IDX(cluster, cpu), ON);
217 }
218}
219
220static void mcdi_ctrl_before_hotplug_off(int cluster, int cpu, bool cluster_off)
221{
222 if (!HP_SSPM_CTRL && HP_SSPM_PAUSE && MCDI_SSPM)
223 mcdi_pause_set(cluster_off ? cluster : -1,
224 CPU_IDX(cluster, cpu), OFF);
225}
226
227static void mcdi_ctrl_cluster_cpu_off(int cluster, int cpu, bool cluster_off)
228{
229 if (MCDI_SSPM) {
230 sspm_set_bootaddr(secure_entrypoint);
231
232 sspm_standbywfi_irq_enable(CPU_IDX(cluster, cpu));
233
234 if (cluster_off)
235 sspm_cluster_pwr_off_notify(cluster);
236 else
237 sspm_cluster_pwr_on_notify(cluster);
238 }
239}
240
241static void mcdi_ctrl_suspend(void)
242{
243 if (MCDI_SSPM)
244 mcdi_pause();
245}
246
247static void mcdi_ctrl_resume(void)
248{
249 if (MCDI_SSPM)
250 mcdi_unpause();
251}
252
253static void hotplug_ctrl_cluster_on(int cluster, int cpu)
254{
255 if (HP_SSPM_CTRL && MCDI_SSPM) {
256 mcdi_hotplug_clr(cluster, CPU_IDX(cluster, cpu), OFF);
257 mcdi_hotplug_set(cluster, -1, ON);
258 mcdi_hotplug_wait_ack(cluster, -1, ON);
259 } else {
260 /* power on cluster */
261 if (!spm_get_cluster_powerstate(cluster))
262 spm_poweron_cluster(cluster);
263 }
264}
265
266static void hotplug_ctrl_cpu_on(int cluster, int cpu)
267{
268 if (HP_SSPM_CTRL && MCDI_SSPM)
269 mcdi_hotplug_set(cluster, CPU_IDX(cluster, cpu), ON);
270 else
271 spm_poweron_cpu(cluster, cpu);
272}
273
274static void hotplug_ctrl_cpu_on_finish(int cluster, int cpu)
275{
276 spm_disable_cpu_auto_off(cluster, cpu);
277
278 if (HP_SSPM_CTRL && MCDI_SSPM)
279 mcdi_hotplug_clr(cluster, CPU_IDX(cluster, cpu), ON);
280 else if (HP_SSPM_PAUSE && MCDI_SSPM)
281 mcdi_pause_clr(cluster, CPU_IDX(cluster, cpu), ON);
282
283 mcdi_avail_cpu_mask_set(BIT(CPU_IDX(cluster, cpu)));
284}
285
286static void hotplug_ctrl_cluster_cpu_off(int cluster, int cpu, bool cluster_off)
287{
288 mcdi_avail_cpu_mask_clr(BIT(CPU_IDX(cluster, cpu)));
289
290 if (HP_SSPM_CTRL && MCDI_SSPM) {
291 mcdi_hotplug_set(cluster_off ? cluster : -1,
292 CPU_IDX(cluster, cpu), OFF);
293 } else {
294 spm_enable_cpu_auto_off(cluster, cpu);
295
296 if (cluster_off)
297 spm_enable_cluster_auto_off(cluster);
298
299 spm_set_cpu_power_off(cluster, cpu);
300 }
301}
302
kenny liang7352f322019-05-02 19:29:25 +0800303static int plat_mtk_power_domain_on(unsigned long mpidr)
304{
305 int cpu = MPIDR_AFFLVL0_VAL(mpidr);
306 int cluster = MPIDR_AFFLVL1_VAL(mpidr);
307
kenny liang539061b2019-08-21 22:49:49 +0800308 mcdi_ctrl_before_hotplug_on(cluster, cpu);
309 hotplug_ctrl_cluster_on(cluster, cpu);
kenny liang7352f322019-05-02 19:29:25 +0800310
311 /* init cpu reset arch as AARCH64 */
312 mcucfg_init_archstate(cluster, cpu, 1);
313 mcucfg_set_bootaddr(cluster, cpu, secure_entrypoint);
314
kenny liang539061b2019-08-21 22:49:49 +0800315 hotplug_ctrl_cpu_on(cluster, cpu);
kenny liang7352f322019-05-02 19:29:25 +0800316
317 return PSCI_E_SUCCESS;
318}
319
320static void plat_mtk_power_domain_off(const psci_power_state_t *state)
321{
322 uint64_t mpidr = read_mpidr();
323 int cpu = MPIDR_AFFLVL0_VAL(mpidr);
324 int cluster = MPIDR_AFFLVL1_VAL(mpidr);
kenny liang539061b2019-08-21 22:49:49 +0800325 const plat_local_state_t *pds = state->pwr_domain_state;
326 bool afflvl1 = (pds[MPIDR_AFFLVL1] == MTK_LOCAL_STATE_OFF);
327 bool cluster_off = (HP_CLUSTER_OFF && afflvl1 &&
328 clst_single_on(cluster, cpu));
kenny liang7352f322019-05-02 19:29:25 +0800329
kenny liang4450a512019-10-04 10:47:11 +0800330 plat_cpu_pwrdwn_common();
kenny liang7352f322019-05-02 19:29:25 +0800331
kenny liang539061b2019-08-21 22:49:49 +0800332 if (cluster_off)
333 plat_cluster_pwrdwn_common(mpidr, cluster);
kenny liang7352f322019-05-02 19:29:25 +0800334
kenny liang539061b2019-08-21 22:49:49 +0800335 mcdi_ctrl_before_hotplug_off(cluster, cpu, cluster_off);
336 hotplug_ctrl_cluster_cpu_off(cluster, cpu, cluster_off);
kenny liang7352f322019-05-02 19:29:25 +0800337}
338
339static void plat_mtk_power_domain_on_finish(const psci_power_state_t *state)
340{
341 uint64_t mpidr = read_mpidr();
342 int cpu = MPIDR_AFFLVL0_VAL(mpidr);
343 int cluster = MPIDR_AFFLVL1_VAL(mpidr);
kenny liang539061b2019-08-21 22:49:49 +0800344 const plat_local_state_t *pds = state->pwr_domain_state;
345 bool afflvl1 = (pds[MPIDR_AFFLVL1] == MTK_LOCAL_STATE_OFF);
kenny liang7352f322019-05-02 19:29:25 +0800346
kenny liang539061b2019-08-21 22:49:49 +0800347 if (afflvl1)
348 plat_cluster_pwron_common(mpidr, cluster);
kenny liang7352f322019-05-02 19:29:25 +0800349
kenny liang4450a512019-10-04 10:47:11 +0800350 plat_cpu_pwron_common();
kenny liang539061b2019-08-21 22:49:49 +0800351
352 hotplug_ctrl_cpu_on_finish(cluster, cpu);
kenny liang7352f322019-05-02 19:29:25 +0800353}
354
kenny liang539061b2019-08-21 22:49:49 +0800355static void plat_mtk_power_domain_suspend(const psci_power_state_t *state)
356{
357 uint64_t mpidr = read_mpidr();
358 int cpu = MPIDR_AFFLVL0_VAL(mpidr);
359 int cluster = MPIDR_AFFLVL1_VAL(mpidr);
360 const plat_local_state_t *pds = state->pwr_domain_state;
361 bool afflvl1 = (pds[MPIDR_AFFLVL1] == MTK_LOCAL_STATE_OFF);
362 bool afflvl2 = (pds[MPIDR_AFFLVL2] == MTK_LOCAL_STATE_OFF);
363 bool cluster_off = MCDI_C2 && afflvl1 && clst_single_pwr(cluster, cpu);
364
365 /* init cpu reset arch as AARCH64 */
366 mcucfg_init_archstate(cluster, cpu, 1);
367 mcucfg_set_bootaddr(cluster, cpu, secure_entrypoint);
368
kenny liang4450a512019-10-04 10:47:11 +0800369 plat_cpu_pwrdwn_common();
370
kenny liang539061b2019-08-21 22:49:49 +0800371 plat_dcm_mcsi_a_backup();
372
373 if (cluster_off || afflvl2)
374 plat_cluster_pwrdwn_common(mpidr, cluster);
375
376 if (afflvl2) {
377 spm_data_t spm_d = { .cmd = SPM_SUSPEND };
378 uint32_t *d = (uint32_t *)&spm_d;
379 uint32_t l = sizeof(spm_d) / sizeof(uint32_t);
380
381 mcdi_ctrl_suspend();
382
383 spm_set_bootaddr(secure_entrypoint);
384
385 if (MCDI_SSPM)
386 sspm_ipi_send_non_blocking(IPI_ID_SUSPEND, d);
387
388 spm_system_suspend();
389
390 if (MCDI_SSPM)
391 while (sspm_ipi_recv_non_blocking(IPI_ID_SUSPEND, d, l))
392 ;
kenny liang4450a512019-10-04 10:47:11 +0800393
394 mt_gic_distif_save();
kenny liang539061b2019-08-21 22:49:49 +0800395 } else {
396 mcdi_ctrl_cluster_cpu_off(cluster, cpu, cluster_off);
397 }
398}
399
400static void plat_mtk_power_domain_suspend_finish(const psci_power_state_t *state)
401{
402 uint64_t mpidr = read_mpidr();
403 int cluster = MPIDR_AFFLVL1_VAL(mpidr);
404 const plat_local_state_t *pds = state->pwr_domain_state;
405 bool afflvl2 = (pds[MPIDR_AFFLVL2] == MTK_LOCAL_STATE_OFF);
406
407 if (afflvl2) {
408 spm_data_t spm_d = { .cmd = SPM_RESUME };
409 uint32_t *d = (uint32_t *)&spm_d;
410 uint32_t l = sizeof(spm_d) / sizeof(uint32_t);
411
412 mt_gic_init();
kenny liang4450a512019-10-04 10:47:11 +0800413 mt_gic_distif_restore();
414 mt_gic_rdistif_restore();
415
kenny liang539061b2019-08-21 22:49:49 +0800416 mmio_write_32(EMI_WFIFO, 0xf);
417
418 if (MCDI_SSPM)
419 sspm_ipi_send_non_blocking(IPI_ID_SUSPEND, d);
420
421 spm_system_suspend_finish();
422
423 if (MCDI_SSPM)
424 while (sspm_ipi_recv_non_blocking(IPI_ID_SUSPEND, d, l))
425 ;
426
427 mcdi_ctrl_resume();
kenny liang4450a512019-10-04 10:47:11 +0800428 } else {
429 plat_cpu_pwron_common();
kenny liang539061b2019-08-21 22:49:49 +0800430 }
431
432 plat_cluster_pwron_common(mpidr, cluster);
433
434 plat_dcm_mcsi_a_restore();
435}
436
437#if PSCI_EXTENDED_STATE_ID
438
439static int plat_mtk_validate_power_state(unsigned int power_state,
440 psci_power_state_t *req_state)
441{
442 unsigned int state_id;
443 int i;
444
445 assert(req_state);
446
447 if (!MCDI_SSPM)
448 return PSCI_E_INVALID_PARAMS;
449
450 /*
451 * Currently we are using a linear search for finding the matching
452 * entry in the idle power state array. This can be made a binary
453 * search if the number of entries justify the additional complexity.
454 */
455 for (i = 0; !!mtk_pm_idle_states[i]; i++) {
456 if (power_state == mtk_pm_idle_states[i])
457 break;
458 }
459
460 /* Return error if entry not found in the idle state array */
461 if (!mtk_pm_idle_states[i])
462 return PSCI_E_INVALID_PARAMS;
463
464 i = 0;
465 state_id = psci_get_pstate_id(power_state);
466
467 /* Parse the State ID and populate the state info parameter */
468 while (state_id) {
469 req_state->pwr_domain_state[i++] = state_id &
470 MTK_LOCAL_PSTATE_MASK;
471 state_id >>= MTK_LOCAL_PSTATE_WIDTH;
472 }
473
474 return PSCI_E_SUCCESS;
475}
476
477#else /* if !PSCI_EXTENDED_STATE_ID */
478
479static int plat_mtk_validate_power_state(unsigned int power_state,
480 psci_power_state_t *req_state)
481{
482 int pstate = psci_get_pstate_type(power_state);
483 int pwr_lvl = psci_get_pstate_pwrlvl(power_state);
484 int i;
485
486 assert(req_state);
487
488 if (pwr_lvl > PLAT_MAX_PWR_LVL)
489 return PSCI_E_INVALID_PARAMS;
490
491 /* Sanity check the requested state */
492 if (pstate == PSTATE_TYPE_STANDBY) {
493 /*
494 * It's possible to enter standby only on power level 0
495 * Ignore any other power level.
496 */
497 if (pwr_lvl != 0)
498 return PSCI_E_INVALID_PARAMS;
499
500 req_state->pwr_domain_state[MTK_PWR_LVL0] = MTK_LOCAL_STATE_RET;
501 } else if (!MCDI_SSPM) {
502 return PSCI_E_INVALID_PARAMS;
503 } else {
504 for (i = 0; i <= pwr_lvl; i++)
505 req_state->pwr_domain_state[i] = MTK_LOCAL_STATE_OFF;
506 }
507
508 return PSCI_E_SUCCESS;
509}
510
511#endif /* PSCI_EXTENDED_STATE_ID */
512
kenny liang3fa9dec2019-04-10 21:09:26 +0800513/*******************************************************************************
kenny liange977b4d2019-05-02 20:02:05 +0800514 * MTK handlers to shutdown/reboot the system
515 ******************************************************************************/
516static void __dead2 plat_mtk_system_off(void)
517{
518 INFO("MTK System Off\n");
519
520 rtc_power_off_sequence();
521 wk_pmic_enable_sdn_delay();
522 pmic_power_off();
523
524 wfi();
525 ERROR("MTK System Off: operation not handled.\n");
526 panic();
527}
528
kenny liang3d91c9c2019-05-03 17:02:46 +0800529static void __dead2 plat_mtk_system_reset(void)
530{
531 struct bl_aux_gpio_info *gpio_reset = plat_get_mtk_gpio_reset();
532
533 INFO("MTK System Reset\n");
534
535 mt_set_gpio_out(gpio_reset->index, gpio_reset->polarity);
536
537 wfi();
538 ERROR("MTK System Reset: operation not handled.\n");
539 panic();
540}
541
kenny liang3c25ba42019-08-21 20:50:20 +0800542static void plat_mtk_get_sys_suspend_power_state(psci_power_state_t *req_state)
543{
544 assert(PLAT_MAX_PWR_LVL >= 2);
545
546 for (int i = MPIDR_AFFLVL0; i <= PLAT_MAX_PWR_LVL; i++)
547 req_state->pwr_domain_state[i] = MTK_LOCAL_STATE_OFF;
548}
549
kenny liange977b4d2019-05-02 20:02:05 +0800550/*******************************************************************************
kenny liang3fa9dec2019-04-10 21:09:26 +0800551 * MTK_platform handler called when an affinity instance is about to be turned
552 * on. The level and mpidr determine the affinity instance.
553 ******************************************************************************/
kenny liang3fa9dec2019-04-10 21:09:26 +0800554static const plat_psci_ops_t plat_plat_pm_ops = {
kenny liang539061b2019-08-21 22:49:49 +0800555 .cpu_standby = plat_cpu_standby,
kenny liang7352f322019-05-02 19:29:25 +0800556 .pwr_domain_on = plat_mtk_power_domain_on,
557 .pwr_domain_on_finish = plat_mtk_power_domain_on_finish,
558 .pwr_domain_off = plat_mtk_power_domain_off,
kenny liang3c25ba42019-08-21 20:50:20 +0800559 .pwr_domain_suspend = plat_mtk_power_domain_suspend,
560 .pwr_domain_suspend_finish = plat_mtk_power_domain_suspend_finish,
kenny liange977b4d2019-05-02 20:02:05 +0800561 .system_off = plat_mtk_system_off,
kenny liang3d91c9c2019-05-03 17:02:46 +0800562 .system_reset = plat_mtk_system_reset,
kenny liang539061b2019-08-21 22:49:49 +0800563 .validate_power_state = plat_mtk_validate_power_state,
kenny liang3c25ba42019-08-21 20:50:20 +0800564 .get_sys_suspend_power_state = plat_mtk_get_sys_suspend_power_state,
kenny liang3fa9dec2019-04-10 21:09:26 +0800565};
566
567int plat_setup_psci_ops(uintptr_t sec_entrypoint,
568 const plat_psci_ops_t **psci_ops)
569{
570 *psci_ops = &plat_plat_pm_ops;
571 secure_entrypoint = sec_entrypoint;
kenny liang539061b2019-08-21 22:49:49 +0800572
573 if (!check_mcdi_ctl_stat()) {
574 HP_SSPM_CTRL = false;
575 MCDI_SSPM = false;
576 }
577
kenny liang3fa9dec2019-04-10 21:09:26 +0800578 return 0;
579}