blob: 9cc9e95ffb9793a0e5b0e8e7d87bdecb89081cef [file] [log] [blame]
Duncan Laurie2ea13c82016-09-19 16:04:39 -07001/*
2 * Copyright 2016 Google Inc.
3 *
4 * Based on Linux Kernel TPM driver by
5 * Peter Huewe <peter.huewe@infineon.com>
6 * Copyright (C) 2011 Infineon Technologies
7 *
8 * This program is free software; you can redistribute it and/or
9 * modify it under the terms of the GNU General Public License as
10 * published by the Free Software Foundation, version 2 of the
11 * License.
12 *
13 * This program is distributed in the hope that it will be useful,
14 * but WITHOUT ANY WARRANTY; without even the implied warranty of
15 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
16 * GNU General Public License for more details.
17 */
18
19/*
20 * cr50 is a TPM 2.0 capable device that requries special
21 * handling for the I2C interface.
22 *
23 * - Use an interrupt for transaction status instead of hardcoded delays
24 * - Must use write+wait+read read protocol
25 * - All 4 bytes of status register must be read/written at once
26 * - Burst count max is 63 bytes, and burst count behaves
27 * slightly differently than other I2C TPMs
28 * - When reading from FIFO the full burstcnt must be read
29 * instead of just reading header and determining the remainder
30 */
31
32#include <arch/early_variables.h>
33#include <commonlib/endian.h>
34#include <stdint.h>
35#include <string.h>
36#include <types.h>
37#include <delay.h>
38#include <console/console.h>
Nico Huber0f2dd1e2017-08-01 14:02:40 +020039#include <device/i2c_simple.h>
Duncan Laurie2ea13c82016-09-19 16:04:39 -070040#include <endian.h>
41#include <timer.h>
Furquan Shaikh260b2972017-04-07 13:26:01 -070042#include <tpm.h>
Duncan Laurie2ea13c82016-09-19 16:04:39 -070043#include "tpm.h"
44
Duncan Laurie3727a8d2016-09-19 16:37:46 -070045#define CR50_MAX_BUFSIZE 63
Duncan Laurie469af7b2017-11-07 09:13:19 -080046#define CR50_TIMEOUT_INIT_MS 30000 /* Very long timeout for TPM init */
Duncan Laurie1dc036c2016-09-19 16:49:23 -070047#define CR50_TIMEOUT_LONG_MS 2000 /* Long timeout while waiting for TPM */
48#define CR50_TIMEOUT_SHORT_MS 2 /* Short timeout during transactions */
Duncan Laurieed4fa092016-11-01 15:03:13 -070049#define CR50_TIMEOUT_NOIRQ_MS 20 /* Timeout for TPM ready without IRQ */
50#define CR50_TIMEOUT_IRQ_MS 100 /* Timeout for TPM ready with IRQ */
Duncan Laurie2ea13c82016-09-19 16:04:39 -070051#define CR50_DID_VID 0x00281ae0L
52
53struct tpm_inf_dev {
54 int bus;
55 unsigned int addr;
Duncan Laurie3727a8d2016-09-19 16:37:46 -070056 uint8_t buf[CR50_MAX_BUFSIZE + sizeof(uint8_t)];
Duncan Laurie2ea13c82016-09-19 16:04:39 -070057};
58
59static struct tpm_inf_dev g_tpm_dev CAR_GLOBAL;
60
Stefan Reinauer6a001132017-07-13 02:20:27 +020061__attribute__((weak)) int tis_plat_irq_status(void)
Daniel Kurtzc4852e72017-04-21 14:11:51 +080062{
63 static int warning_displayed CAR_GLOBAL;
64
65 if (!car_get_var(warning_displayed)) {
66 printk(BIOS_WARNING, "WARNING: tis_plat_irq_status() not implemented, wasting 20ms to wait on Cr50!\n");
67 car_set_var(warning_displayed, 1);
68 }
69 mdelay(CR50_TIMEOUT_NOIRQ_MS);
70
71 return 1;
72}
73
Duncan Laurie94cc4852016-09-19 17:22:10 -070074/* Wait for interrupt to indicate the TPM is ready */
75static int cr50_i2c_wait_tpm_ready(struct tpm_chip *chip)
76{
77 struct stopwatch sw;
78
Duncan Laurieed4fa092016-11-01 15:03:13 -070079 stopwatch_init_msecs_expire(&sw, CR50_TIMEOUT_IRQ_MS);
Duncan Laurie94cc4852016-09-19 17:22:10 -070080
Daniel Kurtzc4852e72017-04-21 14:11:51 +080081 while (!tis_plat_irq_status())
Duncan Laurie94cc4852016-09-19 17:22:10 -070082 if (stopwatch_expired(&sw))
83 return -1;
84
85 return 0;
86}
87
Duncan Laurie2ea13c82016-09-19 16:04:39 -070088/*
Duncan Laurie510cb6a2016-09-19 17:05:45 -070089 * cr50_i2c_read() - read from TPM register
Duncan Laurie2ea13c82016-09-19 16:04:39 -070090 *
Duncan Laurie510cb6a2016-09-19 17:05:45 -070091 * @chip: TPM chip information
Duncan Laurie2ea13c82016-09-19 16:04:39 -070092 * @addr: register address to read from
93 * @buffer: provided by caller
94 * @len: number of bytes to read
95 *
96 * 1) send register address byte 'addr' to the TPM
97 * 2) wait for TPM to indicate it is ready
98 * 3) read 'len' bytes of TPM response into the provided 'buffer'
99 *
100 * Return -1 on error, 0 on success.
101 */
Duncan Laurie510cb6a2016-09-19 17:05:45 -0700102static int cr50_i2c_read(struct tpm_chip *chip, uint8_t addr,
103 uint8_t *buffer, size_t len)
Duncan Laurie2ea13c82016-09-19 16:04:39 -0700104{
105 struct tpm_inf_dev *tpm_dev = car_get_var_ptr(&g_tpm_dev);
106
107 if (tpm_dev->addr == 0)
108 return -1;
109
Duncan Laurie94cc4852016-09-19 17:22:10 -0700110 /* Clear interrupt before starting transaction */
Daniel Kurtzc4852e72017-04-21 14:11:51 +0800111 tis_plat_irq_status();
Duncan Laurie94cc4852016-09-19 17:22:10 -0700112
Duncan Laurie2ea13c82016-09-19 16:04:39 -0700113 /* Send the register address byte to the TPM */
114 if (i2c_write_raw(tpm_dev->bus, tpm_dev->addr, &addr, 1)) {
115 printk(BIOS_ERR, "%s: Address write failed\n", __func__);
116 return -1;
117 }
118
119 /* Wait for TPM to be ready with response data */
Duncan Laurie94cc4852016-09-19 17:22:10 -0700120 if (cr50_i2c_wait_tpm_ready(chip) < 0)
121 return -1;
Duncan Laurie2ea13c82016-09-19 16:04:39 -0700122
123 /* Read response data from the TPM */
124 if (i2c_read_raw(tpm_dev->bus, tpm_dev->addr, buffer, len)) {
125 printk(BIOS_ERR, "%s: Read response failed\n", __func__);
126 return -1;
127 }
128
129 return 0;
130}
131
132/*
Duncan Laurie510cb6a2016-09-19 17:05:45 -0700133 * cr50_i2c_write() - write to TPM register
Duncan Laurie2ea13c82016-09-19 16:04:39 -0700134 *
Duncan Laurie510cb6a2016-09-19 17:05:45 -0700135 * @chip: TPM chip information
Duncan Laurie2ea13c82016-09-19 16:04:39 -0700136 * @addr: register address to write to
137 * @buffer: data to write
138 * @len: number of bytes to write
139 *
140 * 1) prepend the provided address to the provided data
141 * 2) send the address+data to the TPM
142 * 3) wait for TPM to indicate it is done writing
143 *
144 * Returns -1 on error, 0 on success.
145 */
Duncan Laurie510cb6a2016-09-19 17:05:45 -0700146static int cr50_i2c_write(struct tpm_chip *chip,
147 uint8_t addr, uint8_t *buffer, size_t len)
Duncan Laurie2ea13c82016-09-19 16:04:39 -0700148{
149 struct tpm_inf_dev *tpm_dev = car_get_var_ptr(&g_tpm_dev);
150
151 if (tpm_dev->addr == 0)
152 return -1;
Duncan Laurie3727a8d2016-09-19 16:37:46 -0700153 if (len > CR50_MAX_BUFSIZE)
Duncan Laurie2ea13c82016-09-19 16:04:39 -0700154 return -1;
155
156 /* Prepend the 'register address' to the buffer */
157 tpm_dev->buf[0] = addr;
158 memcpy(tpm_dev->buf + 1, buffer, len);
159
Duncan Laurie94cc4852016-09-19 17:22:10 -0700160 /* Clear interrupt before starting transaction */
Daniel Kurtzc4852e72017-04-21 14:11:51 +0800161 tis_plat_irq_status();
Duncan Laurie94cc4852016-09-19 17:22:10 -0700162
Duncan Laurie2ea13c82016-09-19 16:04:39 -0700163 /* Send write request buffer with address */
164 if (i2c_write_raw(tpm_dev->bus, tpm_dev->addr, tpm_dev->buf, len + 1)) {
165 printk(BIOS_ERR, "%s: Error writing to TPM\n", __func__);
166 return -1;
167 }
168
169 /* Wait for TPM to be ready */
Duncan Laurie94cc4852016-09-19 17:22:10 -0700170 return cr50_i2c_wait_tpm_ready(chip);
Duncan Laurie2ea13c82016-09-19 16:04:39 -0700171}
172
173static int check_locality(struct tpm_chip *chip, int loc)
174{
Duncan Lauried3920e72016-09-19 17:09:01 -0700175 uint8_t mask = TPM_ACCESS_VALID | TPM_ACCESS_ACTIVE_LOCALITY;
Duncan Laurie2ea13c82016-09-19 16:04:39 -0700176 uint8_t buf;
177
Duncan Laurie510cb6a2016-09-19 17:05:45 -0700178 if (cr50_i2c_read(chip, TPM_ACCESS(loc), &buf, 1) < 0)
Duncan Laurie2ea13c82016-09-19 16:04:39 -0700179 return -1;
180
Duncan Lauried3920e72016-09-19 17:09:01 -0700181 if ((buf & mask) == mask) {
Duncan Laurie2ea13c82016-09-19 16:04:39 -0700182 chip->vendor.locality = loc;
183 return loc;
184 }
185
186 return -1;
187}
188
Duncan Lauried3920e72016-09-19 17:09:01 -0700189static void release_locality(struct tpm_chip *chip, int force)
Duncan Laurie2ea13c82016-09-19 16:04:39 -0700190{
Duncan Lauried3920e72016-09-19 17:09:01 -0700191 uint8_t mask = TPM_ACCESS_VALID | TPM_ACCESS_REQUEST_PENDING;
192 uint8_t addr = TPM_ACCESS(chip->vendor.locality);
Duncan Laurie2ea13c82016-09-19 16:04:39 -0700193 uint8_t buf;
Duncan Laurie510cb6a2016-09-19 17:05:45 -0700194
Duncan Lauried3920e72016-09-19 17:09:01 -0700195 if (cr50_i2c_read(chip, addr, &buf, 1) < 0)
Duncan Laurie2ea13c82016-09-19 16:04:39 -0700196 return;
197
Duncan Lauried3920e72016-09-19 17:09:01 -0700198 if (force || (buf & mask) == mask) {
Duncan Laurie2ea13c82016-09-19 16:04:39 -0700199 buf = TPM_ACCESS_ACTIVE_LOCALITY;
Duncan Lauried3920e72016-09-19 17:09:01 -0700200 cr50_i2c_write(chip, addr, &buf, 1);
Duncan Laurie2ea13c82016-09-19 16:04:39 -0700201 }
Duncan Lauried3920e72016-09-19 17:09:01 -0700202
203 chip->vendor.locality = 0;
Duncan Laurie2ea13c82016-09-19 16:04:39 -0700204}
205
206static int request_locality(struct tpm_chip *chip, int loc)
207{
208 uint8_t buf = TPM_ACCESS_REQUEST_USE;
Duncan Lauried3920e72016-09-19 17:09:01 -0700209 struct stopwatch sw;
Duncan Laurie2ea13c82016-09-19 16:04:39 -0700210
211 if (check_locality(chip, loc) >= 0)
Duncan Lauried3920e72016-09-19 17:09:01 -0700212 return loc;
Duncan Laurie2ea13c82016-09-19 16:04:39 -0700213
Duncan Laurie510cb6a2016-09-19 17:05:45 -0700214 if (cr50_i2c_write(chip, TPM_ACCESS(loc), &buf, 1) < 0)
215 return -1;
Duncan Laurie2ea13c82016-09-19 16:04:39 -0700216
Duncan Lauried3920e72016-09-19 17:09:01 -0700217 stopwatch_init_msecs_expire(&sw, CR50_TIMEOUT_LONG_MS);
218 while (check_locality(chip, loc) < 0) {
219 if (stopwatch_expired(&sw))
220 return -1;
221 mdelay(CR50_TIMEOUT_SHORT_MS);
Duncan Laurie2ea13c82016-09-19 16:04:39 -0700222 }
Duncan Lauried3920e72016-09-19 17:09:01 -0700223 return loc;
Duncan Laurie2ea13c82016-09-19 16:04:39 -0700224}
225
226/* cr50 requires all 4 bytes of status register to be read */
Duncan Laurief235a9b2016-09-19 17:19:10 -0700227static uint8_t cr50_i2c_tis_status(struct tpm_chip *chip)
Duncan Laurie2ea13c82016-09-19 16:04:39 -0700228{
229 uint8_t buf[4];
Duncan Laurie510cb6a2016-09-19 17:05:45 -0700230 if (cr50_i2c_read(chip, TPM_STS(chip->vendor.locality),
231 buf, sizeof(buf)) < 0) {
Duncan Laurie2ea13c82016-09-19 16:04:39 -0700232 printk(BIOS_ERR, "%s: Failed to read status\n", __func__);
233 return 0;
234 }
235 return buf[0];
236}
237
238/* cr50 requires all 4 bytes of status register to be written */
Duncan Laurief235a9b2016-09-19 17:19:10 -0700239static void cr50_i2c_tis_ready(struct tpm_chip *chip)
Duncan Laurie2ea13c82016-09-19 16:04:39 -0700240{
241 uint8_t buf[4] = { TPM_STS_COMMAND_READY };
Duncan Laurie510cb6a2016-09-19 17:05:45 -0700242 cr50_i2c_write(chip, TPM_STS(chip->vendor.locality), buf, sizeof(buf));
Duncan Laurie1dc036c2016-09-19 16:49:23 -0700243 mdelay(CR50_TIMEOUT_SHORT_MS);
Duncan Laurie2ea13c82016-09-19 16:04:39 -0700244}
245
246/* cr50 uses bytes 3:2 of status register for burst count and
247 * all 4 bytes must be read */
Duncan Laurief235a9b2016-09-19 17:19:10 -0700248static int cr50_i2c_wait_burststs(struct tpm_chip *chip, uint8_t mask,
Duncan Laurie2ea13c82016-09-19 16:04:39 -0700249 size_t *burst, int *status)
250{
251 uint8_t buf[4];
252 struct stopwatch sw;
253
Duncan Laurie1dc036c2016-09-19 16:49:23 -0700254 stopwatch_init_msecs_expire(&sw, CR50_TIMEOUT_LONG_MS);
Duncan Laurie2ea13c82016-09-19 16:04:39 -0700255
256 while (!stopwatch_expired(&sw)) {
Duncan Laurie510cb6a2016-09-19 17:05:45 -0700257 if (cr50_i2c_read(chip, TPM_STS(chip->vendor.locality),
258 buf, sizeof(buf)) != 0) {
Duncan Laurie1dc036c2016-09-19 16:49:23 -0700259 mdelay(CR50_TIMEOUT_SHORT_MS);
Duncan Laurie2ea13c82016-09-19 16:04:39 -0700260 continue;
261 }
262
263 *status = buf[0];
264 *burst = read_le16(&buf[1]);
265
266 /* Check if mask matches and burst is valid */
267 if ((*status & mask) == mask &&
Duncan Laurie3727a8d2016-09-19 16:37:46 -0700268 *burst > 0 && *burst <= CR50_MAX_BUFSIZE)
Duncan Laurie2ea13c82016-09-19 16:04:39 -0700269 return 0;
270
Duncan Laurie1dc036c2016-09-19 16:49:23 -0700271 mdelay(CR50_TIMEOUT_SHORT_MS);
Duncan Laurie2ea13c82016-09-19 16:04:39 -0700272 }
273
274 printk(BIOS_ERR, "%s: Timeout reading burst and status\n", __func__);
275 return -1;
276}
277
Duncan Laurief235a9b2016-09-19 17:19:10 -0700278static int cr50_i2c_tis_recv(struct tpm_chip *chip, uint8_t *buf,
Duncan Laurie2ea13c82016-09-19 16:04:39 -0700279 size_t buf_len)
280{
281 size_t burstcnt, current, len, expected;
282 uint8_t addr = TPM_DATA_FIFO(chip->vendor.locality);
Duncan Laurief235a9b2016-09-19 17:19:10 -0700283 uint8_t mask = TPM_STS_VALID | TPM_STS_DATA_AVAIL;
Duncan Laurie2ea13c82016-09-19 16:04:39 -0700284 int status;
Duncan Laurie2ea13c82016-09-19 16:04:39 -0700285
286 if (buf_len < TPM_HEADER_SIZE)
Duncan Laurief235a9b2016-09-19 17:19:10 -0700287 goto out_err;
Duncan Laurie2ea13c82016-09-19 16:04:39 -0700288
Duncan Laurief235a9b2016-09-19 17:19:10 -0700289 if (cr50_i2c_wait_burststs(chip, mask, &burstcnt, &status) < 0) {
Duncan Laurie2ea13c82016-09-19 16:04:39 -0700290 printk(BIOS_ERR, "%s: First chunk not available\n", __func__);
Duncan Laurief235a9b2016-09-19 17:19:10 -0700291 goto out_err;
Duncan Laurie2ea13c82016-09-19 16:04:39 -0700292 }
293
294 /* Read first chunk of burstcnt bytes */
Duncan Laurie510cb6a2016-09-19 17:05:45 -0700295 if (cr50_i2c_read(chip, addr, buf, burstcnt) != 0) {
Duncan Laurie2ea13c82016-09-19 16:04:39 -0700296 printk(BIOS_ERR, "%s: Read failed\n", __func__);
Duncan Laurief235a9b2016-09-19 17:19:10 -0700297 goto out_err;
Duncan Laurie2ea13c82016-09-19 16:04:39 -0700298 }
299
300 /* Determine expected data in the return buffer */
301 expected = read_be32(buf + TPM_RSP_SIZE_BYTE);
302 if (expected > buf_len) {
303 printk(BIOS_ERR, "%s: Too much data: %zu > %zu\n",
304 __func__, expected, buf_len);
Duncan Laurief235a9b2016-09-19 17:19:10 -0700305 goto out_err;
Duncan Laurie2ea13c82016-09-19 16:04:39 -0700306 }
307
308 /* Now read the rest of the data */
309 current = burstcnt;
310 while (current < expected) {
311 /* Read updated burst count and check status */
Duncan Laurief235a9b2016-09-19 17:19:10 -0700312 if (cr50_i2c_wait_burststs(chip, mask, &burstcnt, &status) < 0)
313 goto out_err;
Duncan Laurie2ea13c82016-09-19 16:04:39 -0700314
315 len = min(burstcnt, expected - current);
Duncan Laurie510cb6a2016-09-19 17:05:45 -0700316 if (cr50_i2c_read(chip, addr, buf + current, len) != 0) {
Duncan Laurie2ea13c82016-09-19 16:04:39 -0700317 printk(BIOS_ERR, "%s: Read failed\n", __func__);
Duncan Laurief235a9b2016-09-19 17:19:10 -0700318 goto out_err;
Duncan Laurie2ea13c82016-09-19 16:04:39 -0700319 }
320
321 current += len;
322 }
323
324 /* Ensure TPM is done reading data */
Duncan Laurief235a9b2016-09-19 17:19:10 -0700325 if (cr50_i2c_wait_burststs(chip, TPM_STS_VALID, &burstcnt, &status) < 0)
326 goto out_err;
Duncan Laurie2ea13c82016-09-19 16:04:39 -0700327 if (status & TPM_STS_DATA_AVAIL) {
328 printk(BIOS_ERR, "%s: Data still available\n", __func__);
Duncan Laurief235a9b2016-09-19 17:19:10 -0700329 goto out_err;
Duncan Laurie2ea13c82016-09-19 16:04:39 -0700330 }
331
Duncan Laurief235a9b2016-09-19 17:19:10 -0700332 return current;
Duncan Laurie2ea13c82016-09-19 16:04:39 -0700333
Duncan Laurief235a9b2016-09-19 17:19:10 -0700334out_err:
335 /* Abort current transaction if still pending */
336 if (cr50_i2c_tis_status(chip) & TPM_STS_COMMAND_READY)
337 cr50_i2c_tis_ready(chip);
338 return -1;
Duncan Laurie2ea13c82016-09-19 16:04:39 -0700339}
340
Duncan Laurief235a9b2016-09-19 17:19:10 -0700341static int cr50_i2c_tis_send(struct tpm_chip *chip, uint8_t *buf, size_t len)
Duncan Laurie2ea13c82016-09-19 16:04:39 -0700342{
343 int status;
344 size_t burstcnt, limit, sent = 0;
345 uint8_t tpm_go[4] = { TPM_STS_GO };
346 struct stopwatch sw;
347
Duncan Laurie1dc036c2016-09-19 16:49:23 -0700348 stopwatch_init_msecs_expire(&sw, CR50_TIMEOUT_LONG_MS);
Duncan Laurie2ea13c82016-09-19 16:04:39 -0700349
350 /* Wait until TPM is ready for a command */
Duncan Laurief235a9b2016-09-19 17:19:10 -0700351 while (!(cr50_i2c_tis_status(chip) & TPM_STS_COMMAND_READY)) {
Duncan Laurie2ea13c82016-09-19 16:04:39 -0700352 if (stopwatch_expired(&sw)) {
353 printk(BIOS_ERR, "%s: Command ready timeout\n",
354 __func__);
355 return -1;
356 }
357
Duncan Laurief235a9b2016-09-19 17:19:10 -0700358 cr50_i2c_tis_ready(chip);
Duncan Laurie2ea13c82016-09-19 16:04:39 -0700359 }
360
361 while (len > 0) {
Duncan Laurief235a9b2016-09-19 17:19:10 -0700362 uint8_t mask = TPM_STS_VALID;
363
364 /* Wait for data if this is not the first chunk */
365 if (sent > 0)
366 mask |= TPM_STS_DATA_EXPECT;
367
Duncan Laurie2ea13c82016-09-19 16:04:39 -0700368 /* Read burst count and check status */
Duncan Laurief235a9b2016-09-19 17:19:10 -0700369 if (cr50_i2c_wait_burststs(chip, mask, &burstcnt, &status) < 0)
370 goto out_err;
Duncan Laurie2ea13c82016-09-19 16:04:39 -0700371
372 /* Use burstcnt - 1 to account for the address byte
Duncan Laurie510cb6a2016-09-19 17:05:45 -0700373 * that is inserted by cr50_i2c_write() */
Duncan Laurie2ea13c82016-09-19 16:04:39 -0700374 limit = min(burstcnt - 1, len);
Duncan Laurie510cb6a2016-09-19 17:05:45 -0700375 if (cr50_i2c_write(chip, TPM_DATA_FIFO(chip->vendor.locality),
376 &buf[sent], limit) != 0) {
Duncan Laurie2ea13c82016-09-19 16:04:39 -0700377 printk(BIOS_ERR, "%s: Write failed\n", __func__);
Duncan Laurief235a9b2016-09-19 17:19:10 -0700378 goto out_err;
Duncan Laurie2ea13c82016-09-19 16:04:39 -0700379 }
380
381 sent += limit;
382 len -= limit;
383 }
384
385 /* Ensure TPM is not expecting more data */
Duncan Laurief235a9b2016-09-19 17:19:10 -0700386 if (cr50_i2c_wait_burststs(chip, TPM_STS_VALID, &burstcnt, &status) < 0)
387 goto out_err;
Duncan Laurie2ea13c82016-09-19 16:04:39 -0700388 if (status & TPM_STS_DATA_EXPECT) {
389 printk(BIOS_ERR, "%s: Data still expected\n", __func__);
Duncan Laurief235a9b2016-09-19 17:19:10 -0700390 goto out_err;
Duncan Laurie2ea13c82016-09-19 16:04:39 -0700391 }
392
393 /* Start the TPM command */
Duncan Laurie510cb6a2016-09-19 17:05:45 -0700394 if (cr50_i2c_write(chip, TPM_STS(chip->vendor.locality), tpm_go,
395 sizeof(tpm_go)) < 0) {
Duncan Laurie2ea13c82016-09-19 16:04:39 -0700396 printk(BIOS_ERR, "%s: Start command failed\n", __func__);
Duncan Laurief235a9b2016-09-19 17:19:10 -0700397 goto out_err;
Duncan Laurie2ea13c82016-09-19 16:04:39 -0700398 }
399 return sent;
400
Duncan Laurief235a9b2016-09-19 17:19:10 -0700401out_err:
Duncan Laurie2ea13c82016-09-19 16:04:39 -0700402 /* Abort current transaction if still pending */
Duncan Laurief235a9b2016-09-19 17:19:10 -0700403 if (cr50_i2c_tis_status(chip) & TPM_STS_COMMAND_READY)
404 cr50_i2c_tis_ready(chip);
Duncan Laurie2ea13c82016-09-19 16:04:39 -0700405 return -1;
406}
407
408static void cr50_vendor_init(struct tpm_chip *chip)
409{
410 memset(&chip->vendor, 0, sizeof(struct tpm_vendor_specific));
411 chip->vendor.req_complete_mask = TPM_STS_DATA_AVAIL | TPM_STS_VALID;
412 chip->vendor.req_complete_val = TPM_STS_DATA_AVAIL | TPM_STS_VALID;
413 chip->vendor.req_canceled = TPM_STS_COMMAND_READY;
Duncan Laurief235a9b2016-09-19 17:19:10 -0700414 chip->vendor.status = &cr50_i2c_tis_status;
415 chip->vendor.recv = &cr50_i2c_tis_recv;
416 chip->vendor.send = &cr50_i2c_tis_send;
417 chip->vendor.cancel = &cr50_i2c_tis_ready;
Duncan Laurie2ea13c82016-09-19 16:04:39 -0700418}
419
Lee Leahy52ab30b2017-03-15 09:22:11 -0700420int tpm_vendor_probe(unsigned int bus, uint32_t addr)
Duncan Laurie2ea13c82016-09-19 16:04:39 -0700421{
422 struct tpm_inf_dev *tpm_dev = car_get_var_ptr(&g_tpm_dev);
Duncan Laurie510cb6a2016-09-19 17:05:45 -0700423 struct tpm_chip probe_chip;
Duncan Laurie2ea13c82016-09-19 16:04:39 -0700424 struct stopwatch sw;
425 uint8_t buf = 0;
426 int ret;
Duncan Laurie469af7b2017-11-07 09:13:19 -0800427 long sw_run_duration = CR50_TIMEOUT_INIT_MS;
Duncan Laurie2ea13c82016-09-19 16:04:39 -0700428
429 tpm_dev->bus = bus;
430 tpm_dev->addr = addr;
431
Duncan Laurie510cb6a2016-09-19 17:05:45 -0700432 cr50_vendor_init(&probe_chip);
433
Duncan Laurie2ea13c82016-09-19 16:04:39 -0700434 /* Wait for TPM_ACCESS register ValidSts bit to be set */
435 stopwatch_init_msecs_expire(&sw, sw_run_duration);
436 do {
Duncan Laurie510cb6a2016-09-19 17:05:45 -0700437 ret = cr50_i2c_read(&probe_chip, TPM_ACCESS(0), &buf, 1);
Duncan Laurie2ea13c82016-09-19 16:04:39 -0700438 if (!ret && (buf & TPM_STS_VALID)) {
439 sw_run_duration = stopwatch_duration_msecs(&sw);
440 break;
441 }
Duncan Laurie1dc036c2016-09-19 16:49:23 -0700442 mdelay(CR50_TIMEOUT_SHORT_MS);
Duncan Laurie2ea13c82016-09-19 16:04:39 -0700443 } while (!stopwatch_expired(&sw));
444
445 printk(BIOS_INFO,
446 "%s: ValidSts bit %s(%d) in TPM_ACCESS register after %ld ms\n",
447 __func__, (buf & TPM_STS_VALID) ? "set" : "clear",
448 (buf & TPM_STS_VALID) >> 7, sw_run_duration);
449
450 /* Claim failure if the ValidSts (bit 7) is clear */
451 if (!(buf & TPM_STS_VALID))
452 return -1;
453
454 return 0;
455}
456
Lee Leahy52ab30b2017-03-15 09:22:11 -0700457int tpm_vendor_init(struct tpm_chip *chip, unsigned int bus, uint32_t dev_addr)
Duncan Laurie2ea13c82016-09-19 16:04:39 -0700458{
459 struct tpm_inf_dev *tpm_dev = car_get_var_ptr(&g_tpm_dev);
460 uint32_t vendor;
461
462 if (dev_addr == 0) {
463 printk(BIOS_ERR, "%s: missing device address\n", __func__);
464 return -1;
465 }
466
467 tpm_dev->bus = bus;
468 tpm_dev->addr = dev_addr;
469
470 cr50_vendor_init(chip);
471
Duncan Laurie2ea13c82016-09-19 16:04:39 -0700472 if (request_locality(chip, 0) != 0)
473 return -1;
474
475 /* Read four bytes from DID_VID register */
Duncan Laurie510cb6a2016-09-19 17:05:45 -0700476 if (cr50_i2c_read(chip, TPM_DID_VID(0), (uint8_t *)&vendor, 4) < 0)
Duncan Laurie2ea13c82016-09-19 16:04:39 -0700477 goto out_err;
478
479 if (vendor != CR50_DID_VID) {
480 printk(BIOS_DEBUG, "Vendor ID 0x%08x not recognized\n", vendor);
481 goto out_err;
482 }
483
Daniel Kurtzc4852e72017-04-21 14:11:51 +0800484 printk(BIOS_DEBUG, "cr50 TPM 2.0 (i2c %u:0x%02x id 0x%x)\n",
485 bus, dev_addr, vendor >> 16);
Duncan Laurie2ea13c82016-09-19 16:04:39 -0700486
487 chip->is_open = 1;
488 return 0;
489
490out_err:
Duncan Lauried3920e72016-09-19 17:09:01 -0700491 release_locality(chip, 1);
Duncan Laurie2ea13c82016-09-19 16:04:39 -0700492 return -1;
493}
494
495void tpm_vendor_cleanup(struct tpm_chip *chip)
496{
Duncan Lauried3920e72016-09-19 17:09:01 -0700497 release_locality(chip, 1);
Duncan Laurie2ea13c82016-09-19 16:04:39 -0700498}