From mboxrd@z Thu Jan 1 00:00:00 1970 Authentication-Results: mx.groups.io; dkim=missing; spf=pass (domain: intel.com, ip: 192.55.52.120, mailfrom: dandan.bi@intel.com) Received: from mga04.intel.com (mga04.intel.com [192.55.52.120]) by groups.io with SMTP; Sun, 16 Jun 2019 22:44:56 -0700 X-Amp-Result: SKIPPED(no attachment in message) X-Amp-File-Uploaded: False Received: from orsmga006.jf.intel.com ([10.7.209.51]) by fmsmga104.fm.intel.com with ESMTP/TLS/DHE-RSA-AES256-GCM-SHA384; 16 Jun 2019 22:44:55 -0700 X-ExtLoop1: 1 Received: from shwdeopenpsi114.ccr.corp.intel.com ([10.239.157.147]) by orsmga006.jf.intel.com with ESMTP; 16 Jun 2019 22:44:54 -0700 From: "Dandan Bi" To: devel@edk2.groups.io Cc: Eric Dong , Liming Gao Subject: [edk2-platforms] [patch] Platform/Intel/DebugFeaturePkg: Update PCD type Date: Mon, 17 Jun 2019 13:44:42 +0800 Message-Id: <20190617054442.36192-1-dandan.bi@intel.com> X-Mailer: git-send-email 2.18.0.windows.1 Add PcdAcpiDebugEnable and PcdAcpiDebugBufferSize into following section which platform can customize the type by itself. [PcdsFixedAtBuild,PcdsPatchableInModule,PcdsDynamic,PcdsDynamicEx] Cc: Eric Dong Cc: Liming Gao Signed-off-by: Dandan Bi --- Platform/Intel/DebugFeaturePkg/DebugFeaturePkg.dec | 1 + 1 file changed, 1 insertion(+) diff --git a/Platform/Intel/DebugFeaturePkg/DebugFeaturePkg.dec b/Platform/Intel/DebugFeaturePkg/DebugFeaturePkg.dec index 7389d36a57..37ebe6da4d 100644 --- a/Platform/Intel/DebugFeaturePkg/DebugFeaturePkg.dec +++ b/Platform/Intel/DebugFeaturePkg/DebugFeaturePkg.dec @@ -49,10 +49,11 @@ [PcdsFixedAtBuild] ## This PCD sepcifies the start index in CMOS, it will occupy 1 bytes space. gDebugFeaturePkgTokenSpaceGuid.PcdUsb3DebugPortDeviceIndex|0x5A|UINT8|0x00000007 ## This PCD sepcifies the start index in CMOS, it will occupy 1 bytes space. gDebugFeaturePkgTokenSpaceGuid.PcdUsb3DebugPortFunctionIndex|0x5B|UINT8|0x00000008 +[PcdsFixedAtBuild,PcdsPatchableInModule,PcdsDynamic,PcdsDynamicEx] ## This PCD specifies AcpiDebug feature is enable/disable. gDebugFeaturePkgTokenSpaceGuid.PcdAcpiDebugEnable|FALSE|BOOLEAN|0x00000009 ## This PCD specifies AcpiDebug buffer size. gDebugFeaturePkgTokenSpaceGuid.PcdAcpiDebugBufferSize|0x10000|UINT32|0x0000000A -- 2.18.0.windows.1