From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from mail-pj1-f51.google.com (mail-pj1-f51.google.com [209.85.216.51]) by mx.groups.io with SMTP id smtpd.web08.3125.1615406877675624638 for ; Wed, 10 Mar 2021 12:07:57 -0800 Authentication-Results: mx.groups.io; dkim=pass header.i=@gmail.com header.s=20161025 header.b=btKCzSoX; spf=pass (domain: gmail.com, ip: 209.85.216.51, mailfrom: kuqin12@gmail.com) Received: by mail-pj1-f51.google.com with SMTP id kr3-20020a17090b4903b02900c096fc01deso8119625pjb.4 for ; Wed, 10 Mar 2021 12:07:57 -0800 (PST) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=20161025; h=from:to:cc:subject:date:message-id:mime-version :content-transfer-encoding; bh=Hpzm3HJn4/XUn4THxuTQuV2ssNpfNPxK92spktwH5xU=; b=btKCzSoX+2q3nm1Hym5Rj97nDHPEWyN6d9B2vBR8C9yxns9xOatN7wTy+sAjKkoEZl 9R2cB+BuexV+U2MSdllIlmkP2rKLWI/dfR/YEk5+I8GiFZjU91AUzUAF3MTmAEiNEWaN Zy5tF78wLGnWb7bwFist4aOdJaL8jw2s++OMBpZjL5Gl6rnAvECco/DSLldF2wJLHSG/ yPV/4LkCWDOQG7Vd1vtXNdeHxb8q9X0FUjfBna5nRd+xIC0PSChTl9yxG/KLZJIxExlL AQxLybk/Cp3ZnHZANPLJVH7ybqPM5R8VDHUmFPiNMur6jRAtcZUdkgBg4A5oQbuTRoLz t15w== X-Google-DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=1e100.net; s=20161025; h=x-gm-message-state:from:to:cc:subject:date:message-id:mime-version :content-transfer-encoding; bh=Hpzm3HJn4/XUn4THxuTQuV2ssNpfNPxK92spktwH5xU=; b=d4mJe/dgl+9VVL/yD1ETCWkZgTgpG06i8C5f1IPeRWvKQ2LJ3kBm8pD/AvQgq2jqJM cfAPyCYLRnNB1EObPyohCU3h+2bwYc/NJdJn4k2VNQixngBB+o2xHkjXCkdHVwdPGZEm Q3QiRtzIygE3iVcgeHaMrpro62g0z2HendjneWWPF88nbF7319cdDxM1cnEcbpTvIUa3 kQxg1OGdzVBWRGf8DzACAr8JUSwWgUUNYh6HigQ7wO4b4IPFzhkSKcKNom2yHo4Ib9iU GhX+0q/WLv1rA9sLU8mexxSU5+Rw220NY0Mm38c+QTksG+op70MP7ONRGie+ixWrFNBX 6Dbg== X-Gm-Message-State: AOAM532IcfHK9CXe7zKMt4bn6jh0r52CZQiJNUlRxCCL0wSZDwa7tGTq MD89NlpgN5oA2HeciRfM7JX9Cm+rYiz+WSbj X-Google-Smtp-Source: ABdhPJxlPAWpFwzl56U9vaXZtonNY7nqwkpxngYom/FqWOIOpC/Z96USGJgFvzob/2S6z7Q88ReQBQ== X-Received: by 2002:a17:902:6547:b029:e4:547b:77cb with SMTP id d7-20020a1709026547b02900e4547b77cbmr4459408pln.75.1615406877113; Wed, 10 Mar 2021 12:07:57 -0800 (PST) Return-Path: Received: from localhost.localdomain ([50.35.88.161]) by smtp.gmail.com with ESMTPSA id l15sm218894pjq.9.2021.03.10.12.07.56 (version=TLS1_3 cipher=TLS_AES_256_GCM_SHA384 bits=256/256); Wed, 10 Mar 2021 12:07:56 -0800 (PST) From: Kun Qin To: devel@edk2.groups.io Cc: Chasel Chiu , Nate DeSimone , Liming Gao , Eric Dong , Michael D Kinney , Kelly Steele , Zailiang Sun , Yi Qian , Ard Biesheuvel , Leif Lindholm Subject: [edk2-staging][PATCH V1 0/5] Resolve dependency from MmUnblockMemoryLib Date: Wed, 10 Mar 2021 12:07:33 -0800 Message-Id: <20210310200738.1220-1-kuqin12@gmail.com> X-Mailer: git-send-email 2.30.0.windows.1 MIME-Version: 1.0 Content-Transfer-Encoding: 8bit The merging of commit range c5740f360636..59a3ccb09e7a on edk2 master has separated Tcg2Smm driver into 2 functional componnents, Tcg2Acpi and Tcg2 MM driver. They also introduced dependency of MmUnblockMemoryLib on VariableSmmRuntimeDxe as well as the new Tcg2Acpi driver. This patch series is sent to resolve the dependency mentioned above. Patch v1 branch: https://github.com/kuqin12/edk2-platforms/tree/unblock_dependency_v1 Cc: Chasel Chiu Cc: Nate DeSimone Cc: Liming Gao Cc: Eric Dong Cc: Michael D Kinney Cc: Kelly Steele Cc: Zailiang Sun Cc: Yi Qian Cc: Ard Biesheuvel Cc: Leif Lindholm Kun Qin (5): MinPlatformPkg: CoreCommonLib: Added new library for VariableSmmRuntimeDxe MinPlatformPkg: Core Include Files: Added Tcg2Acpi driver after separation QuarkPlatformPkg: Quark DSC File: Added new library for VariableSmmRuntimeDxe Vlv2TbltDevicePkg: PlatformPkg DSC: Added library for VariableSmmRuntimeDxe Socionext: DeveloperBox DSC File: Added library for VariableSmmRuntimeDxe Platform/Intel/MinPlatformPkg/Include/Dsc/CoreCommonLib.dsc | 1 + Platform/Intel/MinPlatformPkg/Include/Dsc/CoreDxeInclude.dsc | 1 + Platform/Intel/MinPlatformPkg/Include/Fdf/CoreSecurityLateInclude.fdf | 3 ++- Platform/Intel/QuarkPlatformPkg/Quark.dsc | 1 + Platform/Intel/Vlv2TbltDevicePkg/PlatformPkgIA32.dsc | 1 + Platform/Intel/Vlv2TbltDevicePkg/PlatformPkgX64.dsc | 1 + Platform/Socionext/DeveloperBox/DeveloperBox.dsc | 2 ++ 7 files changed, 9 insertions(+), 1 deletion(-) -- 2.30.0.windows.1