blob: e56f3c398432a7e7015dd8316bce79219d606538 [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 Bendebury8212a6d2015-05-29 22:42:37 -07004
Jocelyn Bohra4ed3aa2015-07-30 10:44:16 -07005// THIS CODE IS GENERATED - DO NOT MODIFY!
Vadim Bendebury8212a6d2015-05-29 22:42:37 -07006
Vadim Bendebury776e2362015-09-04 16:14:53 -07007#ifndef TPM2_CLOCKSET_FP_H_
8#define TPM2_CLOCKSET_FP_H_
Vadim Bendebury8212a6d2015-05-29 22:42:37 -07009
Jocelyn Bohra4ed3aa2015-07-30 10:44:16 -070010#include "tpm_generated.h"
Vadim Bendebury8212a6d2015-05-29 22:42:37 -070011
Jocelyn Bohra4ed3aa2015-07-30 10:44:16 -070012typedef struct {
13 TPMI_RH_PROVISION auth;
14 UINT64 newTime;
15} ClockSet_In;
16
17// Executes ClockSet with request handles and parameters from |in|.
18TPM_RC TPM2_ClockSet(ClockSet_In* in);
19
Vadim Bendebury776e2362015-09-04 16:14:53 -070020// Initializes handle fields in |target| from |request_handles|. Unmarshals
Jocelyn Bohra4ed3aa2015-07-30 10:44:16 -070021// parameter fields in |target| from |buffer|.
22TPM_RC ClockSet_In_Unmarshal(ClockSet_In* target,
Vadim Bendebury776e2362015-09-04 16:14:53 -070023 TPM_HANDLE request_handles[],
Jocelyn Bohra4ed3aa2015-07-30 10:44:16 -070024 BYTE** buffer,
25 INT32* size);
26
Vadim Bendebury776e2362015-09-04 16:14:53 -070027// Unmarshals any request parameters starting at |request_parameter_buffer|.
Jocelyn Bohra4ed3aa2015-07-30 10:44:16 -070028// Executes command. Marshals any response handles and parameters to the
Vadim Bendebury776e2362015-09-04 16:14:53 -070029// global response buffer and computes |*response_handle_buffer_size| and
30// |*response_parameter_buffer_size|. If |tag| == TPM_ST_SESSIONS, marshals
Jocelyn Bohra4ed3aa2015-07-30 10:44:16 -070031// parameter_size indicating the size of the parameter area. parameter_size
32// field is located between the handle area and parameter area.
33TPM_RC Exec_ClockSet(TPMI_ST_COMMAND_TAG tag,
Vadim Bendebury776e2362015-09-04 16:14:53 -070034 BYTE** request_parameter_buffer,
35 INT32* request_parameter_buffer_size,
36 TPM_HANDLE request_handles[],
37 UINT32* response_handle_buffer_size,
38 UINT32* response_parameter_buffer_size);
Jocelyn Bohra4ed3aa2015-07-30 10:44:16 -070039
40#endif // TPM2_CLOCKSET_FP_H