[uboot] create uboot from github:
repo: https://github.com/u-boot/u-boot commit: d80bb749fab53da72c4a0e09b8c2d2aaa3103c91 Change-Id: Ie6434426e1ec15bc08bb1832798e371f3fd5fb29
This commit is contained in:
25
u-boot-2021.10/include/linux/soc/ti/k3-sec-proxy.h
Normal file
25
u-boot-2021.10/include/linux/soc/ti/k3-sec-proxy.h
Normal file
@ -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 <lokeshvutla@ti.com>
|
||||
*
|
||||
*/
|
||||
|
||||
#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 */
|
||||
Reference in New Issue
Block a user