[GIT,PULL] x86/tdx for 6.2

Message ID 20221212191525.553266-1-dave.hansen@linux.intel.com
State New
Headers
Series [GIT,PULL] x86/tdx for 6.2 |

Pull-request

https://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git tags/x86_tdx_for_6.2

Message

Dave Hansen Dec. 12, 2022, 7:15 p.m. UTC
  Hi Linus,

Please pull some x86/tdx changes for v6.2.

This includes a single chunk of new functionality for TDX guests
which allows them to talk to the trusted TDX module software and
obtain an attestation report.  This report can then be used to
prove the trustworthiness of the guest to a third party and get
access to things like storage encryption keys.

--

The following changes since commit 094226ad94f471a9f19e8f8e7140a09c2625abaa:

  Linux 6.1-rc5 (2022-11-13 13:12:55 -0800)

are available in the Git repository at:

  https://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git tags/x86_tdx_for_6.2

for you to fetch changes up to 00e07cfbdf0b232f7553f0175f8f4e8d792f7e90:

  selftests/tdx: Test TDX attestation GetReport support (2022-11-17 11:04:28 -0800)

----------------------------------------------------------------
Add TDX guest attestation infrastructure and driver

----------------------------------------------------------------
Kuppuswamy Sathyanarayanan (3):
      x86/tdx: Add a wrapper to get TDREPORT0 from the TDX Module
      virt: Add TDX guest driver
      selftests/tdx: Test TDX attestation GetReport support

 Documentation/virt/coco/tdx-guest.rst        |  52 +++++++++
 Documentation/virt/index.rst                 |   1 +
 Documentation/x86/tdx.rst                    |  43 +++++++
 arch/x86/coco/tdx/tdx.c                      |  40 +++++++
 arch/x86/include/asm/tdx.h                   |   2 +
 drivers/virt/Kconfig                         |   2 +
 drivers/virt/Makefile                        |   1 +
 drivers/virt/coco/tdx-guest/Kconfig          |  10 ++
 drivers/virt/coco/tdx-guest/Makefile         |   2 +
 drivers/virt/coco/tdx-guest/tdx-guest.c      | 102 +++++++++++++++++
 include/uapi/linux/tdx-guest.h               |  42 +++++++
 tools/testing/selftests/Makefile             |   1 +
 tools/testing/selftests/tdx/Makefile         |   7 ++
 tools/testing/selftests/tdx/config           |   1 +
 tools/testing/selftests/tdx/tdx_guest_test.c | 163 +++++++++++++++++++++++++++
 15 files changed, 469 insertions(+)
 create mode 100644 Documentation/virt/coco/tdx-guest.rst
 create mode 100644 drivers/virt/coco/tdx-guest/Kconfig
 create mode 100644 drivers/virt/coco/tdx-guest/Makefile
 create mode 100644 drivers/virt/coco/tdx-guest/tdx-guest.c
 create mode 100644 include/uapi/linux/tdx-guest.h
 create mode 100644 tools/testing/selftests/tdx/Makefile
 create mode 100644 tools/testing/selftests/tdx/config
 create mode 100644 tools/testing/selftests/tdx/tdx_guest_test.c
  

Comments

pr-tracker-bot@kernel.org Dec. 12, 2022, 10:46 p.m. UTC | #1
The pull request you sent on Mon, 12 Dec 2022 11:15:25 -0800:

> https://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git tags/x86_tdx_for_6.2

has been merged into torvalds/linux.git:
https://git.kernel.org/torvalds/c/a89ef2aa552db985e0ee8cb458846298c007704c

Thank you!