mirror of
https://xff.cz/git/u-boot/
synced 2025-09-02 17:22:22 +02:00
tpm: Support using driver model with I2C
As a first step towards converting the TPM system to driver model, allow it to work with CONFIG_DM_I2C. Signed-off-by: Simon Glass <sjg@chromium.org>
This commit is contained in:
@@ -34,6 +34,7 @@
|
|||||||
|
|
||||||
#include <config.h>
|
#include <config.h>
|
||||||
#include <common.h>
|
#include <common.h>
|
||||||
|
#include <dm.h>
|
||||||
#include <linux/compiler.h>
|
#include <linux/compiler.h>
|
||||||
#include <fdtdec.h>
|
#include <fdtdec.h>
|
||||||
#include <i2c.h>
|
#include <i2c.h>
|
||||||
@@ -48,10 +49,14 @@ DECLARE_GLOBAL_DATA_PTR;
|
|||||||
|
|
||||||
/* TPM configuration */
|
/* TPM configuration */
|
||||||
struct tpm {
|
struct tpm {
|
||||||
|
#ifdef CONFIG_DM_I2C
|
||||||
|
struct udevice *dev;
|
||||||
|
#else
|
||||||
int i2c_bus;
|
int i2c_bus;
|
||||||
int slave_addr;
|
int slave_addr;
|
||||||
char inited;
|
|
||||||
int old_bus;
|
int old_bus;
|
||||||
|
#endif
|
||||||
|
char inited;
|
||||||
} tpm;
|
} tpm;
|
||||||
|
|
||||||
/* Global structure for tpm chip data */
|
/* Global structure for tpm chip data */
|
||||||
@@ -372,7 +377,7 @@ static unsigned long tpm_calc_ordinal_duration(struct tpm_chip *chip,
|
|||||||
|
|
||||||
static ssize_t tpm_transmit(const unsigned char *buf, size_t bufsiz)
|
static ssize_t tpm_transmit(const unsigned char *buf, size_t bufsiz)
|
||||||
{
|
{
|
||||||
ssize_t rc;
|
int rc;
|
||||||
u32 count, ordinal;
|
u32 count, ordinal;
|
||||||
unsigned long start, stop;
|
unsigned long start, stop;
|
||||||
|
|
||||||
@@ -391,9 +396,11 @@ static ssize_t tpm_transmit(const unsigned char *buf, size_t bufsiz)
|
|||||||
return -E2BIG;
|
return -E2BIG;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
debug("Calling send\n");
|
||||||
rc = chip->vendor.send(chip, (u8 *)buf, count);
|
rc = chip->vendor.send(chip, (u8 *)buf, count);
|
||||||
|
debug(" ... done calling send\n");
|
||||||
if (rc < 0) {
|
if (rc < 0) {
|
||||||
error("tpm_transmit: tpm_send: error %zd\n", rc);
|
error("tpm_transmit: tpm_send: error %d\n", rc);
|
||||||
goto out;
|
goto out;
|
||||||
}
|
}
|
||||||
|
|
||||||
@@ -403,7 +410,7 @@ static ssize_t tpm_transmit(const unsigned char *buf, size_t bufsiz)
|
|||||||
start = get_timer(0);
|
start = get_timer(0);
|
||||||
stop = tpm_calc_ordinal_duration(chip, ordinal);
|
stop = tpm_calc_ordinal_duration(chip, ordinal);
|
||||||
do {
|
do {
|
||||||
debug("waiting for status...\n");
|
debug("waiting for status... %ld %ld\n", start, stop);
|
||||||
u8 status = chip->vendor.status(chip);
|
u8 status = chip->vendor.status(chip);
|
||||||
if ((status & chip->vendor.req_complete_mask) ==
|
if ((status & chip->vendor.req_complete_mask) ==
|
||||||
chip->vendor.req_complete_val) {
|
chip->vendor.req_complete_val) {
|
||||||
@@ -428,15 +435,30 @@ out_recv:
|
|||||||
debug("out_recv: reading response...\n");
|
debug("out_recv: reading response...\n");
|
||||||
rc = chip->vendor.recv(chip, (u8 *)buf, TPM_BUFSIZE);
|
rc = chip->vendor.recv(chip, (u8 *)buf, TPM_BUFSIZE);
|
||||||
if (rc < 0)
|
if (rc < 0)
|
||||||
error("tpm_transmit: tpm_recv: error %zd\n", rc);
|
error("tpm_transmit: tpm_recv: error %d\n", rc);
|
||||||
|
|
||||||
out:
|
out:
|
||||||
return rc;
|
return rc;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
#ifdef CONFIG_DM_I2C
|
||||||
|
static int tpm_open_dev(struct udevice *dev)
|
||||||
|
{
|
||||||
|
int rc;
|
||||||
|
|
||||||
|
debug("%s: start\n", __func__);
|
||||||
|
if (g_chip.is_open)
|
||||||
|
return -EBUSY;
|
||||||
|
rc = tpm_vendor_init_dev(dev);
|
||||||
|
if (rc < 0)
|
||||||
|
g_chip.is_open = 0;
|
||||||
|
return rc;
|
||||||
|
}
|
||||||
|
#else
|
||||||
static int tpm_open(uint32_t dev_addr)
|
static int tpm_open(uint32_t dev_addr)
|
||||||
{
|
{
|
||||||
int rc;
|
int rc;
|
||||||
|
|
||||||
if (g_chip.is_open)
|
if (g_chip.is_open)
|
||||||
return -EBUSY;
|
return -EBUSY;
|
||||||
rc = tpm_vendor_init(dev_addr);
|
rc = tpm_vendor_init(dev_addr);
|
||||||
@@ -444,7 +466,7 @@ static int tpm_open(uint32_t dev_addr)
|
|||||||
g_chip.is_open = 0;
|
g_chip.is_open = 0;
|
||||||
return rc;
|
return rc;
|
||||||
}
|
}
|
||||||
|
#endif
|
||||||
static void tpm_close(void)
|
static void tpm_close(void)
|
||||||
{
|
{
|
||||||
if (g_chip.is_open) {
|
if (g_chip.is_open) {
|
||||||
@@ -455,6 +477,7 @@ static void tpm_close(void)
|
|||||||
|
|
||||||
static int tpm_select(void)
|
static int tpm_select(void)
|
||||||
{
|
{
|
||||||
|
#ifndef CONFIG_DM_I2C
|
||||||
int ret;
|
int ret;
|
||||||
|
|
||||||
tpm.old_bus = i2c_get_bus_num();
|
tpm.old_bus = i2c_get_bus_num();
|
||||||
@@ -466,11 +489,13 @@ static int tpm_select(void)
|
|||||||
return -1;
|
return -1;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
#endif
|
||||||
return 0;
|
return 0;
|
||||||
}
|
}
|
||||||
|
|
||||||
static int tpm_deselect(void)
|
static int tpm_deselect(void)
|
||||||
{
|
{
|
||||||
|
#ifndef CONFIG_DM_I2C
|
||||||
int ret;
|
int ret;
|
||||||
|
|
||||||
if (tpm.old_bus != i2c_get_bus_num()) {
|
if (tpm.old_bus != i2c_get_bus_num()) {
|
||||||
@@ -482,6 +507,7 @@ static int tpm_deselect(void)
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
tpm.old_bus = -1;
|
tpm.old_bus = -1;
|
||||||
|
#endif
|
||||||
return 0;
|
return 0;
|
||||||
}
|
}
|
||||||
|
|
||||||
@@ -493,10 +519,9 @@ static int tpm_deselect(void)
|
|||||||
*/
|
*/
|
||||||
static int tpm_decode_config(struct tpm *dev)
|
static int tpm_decode_config(struct tpm *dev)
|
||||||
{
|
{
|
||||||
#ifdef CONFIG_OF_CONTROL
|
|
||||||
const void *blob = gd->fdt_blob;
|
const void *blob = gd->fdt_blob;
|
||||||
int node, parent;
|
int parent;
|
||||||
int i2c_bus;
|
int node;
|
||||||
|
|
||||||
node = fdtdec_next_compatible(blob, 0, COMPAT_INFINEON_SLB9635_TPM);
|
node = fdtdec_next_compatible(blob, 0, COMPAT_INFINEON_SLB9635_TPM);
|
||||||
if (node < 0) {
|
if (node < 0) {
|
||||||
@@ -512,15 +537,48 @@ static int tpm_decode_config(struct tpm *dev)
|
|||||||
debug("%s: Cannot find node parent\n", __func__);
|
debug("%s: Cannot find node parent\n", __func__);
|
||||||
return -1;
|
return -1;
|
||||||
}
|
}
|
||||||
|
#ifdef CONFIG_DM_I2C
|
||||||
|
struct udevice *bus;
|
||||||
|
int chip_addr;
|
||||||
|
int ret;
|
||||||
|
|
||||||
|
/*
|
||||||
|
* TODO(sjg@chromium.org): Remove this when driver model supports
|
||||||
|
* TPMs
|
||||||
|
*/
|
||||||
|
ret = uclass_get_device_by_of_offset(UCLASS_I2C, parent, &bus);
|
||||||
|
if (ret) {
|
||||||
|
debug("Cannot find bus for node '%s: ret=%d'\n",
|
||||||
|
fdt_get_name(blob, parent, NULL), ret);
|
||||||
|
return ret;
|
||||||
|
}
|
||||||
|
|
||||||
|
chip_addr = fdtdec_get_int(blob, node, "reg", -1);
|
||||||
|
if (chip_addr == -1) {
|
||||||
|
debug("Cannot find reg property for node '%s: ret=%d'\n",
|
||||||
|
fdt_get_name(blob, node, NULL), ret);
|
||||||
|
return ret;
|
||||||
|
}
|
||||||
|
/*
|
||||||
|
* TODO(sjg@chromium.org): Older TPMs will need to use the older method
|
||||||
|
* in iic_tpm_read() so the offset length needs to be 0 here.
|
||||||
|
*/
|
||||||
|
ret = i2c_get_chip(bus, chip_addr, 1, &dev->dev);
|
||||||
|
if (ret) {
|
||||||
|
debug("Cannot find device for node '%s: ret=%d'\n",
|
||||||
|
fdt_get_name(blob, node, NULL), ret);
|
||||||
|
return ret;
|
||||||
|
}
|
||||||
|
#else
|
||||||
|
int i2c_bus;
|
||||||
|
|
||||||
i2c_bus = i2c_get_bus_num_fdt(parent);
|
i2c_bus = i2c_get_bus_num_fdt(parent);
|
||||||
if (i2c_bus < 0)
|
if (i2c_bus < 0)
|
||||||
return -1;
|
return -1;
|
||||||
dev->i2c_bus = i2c_bus;
|
dev->i2c_bus = i2c_bus;
|
||||||
dev->slave_addr = fdtdec_get_addr(blob, node, "reg");
|
dev->slave_addr = fdtdec_get_addr(blob, node, "reg");
|
||||||
#else
|
|
||||||
dev->i2c_bus = CONFIG_TPM_TIS_I2C_BUS_NUMBER;
|
|
||||||
dev->slave_addr = CONFIG_TPM_TIS_I2C_SLAVE_ADDRESS;
|
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
return 0;
|
return 0;
|
||||||
}
|
}
|
||||||
|
|
||||||
@@ -547,6 +605,7 @@ int tis_init(void)
|
|||||||
if (tpm_select())
|
if (tpm_select())
|
||||||
return -1;
|
return -1;
|
||||||
|
|
||||||
|
#ifndef CONFIG_DM_I2C
|
||||||
/*
|
/*
|
||||||
* Probe TPM twice; the first probing might fail because TPM is asleep,
|
* Probe TPM twice; the first probing might fail because TPM is asleep,
|
||||||
* and the probing can wake up TPM.
|
* and the probing can wake up TPM.
|
||||||
@@ -556,8 +615,10 @@ int tis_init(void)
|
|||||||
tpm.slave_addr);
|
tpm.slave_addr);
|
||||||
return -1;
|
return -1;
|
||||||
}
|
}
|
||||||
|
#endif
|
||||||
|
|
||||||
tpm_deselect();
|
tpm_deselect();
|
||||||
|
debug("%s: done\n", __func__);
|
||||||
|
|
||||||
tpm.inited = 1;
|
tpm.inited = 1;
|
||||||
|
|
||||||
@@ -574,7 +635,11 @@ int tis_open(void)
|
|||||||
if (tpm_select())
|
if (tpm_select())
|
||||||
return -1;
|
return -1;
|
||||||
|
|
||||||
|
#ifdef CONFIG_DM_I2C
|
||||||
|
rc = tpm_open_dev(tpm.dev);
|
||||||
|
#else
|
||||||
rc = tpm_open(tpm.slave_addr);
|
rc = tpm_open(tpm.slave_addr);
|
||||||
|
#endif
|
||||||
|
|
||||||
tpm_deselect();
|
tpm_deselect();
|
||||||
|
|
||||||
|
@@ -131,6 +131,9 @@ struct tpm_chip *tpm_register_hardware(const struct tpm_vendor_specific *);
|
|||||||
|
|
||||||
int tpm_vendor_init(uint32_t dev_addr);
|
int tpm_vendor_init(uint32_t dev_addr);
|
||||||
|
|
||||||
|
struct udevice;
|
||||||
|
int tpm_vendor_init_dev(struct udevice *dev);
|
||||||
|
|
||||||
void tpm_vendor_cleanup(struct tpm_chip *chip);
|
void tpm_vendor_cleanup(struct tpm_chip *chip);
|
||||||
|
|
||||||
|
|
||||||
|
@@ -37,6 +37,7 @@
|
|||||||
*/
|
*/
|
||||||
|
|
||||||
#include <common.h>
|
#include <common.h>
|
||||||
|
#include <dm.h>
|
||||||
#include <fdtdec.h>
|
#include <fdtdec.h>
|
||||||
#include <linux/compiler.h>
|
#include <linux/compiler.h>
|
||||||
#include <i2c.h>
|
#include <i2c.h>
|
||||||
@@ -122,13 +123,19 @@ static const char * const chip_name[] = {
|
|||||||
|
|
||||||
/* Structure to store I2C TPM specific stuff */
|
/* Structure to store I2C TPM specific stuff */
|
||||||
struct tpm_dev {
|
struct tpm_dev {
|
||||||
|
#ifdef CONFIG_DM_I2C
|
||||||
|
struct udevice *dev;
|
||||||
|
#else
|
||||||
uint addr;
|
uint addr;
|
||||||
|
#endif
|
||||||
u8 buf[TPM_DEV_BUFSIZE + sizeof(u8)]; /* Max buffer size + addr */
|
u8 buf[TPM_DEV_BUFSIZE + sizeof(u8)]; /* Max buffer size + addr */
|
||||||
enum i2c_chip_type chip_type;
|
enum i2c_chip_type chip_type;
|
||||||
};
|
};
|
||||||
|
|
||||||
static struct tpm_dev tpm_dev = {
|
static struct tpm_dev tpm_dev = {
|
||||||
|
#ifndef CONFIG_DM_I2C
|
||||||
.addr = TPM_I2C_ADDR
|
.addr = TPM_I2C_ADDR
|
||||||
|
#endif
|
||||||
};
|
};
|
||||||
|
|
||||||
static struct tpm_dev tpm_dev;
|
static struct tpm_dev tpm_dev;
|
||||||
@@ -156,8 +163,12 @@ static int iic_tpm_read(u8 addr, u8 *buffer, size_t len)
|
|||||||
if ((tpm_dev.chip_type == SLB9635) || (tpm_dev.chip_type == UNKNOWN)) {
|
if ((tpm_dev.chip_type == SLB9635) || (tpm_dev.chip_type == UNKNOWN)) {
|
||||||
/* slb9635 protocol should work in both cases */
|
/* slb9635 protocol should work in both cases */
|
||||||
for (count = 0; count < MAX_COUNT; count++) {
|
for (count = 0; count < MAX_COUNT; count++) {
|
||||||
|
#ifdef CONFIG_DM_I2C
|
||||||
|
rc = dm_i2c_write(tpm_dev.dev, 0, (uchar *)&addrbuf, 1);
|
||||||
|
#else
|
||||||
rc = i2c_write(tpm_dev.addr, 0, 0,
|
rc = i2c_write(tpm_dev.addr, 0, 0,
|
||||||
(uchar *)&addrbuf, 1);
|
(uchar *)&addrbuf, 1);
|
||||||
|
#endif
|
||||||
if (rc == 0)
|
if (rc == 0)
|
||||||
break; /* Success, break to skip sleep */
|
break; /* Success, break to skip sleep */
|
||||||
udelay(SLEEP_DURATION);
|
udelay(SLEEP_DURATION);
|
||||||
@@ -171,7 +182,11 @@ static int iic_tpm_read(u8 addr, u8 *buffer, size_t len)
|
|||||||
*/
|
*/
|
||||||
for (count = 0; count < MAX_COUNT; count++) {
|
for (count = 0; count < MAX_COUNT; count++) {
|
||||||
udelay(SLEEP_DURATION);
|
udelay(SLEEP_DURATION);
|
||||||
|
#ifdef CONFIG_DM_I2C
|
||||||
|
rc = dm_i2c_read(tpm_dev.dev, 0, buffer, len);
|
||||||
|
#else
|
||||||
rc = i2c_read(tpm_dev.addr, 0, 0, buffer, len);
|
rc = i2c_read(tpm_dev.addr, 0, 0, buffer, len);
|
||||||
|
#endif
|
||||||
if (rc == 0)
|
if (rc == 0)
|
||||||
break; /* success, break to skip sleep */
|
break; /* success, break to skip sleep */
|
||||||
}
|
}
|
||||||
@@ -184,7 +199,11 @@ static int iic_tpm_read(u8 addr, u8 *buffer, size_t len)
|
|||||||
* be safe on the safe side.
|
* be safe on the safe side.
|
||||||
*/
|
*/
|
||||||
for (count = 0; count < MAX_COUNT; count++) {
|
for (count = 0; count < MAX_COUNT; count++) {
|
||||||
|
#ifdef CONFIG_DM_I2C
|
||||||
|
rc = dm_i2c_read(tpm_dev.dev, addr, buffer, len);
|
||||||
|
#else
|
||||||
rc = i2c_read(tpm_dev.addr, addr, 1, buffer, len);
|
rc = i2c_read(tpm_dev.addr, addr, 1, buffer, len);
|
||||||
|
#endif
|
||||||
if (rc == 0)
|
if (rc == 0)
|
||||||
break; /* break here to skip sleep */
|
break; /* break here to skip sleep */
|
||||||
udelay(SLEEP_DURATION);
|
udelay(SLEEP_DURATION);
|
||||||
@@ -206,18 +225,26 @@ static int iic_tpm_write_generic(u8 addr, u8 *buffer, size_t len,
|
|||||||
int count;
|
int count;
|
||||||
|
|
||||||
/* Prepare send buffer */
|
/* Prepare send buffer */
|
||||||
|
#ifndef CONFIG_DM_I2C
|
||||||
tpm_dev.buf[0] = addr;
|
tpm_dev.buf[0] = addr;
|
||||||
memcpy(&(tpm_dev.buf[1]), buffer, len);
|
memcpy(&(tpm_dev.buf[1]), buffer, len);
|
||||||
|
buffer = tpm_dev.buf;
|
||||||
|
len++;
|
||||||
|
#endif
|
||||||
|
|
||||||
for (count = 0; count < max_count; count++) {
|
for (count = 0; count < max_count; count++) {
|
||||||
rc = i2c_write(tpm_dev.addr, 0, 0, tpm_dev.buf, len + 1);
|
#ifdef CONFIG_DM_I2C
|
||||||
|
rc = dm_i2c_write(tpm_dev.dev, addr, buffer, len);
|
||||||
|
#else
|
||||||
|
rc = i2c_write(tpm_dev.addr, 0, 0, buffer, len);
|
||||||
|
#endif
|
||||||
if (rc == 0)
|
if (rc == 0)
|
||||||
break; /* Success, break to skip sleep */
|
break; /* Success, break to skip sleep */
|
||||||
udelay(sleep_time);
|
udelay(sleep_time);
|
||||||
}
|
}
|
||||||
|
|
||||||
/* take care of 'guard time' */
|
/* take care of 'guard time' */
|
||||||
udelay(SLEEP_DURATION);
|
udelay(sleep_time);
|
||||||
if (rc)
|
if (rc)
|
||||||
return -rc;
|
return -rc;
|
||||||
|
|
||||||
@@ -292,11 +319,14 @@ static int request_locality(struct tpm_chip *chip, int loc)
|
|||||||
{
|
{
|
||||||
unsigned long start, stop;
|
unsigned long start, stop;
|
||||||
u8 buf = TPM_ACCESS_REQUEST_USE;
|
u8 buf = TPM_ACCESS_REQUEST_USE;
|
||||||
|
int rc;
|
||||||
|
|
||||||
if (check_locality(chip, loc) >= 0)
|
if (check_locality(chip, loc) >= 0)
|
||||||
return loc; /* We already have the locality */
|
return loc; /* We already have the locality */
|
||||||
|
|
||||||
iic_tpm_write(TPM_ACCESS(loc), &buf, 1);
|
rc = iic_tpm_write(TPM_ACCESS(loc), &buf, 1);
|
||||||
|
if (rc)
|
||||||
|
return rc;
|
||||||
|
|
||||||
/* Wait for burstcount */
|
/* Wait for burstcount */
|
||||||
start = get_timer(0);
|
start = get_timer(0);
|
||||||
@@ -323,10 +353,15 @@ static u8 tpm_tis_i2c_status(struct tpm_chip *chip)
|
|||||||
|
|
||||||
static void tpm_tis_i2c_ready(struct tpm_chip *chip)
|
static void tpm_tis_i2c_ready(struct tpm_chip *chip)
|
||||||
{
|
{
|
||||||
|
int rc;
|
||||||
|
|
||||||
/* This causes the current command to be aborted */
|
/* This causes the current command to be aborted */
|
||||||
u8 buf = TPM_STS_COMMAND_READY;
|
u8 buf = TPM_STS_COMMAND_READY;
|
||||||
|
|
||||||
iic_tpm_write_long(TPM_STS(chip->vendor.locality), &buf, 1);
|
debug("%s\n", __func__);
|
||||||
|
rc = iic_tpm_write_long(TPM_STS(chip->vendor.locality), &buf, 1);
|
||||||
|
if (rc)
|
||||||
|
debug("%s: rc=%d\n", __func__, rc);
|
||||||
}
|
}
|
||||||
|
|
||||||
static ssize_t get_burstcount(struct tpm_chip *chip)
|
static ssize_t get_burstcount(struct tpm_chip *chip)
|
||||||
@@ -422,6 +457,8 @@ static int tpm_tis_i2c_recv(struct tpm_chip *chip, u8 *buf, size_t count)
|
|||||||
|
|
||||||
expected = get_unaligned_be32(buf + TPM_RSP_SIZE_BYTE);
|
expected = get_unaligned_be32(buf + TPM_RSP_SIZE_BYTE);
|
||||||
if ((size_t)expected > count) {
|
if ((size_t)expected > count) {
|
||||||
|
error("Error size=%x, expected=%x, count=%x\n", size, expected,
|
||||||
|
count);
|
||||||
size = -EIO;
|
size = -EIO;
|
||||||
goto out;
|
goto out;
|
||||||
}
|
}
|
||||||
@@ -456,11 +493,12 @@ out:
|
|||||||
static int tpm_tis_i2c_send(struct tpm_chip *chip, u8 *buf, size_t len)
|
static int tpm_tis_i2c_send(struct tpm_chip *chip, u8 *buf, size_t len)
|
||||||
{
|
{
|
||||||
int rc, status;
|
int rc, status;
|
||||||
ssize_t burstcnt;
|
size_t burstcnt;
|
||||||
size_t count = 0;
|
size_t count = 0;
|
||||||
int retry = 0;
|
int retry = 0;
|
||||||
u8 sts = TPM_STS_GO;
|
u8 sts = TPM_STS_GO;
|
||||||
|
|
||||||
|
debug("%s: len=%d\n", __func__, len);
|
||||||
if (len > TPM_DEV_BUFSIZE)
|
if (len > TPM_DEV_BUFSIZE)
|
||||||
return -E2BIG; /* Command is too long for our tpm, sorry */
|
return -E2BIG; /* Command is too long for our tpm, sorry */
|
||||||
|
|
||||||
@@ -483,9 +521,10 @@ static int tpm_tis_i2c_send(struct tpm_chip *chip, u8 *buf, size_t len)
|
|||||||
if (burstcnt < 0)
|
if (burstcnt < 0)
|
||||||
return burstcnt;
|
return burstcnt;
|
||||||
|
|
||||||
while (count < len - 1) {
|
while (count < len) {
|
||||||
if (burstcnt > len - 1 - count)
|
udelay(300);
|
||||||
burstcnt = len - 1 - count;
|
if (burstcnt > len - count)
|
||||||
|
burstcnt = len - count;
|
||||||
|
|
||||||
#ifdef CONFIG_TPM_TIS_I2C_BURST_LIMITATION
|
#ifdef CONFIG_TPM_TIS_I2C_BURST_LIMITATION
|
||||||
if (retry && burstcnt > CONFIG_TPM_TIS_I2C_BURST_LIMITATION)
|
if (retry && burstcnt > CONFIG_TPM_TIS_I2C_BURST_LIMITATION)
|
||||||
@@ -497,9 +536,15 @@ static int tpm_tis_i2c_send(struct tpm_chip *chip, u8 *buf, size_t len)
|
|||||||
if (rc == 0)
|
if (rc == 0)
|
||||||
count += burstcnt;
|
count += burstcnt;
|
||||||
else {
|
else {
|
||||||
retry++;
|
debug("%s: error\n", __func__);
|
||||||
wait_for_stat(chip, TPM_STS_VALID,
|
if (retry++ > 10) {
|
||||||
chip->vendor.timeout_c, &status);
|
rc = -EIO;
|
||||||
|
goto out_err;
|
||||||
|
}
|
||||||
|
rc = wait_for_stat(chip, TPM_STS_VALID,
|
||||||
|
chip->vendor.timeout_c, &status);
|
||||||
|
if (rc)
|
||||||
|
goto out_err;
|
||||||
|
|
||||||
if ((status & TPM_STS_DATA_EXPECT) == 0) {
|
if ((status & TPM_STS_DATA_EXPECT) == 0) {
|
||||||
rc = -EIO;
|
rc = -EIO;
|
||||||
@@ -508,20 +553,14 @@ static int tpm_tis_i2c_send(struct tpm_chip *chip, u8 *buf, size_t len)
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
/* Write last byte */
|
|
||||||
iic_tpm_write(TPM_DATA_FIFO(chip->vendor.locality), &(buf[count]), 1);
|
|
||||||
wait_for_stat(chip, TPM_STS_VALID, chip->vendor.timeout_c, &status);
|
|
||||||
if ((status & TPM_STS_DATA_EXPECT) != 0) {
|
|
||||||
rc = -EIO;
|
|
||||||
goto out_err;
|
|
||||||
}
|
|
||||||
|
|
||||||
/* Go and do it */
|
/* Go and do it */
|
||||||
iic_tpm_write(TPM_STS(chip->vendor.locality), &sts, 1);
|
iic_tpm_write(TPM_STS(chip->vendor.locality), &sts, 1);
|
||||||
|
debug("done\n");
|
||||||
|
|
||||||
return len;
|
return len;
|
||||||
|
|
||||||
out_err:
|
out_err:
|
||||||
|
debug("%s: out_err\n", __func__);
|
||||||
tpm_tis_i2c_ready(chip);
|
tpm_tis_i2c_ready(chip);
|
||||||
/*
|
/*
|
||||||
* The TPM needs some time to clean up here,
|
* The TPM needs some time to clean up here,
|
||||||
@@ -558,26 +597,17 @@ static enum i2c_chip_type tpm_vendor_chip_type(void)
|
|||||||
return UNKNOWN;
|
return UNKNOWN;
|
||||||
}
|
}
|
||||||
|
|
||||||
/* Initialisation of i2c tpm */
|
static int tpm_vendor_init_common(void)
|
||||||
int tpm_vendor_init(uint32_t dev_addr)
|
|
||||||
{
|
{
|
||||||
|
struct tpm_chip *chip;
|
||||||
u32 vendor;
|
u32 vendor;
|
||||||
u32 expected_did_vid;
|
u32 expected_did_vid;
|
||||||
uint old_addr;
|
|
||||||
int rc = 0;
|
|
||||||
struct tpm_chip *chip;
|
|
||||||
|
|
||||||
old_addr = tpm_dev.addr;
|
|
||||||
if (dev_addr != 0)
|
|
||||||
tpm_dev.addr = dev_addr;
|
|
||||||
|
|
||||||
tpm_dev.chip_type = tpm_vendor_chip_type();
|
tpm_dev.chip_type = tpm_vendor_chip_type();
|
||||||
|
|
||||||
chip = tpm_register_hardware(&tpm_tis_i2c);
|
chip = tpm_register_hardware(&tpm_tis_i2c);
|
||||||
if (chip < 0) {
|
if (chip < 0)
|
||||||
rc = -ENODEV;
|
return -ENODEV;
|
||||||
goto out_err;
|
|
||||||
}
|
|
||||||
|
|
||||||
/* Disable interrupts (not supported) */
|
/* Disable interrupts (not supported) */
|
||||||
chip->vendor.irq = 0;
|
chip->vendor.irq = 0;
|
||||||
@@ -588,15 +618,13 @@ int tpm_vendor_init(uint32_t dev_addr)
|
|||||||
chip->vendor.timeout_c = TIS_SHORT_TIMEOUT;
|
chip->vendor.timeout_c = TIS_SHORT_TIMEOUT;
|
||||||
chip->vendor.timeout_d = TIS_SHORT_TIMEOUT;
|
chip->vendor.timeout_d = TIS_SHORT_TIMEOUT;
|
||||||
|
|
||||||
if (request_locality(chip, 0) < 0) {
|
if (request_locality(chip, 0) < 0)
|
||||||
rc = -ENODEV;
|
return -ENODEV;
|
||||||
goto out_err;
|
|
||||||
}
|
|
||||||
|
|
||||||
/* Read four bytes from DID_VID register */
|
/* Read four bytes from DID_VID register */
|
||||||
if (iic_tpm_read(TPM_DID_VID(0), (uchar *)&vendor, 4) < 0) {
|
if (iic_tpm_read(TPM_DID_VID(0), (uchar *)&vendor, 4) < 0) {
|
||||||
rc = -EIO;
|
release_locality(chip, 0, 1);
|
||||||
goto out_release;
|
return -EIO;
|
||||||
}
|
}
|
||||||
|
|
||||||
if (tpm_dev.chip_type == SLB9635) {
|
if (tpm_dev.chip_type == SLB9635) {
|
||||||
@@ -609,8 +637,7 @@ int tpm_vendor_init(uint32_t dev_addr)
|
|||||||
|
|
||||||
if (tpm_dev.chip_type != UNKNOWN && vendor != expected_did_vid) {
|
if (tpm_dev.chip_type != UNKNOWN && vendor != expected_did_vid) {
|
||||||
error("Vendor id did not match! ID was %08x\n", vendor);
|
error("Vendor id did not match! ID was %08x\n", vendor);
|
||||||
rc = -ENODEV;
|
return -ENODEV;
|
||||||
goto out_release;
|
|
||||||
}
|
}
|
||||||
|
|
||||||
debug("1.2 TPM (chip type %s device-id 0x%X)\n",
|
debug("1.2 TPM (chip type %s device-id 0x%X)\n",
|
||||||
@@ -622,14 +649,33 @@ int tpm_vendor_init(uint32_t dev_addr)
|
|||||||
*/
|
*/
|
||||||
|
|
||||||
return 0;
|
return 0;
|
||||||
|
}
|
||||||
|
|
||||||
out_release:
|
#ifdef CONFIG_DM_I2C
|
||||||
release_locality(chip, 0, 1);
|
/* Initialisation of i2c tpm */
|
||||||
|
int tpm_vendor_init_dev(struct udevice *dev)
|
||||||
|
{
|
||||||
|
tpm_dev.dev = dev;
|
||||||
|
return tpm_vendor_init_common();
|
||||||
|
}
|
||||||
|
#else
|
||||||
|
/* Initialisation of i2c tpm */
|
||||||
|
int tpm_vendor_init(uint32_t dev_addr)
|
||||||
|
{
|
||||||
|
uint old_addr;
|
||||||
|
int rc = 0;
|
||||||
|
|
||||||
|
old_addr = tpm_dev.addr;
|
||||||
|
if (dev_addr != 0)
|
||||||
|
tpm_dev.addr = dev_addr;
|
||||||
|
|
||||||
|
rc = tpm_vendor_init_common();
|
||||||
|
if (rc)
|
||||||
|
tpm_dev.addr = old_addr;
|
||||||
|
|
||||||
out_err:
|
|
||||||
tpm_dev.addr = old_addr;
|
|
||||||
return rc;
|
return rc;
|
||||||
}
|
}
|
||||||
|
#endif
|
||||||
|
|
||||||
void tpm_vendor_cleanup(struct tpm_chip *chip)
|
void tpm_vendor_cleanup(struct tpm_chip *chip)
|
||||||
{
|
{
|
||||||
|
Reference in New Issue
Block a user