diff options
author | Eric Auger | 2020-03-05 17:51:44 +0100 |
---|---|---|
committer | Stefan Berger | 2020-03-05 18:18:08 +0100 |
commit | 229de57ac50a1677879f38b98243b2d6d5e2c11b (patch) | |
tree | 2cc2129938bbfdd50079afd4727d0a23621946bb /hw/tpm/Kconfig | |
parent | tpm: Separate TPM_TIS and TPM_TIS_ISA configs (diff) | |
download | qemu-229de57ac50a1677879f38b98243b2d6d5e2c11b.tar.gz qemu-229de57ac50a1677879f38b98243b2d6d5e2c11b.tar.xz qemu-229de57ac50a1677879f38b98243b2d6d5e2c11b.zip |
tpm: Add the SysBus TPM TIS device
Introduce the tpm-tis-device which is a sysbus device
and is bound to be used on ARM.
Signed-off-by: Eric Auger <eric.auger@redhat.com>
Reviewed-by: Stefan Berger <stefanb@linux.ibm.com>
Tested-by: Ard Biesheuvel <ard.biesheuvel@linaro.org>
Acked-by: Ard Biesheuvel <ard.biesheuvel@linaro.org>
Message-id: 20200305165149.618-6-eric.auger@redhat.com
Signed-off-by: Stefan Berger <stefanb@linux.ibm.com>
Diffstat (limited to 'hw/tpm/Kconfig')
-rw-r--r-- | hw/tpm/Kconfig | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/hw/tpm/Kconfig b/hw/tpm/Kconfig index 686f8206bb..4794e7fe28 100644 --- a/hw/tpm/Kconfig +++ b/hw/tpm/Kconfig @@ -7,6 +7,11 @@ config TPM_TIS_ISA depends on TPM && ISA_BUS select TPM_TIS +config TPM_TIS_SYSBUS + bool + depends on TPM + select TPM_TIS + config TPM_TIS bool depends on TPM |