op-build update 3-7-2018

Changes Included for package witherspoon-xml, branch master:
c10638f - Erich Hauptli - 2018-03-05 - Switching back to OBus bucket 1

Changes Included for package hostboot, branch master:
b456c82 - Richard J. Knight - 2018-03-06 - Modify putrRing code to pull rings from centaur hw image
82aaa7d - Zane Shelley - 2018-03-06 - PRD: initialize PRD objects for Restore DRAM Repairs
d2fd055 - Caleb Palmer - 2018-03-06 - Free mem and fix dimm trgt in bad dq accessors
18a73ba - Caleb Palmer - 2018-03-06 - PRD: Don't skip TPS after failed MemDealloc calls
25e991e - Sameer Veer - 2018-03-06 - New functions added for automating mustfix releases
3676672 - Dan Crowell - 2018-03-05 - Disable WOF for Cumulus DD1.0
36573c1 - Nick Klazynski - 2018-03-05 - Enable risklevel2, match v44 of security wiki
a41ddc5 - Soma BhanuTej - 2018-03-05 - Axone support to TP stopclocks
ef607c8 - Ben Gass - 2018-03-05 - Axone MC uses same pll/clock setup as in Cumulus.
4f5c0b9 - Jaymes Wilks - 2018-03-05 - Add TPM to the CUMULUS CDIMM model
40c3350 - Marty Gloff - 2018-03-05 - Support multiple nodes in HBRT - Support Multiple Nodes in TargetService
4823581 - Richard J. Knight - 2018-03-04 - SW414905: Mcs, Mba and L4 targets are not displayed in gard --gc mem output
b31ac24 - Matt Derksen - 2018-03-04 - Trace cleanup: do not look for parent chip on non-parent chip targets
a2dc895 - Bill Hoffa - 2018-03-04 - Deliver cumulus_cdimm pnor image to fips for Simics regression testing
ddb2012 - Bill Hoffa - 2018-03-04 - Enable Cumulus CDIMM Config
5aa7128 - Zane Shelley - 2018-03-03 - PRD: add DMD support for 3 and 6 MC channels per group
9abf4f3 - Zane Shelley - 2018-03-03 - PRD: getConnectedParent() issue in MemDealloc::dimmList()
9aa0464 - Zane Shelley - 2018-03-02 - PRD: NPU0FIR checkstop isolation issue
0dbb063 - Roland Veloz - 2018-03-02 - Fixed both NIMBUS and CUMULUS. They are now making the call to mss_thermal_init
04ba8e3 - Christian Geddes - 2018-03-02 - Update autocitest to collect all hostboot dump info prior to failure
3b5f10f - Matt Derksen - 2018-03-02 - Include WOF power mode explicitly inside tables
221f056 - Richard J. Knight - 2018-03-02 - Introduce new shared library for image processing fucntions
13dd75d - Jaymes Wilks - 2018-03-02 - Support TPM in CUMULUS standalone SIMICS boot
b6de6f7 - Andre Marin - 2018-03-02 - Split SPD Connector to SDRAM fields, add unit tests
e1e78b6 - Andre Marin - 2018-03-02 - Add Connector to SDRAM Bit Mapping to the SPD decoder and unit tests
719c8a6 - Stephen Glancy - 2018-03-02 - Adds DDR4 hybrid NV-RDIMM support
052142a - Jacob Harvey - 2018-03-02 - Add in RCD attributes for DD2 debug
b0eb26a - Andre Marin - 2018-03-02 - Add const to the end of spd decoder methods to denote unchanged mem vars
157d87d - Andre Marin - 2018-03-02 - Change base decoder, add ddr4 namespace, and common API btw modules
c50ad62 - Andre Marin - 2018-03-02 - Add base spd decoder to share among controllers
4a0eb03 - Dan Crowell - 2018-03-02 - Mirror fixup - spd_decoder_base.H
1467cbc - Caleb Palmer - 2018-03-01 - Fix target type check in bad dq helper function
8cf2925 - Brian Stegmiller - 2018-03-01 - Monitor threads for HB TI to work
2993c5b - Brian Stegmiller - 2018-03-01 - PRD: Add regs to capture list for NVLINK analysis
0c2ad40 - Zane Shelley - 2018-03-01 - PRD: removed NPUFIR workaround for DD1.0 to enable default capture
eeadfb7 - Mike Baiocchi - 2018-03-01 - Add Reset to TPM's I2C Bus for MPIPLs
a8b0039 - Nick Bofferding - 2018-03-01 - Clear FCO deconfigures before applying gard records

Changes Included for package hostboot-binaries, branch master:
f572066 - Corey Swenson - 2018-03-05 - Merge pull request #64 from cvswen/hcode_update_911
a3ede29 - Corey Swenson - 2018-03-05 - Update HCODE image to hw030518a.911
3 files changed
tree: 33456741d7a7c62024b521f4dff0d92f6b5038d6
  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-env
  13. 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.

Development

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

Mailing list: openpower-firmware@lists.ozlabs.org
Info/Subscribe: https://lists.ozlabs.org/listinfo/openpower-firmware
Archives: https://lists.ozlabs.org/pipermail/openpower-firmware/

Building an image

To build an image for a Palmetto system:

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

There are also default configurations for other platforms in openpower/configs/ such as Habanero and Firestone.

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.

Dependencies for 64-bit Ubuntu/Debian systems

  1. Install Ubuntu (>= 14.04) or Debian (>= 7.5) 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 \
       build-essential g++ git bison flex unzip \
       libssl-dev libxml-simple-perl libxml-sax-perl libxml2-dev libxml2-utils xsltproc \
       wget bc
    

Dependencies for 64-bit Fedora systems

  1. Install Fedora 25 64-bit (older Fedora should also work).

  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-bignum "perl(XML::Simple)" \
       "perl(YAML)" "perl(XML::SAX)" "perl(Fatal)" "perl(Thread::Queue)" \
       "perl(Env)" "perl(XML::LibXML)" "perl(Digest::SHA1)" libxml2-devel \
       which wget unzip tar cpio python bzip2 bc findutils ncurses-devel