Merge tag 'tpm-master-14042025' of https://source.denx.de/u-boot/custodians/u-boot-tpm

A small fix for the cr50 which is a TPM but doesn't support all
the TPM functionality. Since it deviates from our normal TIS compliant
TPMs it can't be started twice since running the selftests twice hangs.
diff --git a/drivers/tpm/cr50_i2c.c b/drivers/tpm/cr50_i2c.c
index 08ec179..5b2d5cc 100644
--- a/drivers/tpm/cr50_i2c.c
+++ b/drivers/tpm/cr50_i2c.c
@@ -737,9 +737,13 @@
 
 static int cr50_i2c_open(struct udevice *dev)
 {
+	struct cr50_priv *priv = dev_get_priv(dev);
 	char buf[80];
 	int ret;
 
+	if (priv->locality != -1)
+		return -EBUSY;
+
 	ret = process_reset(dev);
 	if (ret)
 		return log_msg_ret("reset", ret);