From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from mga11.intel.com (mga11.intel.com []) by mx.groups.io with SMTP id smtpd.web08.27712.1612143430402429223 for ; Sun, 31 Jan 2021 17:37:29 -0800 Authentication-Results: mx.groups.io; dkim=missing; spf=fail (domain: intel.com, ip: , mailfrom: heng.luo@intel.com) IronPort-SDR: hFPkgkcDsrCLfq8+m1mB5gGMJalwBqlUAwTJIeQl4Qf5SBzD0jHEPT5w79NuTFAYVxBh+IV8Cj 2isOGmP4ZKMQ== X-IronPort-AV: E=McAfee;i="6000,8403,9881"; a="177113906" X-IronPort-AV: E=Sophos;i="5.79,391,1602572400"; d="scan'208";a="177113906" Received: from fmsmga008.fm.intel.com ([10.253.24.58]) by fmsmga102.fm.intel.com with ESMTP/TLS/ECDHE-RSA-AES256-GCM-SHA384; 31 Jan 2021 17:37:24 -0800 IronPort-SDR: FaItzh1O3Ow2JGqHlh7yPlgDI2JezTNAYKRAiI6rSHfg36VVh/AXd9q8KyG0ph2n4+Ukf1fxVY m6yWWLCZJ18Q== X-ExtLoop1: 1 X-IronPort-AV: E=Sophos;i="5.79,391,1602572400"; d="scan'208";a="368718625" Received: from hengluo-dev.ccr.corp.intel.com ([10.239.153.154]) by fmsmga008.fm.intel.com with ESMTP; 31 Jan 2021 17:37:22 -0800 From: "Heng Luo" To: devel@edk2.groups.io Cc: Sai Chaganty , Nate DeSimone Subject: [PATCH 13/40] TigerlakeSiliconPkg/IpBlock: Add Cnvi component Date: Mon, 1 Feb 2021 09:36:30 +0800 Message-Id: <20210201013657.1833-13-heng.luo@intel.com> X-Mailer: git-send-email 2.24.0.windows.2 In-Reply-To: <20210201013657.1833-1-heng.luo@intel.com> References: <20210201013657.1833-1-heng.luo@intel.com> MIME-Version: 1.0 Content-Transfer-Encoding: quoted-printable REF: https://bugzilla.tianocore.org/show_bug.cgi?id=3D3171 Adds the following files: * IpBlock/Cnvi/IncludePrivate Cc: Sai Chaganty Cc: Nate DeSimone Signed-off-by: Heng Luo --- Silicon/Intel/TigerlakeSiliconPkg/IpBlock/Cnvi/IncludePrivate/CnviConfigHo= b.h | 27 +++++++++++++++++++++++++++ 1 file changed, 27 insertions(+) diff --git a/Silicon/Intel/TigerlakeSiliconPkg/IpBlock/Cnvi/IncludePrivate/= CnviConfigHob.h b/Silicon/Intel/TigerlakeSiliconPkg/IpBlock/Cnvi/IncludePri= vate/CnviConfigHob.h new file mode 100644 index 0000000000..e881e49d62 --- /dev/null +++ b/Silicon/Intel/TigerlakeSiliconPkg/IpBlock/Cnvi/IncludePrivate/CnviCon= figHob.h @@ -0,0 +1,27 @@ +/** @file=0D + This file defines the CNVi CONFIG HOB=0D +=0D + Copyright (c) 2021, Intel Corporation. All rights reserved.
=0D + SPDX-License-Identifier: BSD-2-Clause-Patent=0D +**/=0D +#ifndef _CNVI_CONFIG_HOB_H_=0D +#define _CNVI_CONFIG_HOB_H_=0D +=0D +#include =0D +=0D +extern EFI_GUID gCnviConfigHobGuid;=0D +#pragma pack (push,1)=0D +=0D +/**=0D + This HOB is used to pass CNVi related private information to DXE phase=0D +**/=0D +typedef struct {=0D + EFI_HOB_GUID_TYPE EfiHobGuidType; ///< GUID HOB type structure for gCnvi= ConfigHobGuid=0D + UINT32 Mode : 1; ///< 0: Disabled, 1: Auto=0D + UINT32 BtCore : 1; ///< 0: Disabled, 1: Enabled=0D + UINT32 BtAudioOffload : 1; ///< 0: Disabled, 1: Enabled=0D + UINT32 RsvdBits0 : 29; ///< Reserved bits=0D +} CNVI_CONFIG_HOB;=0D +#pragma pack (pop)=0D +=0D +#endif // _CNVI_CONFIG_HOB_H_=0D --=20 2.24.0.windows.2