aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorJavier Martinez Canillas <javierm@redhat.com>2017-12-24 21:22:51 -0500
committerJarkko Sakkinen <jarkko.sakkinen@linux.intel.com>2018-01-08 05:58:39 -0500
commit6c9f0ce0dffe64da2204f38b0fd90f3ae2a8903c (patch)
treed0689391178ad15e035b033c8fc2ef0278e07749
parent5fc0bead786d76f5edc732f60451e3fca310f7a0 (diff)
tpm: only attempt to disable the LPC CLKRUN if is already enabled
Commit 5e572cab92f0 ("tpm: Enable CLKRUN protocol for Braswell systems") added logic in the TPM TIS driver to disable the Low Pin Count CLKRUN signal during TPM transactions. Unfortunately this breaks other devices that are attached to the LPC bus like for example PS/2 mouse and keyboards. One flaw with the logic is that it assumes that the CLKRUN is always enabled, and so it unconditionally enables it after a TPM transaction. But it could be that the CLKRUN# signal was already disabled in the LPC bus and so after the driver probes, CLKRUN_EN will remain enabled which may break other devices that are attached to the LPC bus but don't have support for the CLKRUN protocol. Fixes: 5e572cab92f0 ("tpm: Enable CLKRUN protocol for Braswell systems") Signed-off-by: Javier Martinez Canillas <javierm@redhat.com> Tested-by: James Ettle <james@ettle.org.uk> Tested-by: Jeffery Miller <jmiller@neverware.com> Reviewed-by: Jarkko Sakkinen <jarkko.sakkinen@linux.intel.com> Tested-by: Jarkko Sakkinen <jarkko.sakkinen@linux.intel.com> Signed-off-by: Jarkko Sakkinen <jarkko.sakkinen@linux.intel.com>
-rw-r--r--drivers/char/tpm/tpm_tis_core.c11
1 files changed, 10 insertions, 1 deletions
diff --git a/drivers/char/tpm/tpm_tis_core.c b/drivers/char/tpm/tpm_tis_core.c
index 38f7a9bc1045..183a5f54d875 100644
--- a/drivers/char/tpm/tpm_tis_core.c
+++ b/drivers/char/tpm/tpm_tis_core.c
@@ -759,7 +759,8 @@ static void tpm_tis_clkrun_enable(struct tpm_chip *chip, bool value)
759 struct tpm_tis_data *data = dev_get_drvdata(&chip->dev); 759 struct tpm_tis_data *data = dev_get_drvdata(&chip->dev);
760 u32 clkrun_val; 760 u32 clkrun_val;
761 761
762 if (!IS_ENABLED(CONFIG_X86) || !is_bsw()) 762 if (!IS_ENABLED(CONFIG_X86) || !is_bsw() ||
763 !data->ilb_base_addr)
763 return; 764 return;
764 765
765 if (value) { 766 if (value) {
@@ -818,6 +819,7 @@ int tpm_tis_core_init(struct device *dev, struct tpm_tis_data *priv, int irq,
818 u32 vendor; 819 u32 vendor;
819 u32 intfcaps; 820 u32 intfcaps;
820 u32 intmask; 821 u32 intmask;
822 u32 clkrun_val;
821 u8 rid; 823 u8 rid;
822 int rc, probe; 824 int rc, probe;
823 struct tpm_chip *chip; 825 struct tpm_chip *chip;
@@ -843,6 +845,13 @@ int tpm_tis_core_init(struct device *dev, struct tpm_tis_data *priv, int irq,
843 ILB_REMAP_SIZE); 845 ILB_REMAP_SIZE);
844 if (!priv->ilb_base_addr) 846 if (!priv->ilb_base_addr)
845 return -ENOMEM; 847 return -ENOMEM;
848
849 clkrun_val = ioread32(priv->ilb_base_addr + LPC_CNTRL_OFFSET);
850 /* Check if CLKRUN# is already not enabled in the LPC bus */
851 if (!(clkrun_val & LPC_CLKRUN_EN)) {
852 iounmap(priv->ilb_base_addr);
853 priv->ilb_base_addr = NULL;
854 }
846 } 855 }
847 856
848 if (chip->ops->clk_enable != NULL) 857 if (chip->ops->clk_enable != NULL)