17 lines · c
1/* SPDX-License-Identifier: GPL-2.0 */2/*3 * Copyright 2020-2021 NXP4 */5 6#ifndef _AMPHION_VPU_MBOX_H7#define _AMPHION_VPU_MBOX_H8 9int vpu_mbox_init(struct vpu_core *core);10int vpu_mbox_request(struct vpu_core *core);11void vpu_mbox_free(struct vpu_core *core);12void vpu_mbox_send_msg(struct vpu_core *core, u32 type, u32 data);13void vpu_mbox_send_type(struct vpu_core *core, u32 type);14void vpu_mbox_enable_rx(struct vpu_dev *dev);15 16#endif17