hc
2024-01-03 2f7c68cb55ecb7331f2381deb497c27155f32faf
kernel/drivers/tee/amdtee/amdtee_if.h
....@@ -118,16 +118,18 @@
118118
119119 /**
120120 * struct tee_cmd_load_ta - load Trusted Application (TA) binary into TEE
121
- * @low_addr: [in] bits [31:0] of the physical address of the TA binary
122
- * @hi_addr: [in] bits [63:32] of the physical address of the TA binary
123
- * @size: [in] size of TA binary in bytes
124
- * @ta_handle: [out] return handle of the loaded TA
121
+ * @low_addr: [in] bits [31:0] of the physical address of the TA binary
122
+ * @hi_addr: [in] bits [63:32] of the physical address of the TA binary
123
+ * @size: [in] size of TA binary in bytes
124
+ * @ta_handle: [out] return handle of the loaded TA
125
+ * @return_origin: [out] origin of return code after TEE processing
125126 */
126127 struct tee_cmd_load_ta {
127128 u32 low_addr;
128129 u32 hi_addr;
129130 u32 size;
130131 u32 ta_handle;
132
+ u32 return_origin;
131133 };
132134
133135 /**