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.5264.1612428705251082584 for ; Thu, 04 Feb 2021 00:51:45 -0800 Authentication-Results: mx.groups.io; dkim=missing; spf=pass (domain: intel.com, ip: 192.55.52.151, mailfrom: heng.luo@intel.com) IronPort-SDR: XUfL3+adQkPNExksaR4dfe07Mkb3ihYl0yFx9ZxVFeH+arRs8EXcCxxGJLgWruKO8mlV8dxikz fdxcRirg0V+w== X-IronPort-AV: E=McAfee;i="6000,8403,9884"; a="160957334" X-IronPort-AV: E=Sophos;i="5.79,400,1602572400"; d="scan'208";a="160957334" Received: from orsmga008.jf.intel.com ([10.7.209.65]) by fmsmga107.fm.intel.com with ESMTP/TLS/ECDHE-RSA-AES256-GCM-SHA384; 04 Feb 2021 00:51:18 -0800 IronPort-SDR: ORrdsTJyWU4BA77+PbcuSaGLpr7UoybmkdkmduHT2Zxj0kAGuEvF1XkboM6yWL43uoNk9DuRfv LQiZCPKH6iCw== X-ExtLoop1: 1 X-IronPort-AV: E=Sophos;i="5.79,400,1602572400"; d="scan'208";a="393062111" Received: from hengluo-dev.ccr.corp.intel.com ([10.239.153.154]) by orsmga008.jf.intel.com with ESMTP; 04 Feb 2021 00:51:10 -0800 From: "Heng Luo" To: devel@edk2.groups.io Cc: Sai Chaganty , Nate DeSimone Subject: [Patch V2 13/40] TigerlakeSiliconPkg/IpBlock: Add Cnvi component Date: Thu, 4 Feb 2021 16:48:52 +0800 Message-Id: <20210204084919.3603-13-heng.luo@intel.com> X-Mailer: git-send-email 2.24.0.windows.2 In-Reply-To: <20210204084919.3603-1-heng.luo@intel.com> References: <20210204084919.3603-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