zynqmp-ipi-message.h 501 B

1234567891011121314151617181920
  1. /* SPDX-License-Identifier: GPL-2.0 */
  2. #ifndef _LINUX_ZYNQMP_IPI_MESSAGE_H_
  3. #define _LINUX_ZYNQMP_IPI_MESSAGE_H_
  4. /**
  5. * struct zynqmp_ipi_message - ZynqMP IPI message structure
  6. * @len: Length of message
  7. * @data: message payload
  8. *
  9. * This is the structure for data used in mbox_send_message
  10. * the maximum length of data buffer is fixed to 32 bytes.
  11. * Client is supposed to be aware of this.
  12. */
  13. struct zynqmp_ipi_message {
  14. size_t len;
  15. u8 data[];
  16. };
  17. #endif /* _LINUX_ZYNQMP_IPI_MESSAGE_H_ */