Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
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
4 changes: 4 additions & 0 deletions apps/baremetal/sbsa_main.c
Original file line number Diff line number Diff line change
Expand Up @@ -65,12 +65,14 @@ freeAcsMeM(void)

if (acs_is_module_enabled(PCIE) ||
acs_is_module_enabled(GIC) ||
acs_is_module_enabled(GPU) ||
acs_is_module_enabled(SMMU))
val_pcie_free_info_table();

if (acs_is_module_enabled(SMMU) ||
acs_is_module_enabled(GIC) ||
acs_is_module_enabled(MEM_MAP) ||
acs_is_module_enabled(GPU) ||
acs_is_module_enabled(PCIE))
val_iovirt_free_info_table();

Expand Down Expand Up @@ -254,12 +256,14 @@ ShellAppMainsbsa()

if (acs_is_module_enabled(PCIE) ||
acs_is_module_enabled(GIC) ||
acs_is_module_enabled(GPU) ||
acs_is_module_enabled(SMMU))
createPcieInfoTable();

if (acs_is_module_enabled(GIC) ||
acs_is_module_enabled(PCIE) ||
acs_is_module_enabled(MEM_MAP) ||
acs_is_module_enabled(GPU) ||
acs_is_module_enabled(SMMU))
createIoVirtInfoTable();

Expand Down
3 changes: 2 additions & 1 deletion docs/sbsa/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,7 @@ The tests can also be executed in a Bare-metal environment. The initialization o

## Release details
- **Code quality:** BETA
- **Latest release version:** v8.0.1
- **Latest release version:** v8.0.2
- **Release tag:** `v26.03_SBSA_8.0.1`
- **Specification coverage:** SBSA v8.0
- **Execution levels:** Pre-Silicon and Silicon.
Expand All @@ -56,6 +56,7 @@ The tests can also be executed in a Bare-metal environment. The initialization o
-----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------
| SBSA Spec Version | ACS Coverage Mapping | SBSA ACS Version | SBSA Tag ID | BSA ACS Version | BSA Tag ID | Pre-Si Support |
|-----------------------|:------------------------:|:--------------------:|:--------------------------:|:-------------------:|:---------------------------:|:--------------------:|
| SBSA v8.0 | BSA ACS + SBSA ACS | v8.0.2 | v26.06_SBSA_8.0.2 | v1.2.1 | v26.03_BSA_1.2.1 | Yes |
| SBSA v8.0 | BSA ACS + SBSA ACS | v8.0.1 | v26.03_SBSA_8.0.1 | v1.2.1 | v26.03_BSA_1.2.1 | Yes |
| SBSA v8.0 | BSA ACS + SBSA ACS | v8.0.0 | v25.12_SBSA_8.0.0 | v1.2.0 | v25.12_BSA_1.2.0 | Yes |
| SBSA v7.2 | BSA ACS + SBSA ACS | v7.2.2 | v25.03_REL7.2.2 | v1.1.0 | v25.03_REL1.1.0 | Yes |
Expand Down
4 changes: 2 additions & 2 deletions docs/sbsa/arm_sbsa_testcase_checklist.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
## SBSA ACS Testcase checklist

The SBSA ACS test checklist is based on **SBSA 8.0 specification** and **SBSA ACS 8.0.1** tag.
The SBSA ACS test checklist is based on **SBSA 8.0 specification** and **SBSA ACS 8.0.2** tag.

The checklist provides information about:

Expand Down Expand Up @@ -3674,7 +3674,7 @@ The checklist provides information about:
</tbody>
</table>

## Latest Checklist Changes
### v26.06_SBSA_8.0.2
- Updated PCI_MM_02 coverage with test 907.
- Updated S_L5SM_04, S_L6PE_08, S_L6SM_04
- Added rule S_L5PE_03
Expand Down
2 changes: 1 addition & 1 deletion val/include/acs_app_versions.h
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@
/* SBSA Release versions */
#define SBSA_ACS_MAJOR_VER 8
#define SBSA_ACS_MINOR_VER 0
#define SBSA_ACS_SUBMINOR_VER 1
#define SBSA_ACS_SUBMINOR_VER 2

/* PC BSA Release versions */
#define PC_BSA_ACS_MAJOR_VER 1
Expand Down
Loading