1
0
mirror of https://xff.cz/git/u-boot/ synced 2025-09-02 01:02:19 +02:00

mailbox: Introduce K3 Secure Proxy Driver

Secure Proxy module manages hardware threads that are meant
for communication between the processor entities. Adding
support for this driver.

Reviewed-by: Tom Rini <trini@konsulko.com>
Signed-off-by: Lokesh Vutla <lokeshvutla@ti.com>
Signed-off-by: Andreas Dannenberg <dannenberg@ti.com>
This commit is contained in:
Lokesh Vutla
2018-08-27 15:57:48 +05:30
committed by Tom Rini
parent 600e46b08c
commit f9aa41023b
5 changed files with 514 additions and 0 deletions

View 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 */