blob: 32a699f433cb25dfc121ba4933489ac32d0f12e0 [file] [log] [blame]
Jocelyn Bohra4ed3aa2015-07-30 10:44:16 -07001// 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.
Vadim Bendeburye4a106e2015-06-01 17:49:24 -07004
Jocelyn Bohra4ed3aa2015-07-30 10:44:16 -07005// THIS CODE IS GENERATED - DO NOT MODIFY!
6
Vadim Bendebury776e2362015-09-04 16:14:53 -07007#ifndef TPM2_SELFTEST_FP_H_
8#define TPM2_SELFTEST_FP_H_
Jocelyn Bohra4ed3aa2015-07-30 10:44:16 -07009
10#include "tpm_generated.h"
Vadim Bendeburye4a106e2015-06-01 17:49:24 -070011
Vadim Bendeburyf788ffb2015-06-05 12:57:27 -070012typedef struct { TPMI_YES_NO fullTest; } SelfTest_In;
Vadim Bendeburye4a106e2015-06-01 17:49:24 -070013
Jocelyn Bohra4ed3aa2015-07-30 10:44:16 -070014// Executes SelfTest with request handles and parameters from |in|.
15TPM_RC TPM2_SelfTest(SelfTest_In* in);
Vadim Bendeburye4a106e2015-06-01 17:49:24 -070016
Vadim Bendebury776e2362015-09-04 16:14:53 -070017// Initializes handle fields in |target| from |request_handles|. Unmarshals
Jocelyn Bohra4ed3aa2015-07-30 10:44:16 -070018// parameter fields in |target| from |buffer|.
19TPM_RC SelfTest_In_Unmarshal(SelfTest_In* target,
Vadim Bendebury776e2362015-09-04 16:14:53 -070020 TPM_HANDLE request_handles[],
Jocelyn Bohra4ed3aa2015-07-30 10:44:16 -070021 BYTE** buffer,
22 INT32* size);
23
Vadim Bendebury776e2362015-09-04 16:14:53 -070024// Unmarshals any request parameters starting at |request_parameter_buffer|.
Jocelyn Bohra4ed3aa2015-07-30 10:44:16 -070025// Executes command. Marshals any response handles and parameters to the
Vadim Bendebury776e2362015-09-04 16:14:53 -070026// global response buffer and computes |*response_handle_buffer_size| and
27// |*response_parameter_buffer_size|. If |tag| == TPM_ST_SESSIONS, marshals
Jocelyn Bohra4ed3aa2015-07-30 10:44:16 -070028// parameter_size indicating the size of the parameter area. parameter_size
29// field is located between the handle area and parameter area.
30TPM_RC Exec_SelfTest(TPMI_ST_COMMAND_TAG tag,
Vadim Bendebury776e2362015-09-04 16:14:53 -070031 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 Bohra4ed3aa2015-07-30 10:44:16 -070036
37#endif // TPM2_SELFTEST_FP_H