blob: c3a83f163d760991a0b08a95bbdfc503ea470a47 [file] [log] [blame]
Lokesh Vutlaf9aa4102018-08-27 15:57:48 +05301/* SPDX-License-Identifier: GPL-2.0+ */
2/*
3 * Texas Instruments' K3 Secure proxy
4 *
Nishanth Menona94a4072023-11-01 15:56:03 -05005 * Copyright (C) 2017-2018 Texas Instruments Incorporated - https://www.ti.com/
Lokesh Vutlaf9aa4102018-08-27 15:57:48 +05306 * 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 */
20struct k3_sec_proxy_msg {
21 size_t len;
22 u32 *buf;
23};
24
25#endif /* K3_SEC_PROXY_H */