From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from mga11.intel.com (mga11.intel.com [192.55.52.93]) by mx.groups.io with SMTP id smtpd.web08.5052.1639128935434600875 for ; Fri, 10 Dec 2021 01:35:35 -0800 Authentication-Results: mx.groups.io; dkim=pass header.i=@intel.com header.s=intel header.b=CCLewXOB; spf=pass (domain: intel.com, ip: 192.55.52.93, mailfrom: sebastien.boeuf@intel.com) DKIM-Signature: v=1; a=rsa-sha256; c=simple/simple; d=intel.com; i=@intel.com; q=dns/txt; s=Intel; t=1639128935; x=1670664935; h=from:to:cc:subject:date:message-id:mime-version: content-transfer-encoding; bh=oLNxkUze++7RYcogFmLslMZJZ/cMP0Q6yl5NOdnKHYU=; b=CCLewXOBcPBf+7Gj7sC06CitM/5D9YOa4VVuQo78lFyl2CBue4ChfFa7 eW1y5b8BFDgmh4691avYcmJVnzF3HwVX968C03N6J2W639H128eayDahw LaM3b0iUpTqTH9UvW0/RYEFLzZkY/i9OQwM+ADxF3/gCUtED5eAvEQa27 DDFc2kTGdaUeFVczpmvdNYn6FXpZuB7QwdODNfncZUgfcrpDVh/e1tLrI Qe8ahER3E356JX9D0hwbc30p3eD7oqs2TOnEbqoEuELsTJUg4UIEL84nG lgxehcbCKZbdTTsqhORoI7kZVC2DB3bj0tDXdDJlbvUSBE/On2ts3Mm9a Q==; X-IronPort-AV: E=McAfee;i="6200,9189,10193"; a="235828732" X-IronPort-AV: E=Sophos;i="5.88,195,1635231600"; d="scan'208";a="235828732" Received: from orsmga007.jf.intel.com ([10.7.209.58]) by fmsmga102.fm.intel.com with ESMTP/TLS/ECDHE-RSA-AES256-GCM-SHA384; 10 Dec 2021 01:35:33 -0800 X-IronPort-AV: E=Sophos;i="5.88,195,1635231600"; d="scan'208";a="503862729" Received: from gmarti2-mobl1.amr.corp.intel.com (HELO sboeuf-mobl.home) ([10.252.20.4]) by orsmga007-auth.jf.intel.com with ESMTP/TLS/ECDHE-RSA-AES256-GCM-SHA384; 10 Dec 2021 01:35:28 -0800 From: sebastien.boeuf@intel.com To: devel@edk2.groups.io Cc: jiewen.yao@intel.com, jordan.l.justen@intel.com, kraxel@redhat.com, sebastien.boeuf@intel.com Subject: [PATCH v6 0/5] Add Cloud Hypervisor support for x86 Date: Fri, 10 Dec 2021 10:35:08 +0100 Message-Id: X-Mailer: git-send-email 2.30.2 MIME-Version: 1.0 Content-Type: text/plain; charset="us-ascii" Content-Transfer-Encoding: 7bit From: Sebastien Boeuf This series aims at adding the support for the Cloud Hypervisor platform to the OVMF firmware for x86 architecture. The goal is to allow the same binary to be used either by QEMU or Cloud Hypervisor, using the Cloud Hypervisor way as a fallback if the fw_cfg mechanism is not present. Sebastien Boeuf (5): OvmfPkg: Handle Cloud Hypervisor host bridge OvmfPkg: Create global entry point for SMBIOS parsing OvmfPkg: Retrieve SMBIOS from Cloud Hypervisor OvmfPkg: Generalize AcpiPlatformDxe OvmfPkg: Install ACPI tables for Cloud Hypervisor ArmVirtPkg/ArmVirtQemu.dsc | 2 +- ArmVirtPkg/ArmVirtQemuFvMain.fdf.inc | 2 +- ArmVirtPkg/ArmVirtQemuKernel.dsc | 2 +- ...QemuFwCfgAcpiPlatform.c => AcpiPlatform.c} | 15 ++- OvmfPkg/AcpiPlatformDxe/AcpiPlatform.h | 6 + ...cpiPlatformDxe.inf => AcpiPlatformDxe.inf} | 6 +- OvmfPkg/AcpiPlatformDxe/CloudHvAcpi.c | 117 ++++++++++++++++++ OvmfPkg/AmdSev/AmdSevX64.dsc | 2 +- OvmfPkg/AmdSev/AmdSevX64.fdf | 2 +- OvmfPkg/Include/IndustryStandard/CloudHv.h | 45 +++++++ OvmfPkg/Include/OvmfPlatforms.h | 1 + .../Library/AcpiTimerLib/BaseAcpiTimerLib.c | 3 + .../AcpiTimerLib/BaseRomAcpiTimerLib.c | 4 + .../Library/AcpiTimerLib/DxeAcpiTimerLib.c | 3 + .../PlatformBootManagerLib/BdsPlatform.c | 1 + .../ResetSystemLib/BaseResetShutdown.c | 3 + .../Library/ResetSystemLib/DxeResetShutdown.c | 12 +- OvmfPkg/Microvm/MicrovmX64.dsc | 2 +- OvmfPkg/Microvm/MicrovmX64.fdf | 2 +- OvmfPkg/OvmfPkgIa32.dsc | 2 +- OvmfPkg/OvmfPkgIa32.fdf | 2 +- OvmfPkg/OvmfPkgIa32X64.dsc | 2 +- OvmfPkg/OvmfPkgIa32X64.fdf | 2 +- OvmfPkg/OvmfPkgX64.dsc | 2 +- OvmfPkg/OvmfPkgX64.fdf | 2 +- OvmfPkg/PlatformPei/MemDetect.c | 9 +- OvmfPkg/PlatformPei/Platform.c | 6 + OvmfPkg/SmbiosPlatformDxe/CloudHv.c | 32 +++++ OvmfPkg/SmbiosPlatformDxe/EntryPoint.c | 52 ++++++++ OvmfPkg/SmbiosPlatformDxe/Qemu.c | 35 ------ OvmfPkg/SmbiosPlatformDxe/SmbiosPlatformDxe.h | 22 ++++ .../SmbiosPlatformDxe/SmbiosPlatformDxe.inf | 3 + 32 files changed, 345 insertions(+), 56 deletions(-) rename OvmfPkg/AcpiPlatformDxe/{QemuFwCfgAcpiPlatform.c => AcpiPlatform.c} (52%) rename OvmfPkg/AcpiPlatformDxe/{QemuFwCfgAcpiPlatformDxe.inf => AcpiPlatformDxe.inf} (87%) create mode 100644 OvmfPkg/AcpiPlatformDxe/CloudHvAcpi.c create mode 100644 OvmfPkg/Include/IndustryStandard/CloudHv.h create mode 100644 OvmfPkg/SmbiosPlatformDxe/CloudHv.c create mode 100644 OvmfPkg/SmbiosPlatformDxe/EntryPoint.c -- 2.30.2 --------------------------------------------------------------------- Intel Corporation SAS (French simplified joint stock company) Registered headquarters: "Les Montalets"- 2, rue de Paris, 92196 Meudon Cedex, France Registration Number: 302 456 199 R.C.S. NANTERRE Capital: 4,572,000 Euros This e-mail and any attachments may contain confidential material for the sole use of the intended recipient(s). Any review or distribution by others is strictly prohibited. If you are not the intended recipient, please contact the sender and delete all copies.