op-build update 3-12-2021

Changes Included for package occ, branch master-p10:
ec2e908 - mbroyles - 2021-03-11 - Use Fmax and UT frequency from new OPPB fields

Changes Included for package sbe, branch master-p10:
56ffa4a - Rahul Batra - 2021-03-11 - PGPE: Resonant Clock
d922005 - Prasad Bg Ranganath - 2021-03-11 - PPB: Updated #V and #W fields as per v.27
9bc7f73 - Rahul Batra - 2021-03-11 - PGPE: DDS Calculation
fd12625 - Greg Still - 2021-03-11 - PM: WOF Tables structure update (Amb Condition)
7348a59 - Prasad Bg Ranganath - 2021-03-11 - PPB: p10_setup_evid procedure level 2 update
acd900a - Prasad Bg Ranganath - 2021-03-11 - P10:PPB p10_pstate_parameter_block Level 1
c03f467 - Rahul Batra - 2021-03-11 - PGPE10: Basic Pstates Set 2
64dd3f7 - Rahul Batra - 2021-03-11 - PGPE: Basic Pstates for P10
ebc070f - Rahul Batra - 2021-03-11 - PGPE: New P10 Infrastructure
df10ff3 - Greg Still - 2021-03-11 - PM: OCC<>PGPE interface for P10
3569d9c - akhis023 - 2021-03-11 - Sign SBE Base image for cronus use
971a13b - Rajees Rahman - 2021-03-11 - Fixing PKTRACE buffer size sbe parser.
1a92260 - Ryan Miller - 2021-03-11 - Adding delay in RCS deskew algorithm
d563415 - Joe McGill - 2021-03-11 - p10_fbc_utils -- ensure topology table entry for HB_BOOT_ID on primary chip

Changes Included for package hcode, branch master-p10:
e9c0709 - hostboot - 2021-03-11 - Release tag & head commit information updated for hw030821a.opmst10
98f3d42 - Greg Still - 2021-03-11 - Hcode: added PVR cheecks and DD2 mk files for PGPE and XGPE
25b448c - AMIT J TENDOLKAR - 2021-03-11 - Limit QME Error Log Id to instance based range
8c454a6 - Joe McGill - 2021-03-11 - core, nest topology table updates
68a2ff2 - Rahul Batra - 2021-03-11 - WOV-OCS Updates and Fixes (2/2)
3fb8343 - Rahul Batra - 2021-03-11 - WOV-OCS Updates and Fixes (1/2)
f1c32f9 - Rahul Batra - 2021-03-11 - WOV-OCS Updates and Fixes (1/2)
58b3ba1 - Greg Still - 2021-03-11 - Remove override from ATTR_CURRENT_SCALING_FACTOR to surface to MRW
e494257 - Amit Tendolkar - 2021-03-11 - Base commit to extract hcode elogs from SBE / Cronus
c9c3ffc - Yue Du - 2021-03-11 - HWP: Drop TC_SRAM_ABIST_MODE_DC for Scan in stopclocks
9b48d3f - Ben Gass - 2021-03-11 - Enable dd2 initfile processing and initfile updates
e857447 - Rahul Batra - 2021-03-11 - PGPE: WOF Fixes
d4c2501 - Prasad Bg Ranganath - 2021-03-11 - PM HWP: Add some FFDC data to OCC register and increase some delay
832c65b - Sumit Kumar - 2021-03-11 - QME: Adding DD20 Makefile
a129780 - Sumit Kumar - 2021-03-08 - EKB fix commit 104404 for DD-2

Changes Included for package hostboot, branch master-p10:
8fe1891 - Ilya Smirnov - 2021-03-11 - Secure Node Comm: Enable Loop 2
7e70d32 - hostboot - 2021-03-11 - Update HCODE commit to 2e45716... Add back ATTR_SEEPROM_STARTING_ADDR to
950f43b - hostboot - 2021-03-11 - Update SBE commit to 138dee8... WOV-OCS Updates and Fixes (1/2)
cd22235 - Matt Derksen - 2021-03-11 - Flush TPM queue after poisoning TPM
263d054 - Zane Shelley - 2021-03-11 - PRD: extra FFDC registers for PAU_PTL_FIR
102f736 - hostboot - 2021-03-11 - Update simics level to: 2021-03-10_f4cb31_simics.tar.gz f4cb316ded098627

Changes Included for package hostboot-binaries, branch master:
3742751 - hostboot - 2021-03-11 - UPDATE executables for the NVIDIA gpu and/or ring files for hw030821a.opmst10

Signed-off-by: hostboot <hostboot@us.ibm.com>
5 files changed
tree: 40f174020220c38a100a2f1319b4a800c8a3990a
  1. ci/
  2. dl/
  3. doc/
  4. openpower/
  5. output/
  6. .gitignore
  7. .gitmodules
  8. .travis.yml
  9. CONTRIBUTING.md
  10. LICENSE
  11. NOTICE
  12. op-build
  13. op-build-env
  14. README.md
README.md

OpenPOWER Firmware Build Environment

The OpenPOWER firmware build process uses Buildroot to create a toolchain and build the various components of the PNOR firmware, including Hostboot, Skiboot, OCC, Petitboot etc.

Documentation

https://open-power.github.io/op-build/

See the doc/ directory for documentation source. Contributions are VERY welcome!

Development

Issues, Milestones, pull requests and code hosting is on GitHub: https://github.com/open-power/op-build

See CONTRIBUTING.md for howto contribute code.

Building an image

To build an image for a Blackbird system:

git clone --recursive git@github.ibm.com:open-power/op-build.git
cd op-build
./op-build rainier_defconfig && ./op-build

There are also default configurations for other platforms in openpower/configs/. Current POWER9 platforms include Witherspoon, Boston (p9dsu), Romulus, and Zaius.

Buildroot/op-build supports both native and cross-compilation - it will automatically download and build an appropriate toolchain as part of the build process, so you don't need to worry about setting up a cross-compiler. Cross-compiling from a x86-64 host is officially supported.

The machine your building on will need Python 2.7, GCC 6.2 (or later), and a handful of other packages (see below).

Dependencies for 64-bit Ubuntu/Debian systems

  1. Install Ubuntu (>= 18.04) or Debian (>= 9) 64-bit.

  2. Enable Universe (Ubuntu only):

     sudo apt-get install software-properties-common
     sudo add-apt-repository universe
    
  3. Install the packages necessary for the build:

     sudo apt-get install cscope ctags libz-dev libexpat-dev \
       python language-pack-en texinfo gawk cpio xxd \
       build-essential g++ git bison flex unzip \
       libssl-dev libxml-simple-perl libxml-sax-perl libxml-parser-perl libxml2-dev libxml2-utils xsltproc \
       wget bc rsync
    

Dependencies for 64-bit Fedora systems

  1. Install Fedora (>= 25) 64-bit.

  2. Install the packages necessary for the build:

     sudo dnf install gcc-c++ flex bison git ctags cscope expat-devel patch \
       zlib-devel zlib-static texinfo "perl(bigint)" "perl(XML::Simple)" \
       "perl(YAML)" "perl(XML::SAX)" "perl(Fatal)" "perl(Thread::Queue)" \
       "perl(Env)" "perl(XML::LibXML)" "perl(Digest::SHA1)" "perl(ExtUtils::MakeMaker)" \
       "perl(FindBin)" "perl(English)" "perl(Time::localtime)" \
       libxml2-devel which wget unzip tar cpio python bzip2 bc findutils ncurses-devel \
       openssl-devel make libxslt vim-common lzo-devel python2 rsync hostname