From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from mail02.groups.io (mail02.groups.io [66.175.222.108]) by spool.mail.gandi.net (Postfix) with ESMTPS id 788077803D0 for ; Mon, 18 Mar 2024 23:17:08 +0000 (UTC) DKIM-Signature: a=rsa-sha256; bh=7Hv8RGpD8J2+YjkG5RSufiSuv5dRvrmur1K9keG3cfQ=; c=relaxed/simple; d=groups.io; h=From:To:Cc:Subject:Date:Message-ID:MIME-Version:Precedence:List-Subscribe:List-Help:Sender:List-Id:Mailing-List:Delivered-To:Resent-Date:Reply-To:List-Unsubscribe-Post:List-Unsubscribe:Content-Transfer-Encoding:Content-Type; s=20240206; t=1710803827; v=1; b=V4t4MTOYJLCNjxgQWc7yqgIHI4rp55fh/IS0FF7/uQn+rTwDNCUuVIvJYSqRGJK6bfJkJ4Mf oRnjPWmTuJBhSVtqCvELBfHLxDiXTdHrBnpxS6qWCDKv9PyCJYMvqwEBIWgKzVyUAN0oGQGq0/3 WJYAUjo1py27LBdzblSwU1S5bASkpC+MfDGzNnt4nPCuHP/XGUnp5RW3C0SaEWu9LqkXRqw1bGr UYjlF3gsK8BXX+3eShVDo5R5x/gGIrYXsZMJ8TPkW6X7ePBTyeCoaTFoj1gX7NphsEmUadQl40Q AWK2j7XFq4496xCNw44F6D70IIUqVicJyFztzhRbHFfVQ== X-Received: by 127.0.0.2 with SMTP id idp3YY7687511xEjgsxNtVTj; Mon, 18 Mar 2024 16:17:07 -0700 X-Received: from us-smtp-delivery-124.mimecast.com (us-smtp-delivery-124.mimecast.com [170.10.133.124]) by mx.groups.io with SMTP id smtpd.web10.9314.1710411894364358632 for ; Thu, 14 Mar 2024 03:24:54 -0700 X-Received: from mimecast-mx02.redhat.com (mimecast-mx02.redhat.com [66.187.233.88]) by relay.mimecast.com with ESMTP with STARTTLS (version=TLSv1.3, cipher=TLS_AES_256_GCM_SHA384) id us-mta-590--1-jWTz8PSGXlZdRJynLmA-1; Thu, 14 Mar 2024 06:24:51 -0400 X-MC-Unique: -1-jWTz8PSGXlZdRJynLmA-1 X-Received: from smtp.corp.redhat.com (int-mx08.intmail.prod.int.rdu2.redhat.com [10.11.54.8]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (2048 bits) server-digest SHA256) (No client certificate requested) by mimecast-mx02.redhat.com (Postfix) with ESMTPS id 657FD85A58B; Thu, 14 Mar 2024 10:24:51 +0000 (UTC) X-Received: from srv1.redhat.com (unknown [10.45.225.62]) by smtp.corp.redhat.com (Postfix) with ESMTPS id 6C98BC041F0; Thu, 14 Mar 2024 10:24:49 +0000 (UTC) From: Konstantin Kostiuk To: devel@edk2.groups.io Cc: Yan Vugenfirer , Ard Biesheuvel , Jiewen Yao , Gerd Hoffmann Subject: [edk2-devel] [PATCH 0/2] OvmfPkg: Implement minimal HSTI driver Date: Thu, 14 Mar 2024 12:24:45 +0200 Message-ID: <20240314102447.24313-1-kkostiuk@redhat.com> MIME-Version: 1.0 X-Scanned-By: MIMEDefang 3.4.1 on 10.11.54.8 X-Mimecast-Spam-Score: 0 X-Mimecast-Originator: redhat.com Precedence: Bulk List-Subscribe: List-Help: Sender: devel@edk2.groups.io List-Id: Mailing-List: list devel@edk2.groups.io; contact devel+owner@edk2.groups.io Resent-Date: Mon, 18 Mar 2024 16:17:06 -0700 Reply-To: devel@edk2.groups.io,kkostiuk@redhat.com List-Unsubscribe-Post: List-Unsubscribe=One-Click List-Unsubscribe: X-Gm-Message-State: HZR9NmsRmTGttvjXTFKPm1hfx7686176AA= Content-Transfer-Encoding: 8bit Content-Type: text/plain; charset="US-ASCII"; x-default=true X-GND-Status: LEGIT Authentication-Results: spool.mail.gandi.net; dkim=pass header.d=groups.io header.s=20240206 header.b=V4t4MTOY; dmarc=fail reason="SPF not aligned (relaxed), DKIM not aligned (relaxed)" header.from=redhat.com (policy=none); spf=pass (spool.mail.gandi.net: domain of bounce@groups.io designates 66.175.222.108 as permitted sender) smtp.mailfrom=bounce@groups.io Resolve: https://issues.redhat.com/browse/RHEL-28751 HSTI (Hardware Security Test Interface) table is a requiremnt for ont test [1] from Microsoft Server Virtualization Validation Program. HSTI is a UEFI driver that provides a way to query the platform for the presence of security features. Current implementation does not have any security checks. [1] https://learn.microsoft.com/en-us/windows-hardware/test/hlk/testref/13292c6c-a807-4916-80ac-fea6de9af552 Konstantin Kostiuk (2): OvmfPkg: Add VirtHstiDxe driver OvmfPkg: Add VirtHstiDxe to OVMF firmware build OvmfPkg/OvmfPkgIa32.dsc | 2 + OvmfPkg/OvmfPkgIa32.fdf | 1 + OvmfPkg/OvmfPkgIa32X64.dsc | 2 + OvmfPkg/OvmfPkgIa32X64.fdf | 1 + OvmfPkg/OvmfPkgX64.dsc | 2 + OvmfPkg/OvmfPkgX64.fdf | 1 + OvmfPkg/VirtHstiDxe/VirtHstiDxe.c | 75 +++++++++++++++++++++++++++++ OvmfPkg/VirtHstiDxe/VirtHstiDxe.inf | 64 ++++++++++++++++++++++++ 8 files changed, 148 insertions(+) create mode 100644 OvmfPkg/VirtHstiDxe/VirtHstiDxe.c create mode 100644 OvmfPkg/VirtHstiDxe/VirtHstiDxe.inf -- 2.44.0 -=-=-=-=-=-=-=-=-=-=-=- Groups.io Links: You receive all messages sent to this group. View/Reply Online (#116857): https://edk2.groups.io/g/devel/message/116857 Mute This Topic: https://groups.io/mt/105014742/7686176 Group Owner: devel+owner@edk2.groups.io Unsubscribe: https://edk2.groups.io/g/devel/unsub [rebecca@openfw.io] -=-=-=-=-=-=-=-=-=-=-=-