Soren Brinkmann | 76fcae3 | 2016-03-06 20:16:27 -0800 | [diff] [blame] | 1 | /* |
| 2 | * Copyright (c) 2013-2015, ARM Limited and Contributors. All rights reserved. |
| 3 | * |
dp-arm | fa3cf0b | 2017-05-03 09:38:09 +0100 | [diff] [blame] | 4 | * SPDX-License-Identifier: BSD-3-Clause |
Soren Brinkmann | 76fcae3 | 2016-03-06 20:16:27 -0800 | [diff] [blame] | 5 | */ |
| 6 | |
| 7 | /* |
| 8 | * Contains APU specific macros and macros to be defined depending on |
| 9 | * the execution environment. |
| 10 | */ |
| 11 | |
| 12 | #ifndef _PM_CLIENT_H_ |
| 13 | #define _PM_CLIENT_H_ |
| 14 | |
Soren Brinkmann | 76fcae3 | 2016-03-06 20:16:27 -0800 | [diff] [blame] | 15 | #include "pm_common.h" |
Isla Mitchell | e363146 | 2017-07-14 10:46:32 +0100 | [diff] [blame] | 16 | #include "pm_defs.h" |
Soren Brinkmann | 76fcae3 | 2016-03-06 20:16:27 -0800 | [diff] [blame] | 17 | |
| 18 | /* Functions to be implemented by each PU */ |
Filip Drazic | 4c0765a | 2016-07-26 12:11:33 +0200 | [diff] [blame] | 19 | void pm_client_suspend(const struct pm_proc *proc, unsigned int state); |
Soren Brinkmann | 76fcae3 | 2016-03-06 20:16:27 -0800 | [diff] [blame] | 20 | void pm_client_abort_suspend(void); |
| 21 | void pm_client_wakeup(const struct pm_proc *proc); |
| 22 | enum pm_ret_status set_ocm_retention(void); |
Siva Durga Prasad Paladugu | 43b23a3 | 2018-04-27 16:26:47 +0530 | [diff] [blame] | 23 | enum pm_ret_status pm_set_suspend_mode(uint32_t mode); |
Soren Brinkmann | 76fcae3 | 2016-03-06 20:16:27 -0800 | [diff] [blame] | 24 | |
| 25 | /* Global variables to be set in pm_client.c */ |
| 26 | extern const struct pm_proc *primary_proc; |
| 27 | |
| 28 | #endif /* _PM_CLIENT_H_ */ |