Status Update (June 2025) The BSA-ACS and SBSA-ACS repositories are now read-only.
Development has moved to the consolidated
sysarch-acs
repository, which hosts the test suites for BSA, SBSA, and future system-standard compliance suites.
What changed? | Where to contribute now? |
---|---|
Code updates | Open pull requests in sysarch-acs |
Bug reports / feature requests | Create GitHub issues in sysarch-acs |
Open PRs & issues here | The ACS team will migrate or close them as appropriate |
We appreciate your cooperation as we streamline our codebase.
For questions, please contact the ACS maintainers or open an issue in sysarch-acs
.
Base System Architecture (BSA) specification describes a hardware system architecture based on the Arm 64-bit architecture. System software such as operating systems, hypervisors, and firmware rely on this. It addresses PE features and key aspects of system architecture.
For more information, download the BSA specification
BSA Architecture Compliance Suite (ACS) is a collection of self-checking, portable C-based tests. This suite includes a set of examples of the invariant behaviors that are provided by the BSA specification, so that you can verify if these behaviour have been interpreted correctly.
Most of the tests are executed from UEFI (Unified Extensible Firmware Interface) Shell by executing the BSA UEFI shell application. A few tests are executed by running the BSA ACS Linux application which in turn depends on the BSA ACS Linux kernel module. The tests can also be executed in a Bare-metal environment. The initialization of the Bare-metal environment is specific to the environment and is out of scope of this document.
- Code quality: v1.1.0
- The tests are written for version 1.1 of the BSA specification.
- The tests can be run at both the Pre-Silicon and Silicon level.
- For complete coverage of the BSA rules, availability of an Exerciser is required for Exerciser tests to be run during verficiation at Pre-Silicon level.
- The compliance suite is not a substitute for design verification.
- To review the BSA ACS logs, Arm licensees can contact Arm directly through their partner managers.
- To know about the BSA rules not implemented in this release, see the Test Scenario Document.
- To pick up the release version of the code, checkout the corresponding tag from the main branch.
- To get the latest version of the code with bug fixes and new features, use the main branch.
- For information about the implementable BSA rules test algorithm and for unimplemented BSA rules, see the arm BSA Test Scenario Document.
- For information on test category(UEFI, Linux, Bare-metal) and applicable systems(IR,ES,SR,Pre-Silicon), see the arm BSA Test Checklist.
- For details on the design of the BSA ACS, see the arm BSA Validation Methodology Document.
- For details on the BSA ACS UEFI Shell Application and Linux Application see the arm BSA ACS User Guide.
- For details on the BSA ACS Bare-metal support, see the
- arm BSA ACS Bare-metal User Guide.
- Bare-metal Code.
Note: The Bare-metal PCIe enumeration code provided as part of the BSA ACS should be used and should not be replaced. This code is vital in analyzing of the test result.
Exerciser is a client device wrapped up by PCIe Endpoint. This device is created to meet BSA requirements for various PCIe capability validation tests. Running the Exerciser tests provides additional test coverage on the platform.
Note: To run the exerciser tests on a UEFI Based platform with Exerciser, the Exerciser PAL API's need to be implemented. For details on the reference Exerciser implementation and support, see the Exerciser.md and Exerciser_API_porting_guide.md
Prebuilt images for each release are available in the prebuilt_images folder of the main branch. You can choose to use these images or build your own image by following the steps below. If you choose to use the prebuilt image, see the Test suite execution section below for details on how to run the application.
Before you start the ACS build, ensure that the following requirements are met.
- Any mainstream Linux-based OS distribution running on a x86 or AArch64 machine.
- git clone the EDK2 tree. Recommended edk2 commit is 836942fbadb629050b866a8052e6af755bcdf623
- git clone the EDK2 port of libc to local <edk2_path>.
- Install GCC-ARM 13.2 toolchain.
- Install the build prerequisite packages to build EDK2.
Note: - The details of the packages are beyond the scope of this document.
- cd local_edk2_path
- git submodule update --init --recursive
- git clone https://github.com/ARM-software/bsa-acs.git ShellPkg/Application/bsa-acs
- Add the following to the [LibraryClasses.common] section in ShellPkg/ShellPkg.dsc
BsaValLib|ShellPkg/Application/bsa-acs/val/BsaValLib.inf BsaPalLib|ShellPkg/Application/bsa-acs/pal/uefi_acpi/BsaPalLib.inf
- Add the following in the [components] section of ShellPkg/ShellPkg.dsc
ShellPkg/Application/bsa-acs/uefi_app/BsaAcs.inf
- cd local_edk2_path
- git submodule update --init --recursive
- git clone https://github.com/ARM-software/bsa-acs.git ShellPkg/Application/bsa-acs
- Add the following to the [LibraryClasses.common] section in ShellPkg/ShellPkg.dsc
FdtLib|EmbeddedPkg/Library/FdtLib/FdtLib.inf BsaValLib|ShellPkg/Application/bsa-acs/val/BsaValLib.inf BsaPalLib|ShellPkg/Application/bsa-acs/pal/uefi_dt/BsaPalLib.inf
- Add the following in the [components] section of ShellPkg/ShellPkg.dsc
ShellPkg/Application/bsa-acs/uefi_app/BsaAcs.inf
- In IR systems, ACS efi application runs on top of efi shell which runs on u-boot as efi payload.
- Below change in edk2 code MdeModulePkg/Library/UefiHiiServicesLib/UefiHiiServicesLib.c is required before compiling for IR system.
-Status = gBS->LocateProtocol (&gEfiHiiConfigRoutingProtocolGuid, NULL, (VOID **) &gHiiConfigRouting); -ASSERT_EFI_ERROR (Status); +//Status = gBS->LocateProtocol (&gEfiHiiConfigRoutingProtocolGuid, NULL, (VOID **) &gHiiConfigRouting); +//ASSERT_EFI_ERROR (Status);
- export GCC49_AARCH64_PREFIX= GCC13.2 toolchain path pointing to /bin/aarch64-linux-gnu- in case of x86 machine.
For an AArch64 build it should point to /usr/bin/ - export PACKAGES_PATH= path pointing to edk2-libc
- source edksetup.sh
- make -C BaseTools/Source/C
- source ShellPkg/Application/bsa-acs/tools/scripts/acsbuild.sh
The EFI executable file is generated at <edk2_path>/Build/Shell/DEBUG_GCC49/AARCH64/Bsa.efi
- If the system supports LPIs (Interrupt ID > 8192) then Firmware should support installation of handler for LPI interrupts.
- If you are using edk2, change the ArmGic driver in the ArmPkg to support installation of handler for LPIs.
- Add the following in edk2/ArmPkg/Drivers/ArmGic/GicV3/ArmGicV3Dxe.c
- After [#define ARM_GIC_DEFAULT_PRIORITY 0x80] +#define ARM_GIC_MAX_NUM_INTERRUPT 16384 - Change this in GicV3DxeInitialize function. -mGicNumInterrupts = ArmGicGetMaxNumInterrupts (mGicDistributorBase); +mGicNumInterrupts = ARM_GIC_MAX_NUM_INTERRUPT;
The execution of the compliance suite varies depending on the test environment. The following steps assume that the test suite is invoked through the ACS UEFI shell application.
On a system where a USB port is available and functional, perform the following steps:
- Copy 'Bsa.efi' and 'Shell.efi' to a USB Flash drive.
- Boot the system to U-Boot shell.
- Plug in the USB flash drive to one of the functional USB ports on the system.
- To determine the file system number of the plugged-in USB drive, execute command
usb start
- Copy the 'Shell.efi' to memory location using the command
Syntax: fatload usb <dev_num> ${kernel_addr_r} Shell.efi
Eg: fatload usb 0 ${kernel_addr_r} Shell.efi
This boots the system to UEFI Shell. - To determine the file system number of the plugged-in USB drive, execute 'map -r' command.
- Type 'fs' where '' is replaced by the number determined in step 5.
- To start the compliance tests, run the executable Bsa.efi with the appropriate parameters.
- Copy the UART console output to a log file. Note: 'Shell.efi' is available in the pebuilt_images/IR
On an emulation environment with secondary storage, perform the following steps:
- Create an image file which contains the 'Bsa.efi' file. For example:
- mkfs.vfat -C -n HD0 hda.img 2097152
- sudo mount -o rw,loop=/dev/loop0,uid=`whoami`,gid=`whoami` hda.img /mnt/bsa In case loop0 is busy, please specify the one that is free.
- sudo cp "/Bsa.efi" /mnt/bsa/
- sudo umount /mnt/bsa
- Load the image file to the secondary storage using a backdoor. The steps to load the image file are emulation environment-specific and beyond the scope of this document.
- Boot the system to UEFI shell.
- To determine the file system number of the secondary storage, execute 'map -r' command.
- Type 'fs' where '' is replaced by the number determined in step 4.
- To start the compliance tests, run the executable Bsa.efi with the appropriate parameters.
- Copy the UART console output to a log file for analysis and certification.
- For information on the BSA uefi shell application parameters, see the User Guide.
On an emulation platform where secondary storage is not available, perform the following steps:
- Add the path to 'Bsa.efi' file in the UEFI FD file.
- Build UEFI image including the UEFI Shell.
- Boot the system to UEFI shell.
- Run the executable 'Bsa.efi' to start the compliance tests. For details about the parameters,see the User Guide.
- Copy the UART console output to a log file for analysis and certification.
Certain Peripheral, PCIe and Memory map tests require Linux operating system.This chapter provides information on building and executing these tests from the Linux application.
This section lists the porting and build steps for the kernel module. The patch for the kernel tree and the Linux PAL are hosted separately on linux-acs repo
ACS build requires that the following requirements are met, Please skip this if you are using Linux Build Script
- Linux kernel source version 5.11, 5.13, 5.15, 6.0, 6.4, 6.7, 6.8
- Install GCC-ARM 13.2 toolchain.
- Build environment for AArch64 Linux kernel.
NOTE: - Linux version 6.8 is recommended version.
The following steps describe how to build the BSA kernel module and application using the build.sh script. The build.sh script supports both native builds and cross-compilation.
- For Native Builds, run the script directly on the target machine.
- For Cross-Compilation, pass the Linux version and GCC tool version as script arguments.
- wget https://gitlab.arm.com/linux-arm/linux-acs/-/raw/master/acs-drv/files/build.sh
- chmod +x build.sh
- source build.sh
The following output folder is created in build folder:
- bsa_acs.ko
- bsa_app
The following steps describe how to build the BSA kernel module and application for the system manually.
- git clone https://git.gitlab.arm.com/linux-arm/linux-acs.git linux-acs
- git clone https://github.com/ARM-software/bsa-acs.git bsa-acs
- cd <local_dir>/linux-acs/files
- export CROSS_COMPILE=/bin/aarch64-linux-gnu-
- export KERNEL_SRC=/lib/modules/$(uname -r)/build
- ./bsa_setup.sh <local_dir/bsa-acs>
- ./linux_bsa_acs.sh
Note:
- If the path /lib/modules/$(uname -r)/build does not exist on the native system, install the kernel headers using:
shell> sudo apt-get install linux-headers-$(uname -r)
- In case of cross-compilation, the KERNEL_SRC variable must be set to point to the Linux kernel build output directory for the target architecture.
Successful completion of above steps will generate bsa_acs.ko
- cd /linux_app/bsa-acs-app
- export CROSS_COMPILE=/bin/aarch64-linux-gnu-
- make
Successful completion of above steps will generate executable file bsa
Before the BSA ACS Linux application can be run, load the BSA ACS kernel module using the insmod command.
shell>sudo insmod bsa_acs.ko
shell> ./bsa_app or ./bsa
- For information on the BSA Linux application parameters, see the User Guide.
shell> sudo dmesg | tail -500 # print last 500 kernel logs
After the run is complete, you can remove the BSA module from the system if it is no longer needed.
shell> sudo rmmod bsa_acs
The following arguments can be used when running the build.sh script:
-
-v or --version - Specifies the Linux kernel version to be used for cross-compilation. If not provided, the default version is 6.8.
-
--GCC_TOOLS - Specifies the GCC toolchain version for cross-compilation. The default version is 13.2.rel1.
-
--help - Displays information about the ACS build environment, including default values, usage instructions, and additional notes.
-
--clean - Removes the output folder build, which contains the resulting modules and applications from the build.
-
--clean_all - Removes all downloaded repositories and build-related files, including the output directory.
For cross-compilation platforms, if you want compatibility with the target system, ensure that the Linux source version matches the version running on the target device.
Example:
-
Linux source version: 5.15
-
Target AArch64 machine kernel version: 5.15.0-139-generic
-
If the versions do not match exactly, the module may fail to load due to an invalid module format.
-
✅ If both versions are identical (e.g., both are 5.15), the build will work correctly — similar to how it works for a SystemReady image.
The Bare-metal build environment is platform specific.
To provide a baseline, the build steps to integrate and run the Bare-metal tests from UEFI shell are provided in README.md.
For details on generating the binaries to run on Bare-metal environment, refer README.md
To evaluate the correctness and consistency of a system's memory model, memory model consistency tests (litmus tests) can be optionally built into BSA UEFI application, the build and run steps are provided in mem_test/README.md.
The Arm SystemReady ACS test suite may run at a higher privilege level. An attacker may utilize these tests to elevate the privilege which can potentially reveal the platform security assets. To prevent the leakage of Secure information, Arm strongly recommends that you run the ACS test suite only on development platforms. If it is run on production systems, the system should be scrubbed after running the test suite.
-
For systems that present firmware compliant to SBBR, BSA depends on SPCR acpi table to get UART information. UEFI console setting must be set to "serial" on these systems.
-
ITS test are available only for systems that present firmware compliant to SBBR.
-
Some PCIe and Exerciser test are dependent on PCIe features supported by the test system. Please fill the required API's with test system information.
- pal_pcie_p2p_support : If the test system PCIe supports peer to peer transaction.
- pal_pcie_is_cache_present : If the test system supports PCIe address translation cache.
- pal_pcie_get_legacy_irq_map : Fill system legacy irq map
Below exerciser capabilities are required by exerciser test.
- MSI-X interrupt generation.
- Incoming Transaction Monitoring(order, type).
- Initiating transacions from and to the exerciser.
- Ability to check on BDF and register address seen for each configuration address along with access type.
BSA Spec Version | BSA ACS Version | BSA Tag ID | Pre-Si Support |
---|---|---|---|
BSA v1.1 | v1.1.0 | v25.03_REL1.1.0 | Yes |
BSA v1.1 | v1.0.9 | v24.11_REL1.0.9 | Yes |
BSA v1.0(c) | v1.0.8 | v24.03_REL1.0.8 | Yes |
BSA v1.0(c) | v1.0.7 | v23.12_REL1.0.7 | Yes |
BSA v1.0(c) | v1.0.6 | v23.11_BootFramework | Yes |
BSA v1.0(c) | v1.0.6 | v23.09_REL1.0.6 | Yes |
BSA v1.0(c) | v1.0.5 | v23.07_REL1.0.5 | Yes |
BSA v1.0(c) | v1.0.4 | v23.03_REL1.0.4 | Yes |
BSA v1.0 | v1.0.3 | v23.01_REL1.0.3 | No |
BSA v1.0 | v1.0.2 | v22.10_REL1.0.2 | No |
BSA v1.0 | v1.0.1 | v22.06_REL1.0.1 | No |
BSA v1.0 | v1.0 | v21.09_REL1.0 | No |
BSA ACS is distributed under Apache v2.0 License.
- For feedback, use the GitHub Issue Tracker that is associated with this repository.
- For support, send an email to "[email protected]" with details.
- Arm licensees may contact Arm directly through their partner managers.
- Arm welcomes code contributions through GitHub pull requests. See the GitHub documentation on how to raise pull requests.
Copyright (c) 2021-2025, Arm Limited and Contributors. All rights reserved.