op-build update 7-6-2021

Changes Included for package occ, branch master-p10:
e20b478 - mbroyles - 2021-06-30 - OCC memory bandwidth sensor fixes

Changes Included for package hcode, branch master-p10:
8ad09d3 - hostboot - 2021-07-05 - Release tag & head commit information updated for hw070521a.opmst10
375766e - Prem Shanker Jha - 2021-07-05 - PM Hcode: Moving PGPE Image Size Line - part 2'
bfc12f2 - Prem Shanker Jha - 2021-07-05 - PM Hcode: Moving PGPE Image Size Line - part 2'
21f4439 - Prem Shanker Jha - 2021-07-05 - XGPE Boot: Code infrastructure for XGPE boot.
498a6f9 - Prem Shanker Jha - 2021-07-05 - PGPE Boot: Code infrastructure for PGPE boot.
3e16f23 - hostboot - 2021-07-05 - Fix auto-mirror
82676d9 - Rahul Batra - 2021-07-05 - PGPE: Add PMSR Version Number
069ef5f - Rahul Batra - 2021-07-05 - PGPE: PVREF Error Handling Fix
cef5809 - Joe McGill - 2021-07-05 - p10_frequency_buckets -- adjust DDR 2933 mesh clock speed constant
45d245e - Thi Tran - 2021-07-05 - p10_mss_eff_grouping RAS updates
277ce49 - hostboot - 2021-06-30 - Release tag & head commit information updated for hw063021a.opmst10
8666fdb - Joe McGill - 2021-06-30 - p10.pci.scan.initfile -- updates for HW 507934
92b4773 - Chris Steffen - 2021-06-30 - P10 Dynamic VIO Setpoint
160ec69 - Greg Still - 2021-06-30 - QME: fix DDS reenablement after STOP
cd5a578 - Prem Shanker Jha - 2021-06-30 - PM Hcode: Fixed issue with block copy of auto wakeup vector.

Changes Included for package hostboot, branch master-p10:
2be2214 - Caleb Palmer - 2021-07-03 - PRD: Rename IOHS_DLP_LINK0_INFO to avoid hash collision
5249c53 - Caleb Palmer - 2021-07-02 - PRD: Enable exp_deploy_row_repairs call
f76d698 - Daniel Crowell - 2021-07-01 - Max out parallel threads for OCMB FW update
94a78c3 - Caleb Palmer - 2021-07-01 - PRD: VCM resume scrub on next row instead of next addr
846e5a5 - Caleb Palmer - 2021-07-01 - PRD: Stop after address for errors during VCM
997fd21 - Prasad Bg Ranganath - 2021-07-01 - PPB HWP: Fix pstate rounding issue
98e857a - hostboot - 2021-07-01 - Update simics level to: 2021-06-30_49ccd1_simics.tar.gz 49ccd1098d225a57
cbed2d2 - Matthew Hickman - 2021-07-01 - Added CCS execution via MCBIST engine
9c47a3e - Ryan Miller - 2021-07-01 - Updating TDR output, changing from mm to ps
a96d8e2 - Joe McGill - 2021-07-01 - p10.pci.scan.initfile -- updates for HW 507934
485692e - rajerpp1 - 2021-07-01 - Using uint8_t variable for CLOCK_POS FFDC
00021ba - Ilya Smirnov - 2021-06-30 - Don't Deconfig Peer Master Proc
24bedea - Zach Clark - 2021-06-30 - MRW processor: set the PARENT_PERVASIVE attribute on SMPGROUPs
d7736f0 - Ilya Smirnov - 2021-06-30 - Add Trace to AttrOverrideSync For nullptr Message
a08e857 - Ryan Miller - 2021-06-30 - Adding simple clock detector check
7a31630 - Louis Stermole - 2021-06-30 - Change targeted_scrub to not set MCBIST_CFG_FORCE_PAUSE_AFTER_ADDR
afb6145 - Chen Du - 2021-06-30 - Call PRD on channel failure
18e785c - Isaac Salem - 2021-06-30 - Fix for SRCs using devdesc as their custdesc
dce9d00 - Matthew Raybuck - 2021-06-30 - Dont deconfig PROCs that dont have WOF tables

Changes Included for package hostboot-binaries, branch master:
de25990 - hostboot - 2021-07-05 - UPDATE executables for the NVIDIA gpu and/or ring files for hw070521a.opmst10
eba87ed - hostboot - 2021-06-30 - UPDATE executables for the NVIDIA gpu and/or ring files for hw063021a.opmst10

Signed-off-by: hostboot <hostboot@us.ibm.com>
4 files changed
tree: 206574e7522181bf0f705c0ddb222a4783a57127
  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