k3-sec-proxy.h 541 B

12345678910111213141516171819202122232425
  1. /* SPDX-License-Identifier: GPL-2.0+ */
  2. /*
  3. * Texas Instruments' K3 Secure proxy
  4. *
  5. * Copyright (C) 2017-2018 Texas Instruments Incorporated - http://www.ti.com/
  6. * Lokesh Vutla <lokeshvutla@ti.com>
  7. *
  8. */
  9. #ifndef K3_SEC_PROXY_H
  10. #define K3_SEC_PROXY_H
  11. /**
  12. * struct k3_sec_proxy_msg - Secure proxy message structure
  13. * @len: Length of data in the Buffer
  14. * @buf: Buffer pointer
  15. *
  16. * This is the structure for data used in mbox_send() and mbox_recv().
  17. */
  18. struct k3_sec_proxy_msg {
  19. size_t len;
  20. u32 *buf;
  21. };
  22. #endif /* K3_SEC_PROXY_H */