Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
17 commits
Select commit Hold shift + click to select a range
fc94f97
feat(pfdi): Add test for invalid PFDI version parameters
gontumukkala-balaji Nov 28, 2025
455681a
feat(pfdi): Add test for invalid PFDI features parameters
gontumukkala-balaji Dec 17, 2025
e082a3b
feat(pfdi): Add test for invalid PFDI PE Test ID parameters
gontumukkala-balaji Dec 18, 2025
a36d45d
Merge branch 'main' into feature/pfdi/rel-1.0.0
gontumukkala-balaji Jan 6, 2026
3f7480f
feat(pfdi): Add test for invalid PFDI PE Test Parts parameters
gontumukkala-balaji Dec 23, 2025
86e4357
feat(pfdi): Add test for invalid PFDI Test Result parameters
gontumukkala-balaji Dec 23, 2025
32246c3
feat(pfdi): Add test for invalid PFDI FW Cehck parameters
gontumukkala-balaji Dec 23, 2025
503e37d
Merge range and all-parts runs under unified R0076 handling
Ashishsharma1903 Dec 19, 2025
7aaabbb
Split PFDI invalid parameter handling per R0164–R0168
Ashishsharma1903 Dec 24, 2025
ae66c6e
feat(pfdi): Add test for invalid PFDI test run parameters
gontumukkala-balaji Jan 19, 2026
c7912b6
feat(pfdi): Add test for invalid PFDI Force error params
gontumukkala-balaji Jan 19, 2026
f7293ec
feat: Improve pfdi012 and pfdi015 injection and recovery check
gontumukkala-balaji Sep 30, 2025
9af817e
feat(pfdi): add test for FORCE_ERROR overwrite behavior
Ashishsharma1903 Dec 23, 2025
b29fe7e
feat(pfdi): add PE-local FORCE_ERROR validation test
Ashishsharma1903 Dec 23, 2025
58f47ec
test(pfdi): Add validation for invalid PFDI Force Error function IDs
gontumukkala-balaji Jan 30, 2026
614a0a1
Merge branch 'main' into feature/pfdi/rel-0.9.0
gontumukkala-balaji Feb 3, 2026
79d6e58
feat(pfdi): Integrate PFDI into rule-based ACS execution
gontumukkala-balaji Feb 3, 2026
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
20 changes: 18 additions & 2 deletions apps/uefi/Pfdi.inf
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
## @file
# Copyright (c) 2025, Arm Limited or its affiliates. All rights reserved.
# Copyright (c) 2025-2026, Arm Limited or its affiliates. All rights reserved.
# SPDX-License-Identifier : Apache-2.0
#
# Licensed under the Apache License, Version 2.0 (the "License");
Expand Down Expand Up @@ -32,6 +32,8 @@
../
../../
app.c
acs_globals.c
acs_helpers.c
pfdi_main.c
../../test_pool/pfdi/pfdi001.c
../../test_pool/pfdi/pfdi002.c
Expand All @@ -49,6 +51,20 @@
../../test_pool/pfdi/pfdi014.c
../../test_pool/pfdi/pfdi016.c
../../test_pool/pfdi/pfdi017.c
../../test_pool/pfdi/pfdi018.c
../../test_pool/pfdi/pfdi019.c
../../test_pool/pfdi/pfdi020.c
../../test_pool/pfdi/pfdi021.c
../../test_pool/pfdi/pfdi022.c
../../test_pool/pfdi/pfdi023.c
../../test_pool/pfdi/pfdi024.c
../../test_pool/pfdi/pfdi025.c
../../test_pool/pfdi/pfdi026.c
../../test_pool/pfdi/pfdi027.c
../../test_pool/pfdi/pfdi028.c
../../test_pool/pfdi/pfdi029.c
../../test_pool/pfdi/pfdi030.c
../../test_pool/pfdi/pfdi031.c

[Packages]
StdLib/StdLib.dec
Expand Down Expand Up @@ -81,4 +97,4 @@

[BuildOptions]
GCC:*_*_*_ASM_FLAGS = -march=armv8.1-a
GCC:*_*_*_CC_FLAGS = -O0 -DTARGET_UEFI -DEXCLUDE_RBX -I${ACS_PATH}/val
GCC:*_*_*_CC_FLAGS = -O0 -I${ACS_PATH}/ -I${ACS_PATH}/val -DTARGET_UEFI
Loading