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 C10F274004D for ; Fri, 3 Nov 2023 07:07:38 +0000 (UTC) DKIM-Signature: a=rsa-sha256; bh=s6ZTrxVDe1TFF8GJexSHPJQ312jWiLZS5+xowf5dqFI=; c=relaxed/simple; d=groups.io; h=Message-ID:Date:MIME-Version:Subject:To:Cc:References:From:In-Reply-To:Precedence:List-Subscribe:List-Help:Sender:List-Id:Mailing-List:Delivered-To:Reply-To:List-Unsubscribe-Post:List-Unsubscribe:Content-Language:Content-Type:Content-Transfer-Encoding; s=20140610; t=1698995257; v=1; b=lTwrOFJ2gc1oRLLLWtdHDTKcosn54KiwMkW362NVfpGEHlQtOBhW/8NMGUAhT8+0hVJZfqQ3 cnKPs5Pc4gd1qflSsHqbxBKqCntKAEwKuRR5ERkgzT2jGZI6QpWpcK7IBEyhgGgXZ473ZE5k6We cJMlpiyUnp7QxBn+XhwwMdUs= X-Received: by 127.0.0.2 with SMTP id 9nPKYY7687511xeXVWGCiBjj; Fri, 03 Nov 2023 00:07:37 -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.36379.1698995256664037785 for ; Fri, 03 Nov 2023 00:07:36 -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-80-aMVqwgAENEmXsMxJ4CvJBA-1; Fri, 03 Nov 2023 03:07:32 -0400 X-MC-Unique: aMVqwgAENEmXsMxJ4CvJBA-1 X-Received: from smtp.corp.redhat.com (int-mx05.intmail.prod.int.rdu2.redhat.com [10.11.54.5]) (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 B632B185A781; Fri, 3 Nov 2023 07:07:31 +0000 (UTC) X-Received: from [10.39.192.20] (unknown [10.39.192.20]) by smtp.corp.redhat.com (Postfix) with ESMTPS id 58C08502E; Fri, 3 Nov 2023 07:07:27 +0000 (UTC) Message-ID: <6e509596-e480-3256-ba54-964c1b47f0f5@redhat.com> Date: Fri, 3 Nov 2023 08:07:26 +0100 MIME-Version: 1.0 Subject: Re: [edk2-devel] [PATCH v1 00/29] Enable LoongArch virtual machine in edk2 To: devel@edk2.groups.io, lichao@loongson.cn Cc: Michael D Kinney , Liming Gao , Zhiguang Liu , Eric Dong , Ray Ni , Rahul Kumar , Gerd Hoffmann , Leif Lindholm , Ard Biesheuvel , Abner Chang , Daniel Schaefer , Sami Mujawar , Jiewen Yao , Jordan Justen References: <20231103010302.4052990-1-lichao@loongson.cn> From: "Laszlo Ersek" In-Reply-To: <20231103010302.4052990-1-lichao@loongson.cn> X-Scanned-By: MIMEDefang 3.4.1 on 10.11.54.5 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 Reply-To: devel@edk2.groups.io,lersek@redhat.com List-Unsubscribe-Post: List-Unsubscribe=One-Click List-Unsubscribe: X-Gm-Message-State: GBjASja3o6i5aacMw4mB2WBOx7686176AA= Content-Language: en-US Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: quoted-printable X-GND-Status: LEGIT Authentication-Results: spool.mail.gandi.net; dkim=pass header.d=groups.io header.s=20140610 header.b=lTwrOFJ2; 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 On 11/3/23 02:03, Chao Li wrote: > This patch set will enable LoongArch virtual machine in edk2, the new > LoongArch virtual machine is located in OvmfPkg/LoongArchVirt/, it is a > generic platform that dose not require any actual hardware. >=20 > Patch1-Patch14: Submit the common library and driver for LoongArch > virtual machine and real hardware. Such as base help functions, > exception handel, MMU library, multiprocessor library etc. >=20 > Patch15-Patch16: Add PrePiCpuIoSize for LoongArch64. and move ArmVirtPkg > two PCDs into OvmfPkg for easier use by other architectures. >=20 > Patch17-Patch29: LoongArch virtual machine private code, include SEC and > PEI phase code, some library and drivers. >=20 > Modfied modues: MdePkg, UefiCpuPkg, EmbeddedPkg, ArmVirtPkg, OvmfPkg. >=20 > BZ: https://bugzilla.tianocore.org/show_bug.cgi?id=3D4584 >=20 [...] > 127 files changed, 18478 insertions(+), 84 deletions(-) 18478 lines seem overkill... Probably too much code added / duplicated under UefiCpuPkg, as Ray says. Also: - Please make sure you post the patches with the "sendemail.thread" git config item set to "true". "BaseTools/Scripts/SetupGit.py" takes care of that. Otherwise, just as it has now happened, your patches are not threaded under the cover letter; they fly apart as independent messages. - Whenever you post a (new or initial) version of a patch set, please link the URL of the cover letter (from the mailing list archive) into the Bugzilla ticket, in a new comment. Thanks Laszlo -=3D-=3D-=3D-=3D-=3D-=3D-=3D-=3D-=3D-=3D-=3D- Groups.io Links: You receive all messages sent to this group. View/Reply Online (#110610): https://edk2.groups.io/g/devel/message/110610 Mute This Topic: https://groups.io/mt/102355705/7686176 Group Owner: devel+owner@edk2.groups.io Unsubscribe: https://edk2.groups.io/g/devel/leave/12367111/7686176/19134562= 12/xyzzy [rebecca@openfw.io] -=3D-=3D-=3D-=3D-=3D-=3D-=3D-=3D-=3D-=3D-=3D-