From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from linux.microsoft.com (linux.microsoft.com [13.77.154.182]) by mx.groups.io with SMTP id smtpd.web09.26058.1629129062898657094 for ; Mon, 16 Aug 2021 08:51:03 -0700 Authentication-Results: mx.groups.io; dkim=pass header.i=@linux.microsoft.com header.s=default header.b=Oe8QljHr; spf=pass (domain: linux.microsoft.com, ip: 13.77.154.182, mailfrom: mikuback@linux.microsoft.com) Received: from [10.0.0.120] (c-73-27-179-174.hsd1.fl.comcast.net [73.27.179.174]) by linux.microsoft.com (Postfix) with ESMTPSA id EEFCE20C29E6; Mon, 16 Aug 2021 08:51:01 -0700 (PDT) DKIM-Filter: OpenDKIM Filter v2.11.0 linux.microsoft.com EEFCE20C29E6 DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=linux.microsoft.com; s=default; t=1629129062; bh=HoWIDLKrkrEq084x6sO816nV8BU/Jw6K/jC9kyZmgBM=; h=Subject:To:Cc:References:From:Date:In-Reply-To:From; b=Oe8QljHrFMYKrGFpSaG1OWgzEm1idiLxrEDnYizyEqWGS/OYQNq2eYzl4ZNiMuBk3 IyFEJJKKKlG0zqKQI5q2ED4B0Ew5nBlbZAQVdQXINP5Zj0L6iCtYsJTBgdF26qswr5 eHUlTOpcbR7sCtxx53DWoCv37v3G82kkUgIIS+W4= Subject: Re: [edk2-devel] [edk2-platforms][PATCH v2 4/5] Platform/Intel: Early hook-up Acer Aspire VN7-572G To: devel@edk2.groups.io, benjamin.doron00@gmail.com Cc: Chasel Chiu , Nate DeSimone , Michael Kubacki References: <20210804203630.7080-1-benjamin.doron00@gmail.com> <20210814002445.10084-1-benjamin.doron00@gmail.com> <20210814002445.10084-5-benjamin.doron00@gmail.com> From: "Michael Kubacki" Message-ID: Date: Mon, 16 Aug 2021 11:51:00 -0400 User-Agent: Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:68.0) Gecko/20100101 Thunderbird/68.12.1 MIME-Version: 1.0 In-Reply-To: <20210814002445.10084-5-benjamin.doron00@gmail.com> Content-Type: text/plain; charset=utf-8; format=flowed Content-Transfer-Encoding: 7bit Content-Language: en-US Reviewed-by: Michael Kubacki On 8/13/2021 8:24 PM, Benjamin Doron wrote: > Note that the SKU IDs do not represent register values, they were chosen > somewhat arbitrarily. We perform the mapping ourselves, so the > definitions can be changed. > > Cc: Chasel Chiu > Cc: Nate DeSimone > Cc: Michael Kubacki > Signed-off-by: Benjamin Doron > --- > Platform/Intel/KabylakeOpenBoardPkg/Include/PlatformBoardId.h | 2 ++ > Platform/Intel/KabylakeOpenBoardPkg/OpenBoardPkg.dec | 1 + > Platform/Intel/build.cfg | 1 + > 3 files changed, 4 insertions(+) > > diff --git a/Platform/Intel/KabylakeOpenBoardPkg/Include/PlatformBoardId.h b/Platform/Intel/KabylakeOpenBoardPkg/Include/PlatformBoardId.h > index e83c56252d2c..0db4fb23583e 100644 > --- a/Platform/Intel/KabylakeOpenBoardPkg/Include/PlatformBoardId.h > +++ b/Platform/Intel/KabylakeOpenBoardPkg/Include/PlatformBoardId.h > @@ -22,6 +22,8 @@ Kaby Lake Platform Board Identifiers > > > #define BoardIdSkylakeRvp3 0x4 > > #define BoardIdGalagoPro3 0x20 > > +#define BoardIdRayleighSLx_dGPU 0x41 > > +#define BoardIdNewgateSLx_dGPU 0x42 > > #define BoardIdKabyLakeYLpddr3Rvp3 0x60 > > > > #define BoardIdUnknown1 0xffff > > diff --git a/Platform/Intel/KabylakeOpenBoardPkg/OpenBoardPkg.dec b/Platform/Intel/KabylakeOpenBoardPkg/OpenBoardPkg.dec > index 01d611661603..ac87fe486c4b 100644 > --- a/Platform/Intel/KabylakeOpenBoardPkg/OpenBoardPkg.dec > +++ b/Platform/Intel/KabylakeOpenBoardPkg/OpenBoardPkg.dec > @@ -20,6 +20,7 @@ PACKAGE_GUID = 0A8BA6E8-C8AC-4AC1-87AC-52772FA6AE5E > > > [Includes] > > Include > > +AspireVn7Dash572G/Include > > GalagoPro3/Include > > KabylakeRvp3/Include > > Features/Tbt/Include > > diff --git a/Platform/Intel/build.cfg b/Platform/Intel/build.cfg > index eba25d36a806..28273347971d 100644 > --- a/Platform/Intel/build.cfg > +++ b/Platform/Intel/build.cfg > @@ -57,6 +57,7 @@ BIOS_INFO_GUID = > # board_name = path_to_board_build_config.cfg > > BoardMtOlympus = PurleyOpenBoardPkg/BoardMtOlympus/build_config.cfg > > BoardX58Ich10 = SimicsOpenBoardPkg/BoardX58Ich10/build_config.cfg > > +AspireVn7Dash572G = KabylakeOpenBoardPkg/AspireVn7Dash572G/build_config.cfg > > GalagoPro3 = KabylakeOpenBoardPkg/GalagoPro3/build_config.cfg > > KabylakeRvp3 = KabylakeOpenBoardPkg/KabylakeRvp3/build_config.cfg > > UpXtreme = WhiskeylakeOpenBoardPkg/UpXtreme/build_config.cfg >