blob: 0b0dcb577842e5d41cd9b4c9ee4c3d3d0a680ae2 [file] [log] [blame]
Anson Huangd2b90552018-07-12 10:52:55 +08001/*
2 * Copyright (c) 2018, ARM Limited and Contributors. All rights reserved.
3 *
4 * SPDX-License-Identifier: BSD-3-Clause
5 */
6
7#include <arch.h>
8#include <arch_helpers.h>
9#include <debug.h>
10#include <plat_imx8.h>
11#include <sci/sci.h>
12#include <stdbool.h>
13
14void __dead2 imx_system_off(void)
15{
16 sc_pm_set_sys_power_mode(ipc_handle, SC_PM_PW_MODE_OFF);
17 wfi();
18 ERROR("power off failed.\n");
19 panic();
20}
21
22