qemu-devel.nongnu.org archive mirror
 help / color / mirror / Atom feed
* [PULL v1 00/10] Merge TPM 2020/03/04
@ 2020-03-04 13:12 Stefan Berger
  2020-03-04 13:12 ` [PULL v1 01/10] tpm: rename TPM_TIS into TPM_TIS_ISA Stefan Berger
                   ` (10 more replies)
  0 siblings, 11 replies; 15+ messages in thread
From: Stefan Berger @ 2020-03-04 13:12 UTC (permalink / raw)
  To: qemu-devel; +Cc: peter.maydell, Stefan Berger, eric.auger

This series of patches adds support for TPM on ARM.

Regards,
    Stefan

The following changes since commit 2ac031d171ccd18c973014d9978b4a63f0ad5fb0:

  Merge remote-tracking branch 'remotes/palmer/tags/riscv-for-master-5.0-sf3' into staging (2020-03-03 11:06:39 +0000)

are available in the Git repository at:

  git://github.com/stefanberger/qemu-tpm.git tags/pull-tpm-2020-03-04-1

for you to fetch changes up to cf5b8ff14b38eb93363364635df3a0e6aa8c74e5:

  test: tpm-tis: Add Sysbus TPM-TIS device test (2020-03-03 07:29:09 -0500)


Eric Auger (10):
  tpm: rename TPM_TIS into TPM_TIS_ISA
  tpm: Use TPMState as a common struct
  tpm: Separate tpm_tis common functions from isa code
  tpm: Separate TPM_TIS and TPM_TIS_ISA configs
  tpm: Add the SysBus TPM TIS device
  hw/arm/virt: vTPM support
  docs/specs/tpm: Document TPM_TIS sysbus device for ARM
  test: tpm: pass optional machine options to swtpm test functions
  test: tpm-tis: Get prepared to share tests between ISA and sysbus
    devices
  test: tpm-tis: Add Sysbus TPM-TIS device test

 default-configs/i386-softmmu.mak        |   2 +-
 docs/specs/tpm.rst                      |  25 +-
 hw/arm/Kconfig                          |   1 +
 hw/arm/sysbus-fdt.c                     |  33 ++
 hw/arm/virt.c                           |   7 +
 hw/i386/Kconfig                         |   2 +-
 hw/i386/acpi-build.c                    |   6 +-
 hw/tpm/Kconfig                          |  12 +-
 hw/tpm/Makefile.objs                    |   4 +-
 hw/tpm/tpm_tis.h                        |  91 +++++
 hw/tpm/{tpm_tis.c => tpm_tis_common.c}  | 181 +---------
 hw/tpm/tpm_tis_isa.c                    | 170 +++++++++
 hw/tpm/tpm_tis_sysbus.c                 | 159 +++++++++
 include/sysemu/tpm.h                    |   7 +-
 tests/qtest/Makefile.include            |  11 +-
 tests/qtest/tpm-crb-swtpm-test.c        |   9 +-
 tests/qtest/tpm-crb-test.c              |   3 +
 tests/qtest/tpm-tests.c                 |  10 +-
 tests/qtest/tpm-tests.h                 |   5 +-
 tests/qtest/tpm-tis-device-swtpm-test.c |  76 ++++
 tests/qtest/tpm-tis-device-test.c       |  87 +++++
 tests/qtest/tpm-tis-swtpm-test.c        |   8 +-
 tests/qtest/tpm-tis-test.c              | 414 +---------------------
 tests/qtest/tpm-tis-util.c              | 451 ++++++++++++++++++++++++
 tests/qtest/tpm-tis-util.h              |  23 ++
 tests/qtest/tpm-util.c                  |  11 +-
 tests/qtest/tpm-util.h                  |   8 +-
 27 files changed, 1207 insertions(+), 609 deletions(-)
 create mode 100644 hw/tpm/tpm_tis.h
 rename hw/tpm/{tpm_tis.c => tpm_tis_common.c} (85%)
 create mode 100644 hw/tpm/tpm_tis_isa.c
 create mode 100644 hw/tpm/tpm_tis_sysbus.c
 create mode 100644 tests/qtest/tpm-tis-device-swtpm-test.c
 create mode 100644 tests/qtest/tpm-tis-device-test.c
 create mode 100644 tests/qtest/tpm-tis-util.c
 create mode 100644 tests/qtest/tpm-tis-util.h

-- 
2.24.1



^ permalink raw reply	[flat|nested] 15+ messages in thread

end of thread, other threads:[~2020-03-05 15:37 UTC | newest]

Thread overview: 15+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2020-03-04 13:12 [PULL v1 00/10] Merge TPM 2020/03/04 Stefan Berger
2020-03-04 13:12 ` [PULL v1 01/10] tpm: rename TPM_TIS into TPM_TIS_ISA Stefan Berger
2020-03-04 13:12 ` [PULL v1 02/10] tpm: Use TPMState as a common struct Stefan Berger
2020-03-04 13:12 ` [PULL v1 03/10] tpm: Separate tpm_tis common functions from isa code Stefan Berger
2020-03-04 13:12 ` [PULL v1 04/10] tpm: Separate TPM_TIS and TPM_TIS_ISA configs Stefan Berger
2020-03-04 13:12 ` [PULL v1 05/10] tpm: Add the SysBus TPM TIS device Stefan Berger
2020-03-04 13:12 ` [PULL v1 06/10] hw/arm/virt: vTPM support Stefan Berger
2020-03-04 13:12 ` [PULL v1 07/10] docs/specs/tpm: Document TPM_TIS sysbus device for ARM Stefan Berger
2020-03-04 13:12 ` [PULL v1 08/10] test: tpm: pass optional machine options to swtpm test functions Stefan Berger
2020-03-04 13:12 ` [PULL v1 09/10] test: tpm-tis: Get prepared to share tests between ISA and sysbus devices Stefan Berger
2020-03-04 13:12 ` [PULL v1 10/10] test: tpm-tis: Add Sysbus TPM-TIS device test Stefan Berger
2020-03-05 14:50 ` [PULL v1 00/10] Merge TPM 2020/03/04 Peter Maydell
2020-03-05 15:11   ` Auger Eric
2020-03-05 15:17     ` Peter Maydell
2020-03-05 15:36       ` Auger Eric

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).