From af1a266670d040d2f4083ff309d732d648afba2a Mon Sep 17 00:00:00 2001 From: Angelos Mouzakitis Date: Tue, 10 Oct 2023 14:33:42 +0000 Subject: Add submodule dependency files Change-Id: Iaf8d18082d3991dec7c0ebbea540f092188eb4ec --- roms/u-boot/include/linux/soc/ti/k3-sec-proxy.h | 25 +++++++++++++++++++++++++ 1 file changed, 25 insertions(+) create mode 100644 roms/u-boot/include/linux/soc/ti/k3-sec-proxy.h (limited to 'roms/u-boot/include/linux/soc/ti/k3-sec-proxy.h') diff --git a/roms/u-boot/include/linux/soc/ti/k3-sec-proxy.h b/roms/u-boot/include/linux/soc/ti/k3-sec-proxy.h new file mode 100644 index 000000000..f34854cee --- /dev/null +++ b/roms/u-boot/include/linux/soc/ti/k3-sec-proxy.h @@ -0,0 +1,25 @@ +/* SPDX-License-Identifier: GPL-2.0+ */ +/* + * Texas Instruments' K3 Secure proxy + * + * Copyright (C) 2017-2018 Texas Instruments Incorporated - http://www.ti.com/ + * Lokesh Vutla + * + */ + +#ifndef K3_SEC_PROXY_H +#define K3_SEC_PROXY_H + +/** + * struct k3_sec_proxy_msg - Secure proxy message structure + * @len: Length of data in the Buffer + * @buf: Buffer pointer + * + * This is the structure for data used in mbox_send() and mbox_recv(). + */ +struct k3_sec_proxy_msg { + size_t len; + u32 *buf; +}; + +#endif /* K3_SEC_PROXY_H */ -- cgit 1.2.3-korg