aboutsummaryrefslogtreecommitdiff
path: root/src/drivers/i2c/tpm/tis_i2c.c
blob: 59971a2631cfb405e69cc0cf4943cac8278dc47c (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
99
100
101
102
103
/*
 * Copyright 2013 Google Inc.
 *
 * See file CREDITS for list of people who contributed to this
 * project.
 *
 * 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.
 *
 * 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.
 *
 * You should have received a copy of the GNU General Public License
 * along with this program; if not, write to the Free Software
 * Foundation, Inc., 59 Temple Place, Suite 330, Boston,
 * MA 02111-1307 USA
 */

#include <stdint.h>
#include <string.h>
#include <device/i2c.h>
#include "tis.h"
#include "tpm.h"

static unsigned bus = 0;

static int opened;

void tis_set_i2c_bus(unsigned _bus)
{
	bus = _bus;
}

int tis_open(void)
{
	opened = 1;
	if (tpm_open(bus, CONFIG_DRIVER_TPM_I2C_ADDR)) {
		opened = 0;
		return -1;
	}
	return 0;
}

int tis_close(void)
{
	opened = 0;
	tpm_close();
	return 0;
}

int tis_init(void)
{
	int chip = CONFIG_DRIVER_TPM_I2C_ADDR;

	/*
	 * Probe TPM twice; the first probing might fail because TPM is asleep,
	 * and the probing can wake up TPM.
	 */
	uint8_t tmp;
	if (!bus)
		return -1;

	if (i2c_read(bus, chip, 0, 0, &tmp, sizeof(tmp)) &&
			i2c_read(bus, chip, 0, 0, &tmp, sizeof(tmp)))
		return -1;

	return 0;
}

int tis_sendrecv(const uint8_t *sendbuf, size_t sbuf_size,
		uint8_t *recvbuf, size_t *rbuf_len)
{
	uint8_t buf[TPM_BUFSIZE];

	if (!opened && tis_open())
		return -1;

	if (sizeof(buf) < sbuf_size)
		return -1;

	memcpy(buf, sendbuf, sbuf_size);

	int len = tpm_transmit(buf, sbuf_size);

	if (len < 10) {
		*rbuf_len = 0;
		return -1;
	}

	if (len > *rbuf_len) {
		*rbuf_len = len;
		return -1;
	}

	memcpy(recvbuf, buf, len);
	*rbuf_len = len;

	return 0;
}