xref: /onnv-gate/usr/src/uts/common/io/tpm/tpm_duration.h (revision 9126:6acea8ac53c8)
1*9126SWyllys.Ingersoll@Sun.COM /*
2*9126SWyllys.Ingersoll@Sun.COM  * CDDL HEADER START
3*9126SWyllys.Ingersoll@Sun.COM  *
4*9126SWyllys.Ingersoll@Sun.COM  * The contents of this file are subject to the terms of the
5*9126SWyllys.Ingersoll@Sun.COM  * Common Development and Distribution License (the "License").
6*9126SWyllys.Ingersoll@Sun.COM  * You may not use this file except in compliance with the License.
7*9126SWyllys.Ingersoll@Sun.COM  *
8*9126SWyllys.Ingersoll@Sun.COM  * You can obtain a copy of the license at usr/src/OPENSOLARIS.LICENSE
9*9126SWyllys.Ingersoll@Sun.COM  * or http://www.opensolaris.org/os/licensing.
10*9126SWyllys.Ingersoll@Sun.COM  * See the License for the specific language governing permissions
11*9126SWyllys.Ingersoll@Sun.COM  * and limitations under the License.
12*9126SWyllys.Ingersoll@Sun.COM  *
13*9126SWyllys.Ingersoll@Sun.COM  * When distributing Covered Code, include this CDDL HEADER in each
14*9126SWyllys.Ingersoll@Sun.COM  * file and include the License file at usr/src/OPENSOLARIS.LICENSE.
15*9126SWyllys.Ingersoll@Sun.COM  * If applicable, add the following below this CDDL HEADER, with the
16*9126SWyllys.Ingersoll@Sun.COM  * fields enclosed by brackets "[]" replaced with your own identifying
17*9126SWyllys.Ingersoll@Sun.COM  * information: Portions Copyright [yyyy] [name of copyright owner]
18*9126SWyllys.Ingersoll@Sun.COM  *
19*9126SWyllys.Ingersoll@Sun.COM  * CDDL HEADER END
20*9126SWyllys.Ingersoll@Sun.COM  */
21*9126SWyllys.Ingersoll@Sun.COM /*
22*9126SWyllys.Ingersoll@Sun.COM  * Copyright 2009 Sun Microsystems, Inc.  All rights reserved.
23*9126SWyllys.Ingersoll@Sun.COM  * Use is subject to license terms.
24*9126SWyllys.Ingersoll@Sun.COM  */
25*9126SWyllys.Ingersoll@Sun.COM 
26*9126SWyllys.Ingersoll@Sun.COM #ifndef _TPM_DURATION_H_
27*9126SWyllys.Ingersoll@Sun.COM #define	_TPM_DURATION_H_
28*9126SWyllys.Ingersoll@Sun.COM 
29*9126SWyllys.Ingersoll@Sun.COM typedef enum {
30*9126SWyllys.Ingersoll@Sun.COM 	TPM_SHORT,		/* 0 */
31*9126SWyllys.Ingersoll@Sun.COM 	TPM_MEDIUM,		/* 1 */
32*9126SWyllys.Ingersoll@Sun.COM 	TPM_LONG,		/* 2 */
33*9126SWyllys.Ingersoll@Sun.COM 	TPM_UNDEFINED,		/* 3 */
34*9126SWyllys.Ingersoll@Sun.COM } TPM_DURATION_T;
35*9126SWyllys.Ingersoll@Sun.COM 
36*9126SWyllys.Ingersoll@Sun.COM /* TSC Ordinals */
37*9126SWyllys.Ingersoll@Sun.COM static const TPM_DURATION_T tpm_ords_duration[TPM_ORDINAL_MAX] = {
38*9126SWyllys.Ingersoll@Sun.COM 	TPM_UNDEFINED,		/* 0 */
39*9126SWyllys.Ingersoll@Sun.COM 	TPM_UNDEFINED,
40*9126SWyllys.Ingersoll@Sun.COM 	TPM_UNDEFINED,
41*9126SWyllys.Ingersoll@Sun.COM 	TPM_UNDEFINED,
42*9126SWyllys.Ingersoll@Sun.COM 	TPM_UNDEFINED,
43*9126SWyllys.Ingersoll@Sun.COM 	TPM_UNDEFINED,		/* 5 */
44*9126SWyllys.Ingersoll@Sun.COM 	TPM_UNDEFINED,
45*9126SWyllys.Ingersoll@Sun.COM 	TPM_UNDEFINED,
46*9126SWyllys.Ingersoll@Sun.COM 	TPM_UNDEFINED,
47*9126SWyllys.Ingersoll@Sun.COM 	TPM_UNDEFINED,
48*9126SWyllys.Ingersoll@Sun.COM 	TPM_SHORT,		/* 10 */
49*9126SWyllys.Ingersoll@Sun.COM 	TPM_SHORT,
50*9126SWyllys.Ingersoll@Sun.COM 	TPM_MEDIUM,
51*9126SWyllys.Ingersoll@Sun.COM 	TPM_LONG,
52*9126SWyllys.Ingersoll@Sun.COM 	TPM_LONG,
53*9126SWyllys.Ingersoll@Sun.COM 	TPM_MEDIUM,
54*9126SWyllys.Ingersoll@Sun.COM 	TPM_SHORT,
55*9126SWyllys.Ingersoll@Sun.COM 	TPM_SHORT,
56*9126SWyllys.Ingersoll@Sun.COM 	TPM_MEDIUM,
57*9126SWyllys.Ingersoll@Sun.COM 	TPM_LONG,
58*9126SWyllys.Ingersoll@Sun.COM 	TPM_SHORT,		/* 20 */
59*9126SWyllys.Ingersoll@Sun.COM 	TPM_SHORT,
60*9126SWyllys.Ingersoll@Sun.COM 	TPM_MEDIUM,
61*9126SWyllys.Ingersoll@Sun.COM 	TPM_MEDIUM,
62*9126SWyllys.Ingersoll@Sun.COM 	TPM_MEDIUM,
63*9126SWyllys.Ingersoll@Sun.COM 	TPM_SHORT,		/* 25 */
64*9126SWyllys.Ingersoll@Sun.COM 	TPM_SHORT,
65*9126SWyllys.Ingersoll@Sun.COM 	TPM_MEDIUM,
66*9126SWyllys.Ingersoll@Sun.COM 	TPM_SHORT,
67*9126SWyllys.Ingersoll@Sun.COM 	TPM_SHORT,
68*9126SWyllys.Ingersoll@Sun.COM 	TPM_MEDIUM,		/* 30 */
69*9126SWyllys.Ingersoll@Sun.COM 	TPM_LONG,
70*9126SWyllys.Ingersoll@Sun.COM 	TPM_MEDIUM,
71*9126SWyllys.Ingersoll@Sun.COM 	TPM_SHORT,
72*9126SWyllys.Ingersoll@Sun.COM 	TPM_SHORT,
73*9126SWyllys.Ingersoll@Sun.COM 	TPM_SHORT,		/* 35 */
74*9126SWyllys.Ingersoll@Sun.COM 	TPM_MEDIUM,
75*9126SWyllys.Ingersoll@Sun.COM 	TPM_MEDIUM,
76*9126SWyllys.Ingersoll@Sun.COM 	TPM_UNDEFINED,
77*9126SWyllys.Ingersoll@Sun.COM 	TPM_UNDEFINED,
78*9126SWyllys.Ingersoll@Sun.COM 	TPM_MEDIUM,		/* 40 */
79*9126SWyllys.Ingersoll@Sun.COM 	TPM_LONG,
80*9126SWyllys.Ingersoll@Sun.COM 	TPM_MEDIUM,
81*9126SWyllys.Ingersoll@Sun.COM 	TPM_SHORT,
82*9126SWyllys.Ingersoll@Sun.COM 	TPM_SHORT,
83*9126SWyllys.Ingersoll@Sun.COM 	TPM_SHORT,		/* 45 */
84*9126SWyllys.Ingersoll@Sun.COM 	TPM_SHORT,
85*9126SWyllys.Ingersoll@Sun.COM 	TPM_SHORT,
86*9126SWyllys.Ingersoll@Sun.COM 	TPM_SHORT,
87*9126SWyllys.Ingersoll@Sun.COM 	TPM_LONG,
88*9126SWyllys.Ingersoll@Sun.COM 	TPM_MEDIUM,		/* 50 */
89*9126SWyllys.Ingersoll@Sun.COM 	TPM_MEDIUM,
90*9126SWyllys.Ingersoll@Sun.COM 	TPM_UNDEFINED,
91*9126SWyllys.Ingersoll@Sun.COM 	TPM_UNDEFINED,
92*9126SWyllys.Ingersoll@Sun.COM 	TPM_UNDEFINED,
93*9126SWyllys.Ingersoll@Sun.COM 	TPM_UNDEFINED,		/* 55 */
94*9126SWyllys.Ingersoll@Sun.COM 	TPM_UNDEFINED,
95*9126SWyllys.Ingersoll@Sun.COM 	TPM_UNDEFINED,
96*9126SWyllys.Ingersoll@Sun.COM 	TPM_UNDEFINED,
97*9126SWyllys.Ingersoll@Sun.COM 	TPM_UNDEFINED,
98*9126SWyllys.Ingersoll@Sun.COM 	TPM_MEDIUM,		/* 60 */
99*9126SWyllys.Ingersoll@Sun.COM 	TPM_MEDIUM,
100*9126SWyllys.Ingersoll@Sun.COM 	TPM_MEDIUM,
101*9126SWyllys.Ingersoll@Sun.COM 	TPM_SHORT,
102*9126SWyllys.Ingersoll@Sun.COM 	TPM_SHORT,
103*9126SWyllys.Ingersoll@Sun.COM 	TPM_MEDIUM,		/* 65 */
104*9126SWyllys.Ingersoll@Sun.COM 	TPM_UNDEFINED,
105*9126SWyllys.Ingersoll@Sun.COM 	TPM_UNDEFINED,
106*9126SWyllys.Ingersoll@Sun.COM 	TPM_UNDEFINED,
107*9126SWyllys.Ingersoll@Sun.COM 	TPM_UNDEFINED,
108*9126SWyllys.Ingersoll@Sun.COM 	TPM_SHORT,		/* 70 */
109*9126SWyllys.Ingersoll@Sun.COM 	TPM_SHORT,
110*9126SWyllys.Ingersoll@Sun.COM 	TPM_UNDEFINED,
111*9126SWyllys.Ingersoll@Sun.COM 	TPM_UNDEFINED,
112*9126SWyllys.Ingersoll@Sun.COM 	TPM_UNDEFINED,
113*9126SWyllys.Ingersoll@Sun.COM 	TPM_UNDEFINED,		/* 75 */
114*9126SWyllys.Ingersoll@Sun.COM 	TPM_UNDEFINED,
115*9126SWyllys.Ingersoll@Sun.COM 	TPM_UNDEFINED,
116*9126SWyllys.Ingersoll@Sun.COM 	TPM_UNDEFINED,
117*9126SWyllys.Ingersoll@Sun.COM 	TPM_UNDEFINED,
118*9126SWyllys.Ingersoll@Sun.COM 	TPM_LONG,		/* 80 */
119*9126SWyllys.Ingersoll@Sun.COM 	TPM_UNDEFINED,
120*9126SWyllys.Ingersoll@Sun.COM 	TPM_MEDIUM,
121*9126SWyllys.Ingersoll@Sun.COM 	TPM_LONG,
122*9126SWyllys.Ingersoll@Sun.COM 	TPM_SHORT,
123*9126SWyllys.Ingersoll@Sun.COM 	TPM_UNDEFINED,		/* 85 */
124*9126SWyllys.Ingersoll@Sun.COM 	TPM_UNDEFINED,
125*9126SWyllys.Ingersoll@Sun.COM 	TPM_UNDEFINED,
126*9126SWyllys.Ingersoll@Sun.COM 	TPM_UNDEFINED,
127*9126SWyllys.Ingersoll@Sun.COM 	TPM_UNDEFINED,
128*9126SWyllys.Ingersoll@Sun.COM 	TPM_SHORT,		/* 90 */
129*9126SWyllys.Ingersoll@Sun.COM 	TPM_LONG,
130*9126SWyllys.Ingersoll@Sun.COM 	TPM_SHORT,
131*9126SWyllys.Ingersoll@Sun.COM 	TPM_SHORT,
132*9126SWyllys.Ingersoll@Sun.COM 	TPM_SHORT,
133*9126SWyllys.Ingersoll@Sun.COM 	TPM_UNDEFINED,		/* 95 */
134*9126SWyllys.Ingersoll@Sun.COM 	TPM_UNDEFINED,
135*9126SWyllys.Ingersoll@Sun.COM 	TPM_UNDEFINED,
136*9126SWyllys.Ingersoll@Sun.COM 	TPM_UNDEFINED,
137*9126SWyllys.Ingersoll@Sun.COM 	TPM_UNDEFINED,
138*9126SWyllys.Ingersoll@Sun.COM 	TPM_MEDIUM,		/* 100 */
139*9126SWyllys.Ingersoll@Sun.COM 	TPM_SHORT,
140*9126SWyllys.Ingersoll@Sun.COM 	TPM_SHORT,
141*9126SWyllys.Ingersoll@Sun.COM 	TPM_UNDEFINED,
142*9126SWyllys.Ingersoll@Sun.COM 	TPM_UNDEFINED,
143*9126SWyllys.Ingersoll@Sun.COM 	TPM_UNDEFINED,		/* 105 */
144*9126SWyllys.Ingersoll@Sun.COM 	TPM_UNDEFINED,
145*9126SWyllys.Ingersoll@Sun.COM 	TPM_UNDEFINED,
146*9126SWyllys.Ingersoll@Sun.COM 	TPM_UNDEFINED,
147*9126SWyllys.Ingersoll@Sun.COM 	TPM_UNDEFINED,
148*9126SWyllys.Ingersoll@Sun.COM 	TPM_SHORT,		/* 110 */
149*9126SWyllys.Ingersoll@Sun.COM 	TPM_SHORT,
150*9126SWyllys.Ingersoll@Sun.COM 	TPM_SHORT,
151*9126SWyllys.Ingersoll@Sun.COM 	TPM_SHORT,
152*9126SWyllys.Ingersoll@Sun.COM 	TPM_SHORT,
153*9126SWyllys.Ingersoll@Sun.COM 	TPM_SHORT,		/* 115 */
154*9126SWyllys.Ingersoll@Sun.COM 	TPM_SHORT,
155*9126SWyllys.Ingersoll@Sun.COM 	TPM_SHORT,
156*9126SWyllys.Ingersoll@Sun.COM 	TPM_UNDEFINED,
157*9126SWyllys.Ingersoll@Sun.COM 	TPM_UNDEFINED,
158*9126SWyllys.Ingersoll@Sun.COM 	TPM_LONG,		/* 120 */
159*9126SWyllys.Ingersoll@Sun.COM 	TPM_LONG,
160*9126SWyllys.Ingersoll@Sun.COM 	TPM_MEDIUM,
161*9126SWyllys.Ingersoll@Sun.COM 	TPM_UNDEFINED,
162*9126SWyllys.Ingersoll@Sun.COM 	TPM_SHORT,
163*9126SWyllys.Ingersoll@Sun.COM 	TPM_SHORT,		/* 125 */
164*9126SWyllys.Ingersoll@Sun.COM 	TPM_SHORT,
165*9126SWyllys.Ingersoll@Sun.COM 	TPM_LONG,
166*9126SWyllys.Ingersoll@Sun.COM 	TPM_SHORT,
167*9126SWyllys.Ingersoll@Sun.COM 	TPM_SHORT,
168*9126SWyllys.Ingersoll@Sun.COM 	TPM_SHORT,		/* 130 */
169*9126SWyllys.Ingersoll@Sun.COM 	TPM_MEDIUM,
170*9126SWyllys.Ingersoll@Sun.COM 	TPM_UNDEFINED,
171*9126SWyllys.Ingersoll@Sun.COM 	TPM_SHORT,
172*9126SWyllys.Ingersoll@Sun.COM 	TPM_MEDIUM,
173*9126SWyllys.Ingersoll@Sun.COM 	TPM_UNDEFINED,		/* 135 */
174*9126SWyllys.Ingersoll@Sun.COM 	TPM_UNDEFINED,
175*9126SWyllys.Ingersoll@Sun.COM 	TPM_UNDEFINED,
176*9126SWyllys.Ingersoll@Sun.COM 	TPM_UNDEFINED,
177*9126SWyllys.Ingersoll@Sun.COM 	TPM_UNDEFINED,
178*9126SWyllys.Ingersoll@Sun.COM 	TPM_SHORT,		/* 140 */
179*9126SWyllys.Ingersoll@Sun.COM 	TPM_SHORT,
180*9126SWyllys.Ingersoll@Sun.COM 	TPM_UNDEFINED,
181*9126SWyllys.Ingersoll@Sun.COM 	TPM_UNDEFINED,
182*9126SWyllys.Ingersoll@Sun.COM 	TPM_UNDEFINED,
183*9126SWyllys.Ingersoll@Sun.COM 	TPM_UNDEFINED,		/* 145 */
184*9126SWyllys.Ingersoll@Sun.COM 	TPM_UNDEFINED,
185*9126SWyllys.Ingersoll@Sun.COM 	TPM_UNDEFINED,
186*9126SWyllys.Ingersoll@Sun.COM 	TPM_UNDEFINED,
187*9126SWyllys.Ingersoll@Sun.COM 	TPM_UNDEFINED,
188*9126SWyllys.Ingersoll@Sun.COM 	TPM_SHORT,		/* 150 */
189*9126SWyllys.Ingersoll@Sun.COM 	TPM_MEDIUM,
190*9126SWyllys.Ingersoll@Sun.COM 	TPM_MEDIUM,
191*9126SWyllys.Ingersoll@Sun.COM 	TPM_SHORT,
192*9126SWyllys.Ingersoll@Sun.COM 	TPM_SHORT,
193*9126SWyllys.Ingersoll@Sun.COM 	TPM_UNDEFINED,		/* 155 */
194*9126SWyllys.Ingersoll@Sun.COM 	TPM_UNDEFINED,
195*9126SWyllys.Ingersoll@Sun.COM 	TPM_UNDEFINED,
196*9126SWyllys.Ingersoll@Sun.COM 	TPM_UNDEFINED,
197*9126SWyllys.Ingersoll@Sun.COM 	TPM_UNDEFINED,
198*9126SWyllys.Ingersoll@Sun.COM 	TPM_SHORT,		/* 160 */
199*9126SWyllys.Ingersoll@Sun.COM 	TPM_SHORT,
200*9126SWyllys.Ingersoll@Sun.COM 	TPM_SHORT,
201*9126SWyllys.Ingersoll@Sun.COM 	TPM_SHORT,
202*9126SWyllys.Ingersoll@Sun.COM 	TPM_UNDEFINED,
203*9126SWyllys.Ingersoll@Sun.COM 	TPM_UNDEFINED,		/* 165 */
204*9126SWyllys.Ingersoll@Sun.COM 	TPM_UNDEFINED,
205*9126SWyllys.Ingersoll@Sun.COM 	TPM_UNDEFINED,
206*9126SWyllys.Ingersoll@Sun.COM 	TPM_UNDEFINED,
207*9126SWyllys.Ingersoll@Sun.COM 	TPM_UNDEFINED,
208*9126SWyllys.Ingersoll@Sun.COM 	TPM_LONG,		/* 170 */
209*9126SWyllys.Ingersoll@Sun.COM 	TPM_UNDEFINED,
210*9126SWyllys.Ingersoll@Sun.COM 	TPM_UNDEFINED,
211*9126SWyllys.Ingersoll@Sun.COM 	TPM_UNDEFINED,
212*9126SWyllys.Ingersoll@Sun.COM 	TPM_UNDEFINED,
213*9126SWyllys.Ingersoll@Sun.COM 	TPM_UNDEFINED,		/* 175 */
214*9126SWyllys.Ingersoll@Sun.COM 	TPM_UNDEFINED,
215*9126SWyllys.Ingersoll@Sun.COM 	TPM_UNDEFINED,
216*9126SWyllys.Ingersoll@Sun.COM 	TPM_UNDEFINED,
217*9126SWyllys.Ingersoll@Sun.COM 	TPM_UNDEFINED,
218*9126SWyllys.Ingersoll@Sun.COM 	TPM_MEDIUM,		/* 180 */
219*9126SWyllys.Ingersoll@Sun.COM 	TPM_SHORT,
220*9126SWyllys.Ingersoll@Sun.COM 	TPM_MEDIUM,
221*9126SWyllys.Ingersoll@Sun.COM 	TPM_MEDIUM,
222*9126SWyllys.Ingersoll@Sun.COM 	TPM_MEDIUM,
223*9126SWyllys.Ingersoll@Sun.COM 	TPM_MEDIUM,		/* 185 */
224*9126SWyllys.Ingersoll@Sun.COM 	TPM_SHORT,
225*9126SWyllys.Ingersoll@Sun.COM 	TPM_UNDEFINED,
226*9126SWyllys.Ingersoll@Sun.COM 	TPM_UNDEFINED,
227*9126SWyllys.Ingersoll@Sun.COM 	TPM_UNDEFINED,
228*9126SWyllys.Ingersoll@Sun.COM 	TPM_UNDEFINED,		/* 190 */
229*9126SWyllys.Ingersoll@Sun.COM 	TPM_UNDEFINED,
230*9126SWyllys.Ingersoll@Sun.COM 	TPM_UNDEFINED,
231*9126SWyllys.Ingersoll@Sun.COM 	TPM_UNDEFINED,
232*9126SWyllys.Ingersoll@Sun.COM 	TPM_UNDEFINED,
233*9126SWyllys.Ingersoll@Sun.COM 	TPM_UNDEFINED,		/* 195 */
234*9126SWyllys.Ingersoll@Sun.COM 	TPM_UNDEFINED,
235*9126SWyllys.Ingersoll@Sun.COM 	TPM_UNDEFINED,
236*9126SWyllys.Ingersoll@Sun.COM 	TPM_UNDEFINED,
237*9126SWyllys.Ingersoll@Sun.COM 	TPM_UNDEFINED,
238*9126SWyllys.Ingersoll@Sun.COM 	TPM_SHORT,		/* 200 */
239*9126SWyllys.Ingersoll@Sun.COM 	TPM_UNDEFINED,
240*9126SWyllys.Ingersoll@Sun.COM 	TPM_UNDEFINED,
241*9126SWyllys.Ingersoll@Sun.COM 	TPM_UNDEFINED,
242*9126SWyllys.Ingersoll@Sun.COM 	TPM_SHORT,
243*9126SWyllys.Ingersoll@Sun.COM 	TPM_SHORT,		/* 205 */
244*9126SWyllys.Ingersoll@Sun.COM 	TPM_SHORT,
245*9126SWyllys.Ingersoll@Sun.COM 	TPM_SHORT,
246*9126SWyllys.Ingersoll@Sun.COM 	TPM_SHORT,
247*9126SWyllys.Ingersoll@Sun.COM 	TPM_SHORT,
248*9126SWyllys.Ingersoll@Sun.COM 	TPM_MEDIUM,		/* 210 */
249*9126SWyllys.Ingersoll@Sun.COM 	TPM_UNDEFINED,
250*9126SWyllys.Ingersoll@Sun.COM 	TPM_MEDIUM,
251*9126SWyllys.Ingersoll@Sun.COM 	TPM_MEDIUM,
252*9126SWyllys.Ingersoll@Sun.COM 	TPM_MEDIUM,
253*9126SWyllys.Ingersoll@Sun.COM 	TPM_UNDEFINED,		/* 215 */
254*9126SWyllys.Ingersoll@Sun.COM 	TPM_MEDIUM,
255*9126SWyllys.Ingersoll@Sun.COM 	TPM_UNDEFINED,
256*9126SWyllys.Ingersoll@Sun.COM 	TPM_UNDEFINED,
257*9126SWyllys.Ingersoll@Sun.COM 	TPM_SHORT,
258*9126SWyllys.Ingersoll@Sun.COM 	TPM_SHORT,		/* 220 */
259*9126SWyllys.Ingersoll@Sun.COM 	TPM_SHORT,
260*9126SWyllys.Ingersoll@Sun.COM 	TPM_SHORT,
261*9126SWyllys.Ingersoll@Sun.COM 	TPM_SHORT,
262*9126SWyllys.Ingersoll@Sun.COM 	TPM_SHORT,
263*9126SWyllys.Ingersoll@Sun.COM 	TPM_UNDEFINED,		/* 225 */
264*9126SWyllys.Ingersoll@Sun.COM 	TPM_UNDEFINED,
265*9126SWyllys.Ingersoll@Sun.COM 	TPM_UNDEFINED,
266*9126SWyllys.Ingersoll@Sun.COM 	TPM_UNDEFINED,
267*9126SWyllys.Ingersoll@Sun.COM 	TPM_UNDEFINED,
268*9126SWyllys.Ingersoll@Sun.COM 	TPM_SHORT,		/* 230 */
269*9126SWyllys.Ingersoll@Sun.COM 	TPM_LONG,
270*9126SWyllys.Ingersoll@Sun.COM 	TPM_MEDIUM,
271*9126SWyllys.Ingersoll@Sun.COM 	TPM_UNDEFINED,
272*9126SWyllys.Ingersoll@Sun.COM 	TPM_UNDEFINED,
273*9126SWyllys.Ingersoll@Sun.COM 	TPM_UNDEFINED,		/* 235 */
274*9126SWyllys.Ingersoll@Sun.COM 	TPM_UNDEFINED,
275*9126SWyllys.Ingersoll@Sun.COM 	TPM_UNDEFINED,
276*9126SWyllys.Ingersoll@Sun.COM 	TPM_UNDEFINED,
277*9126SWyllys.Ingersoll@Sun.COM 	TPM_UNDEFINED,
278*9126SWyllys.Ingersoll@Sun.COM 	TPM_SHORT,		/* 240 */
279*9126SWyllys.Ingersoll@Sun.COM 	TPM_UNDEFINED,
280*9126SWyllys.Ingersoll@Sun.COM 	TPM_MEDIUM,
281*9126SWyllys.Ingersoll@Sun.COM };
282*9126SWyllys.Ingersoll@Sun.COM 
283*9126SWyllys.Ingersoll@Sun.COM /* TPM connection ordinals */
284*9126SWyllys.Ingersoll@Sun.COM static const uint8_t tsc_ords_duration[TSC_ORDINAL_MAX] = {
285*9126SWyllys.Ingersoll@Sun.COM 	TPM_UNDEFINED,		/* 0 */
286*9126SWyllys.Ingersoll@Sun.COM 	TPM_UNDEFINED,
287*9126SWyllys.Ingersoll@Sun.COM 	TPM_UNDEFINED,
288*9126SWyllys.Ingersoll@Sun.COM 	TPM_UNDEFINED,
289*9126SWyllys.Ingersoll@Sun.COM 	TPM_UNDEFINED,
290*9126SWyllys.Ingersoll@Sun.COM 	TPM_UNDEFINED,		/* 5 */
291*9126SWyllys.Ingersoll@Sun.COM 	TPM_UNDEFINED,
292*9126SWyllys.Ingersoll@Sun.COM 	TPM_UNDEFINED,
293*9126SWyllys.Ingersoll@Sun.COM 	TPM_UNDEFINED,
294*9126SWyllys.Ingersoll@Sun.COM 	TPM_UNDEFINED,
295*9126SWyllys.Ingersoll@Sun.COM 	TPM_SHORT,		/* 10 */
296*9126SWyllys.Ingersoll@Sun.COM 	TPM_SHORT,
297*9126SWyllys.Ingersoll@Sun.COM };
298*9126SWyllys.Ingersoll@Sun.COM 
299*9126SWyllys.Ingersoll@Sun.COM #endif /* _TPM_DURATION_H_ */
300