summaryrefslogtreecommitdiff
path: root/lib/tpm_api.c
diff options
context:
space:
mode:
authorSughosh Ganu <sughosh.ganu@linaro.org>2022-07-22 19:02:04 +0300
committerIlias Apalodimas <ilias.apalodimas@linaro.org>2022-08-02 23:50:02 +0300
commite67ffb5aa5ab03a89305f4575ad3142486f9a306 (patch)
tree624c26edcc914c27bcdd0a8a04e4490995572d84 /lib/tpm_api.c
parent5d98329196daaf624c39304aec1397d6363b3e72 (diff)
downloadu-boot-e67ffb5aa5ab03a89305f4575ad3142486f9a306.tar.xz
tpm: rng: Add driver model interface for TPM RNG device
The TPM device has a builtin random number generator(RNG) functionality. Expose the RNG functions of the TPM device to the driver model so that they can be used by the EFI_RNG_PROTOCOL if the protocol is installed. Also change the function arguments and return type of the random number functions to comply with the driver model api. Signed-off-by: Sughosh Ganu <sughosh.ganu@linaro.org> Reviewed-by: Ilias Apalodimas <ilias.apalodimas@linaro.org> Signed-off-by: Ilias Apalodimas <ilias.apalodimas@linaro.org>
Diffstat (limited to 'lib/tpm_api.c')
-rw-r--r--lib/tpm_api.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/lib/tpm_api.c b/lib/tpm_api.c
index 4ac4612c81..032f383ca0 100644
--- a/lib/tpm_api.c
+++ b/lib/tpm_api.c
@@ -269,7 +269,7 @@ u32 tpm_get_random(struct udevice *dev, void *data, u32 count)
if (tpm_is_v1(dev))
return tpm1_get_random(dev, data, count);
else if (tpm_is_v2(dev))
- return -ENOSYS; /* not implemented yet */
- else
- return -ENOSYS;
+ return tpm2_get_random(dev, data, count);
+
+ return -ENOSYS;
}