Lokesh Vutla | f9aa410 | 2018-08-27 15:57:48 +0530 | [diff] [blame] | 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 | |
| 10 | #ifndef K3_SEC_PROXY_H |
| 11 | #define K3_SEC_PROXY_H |
| 12 | |
| 13 | /** |
| 14 | * struct k3_sec_proxy_msg - Secure proxy message structure |
| 15 | * @len: Length of data in the Buffer |
| 16 | * @buf: Buffer pointer |
| 17 | * |
| 18 | * This is the structure for data used in mbox_send() and mbox_recv(). |
| 19 | */ |
| 20 | struct k3_sec_proxy_msg { |
| 21 | size_t len; |
| 22 | u32 *buf; |
| 23 | }; |
| 24 | |
| 25 | #endif /* K3_SEC_PROXY_H */ |