From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from mga17.intel.com (mga17.intel.com [192.55.52.151]) by mx.groups.io with SMTP id smtpd.web09.578.1657215239737004569 for ; Thu, 07 Jul 2022 10:34:03 -0700 Authentication-Results: mx.groups.io; dkim=fail reason="unable to parse pub key" header.i=@intel.com header.s=intel header.b=FyqAkhVQ; spf=pass (domain: intel.com, ip: 192.55.52.151, mailfrom: ankit.sinha@intel.com) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=intel.com; i=@intel.com; q=dns/txt; s=Intel; t=1657215243; x=1688751243; h=from:to:cc:subject:date:message-id:in-reply-to: references:mime-version:content-transfer-encoding; bh=BwUrbbnyFflq9BaVvRSOUUkBtOKTqkq+c4URArqe6U4=; b=FyqAkhVQFP1X5ekTXe8/p/VPv36r1WdOXODQIw8mQfQpjs6i0SKE6WRh 0ZpEuTvlAHnoi5LWPPPRe4mDQ3jjl6hd96t6Dd18kD0A9t2Wi4uWCa/jN Ah9QZ9KOlh5Goi1DLJWJk0xSmgkI/LVC3+7eJFqAkK7Ek1Fcba4TPcmVg rkLkF0lJpx0lPuMBAJQ/b+3K4fiOSDiWUA0jcnwzFoyGGLyLHKAPeBU69 GihnyLLbDycpQwXHLR740DW4kayE2Mhcy8YoXxgmnrMRy4V8URPRDSjef NvpDZ2VoAEgiSU4tqqfL7HI80AbRbTIxCeoadDKpFq45zm9RqbtrKjIO2 A==; X-IronPort-AV: E=McAfee;i="6400,9594,10401"; a="264496675" X-IronPort-AV: E=Sophos;i="5.92,253,1650956400"; d="scan'208";a="264496675" Received: from orsmga001.jf.intel.com ([10.7.209.18]) by fmsmga107.fm.intel.com with ESMTP/TLS/ECDHE-RSA-AES256-GCM-SHA384; 07 Jul 2022 10:34:03 -0700 X-IronPort-AV: E=Sophos;i="5.92,253,1650956400"; d="scan'208";a="626396683" Received: from ankitsin-mobl4.amr.corp.intel.com ([10.251.18.224]) by orsmga001-auth.jf.intel.com with ESMTP/TLS/ECDHE-RSA-AES256-GCM-SHA384; 07 Jul 2022 10:34:02 -0700 From: "Sinha, Ankit" To: devel@edk2.groups.io Cc: Chasel Chiu , Nate DeSimone , Isaac Oram , Eric Dong Subject: [edk2-platforms PATCH V1 2/6] Platform/Intel: Removing ACPI FADT PCDs that are redefined Date: Thu, 7 Jul 2022 10:33:26 -0700 Message-Id: <20220707173330.2066-3-ankit.sinha@intel.com> X-Mailer: git-send-email 2.27.0.windows.1 In-Reply-To: <20220707173330.2066-1-ankit.sinha@intel.com> References: <20220707173330.2066-1-ankit.sinha@intel.com> MIME-Version: 1.0 Content-Transfer-Encoding: 8bit From: ankit13s Some ACPI PCDs are redefined in board package DEC file. Removing those instances. Cc: Chasel Chiu Cc: Nate DeSimone Cc: Isaac Oram Cc: Eric Dong Signed-off-by: Ankit Sinha --- Platform/Intel/CometlakeOpenBoardPkg/OpenBoardPkg.dec | 2 -- 1 file changed, 2 deletions(-) diff --git a/Platform/Intel/CometlakeOpenBoardPkg/OpenBoardPkg.dec b/Platform/Intel/CometlakeOpenBoardPkg/OpenBoardPkg.dec index 1f8322eaeb22..eca92392be14 100644 --- a/Platform/Intel/CometlakeOpenBoardPkg/OpenBoardPkg.dec +++ b/Platform/Intel/CometlakeOpenBoardPkg/OpenBoardPkg.dec @@ -89,8 +89,6 @@ gPlatformModuleTokenSpaceGuid.PcdApicIoAddress|0xFEC00000|UINT64|0x9000000D gPlatformModuleTokenSpaceGuid.PcdApicIoMmioSize|0x1000|UINT32|0x9000000E gPlatformModuleTokenSpaceGuid.PcdGttMmAddress|0xCF000000|UINT64|0x9000000F gPlatformModuleTokenSpaceGuid.PcdGmAdrAddress|0xD0000000|UINT64|0x90000010 -gPlatformModuleTokenSpaceGuid.PcdAcpiEnableSwSmi|0xF0|UINT8|0x90000012 -gPlatformModuleTokenSpaceGuid.PcdAcpiDisableSwSmi|0xF1|UINT8|0x90000013 gPlatformModuleTokenSpaceGuid.PcdPcieDockBridgeResourcePatchSmi|0x4D|UINT8|0x90000014 gPlatformModuleTokenSpaceGuid.PcdCmosFastBootDefaultValue|0x01|UINT8|0x90000016 gPlatformModuleTokenSpaceGuid.PcdCmosDebugPrintErrorLevelDefaultValue|0x80000046|UINT32|0x90000017 -- 2.27.0.windows.1