mirror of
https://github.com/ARM-software/arm-trusted-firmware.git
synced 2025-05-04 09:58:40 +00:00

All identifiers, regardless of use, that start with two underscores are reserved. This means they can't be used in header guards. The style that this project is now to use the full name of the file in capital letters followed by 'H'. For example, for a file called "uart_example.h", the header guard is UART_EXAMPLE_H. The exceptions are files that are imported from other projects: - CryptoCell driver - dt-bindings folders - zlib headers Change-Id: I50561bf6c88b491ec440d0c8385c74650f3c106e Signed-off-by: Antonio Nino Diaz <antonio.ninodiaz@arm.com>
71 lines
2.6 KiB
C
71 lines
2.6 KiB
C
/*
|
|
* Copyright (c) 2015-2018, ARM Limited and Contributors. All rights reserved.
|
|
*
|
|
* SPDX-License-Identifier: BSD-3-Clause
|
|
*/
|
|
|
|
/*!
|
|
* Header file for the PM RPC implementation.
|
|
*
|
|
* @addtogroup PM_SVC
|
|
* @{
|
|
*/
|
|
|
|
#ifndef SCI_PM_RPC_H
|
|
#define SCI_PM_RPC_H
|
|
|
|
/* Includes */
|
|
|
|
/* Defines */
|
|
|
|
/*!
|
|
* @name Defines for RPC PM function calls
|
|
*/
|
|
/*@{*/
|
|
#define PM_FUNC_UNKNOWN 0 /* Unknown function */
|
|
#define PM_FUNC_SET_SYS_POWER_MODE 19U /* Index for pm_set_sys_power_mode() RPC call */
|
|
#define PM_FUNC_SET_PARTITION_POWER_MODE 1U /* Index for pm_set_partition_power_mode() RPC call */
|
|
#define PM_FUNC_GET_SYS_POWER_MODE 2U /* Index for pm_get_sys_power_mode() RPC call */
|
|
#define PM_FUNC_SET_RESOURCE_POWER_MODE 3U /* Index for pm_set_resource_power_mode() RPC call */
|
|
#define PM_FUNC_GET_RESOURCE_POWER_MODE 4U /* Index for pm_get_resource_power_mode() RPC call */
|
|
#define PM_FUNC_REQ_LOW_POWER_MODE 16U /* Index for pm_req_low_power_mode() RPC call */
|
|
#define PM_FUNC_REQ_CPU_LOW_POWER_MODE 20U /* Index for pm_req_cpu_low_power_mode() RPC call */
|
|
#define PM_FUNC_SET_CPU_RESUME_ADDR 17U /* Index for pm_set_cpu_resume_addr() RPC call */
|
|
#define PM_FUNC_SET_CPU_RESUME 21U /* Index for pm_set_cpu_resume() RPC call */
|
|
#define PM_FUNC_REQ_SYS_IF_POWER_MODE 18U /* Index for pm_req_sys_if_power_mode() RPC call */
|
|
#define PM_FUNC_SET_CLOCK_RATE 5U /* Index for pm_set_clock_rate() RPC call */
|
|
#define PM_FUNC_GET_CLOCK_RATE 6U /* Index for pm_get_clock_rate() RPC call */
|
|
#define PM_FUNC_CLOCK_ENABLE 7U /* Index for pm_clock_enable() RPC call */
|
|
#define PM_FUNC_SET_CLOCK_PARENT 14U /* Index for pm_set_clock_parent() RPC call */
|
|
#define PM_FUNC_GET_CLOCK_PARENT 15U /* Index for pm_get_clock_parent() RPC call */
|
|
#define PM_FUNC_RESET 13U /* Index for pm_reset() RPC call */
|
|
#define PM_FUNC_RESET_REASON 10U /* Index for pm_reset_reason() RPC call */
|
|
#define PM_FUNC_BOOT 8U /* Index for pm_boot() RPC call */
|
|
#define PM_FUNC_REBOOT 9U /* Index for pm_reboot() RPC call */
|
|
#define PM_FUNC_REBOOT_PARTITION 12U /* Index for pm_reboot_partition() RPC call */
|
|
#define PM_FUNC_CPU_START 11U /* Index for pm_cpu_start() RPC call */
|
|
/*@}*/
|
|
|
|
/* Types */
|
|
|
|
/* Functions */
|
|
|
|
/*!
|
|
* This function dispatches an incoming PM RPC request.
|
|
*
|
|
* @param[in] caller_pt caller partition
|
|
* @param[in] msg pointer to RPC message
|
|
*/
|
|
void pm_dispatch(sc_rm_pt_t caller_pt, sc_rpc_msg_t *msg);
|
|
|
|
/*!
|
|
* This function translates and dispatches an PM RPC request.
|
|
*
|
|
* @param[in] ipc IPC handle
|
|
* @param[in] msg pointer to RPC message
|
|
*/
|
|
void pm_xlate(sc_ipc_t ipc, sc_rpc_msg_t *msg);
|
|
|
|
#endif /* SCI_PM_RPC_H */
|
|
|
|
/**@}*/
|