mirror of
https://github.com/u-boot/u-boot.git
synced 2025-05-08 10:39:08 +00:00
firmware: ti_sci: Modify auth_boot TI-SCI API to match new version
SYSFW version 2019.01 introduces a slightly modified version of this API, add support for it here. Signed-off-by: Andrew F. Davis <afd@ti.com> Reviewed-by: Tom Rini <trini@konsulko.com> Reviewed-by: Andreas Dannenberg <dannenberg@ti.com>
This commit is contained in:
parent
32ca8ffd5b
commit
ff6043a5fd
3 changed files with 25 additions and 13 deletions
|
@ -708,7 +708,6 @@ struct ti_sci_msg_req_set_proc_boot_ctrl {
|
|||
/**
|
||||
* struct ti_sci_msg_req_proc_auth_start_image - Authenticate and start image
|
||||
* @hdr: Generic Header
|
||||
* @processor_id: ID of processor
|
||||
* @cert_addr_low: Lower 32bit (Little Endian) of certificate
|
||||
* @cert_addr_high: Higher 32bit (Little Endian) of certificate
|
||||
*
|
||||
|
@ -717,11 +716,17 @@ struct ti_sci_msg_req_set_proc_boot_ctrl {
|
|||
*/
|
||||
struct ti_sci_msg_req_proc_auth_boot_image {
|
||||
struct ti_sci_msg_hdr hdr;
|
||||
u8 processor_id;
|
||||
u32 cert_addr_low;
|
||||
u32 cert_addr_high;
|
||||
} __packed;
|
||||
|
||||
struct ti_sci_msg_resp_proc_auth_boot_image {
|
||||
struct ti_sci_msg_hdr hdr;
|
||||
u32 image_addr_low;
|
||||
u32 image_addr_high;
|
||||
u32 image_size;
|
||||
} __packed;
|
||||
|
||||
/**
|
||||
* struct ti_sci_msg_req_get_proc_boot_status - Get processor boot status
|
||||
* @hdr: Generic Header
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue