tpm_tis_lpc.c 11.8 KB
Newer Older
1 2 3
/*
 * Copyright (c) 2011 The Chromium OS Authors.
 *
4
 * SPDX-License-Identifier:	GPL-2.0+
5 6 7 8 9 10 11 12 13 14 15 16
 */

/*
 * The code in this file is based on the article "Writing a TPM Device Driver"
 * published on http://ptgmedia.pearsoncmg.com.
 *
 * One principal difference is that in the simplest config the other than 0
 * TPM localities do not get mapped by some devices (for instance, by Infineon
 * slb9635), so this driver provides access to locality 0 only.
 */

#include <common.h>
17 18
#include <dm.h>
#include <mapmem.h>
19
#include <tpm.h>
20
#include <asm/io.h>
21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40

#define PREFIX "lpc_tpm: "

struct tpm_locality {
	u32 access;
	u8 padding0[4];
	u32 int_enable;
	u8 vector;
	u8 padding1[3];
	u32 int_status;
	u32 int_capability;
	u32 tpm_status;
	u8 padding2[8];
	u8 data;
	u8 padding3[3803];
	u32 did_vid;
	u8 rid;
	u8 padding4[251];
};

41 42 43 44
struct tpm_tis_lpc_priv {
	struct tpm_locality *regs;
};

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
/*
 * This pointer refers to the TPM chip, 5 of its localities are mapped as an
 * array.
 */
#define TPM_TOTAL_LOCALITIES	5

/* Some registers' bit field definitions */
#define TIS_STS_VALID                  (1 << 7) /* 0x80 */
#define TIS_STS_COMMAND_READY          (1 << 6) /* 0x40 */
#define TIS_STS_TPM_GO                 (1 << 5) /* 0x20 */
#define TIS_STS_DATA_AVAILABLE         (1 << 4) /* 0x10 */
#define TIS_STS_EXPECT                 (1 << 3) /* 0x08 */
#define TIS_STS_RESPONSE_RETRY         (1 << 1) /* 0x02 */

#define TIS_ACCESS_TPM_REG_VALID_STS   (1 << 7) /* 0x80 */
#define TIS_ACCESS_ACTIVE_LOCALITY     (1 << 5) /* 0x20 */
#define TIS_ACCESS_BEEN_SEIZED         (1 << 4) /* 0x10 */
#define TIS_ACCESS_SEIZE               (1 << 3) /* 0x08 */
#define TIS_ACCESS_PENDING_REQUEST     (1 << 2) /* 0x04 */
#define TIS_ACCESS_REQUEST_USE         (1 << 1) /* 0x02 */
#define TIS_ACCESS_TPM_ESTABLISHMENT   (1 << 0) /* 0x01 */

#define TIS_STS_BURST_COUNT_MASK       (0xffff)
#define TIS_STS_BURST_COUNT_SHIFT      (8)

 /* 1 second is plenty for anything TPM does. */
#define MAX_DELAY_US	(1000 * 1000)

/* Retrieve burst count value out of the status register contents. */
static u16 burst_count(u32 status)
{
76 77
	return (status >> TIS_STS_BURST_COUNT_SHIFT) &
			TIS_STS_BURST_COUNT_MASK;
78 79 80
}

/* TPM access wrappers to support tracing */
81
static u8 tpm_read_byte(struct tpm_tis_lpc_priv *priv, const u8 *ptr)
82 83 84
{
	u8  ret = readb(ptr);
	debug(PREFIX "Read reg 0x%4.4x returns 0x%2.2x\n",
85
	      (u32)(uintptr_t)ptr - (u32)(uintptr_t)priv->regs, ret);
86 87 88
	return ret;
}

89
static u32 tpm_read_word(struct tpm_tis_lpc_priv *priv, const u32 *ptr)
90 91 92
{
	u32  ret = readl(ptr);
	debug(PREFIX "Read reg 0x%4.4x returns 0x%8.8x\n",
93
	      (u32)(uintptr_t)ptr - (u32)(uintptr_t)priv->regs, ret);
94 95 96
	return ret;
}

97
static void tpm_write_byte(struct tpm_tis_lpc_priv *priv, u8 value, u8 *ptr)
98 99
{
	debug(PREFIX "Write reg 0x%4.4x with 0x%2.2x\n",
100
	      (u32)(uintptr_t)ptr - (u32)(uintptr_t)priv->regs, value);
101 102 103
	writeb(value, ptr);
}

104 105
static void tpm_write_word(struct tpm_tis_lpc_priv *priv, u32 value,
			   u32 *ptr)
106 107
{
	debug(PREFIX "Write reg 0x%4.4x with 0x%8.8x\n",
108
	      (u32)(uintptr_t)ptr - (u32)(uintptr_t)priv->regs, value);
109 110 111 112 113 114 115 116 117 118 119 120 121 122
	writel(value, ptr);
}

/*
 * tis_wait_reg()
 *
 * Wait for at least a second for a register to change its state to match the
 * expected state. Normally the transition happens within microseconds.
 *
 * @reg - pointer to the TPM register
 * @mask - bitmask for the bitfield(s) to watch
 * @expected - value the field(s) are supposed to be set to
 *
 * Returns the register contents in case the expected value was found in the
123
 * appropriate register bits, or -ETIMEDOUT on timeout.
124
 */
125 126
static int tis_wait_reg(struct tpm_tis_lpc_priv *priv, u32 *reg, u8 mask,
			u8 expected)
127 128 129 130
{
	u32 time_us = MAX_DELAY_US;

	while (time_us > 0) {
131
		u32 value = tpm_read_word(priv, reg);
132 133 134 135 136
		if ((value & mask) == expected)
			return value;
		udelay(1); /* 1 us */
		time_us--;
	}
137 138

	return -ETIMEDOUT;
139 140 141 142 143
}

/*
 * Probe the TPM device and try determining its manufacturer/device name.
 *
144
 * Returns 0 on success, -ve on error
145
 */
146
static int tpm_tis_lpc_probe(struct udevice *dev)
147
{
148 149 150 151
	struct tpm_tis_lpc_priv *priv = dev_get_priv(dev);
	u32 vid, did;
	fdt_addr_t addr;
	u32 didvid;
152

153 154 155 156 157
	addr = dev_get_addr(dev);
	if (addr == FDT_ADDR_T_NONE)
		return -EINVAL;
	priv->regs = map_sysmem(addr, 0);
	didvid = tpm_read_word(priv, &priv->regs[0].did_vid);
158 159 160

	vid = didvid & 0xffff;
	did = (didvid >> 16) & 0xffff;
161 162 163
	if (vid != 0x15d1 || did != 0xb) {
		debug("Invalid vendor/device ID %04x/%04x\n", vid, did);
		return -ENOSYS;
164 165
	}

166 167
	debug("Found TPM %s by %s\n", "SLB9635 TT 1.2", "Infineon");

168 169 170 171 172 173 174 175 176 177 178
	return 0;
}

/*
 * tis_senddata()
 *
 * send the passed in data to the TPM device.
 *
 * @data - address of the data to send, byte by byte
 * @len - length of the data to send
 *
179 180
 * Returns 0 on success, -ve on error (in case the device does not accept
 * the entire command).
181
 */
182
static int tis_senddata(struct udevice *dev, const u8 *data, size_t len)
183
{
184 185
	struct tpm_tis_lpc_priv *priv = dev_get_priv(dev);
	struct tpm_locality *regs = priv->regs;
186 187 188 189 190 191
	u32 offset = 0;
	u16 burst = 0;
	u32 max_cycles = 0;
	u8 locality = 0;
	u32 value;

192
	value = tis_wait_reg(priv, &regs[locality].tpm_status,
193
			     TIS_STS_COMMAND_READY, TIS_STS_COMMAND_READY);
194
	if (value == -ETIMEDOUT) {
195 196
		printf("%s:%d - failed to get 'command_ready' status\n",
		       __FILE__, __LINE__);
197
		return value;
198 199 200 201 202 203 204 205 206
	}
	burst = burst_count(value);

	while (1) {
		unsigned count;

		/* Wait till the device is ready to accept more data. */
		while (!burst) {
			if (max_cycles++ == MAX_DELAY_US) {
S
Simon Glass 已提交
207
				printf("%s:%d failed to feed %zd bytes of %zd\n",
208
				       __FILE__, __LINE__, len - offset, len);
209
				return -ETIMEDOUT;
210 211
			}
			udelay(1);
212 213
			burst = burst_count(tpm_read_word(priv,
					&regs[locality].tpm_status));
214 215 216 217 218 219 220 221 222 223 224 225 226
		}

		max_cycles = 0;

		/*
		 * Calculate number of bytes the TPM is ready to accept in one
		 * shot.
		 *
		 * We want to send the last byte outside of the loop (hence
		 * the -1 below) to make sure that the 'expected' status bit
		 * changes to zero exactly after the last byte is fed into the
		 * FIFO.
		 */
S
Simon Glass 已提交
227
		count = min((size_t)burst, len - offset - 1);
228
		while (count--)
229 230
			tpm_write_byte(priv, data[offset++],
				       &regs[locality].data);
231

232
		value = tis_wait_reg(priv, &regs[locality].tpm_status,
233 234
				     TIS_STS_VALID, TIS_STS_VALID);

235
		if ((value == -ETIMEDOUT) || !(value & TIS_STS_EXPECT)) {
236 237
			printf("%s:%d TPM command feed overflow\n",
			       __FILE__, __LINE__);
238
			return value == -ETIMEDOUT ? value : -EIO;
239 240 241 242 243 244 245 246 247 248 249 250 251 252
		}

		burst = burst_count(value);
		if ((offset == (len - 1)) && burst) {
			/*
			 * We need to be able to send the last byte to the
			 * device, so burst size must be nonzero before we
			 * break out.
			 */
			break;
		}
	}

	/* Send the last byte. */
253
	tpm_write_byte(priv, data[offset++], &regs[locality].data);
254 255 256 257
	/*
	 * Verify that TPM does not expect any more data as part of this
	 * command.
	 */
258
	value = tis_wait_reg(priv, &regs[locality].tpm_status,
259
			     TIS_STS_VALID, TIS_STS_VALID);
260
	if ((value == -ETIMEDOUT) || (value & TIS_STS_EXPECT)) {
261 262
		printf("%s:%d unexpected TPM status 0x%x\n",
		       __FILE__, __LINE__, value);
263
		return value == -ETIMEDOUT ? value : -EIO;
264 265 266
	}

	/* OK, sitting pretty, let's start the command execution. */
267
	tpm_write_word(priv, TIS_STS_TPM_GO, &regs[locality].tpm_status);
268 269 270 271 272 273 274 275 276 277 278 279 280
	return 0;
}

/*
 * tis_readresponse()
 *
 * read the TPM device response after a command was issued.
 *
 * @buffer - address where to read the response, byte by byte.
 * @len - pointer to the size of buffer
 *
 * On success stores the number of received bytes to len and returns 0. On
 * errors (misformatted TPM data or synchronization problems) returns
281
 * -ve value.
282
 */
283
static int tis_readresponse(struct udevice *dev, u8 *buffer, size_t len)
284
{
285 286
	struct tpm_tis_lpc_priv *priv = dev_get_priv(dev);
	struct tpm_locality *regs = priv->regs;
287 288 289 290 291
	u16 burst;
	u32 value;
	u32 offset = 0;
	u8 locality = 0;
	const u32 has_data = TIS_STS_DATA_AVAILABLE | TIS_STS_VALID;
292
	u32 expected_count = len;
293 294 295
	int max_cycles = 0;

	/* Wait for the TPM to process the command. */
296
	value = tis_wait_reg(priv, &regs[locality].tpm_status,
297
			      has_data, has_data);
298
	if (value == -ETIMEDOUT) {
299 300
		printf("%s:%d failed processing command\n",
		       __FILE__, __LINE__);
301
		return value;
302 303 304 305 306 307 308
	}

	do {
		while ((burst = burst_count(value)) == 0) {
			if (max_cycles++ == MAX_DELAY_US) {
				printf("%s:%d TPM stuck on read\n",
				       __FILE__, __LINE__);
309
				return -EIO;
310 311
			}
			udelay(1);
312
			value = tpm_read_word(priv, &regs[locality].tpm_status);
313 314 315 316 317
		}

		max_cycles = 0;

		while (burst-- && (offset < expected_count)) {
318 319
			buffer[offset++] = tpm_read_byte(priv,
						&regs[locality].data);
320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335

			if (offset == 6) {
				/*
				 * We got the first six bytes of the reply,
				 * let's figure out how many bytes to expect
				 * total - it is stored as a 4 byte number in
				 * network order, starting with offset 2 into
				 * the body of the reply.
				 */
				u32 real_length;
				memcpy(&real_length,
				       buffer + 2,
				       sizeof(real_length));
				expected_count = be32_to_cpu(real_length);

				if ((expected_count < offset) ||
336
				    (expected_count > len)) {
337 338 339
					printf("%s:%d bad response size %d\n",
					       __FILE__, __LINE__,
					       expected_count);
340
					return -ENOSPC;
341 342 343 344 345
				}
			}
		}

		/* Wait for the next portion. */
346
		value = tis_wait_reg(priv, &regs[locality].tpm_status,
347
				     TIS_STS_VALID, TIS_STS_VALID);
348
		if (value == -ETIMEDOUT) {
349 350
			printf("%s:%d failed to read response\n",
			       __FILE__, __LINE__);
351
			return value;
352 353 354 355 356 357 358 359 360 361 362 363 364 365
		}

		if (offset == expected_count)
			break;	/* We got all we needed. */

	} while ((value & has_data) == has_data);

	/*
	 * Make sure we indeed read all there was. The TIS_STS_VALID bit is
	 * known to be set.
	 */
	if (value & TIS_STS_DATA_AVAILABLE) {
		printf("%s:%d wrong receive status %x\n",
		       __FILE__, __LINE__, value);
366
		return -EBADMSG;
367 368 369
	}

	/* Tell the TPM that we are done. */
370 371 372 373
	tpm_write_word(priv, TIS_STS_COMMAND_READY,
		       &regs[locality].tpm_status);

	return offset;
374 375
}

376
static int tpm_tis_lpc_open(struct udevice *dev)
377
{
378 379
	struct tpm_tis_lpc_priv *priv = dev_get_priv(dev);
	struct tpm_locality *regs = priv->regs;
380
	u8 locality = 0; /* we use locality zero for everything. */
381
	int ret;
382 383

	/* now request access to locality. */
384
	tpm_write_word(priv, TIS_ACCESS_REQUEST_USE, &regs[locality].access);
385 386

	/* did we get a lock? */
387
	ret = tis_wait_reg(priv, &regs[locality].access,
388
			 TIS_ACCESS_ACTIVE_LOCALITY,
389 390
			 TIS_ACCESS_ACTIVE_LOCALITY);
	if (ret == -ETIMEDOUT) {
391 392
		printf("%s:%d - failed to lock locality %d\n",
		       __FILE__, __LINE__, locality);
393
		return ret;
394 395
	}

396 397
	tpm_write_word(priv, TIS_STS_COMMAND_READY,
		       &regs[locality].tpm_status);
398 399 400
	return 0;
}

401
static int tpm_tis_lpc_close(struct udevice *dev)
402
{
403 404
	struct tpm_tis_lpc_priv *priv = dev_get_priv(dev);
	struct tpm_locality *regs = priv->regs;
405 406
	u8 locality = 0;

407
	if (tpm_read_word(priv, &regs[locality].access) &
408
	    TIS_ACCESS_ACTIVE_LOCALITY) {
409 410
		tpm_write_word(priv, TIS_ACCESS_ACTIVE_LOCALITY,
			       &regs[locality].access);
411

412 413
		if (tis_wait_reg(priv, &regs[locality].access,
				 TIS_ACCESS_ACTIVE_LOCALITY, 0) == -ETIMEDOUT) {
414 415
			printf("%s:%d - failed to release locality %d\n",
			       __FILE__, __LINE__, locality);
416
			return -ETIMEDOUT;
417 418 419 420 421
		}
	}
	return 0;
}

422
static int tpm_tis_get_desc(struct udevice *dev, char *buf, int size)
423
{
424 425
	if (size < 50)
		return -ENOSPC;
426

427 428
	return snprintf(buf, size, "1.2 TPM (vendor %s, chip %s)",
			"Infineon", "SLB9635 TT 1.2");
429
}
430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452


static const struct tpm_ops tpm_tis_lpc_ops = {
	.open		= tpm_tis_lpc_open,
	.close		= tpm_tis_lpc_close,
	.get_desc	= tpm_tis_get_desc,
	.send		= tis_senddata,
	.recv		= tis_readresponse,
};

static const struct udevice_id tpm_tis_lpc_ids[] = {
	{ .compatible = "infineon,slb9635lpc" },
	{ }
};

U_BOOT_DRIVER(tpm_tis_lpc) = {
	.name   = "tpm_tis_lpc",
	.id     = UCLASS_TPM,
	.of_match = tpm_tis_lpc_ids,
	.ops    = &tpm_tis_lpc_ops,
	.probe	= tpm_tis_lpc_probe,
	.priv_auto_alloc_size = sizeof(struct tpm_tis_lpc_priv),
};