aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorTom Rini <trini@konsulko.com>2023-01-20 10:36:00 -0500
committerTom Rini <trini@konsulko.com>2023-01-20 10:36:00 -0500
commit8bd3c0a7e17ee17c771cabc0e548a1a436ac021d (patch)
treefd7117a58a97f61e98b6d75b2a4a41839cf496e5
parent53c47c59e638cc118c272235db516bb541dad0ac (diff)
parenteda976d36a37d459da5908fb922173a4bafe8666 (diff)
downloadu-boot-8bd3c0a7e17ee17c771cabc0e548a1a436ac021d.zip
u-boot-8bd3c0a7e17ee17c771cabc0e548a1a436ac021d.tar.gz
u-boot-8bd3c0a7e17ee17c771cabc0e548a1a436ac021d.tar.bz2
Merge tag 'tpm-20012023' of https://source.denx.de/u-boot/custodians/u-boot-tpm
TPM fixes and state reporting
-rw-r--r--MAINTAINERS3
-rw-r--r--drivers/tee/optee/core.c4
-rw-r--r--drivers/tpm/tpm2_ftpm_tee.c3
3 files changed, 8 insertions, 2 deletions
diff --git a/MAINTAINERS b/MAINTAINERS
index b2de50c..8dcce88 100644
--- a/MAINTAINERS
+++ b/MAINTAINERS
@@ -1452,6 +1452,7 @@ F: configs/j721s2_hs_evm_r5_defconfig
TPM DRIVERS
M: Ilias Apalodimas <ilias.apalodimas@linaro.org>
S: Maintained
+T: git https://source.denx.de/u-boot/custodians/u-boot-tpm.git
F: drivers/tpm/
TQ GROUP
@@ -1461,6 +1462,8 @@ T: git git://git.denx.de/u-boot-tq-group.git
TEE
M: Jens Wiklander <jens.wiklander@linaro.org>
+M: Ilias Apalodimas <ilias.apalodimas@linaro.org>
+T: git https://source.denx.de/u-boot/custodians/u-boot-tpm.git
S: Maintained
F: drivers/tee/
F: include/tee.h
diff --git a/drivers/tee/optee/core.c b/drivers/tee/optee/core.c
index a813a84..9a9b697 100644
--- a/drivers/tee/optee/core.c
+++ b/drivers/tee/optee/core.c
@@ -73,7 +73,7 @@ static struct optee_service *find_service_driver(const struct tee_optee_ta_uuid
for (idx = 0; idx < service_cnt; idx++, service++) {
tee_optee_ta_uuid_to_octets(loc_uuid, &service->uuid);
- if (!memcmp(uuid, loc_uuid, sizeof(uuid)))
+ if (!memcmp(uuid, loc_uuid, sizeof(*uuid)))
return service;
}
@@ -850,7 +850,7 @@ static int optee_probe(struct udevice *dev)
ret = device_bind_driver_to_node(dev, "optee-rng", "optee-rng",
dev_ofnode(dev), NULL);
if (ret)
- dev_warn(dev, "ftpm_tee failed to bind: %d\n", ret);
+ dev_warn(dev, "optee-rng failed to bind: %d\n", ret);
}
return 0;
diff --git a/drivers/tpm/tpm2_ftpm_tee.c b/drivers/tpm/tpm2_ftpm_tee.c
index 3c4c129..c61ff2c 100644
--- a/drivers/tpm/tpm2_ftpm_tee.c
+++ b/drivers/tpm/tpm2_ftpm_tee.c
@@ -18,10 +18,13 @@
#include <log.h>
#include <tpm-v2.h>
#include <tee.h>
+#include <tee/optee_service.h>
#include "tpm_tis.h"
#include "tpm2_ftpm_tee.h"
+OPTEE_SERVICE_DRIVER(optee_ftpm, TA_FTPM_UUID, "ftpm_tee");
+
/**
* ftpm_tee_transceive() - send fTPM commands and retrieve fTPM response.
* @sendbuf - address of the data to send, byte by byte