blob: becf5d311a24ffa486d6dc349de9f42c92360acd [file] [log] [blame]
developer2189d3a2020-04-17 17:14:23 +08001/*
2 * Copyright (c) 2020, MediaTek Inc. All rights reserved.
3 *
4 * SPDX-License-Identifier: BSD-3-Clause
5 */
6
7/* common headers */
developerbd31bf02020-07-02 12:10:13 +08008#include <arch_helpers.h>
9#include <common/debug.h>
10#include <drivers/gpio.h>
developer2189d3a2020-04-17 17:14:23 +080011#include <lib/psci/psci.h>
12
13/* mediatek platform specific headers */
developerbd31bf02020-07-02 12:10:13 +080014#include <plat_params.h>
developer2189d3a2020-04-17 17:14:23 +080015
developerbd31bf02020-07-02 12:10:13 +080016/*******************************************************************************
17 * MTK handlers to shutdown/reboot the system
18 ******************************************************************************/
19static void __dead2 plat_mtk_system_reset(void)
20{
21 struct bl_aux_gpio_info *gpio_reset = plat_get_mtk_gpio_reset();
22
23 INFO("MTK System Reset\n");
24
25 gpio_set_value(gpio_reset->index, gpio_reset->polarity);
26
27 wfi();
28 ERROR("MTK System Reset: operation not handled.\n");
29 panic();
30}
developer2189d3a2020-04-17 17:14:23 +080031
32/*******************************************************************************
33 * MTK_platform handler called when an affinity instance is about to be turned
34 * on. The level and mpidr determine the affinity instance.
35 ******************************************************************************/
36static const plat_psci_ops_t plat_plat_pm_ops = {
developerbd31bf02020-07-02 12:10:13 +080037 .system_reset = plat_mtk_system_reset,
developer2189d3a2020-04-17 17:14:23 +080038};
39
40int plat_setup_psci_ops(uintptr_t sec_entrypoint,
41 const plat_psci_ops_t **psci_ops)
42{
43 *psci_ops = &plat_plat_pm_ops;
44
45 return 0;
46}