psci_system_off.c 1.05 KB
Newer Older
1
/*
2
 * Copyright (c) 2014-2017, ARM Limited and Contributors. All rights reserved.
3
 *
dp-arm's avatar
dp-arm committed
4
 * SPDX-License-Identifier: BSD-3-Clause
5
6
7
8
 */

#include <stddef.h>
#include <arch_helpers.h>
9
#include <assert.h>
10
#include <console.h>
11
12
13
14
15
16
#include <debug.h>
#include <platform.h>
#include "psci_private.h"

void psci_system_off(void)
{
17
	psci_print_power_domain_map();
18

19
20
	assert(psci_plat_pm_ops->system_off);

21
22
23
24
25
	/* Notify the Secure Payload Dispatcher */
	if (psci_spd_pm && psci_spd_pm->svc_system_off) {
		psci_spd_pm->svc_system_off();
	}

26
27
	console_flush();

28
29
30
31
32
33
34
35
	/* Call the platform specific hook */
	psci_plat_pm_ops->system_off();

	/* This function does not return. We should never get here */
}

void psci_system_reset(void)
{
36
	psci_print_power_domain_map();
37

38
39
	assert(psci_plat_pm_ops->system_reset);

40
41
42
43
44
	/* Notify the Secure Payload Dispatcher */
	if (psci_spd_pm && psci_spd_pm->svc_system_reset) {
		psci_spd_pm->svc_system_reset();
	}

45
46
	console_flush();

47
48
49
50
51
	/* Call the platform specific hook */
	psci_plat_pm_ops->system_reset();

	/* This function does not return. We should never get here */
}