summaryrefslogtreecommitdiff
path: root/src/libpts/pts/components/tcg/tcg_comp_func_name.h
blob: 9708ad09d600fa40d0266940a941918680ba0dd6 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
/*
 * Copyright (C) 2011 Sansar Choinyambuu
 * HSR Hochschule fuer Technik Rapperswil
 *
 * This program is free software; you can redistribute it and/or modify it
 * under the terms of the GNU General Public License as published by the
 * Free Software Foundation; either version 2 of the License, or (at your
 * option) any later version.  See <http://www.fsf.org/copyleft/gpl.txt>.
 *
 * This program is distributed in the hope that it will be useful, but
 * WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY
 * or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General Public License
 * for more details.
 */

/**
 * @defgroup pts_tcg_comp_func_name pts_tcg_comp_func_name
 * @{ @ingroup pts
 */

#ifndef PTS_TCG_COMP_FUNC_NAME_H_
#define PTS_TCG_COMP_FUNC_NAME_H_

typedef enum pts_tcg_qualifier_type_t pts_tcg_qualifier_type_t;
typedef enum pts_tcg_comp_func_name_t pts_tcp_comp_func_name_t;

#include <library.h>

/**
 * PTS Component Functional Name Qualifier Flags for the TCG namespace
 * see section 5.2 of PTS Protocol: Binding to TNC IF-M Specification
 *	
 *	 0 1 2 3 4 5
 *  +-+-+-+-+-+-+
 *  |K|S| Type  |
 *  +-+-+-+-+-+-+
 */
#define PTS_TCG_QUALIFIER_FLAG_KERNEL			(1<<5)
#define PTS_TCG_QUALIFIER_FLAG_SUB				(1<<4)

extern char pts_tcg_qualifier_flag_names[];

/**
 * Size of the PTS Component Functional Name Qualifier Type field
 */
#define PTS_TCG_QUALIFIER_TYPE_SIZE				4

/**
 * PTS Component Functional Name Qualifier Types for the TCG namespace
 * see section 5.2 of PTS Protocol: Binding to TNC IF-M Specification
 */
enum pts_tcg_qualifier_type_t {
	/** Unknown */
	PTS_TCG_QUALIFIER_TYPE_UNKNOWN =			0x0,
	/** Trusted Platform */
	PTS_TCG_QUALIFIER_TYPE_TRUSTED =			0x1,
	/** Operating System */
	PTS_TCG_QUALIFIER_TYPE_OS =					0x2,
	/** Graphical User Interface */
	PTS_TCG_QUALIFIER_TYPE_GUI =				0x3,
	/** Application */
	PTS_TCG_QUALIFIER_TYPE_APP =				0x4,
	/** Networking */
	PTS_TCG_QUALIFIER_TYPE_NET =				0x5,
	/** Library */
	PTS_TCG_QUALIFIER_TYPE_LIB =				0x6,
	/** TNC Defined Component */
	PTS_TCG_QUALIFIER_TYPE_TNC =				0x7,
	/** All matching Components */
	PTS_TCG_QUALIFIER_TYPE_ALL =				0xF,
};

extern enum_name_t *pts_tcg_qualifier_type_names;

/**
 * PTS Component Functional Name Binary Enumeration for the TCG namespace
 * see section 5.3 of PTS Protocol: Binding to TNC IF-M Specification
 */
enum pts_tcg_comp_func_name_t {
	/** Ignore */
	PTS_TCG_COMP_FUNC_NAME_IGNORE =				0x0000,
	/** CRTM */
	PTS_TCG_COMP_FUNC_NAME_CRTM =				0x0001,
	/** BIOS */
	PTS_TCG_COMP_FUNC_NAME_BIOS =				0x0002,
	/** Platform Extensions */
	PTS_TCG_COMP_FUNC_NAME_PLATFORM_EXT =		0x0003,
	/** Motherboard Firmware */
	PTS_TCG_COMP_FUNC_NAME_BOARD =				0x0004,
	/** Initial Program Loader */
	PTS_TCG_COMP_FUNC_NAME_INIT_LOADER =		0x0005,
	/** Option ROMs */
	PTS_TCG_COMP_FUNC_NAME_OPT_ROMS =			0x0006,
};

extern enum_name_t *pts_tcg_comp_func_names;

#endif /** PTS_TCG_COMP_FUNC_NAME_H_ @}*/