arm_mhuv2_message.h 387 B

1234567891011121314151617181920
  1. // SPDX-License-Identifier: GPL-2.0
  2. /*
  3. * ARM MHUv2 Mailbox Message
  4. *
  5. * Copyright (C) 2020 Arm Ltd.
  6. * Copyright (C) 2020 Linaro Ltd.
  7. */
  8. #ifndef _LINUX_ARM_MHUV2_MESSAGE_H_
  9. #define _LINUX_ARM_MHUV2_MESSAGE_H_
  10. #include <linux/types.h>
  11. /* Data structure for data-transfer protocol */
  12. struct arm_mhuv2_mbox_msg {
  13. void *data;
  14. size_t len;
  15. };
  16. #endif /* _LINUX_ARM_MHUV2_MESSAGE_H_ */