Commit ecff6813 authored by Jerry Snitselaar's avatar Jerry Snitselaar Committed by Jarkko Sakkinen

tpm: return false from tpm_amd_is_rng_defective on non-x86 platforms

tpm_amd_is_rng_defective is for dealing with an issue related to the
AMD firmware TPM, so on non-x86 architectures just have it inline and
return false.

Cc: stable@vger.kernel.org # v6.3+
Reported-by: default avatarSachin Sant <sachinp@linux.ibm.com>
Reported-by: default avatarAneesh Kumar K. V <aneesh.kumar@linux.ibm.com>
Closes: https://lore.kernel.org/lkml/99B81401-DB46-49B9-B321-CF832B50CAC3@linux.ibm.com/
Fixes: f1324bbc ("tpm: disable hwrng for fTPM on some AMD designs")
Signed-off-by: default avatarJerry Snitselaar <jsnitsel@redhat.com>
Reviewed-by: default avatarJarkko Sakkinen <jarkko@kernel.org>
Signed-off-by: default avatarJarkko Sakkinen <jarkko@kernel.org>
parent d5590152
...@@ -518,6 +518,7 @@ static int tpm_add_legacy_sysfs(struct tpm_chip *chip) ...@@ -518,6 +518,7 @@ static int tpm_add_legacy_sysfs(struct tpm_chip *chip)
* 6.x.y.z series: 6.0.18.6 + * 6.x.y.z series: 6.0.18.6 +
* 3.x.y.z series: 3.57.y.5 + * 3.x.y.z series: 3.57.y.5 +
*/ */
#ifdef CONFIG_X86
static bool tpm_amd_is_rng_defective(struct tpm_chip *chip) static bool tpm_amd_is_rng_defective(struct tpm_chip *chip)
{ {
u32 val1, val2; u32 val1, val2;
...@@ -566,6 +567,12 @@ static bool tpm_amd_is_rng_defective(struct tpm_chip *chip) ...@@ -566,6 +567,12 @@ static bool tpm_amd_is_rng_defective(struct tpm_chip *chip)
return true; return true;
} }
#else
static inline bool tpm_amd_is_rng_defective(struct tpm_chip *chip)
{
return false;
}
#endif /* CONFIG_X86 */
static int tpm_hwrng_read(struct hwrng *rng, void *data, size_t max, bool wait) static int tpm_hwrng_read(struct hwrng *rng, void *data, size_t max, bool wait)
{ {
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment