From: Stefan Berger <stefanb@linux.vnet.ibm.com>
To: qemu-devel@nongnu.org
Cc: Peter Maydell <peter.maydell@linaro.org>,
marcandre.lureau@gmail.com,
Stefan Berger <stefanb@linux.vnet.ibm.com>
Subject: [Qemu-devel] [PULL v1 00/21] Merge tpm 2017/10/19
Date: Thu, 19 Oct 2017 14:02:34 -0400 [thread overview]
Message-ID: <1508436175-1596-1-git-send-email-stefanb@linux.vnet.ibm.com> (raw)
The following changes since commit f2a48d696c12aaac12993364371daae9f6233c37:
Merge remote-tracking branch 'remotes/riku/tags/pull-linux-user-20171018' into staging (2017-10-19 14:39:30 +0100)
are available in the git repository at:
git://github.com/stefanberger/qemu-tpm.git tags/pull-tpm-2017-10-19-1
for you to fetch changes up to 05a699985c001927a50f8f276251f2af1e0c5b58:
tpm: move recv_data_callback to TPM interface (2017-10-19 11:42:33 -0400)
----------------------------------------------------------------
Merge tpm 2017/10/19 v1
----------------------------------------------------------------
Marc-André Lureau (21):
tpm-tis: remove unused hw_access argument
tpm-tis: remove RAISE_STS_IRQ
tpm: make tpm_get_backend_driver() static
tpm: lookup tpm backend class in tpm_driver_find_by_type()
tpm: replace tpm_get_backend_driver() to drop be_drivers
tpm: remove tpm_register_driver()
tpm: move TPMSizedBuffer to tpm_tis.h
tpm: remove TPMDriverOps
tpm: remove init() class method
tpm: remove configure_tpm() hop
tpm: remove unused TPMBackendCmd
tpm: remove needless cast
tpm: remove locty argument from receive_cb
tpm: add TPMBackendCmd to hold the request state
tpm-emulator: fix error handling
tpm: remove locty_data from TPMState
tpm-tis: move TPMState to TIS header
tpm-tis: remove tpm_tis.h header
tpm-tis: fold TPMTISEmuState in TPMState
tpm: add a QOM TPM interface
tpm: move recv_data_callback to TPM interface
backends/tpm.c | 54 ++++-----
hw/tpm/tpm_emulator.c | 84 ++++++--------
hw/tpm/tpm_int.h | 36 +++---
hw/tpm/tpm_passthrough.c | 71 ++++--------
hw/tpm/tpm_tis.c | 459 ++++++++++++++++++++++++++++++++++++++++------------------------------------
hw/tpm/tpm_tis.h | 70 ------------
hw/tpm/tpm_util.c | 1 +
include/sysemu/tpm_backend.h | 45 +++-----
scripts/checkpatch.pl | 1 -
tpm.c | 49 ++++-----
10 files changed, 383 insertions(+), 487 deletions(-)
delete mode 100644 hw/tpm/tpm_tis.h
--
2.5.5
next reply other threads:[~2017-10-19 18:03 UTC|newest]
Thread overview: 23+ messages / expand[flat|nested] mbox.gz Atom feed top
2017-10-19 18:02 Stefan Berger [this message]
2017-10-19 18:02 ` [Qemu-devel] [PULL v1 01/21] tpm-tis: remove unused hw_access argument Stefan Berger
2017-10-19 18:02 ` [Qemu-devel] [PULL v1 02/21] tpm-tis: remove RAISE_STS_IRQ Stefan Berger
2017-10-19 18:02 ` [Qemu-devel] [PULL v1 03/21] tpm: make tpm_get_backend_driver() static Stefan Berger
2017-10-19 18:02 ` [Qemu-devel] [PULL v1 04/21] tpm: lookup tpm backend class in tpm_driver_find_by_type() Stefan Berger
2017-10-19 18:02 ` [Qemu-devel] [PULL v1 05/21] tpm: replace tpm_get_backend_driver() to drop be_drivers Stefan Berger
2017-10-19 18:02 ` [Qemu-devel] [PULL v1 06/21] tpm: remove tpm_register_driver() Stefan Berger
2017-10-19 18:02 ` [Qemu-devel] [PULL v1 07/21] tpm: move TPMSizedBuffer to tpm_tis.h Stefan Berger
2017-10-19 18:02 ` [Qemu-devel] [PULL v1 08/21] tpm: remove TPMDriverOps Stefan Berger
2017-10-19 18:02 ` [Qemu-devel] [PULL v1 09/21] tpm: remove init() class method Stefan Berger
2017-10-19 18:02 ` [Qemu-devel] [PULL v1 10/21] tpm: remove configure_tpm() hop Stefan Berger
2017-10-19 18:02 ` [Qemu-devel] [PULL v1 11/21] tpm: remove unused TPMBackendCmd Stefan Berger
2017-10-19 18:02 ` [Qemu-devel] [PULL v1 12/21] tpm: remove needless cast Stefan Berger
2017-10-19 18:02 ` [Qemu-devel] [PULL v1 13/21] tpm: remove locty argument from receive_cb Stefan Berger
2017-10-19 18:02 ` [Qemu-devel] [PULL v1 14/21] tpm: add TPMBackendCmd to hold the request state Stefan Berger
2017-10-19 18:02 ` [Qemu-devel] [PULL v1 15/21] tpm-emulator: fix error handling Stefan Berger
2017-10-19 18:02 ` [Qemu-devel] [PULL v1 16/21] tpm: remove locty_data from TPMState Stefan Berger
2017-10-19 18:02 ` [Qemu-devel] [PULL v1 17/21] tpm-tis: move TPMState to TIS header Stefan Berger
2017-10-19 18:02 ` [Qemu-devel] [PULL v1 18/21] tpm-tis: remove tpm_tis.h header Stefan Berger
2017-10-19 18:02 ` [Qemu-devel] [PULL v1 19/21] tpm-tis: fold TPMTISEmuState in TPMState Stefan Berger
2017-10-19 18:02 ` [Qemu-devel] [PULL v1 20/21] tpm: add a QOM TPM interface Stefan Berger
2017-10-19 18:02 ` [Qemu-devel] [PULL v1 21/21] tpm: move recv_data_callback to " Stefan Berger
2017-10-20 11:33 ` [Qemu-devel] [PULL v1 00/21] Merge tpm 2017/10/19 Peter Maydell
Reply instructions:
You may reply publicly to this message via plain-text email
using any one of the following methods:
* Save the following mbox file, import it into your mail client,
and reply-to-all from there: mbox
Avoid top-posting and favor interleaved quoting:
https://en.wikipedia.org/wiki/Posting_style#Interleaved_style
* Reply using the --to, --cc, and --in-reply-to
switches of git-send-email(1):
git send-email \
--in-reply-to=1508436175-1596-1-git-send-email-stefanb@linux.vnet.ibm.com \
--to=stefanb@linux.vnet.ibm.com \
--cc=marcandre.lureau@gmail.com \
--cc=peter.maydell@linaro.org \
--cc=qemu-devel@nongnu.org \
/path/to/YOUR_REPLY
https://kernel.org/pub/software/scm/git/docs/git-send-email.html
* If your mail client supports setting the In-Reply-To header
via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line
before the message body.
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).