blob: c31cc58e94d4482a5cc7e0c8ef7fb0bb4b86b43e [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#include "InternalRoutines.h"
9//
10//
11// LocalityGetAttributes()
12//
13// This function will convert a locality expressed as an integer into TPMA_LOCALITY form.
14// The function returns the locality attribute.
15//
16TPMA_LOCALITY
17LocalityGetAttributes(
18 UINT8 locality // IN: locality value
19 )
20{
21 TPMA_LOCALITY locality_attributes;
22 BYTE *localityAsByte = (BYTE *)&locality_attributes;
23 MemorySet(&locality_attributes, 0, sizeof(TPMA_LOCALITY));
24 switch(locality)
25 {
26 case 0:
Vadim Bendebury0baf7f12015-05-29 18:24:47 -070027 locality_attributes.locZero = SET;
Vadim Bendebury56797522015-05-20 10:32:25 -070028 break;
29 case 1:
Vadim Bendebury0baf7f12015-05-29 18:24:47 -070030 locality_attributes.locOne = SET;
Vadim Bendebury56797522015-05-20 10:32:25 -070031 break;
32 case 2:
Vadim Bendebury0baf7f12015-05-29 18:24:47 -070033 locality_attributes.locTwo = SET;
Vadim Bendebury56797522015-05-20 10:32:25 -070034 break;
35 case 3:
Vadim Bendebury0baf7f12015-05-29 18:24:47 -070036 locality_attributes.locThree = SET;
Vadim Bendebury56797522015-05-20 10:32:25 -070037 break;
38 case 4:
Vadim Bendebury0baf7f12015-05-29 18:24:47 -070039 locality_attributes.locFour = SET;
Vadim Bendebury56797522015-05-20 10:32:25 -070040 break;
41 default:
nagendra modadugu5c18d722016-04-07 11:22:35 -070042 pAssert(locality > 31);
Vadim Bendebury56797522015-05-20 10:32:25 -070043 *localityAsByte = locality;
44 break;
45 }
46 return locality_attributes;
47}