1 /* SPDX-License-Identifier: GPL-2.0+ */
2 /*
3  * Copyright 2021 NXP
4  *
5  * Header file for the IPC implementation.
6  */
7 
8 #ifndef _S4_IPC_H
9 #define _S4_IPC_H
10 
11 struct imx_s4_ipc;
12 
13 struct imx_s4_rpc_msg {
14 	uint8_t ver;
15 	uint8_t size;
16 	uint8_t cmd;
17 	uint8_t tag;
18 } __packed;
19 
20 #endif /* _S4_IPC_H */
21