Skip to content

Commit

Permalink
Merge branch 'release/202302' into personal/klautner/fix_testpoint_is…
Browse files Browse the repository at this point in the history
…sues
  • Loading branch information
kenlautner authored Aug 25, 2023
2 parents c77aa71 + 2fa4327 commit 7a2a0a9
Show file tree
Hide file tree
Showing 13 changed files with 24 additions and 15 deletions.
4 changes: 2 additions & 2 deletions .azurepipelines/MuDevOpsWrapper.yml
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ resources:
type: github
endpoint: microsoft
name: microsoft/mu_devops
ref: refs/tags/v5.0.4
ref: refs/tags/v5.0.6

parameters:
- name: do_ci_build
Expand Down Expand Up @@ -71,7 +71,7 @@ parameters:
jobs:
- template: Jobs/PrGate.yml@mu_devops
parameters:
linux_container_image: ghcr.io/microsoft/mu_devops/ubuntu-22-build:ea6d2e6
linux_container_image: ghcr.io/microsoft/mu_devops/ubuntu-22-build:3bf70b5
do_ci_build: ${{ parameters.do_ci_build }}
do_ci_setup: ${{ parameters.do_ci_setup }}
do_pr_eval: ${{ parameters.do_pr_eval }}
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/auto-approve.yml
Original file line number Diff line number Diff line change
Expand Up @@ -25,5 +25,5 @@ jobs:
approval_check:
if: |
github.event.pull_request.user.login == 'dependabot[bot]' || github.event.pull_request.user.login == 'uefibot'
uses: microsoft/mu_devops/.github/workflows/[email protected].4
uses: microsoft/mu_devops/.github/workflows/[email protected].6
secrets: inherit
2 changes: 1 addition & 1 deletion .github/workflows/auto-merge.yml
Original file line number Diff line number Diff line change
Expand Up @@ -26,5 +26,5 @@ jobs:
merge_check:
if: |
github.event.pull_request.user.login == 'dependabot[bot]' || github.event.pull_request.user.login == 'uefibot'
uses: microsoft/mu_devops/.github/workflows/[email protected].4
uses: microsoft/mu_devops/.github/workflows/[email protected].6
secrets: inherit
2 changes: 1 addition & 1 deletion .github/workflows/issue-assignment.yml
Original file line number Diff line number Diff line change
Expand Up @@ -18,4 +18,4 @@ on:

jobs:
apply:
uses: microsoft/mu_devops/.github/workflows/[email protected].4
uses: microsoft/mu_devops/.github/workflows/[email protected].6
2 changes: 1 addition & 1 deletion .github/workflows/label-issues.yml
Original file line number Diff line number Diff line change
Expand Up @@ -31,4 +31,4 @@ on:

jobs:
apply:
uses: microsoft/mu_devops/.github/workflows/[email protected].4
uses: microsoft/mu_devops/.github/workflows/[email protected].6
2 changes: 1 addition & 1 deletion .github/workflows/label-sync.yml
Original file line number Diff line number Diff line change
Expand Up @@ -24,4 +24,4 @@ on:

jobs:
sync:
uses: microsoft/mu_devops/.github/workflows/[email protected].4
uses: microsoft/mu_devops/.github/workflows/[email protected].6
2 changes: 1 addition & 1 deletion .github/workflows/release-draft.yml
Original file line number Diff line number Diff line change
Expand Up @@ -27,5 +27,5 @@ on:

jobs:
draft:
uses: microsoft/mu_devops/.github/workflows/[email protected].4
uses: microsoft/mu_devops/.github/workflows/[email protected].6
secrets: inherit
2 changes: 1 addition & 1 deletion .github/workflows/stale.yml
Original file line number Diff line number Diff line change
Expand Up @@ -24,4 +24,4 @@ on:

jobs:
check:
uses: microsoft/mu_devops/.github/workflows/[email protected].4
uses: microsoft/mu_devops/.github/workflows/[email protected].6
2 changes: 1 addition & 1 deletion .github/workflows/triage-issues.yml
Original file line number Diff line number Diff line change
Expand Up @@ -19,4 +19,4 @@ on:

jobs:
triage:
uses: microsoft/mu_devops/.github/workflows/[email protected].4
uses: microsoft/mu_devops/.github/workflows/[email protected].6
9 changes: 6 additions & 3 deletions MinPlatformPkg/Acpi/AcpiTables/AcpiPlatform.c
Original file line number Diff line number Diff line change
Expand Up @@ -70,7 +70,7 @@ DebugDisplayReOrderTable (
IN EFI_CPU_ID_ORDER_MAP *CpuApicIdOrderTable
)
{
UINT32 Index;
UINTN Index; // MU_CHANGE - Codeql

DEBUG ((DEBUG_INFO, "Index AcpiProcId ApicId Thread Flags Skt\n"));
for (Index = 0; Index < mNumberOfCpus; Index++) {
Expand Down Expand Up @@ -144,9 +144,9 @@ CreateCpuLocalApicInTable (
EFI_STATUS Status;
EFI_PROCESSOR_INFORMATION ProcessorInfoBuffer;
UINT32 Index;
UINT32 CurrProcessor;
UINTN CurrProcessor; // MU_CHANGE - Codeql
EFI_CPU_ID_ORDER_MAP *CpuIdMapPtr;
UINT32 Socket;
UINTN Socket; // MU_CHANGE - Codeql

Status = EFI_SUCCESS;

Expand Down Expand Up @@ -1141,6 +1141,9 @@ PlatformUpdateTables (
FadtHeader->XGpe0Blk.AccessSize = PcdGet8 (PcdAcpiXGpe0BlkAccessSize);
FadtHeader->XGpe1Blk.AccessSize = PcdGet8 (PcdAcpiXGpe1BlkAccessSize);
FadtHeader->XGpe1Blk.RegisterBitWidth = PcdGet8 (PcdAcpiXGpe1BlkRegisterBitWidth);
//MU_CHANGE [BEGIN] - Update X_GPE1_BLK AddressSpaceId with PCD value
FadtHeader->XGpe1Blk.AddressSpaceId = PcdGet8 (PcdAcpiXGpe1BlkAddressSpaceId);
//MU_CHANGE [END] - Update X_GPE1_BLK AddressSpaceId with PCD value

FadtHeader->SleepControlReg.AddressSpaceId = PcdGet8 (PcdAcpiSleepControlRegisterAddressSpaceId);
FadtHeader->SleepControlReg.RegisterBitWidth = PcdGet8 (PcdAcpiSleepControlRegisterBitWidth);
Expand Down
3 changes: 3 additions & 0 deletions MinPlatformPkg/Acpi/AcpiTables/AcpiPlatform.inf
Original file line number Diff line number Diff line change
Expand Up @@ -95,6 +95,9 @@
gMinPlatformPkgTokenSpaceGuid.PcdAcpiXGpe0BlkAccessSize
gMinPlatformPkgTokenSpaceGuid.PcdAcpiXGpe1BlkAccessSize
gMinPlatformPkgTokenSpaceGuid.PcdAcpiXGpe1BlkRegisterBitWidth
# MU_CHANGE [BEGIN] - Update X_GPE1_BLK AddressSpaceId with PCD value
gMinPlatformPkgTokenSpaceGuid.PcdAcpiXGpe1BlkAddressSpaceId
# MU_CHANGE [END] - Update X_GPE1_BLK AddressSpaceId with PCD value
gMinPlatformPkgTokenSpaceGuid.PcdAcpiSleepControlRegisterAddressSpaceId
gMinPlatformPkgTokenSpaceGuid.PcdAcpiSleepControlRegisterBitWidth
gMinPlatformPkgTokenSpaceGuid.PcdAcpiSleepControlRegisterBitOffset
Expand Down
3 changes: 3 additions & 0 deletions MinPlatformPkg/MinPlatformPkg.dec
Original file line number Diff line number Diff line change
Expand Up @@ -141,6 +141,9 @@
gMinPlatformPkgTokenSpaceGuid.PcdAcpiXGpe0BlkAccessSize|0x00|UINT8|0x00010049
gMinPlatformPkgTokenSpaceGuid.PcdAcpiXGpe1BlkAccessSize|0x00|UINT8|0x0001004A
gMinPlatformPkgTokenSpaceGuid.PcdAcpiXGpe1BlkRegisterBitWidth|0x00|UINT8|0x00010056
# MU_CHANGE [BEGIN] - Update X_GPE1_BLK AddressSpaceId with PCD value
gMinPlatformPkgTokenSpaceGuid.PcdAcpiXGpe1BlkAddressSpaceId|0x00|UINT8|0x00010057
# MU_CHANGE [END] - Update X_GPE1_BLK AddressSpaceId with PCD value
gMinPlatformPkgTokenSpaceGuid.PcdAcpiS4BiosReq|0x0000|UINT8|0x00010055

#
Expand Down
4 changes: 2 additions & 2 deletions pip-requirements.txt
Original file line number Diff line number Diff line change
Expand Up @@ -12,8 +12,8 @@
# https://www.python.org/dev/peps/pep-0440/#version-specifiers
##

edk2-pytool-library==0.15.3
edk2-pytool-extensions==0.23.8
edk2-pytool-library==0.17.0
edk2-pytool-extensions==0.24.0
edk2-basetools==0.1.49
antlr4-python3-runtime==4.13.0
regex

0 comments on commit 7a2a0a9

Please sign in to comment.