From mboxrd@z Thu Jan 1 00:00:00 1970 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.web08.8613.1639383425139358382 for ; Mon, 13 Dec 2021 00:17:05 -0800 Authentication-Results: mx.groups.io; dkim=pass header.i=@redhat.com header.s=mimecast20190719 header.b=Zuz+UBcY; spf=pass (domain: redhat.com, ip: 170.10.133.124, mailfrom: kraxel@redhat.com) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=redhat.com; s=mimecast20190719; t=1639383424; h=from:from:reply-to:subject:subject:date:date:message-id:message-id: to:to:cc:cc:mime-version:mime-version:content-type:content-type: content-transfer-encoding:content-transfer-encoding; bh=C2c2acCLiQzPKaMxlAxKw/Cwk3XB31Thtn63Da4HWtE=; b=Zuz+UBcYHPVtgZt6ZU5SOSvEL9RC3o7tdmHXfqzeuyd+wD1IY7BCDi1e+MDj9ocM2Advne 1mSM1PPZvDpr7Rh9YznYHEAP+invzbiPYXqs1n5J+BdeXDdyKsRIx1NPGpfNmHCgyc02Lk IPdeQTeMB3Z8u8BErSeWujS68I/8NgU= Received: from mimecast-mx01.redhat.com (mimecast-mx01.redhat.com [209.132.183.4]) by relay.mimecast.com with ESMTP with STARTTLS (version=TLSv1.2, cipher=TLS_ECDHE_RSA_WITH_AES_256_GCM_SHA384) id us-mta-188-Jm8StHAPNZuKmkNgznJwpg-1; Mon, 13 Dec 2021 03:17:00 -0500 X-MC-Unique: Jm8StHAPNZuKmkNgznJwpg-1 Received: from smtp.corp.redhat.com (int-mx05.intmail.prod.int.phx2.redhat.com [10.5.11.15]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by mimecast-mx01.redhat.com (Postfix) with ESMTPS id CF12B801B0C; Mon, 13 Dec 2021 08:16:59 +0000 (UTC) Received: from sirius.home.kraxel.org (unknown [10.39.192.14]) by smtp.corp.redhat.com (Postfix) with ESMTPS id 92C3F5BE01; Mon, 13 Dec 2021 08:16:59 +0000 (UTC) Received: by sirius.home.kraxel.org (Postfix, from userid 1000) id 29D2E180009C; Mon, 13 Dec 2021 09:16:58 +0100 (CET) From: "Gerd Hoffmann" To: devel@edk2.groups.io Cc: Jordan Justen , Jiewen Yao , Pawel Polawski , =?UTF-8?q?Philippe=20Mathieu-Daud=C3=A9?= , Gerd Hoffmann , Ard Biesheuvel Subject: [PATCH v3 0/5] OvmfPkg/Microvm: second batch of microvm patches Date: Mon, 13 Dec 2021 09:16:53 +0100 Message-Id: <20211213081658.3535809-1-kraxel@redhat.com> MIME-Version: 1.0 X-Scanned-By: MIMEDefang 2.79 on 10.5.11.15 Authentication-Results: relay.mimecast.com; auth=pass smtp.auth=CUSA124A263 smtp.mailfrom=kraxel@redhat.com X-Mimecast-Spam-Score: 0 X-Mimecast-Originator: redhat.com Content-Type: text/plain; charset="utf-8" Content-Transfer-Encoding: 8bit Adds support for virtio-mmio devices to microvm. While being at it also add the README, the patch somehow disappeared from the first batch. v3: - uncrustify & rebase to latest master - pick up some review tags - minor README updates. v2: - qemu changes needed for this are merged and will be in the 6.2 release (dec 2021). - more verbose commit messages. Gerd Hoffmann (5): OvmfPkg/Microvm/fdt: add device tree support OvmfPkg/Microvm/fdt: load fdt from fw_cfg OvmfPkg/Microvm/fdt: add empty fdt OvmfPkg/Microvm/virtio: add virtio-mmio support OvmfPkg/Microvm: add README OvmfPkg/Microvm/MicrovmX64.dsc | 8 ++++ OvmfPkg/Microvm/MicrovmX64.fdf | 3 ++ OvmfPkg/PlatformPei/PlatformPei.inf | 1 + OvmfPkg/PlatformPei/Platform.c | 63 +++++++++++++++++++++++++++++ OvmfPkg/Microvm/README | 50 +++++++++++++++++++++++ 5 files changed, 125 insertions(+) create mode 100644 OvmfPkg/Microvm/README -- 2.33.1