mirror of
https://github.com/physwizz/a155-U-u1.git
synced 2025-09-26 19:04:54 +00:00
29 lines
533 B
C
29 lines
533 B
C
/* SPDX-License-Identifier: GPL-2.0 */
|
|
/*
|
|
* Copyright (c) 2020 MediaTek Inc.
|
|
*/
|
|
|
|
#ifndef _VCP_IPI_H_
|
|
#define _VCP_IPI_H_
|
|
|
|
#include "vcp_ipi_wrapper.h"
|
|
#include "vcp.h"
|
|
|
|
struct vcp_ipi_wrapper {
|
|
uint32_t out_id_0;
|
|
uint32_t out_id_1;
|
|
uint32_t in_id_0;
|
|
uint32_t in_id_1;
|
|
uint32_t out_size;
|
|
uint32_t in_size;
|
|
void *msg_0;
|
|
void *msg_1;
|
|
};
|
|
|
|
extern struct mtk_mbox_device vcp_mboxdev;
|
|
extern struct mtk_ipi_device vcp_ipidev;
|
|
extern struct mtk_mbox_info *vcp_mbox_info;
|
|
extern struct vcp_ipi_wrapper vcp_ipi_legacy_id[1];
|
|
|
|
#endif
|