upstream u-boot with additional patches for our devices/boards:
https://lists.denx.de/pipermail/u-boot/2017-March/282789.html (AXP crashes) ;
Gbit ethernet patch for some LIME2 revisions ;
with SPI flash support
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
25 lines
541 B
25 lines
541 B
/* 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 */
|
|
|