Jocelyn Bohr | a4ed3aa | 2015-07-30 10:44:16 -0700 | [diff] [blame] | 1 | // Copyright 2015 The Chromium OS Authors. All rights reserved. |
| 2 | // Use of this source code is governed by a BSD-style license that can be |
| 3 | // found in the LICENSE file. |
| 4 | |
| 5 | // THIS CODE IS GENERATED - DO NOT MODIFY! |
| 6 | |
Vadim Bendebury | 776e236 | 2015-09-04 16:14:53 -0700 | [diff] [blame] | 7 | #ifndef TPM2_FIRMWAREREAD_FP_H_ |
| 8 | #define TPM2_FIRMWAREREAD_FP_H_ |
Jocelyn Bohr | a4ed3aa | 2015-07-30 10:44:16 -0700 | [diff] [blame] | 9 | |
| 10 | #include "tpm_generated.h" |
| 11 | |
Vadim Bendebury | 9de49d3 | 2019-01-15 09:36:48 -0800 | [diff] [blame] | 12 | typedef struct { |
| 13 | UINT32 sequenceNumber; |
| 14 | } FirmwareRead_In; |
Jocelyn Bohr | a4ed3aa | 2015-07-30 10:44:16 -0700 | [diff] [blame] | 15 | |
Vadim Bendebury | 9de49d3 | 2019-01-15 09:36:48 -0800 | [diff] [blame] | 16 | typedef struct { |
| 17 | TPM2B_MAX_BUFFER fuData; |
| 18 | } FirmwareRead_Out; |
Jocelyn Bohr | a4ed3aa | 2015-07-30 10:44:16 -0700 | [diff] [blame] | 19 | |
| 20 | // Executes FirmwareRead with request handles and parameters from |
| 21 | // |in| and computes response handles and parameters to |out|. |
| 22 | TPM_RC TPM2_FirmwareRead(FirmwareRead_In* in, FirmwareRead_Out* out); |
| 23 | |
Vadim Bendebury | 776e236 | 2015-09-04 16:14:53 -0700 | [diff] [blame] | 24 | // Unmarshals any request parameters starting at |request_parameter_buffer|. |
Jocelyn Bohr | a4ed3aa | 2015-07-30 10:44:16 -0700 | [diff] [blame] | 25 | // Executes command. Marshals any response handles and parameters to the |
Vadim Bendebury | 776e236 | 2015-09-04 16:14:53 -0700 | [diff] [blame] | 26 | // global response buffer and computes |*response_handle_buffer_size| and |
| 27 | // |*response_parameter_buffer_size|. If |tag| == TPM_ST_SESSIONS, marshals |
Jocelyn Bohr | a4ed3aa | 2015-07-30 10:44:16 -0700 | [diff] [blame] | 28 | // parameter_size indicating the size of the parameter area. parameter_size |
| 29 | // field is located between the handle area and parameter area. |
| 30 | TPM_RC Exec_FirmwareRead(TPMI_ST_COMMAND_TAG tag, |
Vadim Bendebury | 776e236 | 2015-09-04 16:14:53 -0700 | [diff] [blame] | 31 | BYTE** request_parameter_buffer, |
| 32 | INT32* request_parameter_buffer_size, |
| 33 | TPM_HANDLE request_handles[], |
| 34 | UINT32* response_handle_buffer_size, |
| 35 | UINT32* response_parameter_buffer_size); |
Jocelyn Bohr | a4ed3aa | 2015-07-30 10:44:16 -0700 | [diff] [blame] | 36 | |
| 37 | #endif // TPM2_FIRMWAREREAD_FP_H |