tpmreg.h revision 1.9 1 /* $NetBSD: tpmreg.h,v 1.9 2021/05/29 08:45:29 riastradh Exp $ */
2
3 /*
4 * Copyright (c) 2019 The NetBSD Foundation, Inc.
5 * All rights reserved.
6 *
7 * This code is derived from software contributed to The NetBSD Foundation
8 * by Maxime Villard.
9 *
10 * Redistribution and use in source and binary forms, with or without
11 * modification, are permitted provided that the following conditions
12 * are met:
13 * 1. Redistributions of source code must retain the above copyright
14 * notice, this list of conditions and the following disclaimer.
15 * 2. Redistributions in binary form must reproduce the above copyright
16 * notice, this list of conditions and the following disclaimer in the
17 * documentation and/or other materials provided with the distribution.
18 *
19 * THIS SOFTWARE IS PROVIDED BY THE NETBSD FOUNDATION, INC. AND CONTRIBUTORS
20 * ``AS IS'' AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED
21 * TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
22 * PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE FOUNDATION OR CONTRIBUTORS
23 * BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
24 * CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
25 * SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
26 * INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
27 * CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
28 * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
29 * POSSIBILITY OF SUCH DAMAGE.
30 */
31
32 #ifndef DEV_IC_TPMREG_H
33 #define DEV_IC_TPMREG_H
34
35 #include <sys/types.h>
36
37 #include <sys/cdefs.h>
38 #include <sys/endian.h>
39
40 #if (_BYTE_ORDER == _LITTLE_ENDIAN)
41 #define TPM_BE16(a) bswap16(a)
42 #define TPM_BE32(a) bswap32(a)
43 #else
44 #define TPM_BE16(a) (a)
45 #define TPM_BE32(a) (a)
46 #endif
47
48 struct tpm_header {
49 uint16_t tag;
50 uint32_t length;
51 uint32_t code;
52 } __packed;
53
54 /* -------------------------------------------------------------------------- */
55
56 /*
57 * TPM Interface Specification 1.2 (TIS12).
58 */
59
60 #define TPM_ACCESS 0x0000 /* 8bit register */
61 #define TPM_ACCESS_VALID __BIT(7)
62 #define TPM_ACCESS_ACTIVE_LOCALITY __BIT(5)
63 #define TPM_ACCESS_BEEN_SEIZED __BIT(4)
64 #define TPM_ACCESS_SEIZE __BIT(3)
65 #define TPM_ACCESS_PENDING_REQUEST __BIT(2)
66 #define TPM_ACCESS_REQUEST_USE __BIT(1)
67 #define TPM_ACCESS_ESTABLISHMENT __BIT(0)
68
69 #define TPM_INT_ENABLE 0x0008 /* 32bit register */
70 #define TPM_GLOBAL_INT_ENABLE __BIT(31)
71 #define TPM_CMD_READY_INT __BIT(7)
72 #define TPM_TYPE_POLARITY __BITS(4,3)
73 #define TPM_INT_LEVEL_HIGH __SHIFTIN(0, TPM_TYPE_POLARITY)
74 #define TPM_INT_LEVEL_LOW __SHIFTIN(1, TPM_TYPE_POLARITY)
75 #define TPM_INT_EDGE_RISING __SHIFTIN(2, TPM_TYPE_POLARITY)
76 #define TPM_INT_EDGE_FALLING __SHIFTIN(3, TPM_TYPE_POLARITY)
77 #define TPM_LOCALITY_CHANGE_INT __BIT(2)
78 #define TPM_STS_VALID_INT __BIT(1)
79 #define TPM_DATA_AVAIL_INT __BIT(0)
80
81 #define TPM_INT_VECTOR 0x000c /* 8bit register */
82 #define TPM_INT_STATUS 0x0010 /* 32bit register */
83
84 #define TPM_INTF_CAPABILITY 0x0014 /* 32bit register */
85 #define TPM_INTF_BURST_COUNT_STATIC __BIT(8)
86 #define TPM_INTF_CMD_READY_INT __BIT(7)
87 #define TPM_INTF_INT_EDGE_FALLING __BIT(6)
88 #define TPM_INTF_INT_EDGE_RISING __BIT(5)
89 #define TPM_INTF_INT_LEVEL_LOW __BIT(4)
90 #define TPM_INTF_INT_LEVEL_HIGH __BIT(3)
91 #define TPM_INTF_LOCALITY_CHANGE_INT __BIT(2)
92 #define TPM_INTF_STS_VALID_INT __BIT(1)
93 #define TPM_INTF_DATA_AVAIL_INT __BIT(0)
94 #define TPM_INTF_CAPABILITY_BITS \
95 "\020\01IDRDY\02ISTSV\03ILOCH\04IHIGH\05ILOW\06IRISE\07IFALL\010IRDY\011BCST"
96
97 #define TPM_STS 0x0018 /* 24bit register */
98 #define TPM_STS_BURST_COUNT __BITS(23,8)
99 #define TPM_STS_STATUS_BITS __BITS(7,0)
100 #define TPM_STS_VALID __BIT(7)
101 #define TPM_STS_CMD_READY __BIT(6)
102 #define TPM_STS_GO __BIT(5)
103 #define TPM_STS_DATA_AVAIL __BIT(4)
104 #define TPM_STS_DATA_EXPECT __BIT(3)
105 #define TPM_STS_SELFTEST_DONE __BIT(2)
106 #define TPM_STS_RESP_RETRY __BIT(1)
107
108 #define TPM_DATA 0x0024 /* 32bit register */
109 #define TPM_ID 0x0f00 /* 32bit register */
110 #define TPM_REV 0x0f04 /* 8bit register */
111
112 /*
113 * Five localities, 4K per locality.
114 */
115 #define TPM_SPACE_SIZE 0x5000
116
117 #define TPM_TAG_RQU_COMMAND 0x00c1
118 #define TPM_TAG_RSP_COMMAND 0x00c4
119
120 #define TPM_ORD_GetRandom 0x00000046
121
122 /* TPM_RESULT return codes */
123 #define TPM_AUTHFAIL 1
124 #define TPM_BADINDEX 2
125 #define TPM_BAD_PARAMETER 3
126 #define TPM_AUDITFAILURE 4
127 #define TPM_CLEAR_DISABLED 5
128 #define TPM_DEACTIVATED 6
129 #define TPM_DISABLED 7
130 #define TPM_DISABLED_CMD 8
131 #define TPM_FAIL 9
132 #define TPM_BAD_ORDINAL 10
133 /* ... */
134
135 #define TPM_NON_FATAL 0x800
136
137 /* -------------------------------------------------------------------------- */
138
139 /*
140 * Trusted Platform Module Library Specification, Family "2.0",
141 * Level 00, Revision 01.59 -- November 2019
142 *
143 * https://trustedcomputinggroup.org/resource/tpm-library-specification/
144 *
145 * Where this spec names things TPM_* that don't obviously coincide
146 * with the 1.2 things, we name them TPM2_*.
147 */
148
149 /* https://trustedcomputinggroup.org/wp-content/uploads/TPM-Rev-2.0-Part-4-Supporting-Routines-01.38-code.pdf#page=172 */
150 #define TPM2_ST_RSP_COMMAND 0x00c4
151 #define TPM2_ST_NULL 0x8000
152 #define TPM2_ST_NO_SESSIONS 0x8001
153 #define TPM2_ST_SESSIONS 0x8002
154 /* ... */
155
156 /* https://trustedcomputinggroup.org/wp-content/uploads/TPM-Rev-2.0-Part-2-Structures-01.38.pdf#page=45 */
157 #define TPM2_CC_GetRandom 0x0000017b
158
159 /* https://trustedcomputinggroup.org/wp-content/uploads/TPM-Rev-2.0-Part-2-Structures-01.38.pdf#page=53 */
160 #define TPM2_RC_SUCCESS 0x000
161 #define TPM2_RC_BAD_TAG 0x01e
162
163 #define TPM2_RC_VER1 0x100
164
165 #define TPM2_RC_FMT1 0x080
166
167 #define TPM2_RC_WARN 0x900
168 #define TPM2_RC_TESTING (TPM2_RC_WARN + 0x00a)
169 #define TPM2_RC_RETRY (TPM2_RC_WARN + 0x022)
170
171 #endif /* DEV_IC_TPMREG_H */
172