mirror of
https://github.com/ARM-software/arm-trusted-firmware.git
synced 2025-04-17 01:54:22 +00:00

Use zynqmp_ipi APIs to access IPI registers in pm_service. As the zynqmp_ipi APIs doesn't cover IPI buffers, the pm_ipi in pm_service will still directly access the IPI buffers. Signed-off-by: Wendy Liang <jliang@xilinx.com>
23 lines
688 B
C
23 lines
688 B
C
/*
|
|
* Copyright (c) 2013-2017, ARM Limited and Contributors. All rights reserved.
|
|
*
|
|
* SPDX-License-Identifier: BSD-3-Clause
|
|
*/
|
|
|
|
#ifndef _PM_IPI_H_
|
|
#define _PM_IPI_H_
|
|
|
|
#include "pm_common.h"
|
|
|
|
int pm_ipi_init(const struct pm_proc *proc);
|
|
|
|
enum pm_ret_status pm_ipi_send(const struct pm_proc *proc,
|
|
uint32_t payload[PAYLOAD_ARG_CNT]);
|
|
enum pm_ret_status pm_ipi_send_sync(const struct pm_proc *proc,
|
|
uint32_t payload[PAYLOAD_ARG_CNT],
|
|
unsigned int *value, size_t count);
|
|
void pm_ipi_buff_read_callb(unsigned int *value, size_t count);
|
|
void pm_ipi_irq_enable(const struct pm_proc *proc);
|
|
void pm_ipi_irq_clear(const struct pm_proc *proc);
|
|
|
|
#endif /* _PM_IPI_H_ */
|