Merge tag 'trace-printf-v6.13' of git://git.kernel.org/pub/scm/linux/kernel/git/trace...
[drm/drm-misc.git] / include / linux / mailbox / zynqmp-ipi-message.h
blob31d8046d945e781ad4d0e154bb218e83c08f6409
1 /* SPDX-License-Identifier: GPL-2.0 */
3 #ifndef _LINUX_ZYNQMP_IPI_MESSAGE_H_
4 #define _LINUX_ZYNQMP_IPI_MESSAGE_H_
6 /**
7 * struct zynqmp_ipi_message - ZynqMP IPI message structure
8 * @len: Length of message
9 * @data: message payload
11 * This is the structure for data used in mbox_send_message
12 * the maximum length of data buffer is fixed to 32 bytes.
13 * Client is supposed to be aware of this.
15 struct zynqmp_ipi_message {
16 size_t len;
17 u8 data[];
20 #endif /* _LINUX_ZYNQMP_IPI_MESSAGE_H_ */