op-build update 3-12-2019

Changes Included for package sbe, branch master:
1410677 - Prasad Bg Ranganath - 2019-02-28 - PM HWP: Fix bug in stop clock procedure that effects mpipl
8fd8d14 - Prasad Bg Ranganath - 2019-02-28 - HWP:Cache stop clocks complete fix
9b5f5c3 - Srikantha Meesala - 2019-02-26 - Befor flushNVDIMM chip-op make sure all core Instructions are stopped
4a5f8dd - Jenny Huynh - 2019-02-25 - Adjust PVR Version for Axone
57905ed - Raja Das - 2019-02-25 - Axone pibmem repair logic
e8590a9 - Joachim Fenkes - 2019-02-25 - p9_sbe_npll_setup: Enable spread spectrum before starting PLL
1d73131 - Soma BhanuTej - 2019-02-25 - Update p9a_10 engd - spy name changes
5786b04 - Joachim Fenkes - 2019-02-25 - p9_sbe_tp_chiplet_init3: Mask TOD error bit 62 (osclite switched)
c9b85ed - Dan Crowell - 2019-02-25 - Add ATTR_ENABLED_OBUS_BRICKS
81c8487 - kswaroop - 2019-02-21 - PIBMEM only image
4529a95 - Joachim Fenkes - 2019-02-19 - Add tools to help measure and compare SBE image size
8a09d58 - Joachim Fenkes - 2019-02-14 - FAPI2: Multicast API 2/2: Introduce the actual multicast functions
b9b668e - Joachim Fenkes - 2019-02-13 - FAPI2: Multicast API 1/2: Platform-breaking changes
6eb2a4c - Stephen Glancy - 2019-02-13 - Updates MCA write and read timings
1ac3d5b - Tsung Yeung - 2019-02-13 - Adjust STR enter sequence to enable immediate entry
81642d2 - Joe McGill - 2019-02-13 - whitelist update for ABUS CCM
0f9a51d - Christian Geddes - 2019-02-12 - Update i2c driver for OCMB chip
9eba575 - Prasad Bg Ranganath - 2019-02-12 - PPB:New attribute ATTR_PMCR_MOST_RECENT_MODE for PMCR request
a3b2377 - Christopher M Riedl - 2019-02-12 - Implement PBA Cache-Inhibited 8B Rd/Wr Access
934ccd8 - Jenny Huynh - 2019-02-11 - Axone core initfile update to match Nimbus DD23
47f5fab - Prem Shanker Jha - 2019-02-11 - SMF: Populates unsecure HOMER with SC2 instruction.
c508f8e - Raja Das - 2019-02-06 - NVDIMM Flush update
f3b4f8e - Jenny Huynh - 2019-02-05 - Additional core inits for Nimbus DD2.3 compatibility modes
9f9f77c - Raja Das - 2019-02-05 - L1 loader Axone Pibmem repair parse
b2548e2 - Pretty Mariam Jacob - 2019-02-05 - Added Alink changes in attributes and initfiles
953dc31 - Stephen Glancy - 2019-02-05 - Updates MWD_COARSE to run multiple patterns
04c534c - Jenny Huynh - 2019-02-05 - HW477626 Dangerous Elk - Reapply for all CDD12+ risk levels
0321b16 - Raja Das - 2019-01-28 - SBE scripts to update pib repair data
e18d802 - Jenny Huynh - 2019-01-28 - HW477626 Dangerous Elk - Temporarily apply to CDD13 native only
b6b4eaf - Prem Shanker Jha - 2019-01-28 - SMF: Defined new attribute containing unsecure HOMER memory's size.
be0d09d - Jenny Huynh - 2019-01-28 - HW477626 Dangerous Elk - Applies to CDD12+
0420efe - Raja Das - 2019-01-28 - White/Black/Grey List Binary dump PSU Chip-op Support

Signed-off-by: hostboot <hostboot@us.ibm.com>
1 file changed
tree: 58ea3546a72dfe7442dd1350d46a609477268eb0
  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.

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 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/. Current POWER8 platforms include Habanero, Firestone, and Garrison. 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.

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 libxml-parser-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