Skip to content
This repository was archived by the owner on Mar 28, 2025. It is now read-only.

Commit 3a853a3

Browse files
committed
KabylakeOpenBoardPkg: Add board ID to Global NVS
REF:https://bugzilla.tianocore.org/show_bug.cgi?id=2207 Adds the board ID as a field in global NVS (BDID) to allow ACPI code to take conditional actions based on the active board. Cc: Chasel Chiu <[email protected]> Cc: Nate DeSimone <[email protected]> Cc: Ankit Sinha <[email protected]> Cc: Jeremy Soller <[email protected]> Signed-off-by: Michael Kubacki <[email protected]> Reviewed-by: Chasel Chiu <[email protected]> Reviewed-by: Ankit Sinha <[email protected]>
1 parent 2e0efcd commit 3a853a3

File tree

4 files changed

+8
-2
lines changed

4 files changed

+8
-2
lines changed

Platform/Intel/KabylakeOpenBoardPkg/GalagoPro3/Library/BoardAcpiLib/DxeGalagoPro3AcpiTableLib.c

+2
Original file line numberDiff line numberDiff line change
@@ -56,6 +56,8 @@ GalagoPro3UpdateGlobalNvs (
5656

5757
mGlobalNvsArea.Area->Ps2MouseEnable = PcdGet8 (PcdPs2KbMsEnable);
5858
mGlobalNvsArea.Area->Ps2KbMsEnable = PcdGet8 (PcdPs2KbMsEnable);
59+
60+
mGlobalNvsArea.Area->BoardId = (UINT8) LibPcdGetSku ();
5961
}
6062

6163
EFI_STATUS

Platform/Intel/KabylakeOpenBoardPkg/Include/Acpi/GlobalNvs.asl

+2-1
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
/** @file
22
ACPI DSDT table
33
4-
Copyright (c) 2017, Intel Corporation. All rights reserved.<BR>
4+
Copyright (c) 2017 - 2019, Intel Corporation. All rights reserved.<BR>
55
SPDX-License-Identifier: BSD-2-Clause-Patent
66
77
**/
@@ -111,4 +111,5 @@ SPDX-License-Identifier: BSD-2-Clause-Patent
111111
Offset(81), TNAT, 8, // Offset(81), TbtNativeOsHotPlug
112112
Offset(82), TBSE, 8, // Offset(82), Thunderbolt(TM) Root port selector
113113
Offset(83), TBS1, 8, // Offset(83), Thunderbolt(TM) Root port selector
114+
Offset(84), BDID, 8, // Offset(84), Board ID
114115
}

Platform/Intel/KabylakeOpenBoardPkg/Include/Acpi/GlobalNvsAreaDef.h

+2-1
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
/** @file
22
ACPI DSDT table
33
4-
Copyright (c) 2017, Intel Corporation. All rights reserved.<BR>
4+
Copyright (c) 2017 - 2019, Intel Corporation. All rights reserved.<BR>
55
SPDX-License-Identifier: BSD-2-Clause-Patent
66
77
**/
@@ -111,6 +111,7 @@ typedef struct {
111111
UINT8 TbtNativeOsHotPlug; ///< Offset 81 TbtNativeOsHotPlug
112112
UINT8 TbtSelector; ///< Offset 82 Thunderbolt(TM) Root port selector
113113
UINT8 TbtSelector1; ///< Offset 83 Thunderbolt(TM) Root port selector
114+
UINT8 BoardId; ///< Offset 84 Board ID
114115
} EFI_GLOBAL_NVS_AREA;
115116

116117
#pragma pack(pop)

Platform/Intel/KabylakeOpenBoardPkg/KabylakeRvp3/Library/BoardAcpiLib/DxeKabylakeRvp3AcpiTableLib.c

+2
Original file line numberDiff line numberDiff line change
@@ -56,6 +56,8 @@ KabylakeRvp3UpdateGlobalNvs (
5656

5757
mGlobalNvsArea.Area->Ps2MouseEnable = FALSE;
5858
mGlobalNvsArea.Area->Ps2KbMsEnable = PcdGet8 (PcdPs2KbMsEnable);
59+
60+
mGlobalNvsArea.Area->BoardId = (UINT8) LibPcdGetSku ();
5961
}
6062

6163
EFI_STATUS

0 commit comments

Comments
 (0)