skullcrossbones / OSF-Aptio-OpenEdition

TianoCore/EDKII for UEFI implementation

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

Aptio OpenEdition Firmware

The Minimum Platform is a software architecture that guides uniform delivery of Intel platforms enabling firmware solutions for basic boot functionality with extensibility built-in. This project incorporates support for the OCP derived Tioga Pass platform and Junction City Platform.

Package maintainers are listed in Maintainers.txt.

Overview

The key elements of the architecture are organized into a staged boot approach where each stage has requirements and functionality for specific use cases. The generic control flow through the boot process is implemented in the MinPlatformPkg. The generic nature of the tasks performed in MinPlatformPkg lends to reuse across all Intel platforms with no source modification. Details for any particular board are made accessible to the MinPlatformPkg through a well-defined statically linked board API. A complete platform solution then consists of the MinPlatformPkg and a compatible board package.

Board Naming Convention

The board packages supported by Intel follow the naming convention <xxx>OpenBoardPkg where xxx refers to the encompassing platform name for a particular platform generation. For example, the KabylakeOpenBoardPkg contains the board code for Intel Kaby Lake reference systems. Intel uses the moniker "OpenBoardPkg" to indicate that this package is the open source board code. A closed source counterpart may exist which simply uses "BoardPkg". Both directly use the MinPlatformPkg from edk2-platforms.

Stage Selection

Stage selection is controlled via the PCD gMinPlatformPkgTokenSpaceGuid.PcdBootStage in MinPlatformPkg.dec. The stage should be configured in the board package DSC file to the appropriate value. For example, a board may disable all advanced features by setting this value to 4 instead of 6. This may be used to improve boot time for a particular use case. Decrementing the stage can also be used for debug since only the actions required for that stage objective should be executed. As an example, ACPI initialization is not required for a Stage 3 boot.

The stages are defined as follows:

Stage Functional Objective Example Capabilities
I Minimal Debug Serial port output, source debug enabled, hardware debugger enabled
II Memory Functional Basic hardware initialization necessary to reach memory initialization, permanent memory available
III Boot to UI Simple console input and output to a UI, UEFI shell
IV Boot to OS Boot an operating system with the minimally required features
V Security Enable UEFI Secure Boot, TCG measured boot, DMA protections
VI Advanced Feature Enable Firmware update, power management, non-essential I/O

Minimum Platform Firmware Solution Stack

A UEFI firmware implementation using MinPlatformPkg is constructed using the following pieces.

EDK II
Intel(r) FSP
Minimum Platform (MinPlatformPkg)
Board Support (<xxx>OpenBoardPkg)

Board Support

  • The PurleyOpenBoardPkg contains board implementations for Purley systems.
  • The WhitleyOpenBoardPkg contains board implementations for Whitley systems.

Board Package Organization

The board package follows the standard EDK II package structure with the following additional elements and guidelines:

  • Only code usable across more than one board at the root level.* Board-specific code in a directory. The directory name should match that of the board supported.
  • Features not essential to achieve stage 5 or earlier boots are maintained in a Features folder at the appropriate level in the package hierarchy.

Shared resources in the package root directory can include interfaces described in header files, library instances, firmware modules, binaries, etc. The UEFI firmware implementation is built using the process described below from the board-specific directory.

A board package must implement the board APIs defined in the MinPlatformPkg even if a "NULL" implementation is used to return back to the minimum platform caller.

Windows Build Instructions

Pre-requisites

Supported Hardware

Machine Name Supported Chipsets BoardPkg Board Name
Junction City IceLake-SP (Xeon Scalable) WhitleyOpenBoardPkg JunctionCity
TiogaPass Purley PurleyOpenBoardPkg BoardTiogaPass

Download the required components

To download the project, clone the repository along with all the submodules and checkout required TAG using the following command: git clone --recurse-submodules https://github.com/opencomputeproject/Aptio-OE.git -b (need to be replaced with TAG name)

Junction City Build Information

Building with the python script

  1. Open command window, go to the workspace directory, e.g. c:\Edk2Workspace
  2. Type "cd edk2-platforms/Platform/Intel
  3. Type "python build_bios.py -p JunctionCity"
  4. On successful build, IFWI (Integrated Firmware Image) JUNCTIONCITY.bin and BIOS JUNCTIONCITY.fd rom files are created.
  • build_bios.py arguments:

    Argument Function
    -h, --help show this help message and exit
    --platform, -p the platform to build
    --DEBUG, -d debug flag
    --RELEASE, -r release flag
    --cleanall cleans all

TiogaPass Build Information

Building with the batch scripts

For PurleyOpenBoardPkg

  1. Open command window, go to the workspace directory, e.g. c:\Purley.
  2. Type "cd edk2-platforms\Platform\Intel\PurleyOpenBoardPkg\BoardTiogaPass".
  3. Type "GitEdk2MinTiogaPass.bat" to setup GIT environment.
  4. Type "bld" to build Purley Tioga Pass board UEFI firmware image, "bld release" for release build, "bld clean" to remove intermediate files.
  5. Final BIOS image will be Build\PurleyOpenBoardPkg\BoardTiagoPass\DEBUG_VS2015x86\FV\PLATFORM.fd or Build\PurleyOpenBoardPkg\BoardTiagoPass\RELEASE_VS2015x86\FV\PLATFORM.fd, depending on bld batch script input.
  6. This BIOS image needs to be merged with SPS FW.

The validated version of iasl compiler that can build is 20180629. Older versions may generate ACPI build errors.

Users can also flash the UEFI firmware image to the highest area of the flash region directly. Users with access to the Intel proprietary FITC tool and ME ingredients can build full images for flash (BIOS + ME + DESC).

Binary and Reference Code Details

  • EDK2 source based on edk2-stable202202
  • FSP binaries derived from Purley Refresh RC version RC610D02.
  • AST2500 UEFI option ROM v1.11.03 (released 12/29/2020).
  • EDK2-Platforms source based on commit hash df5e094ef347d12f48c306268c674df40a1357da
  • EDK2-Non-OSI source based on commit hash 6996a45d7f4014fd4aa0f1eb4cbe97d8a3c5957a
  • FSP source based on commit hash 2cedeba57f6f7c604bea715065e7a4dca8ffa271

Validation Details

  • All firmware projects can only build on Windows with the validated configuration below.

PurleyOpenBoardPkg

  • This firmware project has only been tested on the Tioga Pass hardware.
  • This firmware project build has only been tested using the Microsoft Visual Studio 2015 build tools.
  • Booted to UEFI shell.
  • Booted to UEFI Windows Server 2022 on SATA HDD.
  • Booted to UEFI RHEL 7.3 on SATA HDD.
  • Booted to Ubuntu 18.04 on M.2 NVME slot.
  • Verified Mellanox card detection during POST and OS.
  • LINUX Boot Support (PcdLinuxBootEnable needs to be enabled) verified by booting to Ubuntu 18.04 on M.2 NVME slot

Linux Boot Support Validation Details

  • linux.efi is a dummy file.
  • Dummy file needs to be replaced by building the Linux Kernel with an Integrated Initrd.
  1. Follow u-root https://github.com/u-root/u-root#readme to compile an initrd
  2. Follow directions on http://osresearch.net/Building/ to integrate initrd and compile the heads kernel
  3. Copy bzimage with integrated initrd to LinuxBoot/LinuxBinaries/linux.efi

WhitleyOpenBoardPkg

  • This firmware project has only been tested on the Junction City hardware.
  • This firmware project build has only been tested using the Microsoft Visual Studio 2015 build tools.
  • Booted to UEFI shell.
  • Booted to UEFI Windows Server 2019 on M.2 NVME Slot.
  • Booted to UEFI Windows Server 2019 using SATA HDD.
  • Booted to UEFI RHEL 8.3 using SATA HDD and U2 SSD.
  • Booted to Ubuntu 18.04 on SATA slot and U2 SSD.
  • Verified PCIE LAN card detection during POST and OS.
  • Verified TPM offboard chip detection

New Features

  • None

Planned Activities

  • Sync with latest EDKII and EDKII platforms

Additional Support and Customizations

  • To get dedicated support or additional features or customizations for Aptio OpenEdition, feel free to email sales@ami.com

About

TianoCore/EDKII for UEFI implementation

License:BSD 2-Clause "Simplified" License


Languages

Language:C 100.0%