mirror of
				https://github.com/smaeul/u-boot.git
				synced 2025-10-31 20:18:18 +00:00 
			
		
		
		
	Replace instances of http://www.ti.com with https://www.ti.com Signed-off-by: Nishanth Menon <nm@ti.com>
		
			
				
	
	
		
			26 lines
		
	
	
		
			542 B
		
	
	
	
		
			C
		
	
	
	
	
	
			
		
		
	
	
			26 lines
		
	
	
		
			542 B
		
	
	
	
		
			C
		
	
	
	
	
	
| /* SPDX-License-Identifier: GPL-2.0+ */
 | |
| /*
 | |
|  * Texas Instruments' K3 Secure proxy
 | |
|  *
 | |
|  * Copyright (C) 2017-2018 Texas Instruments Incorporated - https://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 */
 |