blob: 97dfc40770da4c367081daa09bb3747a8fb4d8ad [file] [log] [blame]
Vadim Bendebury56797522015-05-20 10:32:25 -07001// This file was extracted from the TCG Published
2// Trusted Platform Module Library
3// Part 4: Supporting Routines
4// Family "2.0"
5// Level 00 Revision 01.16
6// October 30, 2014
7
8#ifndef _TPM_H_
9#define _TPM_H_
10#include "bool.h"
11//
12#include "Implementation.h"
13#include "TPM_Types.h"
14#include "swap.h"
Vadim Bendebury4a0a7f62015-06-01 17:07:46 -070015
16 // from the title page of the specification
17#define TPM_SPEC_FAMILY 0x200
18#define TPM_SPEC_LEVEL 0
Vadim Bendebury5a945de2015-10-30 10:45:00 -070019#define TPM_SPEC_VERSION 116 // Major_revision * 100 + Minor_revision
Vadim Bendebury4a0a7f62015-06-01 17:07:46 -070020#define TPM_SPEC_DAY_OF_YEAR 303
21#define TPM_SPEC_YEAR 2014
22
Vadim Bendebury56797522015-05-20 10:32:25 -070023#endif // _TPM_H_