blob: f34854ceebc7e3353bd5e0356962d20929504823 [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 *
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 */
20struct k3_sec_proxy_msg {
21 size_t len;
22 u32 *buf;
23};
24
25#endif /* K3_SEC_PROXY_H */