[edk2-devel] Event: TianoCore Bug Triage - APAC / NAMO - Wednesday, September 4, 2024 #cal-reminder

2024-09-03 Thread Group Notification
*Reminder: TianoCore Bug Triage - APAC / NAMO* *When:* Wednesday, September 4, 2024 5:30pm to 6:30pm (UTC-07:00) America/Los Angeles *Where:* https://teams.microsoft.com/l/meetup-join/19%3ameeting_OTk1YzJhN2UtOGQwNi00NjY4LWEwMTktY2JiODRlYTY1NmY0%40thread.v2/0?context=%7b%22Tid%22%3a%2246c98d88-e3

Re: [edk2-devel] [PATCH edk2-platforms v5 1/1] Move to the GitHub Pull Request workflow

2024-09-03 Thread Michael D Kinney
I have sent invites Mike > -Original Message- > From: Rebecca Cran > Sent: Tuesday, September 3, 2024 2:56 PM > To: Kinney, Michael D ; > devel@edk2.groups.io; Leif Lindholm ; Michael > Kubacki > Subject: Re: [edk2-devel] [PATCH edk2-platforms v5 1/1] Move to the > GitHub Pull Request w

Re: [edk2-devel] [PATCH edk2-platforms v5 1/1] Move to the GitHub Pull Request workflow

2024-09-03 Thread Rebecca Cran
Thanks. Github is reporting the CODEOWNERS file as having errors because some users don't have write access. Could you add the following users please? @jackpot51 - Jeremy Soller @JohnAZoidberg - Daniel Schaefer @bibo-mao - Bibo Mao |**Also, I'm seeing an error with the AssignReviewers workf

Re: [edk2-devel] [PATCH edk2-platforms v5 1/1] Move to the GitHub Pull Request workflow

2024-09-03 Thread Michael D Kinney
Pushed as 4f49a843ff..f709251f5b Mike > -Original Message- > From: Rebecca Cran > Sent: Tuesday, September 3, 2024 12:44 PM > To: devel@edk2.groups.io; Kinney, Michael D > ; Leif Lindholm ; > Michael Kubacki > Subject: Re: [edk2-devel] [PATCH edk2-platforms v5 1/1] Move to the > GitHub

Re: [edk2-devel] [PATCH edk2-platforms v5 1/1] Move to the GitHub Pull Request workflow

2024-09-03 Thread Rebecca Cran
Could you push it please? On Tue, Sep 3, 2024, at 1:25 PM, Michael D Kinney wrote: > Reviewed-by: Michael D Kinney > > >> -Original Message- >> From: devel@edk2.groups.io On Behalf Of Rebecca >> Cran >> Sent: Tuesday, September 3, 2024 7:03 AM >> To: devel@edk2.groups.io; Leif Lindholm ;

Re: [edk2-devel] [PATCH edk2-platforms v5 1/1] Move to the GitHub Pull Request workflow

2024-09-03 Thread Michael D Kinney
Reviewed-by: Michael D Kinney > -Original Message- > From: devel@edk2.groups.io On Behalf Of Rebecca > Cran > Sent: Tuesday, September 3, 2024 7:03 AM > To: devel@edk2.groups.io; Leif Lindholm ; > Kinney, Michael D ; Michael Kubacki > > Cc: Rebecca Cran > Subject: [edk2-devel] [PATCH

Re: [edk2-devel] [PATCH 1/1] AmpereAltraPkg/FlashLib: Fix kernel crash if not call SetVirtualAddressMap()

2024-09-03 Thread Chuong Tran
Acked-by: Chuong Tran Thanks, Chuong On 8/14/2024 10:22 AM, Nhi Pham wrote: From: Chuong Tran OS kernel with greater than or equal to 48-bit VA space avoids EFI's SetVirtualAddressMap() runtime service on Arm64 and simply uses the 1:1 address mapping that UEFI used at booting. However, Amper

[edk2-devel] SbsaQemu: SIP_SVC_GET_CPU_TOPOLOGY call failed (need updated binaries in edk2-non-osi?)

2024-09-03 Thread Rebecca Cran via groups.io
Do the TF-A binaries in edk2-non-osi need updated for SbsaQemu? With the binaries in Platform/Qemu/Sbsa I get the following error during boot: GetCpuCount: We have 4 cpus. GetMpidr: MPIDR for CPU0: = 0 GetMpidr: MPIDR for CPU1: = 1 GetMpidr: MPIDR for CPU2: = 2 GetMpidr: MPIDR for CPU3: = 3 Ge

Re: [edk2-devel] [edk2-platforms][PATCH v2 0/5] Add IPMI SSIF support

2024-09-03 Thread Chuong Tran
For this patch series: Reviewed-by: Chuong Tran Regards, Chuong On 8/7/2024 1:47 PM, Nhi Pham wrote: This updates the I2C library and implements SMBUS PEI/DXE drivers to support IPMI SSIF in the Mt. Jade platform. v2: - Refine the changes of the DwI2cLib per Leif's comments and update the

Re: [edk2-devel] [RFC PATCH 1/1] MdePkg/IndustryStandard: add definitions for ACPI 6.4 CEDT

2024-09-03 Thread Rebecca Cran via groups.io
Also, leading underscores are supposed to be reserved for compiler implementations (and there only needs to be a single trailing underscore) so it should really be: __CXL_Early_Discovery_TABLE_H__ -> CXL_EARLY_DISCOVERY_TABLE_H_ -- Rebecca On 8/30/2024 12:06 PM, Michael D Kinney via groups.

Re: [edk2-devel] [PATCH 1/2] AmpereSiliconPkg: Implement BMC Configuration screen

2024-09-03 Thread Rebecca Cran via groups.io
On 8/13/2024 9:18 PM, Nhi Pham wrote: +/** + This function updates the BMC information. + + @param[in] VOID + + @retval EFI_SUCCESS The entry point is executed successfully. + @retval Other Some error occurs when executing this entry point. + +**/ +EFI_STATUS +UpdateBmcConfi

[edk2-devel] [PATCH edk2-platforms 2/2] Platform/StMmRpmb: Switch to MbedTls for crypto

2024-09-03 Thread Ard Biesheuvel via groups.io
From: Ard Biesheuvel MbedTls is much smaller than OpenSSL, and does not require a softfloat library on 32-bit ARM. So use that instead. Note that we still need to resolve OpensslLib, given that MbedTlsLib has a dependency on it (but only for SM3 digital signatures, which are not used here) Sign

[edk2-devel] [PATCH edk2-platforms 1/1] Platform/RaspberryPi: Switch to MbedTls crypto library

2024-09-03 Thread Ard Biesheuvel via groups.io
From: Ard Biesheuvel Switch to the MbedTls crypto library, which uses less space, which has run out on RPi4 (the DEBUG build can only succeed with HTTPS boot disabled at this point) Signed-off-by: Ard Biesheuvel --- Platform/RaspberryPi/RPi3/RPi3.dsc | 5 +++-- Platform/RaspberryPi/RPi4/RPi4.d

[edk2-devel] [PATCH edk2-platforms 0/2] Platform/StMmRpmb: Drop softfloat dependency

2024-09-03 Thread Ard Biesheuvel via groups.io
From: Ard Biesheuvel Fix StMmRpmb and drop the dependency on softfloat for 32-bit ARM. Ard Biesheuvel (2): Platform/StMmRpmb: Fix build Platform/StMmRpmb: Switch to MbedTls for crypto Platform/StandaloneMm/PlatformStandaloneMmPkg/PlatformStandaloneMmRpmb.dsc | 11 ++- 1 file chang

[edk2-devel] [PATCH edk2-platforms 1/2] Platform/StMmRpmb: Fix build

2024-09-03 Thread Ard Biesheuvel via groups.io
From: Ard Biesheuvel Add some missing library class resolutions relating to changes in the core upstream EDK2 repo. Signed-off-by: Ard Biesheuvel --- Platform/StandaloneMm/PlatformStandaloneMmPkg/PlatformStandaloneMmRpmb.dsc | 3 +++ 1 file changed, 3 insertions(+) diff --git a/Platform/Sta

[edk2-devel] [PATCH edk2-platforms v5 1/1] Move to the GitHub Pull Request workflow

2024-09-03 Thread Rebecca Cran
Migrate data from Maintainers.txt to the GitHub standard CODEOWNERS files plus REVIEWERS and CONTRIBUTORS.md. The latter file contains mappings from name to email address and GitHub usernames, which will help people who want to email maintainers instead of using GitHub. Add .github/workflows/Assig

[edk2-devel] [PATCH edk2-platforms v5 0/1] Move to the GitHub Pull Request workflow

2024-09-03 Thread Rebecca Cran
Changes from v4 to v5: Changed "Beagleboard:" comment in CODEOWNERS to "Beagleboard" to improve consistency. Added entries in CONTRIBUTORS.md and CODEOWNERS for new Bosc platform. Rebecca Cran (1): Move to the GitHub Pull Request workflow .github/workflows/AssignReviewers.yml | 34 ++ CODEO