GK SDK 源码库: XMIPCLinuxV100R005C00SPC030 (kernel/tools/open_source excluded)
This commit is contained in:
@@ -0,0 +1,36 @@
|
||||
/*
|
||||
* Copyright (c) 2013-2020, ARM Limited and Contributors. All rights reserved.
|
||||
* Copyright (c) 2020-2022, Xilinx, Inc. All rights reserved.
|
||||
* Copyright (c) 2022, Advanced Micro Devices, Inc. All rights reserved.
|
||||
*
|
||||
* SPDX-License-Identifier: BSD-3-Clause
|
||||
*/
|
||||
|
||||
#ifndef PM_IPI_H
|
||||
#define PM_IPI_H
|
||||
|
||||
#include <plat_ipi.h>
|
||||
#include <stddef.h>
|
||||
#include "pm_common.h"
|
||||
|
||||
#define IPI_BLOCKING 1
|
||||
#define IPI_NON_BLOCKING 0
|
||||
|
||||
void 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_non_blocking(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],
|
||||
uint32_t *value, size_t count);
|
||||
void pm_ipi_buff_read_callb(uint32_t *value, size_t count);
|
||||
void pm_ipi_irq_enable(const struct pm_proc *proc);
|
||||
void pm_ipi_irq_clear(const struct pm_proc *proc);
|
||||
uint32_t pm_ipi_irq_status(const struct pm_proc *proc);
|
||||
#if IPI_CRC_CHECK
|
||||
uint32_t calculate_crc(uint32_t payload[PAYLOAD_ARG_CNT], uint32_t buffersize);
|
||||
#endif
|
||||
|
||||
#endif /* PM_IPI_H */
|
||||
Reference in New Issue
Block a user