aboutsummaryrefslogtreecommitdiff
path: root/libstb/tpm_chip.h
blob: dede420f66bcd2d5d5ef4fa0e531668950247051 (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
// SPDX-License-Identifier: Apache-2.0
/* Copyright 2013-2018 IBM Corp. */

#ifndef __TPM_H
#define __TPM_H

#include <device.h>

#include "tss/tpmLogMgr.H"
#include "tss/trustedTypes.H"

struct tpm_dev {

	/* TPM bus id */
	int bus_id;

	/* TPM address in the bus */
	int i2c_addr;
};

struct tpm_driver {

	/* Driver name */
	const char* name;

	/* Transmit the TPM command stored in buf to the tpm device */
	int (*transmit)(struct tpm_dev *dev, uint8_t* buf, size_t cmdlen,
			size_t *buflen);
};

struct tpm_chip {

	/* TPM chip id */
	int id;

	/* Indicates whether or not the device and log are functional */
	bool enabled;

	/* TPM device tree node */
	struct dt_node *node;

	/* Event log handler */
	struct _TpmLogMgr logmgr;

	/* TPM device handler */
	struct tpm_dev    *dev;

	/* TPM driver handler */
	struct tpm_driver *driver;

	struct list_node link;
};

/* TSS tweak */
typedef struct tpm_chip TpmTarget;

/*
 * Register a tpm chip by binding the driver to dev.
 * Event log is also registered by this function.
 */
extern int tpm_register_chip(struct dt_node *node, struct tpm_dev *dev,
			     struct tpm_driver *driver);

/*
 * tpm_extendl - For each TPM device, this extends the sha1 and sha 256 digests
 * to the indicated PCR and also records an event for the same PCR
 * in the event log
 * This calls a TSS extend function that supports multibank. Both sha1 and
 * sha256 digests are extended in a single operation sent to the TPM device.
 *
 * @pcr: PCR number to be extended and recorded in the event log. The same PCR
 * number is extende for both sha1 and sha256 banks.
 * @alg1: SHA algorithm of digest1. Either TPM_ALG_SHA1 or TPM_ALG_SHA256
 * @digest1: digest1 buffer
 * @size1: size of digest1. Either TPM_ALG_SHA1_SIZE or TPM_ALG_SHA256_SIZE
 * @alg2: SHA algorithm of digest2. Either TPM_ALG_SHA1 or TPM_ALG_SHA256
 * @digest2: digest2 buffer
 * @size2: size of digest2. Either TPM_ALG_SHA1_SIZE or TPM_ALG_SHA256_SIZE
 * @event_type: event type log. In skiboot, either EV_ACTION or EV_SEPARATOR.
 * @event_msg: event log message that describes the event
 *
 * Returns O for success or a negative number if it fails.
 */
extern int tpm_extendl(TPM_Pcr pcr,
		       TPM_Alg_Id alg1, uint8_t* digest1, size_t size1,
		       TPM_Alg_Id alg2, uint8_t* digest2, size_t size2,
		       uint32_t event_type, const char* event_msg);

/* Add status property to the TPM devices */
extern void tpm_add_status_property(void);

extern int tpm_init(void);
extern void tpm_cleanup(void);

#endif /* __TPM_H */