mirror of
https://mirrors.bfsu.edu.cn/git/linux.git
synced 2024-11-28 22:54:05 +08:00
61cbf1c1fa
driver use mailbox to communicate with vpu core. and there are a command buffer and a message buffer. driver will write commands to the command buffer, then trigger a vpu core interrupt vpu core will write messages to the message buffer, then trigger a cpu interrupt. Signed-off-by: Ming Qian <ming.qian@nxp.com> Signed-off-by: Shijie Qin <shijie.qin@nxp.com> Signed-off-by: Zhou Peng <eagle.zhou@nxp.com> Reported-by: kernel test robot <lkp@intel.com> Tested-by: Nicolas Dufresne <nicolas.dufresne@collabora.com> Signed-off-by: Hans Verkuil <hverkuil-cisco@xs4all.nl>
15 lines
336 B
C
15 lines
336 B
C
/* SPDX-License-Identifier: GPL-2.0 */
|
|
/*
|
|
* Copyright 2020-2021 NXP
|
|
*/
|
|
|
|
#ifndef _AMPHION_VPU_MSGS_H
|
|
#define _AMPHION_VPU_MSGS_H
|
|
|
|
int vpu_isr(struct vpu_core *core, u32 irq);
|
|
void vpu_inst_run_work(struct work_struct *work);
|
|
void vpu_msg_run_work(struct work_struct *work);
|
|
void vpu_msg_delayed_work(struct work_struct *work);
|
|
|
|
#endif
|