From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from mail05.groups.io (mail05.groups.io [45.79.224.7]) by spool.mail.gandi.net (Postfix) with ESMTPS id A4BDE74004C for ; Tue, 30 Apr 2024 10:16:37 +0000 (UTC) DKIM-Signature: a=rsa-sha256; bh=DT/5tlYijKjBXPHKh9C+JA+RkIATgdV1vqYvsJ7KbGo=; c=relaxed/simple; d=groups.io; h=MIME-Version:References:In-Reply-To:From:Date:Message-ID:Subject:To:Cc:Precedence:List-Subscribe:List-Help:Sender:List-Id:Mailing-List:Delivered-To:Resent-Date:Resent-From:Reply-To:List-Unsubscribe-Post:List-Unsubscribe:Content-Type; s=20240206; t=1714472195; v=1; b=GmdH+46Mn15quFmAmlLGzLGzgfm7nEPkYKoTHk8T3IoV9rAE4ziPwW2mHK23I39uvY3Agfos RhyrHl2tHaZNitHMwpBYPvjPAKBR339j8I/nMFKJVQn+ZgLg2PvPAolCiO7rzHv+5lM1cVVBLSS meb4gWXzZNEGNMvACSAE01KDe01Uj7Hwu/34wV2awMBQWXyflJYoc7jEfnK164QPXBt/fLsOHBP UQOw+LqjQkJNY+vgfq4Q3RQ5mO7spKrpZp+iJXPRgWvm25QI1oTMbEipmdEavV4LgNI9SUim0gi WTWSqL3cEM8YMZ3gDwO7kZ2DvnZE2MpkxGtA5gLKletkA== X-Received: by 127.0.0.2 with SMTP id VomrYY7687511xtRkBawm6YE; Tue, 30 Apr 2024 03:16:35 -0700 X-Received: from sin.source.kernel.org (sin.source.kernel.org [145.40.73.55]) by mx.groups.io with SMTP id smtpd.web11.11739.1714472194799963652 for ; Tue, 30 Apr 2024 03:16:35 -0700 X-Received: from smtp.kernel.org (transwarp.subspace.kernel.org [100.75.92.58]) by sin.source.kernel.org (Postfix) with ESMTP id 1B024CE0F72 for ; Tue, 30 Apr 2024 10:16:32 +0000 (UTC) X-Received: by smtp.kernel.org (Postfix) with ESMTPSA id 3CBB2C4AF14 for ; Tue, 30 Apr 2024 10:16:31 +0000 (UTC) X-Received: by mail-lj1-f175.google.com with SMTP id 38308e7fff4ca-2db13ca0363so87837381fa.3 for ; Tue, 30 Apr 2024 03:16:31 -0700 (PDT) X-Gm-Message-State: cTcjeHh36GqU2UDoRCqoxXBBx7686176AA= X-Google-Smtp-Source: AGHT+IH8sNzRpcPTQCF2SlTPM8zuO3g4YV8O1DrM/vdd1r4WkuqS5wNncvHCEe3JrXNyJDBdp8agWDhBHpDwr2rPd2A= X-Received: by 2002:a2e:a286:0:b0:2d4:5370:5e8a with SMTP id k6-20020a2ea286000000b002d453705e8amr10344962lja.22.1714472189622; Tue, 30 Apr 2024 03:16:29 -0700 (PDT) MIME-Version: 1.0 References: <20240430074720.649353-1-lichao@loongson.cn> In-Reply-To: <20240430074720.649353-1-lichao@loongson.cn> From: "Ard Biesheuvel" Date: Tue, 30 Apr 2024 12:16:18 +0200 X-Gmail-Original-Message-ID: Message-ID: Subject: Re: [edk2-devel] [PATCH v5 0/8] Adjust the QemuFwCfgLibMmio and add PEI stage To: Chao Li Cc: devel@edk2.groups.io, Ard Biesheuvel , Jiewen Yao , Gerd Hoffmann , Leif Lindholm , Sami Mujawar , Sunil V L , Andrei Warkentin 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: Tue, 30 Apr 2024 03:16:35 -0700 Resent-From: ardb@kernel.org Reply-To: devel@edk2.groups.io,ardb@kernel.org List-Unsubscribe-Post: List-Unsubscribe=One-Click List-Unsubscribe: Content-Type: text/plain; charset="UTF-8" X-GND-Status: LEGIT Authentication-Results: spool.mail.gandi.net; dkim=pass header.d=groups.io header.s=20240206 header.b=GmdH+46M; dmarc=fail reason="SPF not aligned (relaxed), DKIM not aligned (relaxed)" header.from=kernel.org (policy=none); spf=pass (spool.mail.gandi.net: domain of bounce@groups.io designates 45.79.224.7 as permitted sender) smtp.mailfrom=bounce@groups.io On Tue, 30 Apr 2024 at 09:47, Chao Li wrote: > > Patch1: Added three PCDs for QemuFwCfgLibMmio > Patch2: Sparate QemuFwCfgLibMmio.c into two files and default as DXE > stage library. > Patch3: Added QemuFwCfgMmiLib PEI version > Patch4: Rename QemuFwCfgLibMmio.inf to QemuFwCfgMmioDxeLib.inf and > enable it in AARCH64 and RISCV64. > > V1 -> V2: > 1. Use HOBs instead of PCD. > 2. The old patch2 is divided into two parts, one is code splitting, and > the other is functional changes. > 3. add two patches to keep the safe when change the platform DSC file. > > V2 -> V3: > 1. Merge three HOBs into a single HOB. > 2. Remove the dynamic global variables in PEI. > > V3 -> V4: > 1. Adjust the HOB content, this version saves all of structual contents > in HOB. > 2. Remove the Loongson copyright in separation patch, and add it in the > funciton change patch. > 3. Restored some variables as static in DXE version. > 4. Added the HOB GUID in OvmfPkg.dec. > > V4 -> V5 > 1. Adjust the PEI version some logic error, it will built the HOB after > the QEMU check passes. > 2. Adjust some code style. > 3. Remove the architecture comment in PEI INF. > 4. Reoder the PEI INF in alphabetical order. > > BZ: https://bugzilla.tianocore.org/show_bug.cgi?id=4755 > > PR: https://github.com/tianocore/edk2/pull/5568 > > Cc: Ard Biesheuvel > Cc: Jiewen Yao > Cc: Gerd Hoffmann > Cc: Leif Lindholm > Cc: Sami Mujawar > Cc: Sunil V L > Cc: Andrei Warkentin > > Chao Li (8): > OvmfPkg: Add a GUID for QemuFwCfgLib > OvmfPkg: Separate QemuFwCfgLibMmio.c into two files > OvmfPkg: Add the way of HOBs in QemuFwCfgLibMmio > OvmfPkg: Add the QemuFwCfgMmioLib PEI stage version > OvmfPkg: Copy the same new INF as QemuFwCfgLibMmio.inf > ArmVirtPkg: Enable QemuFwCfgMmioDxeLib.inf > OvmfPkg/RiscVVirt: Enable QemuFwCfgMmioDxeLib.inf > OvmfPkg: Remove QemuFwCfgLibMmio.inf > Thanks - I've queued these up now -=-=-=-=-=-=-=-=-=-=-=- Groups.io Links: You receive all messages sent to this group. View/Reply Online (#118435): https://edk2.groups.io/g/devel/message/118435 Mute This Topic: https://groups.io/mt/105816958/7686176 Group Owner: devel+owner@edk2.groups.io Unsubscribe: https://edk2.groups.io/g/devel/unsub [rebecca@openfw.io] -=-=-=-=-=-=-=-=-=-=-=-