pm_client.h 842 Bytes
Newer Older
1
/*
2
 * Copyright (c) 2013-2019, 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
9
10
11
 */

/*
 * Contains APU specific macros and macros to be defined depending on
 * the execution environment.
 */

12
13
#ifndef PM_CLIENT_H
#define PM_CLIENT_H
14
15

#include "pm_common.h"
16
#include "pm_defs.h"
17
18

/* Functions to be implemented by each PU */
19
void pm_client_suspend(const struct pm_proc *proc, unsigned int state);
20
21
22
23
24
25
void pm_client_abort_suspend(void);
void pm_client_wakeup(const struct pm_proc *proc);

/* Global variables to be set in pm_client.c */
extern const struct pm_proc *primary_proc;

26
27
28
29
30
31
#ifndef VERSAL_PLATFORM
enum pm_ret_status set_ocm_retention(void);
enum pm_ret_status pm_set_suspend_mode(uint32_t mode);
const struct pm_proc *pm_get_proc_by_node(enum pm_node_id nid);
#endif

32
#endif /* PM_CLIENT_H */