Merge pull request #2680 from mine260309/dev-palmetto-enable-pnordd

palmetto config: Use PNORDD_IS_IPMI
diff --git a/.gitmodules b/.gitmodules
index e128ce3..085527d 100644
--- a/.gitmodules
+++ b/.gitmodules
@@ -1,4 +1,4 @@
 [submodule "buildroot"]
 	path = buildroot
-	branch = 2018.11-op-build
+	branch = 2019.05-op-build
 	url = https://github.com/open-power/buildroot
diff --git a/README.md b/README.md
index d19cff1..f594828 100644
--- a/README.md
+++ b/README.md
@@ -29,8 +29,7 @@
 ```
 git clone --recursive git@github.com:open-power/op-build.git
 cd op-build
-. op-build-env
-op-build palmetto_defconfig && op-build
+./op-build palmetto_defconfig && ./op-build
 ```
 
 There are also default configurations for other platforms in
@@ -43,9 +42,12 @@
 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 (>= 14.04) or Debian (>= 7.5) 64-bit.
+1. Install Ubuntu (>= 18.04) or Debian (>= 9) 64-bit.
 2. Enable Universe (Ubuntu only):
 
         sudo apt-get install software-properties-common
@@ -56,16 +58,17 @@
           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
+          wget bc rsync
 
 ### Dependencies for *64-bit* Fedora systems
 
-1. Install Fedora 25 64-bit (older Fedora should also work).
+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-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
+          which wget unzip tar cpio python bzip2 bc findutils ncurses-devel \
+          openssl-devel
 
diff --git a/buildroot b/buildroot
index 222837a..0d430a2 160000
--- a/buildroot
+++ b/buildroot
@@ -1 +1 @@
-Subproject commit 222837a45396964a1bd5a5d730509907dcdcf377
+Subproject commit 0d430a2acbdac1c7b69d8af5de2fb21f7f25213d
diff --git a/ci/Dockerfile/fedora27.x86_64 b/ci/Dockerfile/fedora27.x86_64
deleted file mode 120000
index 7c4b5e7..0000000
--- a/ci/Dockerfile/fedora27.x86_64
+++ /dev/null
@@ -1 +0,0 @@
-fedora27
\ No newline at end of file
diff --git a/ci/Dockerfile/fedora27 b/ci/Dockerfile/fedora29
similarity index 88%
rename from ci/Dockerfile/fedora27
rename to ci/Dockerfile/fedora29
index ff77500..97bbfe7 100644
--- a/ci/Dockerfile/fedora27
+++ b/ci/Dockerfile/fedora29
@@ -1,6 +1,7 @@
-FROM fedora:27
+FROM fedora:29
 RUN dnf -y remove vim-minimal
 RUN dnf -y 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 libxslt "perl(ExtUtils::MakeMaker)"
-RUN dnf -y install which wget unzip tar cpio python bzip2 bc vim redhat-lsb-core
+RUN dnf -y install which wget unzip tar cpio python bzip2 bc vim redhat-lsb-core gawk
 RUN dnf -y install findutils
 RUN dnf -y install ncurses-devel openssl-devel
+RUN dnf -y install rsync
diff --git a/ci/Dockerfile/fedora29.x86_64 b/ci/Dockerfile/fedora29.x86_64
new file mode 120000
index 0000000..597c14e
--- /dev/null
+++ b/ci/Dockerfile/fedora29.x86_64
@@ -0,0 +1 @@
+fedora29
\ No newline at end of file
diff --git a/ci/Dockerfile/ubuntu1604.ppc64le b/ci/Dockerfile/ubuntu1604.ppc64le
deleted file mode 120000
index 174b820..0000000
--- a/ci/Dockerfile/ubuntu1604.ppc64le
+++ /dev/null
@@ -1 +0,0 @@
-ubuntu1604
\ No newline at end of file
diff --git a/ci/Dockerfile/ubuntu1604.x86_64 b/ci/Dockerfile/ubuntu1604.x86_64
deleted file mode 120000
index 174b820..0000000
--- a/ci/Dockerfile/ubuntu1604.x86_64
+++ /dev/null
@@ -1 +0,0 @@
-ubuntu1604
\ No newline at end of file
diff --git a/ci/Dockerfile/ubuntu1604 b/ci/Dockerfile/ubuntu1804
similarity index 82%
rename from ci/Dockerfile/ubuntu1604
rename to ci/Dockerfile/ubuntu1804
index 5c05411..49c7b00 100644
--- a/ci/Dockerfile/ubuntu1604
+++ b/ci/Dockerfile/ubuntu1804
@@ -1,10 +1,10 @@
-FROM ubuntu:16.04
+FROM ubuntu:18.04
 # Don't ask. Ubuntu is awful.
 RUN sed -e 's/main$/main universe/' --in-place=orig /etc/apt/sources.list
 RUN DEBIAN_FRONTEND=noninteractive apt-get update && DEBIAN_FRONTEND=noninteractive apt-get install -yy cscope ctags \
   libz-dev libexpat-dev \
   python language-pack-en texinfo \
-  build-essential g++ git bison flex unzip \
+  build-essential g++ git bison flex unzip gawk \
   cpio vim-common lsb-release \
   libxml-simple-perl libxml-sax-perl libxml2-dev libxml2-utils xsltproc \
-  wget bc libssl-dev python-matplotlib python-numpy graphviz eatmydata bsdmainutils
+  wget bc libssl-dev python-matplotlib python-numpy graphviz eatmydata bsdmainutils rsync
diff --git a/ci/Dockerfile/ubuntu1804.ppc64le b/ci/Dockerfile/ubuntu1804.ppc64le
new file mode 120000
index 0000000..967c573
--- /dev/null
+++ b/ci/Dockerfile/ubuntu1804.ppc64le
@@ -0,0 +1 @@
+ubuntu1804
\ No newline at end of file
diff --git a/ci/Dockerfile/ubuntu1804.x86_64 b/ci/Dockerfile/ubuntu1804.x86_64
new file mode 120000
index 0000000..967c573
--- /dev/null
+++ b/ci/Dockerfile/ubuntu1804.x86_64
@@ -0,0 +1 @@
+ubuntu1804
\ No newline at end of file
diff --git a/ci/build.sh b/ci/build.sh
index 9359ca6..988fac0 100755
--- a/ci/build.sh
+++ b/ci/build.sh
@@ -1,6 +1,6 @@
 #!/bin/bash
 
-CONTAINERS="ubuntu1604 fedora27"
+CONTAINERS="ubuntu1804 fedora29"
 
 
 SDK_ONLY=0
@@ -45,7 +45,7 @@
       echo ""
       echo "Example:DOCKER_PREFIX=sudo ./ci/build.sh -a"
       echo -e "\tDOCKER_PREFIX=sudo ./ci/build.sh -p firestone"
-      echo -e "\tDOCKER_PREFIX=sudo ./ci/build.sh -p garrison,palmetto,openpower_p9_mambo"
+      echo -e "\tDOCKER_PREFIX=sudo ./ci/build.sh -p garrison,palmetto,opal"
       exit 1
       ;;
     r)
@@ -101,10 +101,10 @@
 		HTTPS_PROXY_ENV="ENV https_proxy $HTTPS_PROXY"
 	fi
 	if [[ -n "$http_proxy" ]]; then
-	  if [[ "$distro" == fedora27 ]]; then
+	  if [[ "$distro" == fedora29 ]]; then
 	    PROXY="RUN echo \"proxy=${http_proxy}\" >> /etc/dnf/dnf.conf"
 	  fi
-	  if [[ "$distro" == ubuntu1604 ]]; then
+	  if [[ "$distro" == ubuntu1804 ]]; then
 	    PROXY="RUN echo \"Acquire::http::Proxy \\"\"${http_proxy}/\\"\";\" > /etc/apt/apt.conf.d/000apt-cacher-ng-proxy"
 	  fi
         fi
diff --git a/doc/boot-devices.rst b/doc/boot-devices.rst
index 1f08da1..da2fd5b 100644
--- a/doc/boot-devices.rst
+++ b/doc/boot-devices.rst
@@ -35,6 +35,7 @@
 +-------------------------------+-----------------------+--------+----------------------------+
 | Exar Xframe 10Gb              | S2IO                  |        |                            |
 +-------------------------------+-----------------------+--------+----------------------------+
+| Intel PRO/1000 PCIe           | E1000E                |        |                            |
 | Intel PRO/1000                | E1000                 | Qemu   | stewart@linux.vnet.ibm.com |
 +-------------------------------+-----------------------+--------+----------------------------+
 | Intel PRO/10GbE               | IXGB                  |        |                            |
diff --git a/doc/release-notes/index.rst b/doc/release-notes/index.rst
index d5daa5c..dc1fe70 100644
--- a/doc/release-notes/index.rst
+++ b/doc/release-notes/index.rst
@@ -45,6 +45,8 @@
    v2.0.11
    v2.0.12
    v2.0.13
+   v2.0.14
+   v2.0.15
 
 v2.1
 ----
@@ -63,3 +65,14 @@
 
    v2.2-rc1
    v2.2-rc2
+   v2.2
+
+v2.3
+----
+
+ .. toctree::
+   :maxdepth: 1
+
+   v2.3-rc1 
+   v2.3-rc2
+   v2.3
diff --git a/doc/release-notes/v2.0.14.rst b/doc/release-notes/v2.0.14.rst
new file mode 100644
index 0000000..3c72523
--- /dev/null
+++ b/doc/release-notes/v2.0.14.rst
@@ -0,0 +1,357 @@
+Release Notes for OpenPower Firmware v2.0.14
+============================================
+
+Updated Packages
+----------------
+
++------------------+------------------+-------------------+--------------------------------------+
+| Package          | Old Version      | New Version       | Platforms                            |
++==================+==================+===================+======================================+
+| hcode            | hw020319a.op920  | hw022419a.op920   | witherspoon, p9dsu, zaius, romulus   |
++------------------+------------------+-------------------+--------------------------------------+
+| hostboot         | 753249ad9bd9     | 879d21d3cd70      | witherspoon, p9dsu, zaius, romulus   |
++------------------+------------------+-------------------+--------------------------------------+
+| hostboot-binarie | hw020319a.op920  | hw022419a.op920   | witherspoon, p9dsu, zaius, habanero, |
+| s                |                  |                   | garrison, barreleye, firestone,      |
+|                  |                  |                   | palmetto, vesnin, romulus            |
++------------------+------------------+-------------------+--------------------------------------+
+| machine-xml      | 74b5ebb1875e     | 2d9c9f0ebce1      | witherspoon                          |
++------------------+------------------+-------------------+--------------------------------------+
+| occ              | 39d77452d00c     | 8fa385457a34      | witherspoon, p9dsu, zaius, zz,       |
+|                  |                  |                   | romulus                              |
++------------------+------------------+-------------------+--------------------------------------+
+| skiboot          | v6.0.16          | v6.0.18           | witherspoon, p9dsu, zaius, habanero, |
+|                  |                  |                   | firenze, garrison, barreleye,        |
+|                  |                  |                   | openpower_mambo, witherspoon_dev,    |
+|                  |                  |                   | pseries, firestone, palmetto,        |
+|                  |                  |                   | openpower_p9_mambo, vesnin, zz,      |
+|                  |                  |                   | romulus                              |
++------------------+------------------+-------------------+--------------------------------------+
+
+Package: hcode
+--------------
+
+`Repository <https://github.com/open-power/hcode>`__
+
+Patches
+~~~~~~~
+
+Commits
+~~~~~~~
+
+hostboot (21):
+
+-  `2172848cf283 <https://github.com/open-power/hcode/commit/2172848cf283>`__ Release tag
+   information updated for hw020419a.op920
+-  `00f61a077e44 <https://github.com/open-power/hcode/commit/00f61a077e44>`__ Release tag
+   information updated for hw020519a.op920
+-  `35bd55541bfa <https://github.com/open-power/hcode/commit/35bd55541bfa>`__ Release tag
+   information updated for hw020619a.op920
+-  `f6276913a4f4 <https://github.com/open-power/hcode/commit/f6276913a4f4>`__ Release tag
+   information updated for hw020719a.op920
+-  `26b2f1a3b2ef <https://github.com/open-power/hcode/commit/26b2f1a3b2ef>`__ Release tag
+   information updated for hw020819a.op920
+-  `4fb08ebfbe04 <https://github.com/open-power/hcode/commit/4fb08ebfbe04>`__ Release tag
+   information updated for hw020919a.op920
+-  `bb49f3c5a19a <https://github.com/open-power/hcode/commit/bb49f3c5a19a>`__ Release tag
+   information updated for hw021019a.op920
+-  `57ece14f413b <https://github.com/open-power/hcode/commit/57ece14f413b>`__ Release tag
+   information updated for hw021119a.op920
+-  `5172ed110220 <https://github.com/open-power/hcode/commit/5172ed110220>`__ Release tag
+   information updated for hw021219a.op920
+-  `2f4a909a646a <https://github.com/open-power/hcode/commit/2f4a909a646a>`__ Release tag
+   information updated for hw021319a.op920
+-  `e78ba0a2b89d <https://github.com/open-power/hcode/commit/e78ba0a2b89d>`__ Release tag
+   information updated for hw021419a.op920
+-  `67da000d72e9 <https://github.com/open-power/hcode/commit/67da000d72e9>`__ Release tag
+   information updated for hw021519a.op920
+-  `f398c01cab7b <https://github.com/open-power/hcode/commit/f398c01cab7b>`__ Release tag
+   information updated for hw021619a.op920
+-  `acd5701c7dbe <https://github.com/open-power/hcode/commit/acd5701c7dbe>`__ Release tag
+   information updated for hw021719a.op920
+-  `b67d5512af01 <https://github.com/open-power/hcode/commit/b67d5512af01>`__ Release tag
+   information updated for hw021819a.op920
+-  `732d24bdf26f <https://github.com/open-power/hcode/commit/732d24bdf26f>`__ Release tag
+   information updated for hw021919a.op920
+-  `1623463840ba <https://github.com/open-power/hcode/commit/1623463840ba>`__ Release tag
+   information updated for hw022019a.op920
+-  `ff08e55b5b6a <https://github.com/open-power/hcode/commit/ff08e55b5b6a>`__ Release tag
+   information updated for hw022119a.op920
+-  `48d2d4b83b76 <https://github.com/open-power/hcode/commit/48d2d4b83b76>`__ Release tag
+   information updated for hw022219a.op920
+-  `26bf384a68ee <https://github.com/open-power/hcode/commit/26bf384a68ee>`__ Release tag
+   information updated for hw022319a.op920
+-  `b2aa713cda5b <https://github.com/open-power/hcode/commit/b2aa713cda5b>`__ Release tag
+   information updated for hw022419a.op920
+
+Package: hostboot
+-----------------
+
+`Repository <https://github.com/open-power/hostboot>`__
+
+.. _patches-2.0.14-1:
+
+Patches
+~~~~~~~
+
+-  `0001-Fix-RC09-ODT-errors-on-Nimbus-dual-drop-configs.patch <https://github.com/open-power/op-build/tree/HEAD/openpower/package/hostboot/0001-Fix-RC09-ODT-errors-on-Nimbus-dual-drop-configs.patch>`__
+-  `0007-Disable-warnings-that-crop-up-a-lot-with-GCC6.patch <https://github.com/open-power/op-build/tree/HEAD/openpower/package/hostboot/0007-Disable-warnings-that-crop-up-a-lot-with-GCC6.patch>`__
+-  `hostboot-1020-Revert-jgr17071200-Removed-pdwn-settings.patch <https://github.com/open-power/op-build/tree/HEAD/openpower/package/hostboot/hostboot-1020-Revert-jgr17071200-Removed-pdwn-settings.patch>`__
+
+.. _commits-2.0.14-1:
+
+Commits
+~~~~~~~
+
+Chris Cain (1):
+
+-  `b61625064744 <https://github.com/open-power/hostboot/commit/b61625064744>`__ HTMGT: Change OCC
+   logs to info while recovery is still being attempted
+
+Corey Swenson (1):
+
+-  `3c093dc41a70 <https://github.com/open-power/hostboot/commit/3c093dc41a70>`__ Use virtual address
+   buffer to read mvpd rings
+
+Dan Crowell (2):
+
+-  `8a977a1bbb12 <https://github.com/open-power/hostboot/commit/8a977a1bbb12>`__ Move libconsole
+   into base image
+-  `39cba205cc2f <https://github.com/open-power/hostboot/commit/39cba205cc2f>`__ Force reboot
+   without visible errors for core wakeup failure
+
+Daniel M. Crowell (2):
+
+-  `394c3ff5002b <https://github.com/open-power/hostboot/commit/394c3ff5002b>`__ Revert “HW474117
+   WAT to allow firmware to disable bypass on port”
+-  `603a666e67c8 <https://github.com/open-power/hostboot/commit/603a666e67c8>`__ Revert “PRD: Nimbus
+   symbol mark performance workaround”
+
+Dean Sanner (1):
+
+-  `4c0019e57fc4 <https://github.com/open-power/hostboot/commit/4c0019e57fc4>`__ Find cpu struct
+   directly in doorbell interrupt handler
+
+Greg Still (1):
+
+-  `22261c1edce7 <https://github.com/open-power/hostboot/commit/22261c1edce7>`__ PM: fix cable pull
+   issue in clearing clock sync upon PM Complex Reset
+
+Jaymes Wilks (1):
+
+-  `00a5a36ed2c1 <https://github.com/open-power/hostboot/commit/00a5a36ed2c1>`__ Add TPM FRU
+   Inventory Record Data
+
+Nick Bofferding (3):
+
+-  `236d2178bd66 <https://github.com/open-power/hostboot/commit/236d2178bd66>`__ Enhance RAS for
+   case where boot firmware image is too big to load
+-  `d23603024bc4 <https://github.com/open-power/hostboot/commit/d23603024bc4>`__ Only allow key
+   transition in istep 10.2
+-  `879d21d3cd70 <https://github.com/open-power/hostboot/commit/879d21d3cd70>`__ Support parsing
+   call home informational eSELs with debug tooling
+
+Package: occ
+------------
+
+`Repository <https://github.com/open-power/occ>`__
+
+.. _patches-2.0.14-2:
+
+Patches
+~~~~~~~
+
+.. _commits-2.0.14-2:
+
+Commits
+~~~~~~~
+
+Chris Cain (1):
+
+-  `8fa385457a34 <https://github.com/open-power/occ/commit/8fa385457a34>`__ Add PGPE traces and data
+   to OCC logs
+
+Package: skiboot
+----------------
+
+`Repository <https://github.com/open-power/skiboot>`__
+
+.. _patches-2.0.14-3:
+
+Patches
+~~~~~~~
+
+.. _commits-2.0.14-3:
+
+Commits
+~~~~~~~
+
+Alexey Kardashevskiy (2):
+
+-  `84baad3ee52f <https://github.com/open-power/skiboot/commit/84baad3ee52f>`__ cpufeatures: Always
+   advertise POWER8NVL as DD2
+-  `4d761a3bf034 <https://github.com/open-power/skiboot/commit/4d761a3bf034>`__ hw/phb3/naples:
+   Disable D-states
+
+Andrew Jeffery (48):
+
+-  `d565ef89fbc9 <https://github.com/open-power/skiboot/commit/d565ef89fbc9>`__ libflash/test:
+   Generate header dependencies for tests
+-  `ef7e13706e40 <https://github.com/open-power/skiboot/commit/ef7e13706e40>`__ test-ipmi-hiomap:
+   Add ability to delay some IPMI messages
+-  `dab117481e66 <https://github.com/open-power/skiboot/commit/dab117481e66>`__ test-ipmi-hiomap:
+   Dump unexpected IPMI messages
+-  `cfaabaeb605d <https://github.com/open-power/skiboot/commit/cfaabaeb605d>`__ test-ipmi-hiomap:
+   Ensure the completion code is set
+-  `ea7d8f1ae801 <https://github.com/open-power/skiboot/commit/ea7d8f1ae801>`__ test-ipmi-hiomap:
+   Print some information on early
+-  `2c8497036812 <https://github.com/open-power/skiboot/commit/2c8497036812>`__
+   libflash/ipmi-hiomap: Fix leak of msg in callback
+-  `0875e9fed8d0 <https://github.com/open-power/skiboot/commit/0875e9fed8d0>`__
+   libflash/ipmi-hiomap: Overhaul error handling
+-  `0576b743bf18 <https://github.com/open-power/skiboot/commit/0576b743bf18>`__
+   libflash/ipmi-hiomap: Overhaul event handling
+-  `5117b2c56d65 <https://github.com/open-power/skiboot/commit/5117b2c56d65>`__
+   libflash/ipmi-hiomap: Remove unused close handling
+-  `bdf19fbcb226 <https://github.com/open-power/skiboot/commit/bdf19fbcb226>`__
+   libflash/ipmi-hiomap: Enforce message size for empty response
+-  `01ab517e8065 <https://github.com/open-power/skiboot/commit/01ab517e8065>`__ test-ipmi-hiomap:
+   Add protocol-persistent-error test
+-  `bb3f88bb5df6 <https://github.com/open-power/skiboot/commit/bb3f88bb5df6>`__ test-ipmi-hiomap:
+   Add read-one-block test
+-  `aeb4b5e9cab8 <https://github.com/open-power/skiboot/commit/aeb4b5e9cab8>`__ test-ipmi-hiomap:
+   Add read-two-blocks test
+-  `b3fa96125e20 <https://github.com/open-power/skiboot/commit/b3fa96125e20>`__ test-ipmi-hiomap:
+   Add event-before-read
+-  `cb87c68ac909 <https://github.com/open-power/skiboot/commit/cb87c68ac909>`__ test-ipmi-hiomap:
+   Add event-during-read test
+-  `4f47d648b62b <https://github.com/open-power/skiboot/commit/4f47d648b62b>`__ test-ipmi-hiomap:
+   Add write-one-block test
+-  `fd5420df2cc3 <https://github.com/open-power/skiboot/commit/fd5420df2cc3>`__ test-ipmi-hiomap:
+   Add write-two-blocks test
+-  `9f3d3d442d27 <https://github.com/open-power/skiboot/commit/9f3d3d442d27>`__ test-ipmi-hiomap:
+   Add event-before-write test
+-  `517028357911 <https://github.com/open-power/skiboot/commit/517028357911>`__ test-ipmi-hiomap:
+   Add event-during-write test
+-  `9ef913cd3f52 <https://github.com/open-power/skiboot/commit/9ef913cd3f52>`__ test-ipmi-hiomap:
+   Add erase-one-block test
+-  `54c3d1b7e709 <https://github.com/open-power/skiboot/commit/54c3d1b7e709>`__ test-ipmi-hiomap:
+   Add erase-two-blocks test
+-  `414f8d6c20e5 <https://github.com/open-power/skiboot/commit/414f8d6c20e5>`__ test-ipmi-hiomap:
+   Add event-before-erase test
+-  `372d6290f6ef <https://github.com/open-power/skiboot/commit/372d6290f6ef>`__ test-ipmi-hiomap:
+   Add event-during-erase
+-  `7722b3fab3ac <https://github.com/open-power/skiboot/commit/7722b3fab3ac>`__ test-ipmi-hiomap:
+   Add bad-sequence test
+-  `243b5e276691 <https://github.com/open-power/skiboot/commit/243b5e276691>`__ test-ipmi-hiomap:
+   Add action-error test
+-  `4591893d3dd2 <https://github.com/open-power/skiboot/commit/4591893d3dd2>`__ test-ipmi-hiomap:
+   Add get-flash-info test
+-  `59fef8a367d6 <https://github.com/open-power/skiboot/commit/59fef8a367d6>`__ test-ipmi-hiomap:
+   Add get-info-error test
+-  `fda66a4a84d7 <https://github.com/open-power/skiboot/commit/fda66a4a84d7>`__ test-ipmi-hiomap:
+   Add get-flash-info-error test
+-  `5ad9ac6f588a <https://github.com/open-power/skiboot/commit/5ad9ac6f588a>`__ test-ipmi-hiomap:
+   Add create-read-window-error test
+-  `203470f8524b <https://github.com/open-power/skiboot/commit/203470f8524b>`__ test-ipmi-hiomap:
+   Add create-write-window-error test
+-  `ddeb048bec98 <https://github.com/open-power/skiboot/commit/ddeb048bec98>`__ test-ipmi-hiomap:
+   Add mark-dirty-error test
+-  `70651e1a4d8d <https://github.com/open-power/skiboot/commit/70651e1a4d8d>`__ test-ipmi-hiomap:
+   Add flush-error test
+-  `f495309913ec <https://github.com/open-power/skiboot/commit/f495309913ec>`__ test-ipmi-hiomap:
+   Add ack-error test
+-  `634a61d0cad1 <https://github.com/open-power/skiboot/commit/634a61d0cad1>`__ test-ipmi-hiomap:
+   Add erase-error test
+-  `4d90d02baaa7 <https://github.com/open-power/skiboot/commit/4d90d02baaa7>`__ test-ipmi-hiomap:
+   Add ack-malformed tests
+-  `51248765629b <https://github.com/open-power/skiboot/commit/51248765629b>`__ test-ipmi-hiomap:
+   Add get-info-malformed tests
+-  `f7f20ebc477e <https://github.com/open-power/skiboot/commit/f7f20ebc477e>`__ test-ipmi-hiomap:
+   Add get-flash-info-malformed tests
+-  `a94951a93fd3 <https://github.com/open-power/skiboot/commit/a94951a93fd3>`__ test-ipmi-hiomap:
+   Add create-read-window-malformed tests
+-  `79fe8d1402a9 <https://github.com/open-power/skiboot/commit/79fe8d1402a9>`__ test-ipmi-hiomap:
+   Add create-write-window-malformed tests
+-  `6ae5477049f6 <https://github.com/open-power/skiboot/commit/6ae5477049f6>`__ test-ipmi-hiomap:
+   Add mark-dirty-malformed tests
+-  `7f809abfae39 <https://github.com/open-power/skiboot/commit/7f809abfae39>`__ test-ipmi-hiomap:
+   Add flush-malformed tests
+-  `e5033fce6b6f <https://github.com/open-power/skiboot/commit/e5033fce6b6f>`__ test-ipmi-hiomap:
+   Add erase-malformed tests
+-  `01208d393d40 <https://github.com/open-power/skiboot/commit/01208d393d40>`__ test-ipmi-hiomap:
+   Add protocol-recovery-failure-ack test
+-  `f328d44b13a5 <https://github.com/open-power/skiboot/commit/f328d44b13a5>`__ test-ipmi-hiomap:
+   Add protocol-recovery-failure-get-info test
+-  `2a8a9179abc4 <https://github.com/open-power/skiboot/commit/2a8a9179abc4>`__ test-ipmi-hiomap:
+   Add protocol-recovery-get-flash-info-failure test
+-  `9ec4f741dda4 <https://github.com/open-power/skiboot/commit/9ec4f741dda4>`__ test-ipmi-hiomap:
+   Add read-one-block-twice test
+-  `311991fe40bc <https://github.com/open-power/skiboot/commit/311991fe40bc>`__ test-ipmi-hiomap:
+   Add write-one-block-twice test
+-  `f4554864bef3 <https://github.com/open-power/skiboot/commit/f4554864bef3>`__ test-ipmi-hiomap:
+   Add erase-one-block-twice test
+
+Nicholas Piggin (1):
+
+-  `59d9ab63b397 <https://github.com/open-power/skiboot/commit/59d9ab63b397>`__ core/cpu: HID update
+   race
+
+Shilpasri G Bhat (1):
+
+-  `a3c884939561 <https://github.com/open-power/skiboot/commit/a3c884939561>`__ powercap: occ: Fix
+   the powercapping range allowed for user
+
+Stewart Smith (3):
+
+-  `1a90d5922fcf <https://github.com/open-power/skiboot/commit/1a90d5922fcf>`__ firmware-versions:
+   Add test case for parsing VERSION
+-  `cc7945c73469 <https://github.com/open-power/skiboot/commit/cc7945c73469>`__ hdata/test:
+   workaround dtc bugs
+-  `229ed05931b5 <https://github.com/open-power/skiboot/commit/229ed05931b5>`__ skiboot v6.0.17
+   release notes
+
+Vasant Hegde (10):
+
+-  `f23e2102374a <https://github.com/open-power/skiboot/commit/f23e2102374a>`__ hdata: Fix dtc
+   warnings
+-  `5a157d1e4293 <https://github.com/open-power/skiboot/commit/5a157d1e4293>`__ core/ipmi: Improve
+   error message
+-  `e5ee11f6e796 <https://github.com/open-power/skiboot/commit/e5ee11f6e796>`__ core/opal: Print PIR
+   value in exit path
+-  `ac9e1fdb6115 <https://github.com/open-power/skiboot/commit/ac9e1fdb6115>`__ ipmi/power: Fix
+   system reboot issue
+-  `0d8a56aee77c <https://github.com/open-power/skiboot/commit/0d8a56aee77c>`__ hw/bt: Fix message
+   retry handler
+-  `57b6b87a7810 <https://github.com/open-power/skiboot/commit/57b6b87a7810>`__ hw/bt: Add backend
+   interface to disable ipmi message retry option
+-  `53d0266881ba <https://github.com/open-power/skiboot/commit/53d0266881ba>`__ hw/bt: Introduce
+   separate list for synchronous messages
+-  `184f81559530 <https://github.com/open-power/skiboot/commit/184f81559530>`__ core/ipmi: Add ipmi
+   sync messages to top of the list
+-  `1d1a977916b6 <https://github.com/open-power/skiboot/commit/1d1a977916b6>`__ hw/bt: Do not
+   disable ipmi message retry during OPAL boot
+-  `b90de1aae03c <https://github.com/open-power/skiboot/commit/b90de1aae03c>`__ skiboot v6.0.18
+   release notes
+
+Package: witherspoon-xml
+------------------------
+
+`Repository <https://github.com/open-power/witherspoon-xml>`__
+
+.. _patches-2.0.14-4:
+
+Patches
+~~~~~~~
+
+.. _commits-2.0.14-4:
+
+Commits
+~~~~~~~
+
+Erich Hauptli (2):
+
+-  `bea477bf4f9a <https://github.com/open-power/witherspoon-xml/commit/bea477bf4f9a>`__ Fixing GPU
+   I2C Addresses
+-  `2d9c9f0ebce1 <https://github.com/open-power/witherspoon-xml/commit/2d9c9f0ebce1>`__ Adding in
+   TPM FRU info
diff --git a/doc/release-notes/v2.0.15.rst b/doc/release-notes/v2.0.15.rst
new file mode 100644
index 0000000..c4fa77b
--- /dev/null
+++ b/doc/release-notes/v2.0.15.rst
@@ -0,0 +1,136 @@
+Release Notes for OpenPower Firmware v2.0.15
+============================================
+
+Updated Packages
+----------------
+
++-------------------+------------------+---------------+-----------------------------------------+
+| Package           | Old Version      | New Version   | Platforms                               |
++===================+==================+===============+=========================================+
+| hcode             | hw022419a.op920  | hw031819a.op9 | witherspoon, p9dsu, zaius, romulus      |
+|                   |                  | 20            |                                         |
++-------------------+------------------+---------------+-----------------------------------------+
+| hostboot          | 879d21d3cd70f    | c00d44a9ad03  | witherspoon, p9dsu, zaius, romulus      |
++-------------------+------------------+---------------+-----------------------------------------+
+| hostboot-binaries | hw022419a.op920  | hw031819a.op9 | witherspoon, p9dsu, zaius, habanero,    |
+|                   |                  | 20            | garrison, barreleye, firestone,         |
+|                   |                  |               | palmetto, vesnin, romulus               |
++-------------------+------------------+---------------+-----------------------------------------+
+| sbe               | 9515af0355bc0    | b6ee17b168d8  | witherspoon, p9dsu, zaius, romulus      |
++-------------------+------------------+---------------+-----------------------------------------+
+| skiboot           | v6.0.18          | v6.0.19       | witherspoon, p9dsu, zaius, habanero,    |
+|                   |                  |               | firenze, garrison, barreleye,           |
+|                   |                  |               | openpower_mambo, witherspoon_dev,       |
+|                   |                  |               | pseries, firestone, palmetto,           |
+|                   |                  |               | openpower_p9_mambo, vesnin, zz, romulus |
++-------------------+------------------+---------------+-----------------------------------------+
+
+Package: hcode
+--------------
+
+`Repository <https://github.com/open-power/hcode>`__
+
+Patches
+~~~~~~~
+
+Commits
+~~~~~~~
+
+hostboot (10):
+
+-  `8dda62b91c31 <https://github.com/open-power/hcode/commit/8dda62b91c31>`__ Release tag
+   information updated for hw030819a.op920
+-  `efaccccbfa44 <https://github.com/open-power/hcode/commit/efaccccbfa44>`__ Release tag
+   information updated for hw030919a.op920
+-  `1113169cfa3c <https://github.com/open-power/hcode/commit/1113169cfa3c>`__ Release tag
+   information updated for hw031019a.op920
+-  `e6b6afd59e41 <https://github.com/open-power/hcode/commit/e6b6afd59e41>`__ Release tag
+   information updated for hw031119a.op920
+-  `5efba036dd35 <https://github.com/open-power/hcode/commit/5efba036dd35>`__ Release tag
+   information updated for hw031219a.op920
+-  `ebc36ceff4a7 <https://github.com/open-power/hcode/commit/ebc36ceff4a7>`__ Release tag
+   information updated for hw031319a.op920
+-  `c4a91021e44f <https://github.com/open-power/hcode/commit/c4a91021e44f>`__ Release tag
+   information updated for hw031419a.op920
+-  `68ae13f9635c <https://github.com/open-power/hcode/commit/68ae13f9635c>`__ Release tag
+   information updated for hw031619a.op920
+-  `60cb47dae2ca <https://github.com/open-power/hcode/commit/60cb47dae2ca>`__ Release tag
+   information updated for hw031719a.op920
+-  `478978b7819d <https://github.com/open-power/hcode/commit/478978b7819d>`__ Release tag
+   information updated for hw031819a.op920
+
+Package: hostboot
+-----------------
+
+`Repository <https://github.com/open-power/hostboot>`__
+
+.. _patches-1:
+
+Patches
+~~~~~~~
+
+-  `0001-Fix-RC09-ODT-errors-on-Nimbus-dual-drop-configs.patch <https://github.com/open-power/op-build/tree/HEAD/openpower/package/hostboot/0001-Fix-RC09-ODT-errors-on-Nimbus-dual-drop-configs.patch>`__
+-  `0007-Disable-warnings-that-crop-up-a-lot-with-GCC6.patch <https://github.com/open-power/op-build/tree/HEAD/openpower/package/hostboot/0007-Disable-warnings-that-crop-up-a-lot-with-GCC6.patch>`__
+-  `hostboot-1020-Revert-jgr17071200-Removed-pdwn-settings.patch <https://github.com/open-power/op-build/tree/HEAD/openpower/package/hostboot/hostboot-1020-Revert-jgr17071200-Removed-pdwn-settings.patch>`__
+
+.. _commits-1:
+
+Commits
+~~~~~~~
+
+Christian Geddes (1):
+
+-  `a40b4b4f688d <https://github.com/open-power/hostboot/commit/a40b4b4f688d>`__ Load HWAS module
+   earlier in ext init tasks
+
+Jenny Huynh (1):
+
+-  `c00d44a9ad03 <https://github.com/open-power/hostboot/commit/c00d44a9ad03>`__ Mask NMMUFIR(7),
+   NMMUFIR(36:39)
+
+Package: sbe
+------------
+
+`Repository <https://github.com/open-power/sbe>`__
+
+.. _patches-2:
+
+Patches
+~~~~~~~
+
+.. _commits-2:
+
+Commits
+~~~~~~~
+
+Jenny Huynh (1):
+
+-  `b6ee17b168d8 <https://github.com/open-power/sbe/commit/b6ee17b168d8>`__ Mask NMMUFIR(7),
+   NMMUFIR(36:39)
+
+Package: skiboot
+----------------
+
+`Repository <https://github.com/open-power/skiboot>`__
+
+.. _patches-3:
+
+Patches
+~~~~~~~
+
+.. _commits-3:
+
+Commits
+~~~~~~~
+
+Deb McLemore (2):
+
+-  `6fda4bc333e4 <https://github.com/open-power/skiboot/commit/6fda4bc333e4>`__ p9dsu: Fix slot
+   labels for p9dsu2u
+-  `af316fed0205 <https://github.com/open-power/skiboot/commit/af316fed0205>`__ p9dsu: Undo slot
+   label name changes
+
+Vasant Hegde (1):
+
+-  `3d135fe39a6a <https://github.com/open-power/skiboot/commit/3d135fe39a6a>`__ skiboot v6.0.19
+   release notes
diff --git a/doc/release-notes/v2.2.rst b/doc/release-notes/v2.2.rst
new file mode 100644
index 0000000..db64abf
--- /dev/null
+++ b/doc/release-notes/v2.2.rst
@@ -0,0 +1,5159 @@
+Release Notes for OpenPower Firmware v2.2
+=========================================
+
+op-build v2.2 was released on Friday March 8th, 2019. It is the new stable release of op-build,
+following on from v2.1, first released on July 12th, 2018.
+
+op-build v2.2 contains all the fixes as of op-build v2.0.14, and we expect to continue to do stable
+2.0.y releases of v2.0 into the forseeable future. We do not expect to do any stable releases of
+v2.1.
+
+There have been a lot of changes since op-build v2.1 (it’s been a long time between drinks), we hope
+to return to a more regular schedule of releases going forward, with op-build v2.3 following very
+shortly after v2.2, before moving to what we think will be a 3 month release cycle. We’ve been
+spending some time between firmware teams inside IBM to plan for something we can reliably commit
+to, and prevent these long breaks in the future.
+
+Over op-build v2.1, this release contains the following changes:
+
+Removed platforms
+-----------------
+
+-  openpower_p9_mambo Removed as it was identical to the openpower_mambo platform.
+
+Updated Packages
+----------------
+
++-------------------+---------------+-----------------+--------------------------------------------+
+| Package           | Old Version   | New Version     | Platforms                                  |
++===================+===============+=================+============================================+
+| busybox           | 1.28.4        | 1.29.3          | witherspoon, p9dsu, zaius, habanero,       |
+|                   |               |                 | firenze, garrison, barreleye,              |
+|                   |               |                 | openpower_mambo, witherspoon_dev, pseries, |
+|                   |               |                 | firestone, palmetto, vesnin, zz, romulus   |
++-------------------+---------------+-----------------+--------------------------------------------+
+| dtc               | 1.4.4         | 1.4.7           | witherspoon, p9dsu, zaius, habanero,       |
+|                   |               |                 | firenze, garrison, barreleye,              |
+|                   |               |                 | openpower_mambo, witherspoon_dev, pseries, |
+|                   |               |                 | firestone, palmetto, vesnin, zz, romulus   |
++-------------------+---------------+-----------------+--------------------------------------------+
+| elfutils          | 0.169         | 0.174           | witherspoon, p9dsu, zaius, habanero,       |
+|                   |               |                 | firenze, garrison, barreleye,              |
+|                   |               |                 | openpower_mambo, witherspoon_dev, pseries, |
+|                   |               |                 | firestone, palmetto, vesnin, zz, romulus   |
++-------------------+---------------+-----------------+--------------------------------------------+
+| ethtool           | 4.15          | 4.16            | witherspoon, p9dsu, zaius, habanero,       |
+|                   |               |                 | firenze, garrison, barreleye,              |
+|                   |               |                 | openpower_mambo, witherspoon_dev, pseries, |
+|                   |               |                 | firestone, palmetto, vesnin, zz, romulus   |
++-------------------+---------------+-----------------+--------------------------------------------+
+| glibc             | glibc-2.27-57 | glibc-2.28-69-g | witherspoon, p9dsu, zaius, habanero,       |
+|                   | -g6c99e37f    | 1e5c5303        | firenze, garrison, barreleye,              |
+|                   |               |                 | openpower_mambo, witherspoon_dev, pseries, |
+|                   |               |                 | firestone, palmetto, vesnin, zz, romulus   |
++-------------------+---------------+-----------------+--------------------------------------------+
+| hcode             | hw061618a.920 | hw022319a.930   | witherspoon, p9dsu, zaius,                 |
+|                   |               |                 | witherspoon_dev, romulus                   |
++-------------------+---------------+-----------------+--------------------------------------------+
+| hostboot          | 876b79aacd9b  | 37e67698be56    | witherspoon, p9dsu, zaius, romulus         |
++-------------------+---------------+-----------------+--------------------------------------------+
+| hostboot          | 16f11c2e9b10  | 37e67698be56    | witherspoon_dev                            |
++-------------------+---------------+-----------------+--------------------------------------------+
+| hostboot-binaries | hw070718b.920 | hw021419a.930   | witherspoon, p9dsu, zaius, habanero,       |
+|                   |               |                 | garrison, barreleye, witherspoon_dev,      |
+|                   |               |                 | firestone, palmetto, vesnin, romulus       |
++-------------------+---------------+-----------------+--------------------------------------------+
+| hostboot-p8       | d3025f5d7ddd  | a3b0cb929cbf    | habanero, garrison, barreleye, firestone,  |
+|                   |               |                 | palmetto, vesnin                           |
++-------------------+---------------+-----------------+--------------------------------------------+
+| ima-catalog       | 6a1fd25458a4  | 3d30c7aca6c8    | witherspoon, p9dsu, zaius, habanero,       |
+|                   |               |                 | garrison, barreleye, witherspoon_dev,      |
+|                   |               |                 | firestone, palmetto, vesnin, romulus       |
++-------------------+---------------+-----------------+--------------------------------------------+
+| kmod              | 24            | 25              | witherspoon, p9dsu, zaius, habanero,       |
+|                   |               |                 | firenze, garrison, barreleye,              |
+|                   |               |                 | openpower_mambo, witherspoon_dev, pseries, |
+|                   |               |                 | firestone, palmetto, vesnin, zz, romulus   |
++-------------------+---------------+-----------------+--------------------------------------------+
+| libflash          | v5.10.1       | v6.2            | witherspoon, p9dsu, zaius, habanero,       |
+|                   |               |                 | firenze, garrison, barreleye,              |
+|                   |               |                 | witherspoon_dev, pseries, firestone,       |
+|                   |               |                 | palmetto, vesnin, zz, romulus              |
++-------------------+---------------+-----------------+--------------------------------------------+
+| linux             | 4.17.4        | 4.19.26         | witherspoon, p9dsu, zaius, habanero,       |
+|                   |               |                 | firenze, garrison, barreleye,              |
+|                   |               |                 | openpower_mambo, witherspoon_dev, pseries, |
+|                   |               |                 | firestone, palmetto, vesnin, zz, romulus   |
++-------------------+---------------+-----------------+--------------------------------------------+
+| linux-firmware    | 65b1c68c63f9  | 44d4fca9922a    | witherspoon, p9dsu, zaius, habanero,       |
+|                   |               |                 | firenze, garrison, barreleye,              |
+|                   |               |                 | openpower_mambo, witherspoon_dev, pseries, |
+|                   |               |                 | firestone, palmetto, zz, romulus           |
++-------------------+---------------+-----------------+--------------------------------------------+
+| linux-headers     | 4.17.4        | 4.19.26         | witherspoon, p9dsu, zaius, habanero,       |
+|                   |               |                 | firenze, garrison, barreleye,              |
+|                   |               |                 | openpower_mambo, witherspoon_dev, pseries, |
+|                   |               |                 | firestone, palmetto, vesnin, zz, romulus   |
++-------------------+---------------+-----------------+--------------------------------------------+
+| lvm2              | 2.02.173      | 2.02.180        | witherspoon, p9dsu, zaius, habanero,       |
+|                   |               |                 | firenze, garrison, barreleye,              |
+|                   |               |                 | openpower_mambo, witherspoon_dev, pseries, |
+|                   |               |                 | firestone, palmetto, vesnin, zz, romulus   |
++-------------------+---------------+-----------------+--------------------------------------------+
+| machine-xml       | 2494a4306565  | 9df12d2653f2    | firestone                                  |
++-------------------+---------------+-----------------+--------------------------------------------+
+| machine-xml       | 19a516499e10  | c5c35cb575ed    | garrison                                   |
++-------------------+---------------+-----------------+--------------------------------------------+
+| machine-xml       | 6a78496c286e  | c3998a513e1f    | habanero                                   |
++-------------------+---------------+-----------------+--------------------------------------------+
+| machine-xml       | c6f563966e9f  | 19aa4d3a0f0b    | palmetto                                   |
++-------------------+---------------+-----------------+--------------------------------------------+
+| machine-xml       | b788f99848d6  | 741046046ec3    | romulus                                    |
++-------------------+---------------+-----------------+--------------------------------------------+
+| machine-xml       | dda5b93d90b6  | c994a1815bcb    | vesnin                                     |
++-------------------+---------------+-----------------+--------------------------------------------+
+| machine-xml       | 7cd20a6ac8fe  | f7cffdbe00f6    | witherspoon                                |
++-------------------+---------------+-----------------+--------------------------------------------+
+| machine-xml       | f9eeb2840947  | 6f6b5efd3279    | zaius                                      |
++-------------------+---------------+-----------------+--------------------------------------------+
+| occ               | 5c01b5476e8f  | 12c8088a32c5    | witherspoon, p9dsu, zaius,                 |
+|                   |               |                 | witherspoon_dev, romulus                   |
++-------------------+---------------+-----------------+--------------------------------------------+
+| occ-p8            | 28f2cec690b7  | a2856b77a618    | habanero, firenze, garrison, barreleye,    |
+|                   |               |                 | openpower_mambo, pseries, firestone,       |
+|                   |               |                 | palmetto, vesnin                           |
++-------------------+---------------+-----------------+--------------------------------------------+
+| openpower-pnor    | f6d970c6a600  | 0aeae23bd0c68   | witherspoon, p9dsu, zaius, habanero,       |
+|                   |               |                 | garrison, barreleye, witherspoon_dev,      |
+|                   |               |                 | firestone, palmetto, vesnin, romulus       |
++-------------------+---------------+-----------------+--------------------------------------------+
+| petitboot         | 1.8.0         | v1.10.2         | witherspoon, p9dsu, zaius, habanero,       |
+|                   |               |                 | firenze, garrison, barreleye,              |
+|                   |               |                 | openpower_mambo, witherspoon_dev, pseries, |
+|                   |               |                 | firestone, palmetto, vesnin, zz, romulus   |
++-------------------+---------------+-----------------+--------------------------------------------+
+| sbe               | fad6732f2270f | 2e253cebdaff    | witherspoon, p9dsu, zaius,                 |
+|                   |               |                 | witherspoon_dev, romulus                   |
++-------------------+---------------+-----------------+--------------------------------------------+
+| skiboot           | v6.1          | v6.2.2          | witherspoon, p9dsu, zaius, habanero,       |
+|                   |               |                 | firenze, garrison, barreleye,              |
+|                   |               |                 | openpower_mambo, witherspoon_dev, pseries, |
+|                   |               |                 | firestone, palmetto, vesnin, zz, romulus   |
++-------------------+---------------+-----------------+--------------------------------------------+
+| util-linux        | 2.32          | 2.32.1          | witherspoon, p9dsu, zaius, habanero,       |
+|                   |               |                 | firenze, garrison, barreleye,              |
+|                   |               |                 | openpower_mambo, witherspoon_dev, pseries, |
+|                   |               |                 | firestone, palmetto, vesnin, zz, romulus   |
++-------------------+---------------+-----------------+--------------------------------------------+
+
+New Packages
+------------
+
++--------------------------------+--------------------------------+--------------------------------+
+| Package                        | Version                        | Platforms                      |
++================================+================================+================================+
+| libaio                         | 0.3.111                        | witherspoon,p9dsu,zaius,habane |
+|                                |                                | ro,firenze,garrison,barreleye, |
+|                                |                                | openpower_mambo,witherspoon_de |
+|                                |                                | v,pseries,firestone,palmetto,v |
+|                                |                                | esnin,zz,romulus               |
++--------------------------------+--------------------------------+--------------------------------+
+| linux-firmware                 | 44d4fca9922a                   | vesnin                         |
++--------------------------------+--------------------------------+--------------------------------+
+| sudo                           | 1.8.23                         | witherspoon,p9dsu,zaius,habane |
+|                                |                                | ro,firenze,garrison,barreleye, |
+|                                |                                | openpower_mambo,witherspoon_de |
+|                                |                                | v,pseries,firestone,palmetto,v |
+|                                |                                | esnin,zz,romulus               |
++--------------------------------+--------------------------------+--------------------------------+
+
+Removed Packages
+----------------
+
++---------------+--------------+-------------------------------------------------+
+| Package       | Version      | Platforms                                       |
++===============+==============+=================================================+
+| common-p8-xml | e02b6f6ddd5f | witherspoon,p9dsu,zaius,witherspoon_dev,romulus |
++---------------+--------------+-------------------------------------------------+
+| occ           | 5c01b5476e8f | zz                                              |
++---------------+--------------+-------------------------------------------------+
+| openpower-mrw | 0729a4a68c0e | witherspoon,p9dsu,zaius,witherspoon_dev,romulus |
++---------------+--------------+-------------------------------------------------+
+
+Package: barreleye-xml
+----------------------
+
+`Repository <https://github.com/open-power/barreleye-xml>`__
+
+Patches
+~~~~~~~
+
+Commits
+~~~~~~~
+
+No changes.
+
+Package: firestone-xml
+----------------------
+
+`Repository <https://github.com/open-power/firestone-xml>`__
+
+.. _patches-2.2-1:
+
+Patches
+~~~~~~~
+
+.. _commits-2.2-1:
+
+Commits
+~~~~~~~
+
+Samuel Mendoza-Jonas (1):
+
+-  `7491fd532ce4 <https://github.com/open-power/firestone-xml/commit/7491fd532ce4>`__ Fix
+   IBSCOM_MCS_BASE_ADDR formatting
+
+Package: garrison-xml
+---------------------
+
+`Repository <https://github.com/open-power/garrison-xml>`__
+
+.. _patches-2.2-2:
+
+Patches
+~~~~~~~
+
+.. _commits-2.2-2:
+
+Commits
+~~~~~~~
+
+Joel Stanley (1):
+
+-  `1a7255c95008 <https://github.com/open-power/garrison-xml/commit/1a7255c95008>`__ Fix
+   IBSCOM_MCS_BASE_ADDR value
+
+Package: habanero-xml
+---------------------
+
+`Repository <https://github.com/open-power/habanero-xml>`__
+
+.. _patches-2.2-3:
+
+Patches
+~~~~~~~
+
+.. _commits-2.2-3:
+
+Commits
+~~~~~~~
+
+Bill Hoffa (1):
+
+-  `c7adf3d2e5d1 <https://github.com/open-power/habanero-xml/commit/c7adf3d2e5d1>`__ Add System Fw
+   Fru Id
+
+Joel Stanley (1):
+
+-  `0c79a27379bd <https://github.com/open-power/habanero-xml/commit/0c79a27379bd>`__ Fix
+   IBSCOM_MCS_BASE_ADDR value
+
+Package: hcode
+--------------
+
+`Repository <https://github.com/open-power/hcode>`__
+
+.. _patches-2.2-4:
+
+Patches
+~~~~~~~
+
+.. _commits-2.2-4:
+
+Commits
+~~~~~~~
+
+Adam Hale (1):
+
+-  `28e636043531 <https://github.com/open-power/hcode/commit/28e636043531>`__ Set GPMMR
+   RESET_STATE_INDICATOR
+
+Anusha Reddy Rangareddygari (3):
+
+-  `9d9a20de2e4b <https://github.com/open-power/hcode/commit/9d9a20de2e4b>`__ Adding a fapi_assert
+   to flag error if PPE is not halted.
+-  `b2a1839e628a <https://github.com/open-power/hcode/commit/b2a1839e628a>`__ p9_pibms_reg_dump,
+   p9_pibmem_dump updates
+-  `09387cb3aeef <https://github.com/open-power/hcode/commit/09387cb3aeef>`__ Removing check on sbe
+   region fence
+
+Ben Gass (3):
+
+-  `2041e71b44a7 <https://github.com/open-power/hcode/commit/2041e71b44a7>`__ Add support for p9c
+   1.2
+-  `52a1900d8439 <https://github.com/open-power/hcode/commit/52a1900d8439>`__ Add support for p9c
+   1.2
+-  `e91574e22285 <https://github.com/open-power/hcode/commit/e91574e22285>`__ Add support for p9c
+   1.2
+
+Brian Vanderpool (10):
+
+-  `e3d105d276b3 <https://github.com/open-power/hcode/commit/e3d105d276b3>`__ STOP: Clear CPPM_PECES
+   on entry during power save cycle to prevent wakeup events
+-  `0d334632a4fc <https://github.com/open-power/hcode/commit/0d334632a4fc>`__ Enable CME IAR trace
+   and remove stall events from trace
+-  `2770649588ff <https://github.com/open-power/hcode/commit/2770649588ff>`__ STOP: PCBMux Savior
+   version 2 + TLBIE workaround
+-  `387d0dff2475 <https://github.com/open-power/hcode/commit/387d0dff2475>`__ STOP: Scom Restore
+   version 2
+-  `127b1eca3e84 <https://github.com/open-power/hcode/commit/127b1eca3e84>`__ STOP: Release the PCB
+   Atomic lock on aborted Stop 11 entry
+-  `69de20ee7f49 <https://github.com/open-power/hcode/commit/69de20ee7f49>`__ This reverts the stop
+   1 commits
+-  `927a4ffbc292 <https://github.com/open-power/hcode/commit/927a4ffbc292>`__ STOP: Move delay after
+   LPID change to before asserting quiesce
+-  `0999eb2d7378 <https://github.com/open-power/hcode/commit/0999eb2d7378>`__ STOP: Give SGPE
+   control over VDM, DPLL before turning off Jump protect and VDMs
+-  `585ebdd5ad02 <https://github.com/open-power/hcode/commit/585ebdd5ad02>`__ STOP: Fix DB2 message
+   for DD1
+-  `22782e49d66c <https://github.com/open-power/hcode/commit/22782e49d66c>`__ STOP: Clear CPPM_PECES
+   on entry during power save cycle to prevent wakeup events
+
+Chris Steffen (1):
+
+-  `6d1fd2cc84e1 <https://github.com/open-power/hcode/commit/6d1fd2cc84e1>`__ Alink Hot Repair Fix
+
+Christopher M. Riedl (5):
+
+-  `d1883eb35452 <https://github.com/open-power/hcode/commit/d1883eb35452>`__ Pstate: Resonant
+   Clocking Enablement - CME Hcode
+-  `6b5e4bb67b41 <https://github.com/open-power/hcode/commit/6b5e4bb67b41>`__ Pstate: Remove legacy
+   VDM code
+-  `212a68631c93 <https://github.com/open-power/hcode/commit/212a68631c93>`__ Pstate: VDM Enablement
+-  `2815449e8a63 <https://github.com/open-power/hcode/commit/2815449e8a63>`__ PM: Implement L2
+   Resclk Function
+-  `1257a0854ca3 <https://github.com/open-power/hcode/commit/1257a0854ca3>`__ IOTA
+
+Claus Michael Olsen (3):
+
+-  `57bbd2874a93 <https://github.com/open-power/hcode/commit/57bbd2874a93>`__ Cleanup: Updated Mvpd
+   access function and removal of unused rings
+-  `68ddc7db4986 <https://github.com/open-power/hcode/commit/68ddc7db4986>`__ Infrastructure support
+   for new MC OMI rings for Axone
+-  `3c3a12adec74 <https://github.com/open-power/hcode/commit/3c3a12adec74>`__ OCMB explorer
+   initCompiler support
+
+Douglas Gilbert (2):
+
+-  `ed9af7a17733 <https://github.com/open-power/hcode/commit/ed9af7a17733>`__ HCODE Make divide
+   using DERP/DORP atomic
+-  `f38abc883f4a <https://github.com/open-power/hcode/commit/f38abc883f4a>`__ HCODE: Add git commit
+   to version field for QPMR, PPMR, and CPMR
+
+Greg Still (5):
+
+-  `dc65a4916ce5 <https://github.com/open-power/hcode/commit/dc65a4916ce5>`__ PM: clear Hcode error
+   injection bits upon injection and malf alert
+-  `b342ec7d38cc <https://github.com/open-power/hcode/commit/b342ec7d38cc>`__ SGPE and CME scanning
+   integration
+-  `1dcc359d6da6 <https://github.com/open-power/hcode/commit/1dcc359d6da6>`__ PM: clear Hcode error
+   injection bits upon injection and malf alert
+-  `d11796515369 <https://github.com/open-power/hcode/commit/d11796515369>`__ SMF: SBE updates for
+   SMF (URMOR set and CPMMR[Runtime Wakeup Mode] clear)
+-  `962e9921c88b <https://github.com/open-power/hcode/commit/962e9921c88b>`__ SMF: clear HRMOR[15]
+   in all modes so that secure mode won’t hang core
+
+Gregory S. Still (5):
+
+-  `5762d99877f8 <https://github.com/open-power/hcode/commit/5762d99877f8>`__ Revert “Self Restore:
+   Integrated support for build of self-restore code in EKB.”
+-  `51932dc44266 <https://github.com/open-power/hcode/commit/51932dc44266>`__ Revert “Self Restore:
+   Integrated support for build of self-restore code in EKB.”
+-  `b68dcc1aa28b <https://github.com/open-power/hcode/commit/b68dcc1aa28b>`__ Revert “PM: OCC<>PGPE
+   interface for P9+”
+-  `bb9e53906b0a <https://github.com/open-power/hcode/commit/bb9e53906b0a>`__ Revert “Self Restore:
+   Integrated support for build of self-restore code in EKB.”
+-  `a6f1075b8955 <https://github.com/open-power/hcode/commit/a6f1075b8955>`__ Revert “Self Restore:
+   Integrated support for build of self-restore code in EKB.”
+
+Jenny Huynh (2):
+
+-  `473b1f4620dd <https://github.com/open-power/hcode/commit/473b1f4620dd>`__ HW417560 NCU master
+   tlbie settings tuning
+-  `08985a7d51c3 <https://github.com/open-power/hcode/commit/08985a7d51c3>`__ Secure memory
+   allocation and setup
+
+Joe McGill (2):
+
+-  `8fde47008ae5 <https://github.com/open-power/hcode/commit/8fde47008ae5>`__ FBC TDM recovery – PPE
+   update, clear recal_abort, pdwn unconnected lanes
+-  `a98ec3b12009 <https://github.com/open-power/hcode/commit/a98ec3b12009>`__ Change CME BCE reads
+   to always use VG scope
+
+Michael Floyd (5):
+
+-  `060a3ae8b3a1 <https://github.com/open-power/hcode/commit/060a3ae8b3a1>`__ STOP: Support to
+   unfreeze IMA after self-restore
+-  `b46f051b9884 <https://github.com/open-power/hcode/commit/b46f051b9884>`__ STOP: Actually enable
+   Manual Stop1 for Nimbus DD1 to fix the PSSCR PLS reporting
+-  `51a2d2a61147 <https://github.com/open-power/hcode/commit/51a2d2a61147>`__ STOP: Fix STOP1
+   correctly for DD1 Workaround
+-  `0fea3b073537 <https://github.com/open-power/hcode/commit/0fea3b073537>`__ Fix DD LEVEL to
+   support minor ECs
+-  `d520bc71a080 <https://github.com/open-power/hcode/commit/d520bc71a080>`__ CME Code Size
+   Reduction ATTEMPT#3
+
+Prasad Bg Ranganath (2):
+
+-  `08ca175ac7d3 <https://github.com/open-power/hcode/commit/08ca175ac7d3>`__ Putring support for
+   SGPE platform
+-  `90d69ca63b67 <https://github.com/open-power/hcode/commit/90d69ca63b67>`__ STOP:Dont clear
+   pmc_pcb_intr_type0_pending in OISR1/OIMR1 register
+
+Prem Shanker Jha (29):
+
+-  `edbff4367d05 <https://github.com/open-power/hcode/commit/edbff4367d05>`__ STOP API: API
+   conditionally supports 255 SCOM restore entries for each quad.
+-  `66176a78c769 <https://github.com/open-power/hcode/commit/66176a78c769>`__ PM: Added support for
+   enable disable of 24x7 IMA.
+-  `2f1b55d0784a <https://github.com/open-power/hcode/commit/2f1b55d0784a>`__ EQ SCOM Restore:
+   Introduced version control in SCOM restore entry.
+-  `c5e1d1e154fa <https://github.com/open-power/hcode/commit/c5e1d1e154fa>`__ Hcode Injection: Adds
+   hcode error injection capability.
+-  `2c4a28977ea7 <https://github.com/open-power/hcode/commit/2c4a28977ea7>`__ SCOM Restore:
+   Increased max eq scom restores entries supported to 255.
+-  `058ab063c16f <https://github.com/open-power/hcode/commit/058ab063c16f>`__ SCOM Restore: Handle
+   case of old HB and new STOP API case.
+-  `64f1e841cc66 <https://github.com/open-power/hcode/commit/64f1e841cc66>`__ SCOM Restore: Updated
+   EQ SCOM Restore logic.
+-  `ffe69c747671 <https://github.com/open-power/hcode/commit/ffe69c747671>`__ UV Support: CME Hcode
+   changes to enable STOP entry exit in SMF mode.
+-  `5477b13b8aa1 <https://github.com/open-power/hcode/commit/5477b13b8aa1>`__ Self Restore:
+   Integrated build with rest of the EKB build flow.
+-  `52a11a1d8cc7 <https://github.com/open-power/hcode/commit/52a11a1d8cc7>`__ Revert “Self Restore:
+   Integrated build with rest of the EKB build flow.”
+-  `00771fa993da <https://github.com/open-power/hcode/commit/00771fa993da>`__ Self Restore:
+   Integrated support for build of self-restore code in EKB.
+-  `c919d9d0b0a5 <https://github.com/open-power/hcode/commit/c919d9d0b0a5>`__ UV Support : Augmented
+   STOP API and self restore for enabling ultravisor.
+-  `d7e8d7883577 <https://github.com/open-power/hcode/commit/d7e8d7883577>`__ Revert “UV Support :
+   Augmented STOP API and self restore for enabling UV”
+-  `3061db3d69ee <https://github.com/open-power/hcode/commit/3061db3d69ee>`__ STOP API: Changes for
+   SMF and SPR self save
+-  `0adc4f9c9733 <https://github.com/open-power/hcode/commit/0adc4f9c9733>`__ UV Support : Augmented
+   STOP API and self restore for enabling ultravisor.
+-  `56c7b556aa46 <https://github.com/open-power/hcode/commit/56c7b556aa46>`__ Revert “UV Support :
+   Augmented STOP API and self restore for enabling UV”
+-  `df7b1f86b421 <https://github.com/open-power/hcode/commit/df7b1f86b421>`__ Img Build: HOMER
+   changes for SMF and SPR self save.
+-  `12ef819fb295 <https://github.com/open-power/hcode/commit/12ef819fb295>`__ Self Restore:
+   Integrated build with rest of the EKB build flow.
+-  `03fb4ce48575 <https://github.com/open-power/hcode/commit/03fb4ce48575>`__ Revert “Self Restore:
+   Integrated build with rest of the EKB build flow.”
+-  `2f1739a53581 <https://github.com/open-power/hcode/commit/2f1739a53581>`__ Self Restore:
+   Integrated support for build of self-restore code in EKB.
+-  `7bb39027bdf6 <https://github.com/open-power/hcode/commit/7bb39027bdf6>`__ UV Support : Augmented
+   STOP API and self restore for enabling ultravisor.
+-  `31fe5db5426e <https://github.com/open-power/hcode/commit/31fe5db5426e>`__ Revert “UV Support :
+   Augmented STOP API and self restore for enabling UV”
+-  `1762a6ef1dc9 <https://github.com/open-power/hcode/commit/1762a6ef1dc9>`__ Self Restore: Changes
+   for SMF and SPR self save.
+-  `1b71d5d08868 <https://github.com/open-power/hcode/commit/1b71d5d08868>`__ Self Save: Fixed bugs
+   pertaining to SPR self save.
+-  `41a92e1e1fc1 <https://github.com/open-power/hcode/commit/41a92e1e1fc1>`__ VDM(Part 1):
+   Introduced new members in CME and CPMR image headers
+-  `802577fb1316 <https://github.com/open-power/hcode/commit/802577fb1316>`__ Self Restore:
+   Integrated build with rest of the EKB build flow.
+-  `f824d8dfc016 <https://github.com/open-power/hcode/commit/f824d8dfc016>`__ Revert “Self Restore:
+   Integrated build with rest of the EKB build flow.”
+-  `26bd09ea49d9 <https://github.com/open-power/hcode/commit/26bd09ea49d9>`__ Self Restore:
+   Integrated support for build of self-restore code in EKB.
+-  `1d9d13289fa9 <https://github.com/open-power/hcode/commit/1d9d13289fa9>`__ Self Restore:
+   Integrated support for build of self-restore code in EKB.
+
+Rahul Batra (27):
+
+-  `777fb2ed5684 <https://github.com/open-power/hcode/commit/777fb2ed5684>`__ PGPE: Fixes and
+   Cleanup for Mfg/Char team
+-  `985248cf55ed <https://github.com/open-power/hcode/commit/985248cf55ed>`__ OCC Flags/OCC Scratch
+   Updates
+-  `6b56b1459f58 <https://github.com/open-power/hcode/commit/6b56b1459f58>`__ PSTATE: CME
+   refactoring and cleanup
+-  `40edb9bed0e8 <https://github.com/open-power/hcode/commit/40edb9bed0e8>`__ PM: PGPE-SGPE Common
+   Code Updates
+-  `b87f07ac673a <https://github.com/open-power/hcode/commit/b87f07ac673a>`__ PM: Inter-PPM controls
+   enablement and VDMCFG
+-  `f8af7be16849 <https://github.com/open-power/hcode/commit/f8af7be16849>`__ PM: PMSR Update Fixes
+-  `4f3d1f8ad891 <https://github.com/open-power/hcode/commit/4f3d1f8ad891>`__ PGPE:
+   STOP11+WOF+SafeMode Fixes
+-  `c9cb39853b5c <https://github.com/open-power/hcode/commit/c9cb39853b5c>`__ WOF: More Phase 2
+   Fixes
+-  `dc1e756bfc15 <https://github.com/open-power/hcode/commit/dc1e756bfc15>`__ PGPE: Error Handling
+   Support
+-  `314a7a3990a1 <https://github.com/open-power/hcode/commit/314a7a3990a1>`__ PM: Fixes for Livelock
+   Scenarios
+-  `1dda31245982 <https://github.com/open-power/hcode/commit/1dda31245982>`__ CME: Process DB0
+   inside intercme_msg_handler
+-  `299fb1c3181c <https://github.com/open-power/hcode/commit/299fb1c3181c>`__ PGPE: ACK pending IPCs
+   upon fault with Pstates Stopped
+-  `299a9ff24994 <https://github.com/open-power/hcode/commit/299a9ff24994>`__ PGPE: Don’t set EE=1
+   in CME Err Handler
+-  `a4a2740828dd <https://github.com/open-power/hcode/commit/a4a2740828dd>`__ PGPE: Use correct VPD
+   Pts for VDD to Pstate intp.
+-  `0c9db2e5070a <https://github.com/open-power/hcode/commit/0c9db2e5070a>`__ PM: Add Fields in OCC
+   Comp. Shr SRAM (1/4)
+-  `96d494c43265 <https://github.com/open-power/hcode/commit/96d494c43265>`__ PM: Move SGPE/PGPE
+   Region and update QPMR/PPMR(2/4)
+-  `888eabf3c65b <https://github.com/open-power/hcode/commit/888eabf3c65b>`__ PM:Fill SGPE/PGPE
+   regions fields in QPMR/PPMR(3/4)
+-  `4576fce87893 <https://github.com/open-power/hcode/commit/4576fce87893>`__ PGPE: Only ack pending
+   Quad Exit on WOF Disable
+-  `6c9d78a1f206 <https://github.com/open-power/hcode/commit/6c9d78a1f206>`__ PM: Clean Up PROLOG
+-  `9bc92eb0e169 <https://github.com/open-power/hcode/commit/9bc92eb0e169>`__ PM: Fix default aux
+   task
+-  `e085a963007d <https://github.com/open-power/hcode/commit/e085a963007d>`__ PM: OCC<>PGPE
+   interface for P9+
+-  `9b0e0c73659f <https://github.com/open-power/hcode/commit/9b0e0c73659f>`__ PGPE: WOV HW procs and
+   Global Parm updates (2/3)
+-  `e5e276106c9e <https://github.com/open-power/hcode/commit/e5e276106c9e>`__ PGPE: WOV Hcode
+   Updates (3/3)
+-  `49a2d8e9c294 <https://github.com/open-power/hcode/commit/49a2d8e9c294>`__ PGPE: WOV Fixes
+-  `211c48c95e7d <https://github.com/open-power/hcode/commit/211c48c95e7d>`__ PGPE: Write magic
+   number in HcodeOCCShared struct
+-  `7f3dc3dd47ac <https://github.com/open-power/hcode/commit/7f3dc3dd47ac>`__ PM: OCC<>PGPE
+   Interface for P9+
+-  `d0628e156378 <https://github.com/open-power/hcode/commit/d0628e156378>`__ PGPE: Use busy-wait
+   instead of PK_SLEEP for delay
+
+Raja Das (1):
+
+-  `dcf37eba122b <https://github.com/open-power/hcode/commit/dcf37eba122b>`__ Re-used loader_data
+   section to pibmem repair scom data for Axone
+
+Richard J. Knight (1):
+
+-  `62d33641fb57 <https://github.com/open-power/hcode/commit/62d33641fb57>`__ update gerrit hostname
+   for server migration
+
+Yue Du (131):
+
+-  `9fa0bca8256d <https://github.com/open-power/hcode/commit/9fa0bca8256d>`__ STOP: Fix Srr1 wrongly
+   reported upon special wakeup
+-  `9cf14ad78bee <https://github.com/open-power/hcode/commit/9cf14ad78bee>`__ STOP: Fix CME Special
+   Attention handling
+-  `b187d9dec127 <https://github.com/open-power/hcode/commit/b187d9dec127>`__ STOP: Clean up stop
+   state after aborted L3 purge during Stop 11 entry
+-  `50d85ba05425 <https://github.com/open-power/hcode/commit/50d85ba05425>`__ STOP: Fix Core Special
+   Wakeup window condition
+-  `2f063536057b <https://github.com/open-power/hcode/commit/2f063536057b>`__ PM: PGPE hang fix
+   during VDM droop workaround
+-  `b46364f8852b <https://github.com/open-power/hcode/commit/b46364f8852b>`__ STOP: Fix Stop1 Window
+   conditions
+-  `6d438cd34f57 <https://github.com/open-power/hcode/commit/6d438cd34f57>`__ STOP: Fix hole in
+   62403
+-  `369bb2085bc9 <https://github.com/open-power/hcode/commit/369bb2085bc9>`__ STOP: remove chiplet
+   enable drop in core_poweron for multicast scom
+-  `335521ff5c3c <https://github.com/open-power/hcode/commit/335521ff5c3c>`__ STOP: Fix VDM Droop
+   Event DB3 Window condition breaking STOP
+-  `8ee920ea7232 <https://github.com/open-power/hcode/commit/8ee920ea7232>`__ first draft of
+   ppe_closed/cme & sgpe, and common/pmlib/
+-  `64616b74284e <https://github.com/open-power/hcode/commit/64616b74284e>`__ CME/SGPE: Complete
+   Working STOP8 CME/SGPE Images Snapshot
+-  `5f2e6f8d81d6 <https://github.com/open-power/hcode/commit/5f2e6f8d81d6>`__ CME/SGPE: STOP11
+   CME/SGPE Images Snapshot
+-  `bfede8ec480a <https://github.com/open-power/hcode/commit/bfede8ec480a>`__ Combined Stop/PState
+   Cme Image + unified interrupt handler
+-  `61af8a881aae <https://github.com/open-power/hcode/commit/61af8a881aae>`__ CME/SGPE: update stop
+   cme/sgpe images
+-  `bc9bb572d403 <https://github.com/open-power/hcode/commit/bc9bb572d403>`__ CME/SGPE: Optimus
+   Prime approves these upgrade of STOP images
+-  `79e84aa28337 <https://github.com/open-power/hcode/commit/79e84aa28337>`__ CME/SGPE: STOP Images
+   functional bug fix collection
+-  `6a5a238342c0 <https://github.com/open-power/hcode/commit/6a5a238342c0>`__ CME/SGPE: STOP image
+   updates and fixes
+-  `812806005f0e <https://github.com/open-power/hcode/commit/812806005f0e>`__ CME/SGPE: yet another
+   updating commit for stop images
+-  `03a1c325e27f <https://github.com/open-power/hcode/commit/03a1c325e27f>`__ STOP: Hcode SPWU
+   replacing auto spwu
+-  `43ed89a56b77 <https://github.com/open-power/hcode/commit/43ed89a56b77>`__ HB: fix HB core boot
+   resulting cme boot
+-  `4d137bc45835 <https://github.com/open-power/hcode/commit/4d137bc45835>`__ STOP Image updates
+-  `bfc2e785e03f <https://github.com/open-power/hcode/commit/bfc2e785e03f>`__ STOP: clear EISR
+   pm_active in entry catchup case.
+-  `db26cbf27922 <https://github.com/open-power/hcode/commit/db26cbf27922>`__ STOP: enable cme trace
+   array before cme boot in SGPE
+-  `6237da008ba3 <https://github.com/open-power/hcode/commit/6237da008ba3>`__ STOP: logic hole in L2
+   purge abort causing core being 0 undetected
+-  `08e215c16d75 <https://github.com/open-power/hcode/commit/08e215c16d75>`__ STOP: fix variable
+   spin being defined under epm_tunning enabled
+-  `5e742844d0d6 <https://github.com/open-power/hcode/commit/5e742844d0d6>`__ STOP: Cache Scom
+   Restore(without copy to Sram)
+-  `395eb7ab9d95 <https://github.com/open-power/hcode/commit/395eb7ab9d95>`__ STOP: DD2 - abort
+   entry on attn/recov + skip power off on OOB bits
+-  `5e3e7f755b40 <https://github.com/open-power/hcode/commit/5e3e7f755b40>`__ STOP: scominit adding
+   initfile calls
+-  `add78b915e7e <https://github.com/open-power/hcode/commit/add78b915e7e>`__ STOP: Set chiplet ids
+   in sgpe and cme
+-  `aee37bdb6f32 <https://github.com/open-power/hcode/commit/aee37bdb6f32>`__ STOP: SGPE IPC support
+   for WOF
+-  `ee432a5c78b9 <https://github.com/open-power/hcode/commit/ee432a5c78b9>`__ STOP: Enable
+   DLS+ManualStop1 Fix for DD1
+-  `c47b00594dd0 <https://github.com/open-power/hcode/commit/c47b00594dd0>`__ STOP: Stop cme trace
+   array and halt CME before stop cache clocks
+-  `1cacd2e47afb <https://github.com/open-power/hcode/commit/1cacd2e47afb>`__ STOP: prevent ppe wait
+   cycle being compiled out by compiler
+-  `e5cbaf622642 <https://github.com/open-power/hcode/commit/e5cbaf622642>`__ STOP: Clear up todo
+   items in STOP and mark them with RTC
+-  `7a8ac99b193a <https://github.com/open-power/hcode/commit/7a8ac99b193a>`__ STOP: Fix CME halt in
+   sgpe entry to check partial good ex
+-  `8045ce18d2f1 <https://github.com/open-power/hcode/commit/8045ce18d2f1>`__ HW398205: fix cme
+   entry abort changed irq masking assumption
+-  `9636f085a381 <https://github.com/open-power/hcode/commit/9636f085a381>`__ STOP: optimize size of
+   stop images
+-  `147aa0e27bfb <https://github.com/open-power/hcode/commit/147aa0e27bfb>`__ STOP: Fix L2 purge
+   abort by pc interrupt on core handoff to sgpe
+-  `23699f0f507c <https://github.com/open-power/hcode/commit/23699f0f507c>`__ STOP: move drop few
+   quiesces from l2/cache startclocks to scomcust
+-  `b8fd2c796b1e <https://github.com/open-power/hcode/commit/b8fd2c796b1e>`__ IPL/Stop: Assert
+   ABIST_SRAM_MODE_DC to support ABIST Recovery
+-  `ca38deeb68d3 <https://github.com/open-power/hcode/commit/ca38deeb68d3>`__ STOP: Fix optimize
+   size and quad spwu issue of EIMR bookkeep
+-  `8f9b2870e788 <https://github.com/open-power/hcode/commit/8f9b2870e788>`__ Hcode: Create
+   centralized memory map headers
+-  `2b66fcf8c509 <https://github.com/open-power/hcode/commit/2b66fcf8c509>`__ STOP: Change ring_save
+   structure to 0xfff3fc00 PDA location
+-  `e3f788c9832f <https://github.com/open-power/hcode/commit/e3f788c9832f>`__ STOP: Atomic lock of
+   cache clock controller and PCB slave
+-  `c2290bc9dcd9 <https://github.com/open-power/hcode/commit/c2290bc9dcd9>`__ STOP: FIX phantom
+   wakeup vs. wakeup_notify_select
+-  `0bd58a1ae4cd <https://github.com/open-power/hcode/commit/0bd58a1ae4cd>`__ STOP: Acquire pcbmux
+   after assert glsmux in cme exit
+-  `397e4a685a0a <https://github.com/open-power/hcode/commit/397e4a685a0a>`__ STOP: Conditional
+   compile current error check to save cme size
+-  `2f993351fce4 <https://github.com/open-power/hcode/commit/2f993351fce4>`__ STOP: writing all 1s
+   to lpid of each thread regardless fuse or not
+-  `4e43fe99fdd5 <https://github.com/open-power/hcode/commit/4e43fe99fdd5>`__ STOP: DD2 set
+   PPM_WRITE_DISABLE along with wakeup_notify_select
+-  `d306208678bf <https://github.com/open-power/hcode/commit/d306208678bf>`__ STOP: Using PANIC
+   codes at every pk_halt
+-  `42983359df3b <https://github.com/open-power/hcode/commit/42983359df3b>`__ STOP: IPC Fixes
+-  `018efbd5a68a <https://github.com/open-power/hcode/commit/018efbd5a68a>`__ STOP: Recent Lab Fixes
+-  `c8a51c06776a <https://github.com/open-power/hcode/commit/c8a51c06776a>`__ STOP: express
+   processing targets of stop1/2 and stop5/8 exit
+-  `53f1e7456266 <https://github.com/open-power/hcode/commit/53f1e7456266>`__ STOP: UIH updates on
+   trace and phantom interrupt handling
+-  `14430f595c58 <https://github.com/open-power/hcode/commit/14430f595c58>`__ STOP: clear PCBMUX
+   disable from STOP Exit instead of SGPE INIT
+-  `595dfc61ace3 <https://github.com/open-power/hcode/commit/595dfc61ace3>`__ STOP: Fix express
+   processing commit
+-  `3a274b8ce7a8 <https://github.com/open-power/hcode/commit/3a274b8ce7a8>`__ STOP: Enable CHTM
+-  `25e3908c810f <https://github.com/open-power/hcode/commit/25e3908c810f>`__ STOP: DD2 workaround
+   toggling pm_exit and wakeup without lpid ram
+-  `4214195803a4 <https://github.com/open-power/hcode/commit/4214195803a4>`__ STOP: Add global
+   checkstop FIR check in CME/SGPE
+-  `da5fbae2bce5 <https://github.com/open-power/hcode/commit/da5fbae2bce5>`__ STOP: enable
+   decrementor wakeup
+-  `42ddb69355b9 <https://github.com/open-power/hcode/commit/42ddb69355b9>`__ STOP: SGPE fixes for
+   PGPE Interaction
+-  `dbc5a4d27789 <https://github.com/open-power/hcode/commit/dbc5a4d27789>`__ STOP: Fix
+   FABRIC_PUMP_MODE plumbing in stop images
+-  `8e8f54fb5906 <https://github.com/open-power/hcode/commit/8e8f54fb5906>`__ STOP: Stop1 overall
+   fix
+-  `4404541f4c43 <https://github.com/open-power/hcode/commit/4404541f4c43>`__ STOP: Fix STOP1 with
+   Powermixer
+-  `a7817cd22ca3 <https://github.com/open-power/hcode/commit/a7817cd22ca3>`__ STOP: Fix hostboot
+   stop level mapping
+-  `e1b9fa3165f7 <https://github.com/open-power/hcode/commit/e1b9fa3165f7>`__ STOP: Move Stop 8 code
+   from CME to SGPE for CME space savings
+-  `d5c4e6d6eb3c <https://github.com/open-power/hcode/commit/d5c4e6d6eb3c>`__ STOP: move CME
+   scominits from corequad_init to SGPE
+-  `8d6afc648185 <https://github.com/open-power/hcode/commit/8d6afc648185>`__ STOP: NDD2 daul cast
+   workaround
+-  `9e5e6987ce47 <https://github.com/open-power/hcode/commit/9e5e6987ce47>`__ STOP: Scrub \_ANR and
+   \_OR opcode from regular cme getscom
+-  `3be7a025c4b4 <https://github.com/open-power/hcode/commit/3be7a025c4b4>`__ STOP: Fix suspend_stop
+   when threads are idle
+-  `5ef29f4f0b44 <https://github.com/open-power/hcode/commit/5ef29f4f0b44>`__ STOP: block wakeup (+
+   block entry since patch 15)
+-  `97d950e4fcf4 <https://github.com/open-power/hcode/commit/97d950e4fcf4>`__ STOP: Suspend stop to
+   cmes
+-  `35e40d9f239a <https://github.com/open-power/hcode/commit/35e40d9f239a>`__ STOP: inline
+   called-once functions
+-  `853ebdb748d0 <https://github.com/open-power/hcode/commit/853ebdb748d0>`__ STOP: Fix EPM Compiler
+   error
+-  `1bdd5be3c625 <https://github.com/open-power/hcode/commit/1bdd5be3c625>`__ STOP: CME no state
+   loss causes stop level map
+-  `4f79fd1521fa <https://github.com/open-power/hcode/commit/4f79fd1521fa>`__ STOP: Put PIG and
+   Notify_select back to back
+-  `bb61e86407c9 <https://github.com/open-power/hcode/commit/bb61e86407c9>`__ STOP: collection of
+   small fixes
+-  `dfe9fb6d5b26 <https://github.com/open-power/hcode/commit/dfe9fb6d5b26>`__ STOP: Remove sdisn dd1
+   workaround from dd2, add sync
+-  `165be7914dd4 <https://github.com/open-power/hcode/commit/165be7914dd4>`__ STOP: Disable Stop8
+-  `a785ba7bd82a <https://github.com/open-power/hcode/commit/a785ba7bd82a>`__ STOP: Stop5
+   Performance Boost and solve IPC issues
+-  `46e554dd65d6 <https://github.com/open-power/hcode/commit/46e554dd65d6>`__ STOP: Fix Disable
+   Stop8 on L3 Purge Abort case
+-  `879e075c8794 <https://github.com/open-power/hcode/commit/879e075c8794>`__ STOP: Fix
+   DISABLE_STOP8 broken HB in NDD1
+-  `70ea2a3001f9 <https://github.com/open-power/hcode/commit/70ea2a3001f9>`__ STOP/EPM: Fix Stop5
+   history and marker reporting
+-  `ef3b1c4fd9f6 <https://github.com/open-power/hcode/commit/ef3b1c4fd9f6>`__ STOP: Attempt to Fix
+   quad spwu caused incorrect flow
+-  `5663ad1a0a6e <https://github.com/open-power/hcode/commit/5663ad1a0a6e>`__ STOP: Init code before
+   starting threads
+-  `92e7e51217c7 <https://github.com/open-power/hcode/commit/92e7e51217c7>`__ STOP: Core Xstop
+   Injection
+-  `1d91a624cd08 <https://github.com/open-power/hcode/commit/1d91a624cd08>`__ STOP: Fix NCU tlbie
+   quiesce and purge for disable_stop8
+-  `c4dd66c7e905 <https://github.com/open-power/hcode/commit/c4dd66c7e905>`__ STOP: Fix PIG in L2
+   Resonant Clock support
+-  `3a0701e16b0b <https://github.com/open-power/hcode/commit/3a0701e16b0b>`__ STOP/EPM: Fix EPM
+   marker
+-  `1ca56324b31b <https://github.com/open-power/hcode/commit/1ca56324b31b>`__ STOP: Add Core quiesce
+   workaround to CME Fit Timer
+-  `16c90472bc44 <https://github.com/open-power/hcode/commit/16c90472bc44>`__ STOP: Fix resonant
+   clock supprot for STOP11
+-  `7e6359852b9c <https://github.com/open-power/hcode/commit/7e6359852b9c>`__ STOP: Fix VDM
+-  `6bcca60d0b20 <https://github.com/open-power/hcode/commit/6bcca60d0b20>`__ STOP: Reenable STOP8
+   (without L2 resonant clock support)
+-  `2f9abf6ea21a <https://github.com/open-power/hcode/commit/2f9abf6ea21a>`__ STOP: Core livelock
+   buster
+-  `42f7f0722483 <https://github.com/open-power/hcode/commit/42f7f0722483>`__ STOP: Properly clear
+   DPLL unlock indication in dpll_setup
+-  `8de4444d0bf0 <https://github.com/open-power/hcode/commit/8de4444d0bf0>`__ STOP: Fix VDM being
+   powered down through Stop2
+-  `0d6d5a47ca19 <https://github.com/open-power/hcode/commit/0d6d5a47ca19>`__ STOP: Fix Dec Wakeup
+   on NDD2.1
+-  `687e91a4bebc <https://github.com/open-power/hcode/commit/687e91a4bebc>`__ Revert PLL unlock
+   commits of 45102 and 46563
+-  `84d1108a96f5 <https://github.com/open-power/hcode/commit/84d1108a96f5>`__ STOP: Fix Resonent
+   Clock Support for STOP11
+-  `3f6199622ee9 <https://github.com/open-power/hcode/commit/3f6199622ee9>`__ STOP: Fix SGPE UIH
+   Messed up EIMR book keeping Error
+-  `b5a192341afa <https://github.com/open-power/hcode/commit/b5a192341afa>`__ STOP: Fix SGPE IPC
+   acks causing UIH stack underflow
+-  `9453b8d7ded6 <https://github.com/open-power/hcode/commit/9453b8d7ded6>`__ STOP: EX deconfigure
+   masking for EQ chiplet FIR
+-  `7665beeefb58 <https://github.com/open-power/hcode/commit/7665beeefb58>`__ STOP/PState: SGPE/PGPE
+   Error Handling Support
+-  `9b1b8717adaa <https://github.com/open-power/hcode/commit/9b1b8717adaa>`__ STOP: Fix PLS deepest
+   when stop4+ due to self restore wakeup
+-  `69a928aa4bb2 <https://github.com/open-power/hcode/commit/69a928aa4bb2>`__ STOP: Update STOP
+   History with Stop8 for Srr1 state loss reporting
+-  `55f1962e9611 <https://github.com/open-power/hcode/commit/55f1962e9611>`__ STOP: Fix SGPE stop
+   servicing wakeups
+-  `23df9c72f523 <https://github.com/open-power/hcode/commit/23df9c72f523>`__ STOP: Fix Phantom PCWU
+   causing CME IOTA to halt
+-  `6394ad5d5d44 <https://github.com/open-power/hcode/commit/6394ad5d5d44>`__ STOP: Block Wakeup
+   Mode Fixes for Phyp
+-  `80df64dc8b8d <https://github.com/open-power/hcode/commit/80df64dc8b8d>`__ STOP: Fix Block Wakeup
+   Mode with Catchup and Abort cases
+-  `504882800d12 <https://github.com/open-power/hcode/commit/504882800d12>`__ STOP: Abort Entry on
+   Error
+-  `b85b02d31b6c <https://github.com/open-power/hcode/commit/b85b02d31b6c>`__ STOP: Support Suspend
+   Entry/Exit and Fix Pig Collision
+-  `2daa7fda42f4 <https://github.com/open-power/hcode/commit/2daa7fda42f4>`__ STOP: Fix Data Machine
+   Check with PLS Fix
+-  `1bd7fb127cf2 <https://github.com/open-power/hcode/commit/1bd7fb127cf2>`__ STOP: Fix Infinite
+   Stacking up Stop Processing led by Entry Abort
+-  `d9226cd7ef3c <https://github.com/open-power/hcode/commit/d9226cd7ef3c>`__ STOP: Fix SGPE Active
+   Core Updates
+-  `d1716d00737b <https://github.com/open-power/hcode/commit/d1716d00737b>`__ STOP: Fix History
+   Write Data Machine Check by PPM_WRITE_DISABLE
+-  `a14e95a6f9a9 <https://github.com/open-power/hcode/commit/a14e95a6f9a9>`__ STOP: CME/SGPE Hcode
+   size reduction via global use of literals
+-  `16516a11d74b <https://github.com/open-power/hcode/commit/16516a11d74b>`__ STOP: Fix Srr1 wrongly
+   reported upon special wakeup
+-  `0b555c46d817 <https://github.com/open-power/hcode/commit/0b555c46d817>`__ STOP: Fix leftover
+   wakeup aborting next entry
+-  `4c395be55c71 <https://github.com/open-power/hcode/commit/4c395be55c71>`__ STOP: Clean up stop
+   state after aborted L3 purge during Stop 11 entry
+-  `97ebd3defe27 <https://github.com/open-power/hcode/commit/97ebd3defe27>`__ STOP: Fix Stop1 Window
+   conditions
+-  `0b859154f439 <https://github.com/open-power/hcode/commit/0b859154f439>`__ STOP: Fix hole in
+   62403
+-  `05ecc90b525b <https://github.com/open-power/hcode/commit/05ecc90b525b>`__ STOP: Fix PLS/Srr1
+   over reporting bug (impact stop2 only)
+-  `1e733df20292 <https://github.com/open-power/hcode/commit/1e733df20292>`__ STOP: Assert Auto
+   Special Wakeup mode on cores with halted CME
+-  `691d819d65ae <https://github.com/open-power/hcode/commit/691d819d65ae>`__ STOP: Fix incorrect
+   solution in 61385
+-  `ba27d42d879d <https://github.com/open-power/hcode/commit/ba27d42d879d>`__ STOP: Fix leftover
+   wakeup aborting next entry
+-  `6fa2da010fe0 <https://github.com/open-power/hcode/commit/6fa2da010fe0>`__ STOP: Assert Auto
+   Special Wakeup mode on cores with halted CME
+-  `5e5285bdc7ca <https://github.com/open-power/hcode/commit/5e5285bdc7ca>`__ STOP: Fix Spwu Auto to
+   Manual mode Signals Sync up.
+-  `81d08fdcddec <https://github.com/open-power/hcode/commit/81d08fdcddec>`__ IPL/STOP: Disable LCO
+   when only two EXes are configured
+-  `d1bfc67460df <https://github.com/open-power/hcode/commit/d1bfc67460df>`__ STOP: Disable cache
+   inject and LCO before purge L3
+-  `e995520aa797 <https://github.com/open-power/hcode/commit/e995520aa797>`__ STOP: Fix Bug
+   introduced by 66511
+-  `933b1b1214c5 <https://github.com/open-power/hcode/commit/933b1b1214c5>`__ STOP: Change cme init
+   to avoid using sisr block wakeup status
+
+hostboot (113):
+
+-  `8ebf9d25f75e <https://github.com/open-power/hcode/commit/8ebf9d25f75e>`__ Release tag
+   information updated for hw061918a.920
+-  `ebe34c4d9214 <https://github.com/open-power/hcode/commit/ebe34c4d9214>`__ Release tag
+   information updated for hw062018a.920
+-  `fa642d7dff73 <https://github.com/open-power/hcode/commit/fa642d7dff73>`__ Release tag
+   information updated for hw062118a.920
+-  `c8b9fe083a2d <https://github.com/open-power/hcode/commit/c8b9fe083a2d>`__ Release tag
+   information updated for hw062218a.920
+-  `5aec165e2d02 <https://github.com/open-power/hcode/commit/5aec165e2d02>`__ Release tag
+   information updated for hw062318a.920
+-  `e5489c35029d <https://github.com/open-power/hcode/commit/e5489c35029d>`__ Release tag
+   information updated for hw062518a.920
+-  `6c04729cc5a5 <https://github.com/open-power/hcode/commit/6c04729cc5a5>`__ Release tag
+   information updated for hw062618a.920
+-  `b2db756845d1 <https://github.com/open-power/hcode/commit/b2db756845d1>`__ Release tag
+   information updated for hw062718a.920
+-  `016a745b13ba <https://github.com/open-power/hcode/commit/016a745b13ba>`__ Release tag
+   information updated for hw062818a.920
+-  `169b85d36210 <https://github.com/open-power/hcode/commit/169b85d36210>`__ Release tag
+   information updated for hw062918a.920
+-  `1ff4bfd66475 <https://github.com/open-power/hcode/commit/1ff4bfd66475>`__ Release tag
+   information updated for hw070318a.920
+-  `61331f0370f3 <https://github.com/open-power/hcode/commit/61331f0370f3>`__ Release tag
+   information updated for hw070618a.920
+-  `43f4caba2ed5 <https://github.com/open-power/hcode/commit/43f4caba2ed5>`__ Release tag
+   information updated for hw070718b.920
+-  `4fb5657b74cc <https://github.com/open-power/hcode/commit/4fb5657b74cc>`__ Release tag
+   information updated for hw071018a.920
+-  `63cade31b47f <https://github.com/open-power/hcode/commit/63cade31b47f>`__ Release tag
+   information updated for hw071118a.920
+-  `9585f97f7b16 <https://github.com/open-power/hcode/commit/9585f97f7b16>`__ Release tag
+   information updated for hw071118b.920
+-  `f4500d105ab1 <https://github.com/open-power/hcode/commit/f4500d105ab1>`__ Release tag
+   information updated for hw071418a.920
+-  `a07a0e57a533 <https://github.com/open-power/hcode/commit/a07a0e57a533>`__ Release tag
+   information updated for hw071518a.920
+-  `31e3dd374bb3 <https://github.com/open-power/hcode/commit/31e3dd374bb3>`__ Release tag
+   information updated for hw071718a.920
+-  `c55120a93fee <https://github.com/open-power/hcode/commit/c55120a93fee>`__ Release tag
+   information updated for hw071818a.920
+-  `181339033db5 <https://github.com/open-power/hcode/commit/181339033db5>`__ Release tag
+   information updated for hw072518a.920
+-  `c7456ae85294 <https://github.com/open-power/hcode/commit/c7456ae85294>`__ Release tag
+   information updated for hw072618a.920
+-  `eda2a98fe87d <https://github.com/open-power/hcode/commit/eda2a98fe87d>`__ Release tag
+   information updated for hw080118a.920
+-  `d7ae5d19629f <https://github.com/open-power/hcode/commit/d7ae5d19629f>`__ Release tag
+   information updated for hw080918a.920
+-  `94491cf743ec <https://github.com/open-power/hcode/commit/94491cf743ec>`__ Release tag
+   information updated for hw082218a.930
+-  `f241353a3ec6 <https://github.com/open-power/hcode/commit/f241353a3ec6>`__ Remove files to
+   restore git history
+-  `6786319b2fb4 <https://github.com/open-power/hcode/commit/6786319b2fb4>`__ Release tag
+   information updated for hw082218b.930
+-  `6e6e58f54558 <https://github.com/open-power/hcode/commit/6e6e58f54558>`__ Release tag
+   information updated for hw082318a.930
+-  `054ef762ef58 <https://github.com/open-power/hcode/commit/054ef762ef58>`__ Release tag
+   information updated for hw082418a.930
+-  `22eddcf69bc3 <https://github.com/open-power/hcode/commit/22eddcf69bc3>`__ Release tag
+   information updated for hw082518a.930
+-  `3909ea4b1a3c <https://github.com/open-power/hcode/commit/3909ea4b1a3c>`__ Release tag
+   information updated for hw082718b.930
+-  `0dd088012def <https://github.com/open-power/hcode/commit/0dd088012def>`__ Release tag
+   information updated for hw082818a.930
+-  `4adf86eece20 <https://github.com/open-power/hcode/commit/4adf86eece20>`__ Release tag
+   information updated for hw082918a.930
+-  `75917d6d2499 <https://github.com/open-power/hcode/commit/75917d6d2499>`__ Release tag
+   information updated for hw083018a.930
+-  `8b0503bbb423 <https://github.com/open-power/hcode/commit/8b0503bbb423>`__ Release tag
+   information updated for hw090118a.930
+-  `ba2ab0af5bb9 <https://github.com/open-power/hcode/commit/ba2ab0af5bb9>`__ Release tag
+   information updated for hw090318a.930
+-  `aa14edfd21c2 <https://github.com/open-power/hcode/commit/aa14edfd21c2>`__ Release tag
+   information updated for hw090518a.930
+-  `3850f5347cb2 <https://github.com/open-power/hcode/commit/3850f5347cb2>`__ Release tag
+   information updated for hw091318a.930
+-  `ab50249172ff <https://github.com/open-power/hcode/commit/ab50249172ff>`__ Release tag
+   information updated for hw091518a.930
+-  `2187a72368c3 <https://github.com/open-power/hcode/commit/2187a72368c3>`__ Release tag
+   information updated for hw091818a.930
+-  `96d91da78a8a <https://github.com/open-power/hcode/commit/96d91da78a8a>`__ Release tag
+   information updated for hw091918a.930
+-  `9d245f2518e4 <https://github.com/open-power/hcode/commit/9d245f2518e4>`__ Release tag
+   information updated for hw092018a.930
+-  `c715f43231cc <https://github.com/open-power/hcode/commit/c715f43231cc>`__ Release tag
+   information updated for hw092218a.930
+-  `0ee2ed1e73e5 <https://github.com/open-power/hcode/commit/0ee2ed1e73e5>`__ Release tag
+   information updated for hw092518a.930
+-  `85f754205d58 <https://github.com/open-power/hcode/commit/85f754205d58>`__ Release tag
+   information updated for hw092618a.930
+-  `10bf99ef8b63 <https://github.com/open-power/hcode/commit/10bf99ef8b63>`__ Release tag
+   information updated for hw092718a.930
+-  `110d77df2db5 <https://github.com/open-power/hcode/commit/110d77df2db5>`__ Release tag
+   information updated for hw092818a.930
+-  `96a0480a73df <https://github.com/open-power/hcode/commit/96a0480a73df>`__ Release tag
+   information updated for hw092918a.930
+-  `8994383c50d7 <https://github.com/open-power/hcode/commit/8994383c50d7>`__ Release tag
+   information updated for hw100218a.930
+-  `97dfe3026c12 <https://github.com/open-power/hcode/commit/97dfe3026c12>`__ Release tag
+   information updated for hw100318a.930
+-  `32d6982fa49c <https://github.com/open-power/hcode/commit/32d6982fa49c>`__ Release tag
+   information updated for hw100418a.930
+-  `fb1cfe5d1f0d <https://github.com/open-power/hcode/commit/fb1cfe5d1f0d>`__ Release tag
+   information updated for hw100518a.930
+-  `6083743a69ad <https://github.com/open-power/hcode/commit/6083743a69ad>`__ Release tag
+   information updated for hw100618a.930
+-  `bbc1e12eb3c2 <https://github.com/open-power/hcode/commit/bbc1e12eb3c2>`__ Release tag
+   information updated for hw100918a.930
+-  `833f5f0cac7d <https://github.com/open-power/hcode/commit/833f5f0cac7d>`__ Release tag
+   information updated for hw101018a.930
+-  `2e50384d51b6 <https://github.com/open-power/hcode/commit/2e50384d51b6>`__ Release tag
+   information updated for hw101118a.930
+-  `d2fb0b0c60c8 <https://github.com/open-power/hcode/commit/d2fb0b0c60c8>`__ Release tag
+   information updated for hw101218a.930
+-  `3aa39e3ce6b3 <https://github.com/open-power/hcode/commit/3aa39e3ce6b3>`__ Release tag
+   information updated for hw101318a.930
+-  `94a83e1f90a7 <https://github.com/open-power/hcode/commit/94a83e1f90a7>`__ Release tag
+   information updated for hw101718a.930
+-  `92d086017054 <https://github.com/open-power/hcode/commit/92d086017054>`__ Release tag
+   information updated for hw101818a.930
+-  `97165dd1a052 <https://github.com/open-power/hcode/commit/97165dd1a052>`__ Release tag
+   information updated for hw101918a.930
+-  `875b828fcde4 <https://github.com/open-power/hcode/commit/875b828fcde4>`__ Release tag
+   information updated for hw102018a.930
+-  `c1bc6f698107 <https://github.com/open-power/hcode/commit/c1bc6f698107>`__ Release tag
+   information updated for hw102318a.930
+-  `aa1bf832ebb5 <https://github.com/open-power/hcode/commit/aa1bf832ebb5>`__ Release tag
+   information updated for hw102418a.930
+-  `1dd4c043e9d7 <https://github.com/open-power/hcode/commit/1dd4c043e9d7>`__ Release tag
+   information updated for hw102518a.930
+-  `690b5374a33a <https://github.com/open-power/hcode/commit/690b5374a33a>`__ Release tag
+   information updated for hw102618a.930
+-  `947ea51a0746 <https://github.com/open-power/hcode/commit/947ea51a0746>`__ Release tag
+   information updated for hw102718a.930
+-  `081daf6f62d2 <https://github.com/open-power/hcode/commit/081daf6f62d2>`__ Release tag
+   information updated for hw103018a.930
+-  `c80d12a0db73 <https://github.com/open-power/hcode/commit/c80d12a0db73>`__ Release tag
+   information updated for hw103118a.930
+-  `e86871325999 <https://github.com/open-power/hcode/commit/e86871325999>`__ Release tag
+   information updated for hw110118a.930
+-  `97b411489e03 <https://github.com/open-power/hcode/commit/97b411489e03>`__ Release tag
+   information updated for hw110218a.930
+-  `f30dd702b79e <https://github.com/open-power/hcode/commit/f30dd702b79e>`__ Release tag
+   information updated for hw110318a.930
+-  `670b3fa576fb <https://github.com/open-power/hcode/commit/670b3fa576fb>`__ Removing selfRest.bin
+   as it changed, mirror tool cannot mirror binary files
+-  `0178a133fbbd <https://github.com/open-power/hcode/commit/0178a133fbbd>`__ Release tag
+   information updated for hw111318a.930
+-  `cdb633ddb79d <https://github.com/open-power/hcode/commit/cdb633ddb79d>`__ Release tag
+   information updated for hw111518a.930
+-  `92d425d4f137 <https://github.com/open-power/hcode/commit/92d425d4f137>`__ Release tag
+   information updated for hw112018a.930
+-  `f5d8831eca2d <https://github.com/open-power/hcode/commit/f5d8831eca2d>`__ Release tag
+   information updated for hw112118a.930
+-  `363773a73142 <https://github.com/open-power/hcode/commit/363773a73142>`__ Release tag
+   information updated for hw112718a.930
+-  `a2826e1d6989 <https://github.com/open-power/hcode/commit/a2826e1d6989>`__ Release tag
+   information updated for hw112918a.930
+-  `99461d215726 <https://github.com/open-power/hcode/commit/99461d215726>`__ Release tag
+   information updated for hw113018a.930
+-  `6c6cc6e6e343 <https://github.com/open-power/hcode/commit/6c6cc6e6e343>`__ Release tag
+   information updated for hw120218a.930
+-  `8afbacaacced <https://github.com/open-power/hcode/commit/8afbacaacced>`__ Release tag
+   information updated for hw120418a.930
+-  `fe8b0f92c7fe <https://github.com/open-power/hcode/commit/fe8b0f92c7fe>`__ Release tag
+   information updated for hw120518a.930
+-  `ed2213496939 <https://github.com/open-power/hcode/commit/ed2213496939>`__ Release tag
+   information updated for hw120618a.930
+-  `bb0509e82ee8 <https://github.com/open-power/hcode/commit/bb0509e82ee8>`__ Release tag
+   information updated for hw120818a.930
+-  `892e1d1505f3 <https://github.com/open-power/hcode/commit/892e1d1505f3>`__ Release tag
+   information updated for hw121118a.930
+-  `0418170136fe <https://github.com/open-power/hcode/commit/0418170136fe>`__ Release tag
+   information updated for hw121218a.930
+-  `43da3f1f8df0 <https://github.com/open-power/hcode/commit/43da3f1f8df0>`__ Release tag
+   information updated for hw121318a.930
+-  `19c6e2eb09b3 <https://github.com/open-power/hcode/commit/19c6e2eb09b3>`__ Release tag
+   information updated for hw121418a.930
+-  `42ca6a54b294 <https://github.com/open-power/hcode/commit/42ca6a54b294>`__ Release tag
+   information updated for hw121518a.930
+-  `447dbbe40145 <https://github.com/open-power/hcode/commit/447dbbe40145>`__ Release tag
+   information updated for hw121718a.930
+-  `e6449433d8c2 <https://github.com/open-power/hcode/commit/e6449433d8c2>`__ Release tag
+   information updated for hw121818a.930
+-  `896327d0ed01 <https://github.com/open-power/hcode/commit/896327d0ed01>`__ Release tag
+   information updated for hw122018a.930
+-  `8e3228bf69fa <https://github.com/open-power/hcode/commit/8e3228bf69fa>`__ Release tag
+   information updated for hw123119a.930
+-  `68d1acfd7de3 <https://github.com/open-power/hcode/commit/68d1acfd7de3>`__ Release tag
+   information updated for hw012519a.930
+-  `3b8ef40daf8d <https://github.com/open-power/hcode/commit/3b8ef40daf8d>`__ Release tag
+   information updated for hw012619a.930
+-  `2353468b6fb5 <https://github.com/open-power/hcode/commit/2353468b6fb5>`__ Release tag
+   information updated for hw012919a.930
+-  `34151cae0fb1 <https://github.com/open-power/hcode/commit/34151cae0fb1>`__ Release tag
+   information updated for hw013019a.930
+-  `d27c3d4a899d <https://github.com/open-power/hcode/commit/d27c3d4a899d>`__ Updated chips.env.mk
+   to include P9N DD2.3 in openPOWER HCODE
+-  `3b77cb39ffd5 <https://github.com/open-power/hcode/commit/3b77cb39ffd5>`__ Release tag
+   information updated for hw013119a.930
+-  `31d47f050661 <https://github.com/open-power/hcode/commit/31d47f050661>`__ Release tag
+   information updated for hw020419a.930
+-  `a5399a3cb1d0 <https://github.com/open-power/hcode/commit/a5399a3cb1d0>`__ Release tag
+   information updated for hw020619a.930
+-  `4f8516268636 <https://github.com/open-power/hcode/commit/4f8516268636>`__ Release tag
+   information updated for hw020819a.930
+-  `f0643f627184 <https://github.com/open-power/hcode/commit/f0643f627184>`__ Release tag
+   information updated for hw020919a.930
+-  `6504c6036556 <https://github.com/open-power/hcode/commit/6504c6036556>`__ Release tag
+   information updated for hw021219a.930
+-  `efcad17ef20a <https://github.com/open-power/hcode/commit/efcad17ef20a>`__ Release tag
+   information updated for hw021419a.930
+-  `40ddeb27840f <https://github.com/open-power/hcode/commit/40ddeb27840f>`__ Release tag
+   information updated for hw021519a.930
+-  `8d5d51b0fa76 <https://github.com/open-power/hcode/commit/8d5d51b0fa76>`__ Release tag
+   information updated for hw021619a.930
+-  `26e4a803a885 <https://github.com/open-power/hcode/commit/26e4a803a885>`__ Release tag
+   information updated for hw021919a.930
+-  `cf135ee44fe4 <https://github.com/open-power/hcode/commit/cf135ee44fe4>`__ Release tag
+   information updated for hw022019a.930
+-  `1ea35ee43977 <https://github.com/open-power/hcode/commit/1ea35ee43977>`__ Release tag
+   information updated for hw022119a.930
+-  `a7d5df492731 <https://github.com/open-power/hcode/commit/a7d5df492731>`__ Release tag
+   information updated for hw022219a.930
+-  `367c9515f3ba <https://github.com/open-power/hcode/commit/367c9515f3ba>`__ Release tag
+   information updated for hw022319a.930
+
+Package: hostboot
+-----------------
+
+`Repository <https://github.com/open-power/hostboot>`__
+
+.. _patches-2.2-5:
+
+Patches
+~~~~~~~
+
+-  `0001-Fix-RC09-ODT-errors-on-Nimbus-dual-drop-configs.patch <https://github.com/open-power/op-build/tree/HEAD/openpower/package/hostboot/0001-Fix-RC09-ODT-errors-on-Nimbus-dual-drop-configs.patch>`__
+-  `0007-Disable-warnings-that-crop-up-a-lot-with-GCC6.patch <https://github.com/open-power/op-build/tree/HEAD/openpower/package/hostboot/0007-Disable-warnings-that-crop-up-a-lot-with-GCC6.patch>`__
+-  `hostboot-1020-Revert-jgr17071200-Removed-pdwn-settings.patch <https://github.com/open-power/op-build/tree/HEAD/openpower/package/hostboot/hostboot-1020-Revert-jgr17071200-Removed-pdwn-settings.patch>`__
+
+.. _commits-2.2-5:
+
+Commits
+~~~~~~~
+
+Abhishek Agarwal (2):
+
+-  `2c1001a91668 <https://github.com/open-power/hostboot/commit/2c1001a91668>`__ Axone only-IPL
+   Procedures update to support SBE changes
+-  `d0154972da11 <https://github.com/open-power/hostboot/commit/d0154972da11>`__ L1 Rev istep
+   0.(6-8,11,13,14),1.1,2.(1-13,15,18-20,22,26,27,30,32,34) V2
+
+Adam Hale (6):
+
+-  `2fe693504fb6 <https://github.com/open-power/hostboot/commit/2fe693504fb6>`__ SW434534: Channel
+   Fail Cascade Workaround part 1
+-  `4b5108755cea <https://github.com/open-power/hostboot/commit/4b5108755cea>`__ Disable HW439321
+   workaround in dd1.3
+-  `95b925b6af0e <https://github.com/open-power/hostboot/commit/95b925b6af0e>`__ HW439321 for dd1.3
+   with compat mode
+-  `4f8994da8802 <https://github.com/open-power/hostboot/commit/4f8994da8802>`__ HW467590 - WAT
+   Solution to prevent ARMWF starvation early hang
+-  `d83a4ee8495c <https://github.com/open-power/hostboot/commit/d83a4ee8495c>`__ SW449387 - Removed
+   Centaur Bad Lane voting disable and CRC tally
+-  `e787bf781886 <https://github.com/open-power/hostboot/commit/e787bf781886>`__ Memory Controller
+   Axone initfiles - initial
+
+Alpana Kumari (2):
+
+-  `e68587e470a3 <https://github.com/open-power/hostboot/commit/e68587e470a3>`__ Support flag
+   parameter for addBusCallout
+-  `657fa3a59869 <https://github.com/open-power/hostboot/commit/657fa3a59869>`__ Use new Bus callout
+   Interface
+
+Alvin Wang (15):
+
+-  `41e818515bd8 <https://github.com/open-power/hostboot/commit/41e818515bd8>`__ Update
+   setup_fw_boot_config() to read out actual values from attributes
+-  `8b5de061e473 <https://github.com/open-power/hostboot/commit/8b5de061e473>`__ Adds blank files
+   for generic
+-  `04cb76144aae <https://github.com/open-power/hostboot/commit/04cb76144aae>`__ Moves fir reg to
+   generic folder
+-  `c9b82b3883b1 <https://github.com/open-power/hostboot/commit/c9b82b3883b1>`__ Adds
+   exp_draminit_mc
+-  `527ce1d4fac5 <https://github.com/open-power/hostboot/commit/527ce1d4fac5>`__ Added p9a_omi_train
+   procedure
+-  `860b67a682af <https://github.com/open-power/hostboot/commit/860b67a682af>`__ Adds empty files
+   for exp_draminit_mc and p9a_omi_train
+-  `749dad0aade6 <https://github.com/open-power/hostboot/commit/749dad0aade6>`__ Update
+   setup_fw_boot_config() to read out actual values from attributes
+-  `98a341798a2f <https://github.com/open-power/hostboot/commit/98a341798a2f>`__ Update
+   setup_fw_boot_config() to read out actual values from attributes
+-  `c1549db07fe8 <https://github.com/open-power/hostboot/commit/c1549db07fe8>`__ Added p9a_omi_train
+   procedure
+-  `2206846076da <https://github.com/open-power/hostboot/commit/2206846076da>`__ Adds p9a_omi_train
+   procedure(START)
+-  `1434297c10f3 <https://github.com/open-power/hostboot/commit/1434297c10f3>`__ Adds
+   exp_draminit_mc
+-  `5cc4d102d8c8 <https://github.com/open-power/hostboot/commit/5cc4d102d8c8>`__ Update
+   setup_fw_boot_config() to read out actual values from attributes
+-  `ca19f71b0d0e <https://github.com/open-power/hostboot/commit/ca19f71b0d0e>`__ Adds empty files
+   for exp_draminit_mc and p9a_omi_train
+-  `b377d2191c6a <https://github.com/open-power/hostboot/commit/b377d2191c6a>`__ Adds
+   exp_draminit_mc
+-  `8f2fbd818041 <https://github.com/open-power/hostboot/commit/8f2fbd818041>`__ Reinstates
+   exp_draminit_mc with change_addr_mux_sel fix
+
+Amit Tendolkar (4):
+
+-  `7ae026518959 <https://github.com/open-power/hostboot/commit/7ae026518959>`__ Avoid spurious Malf
+   Alert (HMI) to PHYP in PM Complex Reset/Suspend
+-  `dd2fa4504ba3 <https://github.com/open-power/hostboot/commit/dd2fa4504ba3>`__ Handling special
+   wakeup assert/deassert mis-match in PM Reset/Init on MALF
+-  `4022351e16d2 <https://github.com/open-power/hostboot/commit/4022351e16d2>`__ Enable PM Malf
+   Alert Handling & PM Complex FFDC to HOMER
+-  `9787cfbf7cd9 <https://github.com/open-power/hostboot/commit/9787cfbf7cd9>`__ Misc. fixes for PM
+   Malf/Stop Recovery with CME injects
+
+Andre Marin (54):
+
+-  `3f7719f257dd <https://github.com/open-power/hostboot/commit/3f7719f257dd>`__ Add SPD decoder
+   files for the factory, decoder, and data engine
+-  `a8edea55c6dd <https://github.com/open-power/hostboot/commit/a8edea55c6dd>`__ Move poll.H into
+   generic memory folder
+-  `77a99242f79d <https://github.com/open-power/hostboot/commit/77a99242f79d>`__ Remove Nimbus
+   dependencies from the SPD decoder
+-  `d175f43bb505 <https://github.com/open-power/hostboot/commit/d175f43bb505>`__ Add MEM_PORT target
+-  `0baa771538e2 <https://github.com/open-power/hostboot/commit/0baa771538e2>`__ Add empty
+   mss_byte.H and mss_generic_check to ease HB mirroring
+-  `6a03e838d00c <https://github.com/open-power/hostboot/commit/6a03e838d00c>`__ Generalize byte
+   reading from SPD reading, for exp i2c reuse
+-  `971d57b0cfd8 <https://github.com/open-power/hostboot/commit/971d57b0cfd8>`__ Added I2C fields,
+   EXP_FW_STATUS API
+-  `4b6dde2ad7d0 <https://github.com/open-power/hostboot/commit/4b6dde2ad7d0>`__ Implement
+   exp_check_for_ready
+-  `84923368d03f <https://github.com/open-power/hostboot/commit/84923368d03f>`__ Fix i2c doxy and
+   update i2c_access.H doxy to match fapi2_access_i2c.H
+-  `d6d3649cfdfa <https://github.com/open-power/hostboot/commit/d6d3649cfdfa>`__ Fixes memdiags
+   broadcast mode address check bug
+-  `a26749cdb659 <https://github.com/open-power/hostboot/commit/a26749cdb659>`__ Remove Nimbus
+   dependencies from the SPD decoder
+-  `f43f978d59a3 <https://github.com/open-power/hostboot/commit/f43f978d59a3>`__ Add field .C empty
+   files for hb mirroring
+-  `0fb82ef1a410 <https://github.com/open-power/hostboot/commit/0fb82ef1a410>`__ Initial mss_field
+   endian modification
+-  `afa0689dd90b <https://github.com/open-power/hostboot/commit/afa0689dd90b>`__ Port-over generic
+   SPD attributes that shouldn’t change per controller
+-  `812d58b11ac4 <https://github.com/open-power/hostboot/commit/812d58b11ac4>`__ Add empty explorer
+   “check_for_ready” procedure files
+-  `9bc9cc1ec309 <https://github.com/open-power/hostboot/commit/9bc9cc1ec309>`__ Added I2C fields,
+   EXP_FW_STATUS API
+-  `d768ab360d9b <https://github.com/open-power/hostboot/commit/d768ab360d9b>`__ Add empty memory
+   explorer error XML
+-  `317471bc269b <https://github.com/open-power/hostboot/commit/317471bc269b>`__ Added I2C fields,
+   EXP_FW_STATUS API
+-  `d4e67b9f29f6 <https://github.com/open-power/hostboot/commit/d4e67b9f29f6>`__ Implement
+   exp_check_for_ready
+-  `69f7231cce31 <https://github.com/open-power/hostboot/commit/69f7231cce31>`__ Add emtpy
+   exp_i2c_fields.H file for mirroring
+-  `544628c36630 <https://github.com/open-power/hostboot/commit/544628c36630>`__ Added I2C fields,
+   EXP_FW_STATUS API
+-  `f47ca20c2aa8 <https://github.com/open-power/hostboot/commit/f47ca20c2aa8>`__ Initial mss_field
+   endian modification
+-  `46bc5b3d85a2 <https://github.com/open-power/hostboot/commit/46bc5b3d85a2>`__ Add empty explorer
+   “check_for_ready” procedure files
+-  `b6c4337484ca <https://github.com/open-power/hostboot/commit/b6c4337484ca>`__ Added I2C fields,
+   EXP_FW_STATUS API
+-  `a77117372fee <https://github.com/open-power/hostboot/commit/a77117372fee>`__ Implement
+   exp_check_for_ready
+-  `98630bf9e248 <https://github.com/open-power/hostboot/commit/98630bf9e248>`__ Initial mss_field
+   endian modification
+-  `d928fb03a931 <https://github.com/open-power/hostboot/commit/d928fb03a931>`__ Add explorer data
+   structures empty file for HB mirroring
+-  `e1856b43b32c <https://github.com/open-power/hostboot/commit/e1856b43b32c>`__ Added common
+   explorer FW data structures
+-  `e2e0e0456051 <https://github.com/open-power/hostboot/commit/e2e0e0456051>`__ Add exp_draminit
+   and fix data_structs constants
+-  `f2ee4fcf3ae4 <https://github.com/open-power/hostboot/commit/f2ee4fcf3ae4>`__ Rename exp
+   procedures files to match FW doc
+-  `be5b9f4a0229 <https://github.com/open-power/hostboot/commit/be5b9f4a0229>`__ Add empty files
+   needed for draminit, eases HB mirroring
+-  `29cd96eae92f <https://github.com/open-power/hostboot/commit/29cd96eae92f>`__ Rename exp_phy_init
+   to exp_draminit_utils
+-  `bafdb81a24b5 <https://github.com/open-power/hostboot/commit/bafdb81a24b5>`__ Add exp_draminit
+   and fix data_structs constants
+-  `71bc706f27df <https://github.com/open-power/hostboot/commit/71bc706f27df>`__ Move fake_spd
+   testing data into generic
+-  `7a16c287bd81 <https://github.com/open-power/hostboot/commit/7a16c287bd81>`__ Add empty data
+   engine files for generic eff_config
+-  `573dc45421fe <https://github.com/open-power/hostboot/commit/573dc45421fe>`__ Add DDIMM empty
+   files for easier HB mirroring
+-  `605baad67443 <https://github.com/open-power/hostboot/commit/605baad67443>`__ Generalize set
+   fields in pre_data_init
+-  `bd7d0b7b5d90 <https://github.com/open-power/hostboot/commit/bd7d0b7b5d90>`__ Add SPD DDIMM DDR4
+   module except for PMIC fields
+-  `6b3270dcb259 <https://github.com/open-power/hostboot/commit/6b3270dcb259>`__ Add empty explorer
+   “check_for_ready” procedure files
+-  `01826b8b8a83 <https://github.com/open-power/hostboot/commit/01826b8b8a83>`__ Implement
+   exp_check_for_ready
+-  `b573dd73e95a <https://github.com/open-power/hostboot/commit/b573dd73e95a>`__ Add DDIMM module
+   functions into SPD facade
+-  `4da49bc35fa2 <https://github.com/open-power/hostboot/commit/4da49bc35fa2>`__ Add L1 procedures
+   for p9a and makefiles
+-  `8878b7e04db4 <https://github.com/open-power/hostboot/commit/8878b7e04db4>`__ Rename exp
+   procedures files to match FW doc
+-  `d05ef241e3d7 <https://github.com/open-power/hostboot/commit/d05ef241e3d7>`__ Add empty generic
+   memory effective attr xml for HB to mirror
+-  `b60f5da2bde2 <https://github.com/open-power/hostboot/commit/b60f5da2bde2>`__ Port-over generic
+   SPD attributes that shouldn’t change per controller
+-  `94c7954c22bc <https://github.com/open-power/hostboot/commit/94c7954c22bc>`__ Add empty HWPs,
+   UTs, and makefiles needed for Axone
+-  `64f14f0cf2dc <https://github.com/open-power/hostboot/commit/64f14f0cf2dc>`__ Add L1 procedures
+   for p9a and makefiles
+-  `84b32560e1aa <https://github.com/open-power/hostboot/commit/84b32560e1aa>`__ Add empty p9a unit
+   test and axone_pre_data_engine files for HB mirroring
+-  `dc56cd6fe5ff <https://github.com/open-power/hostboot/commit/dc56cd6fe5ff>`__ Add empty HWPs,
+   UTs, and makefiles needed for Axone
+-  `c20c2b87a3bd <https://github.com/open-power/hostboot/commit/c20c2b87a3bd>`__ Add L1 procedures
+   for p9a and makefiles
+-  `a47c3bc95b0d <https://github.com/open-power/hostboot/commit/a47c3bc95b0d>`__ Generalize set
+   fields in pre_data_init
+-  `c0e8d172a0cd <https://github.com/open-power/hostboot/commit/c0e8d172a0cd>`__ Add empty pos,
+   c_str files to split dimm specialization
+-  `bf5d123e2ffb <https://github.com/open-power/hostboot/commit/bf5d123e2ffb>`__ Add empty bulk_pwr
+   and utils_to_throttle header files for HB mirror
+-  `e9702279f81e <https://github.com/open-power/hostboot/commit/e9702279f81e>`__ Port-over generic
+   SPD attributes that shouldn’t change per controller
+
+Andres Lugo-Reyes (1):
+
+-  `d1c85ffcab10 <https://github.com/open-power/hostboot/commit/d1c85ffcab10>`__ HTMGT: Save WOF
+   reset reasons across all WOF resets
+
+Andrew Geissler (4):
+
+-  `71ef9b83a69b <https://github.com/open-power/hostboot/commit/71ef9b83a69b>`__ Make REL_POS
+   correct for sub-units
+-  `3b48d9e5a62c <https://github.com/open-power/hostboot/commit/3b48d9e5a62c>`__ Avoid SIMICS
+   exception if SBE tracMERG not available
+-  `3cb9eb102386 <https://github.com/open-power/hostboot/commit/3cb9eb102386>`__ Add MC target to
+   subsystem table
+-  `725cc4974d8c <https://github.com/open-power/hostboot/commit/725cc4974d8c>`__ Add SMPGROUP target
+   to subsystem table
+
+Andrew Jeffery (27):
+
+-  `de06d0f09c74 <https://github.com/open-power/hostboot/commit/de06d0f09c74>`__ console: ast2400:
+   Indicate SP has met configuration requirements
+-  `4b4caf5ee458 <https://github.com/open-power/hostboot/commit/4b4caf5ee458>`__ console: Fix
+   whitespace in ast2400 initialize() method
+-  `9b1dcc3aeea9 <https://github.com/open-power/hostboot/commit/9b1dcc3aeea9>`__ istepdispatcher:
+   Remove undefined symbol ENTER_INFO from TRACDCOMP
+-  `2c582e41b281 <https://github.com/open-power/hostboot/commit/2c582e41b281>`__ intr: Use the
+   correct trace handle in intrrp TRACDCOMP calls
+-  `8a4663c131e1 <https://github.com/open-power/hostboot/commit/8a4663c131e1>`__ assert: Include
+   file name in assert output
+-  `797f6fc91822 <https://github.com/open-power/hostboot/commit/797f6fc91822>`__ assert: Print the
+   backtrace for critical and kernel assertions
+-  `102225f4e3e2 <https://github.com/open-power/hostboot/commit/102225f4e3e2>`__ ipmi: Break
+   circular dependency between ipmimsg and ipmibt
+-  `9a7f18c66e5b <https://github.com/open-power/hostboot/commit/9a7f18c66e5b>`__ ipmi: Replace
+   incorrect dependency on ipmibt with ipmimsg
+-  `e862c4c5a9e0 <https://github.com/open-power/hostboot/commit/e862c4c5a9e0>`__ initservice: Flush
+   trace buffers before shutdown syscall
+-  `bc363055ec19 <https://github.com/open-power/hostboot/commit/bc363055ec19>`__ ipmi: Break
+   circular dependency between IpmiDD and IpmiRP
+-  `281dac1b173c <https://github.com/open-power/hostboot/commit/281dac1b173c>`__ ipmi: Drop
+   unnecessary ipmiconfig dependencies
+-  `dc0f490b31fc <https://github.com/open-power/hostboot/commit/dc0f490b31fc>`__ ipmi: Drop
+   unnecessary ipmibt dependency from ipmifru
+-  `988eda165254 <https://github.com/open-power/hostboot/commit/988eda165254>`__ ipmi: Introduce
+   register_for_event() interface
+-  `d6741cb3db68 <https://github.com/open-power/hostboot/commit/d6741cb3db68>`__ ipmi: Terminate SEL
+   task via shutdown event
+-  `1b481183921d <https://github.com/open-power/hostboot/commit/1b481183921d>`__ ipmi: IpmiDD and
+   IpmiRP must never free resources
+-  `5fc457309f2c <https://github.com/open-power/hostboot/commit/5fc457309f2c>`__ ipmi: Split into
+   ipmibase and ipmiext modules
+-  `e2c0716a0984 <https://github.com/open-power/hostboot/commit/e2c0716a0984>`__ ipmi: Remove IpmiRP
+   dependency on targeting
+-  `4874662e58d9 <https://github.com/open-power/hostboot/commit/4874662e58d9>`__ initservice: Move
+   ipmibase module to base image
+-  `c829113199d6 <https://github.com/open-power/hostboot/commit/c829113199d6>`__ pnor: Introduce an
+   IPMI-based PNOR driver implementation
+-  `92d167f704d5 <https://github.com/open-power/hostboot/commit/92d167f704d5>`__ pnor: Rename the
+   SFC-based PnorDD class to PnorSfcDD
+-  `d768905cfe02 <https://github.com/open-power/hostboot/commit/d768905cfe02>`__ pnor: ipmidd:
+   Rename class to PnorIpmiDD
+-  `7c16f3706b3c <https://github.com/open-power/hostboot/commit/7c16f3706b3c>`__ pnor: mboxdd:
+   Rename class to PnorMboxDD
+-  `9518b4c189c9 <https://github.com/open-power/hostboot/commit/9518b4c189c9>`__ pnor: Fall back to
+   AST mbox transport if IPMI is unavailable
+-  `03ec024db41d <https://github.com/open-power/hostboot/commit/03ec024db41d>`__ errl: Mark
+   errlogMsgHandler() as detached
+-  `95165ec1e111 <https://github.com/open-power/hostboot/commit/95165ec1e111>`__ Revert “sio: Add
+   test for availability - LPC error tweak”
+-  `55ff29accb83 <https://github.com/open-power/hostboot/commit/55ff29accb83>`__ sio: Add test for
+   availability
+-  `ead1bda912e6 <https://github.com/open-power/hostboot/commit/ead1bda912e6>`__ ipmi: Increase
+   polling rate to decrease boot time
+
+Anusha Reddy Rangareddygari (4):
+
+-  `8e74571d1bfb <https://github.com/open-power/hostboot/commit/8e74571d1bfb>`__ Adding a
+   fapi_assert to flag error if PPE is not halted.
+-  `09370fc47b50 <https://github.com/open-power/hostboot/commit/09370fc47b50>`__ Axone only-Mux
+   settings for TOD refclk input
+-  `bc78a12cf399 <https://github.com/open-power/hostboot/commit/bc78a12cf399>`__ FAPI_INF entering
+   and exiting message updates
+-  `47b59238e268 <https://github.com/open-power/hostboot/commit/47b59238e268>`__ Update hardware
+   procedure metadata
+
+Anuwat Saetow (1):
+
+-  `a47f74aceddf <https://github.com/open-power/hostboot/commit/a47f74aceddf>`__ Added initial copy
+   of generic_memory_si_attributes.xml
+
+Artem Senichev (1):
+
+-  `61fb23dd2828 <https://github.com/open-power/hostboot/commit/61fb23dd2828>`__ Fix incorrect
+   syntax in addimgid shell script
+
+Ben Gass (30):
+
+-  `fbd09aa69c39 <https://github.com/open-power/hostboot/commit/fbd09aa69c39>`__ Fix for SW441002.
+-  `b30aa3595760 <https://github.com/open-power/hostboot/commit/b30aa3595760>`__ Build p9n 10 and 20
+   by default.
+-  `0502c52ac63f <https://github.com/open-power/hostboot/commit/0502c52ac63f>`__ Use obus p9ndd1 spy
+   name attribute for obus initfile
+-  `86fd886b32e9 <https://github.com/open-power/hostboot/commit/86fd886b32e9>`__ Adding p9c_11
+   support.
+-  `c1e92050031d <https://github.com/open-power/hostboot/commit/c1e92050031d>`__ Adding p9a support.
+-  `59369e38ac11 <https://github.com/open-power/hostboot/commit/59369e38ac11>`__ Shorten A-link
+   timers for sim. Add polling for A-link training.
+-  `cfd2b2b799ed <https://github.com/open-power/hostboot/commit/cfd2b2b799ed>`__ Re-submit Axone
+   updates
+-  `35d53de6263d <https://github.com/open-power/hostboot/commit/35d53de6263d>`__ Add support for p9c
+   1.2
+-  `e5312ecd72ac <https://github.com/open-power/hostboot/commit/e5312ecd72ac>`__ Remove
+   PROC_FABRIC_LINK_ACTIVE from OBUS_FBC_ENABLED in p9.obus.scom.initfile
+-  `fff26d78ba7b <https://github.com/open-power/hostboot/commit/fff26d78ba7b>`__ Adding p9n 2.3
+   support and p9n 2.3/p9c 1.2 security update
+-  `3341c6aab4fa <https://github.com/open-power/hostboot/commit/3341c6aab4fa>`__ p9_scominfo update
+   OMI order to logically follow MC->MI->MCC instead of OMIC
+-  `3b48b9210afb <https://github.com/open-power/hostboot/commit/3b48b9210afb>`__ Update p9a_10 engd
+   from o10_e9018_1_tp018_ec409_soa_sc_u261_01
+-  `422867966bfc <https://github.com/open-power/hostboot/commit/422867966bfc>`__ Back out p9a_10
+   engd that breaks the initcompiler.
+-  `6d61a393a74b <https://github.com/open-power/hostboot/commit/6d61a393a74b>`__ Adds initfile for
+   Explorer
+-  `4fe67dfccf81 <https://github.com/open-power/hostboot/commit/4fe67dfccf81>`__ initCompiler
+   updates
+-  `5d96a7778c3f <https://github.com/open-power/hostboot/commit/5d96a7778c3f>`__ Update Axone engd.
+-  `7504dc6275e7 <https://github.com/open-power/hostboot/commit/7504dc6275e7>`__ Adding
+   p9a_get/put_mmio and explorer_inband
+-  `990f7cfae74d <https://github.com/open-power/hostboot/commit/990f7cfae74d>`__ Fix exp_inband_wrap
+   makefile
+-  `e6f098dcfe47 <https://github.com/open-power/hostboot/commit/e6f098dcfe47>`__ Adding Axone
+   register header files.
+-  `5e1f534a38ba <https://github.com/open-power/hostboot/commit/5e1f534a38ba>`__ Adjust MI/MCC p9a
+   scom translation for PB scoms
+-  `4c9fb0a48cd0 <https://github.com/open-power/hostboot/commit/4c9fb0a48cd0>`__ Explorer registers
+   and fields generated from dev
+-  `3f1f2186bb80 <https://github.com/open-power/hostboot/commit/3f1f2186bb80>`__ Adding omi_init
+   procedures.
+-  `f4bce59197ae <https://github.com/open-power/hostboot/commit/f4bce59197ae>`__ Adding
+   p9a_ocmb_enable
+-  `c335cd14fff7 <https://github.com/open-power/hostboot/commit/c335cd14fff7>`__ Add missing Axone
+   MC channel translations.
+-  `52080a90a556 <https://github.com/open-power/hostboot/commit/52080a90a556>`__ Adding
+   p9a_ocmb_enable
+-  `72a52820278d <https://github.com/open-power/hostboot/commit/72a52820278d>`__ Update
+   p9a.omi_init.scom.initfile
+-  `8b4a6f12f800 <https://github.com/open-power/hostboot/commit/8b4a6f12f800>`__ Explorer registers
+   and fields generated from dev
+-  `2b34b85249dd <https://github.com/open-power/hostboot/commit/2b34b85249dd>`__ Adds initfile for
+   Explorer
+-  `a54de9465ed1 <https://github.com/open-power/hostboot/commit/a54de9465ed1>`__ Adds initfile for
+   Explorer
+-  `589a0089cc1e <https://github.com/open-power/hostboot/commit/589a0089cc1e>`__ Back out p9a_10
+   engd that breaks the initcompiler.
+
+Benjamin Weisenbeck (17):
+
+-  `698365f71be5 <https://github.com/open-power/hostboot/commit/698365f71be5>`__ PRD: Add PLL
+   signature for Centaur chip
+-  `c2b1cfab3f59 <https://github.com/open-power/hostboot/commit/c2b1cfab3f59>`__ PRD: Use common
+   SetCallout method for TOD
+-  `5268e2f09ba1 <https://github.com/open-power/hostboot/commit/5268e2f09ba1>`__ PRD: Increase
+   threshold on cache CEs to allow 64 line deletes (128 CEs)
+-  `830b052cb619 <https://github.com/open-power/hostboot/commit/830b052cb619>`__ PRD: Fix handling
+   of dead cores in PmRecovery
+-  `96e031001818 <https://github.com/open-power/hostboot/commit/96e031001818>`__ PRD: Check for
+   neighbor core checkstop in pre-analysis plugin
+-  `c17bbad98d89 <https://github.com/open-power/hostboot/commit/c17bbad98d89>`__ PRD: Fix makefile
+   for PllPostAnalysis
+-  `04712b91e355 <https://github.com/open-power/hostboot/commit/04712b91e355>`__ PRD: Adjust core
+   checkstop handling for EX rt deconfig
+-  `eae1d5f0e27f <https://github.com/open-power/hostboot/commit/eae1d5f0e27f>`__ PRD: Separate PLL
+   handling by domain type
+-  `3a589bedae6f <https://github.com/open-power/hostboot/commit/3a589bedae6f>`__ PRD: Fix MF ref
+   failover error signature
+-  `47994fb03586 <https://github.com/open-power/hostboot/commit/47994fb03586>`__ PRD: Add parser for
+   power management recovery FFDC
+-  `6c30bcf89758 <https://github.com/open-power/hostboot/commit/6c30bcf89758>`__ PRD: Handle chips
+   with different MF clock sources
+-  `c2dc84d23e14 <https://github.com/open-power/hostboot/commit/c2dc84d23e14>`__ PRD: Add all
+   relevant callouts for SMP interface errors
+-  `e49b630b208f <https://github.com/open-power/hostboot/commit/e49b630b208f>`__ PRD: Make
+   predictive callout on L3 multi bitline fails
+-  `46663cd701c1 <https://github.com/open-power/hostboot/commit/46663cd701c1>`__ PRD: Distinguish
+   hard obus link failures from predictive callouts
+-  `272a72400ca9 <https://github.com/open-power/hostboot/commit/272a72400ca9>`__ PRD: Updates for PM
+   ffdc parser
+-  `6f8308dff91e <https://github.com/open-power/hostboot/commit/6f8308dff91e>`__ PRD: Correct
+   interpretation of PLL error bits in TP error register
+-  `d02cb05f827a <https://github.com/open-power/hostboot/commit/d02cb05f827a>`__ PRD: Request SW
+   dump type for unhandled core checkstops
+
+Bill Hoffa (24):
+
+-  `97c196cc741f <https://github.com/open-power/hostboot/commit/97c196cc741f>`__ Remove unused
+   memOps variable in attnsvc.C
+-  `331b4bff6cb9 <https://github.com/open-power/hostboot/commit/331b4bff6cb9>`__ Restore Timebase on
+   Master Core Threads 1-3 after Sleep/Winkle
+-  `85bd4989fd0d <https://github.com/open-power/hostboot/commit/85bd4989fd0d>`__ Remove Duplicate
+   init settings ATTR_START_CBS_FIFO_RESET_SKIP
+-  `e07f0c96e66b <https://github.com/open-power/hostboot/commit/e07f0c96e66b>`__ Modify VPD
+   fetchData() call to allow for reading from actual HW
+-  `498b466c4425 <https://github.com/open-power/hostboot/commit/498b466c4425>`__ Base Core/Kernel
+   Changes to Support the Axone Processor Chip
+-  `feba8f886228 <https://github.com/open-power/hostboot/commit/feba8f886228>`__ Use Dimm Numbering
+   instead of Port Number for REL_POS attribute
+-  `64499fa24bc2 <https://github.com/open-power/hostboot/commit/64499fa24bc2>`__ Update
+   p9_sbe_i2c_bit_rate_divisor_setting to set I2C Rate Valid bit
+-  `0d43552dfb6d <https://github.com/open-power/hostboot/commit/0d43552dfb6d>`__ Use Simics CPU
+   Object passed in when executing hap handler code
+-  `dd8217ef8e93 <https://github.com/open-power/hostboot/commit/dd8217ef8e93>`__ Axone PNOR
+   Generation
+-  `30bd2ff53aa1 <https://github.com/open-power/hostboot/commit/30bd2ff53aa1>`__ Add EQ and EX
+   Target types to Axone Simics XML
+-  `b0c72bd00938 <https://github.com/open-power/hostboot/commit/b0c72bd00938>`__ Add Core Target
+   type Instances to Axone Simics XML
+-  `d45d4fa13688 <https://github.com/open-power/hostboot/commit/d45d4fa13688>`__ Add Obus + Obus
+   Brick Target type Instances to Axone Simics XML
+-  `cf366534e0e4 <https://github.com/open-power/hostboot/commit/cf366534e0e4>`__ Add TPM, CAPP, OCC,
+   PEC, and PHB Target Instances to Axone Simics XML
+-  `83e27f4864e8 <https://github.com/open-power/hostboot/commit/83e27f4864e8>`__ Add SBE, PPE and
+   XBUS Target Instances to Axone Simics XML
+-  `d204258959bd <https://github.com/open-power/hostboot/commit/d204258959bd>`__ Add MC and MI
+   Target Instances to Axone Simics XML
+-  `dbcdabf8af8e <https://github.com/open-power/hostboot/commit/dbcdabf8af8e>`__ Add the MCC Target
+   Instance to Axone Simics XML
+-  `4909980fa3bc <https://github.com/open-power/hostboot/commit/4909980fa3bc>`__ Add the OMI Target
+   Instance to Axone Simics XML
+-  `a3979e8bbf2f <https://github.com/open-power/hostboot/commit/a3979e8bbf2f>`__ Add the OCMB_CHIP
+   Target Instance to Axone Simics XML
+-  `ddf8426c6e24 <https://github.com/open-power/hostboot/commit/ddf8426c6e24>`__ Add the MEMORY_PORT
+   Target Instance to Axone Simics XML
+-  `5181a5ac88e5 <https://github.com/open-power/hostboot/commit/5181a5ac88e5>`__ Add the DIMM Target
+   Instances to Axone Simics XML
+-  `042a59be98c3 <https://github.com/open-power/hostboot/commit/042a59be98c3>`__ Add the OMIC Target
+   Instances to Axone Simics XML
+-  `7637f0a44427 <https://github.com/open-power/hostboot/commit/7637f0a44427>`__ Add the PERVASIVE
+   (PERV) Target Instances to Axone Simics XML
+-  `2ad30a4a4e4d <https://github.com/open-power/hostboot/commit/2ad30a4a4e4d>`__ Axone Simics
+   Updates – Finds Functional Master Proc
+-  `e36e0019e0b9 <https://github.com/open-power/hostboot/commit/e36e0019e0b9>`__ HBBL LPC Error
+   Checking
+
+Brian Silver (5):
+
+-  `fcf9daff51a1 <https://github.com/open-power/hostboot/commit/fcf9daff51a1>`__ Add empty files for
+   plug-rules mirror
+-  `14c430f5aa45 <https://github.com/open-power/hostboot/commit/14c430f5aa45>`__ Add rudimentary
+   memory plug rules
+-  `201da82c44f0 <https://github.com/open-power/hostboot/commit/201da82c44f0>`__ Add enforcement of
+   DDR4 DRAM on Nimbus via plug rules
+-  `3a199f3856da <https://github.com/open-power/hostboot/commit/3a199f3856da>`__ Add an attribute to
+   avoid the plug rules in partial good scenarios
+-  `59bc732070c3 <https://github.com/open-power/hostboot/commit/59bc732070c3>`__ Add rank config MRW
+   override to plug rules
+
+Brian Stegmiller (5):
+
+-  `54007af8d4c0 <https://github.com/open-power/hostboot/commit/54007af8d4c0>`__ PRD: Handle SMP
+   Cables
+-  `7f37a0717a29 <https://github.com/open-power/hostboot/commit/7f37a0717a29>`__ PRDF: SMP cable
+   callout changes for FSP
+-  `f1ef5d3692e0 <https://github.com/open-power/hostboot/commit/f1ef5d3692e0>`__ PRDF: Use peer SMP
+   target as ATTR on FSP only
+-  `e9481e191717 <https://github.com/open-power/hostboot/commit/e9481e191717>`__ ATTN: Centaur UCS
+   handling
+-  `9c50b31d9770 <https://github.com/open-power/hostboot/commit/9c50b31d9770>`__ PRD: Allow UCS and
+   HOST broadcast reads for hostboot
+
+CHRISTINA L. GRAVES (6):
+
+-  `b455f921905d <https://github.com/open-power/hostboot/commit/b455f921905d>`__ Adding in LPC
+   functional reset to sbe_lpc_init
+-  `aa29d07f1fec <https://github.com/open-power/hostboot/commit/aa29d07f1fec>`__ Adding in
+   configurations for PNOR/LPC communication
+-  `b3c5dca5b4df <https://github.com/open-power/hostboot/commit/b3c5dca5b4df>`__ Fixing order of
+   setting clock muxes & functional reset & removing sim only scoms
+-  `d7d6bff49f22 <https://github.com/open-power/hostboot/commit/d7d6bff49f22>`__ p9_sbe_lpc_init fix
+   with GPIO reset
+-  `8d513e245051 <https://github.com/open-power/hostboot/commit/8d513e245051>`__ Adding in LPC and
+   OPB timeout values
+-  `40451eef027e <https://github.com/open-power/hostboot/commit/40451eef027e>`__ Do the real LPC
+   reset for DD2
+
+Caleb Palmer (51):
+
+-  `00118c922196 <https://github.com/open-power/hostboot/commit/00118c922196>`__ Row Repair enabled
+   attributes and support function
+-  `fa0f6415f67f <https://github.com/open-power/hostboot/commit/fa0f6415f67f>`__ Row repair enabled
+   MRW remove writeable
+-  `3527992a75f5 <https://github.com/open-power/hostboot/commit/3527992a75f5>`__ Row Repair don’t
+   translate invalid repairs
+-  `167888ed45ea <https://github.com/open-power/hostboot/commit/167888ed45ea>`__ Import Row Repair
+   Supported HWPs
+-  `307b61a6de9b <https://github.com/open-power/hostboot/commit/307b61a6de9b>`__ Adjust port select
+   in bad dq for spares
+-  `52093c412c62 <https://github.com/open-power/hostboot/commit/52093c412c62>`__ PRD: Add
+   MemRowRepair class
+-  `0a6c8e400c83 <https://github.com/open-power/hostboot/commit/0a6c8e400c83>`__ PRDF: Add utilities
+   for checking dram spares
+-  `4dee8a0a6545 <https://github.com/open-power/hostboot/commit/4dee8a0a6545>`__ PRD: Row Repair VCM
+   Updates
+-  `1612a30cff63 <https://github.com/open-power/hostboot/commit/1612a30cff63>`__ PRD: Fix inputted
+   DRAM pos for row repair
+-  `137a748910ed <https://github.com/open-power/hostboot/commit/137a748910ed>`__ Fix bad mirror of
+   p9c_mss_rowRepairFuncs
+-  `91304df7800f <https://github.com/open-power/hostboot/commit/91304df7800f>`__ Row Repair enabled
+   attributes and support function
+-  `8f66e502fddf <https://github.com/open-power/hostboot/commit/8f66e502fddf>`__ Row Repair enabled
+   fix fapi_attr_gets
+-  `31b6cf0ac237 <https://github.com/open-power/hostboot/commit/31b6cf0ac237>`__ PRD: Fixes for MBS
+   timeout cases
+-  `c6eb349f096c <https://github.com/open-power/hostboot/commit/c6eb349f096c>`__ Fix finding paired
+   DIMM in is_sPPR_supported
+-  `4992f9d6d9b2 <https://github.com/open-power/hostboot/commit/4992f9d6d9b2>`__ PRD: Add Row Repair
+   VPD data to errl
+-  `6dc98524f367 <https://github.com/open-power/hostboot/commit/6dc98524f367>`__ Reconfig loop only
+   when setting bad bits not clearing
+-  `112454f3888d <https://github.com/open-power/hostboot/commit/112454f3888d>`__ PRD: Row repair fix
+   checking dram for prev repair
+-  `414037d985e1 <https://github.com/open-power/hostboot/commit/414037d985e1>`__ PRD: Increment addr
+   to next row for VCM row repair
+-  `629218645e52 <https://github.com/open-power/hostboot/commit/629218645e52>`__ PRD: Row Repair
+   adjust for MBA Port 1 inversion
+-  `e652b190c9a8 <https://github.com/open-power/hostboot/commit/e652b190c9a8>`__ PRD: Support for
+   new Axone domains
+-  `8350f2358cab <https://github.com/open-power/hostboot/commit/8350f2358cab>`__ PRD: Axone
+   GetConnected support
+-  `74aed5ff82cb <https://github.com/open-power/hostboot/commit/74aed5ff82cb>`__ PRD: Make
+   getDimmSlct/Port generic
+-  `7d4f360d16e2 <https://github.com/open-power/hostboot/commit/7d4f360d16e2>`__ MDIA: Initial
+   Axone/OCMB updates
+-  `327449849168 <https://github.com/open-power/hostboot/commit/327449849168>`__ Dram Repairs VPD
+   \__getTranslationPortSlct improvements
+-  `c525c33e2020 <https://github.com/open-power/hostboot/commit/c525c33e2020>`__ Dram Repairs VPD
+   favor FAPI trgts and getHelperAttr improvements
+-  `c3edab536c20 <https://github.com/open-power/hostboot/commit/c3edab536c20>`__ Dram Repairs VPD
+   spare byte helpers improvements
+-  `85f4a0400873 <https://github.com/open-power/hostboot/commit/85f4a0400873>`__ Dram Repairs VPD
+   translation helpers improvements
+-  `1c2d3eb70a0f <https://github.com/open-power/hostboot/commit/1c2d3eb70a0f>`__ Dram Repairs VPD
+   getter and setter minor cleanup
+-  `d77c897c2540 <https://github.com/open-power/hostboot/commit/d77c897c2540>`__ Dram Repairs VPD
+   reconfig loop helper function
+-  `8dec4a446e3a <https://github.com/open-power/hostboot/commit/8dec4a446e3a>`__ Row Repair VPD
+   minor improvements
+-  `8c45251a793e <https://github.com/open-power/hostboot/commit/8c45251a793e>`__ Dram Repairs and
+   Row Repair VPD translation trace
+-  `8e551a605aa2 <https://github.com/open-power/hostboot/commit/8e551a605aa2>`__ PRD: Axone
+   Configurator updates
+-  `a10dc1641d32 <https://github.com/open-power/hostboot/commit/a10dc1641d32>`__ Update
+   dimmBadDqCheckParamGetBitmap to be generic
+-  `8c09e8bd73d7 <https://github.com/open-power/hostboot/commit/8c09e8bd73d7>`__ Update row repair
+   funcs to be generic
+-  `451596eb83df <https://github.com/open-power/hostboot/commit/451596eb83df>`__ PRD: Axone updates
+   for MemDqBitmap class
+-  `c7d8ac0a078b <https://github.com/open-power/hostboot/commit/c7d8ac0a078b>`__ Add PRD files SRCs
+   to srcListing
+-  `e3ceaa63602b <https://github.com/open-power/hostboot/commit/e3ceaa63602b>`__ PRD: Nimbus symbol
+   mark performance workaround
+-  `fba889a1a092 <https://github.com/open-power/hostboot/commit/fba889a1a092>`__ PRD: Callout row
+   repairs when all repairs used
+-  `d276ff6b5326 <https://github.com/open-power/hostboot/commit/d276ff6b5326>`__ PRD: Bad dq bitmap
+   add proper clear func
+-  `39a6b40220d9 <https://github.com/open-power/hostboot/commit/39a6b40220d9>`__ PRD: Initial NVDIMM
+   Support
+-  `5b03768f4279 <https://github.com/open-power/hostboot/commit/5b03768f4279>`__ PRD: PHBNFIR
+   callout proc instead of PHB
+-  `4802d403f061 <https://github.com/open-power/hostboot/commit/4802d403f061>`__ PRD: Fix
+   getBadDqBitmap check for dimm
+-  `95bbfc78a463 <https://github.com/open-power/hostboot/commit/95bbfc78a463>`__ PRD: Adjust row
+   repair capture data size
+-  `3229ca9f881b <https://github.com/open-power/hostboot/commit/3229ca9f881b>`__ PRD: PlatServices
+   support for NVDIMM persistency lost msg
+-  `5a0ae42a9589 <https://github.com/open-power/hostboot/commit/5a0ae42a9589>`__ Update Bad Bits and
+   Row Repair for new MSS attrs
+-  `76a14521424a <https://github.com/open-power/hostboot/commit/76a14521424a>`__ Revert “PRD:
+   Initial NVDIMM Support”
+-  `26ccad36beb1 <https://github.com/open-power/hostboot/commit/26ccad36beb1>`__ PRD: Add MCFIR to
+   capture group for mem mirror FFDC
+-  `670a4d60cf40 <https://github.com/open-power/hostboot/commit/670a4d60cf40>`__ PRD: Explorer rule
+   and makefile updates
+-  `0fd6d39f64cd <https://github.com/open-power/hostboot/commit/0fd6d39f64cd>`__ PRD: MPIPL Make
+   sure PRD is initialized in startScrub
+-  `1f1c362c62da <https://github.com/open-power/hostboot/commit/1f1c362c62da>`__ PRD: NVDIMM
+   isolation redesign
+-  `c8094ee98e6d <https://github.com/open-power/hostboot/commit/c8094ee98e6d>`__ PRD: Adjust dram
+   repairs capture data max size
+
+CamVan Nguyen (4):
+
+-  `9677181a2e7f <https://github.com/open-power/hostboot/commit/9677181a2e7f>`__ Remove “Force
+   hbRelease to search master branch” code
+-  `f13cb430ae5b <https://github.com/open-power/hostboot/commit/f13cb430ae5b>`__ Post list of git
+   commits in HB release to CMVC feature
+-  `23126e788fcf <https://github.com/open-power/hostboot/commit/23126e788fcf>`__ Add cumulus cdimm
+   support to auto-release -m path
+-  `c9d3c11613e9 <https://github.com/open-power/hostboot/commit/c9d3c11613e9>`__ Remove auto-release
+   & hbRelease tools
+
+Chris Cain (5):
+
+-  `78f90ced0fa3 <https://github.com/open-power/hostboot/commit/78f90ced0fa3>`__ Add component IDs
+   for PGPE and SGPE/XGPE
+-  `d97118693693 <https://github.com/open-power/hostboot/commit/d97118693693>`__ HTMGT support for
+   PGPE/SGPE error logs
+-  `a31cd814105a <https://github.com/open-power/hostboot/commit/a31cd814105a>`__ HTMGT: Update error
+   logs to reflect elog source
+-  `2d59cd70dae6 <https://github.com/open-power/hostboot/commit/2d59cd70dae6>`__ HTMGT: Clear OCC
+   reset counts after an hour
+-  `02f33294dea5 <https://github.com/open-power/hostboot/commit/02f33294dea5>`__ HTMGT: Change OCC
+   logs to info while recovery is still being attempted
+
+Chris Steffen (19):
+
+-  `a048e96b8e00 <https://github.com/open-power/hostboot/commit/a048e96b8e00>`__ Adding SMP PHY MFG
+   Stress Test
+-  `96eb889d26fa <https://github.com/open-power/hostboot/commit/96eb889d26fa>`__ Move Xbus Erepair
+   FIR Clearing
+-  `a6df8bea1715 <https://github.com/open-power/hostboot/commit/a6df8bea1715>`__ DMI Spare Lane
+   Suppression
+-  `5fff2d76035e <https://github.com/open-power/hostboot/commit/5fff2d76035e>`__ Enable I/O PPE PHY
+   Communication for Abus
+-  `24188d25f62a <https://github.com/open-power/hostboot/commit/24188d25f62a>`__ P9 Centaur Erepair
+   Update
+-  `fc4f9deda281 <https://github.com/open-power/hostboot/commit/fc4f9deda281>`__ DMI Max Spares
+   Exceeded Unit CS
+-  `207de5cbd30e <https://github.com/open-power/hostboot/commit/207de5cbd30e>`__ P9C Abus Procedure
+-  `968021204323 <https://github.com/open-power/hostboot/commit/968021204323>`__ I/O Obus Scom
+   Initfile Checkin
+-  `30d9a874a1ec <https://github.com/open-power/hostboot/commit/30d9a874a1ec>`__ io xbus/obus
+   initfile update
+-  `3b1a2bb98f1b <https://github.com/open-power/hostboot/commit/3b1a2bb98f1b>`__ Update Obus
+   Initfile
+-  `83ff21ec7556 <https://github.com/open-power/hostboot/commit/83ff21ec7556>`__ Applying CTLE
+   Coarse if SMP Abus Config
+-  `70e60e2e03e7 <https://github.com/open-power/hostboot/commit/70e60e2e03e7>`__ Set SMP Abus Rx AC
+   Coupled at Dccal
+-  `be64b15a256c <https://github.com/open-power/hostboot/commit/be64b15a256c>`__ Clear Spare Lane on
+   MC instead of DMI
+-  `814860ea37f6 <https://github.com/open-power/hostboot/commit/814860ea37f6>`__ SMP Abus PPE
+   Workaround
+-  `79549236b644 <https://github.com/open-power/hostboot/commit/79549236b644>`__ DMI Change Max
+   Spares to Recoverable
+-  `30de5c86983e <https://github.com/open-power/hostboot/commit/30de5c86983e>`__ DMI Increase FIFO
+   Margin
+-  `de881124f74c <https://github.com/open-power/hostboot/commit/de881124f74c>`__ P9 Obus MNFG CRC
+   and ECC Error Threshold
+-  `6781c16acf6d <https://github.com/open-power/hostboot/commit/6781c16acf6d>`__ P9 Xbus/DMI CM
+   Workaround
+-  `688a9733e614 <https://github.com/open-power/hostboot/commit/688a9733e614>`__ P9 Obus MNFG Errors
+   Attribute Fix
+
+Christian Geddes (90):
+
+-  `3d15e71d67bf <https://github.com/open-power/hostboot/commit/3d15e71d67bf>`__ Update comment in
+   getSbeVersionViaChipop to be correct
+-  `c7c960c7582c <https://github.com/open-power/hostboot/commit/c7c960c7582c>`__ Remove invalid
+   HRMOR setting code
+-  `be6ed717c7a1 <https://github.com/open-power/hostboot/commit/be6ed717c7a1>`__ Only switch sides
+   and perform hreset if SEEPROM side versions match
+-  `3203b0f520a2 <https://github.com/open-power/hostboot/commit/3203b0f520a2>`__ Add TIMA and IC LSI
+   ESB states to memdiag hang debug output
+-  `10ccdde9f063 <https://github.com/open-power/hostboot/commit/10ccdde9f063>`__ Lookup remote
+   node’s HRMOR value save from prev boot during MPIPL
+-  `b2cf0aa44b39 <https://github.com/open-power/hostboot/commit/b2cf0aa44b39>`__ Make processing of
+   hrmor value in MemStateInfo consistent
+-  `98a657059a5c <https://github.com/open-power/hostboot/commit/98a657059a5c>`__ Only unmask source
+   on proc targ passed to unmask function in intrrp
+-  `f8e8d7c203dc <https://github.com/open-power/hostboot/commit/f8e8d7c203dc>`__ Base targeting
+   support for Axone memory complex
+-  `ffcc637cd404 <https://github.com/open-power/hostboot/commit/ffcc637cd404>`__ Base targeting
+   support for OCMB chip and MEM_PORT chiplet
+-  `7214cd962fb5 <https://github.com/open-power/hostboot/commit/7214cd962fb5>`__ Update ecmd debug
+   scripts and fapi_utils script with Axone targets
+-  `a9697e7b95a6 <https://github.com/open-power/hostboot/commit/a9697e7b95a6>`__ Dump interrupt
+   state information if psudd times out
+-  `2c8610bff34f <https://github.com/open-power/hostboot/commit/2c8610bff34f>`__ Cleanup from Axone
+   targeting base commit
+-  `e82098f4237a <https://github.com/open-power/hostboot/commit/e82098f4237a>`__ Update PG detection
+   for new Axone memory targets
+-  `e867f7fa67be <https://github.com/open-power/hostboot/commit/e867f7fa67be>`__ Remove ATTR_REL_POS
+   from attribute_types.xml
+-  `9b9a992ef245 <https://github.com/open-power/hostboot/commit/9b9a992ef245>`__ Turn off core xstop
+   escalalation on slave nodes prior payload handoff
+-  `192ca8aa60bd <https://github.com/open-power/hostboot/commit/192ca8aa60bd>`__ Ensure we collect
+   PPE trace if psu op times out
+-  `5f64ef1356e4 <https://github.com/open-power/hostboot/commit/5f64ef1356e4>`__ Update scom test
+   cases with Axone P9 Targets
+-  `5e3f78a64c7c <https://github.com/open-power/hostboot/commit/5e3f78a64c7c>`__ Update fapi2 tests
+   cases with Axone targets
+-  `bbad6ad29aab <https://github.com/open-power/hostboot/commit/bbad6ad29aab>`__ Add OCMB_CHIP and
+   MEM_PORT fapi2 test cases
+-  `739807847a95 <https://github.com/open-power/hostboot/commit/739807847a95>`__ Set wakeup mode in
+   istep 15 based on SMF setttings
+-  `5b7c6b466357 <https://github.com/open-power/hostboot/commit/5b7c6b466357>`__ Reset
+   ATTR_SPCWKUP_COUNT to 0 at start of MPIPL
+-  `e569e65e9894 <https://github.com/open-power/hostboot/commit/e569e65e9894>`__ Re-read SBE
+   doorbell register in simics if PSU interrupt is found
+-  `9f4cbc90fd47 <https://github.com/open-power/hostboot/commit/9f4cbc90fd47>`__ Cache C4 DQ/DQS
+   settings from VPD
+-  `7511e132b1e5 <https://github.com/open-power/hostboot/commit/7511e132b1e5>`__ Correctly handle
+   psu FFDC on OpenPower Systems
+-  `69241719be5e <https://github.com/open-power/hostboot/commit/69241719be5e>`__ Add missing axone
+   specific targets to targeting XML
+-  `93f12cd78e8f <https://github.com/open-power/hostboot/commit/93f12cd78e8f>`__ Remove
+   printTimaInfo function until we figure out how to avoid issues
+-  `0aed8ab711c6 <https://github.com/open-power/hostboot/commit/0aed8ab711c6>`__ Improve error
+   traces for MBOX errors
+-  `ce1ebd1460c3 <https://github.com/open-power/hostboot/commit/ce1ebd1460c3>`__ Fix bugs in debug
+   tools introduced when adding Axone targets
+-  `3e677e6cdf31 <https://github.com/open-power/hostboot/commit/3e677e6cdf31>`__ Wrap TS\_ macros in
+   {} to avoid strange IF statement behavior
+-  `74812c31b9e5 <https://github.com/open-power/hostboot/commit/74812c31b9e5>`__ Elevate log levels
+   for simics during PSU ops
+-  `4ee84ba35b54 <https://github.com/open-power/hostboot/commit/4ee84ba35b54>`__ Add way for
+   developers to disable hb sim logging via env variable
+-  `2f6cb7e3b2a0 <https://github.com/open-power/hostboot/commit/2f6cb7e3b2a0>`__ Register Scom
+   Device Routes for OMI, OMIC , and MCC targets
+-  `608fd968f4c3 <https://github.com/open-power/hostboot/commit/608fd968f4c3>`__ Disable automatic
+   collection of SIM logs with MAGIC_SET_LOG_LEVEL
+-  `923654e1ecc7 <https://github.com/open-power/hostboot/commit/923654e1ecc7>`__ Clear INT_CQ
+   related firs after reseting INTRRP logic in HB
+-  `0e15017d11ea <https://github.com/open-power/hostboot/commit/0e15017d11ea>`__ Add exp_i2c_scom
+   driver that will be consumed by HB/SBE platforms
+-  `fffa79ecb0c7 <https://github.com/open-power/hostboot/commit/fffa79ecb0c7>`__ Remove all files in
+   src/import/hwpf/fapi2/include/plat/
+-  `16f5d479caf5 <https://github.com/open-power/hostboot/commit/16f5d479caf5>`__ Update
+   platGetTargetName to handle AXONE and EXPLORER models
+-  `0002dbd29151 <https://github.com/open-power/hostboot/commit/0002dbd29151>`__ Update
+   fapi2CreatePlatLogTest.H to use the fapi trace buffer
+-  `e34d17297e0d <https://github.com/open-power/hostboot/commit/e34d17297e0d>`__ Update axone simics
+   xml to use correct chiplet id for MC1 chiplet
+-  `208f80eb821c <https://github.com/open-power/hostboot/commit/208f80eb821c>`__ Refactor
+   fapi2HwAccessTest to ignore ATTR_MODEL
+-  `6cf801f1c1b7 <https://github.com/open-power/hostboot/commit/6cf801f1c1b7>`__ Route scom
+   operations on OCMB chips to exp_i2c_scom interface
+-  `cd754bf0b111 <https://github.com/open-power/hostboot/commit/cd754bf0b111>`__ Route scom
+   operations on OCMB chips to fapi2 mmio scom interface
+-  `d6cee85dcb3c <https://github.com/open-power/hostboot/commit/d6cee85dcb3c>`__ Update bbuild to
+   b1114a_1846.930
+-  `759971ea1bcd <https://github.com/open-power/hostboot/commit/759971ea1bcd>`__ Fix CAPP target XML
+   in Axone simics xml file
+-  `f63977be6280 <https://github.com/open-power/hostboot/commit/f63977be6280>`__ Clean up
+   typos/small things with expscom directory
+-  `63a9aa53dcf3 <https://github.com/open-power/hostboot/commit/63a9aa53dcf3>`__ Define Parent/Child
+   Relationship for OMIC/OMI targets
+-  `b08d6146f834 <https://github.com/open-power/hostboot/commit/b08d6146f834>`__ Create error log
+   and fail if Proc’s EC is found to be 0x0
+-  `aac415d94083 <https://github.com/open-power/hostboot/commit/aac415d94083>`__ Set FSIMASTER
+   attributes to correct values
+-  `cda012113b8d <https://github.com/open-power/hostboot/commit/cda012113b8d>`__ Add forceBE option
+   to endian_utils.H
+-  `9e89b556adb6 <https://github.com/open-power/hostboot/commit/9e89b556adb6>`__ Add README.md to
+   src/usr/i2c/ which describes P9 I2C layout
+-  `4a8f0e512566 <https://github.com/open-power/hostboot/commit/4a8f0e512566>`__ Default
+   ASYNC_NEST_FREQ_MHZ to be 0xFFFF for Axone simics xml
+-  `db55a872a4a7 <https://github.com/open-power/hostboot/commit/db55a872a4a7>`__ Add VPD_REC_NUM
+   defaults for OCMB chips in Axone system xml for sim
+-  `6620644f7435 <https://github.com/open-power/hostboot/commit/6620644f7435>`__ Write SPD to DDIMM
+   eeproms for axone simics
+-  `36673e6d9525 <https://github.com/open-power/hostboot/commit/36673e6d9525>`__ Fill in remaining
+   dimms for simics_AXONE.system.xml
+-  `cdcc9c270584 <https://github.com/open-power/hostboot/commit/cdcc9c270584>`__ Fix order of
+   parameters for mmioscomdd
+-  `ec1cb99a429e <https://github.com/open-power/hostboot/commit/ec1cb99a429e>`__ Update Axone
+   Partial Good rules to clean up error logs
+-  `1b23e2592366 <https://github.com/open-power/hostboot/commit/1b23e2592366>`__ Remove Redundant
+   phyiscal map setup
+-  `f8189b1d81d8 <https://github.com/open-power/hostboot/commit/f8189b1d81d8>`__ Change code using
+   SANDBOX ENVAR to use CLI variables start sim scripts
+-  `756a8239c061 <https://github.com/open-power/hostboot/commit/756a8239c061>`__ Real OCMB presence
+   detection support for Axone simics
+-  `caa8eda59c2c <https://github.com/open-power/hostboot/commit/caa8eda59c2c>`__ Add presence
+   detection for i2c mux targets
+-  `ac15fd763d3e <https://github.com/open-power/hostboot/commit/ac15fd763d3e>`__ Add new
+   pnorLayoutAxone.xml w/ new EECACHE section
+-  `5ccb0c4605c0 <https://github.com/open-power/hostboot/commit/5ccb0c4605c0>`__ Fix
+   EEPROM_VPD_PRIMARY_INFO attribute on proc targ in axone sim XML
+-  `89a8815250a9 <https://github.com/open-power/hostboot/commit/89a8815250a9>`__ Set TPM model to be
+   the x75 nuvoton for axone simics
+-  `675244ee606e <https://github.com/open-power/hostboot/commit/675244ee606e>`__ Load HWAS module
+   earlier in ext init tasks
+-  `d5fe22ba3b37 <https://github.com/open-power/hostboot/commit/d5fe22ba3b37>`__ Remove sha512 hash
+   from EECACHE section & init section w/ correct info
+-  `d054b917fa8b <https://github.com/open-power/hostboot/commit/d054b917fa8b>`__ Add temporary Axone
+   simics workarounds to progress IPL
+-  `de4076a6de0b <https://github.com/open-power/hostboot/commit/de4076a6de0b>`__ Add new memory
+   related chiplet types to scomtrans function
+-  `318a3c71f79d <https://github.com/open-power/hostboot/commit/318a3c71f79d>`__ Skip dmi_io_dccal
+   in Axone
+-  `79fc8b675dfd <https://github.com/open-power/hostboot/commit/79fc8b675dfd>`__ Use singleton
+   instance of TargetService in mmio.C
+-  `1db47476245e <https://github.com/open-power/hostboot/commit/1db47476245e>`__ Unset CONFIG_FILE
+   env var if in standalone environment
+-  `77e4bbb369ee <https://github.com/open-power/hostboot/commit/77e4bbb369ee>`__ Make sure FIRDATA
+   is filled in axone pnor, remove UVBWLIST section
+-  `27e1f1e7bd37 <https://github.com/open-power/hostboot/commit/27e1f1e7bd37>`__ Update simics to
+   latest build for Axone simics bringup
+-  `37c6c66c97c2 <https://github.com/open-power/hostboot/commit/37c6c66c97c2>`__ Update OBUS PLL
+   Bucket attribute getter with Axone EC levels
+-  `c023204d6e3c <https://github.com/open-power/hostboot/commit/c023204d6e3c>`__ Add call to
+   p9a_ocmb_enable to istep 10.4
+-  `bc12ed0cd438 <https://github.com/open-power/hostboot/commit/bc12ed0cd438>`__ Skip NPU scominit
+   until ARTMISS register gets updated
+-  `eee350897db3 <https://github.com/open-power/hostboot/commit/eee350897db3>`__ Fix issues w/ axone
+   updates to simics scripts
+-  `b9678e8f9164 <https://github.com/open-power/hostboot/commit/b9678e8f9164>`__ Disable Sync Test
+-  `aa18e987116a <https://github.com/open-power/hostboot/commit/aa18e987116a>`__ Add EEPROM caching
+   device op
+-  `3ba6748d3f2c <https://github.com/open-power/hostboot/commit/3ba6748d3f2c>`__ Update i2c driver
+   for OCMB chip
+-  `345f3cf8259d <https://github.com/open-power/hostboot/commit/345f3cf8259d>`__ Fix tags in
+   exp_omi_train attribute xml
+-  `8b0719770221 <https://github.com/open-power/hostboot/commit/8b0719770221>`__ Add expscom test
+   cases
+-  `e2b54b9aeeb8 <https://github.com/open-power/hostboot/commit/e2b54b9aeeb8>`__ Add call to
+   exp_check_for_ready to istep 10.4
+-  `cbe42ab92a49 <https://github.com/open-power/hostboot/commit/cbe42ab92a49>`__ Add new P9A hwp
+   error xml path to fapi2 file generation makefile
+-  `d74d9444ae9c <https://github.com/open-power/hostboot/commit/d74d9444ae9c>`__ Set simics xml to
+   match simics model for OCMB port numbering
+-  `bc80fc6b8435 <https://github.com/open-power/hostboot/commit/bc80fc6b8435>`__ Update istep_mss
+   modules makefile to generate mss accessors
+-  `e6832f74ac22 <https://github.com/open-power/hostboot/commit/e6832f74ac22>`__ Add new path in
+   EEPROM device op to allow reading from new EECACHE
+-  `7c42c4cac717 <https://github.com/open-power/hostboot/commit/7c42c4cac717>`__ Update simics build
+   and pull in Axone binary to pnor generation
+-  `b4d32e92638b <https://github.com/open-power/hostboot/commit/b4d32e92638b>`__ Use shell command
+   to look up CEC_TYPE
+-  `2fce6c032485 <https://github.com/open-power/hostboot/commit/2fce6c032485>`__ Add omi
+   setup/training calls to istep 12
+-  `a9f93cb8d542 <https://github.com/open-power/hostboot/commit/a9f93cb8d542>`__ Update simics build
+   to include p9a_omi_train_check fixes
+
+Claus Michael Olsen (3):
+
+-  `55b7b8fc2712 <https://github.com/open-power/hostboot/commit/55b7b8fc2712>`__ Cleanup: Updated
+   Mvpd access function and removal of unused rings
+-  `8d1d1f240749 <https://github.com/open-power/hostboot/commit/8d1d1f240749>`__ Infrastructure
+   support for new MC OMI rings for Axone
+-  `52b76be22225 <https://github.com/open-power/hostboot/commit/52b76be22225>`__ P10 prep:
+   Infrastructure (IS) ring Id metadata and API changes
+
+Corey Swenson (10):
+
+-  `c2acd2959348 <https://github.com/open-power/hostboot/commit/c2acd2959348>`__ Enable CFM testing
+   of new target data
+-  `022bd8f4c321 <https://github.com/open-power/hostboot/commit/022bd8f4c321>`__ Remove inband scom
+   bit 18 workaround comment
+-  `f27124c1e25b <https://github.com/open-power/hostboot/commit/f27124c1e25b>`__ Add part number and
+   serial number to error log hw callout data
+-  `5656a872211d <https://github.com/open-power/hostboot/commit/5656a872211d>`__ Check for targeting
+   before adding version info in errl commit
+-  `83335d59ac59 <https://github.com/open-power/hostboot/commit/83335d59ac59>`__ Enable IPMI errl
+   after targeting is initialized
+-  `40039bb5fddf <https://github.com/open-power/hostboot/commit/40039bb5fddf>`__ Extend multicast
+   workaround and add tests
+-  `37132b70227c <https://github.com/open-power/hostboot/commit/37132b70227c>`__ Generate error when
+   pnor is not accessed via ipmi
+-  `ddae90ce735c <https://github.com/open-power/hostboot/commit/ddae90ce735c>`__ Make MCS acker
+   workaround changes permanent
+-  `99bfd4be9d12 <https://github.com/open-power/hostboot/commit/99bfd4be9d12>`__ Use virtual address
+   buffer to read mvpd rings
+-  `80cea86add7b <https://github.com/open-power/hostboot/commit/80cea86add7b>`__ Remove call to
+   retrieve data from a previous runtime crash
+
+Dan Crowell (91):
+
+-  `f27c103c8f1c <https://github.com/open-power/hostboot/commit/f27c103c8f1c>`__ Modify subsys
+   translation for memory targets
+-  `e14387c19cc9 <https://github.com/open-power/hostboot/commit/e14387c19cc9>`__ Fix bad traces in
+   pnor utility functions
+-  `1534c78f2989 <https://github.com/open-power/hostboot/commit/1534c78f2989>`__ Add Resolves option
+   for tags
+-  `5b97e1cba5e1 <https://github.com/open-power/hostboot/commit/5b97e1cba5e1>`__ Re-enable
+   p9c_mss_draminit_training_advanced
+-  `3dd1f642a339 <https://github.com/open-power/hostboot/commit/3dd1f642a339>`__ Remove unused files
+-  `53d16c247e67 <https://github.com/open-power/hostboot/commit/53d16c247e67>`__ Fix symsmode check
+   to allow in-memory lookup
+-  `8f9c60506bc9 <https://github.com/open-power/hostboot/commit/8f9c60506bc9>`__ Skip call to FSP
+   for runtime deconfigs if there is no FSP
+-  `3c435be37674 <https://github.com/open-power/hostboot/commit/3c435be37674>`__ Remove
+   ATTR_PROC_CHIP_MEM_TO_USE
+-  `c3dda09f76af <https://github.com/open-power/hostboot/commit/c3dda09f76af>`__ Add constants to
+   core checkstop handler
+-  `e37d51a556e6 <https://github.com/open-power/hostboot/commit/e37d51a556e6>`__ Fix array overrun
+   in draminit training advanced
+-  `67733e22e0ed <https://github.com/open-power/hostboot/commit/67733e22e0ed>`__ Support for mrwHide
+   attribute from fapi attribute xmls
+-  `798b0d2d3fd0 <https://github.com/open-power/hostboot/commit/798b0d2d3fd0>`__ Get rid of extra
+   default for ATTR_CEN_MSS_VREF_CAL_CNTL
+-  `6bf123e83d18 <https://github.com/open-power/hostboot/commit/6bf123e83d18>`__ Remove double free
+   from WOF lookup in HBRT
+-  `5675c7315db0 <https://github.com/open-power/hostboot/commit/5675c7315db0>`__ Add flag to HWAS
+   Callout for SMP repair indicator
+-  `e3ba36df4d51 <https://github.com/open-power/hostboot/commit/e3ba36df4d51>`__ Mirror fixes
+-  `a8d65df44910 <https://github.com/open-power/hostboot/commit/a8d65df44910>`__ Documentation for
+   attribute xml tags
+-  `1b5a02cab7f8 <https://github.com/open-power/hostboot/commit/1b5a02cab7f8>`__ Use Cumulus DD1.3
+   SBE image instead of DD1.0
+-  `cc012e3efd4c <https://github.com/open-power/hostboot/commit/cc012e3efd4c>`__ Move bbuild to
+   b0813a_1832.930
+-  `00185ccfdd81 <https://github.com/open-power/hostboot/commit/00185ccfdd81>`__ Increase i2c
+   timeout to 20ms
+-  `35083b66077d <https://github.com/open-power/hostboot/commit/35083b66077d>`__ Add brief
+   descriptions for procedure callouts
+-  `d897f3d7f7c7 <https://github.com/open-power/hostboot/commit/d897f3d7f7c7>`__ Fix some shortname
+   issues
+-  `a5e13152b439 <https://github.com/open-power/hostboot/commit/a5e13152b439>`__ Another fix to
+   symsmode parms for debug mode
+-  `1c4ad2c91e38 <https://github.com/open-power/hostboot/commit/1c4ad2c91e38>`__ Remove XSCOM and
+   LPC BARs from MRW processing
+-  `1e8f52d2d75a <https://github.com/open-power/hostboot/commit/1e8f52d2d75a>`__ Add ATTR_REL_POS
+   for all units and dimms
+-  `ee83b4d3b2e3 <https://github.com/open-power/hostboot/commit/ee83b4d3b2e3>`__ Keep original istep
+   error log during reconfig loops
+-  `48dc95aac15c <https://github.com/open-power/hostboot/commit/48dc95aac15c>`__ Enable CUMULUS
+   config to use Zeppelin’s SPDX override
+-  `4bff76ae17a5 <https://github.com/open-power/hostboot/commit/4bff76ae17a5>`__ Check capability
+   bit before using wakeup for OPAL in OpenPOWER
+-  `7bb1f1275069 <https://github.com/open-power/hostboot/commit/7bb1f1275069>`__ Skip PM FFDC
+   collection if the HOMER is not valid
+-  `02f6ebe3f176 <https://github.com/open-power/hostboot/commit/02f6ebe3f176>`__ New FAPI2
+   interfaces to read and write MMIO ranges
+-  `8291079771a0 <https://github.com/open-power/hostboot/commit/8291079771a0>`__ Add EQ chiplet to
+   #W errors
+-  `2a2962bd96ec <https://github.com/open-power/hostboot/commit/2a2962bd96ec>`__ Undo hack for PM
+   change that got reverted
+-  `f04d03f76595 <https://github.com/open-power/hostboot/commit/f04d03f76595>`__ Clear out HOMER
+   attributes and reset PM in PHYP mode
+-  `f23a93b5944f <https://github.com/open-power/hostboot/commit/f23a93b5944f>`__ Remove to remirror
+-  `4e4dbf34cd08 <https://github.com/open-power/hostboot/commit/4e4dbf34cd08>`__ Forcibly clear all
+   previous wakeups when the PM Complex starts
+-  `f359d22efddd <https://github.com/open-power/hostboot/commit/f359d22efddd>`__ Fix CVPD testcases
+   for CDIMM configuration
+-  `94c4cbbc02e3 <https://github.com/open-power/hostboot/commit/94c4cbbc02e3>`__ Ignore wakeup
+   failures on checkstopped cores
+-  `7a6203d615b8 <https://github.com/open-power/hostboot/commit/7a6203d615b8>`__ Start compiling in
+   attributes under src/import/generic/
+-  `7e78cc344a0d <https://github.com/open-power/hostboot/commit/7e78cc344a0d>`__ Fix inverted
+   translation logic in wakeup change
+-  `9d54c3e4a33d <https://github.com/open-power/hostboot/commit/9d54c3e4a33d>`__ Attribute cleanup
+-  `2cfc8b1e8aa6 <https://github.com/open-power/hostboot/commit/2cfc8b1e8aa6>`__ Increment HBRT EID
+   on every commit
+-  `dd13920527a8 <https://github.com/open-power/hostboot/commit/dd13920527a8>`__ Remove deprecated
+   attributes
+-  `c33d5206a1af <https://github.com/open-power/hostboot/commit/c33d5206a1af>`__ Make lid_load
+   failures visible logs
+-  `46b6d71b01b4 <https://github.com/open-power/hostboot/commit/46b6d71b01b4>`__ Add consistent
+   enter-exit traces for all runtime interfaces
+-  `459e8bf8e80e <https://github.com/open-power/hostboot/commit/459e8bf8e80e>`__ Set SBE console
+   enable based on Hostboot config var
+-  `c136b6462721 <https://github.com/open-power/hostboot/commit/c136b6462721>`__ Start compiling
+   p9c_mss_row_repair
+-  `94566a8b220c <https://github.com/open-power/hostboot/commit/94566a8b220c>`__ Adding prereqs to
+   fix simics fails
+-  `52f52bb84c85 <https://github.com/open-power/hostboot/commit/52f52bb84c85>`__ Cleanup to Runtime
+   SCOM RCs
+-  `627379aeaa27 <https://github.com/open-power/hostboot/commit/627379aeaa27>`__ sio: Add test for
+   availability - LPC error tweak
+-  `14d96c84c0a0 <https://github.com/open-power/hostboot/commit/14d96c84c0a0>`__ Delay targeting
+   update in CFM until all nodes are processed
+-  `0482f9183726 <https://github.com/open-power/hostboot/commit/0482f9183726>`__ Couple improvements
+   to some runtime traces
+-  `8652b516291e <https://github.com/open-power/hostboot/commit/8652b516291e>`__ Fix reversed
+   polarity in SBE console check
+-  `18413b3e3268 <https://github.com/open-power/hostboot/commit/18413b3e3268>`__ Tweaks to traces
+   for runtime error handling
+-  `2cf26961a1b5 <https://github.com/open-power/hostboot/commit/2cf26961a1b5>`__ Removing a few more
+   attributes from the Serverwiz2 export list
+-  `5ddbd1ea9797 <https://github.com/open-power/hostboot/commit/5ddbd1ea9797>`__ Add HW callout to
+   WOF table errors
+-  `33514fd4143b <https://github.com/open-power/hostboot/commit/33514fd4143b>`__ Break down Dump
+   requests into 1MB chunks
+-  `13d6fcf76a5f <https://github.com/open-power/hostboot/commit/13d6fcf76a5f>`__ Make Boootloader
+   trace tool follow HRMOR
+-  `07f679f36f4c <https://github.com/open-power/hostboot/commit/07f679f36f4c>`__ Clear out FIR Init
+   parameters after extra PM Resets
+-  `46edcd4b4dee <https://github.com/open-power/hostboot/commit/46edcd4b4dee>`__ Only save the CME
+   FIR Masks after they have been setup once
+-  `55c7c54ca26a <https://github.com/open-power/hostboot/commit/55c7c54ca26a>`__ Initial
+   documentation for initservice
+-  `9d418f5eefe3 <https://github.com/open-power/hostboot/commit/9d418f5eefe3>`__ Add missing mutex
+   in LPC error path
+-  `e0373c9878e6 <https://github.com/open-power/hostboot/commit/e0373c9878e6>`__ Add Axone targets
+   to fapi error utilities
+-  `42e8d57d84b9 <https://github.com/open-power/hostboot/commit/42e8d57d84b9>`__ Make
+   ATTR_CLOCK_PLL_MUX writeable for DS8K
+-  `a4d8ef54250c <https://github.com/open-power/hostboot/commit/a4d8ef54250c>`__ Add explorer
+   directory to attribute_info lookup
+-  `499916e45869 <https://github.com/open-power/hostboot/commit/499916e45869>`__ Increase ipmi
+   polling frequency to every 1ms
+-  `e3007bd7476f <https://github.com/open-power/hostboot/commit/e3007bd7476f>`__ Support for MRW
+   attribute mss_mrw_nvdimm_plug_rules
+-  `cbf7565aeb3f <https://github.com/open-power/hostboot/commit/cbf7565aeb3f>`__ Progress code
+   tweaks
+-  `4d54d9e0962c <https://github.com/open-power/hostboot/commit/4d54d9e0962c>`__ Mask off OBUS FIRs
+   during MPIPL
+-  `b08f9e7eb4a7 <https://github.com/open-power/hostboot/commit/b08f9e7eb4a7>`__ Add header file to
+   keep track of Chip IDs
+-  `8e5dda92903e <https://github.com/open-power/hostboot/commit/8e5dda92903e>`__ Reduce ipmi trace
+   spam for pnor hiomap messages
+-  `552d96423109 <https://github.com/open-power/hostboot/commit/552d96423109>`__ Hack to force OCMB
+   presence detection
+-  `42d89b657da1 <https://github.com/open-power/hostboot/commit/42d89b657da1>`__ Add sync to
+   doorbell function to avoid weak consistency bug
+-  `dd65f35941d2 <https://github.com/open-power/hostboot/commit/dd65f35941d2>`__ Add new istep for
+   Hostboot done
+-  `44d2700c0eac <https://github.com/open-power/hostboot/commit/44d2700c0eac>`__ Make new WOV
+   attributes override-only
+-  `17ba81ec0a52 <https://github.com/open-power/hostboot/commit/17ba81ec0a52>`__ Add msgsync to
+   doorbell wakeup logic to avoid weak consistency bug
+-  `ff5e4695cc58 <https://github.com/open-power/hostboot/commit/ff5e4695cc58>`__ Add retry to slave
+   core wakeup path
+-  `3e1fcbff53a5 <https://github.com/open-power/hostboot/commit/3e1fcbff53a5>`__ Interface for OCMB
+   getVPD
+-  `f34e8263607c <https://github.com/open-power/hostboot/commit/f34e8263607c>`__ Remove
+   p9_dump_stop_info
+-  `f6b8ae93833c <https://github.com/open-power/hostboot/commit/f6b8ae93833c>`__ Do not gard cores
+   on the initial core wakeup failure
+-  `94fe5da0c6b4 <https://github.com/open-power/hostboot/commit/94fe5da0c6b4>`__ Add FSPBUILD to CI
+   scripts
+-  `fa120078b864 <https://github.com/open-power/hostboot/commit/fa120078b864>`__ Add relationships
+   for MCC to PRD
+-  `cf7c244558b6 <https://github.com/open-power/hostboot/commit/cf7c244558b6>`__ Move libconsole
+   into base image
+-  `4d92ae4d4ac1 <https://github.com/open-power/hostboot/commit/4d92ae4d4ac1>`__ Add missing implied
+   include to populate_hbruntime.H
+-  `a733a70261d1 <https://github.com/open-power/hostboot/commit/a733a70261d1>`__ Add more agressive
+   memory allocation calls
+-  `8995ddcdc768 <https://github.com/open-power/hostboot/commit/8995ddcdc768>`__ Add a couple useful
+   traces to the PNOR build script
+-  `4097d46b7346 <https://github.com/open-power/hostboot/commit/4097d46b7346>`__ Use proper
+   top-level include for fapi2 target
+-  `5c187fcbf2bc <https://github.com/open-power/hostboot/commit/5c187fcbf2bc>`__ Handle partial-bad
+   MCS logic correctly
+-  `eba5c2ffe5ff <https://github.com/open-power/hostboot/commit/eba5c2ffe5ff>`__ Statically allocate
+   work pages for PNOR Resource Provider
+-  `5885d186389e <https://github.com/open-power/hostboot/commit/5885d186389e>`__ Add
+   ATTR_ENABLED_OBUS_BRICKS
+-  `361f7d64b58f <https://github.com/open-power/hostboot/commit/361f7d64b58f>`__ Adjust makefile
+   directives for expscomtest
+-  `9ea9129a79d5 <https://github.com/open-power/hostboot/commit/9ea9129a79d5>`__ Modify PNOR load
+   order in SBE update to avoid OOM condition
+-  `7c0b8df17583 <https://github.com/open-power/hostboot/commit/7c0b8df17583>`__ Method to execute
+   testcases early in the boot
+
+Daniel M. Crowell (2):
+
+-  `99761f93896d <https://github.com/open-power/hostboot/commit/99761f93896d>`__ Revert “P10 prep:
+   Infrastructure (IS) ring Id metadata and API changes”
+-  `a48f4e959904 <https://github.com/open-power/hostboot/commit/a48f4e959904>`__ Revert “Enhance RAS
+   for case where boot firmware image is too big to load”
+
+Dave Heller (1):
+
+-  `f517c6c5507a <https://github.com/open-power/hostboot/commit/f517c6c5507a>`__ Secure Boot: Don’t
+   override user setting of SB_KEEP_CACHE
+
+Dean Sanner (7):
+
+-  `5be875d40b41 <https://github.com/open-power/hostboot/commit/5be875d40b41>`__ Handle inter-node
+   HRMOR correctly on 3/4 nodes
+-  `437807d50d4a <https://github.com/open-power/hostboot/commit/437807d50d4a>`__ Account for mixed
+   procs in compatibility mode
+-  `f629523b932b <https://github.com/open-power/hostboot/commit/f629523b932b>`__ Run INT scominit on
+   all nodes in multinode systems
+-  `824747757133 <https://github.com/open-power/hostboot/commit/824747757133>`__ Update
+   computeNonPhypRtTarget for P9C OPAL
+-  `fcfd722a6abb <https://github.com/open-power/hostboot/commit/fcfd722a6abb>`__ Support HB running
+   in SMF
+-  `4288e39bf210 <https://github.com/open-power/hostboot/commit/4288e39bf210>`__ Support a default
+   risk/init level per MRW
+-  `502ca3e72e19 <https://github.com/open-power/hostboot/commit/502ca3e72e19>`__ Find cpu struct
+   directly in doorbell interrupt handler
+
+Dhruvaraj Subhashchandran (5):
+
+-  `1441646529dc <https://github.com/open-power/hostboot/commit/1441646529dc>`__ Skipping FSP access
+   check for FAPI attributes
+-  `f5db0c7eb220 <https://github.com/open-power/hostboot/commit/f5db0c7eb220>`__ Add recovered gard
+   log only for garded targets.
+-  `3b5764defdff <https://github.com/open-power/hostboot/commit/3b5764defdff>`__ Skip resource
+   recovery for node and power gard.
+-  `223824211e63 <https://github.com/open-power/hostboot/commit/223824211e63>`__ Additional field to
+   indicate sync in attribute metadata.
+-  `7f52979db708 <https://github.com/open-power/hostboot/commit/7f52979db708>`__ fix Skip resource
+   recovery for node and power gard.
+
+Elizabeth Liner (4):
+
+-  `d409b6a48945 <https://github.com/open-power/hostboot/commit/d409b6a48945>`__ Removing testcase
+   that is no longer valid.
+-  `63e6fb743366 <https://github.com/open-power/hostboot/commit/63e6fb743366>`__ Turning off some
+   VPD test cases for Cumulus only
+-  `d7cc38f0dbce <https://github.com/open-power/hostboot/commit/d7cc38f0dbce>`__ Adding VPD testing
+   data for Cumulus and Nimbus.
+-  `c3499cc7e8cc <https://github.com/open-power/hostboot/commit/c3499cc7e8cc>`__ Adding cumulus
+   model to ci testing
+
+Evan Lojewski (4):
+
+-  `6cb1702db533 <https://github.com/open-power/hostboot/commit/6cb1702db533>`__ Update to allow
+   DDR4-SORDIMM modules to be used. [2/2]
+-  `916771c0f54f <https://github.com/open-power/hostboot/commit/916771c0f54f>`__ Update to allow
+   DDR4-SORDIMM modules to be used. [1/2]
+-  `cccf89e092dd <https://github.com/open-power/hostboot/commit/cccf89e092dd>`__ Add additional 2133
+   and 1866 ps values for spd parsing.
+-  `febbe519b1fc <https://github.com/open-power/hostboot/commit/febbe519b1fc>`__ Update to allow
+   DDR4-SORDIMM modules to be used [3].
+
+Greg Still (3):
+
+-  `931118120f2b <https://github.com/open-power/hostboot/commit/931118120f2b>`__ PM: Move PBAFIR
+   checkstops to recoverable attentions
+-  `47c5001b587c <https://github.com/open-power/hostboot/commit/47c5001b587c>`__ SMF: SBE updates
+   for SMF (URMOR set and CPMMR[Runtime Wakeup Mode] clear)
+-  `475664f1fa35 <https://github.com/open-power/hostboot/commit/475664f1fa35>`__ PM: fix cable pull
+   issue in clearing clock sync upon PM Complex Reset
+
+Gregory S. Still (1):
+
+-  `5c7c298d058e <https://github.com/open-power/hostboot/commit/5c7c298d058e>`__ Revert “PM:
+   OCC<>PGPE interface for P9+”
+
+Ilya Smirnov (27):
+
+-  `d2c065d794ce <https://github.com/open-power/hostboot/commit/d2c065d794ce>`__ Display Secure Mode
+   Console Trace During Boot
+-  `f4f189641a8a <https://github.com/open-power/hostboot/commit/f4f189641a8a>`__ Attach Traces to
+   call_mss_eff_config Errors
+-  `ba8d9b8321dd <https://github.com/open-power/hostboot/commit/ba8d9b8321dd>`__ Mark
+   IPC_DATA_INVALID Errors as Informational
+-  `2ff7bd1af135 <https://github.com/open-power/hostboot/commit/2ff7bd1af135>`__ Sync Attributes to
+   FSP In TPM Required Path
+-  `f70518cf12dc <https://github.com/open-power/hostboot/commit/f70518cf12dc>`__ Set TPM_UNUSABLE
+   Only if TPM is Required
+-  `fd77849e3981 <https://github.com/open-power/hostboot/commit/fd77849e3981>`__ Port System and
+   Node Targets Stitching Code
+-  `7b8e409427f3 <https://github.com/open-power/hostboot/commit/7b8e409427f3>`__ Don’t Process
+   Interrupts During Shutdown
+-  `bdcb33b8fd84 <https://github.com/open-power/hostboot/commit/bdcb33b8fd84>`__ SMF: Store URMOR
+   SPR Value in host_build_stop_image
+-  `22134d69a201 <https://github.com/open-power/hostboot/commit/22134d69a201>`__ SMF: Port NVRAM
+   Reading Logic From Skiboot
+-  `1aae1ba2930c <https://github.com/open-power/hostboot/commit/1aae1ba2930c>`__ Move HOMER BAR to
+   Secure Memory in SMF Mode
+-  `c8511398e857 <https://github.com/open-power/hostboot/commit/c8511398e857>`__ Serialize the Check
+   For Prologs in CI
+-  `50182cf759b9 <https://github.com/open-power/hostboot/commit/50182cf759b9>`__ SMF: Distribute
+   Secure Memory Among Procs
+-  `19a6643807b0 <https://github.com/open-power/hostboot/commit/19a6643807b0>`__ Fix HDAT PNOR
+   Partition’s Offset
+-  `082f9363ee8e <https://github.com/open-power/hostboot/commit/082f9363ee8e>`__ SMF: Temporary Put
+   HOMER In Non-Secure Memory
+-  `36bd1dae2188 <https://github.com/open-power/hostboot/commit/36bd1dae2188>`__ Unit Tests For
+   NVRAM Checking/Reading
+-  `4ba2815b6b76 <https://github.com/open-power/hostboot/commit/4ba2815b6b76>`__ Unit Tests For
+   Adjusting SMF HOMER BAR
+-  `21f75b9e4475 <https://github.com/open-power/hostboot/commit/21f75b9e4475>`__ SMF: NVRAM Reading
+   and Mem Distribution end-to-end Changes
+-  `26f7f6d12b11 <https://github.com/open-power/hostboot/commit/26f7f6d12b11>`__ Trustedboot:
+   GetRandom API Changes
+-  `e7a324f7574b <https://github.com/open-power/hostboot/commit/e7a324f7574b>`__ Create an
+   LRDIMM_CAPABLE HB Config
+-  `39295f752d61 <https://github.com/open-power/hostboot/commit/39295f752d61>`__ Follow-up Changes
+   on SMF NVRAM End-To-End
+-  `868b68df85eb <https://github.com/open-power/hostboot/commit/868b68df85eb>`__ Secureboot: Add New
+   TPM Commands For Nodecomm
+-  `9de9d8f7c5b5 <https://github.com/open-power/hostboot/commit/9de9d8f7c5b5>`__ SMF: Create New
+   UVBWLIST Partition
+-  `faafdfcec87b <https://github.com/open-power/hostboot/commit/faafdfcec87b>`__ Remove Hardcoded
+   *.prf.err.o and *.prf.reg.o From errltool Makefile
+-  `00325c6de8ba <https://github.com/open-power/hostboot/commit/00325c6de8ba>`__ Secureboot:
+   Enhanced Multinode Comm: Slave Node
+-  `3a6180ba3559 <https://github.com/open-power/hostboot/commit/3a6180ba3559>`__ Secureboot:
+   Enhanced Multinode Comm: Master Node
+-  `09e13a7563a3 <https://github.com/open-power/hostboot/commit/09e13a7563a3>`__ Secureboot:
+   Enhanced Multinode Comm: Quote Size Fix
+-  `cab3c5b1f80c <https://github.com/open-power/hostboot/commit/cab3c5b1f80c>`__ Secureboot:
+   Enhanced Multinode Comm: Add size of quote & signature to slv quote
+
+Jacob Harvey (5):
+
+-  `54a05ea9d278 <https://github.com/open-power/hostboot/commit/54a05ea9d278>`__ Implement BC
+   attributes and make eff_dimm class
+-  `17244eeb2294 <https://github.com/open-power/hostboot/commit/17244eeb2294>`__ Update
+   mss_eff_config to L3
+-  `5505f90c9c82 <https://github.com/open-power/hostboot/commit/5505f90c9c82>`__ Fix memory plug
+   rules and error handling
+-  `17a5d5f52af1 <https://github.com/open-power/hostboot/commit/17a5d5f52af1>`__ Remove logErrors in
+   plug_rules
+-  `8b1a3dcf482e <https://github.com/open-power/hostboot/commit/8b1a3dcf482e>`__ L3 work for mss
+   xmls
+
+Jan Hlavac (1):
+
+-  `9be05f401c09 <https://github.com/open-power/hostboot/commit/9be05f401c09>`__ linker: fix
+   compiler warnings
+
+Jayashankar Padath (1):
+
+-  `540894339115 <https://github.com/open-power/hostboot/commit/540894339115>`__ HDAT: Fused core
+   and memorymap version support
+
+Jaymes Wilks (6):
+
+-  `ae718b725e8c <https://github.com/open-power/hostboot/commit/ae718b725e8c>`__ Callout
+   non-functional TPM before processor on I2C
+-  `8b8b8de88700 <https://github.com/open-power/hostboot/commit/8b8b8de88700>`__ Implement generic
+   i2c device callouts for FSP
+-  `00d9a1bc226b <https://github.com/open-power/hostboot/commit/00d9a1bc226b>`__ Disable tolerating
+   blacklist violations
+-  `87adeec28640 <https://github.com/open-power/hostboot/commit/87adeec28640>`__ Support
+   openpower-specific I2C device callouts
+-  `4694514bf5ce <https://github.com/open-power/hostboot/commit/4694514bf5ce>`__ Zero out TPM FRU ID
+   to avoid hostboot crash
+-  `1851aa0056c5 <https://github.com/open-power/hostboot/commit/1851aa0056c5>`__ Add TPM FRU
+   Inventory Record Data
+
+Jennifer A. Stofer (6):
+
+-  `7e8b0c98a623 <https://github.com/open-power/hostboot/commit/7e8b0c98a623>`__ Revert “Adding p9a
+   support.”
+-  `edcc962667ba <https://github.com/open-power/hostboot/commit/edcc962667ba>`__ Revert “Verify
+   Clock/power state on non functional EX/Core/quad chiplets”
+-  `d9535e096407 <https://github.com/open-power/hostboot/commit/d9535e096407>`__ Revert “Adds
+   exp_draminit_mc”
+-  `7f8346297acd <https://github.com/open-power/hostboot/commit/7f8346297acd>`__ Revert “lpc_init:
+   Correct LPC host controller timeout value”
+-  `117289f4ebcf <https://github.com/open-power/hostboot/commit/117289f4ebcf>`__ Revert “Adds
+   exp_draminit_mc”
+-  `acd134ba521f <https://github.com/open-power/hostboot/commit/acd134ba521f>`__ Revert “Adds
+   exp_draminit_mc”
+
+Jenny Huynh (16):
+
+-  `2a377a20bf0b <https://github.com/open-power/hostboot/commit/2a377a20bf0b>`__ Secure memory
+   allocation and setup
+-  `34d3b9353e22 <https://github.com/open-power/hostboot/commit/34d3b9353e22>`__ Avoid enabling smf
+   bits in nmmu logic for P9
+-  `25be20644f96 <https://github.com/open-power/hostboot/commit/25be20644f96>`__ SW427193 /
+   HW461448: Enable memory controller wat
+-  `a291da772449 <https://github.com/open-power/hostboot/commit/a291da772449>`__ Mask early hang
+   indicators from nmmu/vas unit
+-  `d72526550ef6 <https://github.com/open-power/hostboot/commit/d72526550ef6>`__ Mask NMMUFIR(7),
+   NMMUFIR(36:39)
+-  `a04dc7a75506 <https://github.com/open-power/hostboot/commit/a04dc7a75506>`__ Enforce SMF size
+   requirements and correct valid bit
+-  `e8825169c84c <https://github.com/open-power/hostboot/commit/e8825169c84c>`__ HW471413 Aggressive
+   Uncle: disable ERAT thread sharing
+-  `0faf0e05fd41 <https://github.com/open-power/hostboot/commit/0faf0e05fd41>`__ Tune xbus
+   packet_delay_limit for various systems
+-  `c955ff685e66 <https://github.com/open-power/hostboot/commit/c955ff685e66>`__ Enable Nimbus DD23
+   risk levels
+-  `0da0d7545191 <https://github.com/open-power/hostboot/commit/0da0d7545191>`__ HW477626 Dangerous
+   Elk - Applies to CDD12+
+-  `be4944d74f10 <https://github.com/open-power/hostboot/commit/be4944d74f10>`__ HW477626 Dangerous
+   Elk - Temporarily apply to CDD13 native only
+-  `98baafa55ea7 <https://github.com/open-power/hostboot/commit/98baafa55ea7>`__ Additional core
+   inits for Nimbus DD2.3 compatibility modes
+-  `12dcf0ae25d2 <https://github.com/open-power/hostboot/commit/12dcf0ae25d2>`__ HW477626 Dangerous
+   Elk - Reapply for all CDD12+ risk levels
+-  `7a82f47fd3ba <https://github.com/open-power/hostboot/commit/7a82f47fd3ba>`__ Axone core initfile
+   update to match Nimbus DD23
+-  `20e1afb247a2 <https://github.com/open-power/hostboot/commit/20e1afb247a2>`__ Adjust PVR Version
+   for Axone
+-  `cbea08dbf1b3 <https://github.com/open-power/hostboot/commit/cbea08dbf1b3>`__ Secure memory
+   allocation and setup
+
+Joachim Fenkes (11):
+
+-  `3dcbd232eb5d <https://github.com/open-power/hostboot/commit/3dcbd232eb5d>`__ p9_sbe_lpc_init:
+   Improve reset
+-  `93478adb3314 <https://github.com/open-power/hostboot/commit/93478adb3314>`__ p9_tod_init: Update
+   spread spectrum synchronization for Axone
+-  `05f19a490fbe <https://github.com/open-power/hostboot/commit/05f19a490fbe>`__ p9_sbe_lpc_init:
+   Fix LPC bus LRESET for DD2
+-  `4f5f6328360a <https://github.com/open-power/hostboot/commit/4f5f6328360a>`__ p9_sbe_lpc_init:
+   Fix timeout setup
+-  `959908a2a341 <https://github.com/open-power/hostboot/commit/959908a2a341>`__ p9_sbe_lpc_init:
+   Add final check for errors
+-  `f9656dc74945 <https://github.com/open-power/hostboot/commit/f9656dc74945>`__ p9_sbe_lpc_init:
+   Improve reset
+-  `a35686ddb6ca <https://github.com/open-power/hostboot/commit/a35686ddb6ca>`__ lpc_init: Correct
+   LPC host controller timeout value
+-  `5d01411aaf3b <https://github.com/open-power/hostboot/commit/5d01411aaf3b>`__ p9_sbe_lpc_init:
+   Skip final error check for Fleetwood GA1
+-  `5e4b564b9cc3 <https://github.com/open-power/hostboot/commit/5e4b564b9cc3>`__ FAPI2: Multicast
+   API 1/2: Platform-breaking changes
+-  `7d9e00e84843 <https://github.com/open-power/hostboot/commit/7d9e00e84843>`__ FAPI2: Multicast
+   API 2/2: Introduce the actual multicast functions
+-  `5cf2cfc52a72 <https://github.com/open-power/hostboot/commit/5cf2cfc52a72>`__ p9_sbe_npll_setup:
+   Enable spread spectrum before starting PLL
+
+Joe McGill (26):
+
+-  `6f42293e7704 <https://github.com/open-power/hostboot/commit/6f42293e7704>`__ set PEC disable
+   store thread based ordering chicken switches
+-  `1d72c0ee82a2 <https://github.com/open-power/hostboot/commit/1d72c0ee82a2>`__
+   p9_sbe_check_quiesce – restore call to p9_int_scrub_caches
+-  `613fa4b3a5c5 <https://github.com/open-power/hostboot/commit/613fa4b3a5c5>`__ p9_mss_eff_grouping
+   – comment, whitespace only updates
+-  `41556dbc622c <https://github.com/open-power/hostboot/commit/41556dbc622c>`__
+   p9.int.scom.initfile – increase INT_VC_AIB_TIMEOUT
+-  `6bf2d027a217 <https://github.com/open-power/hostboot/commit/6bf2d027a217>`__ p9_sbe_scominit –
+   set XSCOM BAR in secure memory with SMF enabled
+-  `3a9f22d17780 <https://github.com/open-power/hostboot/commit/3a9f22d17780>`__
+   p9.pci.scan.initfile – replace 62028 implementation with initfile entry
+-  `cdf4b35b7d63 <https://github.com/open-power/hostboot/commit/cdf4b35b7d63>`__ mask VAS FIR bits
+   33,35,37
+-  `b255bf6cc5d8 <https://github.com/open-power/hostboot/commit/b255bf6cc5d8>`__ p9_obus_fir_utils –
+   create header for OBUS FIR settings
+-  `3fa58ab0e303 <https://github.com/open-power/hostboot/commit/3fa58ab0e303>`__ Validate OBUS DL
+   lane failed indications during initial link training
+-  `73f196ac8f86 <https://github.com/open-power/hostboot/commit/73f196ac8f86>`__ p9_xip_customize.C
+   – update filter PLL bucket select only for AW keyword ver2
+-  `c6643d484b19 <https://github.com/open-power/hostboot/commit/c6643d484b19>`__ apply INT ARX clock
+   gate disable to p9n DD2.0 hardware
+-  `c17dc98087ad <https://github.com/open-power/hostboot/commit/c17dc98087ad>`__ validate DL, TL,
+   iovalid state prior to SMP build
+-  `9a96890811e7 <https://github.com/open-power/hostboot/commit/9a96890811e7>`__ p9_fab_iovalid –
+   enhance half-link fail determination
+-  `b407cfc0f325 <https://github.com/open-power/hostboot/commit/b407cfc0f325>`__ Updates to permit
+   synchronized SS PLL spreading via TOD
+-  `af570fbad576 <https://github.com/open-power/hostboot/commit/af570fbad576>`__ nest updates for
+   p9c DD1.3 native and p9c DD1.2 compatibility modes
+-  `b38e80aebe0e <https://github.com/open-power/hostboot/commit/b38e80aebe0e>`__ prevent NVDL
+   recal_abort to OBUS PHY during SMP usage
+-  `f784325ac298 <https://github.com/open-power/hostboot/commit/f784325ac298>`__
+   p9.int.scom.initfile – increase PC timeouts
+-  `b0270a92f421 <https://github.com/open-power/hostboot/commit/b0270a92f421>`__
+   p9.int.scom.initfile – mask early hang indicator FIR bits
+-  `5a2e55b7708e <https://github.com/open-power/hostboot/commit/5a2e55b7708e>`__ SMP ABUS – use
+   pattern A to detect lane failures
+-  `69cc45d8f059 <https://github.com/open-power/hostboot/commit/69cc45d8f059>`__ FBC ABUS TDM inject
+   and recovery HWPs
+-  `1720267b190a <https://github.com/open-power/hostboot/commit/1720267b190a>`__ p9_mss_eff_grouping
+   – update deconfiguration rules
+-  `c4f812722685 <https://github.com/open-power/hostboot/commit/c4f812722685>`__ FBC TDM recovery –
+   PPE update, clear recal_abort, pdwn unconnected lanes
+-  `d902dfa03562 <https://github.com/open-power/hostboot/commit/d902dfa03562>`__ apply HW423589
+   option1 (MCD disable) workaround for p9n DD2.1
+-  `9ac0a51a20c1 <https://github.com/open-power/hostboot/commit/9ac0a51a20c1>`__ p9_query_mssinfo –
+   adjust total memory reporting
+-  `975f684980c6 <https://github.com/open-power/hostboot/commit/975f684980c6>`__ p9_query_mssinfo –
+   fill mirror_policy regardless of platform mirror support
+-  `e8cfacbc3232 <https://github.com/open-power/hostboot/commit/e8cfacbc3232>`__ allow option to
+   enforce mirroring of all system memory
+
+Joel Stanley (2):
+
+-  `b24deec9bad7 <https://github.com/open-power/hostboot/commit/b24deec9bad7>`__ bootconfig:
+   Describe pnor boot flags
+-  `de2d12b23dff <https://github.com/open-power/hostboot/commit/de2d12b23dff>`__ fapi2: Use correct
+   RingMode type
+
+John Rell (11):
+
+-  `b2ff2dd0c8e5 <https://github.com/open-power/hostboot/commit/b2ff2dd0c8e5>`__ jgr18081500
+   ctle_coarse update for SW442177
+-  `293c1262d807 <https://github.com/open-power/hostboot/commit/293c1262d807>`__ jgr17042800 Updated
+   Obus scom initfile
+-  `396eca7c503c <https://github.com/open-power/hostboot/commit/396eca7c503c>`__ jgr17050500 Updated
+   Obus initfile for HW405290
+-  `58b5e5dba045 <https://github.com/open-power/hostboot/commit/58b5e5dba045>`__ jgr17061500 Nim
+   Obus DD2 update
+-  `aeed09827aef <https://github.com/open-power/hostboot/commit/aeed09827aef>`__ jgr17071200 Removed
+   pdwn settings
+-  `7772f8c9a003 <https://github.com/open-power/hostboot/commit/7772f8c9a003>`__ jgr17081500 Update
+   TX_ZCAL_P_4X settings for dmi,o,x buses
+-  `1821567eaf9b <https://github.com/open-power/hostboot/commit/1821567eaf9b>`__ jgr17082300 Setting
+   changes for HW41801 HW419305
+-  `3e89694dba30 <https://github.com/open-power/hostboot/commit/3e89694dba30>`__ jgr17083100 Fixed
+   overlooked setting from gerrit change 45079 and HW419305
+-  `254e702fe7ff <https://github.com/open-power/hostboot/commit/254e702fe7ff>`__ jgr171017 Setting
+   changes for Obus boardwire vs cable
+-  `a712f59387fd <https://github.com/open-power/hostboot/commit/a712f59387fd>`__ jgr18042600 Changed
+   rx_recal_abort_dl_mask=0 for cumulus HW446964
+-  `5299301303d4 <https://github.com/open-power/hostboot/commit/5299301303d4>`__ jgr18081500
+   ctle_coarse update for SW442177
+
+Li Meng (11):
+
+-  `24186bec3e6e <https://github.com/open-power/hostboot/commit/24186bec3e6e>`__ add lrdimm plug
+   rules
+-  `51f5db9c1519 <https://github.com/open-power/hostboot/commit/51f5db9c1519>`__ Adds new LRDIMM raw
+   cards settings
+-  `bd720a49650e <https://github.com/open-power/hostboot/commit/bd720a49650e>`__ Creates LRDIMM
+   mrep/dwl calibration recorder class
+-  `f7cb4b2a4cf4 <https://github.com/open-power/hostboot/commit/f7cb4b2a4cf4>`__ Adds LRDIMM MWD
+   coarse training step
+-  `9b441810e8d7 <https://github.com/open-power/hostboot/commit/9b441810e8d7>`__ Adds LRDIMM MWD
+   fine training step
+-  `7381575f36f5 <https://github.com/open-power/hostboot/commit/7381575f36f5>`__ Adds error logging
+   features to LRDIMM MRD_COARSE
+-  `92878a72ccf2 <https://github.com/open-power/hostboot/commit/92878a72ccf2>`__ Adds some BCW safe
+   delay for LRDIMM
+-  `4e3054b31ad3 <https://github.com/open-power/hostboot/commit/4e3054b31ad3>`__ Adds workaround for
+   LRDIMM to clear FIRs
+-  `ed2c193506ec <https://github.com/open-power/hostboot/commit/ed2c193506ec>`__ Adds new algorithm
+   for DWL
+-  `076b28a8f445 <https://github.com/open-power/hostboot/commit/076b28a8f445>`__ Adds RAS features
+   to LRDIMM MRD_FINE and use fine_recorder class
+-  `2ec59e8cf6b9 <https://github.com/open-power/hostboot/commit/2ec59e8cf6b9>`__ Fixes LRDIMM
+   training issue
+
+Louis Stermole (43):
+
+-  `85a561df01c8 <https://github.com/open-power/hostboot/commit/85a561df01c8>`__ Improve WR_VREF
+   shmoo algorithm in p9c training_adv
+-  `12289773b37d <https://github.com/open-power/hostboot/commit/12289773b37d>`__ Setup terminations
+   on non-calibrating ranks during WR_LVL on DDR3
+-  `c66059fce342 <https://github.com/open-power/hostboot/commit/c66059fce342>`__ Fix PDA fails due
+   to DRAM count on CDIMMs in p9c WR_VREF shmoo
+-  `648be0c060f6 <https://github.com/open-power/hostboot/commit/648be0c060f6>`__ Add default
+   (initToZero) for ATTR_CEN_LRDIMM_RANK_MULT_MODE
+-  `f62ab04343d1 <https://github.com/open-power/hostboot/commit/f62ab04343d1>`__ Reduce size of
+   generic_shmoo class in firmware
+-  `a84a3f3af197 <https://github.com/open-power/hostboot/commit/a84a3f3af197>`__ Add option to
+   increase VREF step in p9c characterization shmoo
+-  `7fa5843dd1b5 <https://github.com/open-power/hostboot/commit/7fa5843dd1b5>`__ Change p9c box
+   shmoo callouts from recovered to predictive
+-  `7a9396eef7d8 <https://github.com/open-power/hostboot/commit/7a9396eef7d8>`__ Add plug rule for
+   dual-drop DIMM configs that produce different xlate settings
+-  `5abc57bc8352 <https://github.com/open-power/hostboot/commit/5abc57bc8352>`__ Add empty files for
+   p9c soft PPR (row repair) function
+-  `0101df38954b <https://github.com/open-power/hostboot/commit/0101df38954b>`__ Multiple fixes to
+   enable p9c draminit_training_adv during IPL
+-  `bdf069fd1360 <https://github.com/open-power/hostboot/commit/bdf069fd1360>`__ Add soft PPR (row
+   repair) function for p9c
+-  `93192aff25f4 <https://github.com/open-power/hostboot/commit/93192aff25f4>`__ Add row repair
+   access functions and attr switches for p9c
+-  `a7b46bd16dfc <https://github.com/open-power/hostboot/commit/a7b46bd16dfc>`__ Fix makefile error
+   for p9c_mss_draminit_mc
+-  `81faecc96e97 <https://github.com/open-power/hostboot/commit/81faecc96e97>`__ Change training_adv
+   sanity check fail to a recovered fail for p9c
+-  `e5eb14043e5d <https://github.com/open-power/hostboot/commit/e5eb14043e5d>`__ Fix attribute
+   access errors in p9c row_repair
+-  `12eac54482d5 <https://github.com/open-power/hostboot/commit/12eac54482d5>`__ Re-enable training
+   advanced WR_VREF algorithm in xml for p9c
+-  `fecb93f47316 <https://github.com/open-power/hostboot/commit/fecb93f47316>`__ Fix Centaur
+   workaround in p9c_mss_row_repair
+-  `59b84449bc49 <https://github.com/open-power/hostboot/commit/59b84449bc49>`__ Remove some debug
+   trace from p9c_mss_draminit_training_adv code
+-  `7b0ac241e5dd <https://github.com/open-power/hostboot/commit/7b0ac241e5dd>`__ Fix MR0 corruption
+   when applying rank1 row repair on p9c
+-  `b26e6d85c030 <https://github.com/open-power/hostboot/commit/b26e6d85c030>`__ Fix RCD parity
+   errors in p9c row repair
+-  `de9ec8dc9ca5 <https://github.com/open-power/hostboot/commit/de9ec8dc9ca5>`__ Add blank
+   gen_mss_volt.H file for HB mirror
+-  `25b23bbf3086 <https://github.com/open-power/hostboot/commit/25b23bbf3086>`__ Add empty files for
+   porting mss_volt to generic
+-  `6a6ee6a74bce <https://github.com/open-power/hostboot/commit/6a6ee6a74bce>`__ Move MSS volt attr
+   setters to generic folder
+-  `3ef628970ba2 <https://github.com/open-power/hostboot/commit/3ef628970ba2>`__ Move
+   MNFG_TEST_ALL_SPARE_DRAM_ROWS to a new encoding
+-  `3a992958a6d4 <https://github.com/open-power/hostboot/commit/3a992958a6d4>`__ Add p9a_mss_volt
+   procedure
+-  `856a7adf6b50 <https://github.com/open-power/hostboot/commit/856a7adf6b50>`__ Fix RC09 ODT errors
+   on Nimbus dual-drop configs
+-  `6a5388bbc8b0 <https://github.com/open-power/hostboot/commit/6a5388bbc8b0>`__ Add new MSS
+   attributes for Axone
+-  `caec0f122a55 <https://github.com/open-power/hostboot/commit/caec0f122a55>`__ Convert mss
+   explorer and axone code to use attr accessors
+-  `bd23628e6e9d <https://github.com/open-power/hostboot/commit/bd23628e6e9d>`__ Add generic
+   attribute accessor script and makefiles
+-  `3d3ef8466200 <https://github.com/open-power/hostboot/commit/3d3ef8466200>`__ Add p9a_mss_volt
+   procedure
+-  `7315298af82e <https://github.com/open-power/hostboot/commit/7315298af82e>`__ Add
+   ATTR_MSS_MEM_MVPD_FWMS to generic xml and fix accessor
+-  `142cc29ed9f7 <https://github.com/open-power/hostboot/commit/142cc29ed9f7>`__ Fix 1-rank row
+   repair case in p9c draminit_training and draminit_mc
+-  `6ad9d52a4bad <https://github.com/open-power/hostboot/commit/6ad9d52a4bad>`__ Convert mss
+   explorer and axone code to use attr accessors
+-  `5421995274d7 <https://github.com/open-power/hostboot/commit/5421995274d7>`__ Add generic
+   attribute accessor script and makefiles
+-  `f902471a6092 <https://github.com/open-power/hostboot/commit/f902471a6092>`__ Add new MSS
+   attributes for Axone
+-  `5aa25ac451da <https://github.com/open-power/hostboot/commit/5aa25ac451da>`__ Add
+   ATTR_MSS_MEM_MVPD_FWMS to generic xml and fix accessor
+-  `8928ba650762 <https://github.com/open-power/hostboot/commit/8928ba650762>`__ Convert mss
+   explorer and axone code to use attr accessors
+-  `b22fa9e19c1a <https://github.com/open-power/hostboot/commit/b22fa9e19c1a>`__ Add p9a_mss_volt
+   procedure
+-  `da8dc237c389 <https://github.com/open-power/hostboot/commit/da8dc237c389>`__ Add new MSS
+   attributes for Axone
+-  `a89240102641 <https://github.com/open-power/hostboot/commit/a89240102641>`__ Convert mss
+   explorer and axone code to use attr accessors
+-  `1fba0b5d505f <https://github.com/open-power/hostboot/commit/1fba0b5d505f>`__ Add p9a_mss_volt
+   procedure
+-  `8fd946fc4b38 <https://github.com/open-power/hostboot/commit/8fd946fc4b38>`__ Add generic
+   attribute accessor script and makefiles
+-  `66a5ca389cf9 <https://github.com/open-power/hostboot/commit/66a5ca389cf9>`__ Add new MSS
+   attributes for Axone
+
+Matt Derksen (36):
+
+-  `b7906419b3bc <https://github.com/open-power/hostboot/commit/b7906419b3bc>`__ Call
+   fapi2::getSPD() via FAPI_INVOKE_HWP
+-  `3e645f2d3703 <https://github.com/open-power/hostboot/commit/3e645f2d3703>`__ Add WOF compare
+   data section for RC_WOF_TABLE_NOT_FOUND errors
+-  `27c01047205d <https://github.com/open-power/hostboot/commit/27c01047205d>`__ Use hostservice to
+   do special wakeup at runtime for open-power systems
+-  `78c7928126a9 <https://github.com/open-power/hostboot/commit/78c7928126a9>`__ Only store HRMOR
+   value on primary node
+-  `847e8ef1fbeb <https://github.com/open-power/hostboot/commit/847e8ef1fbeb>`__ Add hostboot
+   reserved memory mirroring support
+-  `14340c147361 <https://github.com/open-power/hostboot/commit/14340c147361>`__ Use
+   ATTR_MAX_COMPUTE_NODES_PER_SYSTEM instead of hardcoding
+-  `7c5afbddbf0a <https://github.com/open-power/hostboot/commit/7c5afbddbf0a>`__ Additional tracing
+   for shutdown events
+-  `2968366be470 <https://github.com/open-power/hostboot/commit/2968366be470>`__ Add thread ID into
+   trace_lite traces
+-  `716f5fdcab1d <https://github.com/open-power/hostboot/commit/716f5fdcab1d>`__ Fix part
+   translation for SMP_CABLE callout
+-  `165bb46bac36 <https://github.com/open-power/hostboot/commit/165bb46bac36>`__ Support fapi2 i2c
+   functions
+-  `1c97a157a652 <https://github.com/open-power/hostboot/commit/1c97a157a652>`__ Cxxtest for
+   fapi_i2c support
+-  `667b300924ee <https://github.com/open-power/hostboot/commit/667b300924ee>`__ Fix cscope segfault
+   problem
+-  `39b2ccdfc8b3 <https://github.com/open-power/hostboot/commit/39b2ccdfc8b3>`__ Fix compile error
+-  `f07e1f685951 <https://github.com/open-power/hostboot/commit/f07e1f685951>`__ Fix WOF data not
+   found FFDC
+-  `a45ace1ec733 <https://github.com/open-power/hostboot/commit/a45ace1ec733>`__ Send Attn chip list
+   for monitoring
+-  `1e21ee6d26e5 <https://github.com/open-power/hostboot/commit/1e21ee6d26e5>`__ Allow stopIPL to be
+   called before istepdispatcher is loaded
+-  `1e1b50096bb4 <https://github.com/open-power/hostboot/commit/1e1b50096bb4>`__ Support fapi2 MMIO
+   functions
+-  `2dfa56b49d0e <https://github.com/open-power/hostboot/commit/2dfa56b49d0e>`__ Deconfig parent
+   rollup simplified
+-  `b3290cc00d17 <https://github.com/open-power/hostboot/commit/b3290cc00d17>`__ Fix
+   predicateHwasChanged to only check subscribed bits
+-  `b01425166372 <https://github.com/open-power/hostboot/commit/b01425166372>`__ Update WOF errl
+   parser to allow for padding
+-  `f1f22626aa57 <https://github.com/open-power/hostboot/commit/f1f22626aa57>`__ Disable HX keyword
+   bifurcation
+-  `881634a4e1f6 <https://github.com/open-power/hostboot/commit/881634a4e1f6>`__ Add ATTR_REL_POS to
+   NIMBUS system xml
+-  `c8c73af1c713 <https://github.com/open-power/hostboot/commit/c8c73af1c713>`__ Deconfigure parent
+   if no more functioning children of child’s type
+-  `b9a994a7a57a <https://github.com/open-power/hostboot/commit/b9a994a7a57a>`__ Support version 2
+   of PEC_PCIE_HX_KEYWORD_DATA
+-  `b95e95e56ed7 <https://github.com/open-power/hostboot/commit/b95e95e56ed7>`__ Use RC_NO_SPIRA
+   instead of RC_BAD_NACA for error log
+-  `386e53387a30 <https://github.com/open-power/hostboot/commit/386e53387a30>`__ No parent rollup
+   for OBUS children
+-  `ad1c30eb712f <https://github.com/open-power/hostboot/commit/ad1c30eb712f>`__ Move NVDIMM
+   operations under NVDIMM modules
+-  `799f85e1af46 <https://github.com/open-power/hostboot/commit/799f85e1af46>`__ Change to
+   DELAYED_DECONFIG for HX_KEYWORD errors
+-  `cb35695328fb <https://github.com/open-power/hostboot/commit/cb35695328fb>`__ Inform PHYP of
+   NVDIMM protection by OCC
+-  `0b958d9ac441 <https://github.com/open-power/hostboot/commit/0b958d9ac441>`__ OCC active
+   notification for NVDIMM protection
+-  `ca540331fa7c <https://github.com/open-power/hostboot/commit/ca540331fa7c>`__ Enable NVDIMM code
+   on FSP-based systems
+-  `8293d83310c1 <https://github.com/open-power/hostboot/commit/8293d83310c1>`__ Fix deconfigure
+   parent rollup policy
+-  `6c2654db4623 <https://github.com/open-power/hostboot/commit/6c2654db4623>`__ Manually garded
+   targets incorrectly being resource recovered
+-  `855fc5f9694d <https://github.com/open-power/hostboot/commit/855fc5f9694d>`__ Explorer_inband
+   support: add response data buffer to getRSP
+-  `40cbc0048661 <https://github.com/open-power/hostboot/commit/40cbc0048661>`__ OpenPOWER support
+   for native and compatibility mode for DD2.3
+-  `37e67698be56 <https://github.com/open-power/hostboot/commit/37e67698be56>`__ Framework for
+   NVDIMM update
+
+Matt K. Light (3):
+
+-  `501844c893e5 <https://github.com/open-power/hostboot/commit/501844c893e5>`__ fapi2 i2c access
+   headers
+-  `9af02ab015ac <https://github.com/open-power/hostboot/commit/9af02ab015ac>`__ fapi2 i2c dox
+   update
+-  `e2eaa810c17a <https://github.com/open-power/hostboot/commit/e2eaa810c17a>`__ init values in
+   p9_pm_fir_class functions
+
+Matt Raybuck (23):
+
+-  `6a593d78b7c5 <https://github.com/open-power/hostboot/commit/6a593d78b7c5>`__ Combine trace
+   buffers in errlog
+-  `306037698122 <https://github.com/open-power/hostboot/commit/306037698122>`__ Add VERSION to all
+   OpenPOWER error logs
+-  `9b59223389e7 <https://github.com/open-power/hostboot/commit/9b59223389e7>`__ Add commit hook to
+   sort the attribute xml files
+-  `3ee865ba154a <https://github.com/open-power/hostboot/commit/3ee865ba154a>`__ Attribute keyword
+   to require override
+-  `7caab9472ef7 <https://github.com/open-power/hostboot/commit/7caab9472ef7>`__ new targeting
+   sorting tools removes newline from prolog
+-  `0c5edba986eb <https://github.com/open-power/hostboot/commit/0c5edba986eb>`__ Added support for
+   recursive mutexes
+-  `2e77a7fb1433 <https://github.com/open-power/hostboot/commit/2e77a7fb1433>`__ Attribute support
+   for recursive mutexes
+-  `9e552af485f3 <https://github.com/open-power/hostboot/commit/9e552af485f3>`__ Remove hardcoding
+   of partial good logic (1/2)
+-  `022f2d75d80d <https://github.com/open-power/hostboot/commit/022f2d75d80d>`__ Add VERSION to all
+   OpenPOWER HBRT error logs
+-  `8b6b1b256035 <https://github.com/open-power/hostboot/commit/8b6b1b256035>`__ Remove hardcoding
+   of partial good logic (2/2)
+-  `c999bcf47251 <https://github.com/open-power/hostboot/commit/c999bcf47251>`__ Defect - multiple
+   SRCs generated on zz system
+-  `5df2c7f08c0e <https://github.com/open-power/hostboot/commit/5df2c7f08c0e>`__ Better logging for
+   Partial Good Issues (1/2)
+-  `24f66ecb7882 <https://github.com/open-power/hostboot/commit/24f66ecb7882>`__ Better logging for
+   Partial Good Issues (1.5/2)
+-  `529e81cd709b <https://github.com/open-power/hostboot/commit/529e81cd709b>`__ Updates to
+   processMrw to fix Chiplet Ids
+-  `1ba78c4580b6 <https://github.com/open-power/hostboot/commit/1ba78c4580b6>`__ Fix intermittent
+   Jenkins CI fail
+-  `7e7b0b61c906 <https://github.com/open-power/hostboot/commit/7e7b0b61c906>`__ Deconfig updates
+   for Axone and OCMB
+-  `566bc52410a9 <https://github.com/open-power/hostboot/commit/566bc52410a9>`__ presentByAssoc
+   updates for Axone and OCMB
+-  `443a53ba1771 <https://github.com/open-power/hostboot/commit/443a53ba1771>`__ deconfigByAssoc
+   updates for Axone and OMCB
+-  `c2f2f5037920 <https://github.com/open-power/hostboot/commit/c2f2f5037920>`__ remove unnecessary
+   checks in checkMinimumHardware
+-  `dbc69abae26a <https://github.com/open-power/hostboot/commit/dbc69abae26a>`__ Fix intermittent CI
+   fails regarding mutexes
+-  `72628079d63e <https://github.com/open-power/hostboot/commit/72628079d63e>`__ Updates to
+   processMrw.pl to fix erroneous chiplet ids
+-  `ba2bcf1cdba3 <https://github.com/open-power/hostboot/commit/ba2bcf1cdba3>`__ Correct invalid
+   HUID and chiplet id values for NPU targets
+-  `9825db50591c <https://github.com/open-power/hostboot/commit/9825db50591c>`__ Better logging for
+   Partial Good Issues (2/2)
+
+Matthew Raybuck (1):
+
+-  `02150d1b6c0d <https://github.com/open-power/hostboot/commit/02150d1b6c0d>`__ Move watchdog timer
+   to prevent timeout
+
+Maxim Polyakov (2):
+
+-  `1ad25a8428db <https://github.com/open-power/hostboot/commit/1ad25a8428db>`__ Support for
+   extended FRU data for memory modules
+-  `1830d1847644 <https://github.com/open-power/hostboot/commit/1830d1847644>`__ Calculate capacity
+   for 3DS DIMMs in IPMI FRU inventory
+
+Mengze Liao (1):
+
+-  `61bcb01d6fd5 <https://github.com/open-power/hostboot/commit/61bcb01d6fd5>`__ Add PCIe dynamic
+   bifurcation function for barreleye G2
+
+Mike Baiocchi (11):
+
+-  `8948f0196ab1 <https://github.com/open-power/hostboot/commit/8948f0196ab1>`__ ABUS Node
+   Communication: Add Support for Redundant Links
+-  `8dab4e13569f <https://github.com/open-power/hostboot/commit/8dab4e13569f>`__ Add PEER_TARGET and
+   PEER_PATH to SMPGROUP Target
+-  `85367d8e40dd <https://github.com/open-power/hostboot/commit/85367d8e40dd>`__ Update
+   adjustHbiPhysSize() Function to handle HBI Expansion
+-  `a0ee54b5faf4 <https://github.com/open-power/hostboot/commit/a0ee54b5faf4>`__ Update bbuild to
+   b0710c_1827.920
+-  `2d79288ff609 <https://github.com/open-power/hostboot/commit/2d79288ff609>`__ ABUS Node
+   Communication is operational, so commit all errors
+-  `887663e6ad51 <https://github.com/open-power/hostboot/commit/887663e6ad51>`__ Minor Error Log
+   Improvements
+-  `864d9b80ebf9 <https://github.com/open-power/hostboot/commit/864d9b80ebf9>`__ Node
+   Communications: use addHwCallout() to deconfigure
+-  `2ce1bf13b5bf <https://github.com/open-power/hostboot/commit/2ce1bf13b5bf>`__ Make TOC partion
+   Read-Only in all PNOR Layouts
+-  `b5c6e0b3b0d4 <https://github.com/open-power/hostboot/commit/b5c6e0b3b0d4>`__ Add Support for
+   Nuvoton 75x Model of TPMs
+-  `c47875eb8c65 <https://github.com/open-power/hostboot/commit/c47875eb8c65>`__ Add Node
+   Communications Transfer Protocol
+-  `5420b7312c8a <https://github.com/open-power/hostboot/commit/5420b7312c8a>`__ Secureboot: Enable
+   New Multinode Trustedboot Transfer
+
+Nicholas E. Bofferding (1):
+
+-  `506a20f3bb46 <https://github.com/open-power/hostboot/commit/506a20f3bb46>`__ Revert “Delete
+   non-terminating TPM error in fabric integration step”
+
+Nick Bofferding (31):
+
+-  `928ef690c086 <https://github.com/open-power/hostboot/commit/928ef690c086>`__ Send errors from
+   previous boots as callhome type eSELs
+-  `ea3d3a6c4f98 <https://github.com/open-power/hostboot/commit/ea3d3a6c4f98>`__ I2C: Inhibit
+   sending slave stop command when SDA and SCL are not both asserted
+-  `5ce2333d7d4a <https://github.com/open-power/hostboot/commit/5ce2333d7d4a>`__ Secure Boot: Clear
+   XBUS FIR bits after SMP enabled
+-  `923ed59ce8a7 <https://github.com/open-power/hostboot/commit/923ed59ce8a7>`__ MRW: If bus object
+   doesn’t have I2C_ADDRESS property, get it from I2C slave
+-  `6b3ddf52b517 <https://github.com/open-power/hostboot/commit/6b3ddf52b517>`__ eRepair: Pass RX/TX
+   vectors into lane power down HWPs in right order
+-  `9350ecec4bd2 <https://github.com/open-power/hostboot/commit/9350ecec4bd2>`__ i2c: Don’t wait for
+   SDA to go high before sending slave stop command
+-  `c87bd309d9bc <https://github.com/open-power/hostboot/commit/c87bd309d9bc>`__ Atomically latch
+   shutdown status and TI data together in shutdown
+-  `080d25563d0b <https://github.com/open-power/hostboot/commit/080d25563d0b>`__ Secure Boot: Report
+   base/extended code mismatch as terminating
+-  `c3b2b326c53f <https://github.com/open-power/hostboot/commit/c3b2b326c53f>`__ Trusted Boot:
+   Report Primary TPM required reason code as terminating
+-  `bdb1634e8e6a <https://github.com/open-power/hostboot/commit/bdb1634e8e6a>`__ Delete
+   non-terminating TPM error in fabric integration step
+-  `4f68936b4801 <https://github.com/open-power/hostboot/commit/4f68936b4801>`__ Update VPD in
+   correct node at runtime
+-  `17bf8a65e3be <https://github.com/open-power/hostboot/commit/17bf8a65e3be>`__ Fix duplicate trace
+   section removal accounting in error log flatten
+-  `7209f9061a3c <https://github.com/open-power/hostboot/commit/7209f9061a3c>`__ Trusted Boot: When
+   TPM not detected properly, report errors if TPM is required
+-  `01fcdb647ea0 <https://github.com/open-power/hostboot/commit/01fcdb647ea0>`__ Shutdown: Move
+   attribute sync to shutdown handler
+-  `9d6361875127 <https://github.com/open-power/hostboot/commit/9d6361875127>`__ Create new FAPI
+   attribute HB_HRMOR_BYTES
+-  `727443a3a2f3 <https://github.com/open-power/hostboot/commit/727443a3a2f3>`__ Close windows where
+   Hostboot HRMOR is not available to FSP
+-  `39c57d2a42c3 <https://github.com/open-power/hostboot/commit/39c57d2a42c3>`__ Serialize all
+   attribute synchronization calls
+-  `a9c72287f685 <https://github.com/open-power/hostboot/commit/a9c72287f685>`__ Add
+   lib_isteps_mss.so as an istep 15 dependency
+-  `24f1a6c7c10b <https://github.com/open-power/hostboot/commit/24f1a6c7c10b>`__ Prevent double free
+   condition when sending attributes to FSP
+-  `d70302a9f7af <https://github.com/open-power/hostboot/commit/d70302a9f7af>`__ Disable
+   synchronization tests
+-  `a6cb27b4cfab <https://github.com/open-power/hostboot/commit/a6cb27b4cfab>`__ Add OCMBFW
+   partition to FSP and Hostboot PNOR layouts
+-  `9b7da2e3c3a7 <https://github.com/open-power/hostboot/commit/9b7da2e3c3a7>`__ Support for putting
+   fences around mallocs
+-  `1e6bbb9b989b <https://github.com/open-power/hostboot/commit/1e6bbb9b989b>`__ Only allow key
+   transition in istep 10.2
+-  `db6829f72219 <https://github.com/open-power/hostboot/commit/db6829f72219>`__ Fix shutdown race
+   condition and task start error in IPMI SEL library
+-  `9744e664b6ee <https://github.com/open-power/hostboot/commit/9744e664b6ee>`__ Increase HBI
+   partition to 12 MB (w/o ECC), up from 11
+-  `27fd45b3d88a <https://github.com/open-power/hostboot/commit/27fd45b3d88a>`__ Remove trace buffer
+   flush at end of shutdown path
+-  `2555c39c6f9c <https://github.com/open-power/hostboot/commit/2555c39c6f9c>`__ Support parsing
+   call home informational eSELs with debug tooling
+-  `9228e4c1f5b4 <https://github.com/open-power/hostboot/commit/9228e4c1f5b4>`__ Add additional FFDC
+   to better debug TPM related errors
+-  `d77319a7e204 <https://github.com/open-power/hostboot/commit/d77319a7e204>`__ Support tool that
+   can package UCD\* flash images into a binary
+-  `b61b4966edc3 <https://github.com/open-power/hostboot/commit/b61b4966edc3>`__ Support reading UCD
+   flash update LIDs
+-  `ee1cd5b0adfa <https://github.com/open-power/hostboot/commit/ee1cd5b0adfa>`__ Enhance RAS for
+   case where boot firmware image is too big to load
+
+Nick Klazynski (5):
+
+-  `c916d4e2d430 <https://github.com/open-power/hostboot/commit/c916d4e2d430>`__ Clockgate disable
+   workaround for HW452921
+-  `d334558fdeb8 <https://github.com/open-power/hostboot/commit/d334558fdeb8>`__ Enable CDD1.3’s 4
+   risklevels (step 1)
+-  `edf9575e0567 <https://github.com/open-power/hostboot/commit/edf9575e0567>`__ Enable Core
+   compatability Mode; Add HW443669
+-  `874b5b34b0b7 <https://github.com/open-power/hostboot/commit/874b5b34b0b7>`__ Workaround for
+   SW440224
+-  `9cee8ff39774 <https://github.com/open-power/hostboot/commit/9cee8ff39774>`__ Add TLBIE WAT
+
+Prachi Gupta (8):
+
+-  `e4f0610314ca <https://github.com/open-power/hostboot/commit/e4f0610314ca>`__ Wrap Test: Change
+   GROUP_ID/CHIP_ID to match the new proc numbering scheme
+-  `ba4fc129cd44 <https://github.com/open-power/hostboot/commit/ba4fc129cd44>`__
+   platGetMBvpdSlopeInterceptData: fix ATTR_CEN_CDIMM_VPD_MASTER_TOTAL_POWER_SLOPE
+-  `4dfcdd4a9e59 <https://github.com/open-power/hostboot/commit/4dfcdd4a9e59>`__ p9_fab_iovalid:
+   process errors returned by this HWP
+-  `c818c28e735f <https://github.com/open-power/hostboot/commit/c818c28e735f>`__ WOF Lid load:
+   Remove extra malloc and use getStoredLidImage
+-  `39c18a013796 <https://github.com/open-power/hostboot/commit/39c18a013796>`__ Update xbus/obus
+   procedures with the latest initCompiler changes
+-  `8832be410a8c <https://github.com/open-power/hostboot/commit/8832be410a8c>`__ Fix paranthesis
+   syntax in scom initfiles
+-  `70e41813c010 <https://github.com/open-power/hostboot/commit/70e41813c010>`__
+   Centaur_Register_List.csv: Updating it to hostboot level
+-  `76ae3d5f09c9 <https://github.com/open-power/hostboot/commit/76ae3d5f09c9>`__ Documentation:
+   Initial commit to create base README.md
+
+Prasad Bg Ranganath (16):
+
+-  `4f0098cf3ce3 <https://github.com/open-power/hostboot/commit/4f0098cf3ce3>`__ PPB:Compute safe
+   mode Freq and Volt calculation during runtime
+-  `a0e63fb29fed <https://github.com/open-power/hostboot/commit/a0e63fb29fed>`__ Bug fix for the
+   Runtime pstate bias update
+-  `8f2be4b1063a <https://github.com/open-power/hostboot/commit/8f2be4b1063a>`__ PM:Clear GPE2 error
+   bit in OISR/IMR register before SGPE boots
+-  `eefd5f1438bf <https://github.com/open-power/hostboot/commit/eefd5f1438bf>`__ HCODE: DD21
+   makefile changes for CME,PGPE and SGPE
+-  `600ffa160d54 <https://github.com/open-power/hostboot/commit/600ffa160d54>`__ Verify Clock/power
+   state on non functional EX/Core/quad chiplets
+-  `1dd6d7647746 <https://github.com/open-power/hostboot/commit/1dd6d7647746>`__ Verify EQ/EX/Core
+   clock/power states
+-  `ae850cf7588d <https://github.com/open-power/hostboot/commit/ae850cf7588d>`__ PM:Some more
+   cleanups in update_ec_eq procedure for core unit xstop case
+-  `c4f75d029310 <https://github.com/open-power/hostboot/commit/c4f75d029310>`__ Update core quiesce
+   interface in update_ec_eq procedure
+-  `1012b75b38e5 <https://github.com/open-power/hostboot/commit/1012b75b38e5>`__ Update the PSTATE
+   attributes when we hit error during istep 15
+-  `e82eda284f01 <https://github.com/open-power/hostboot/commit/e82eda284f01>`__ STOP:Dont clear
+   pmc_pcb_intr_type0_pending in OISR1/OIMR1 register
+-  `4d72d31b7671 <https://github.com/open-power/hostboot/commit/4d72d31b7671>`__ PM:Fix PSAFE update
+   during pm reset flow
+-  `a3dae2881da3 <https://github.com/open-power/hostboot/commit/a3dae2881da3>`__ PPB:Undervolting
+   biasing: fix bug found in testing.
+-  `6b07d699323e <https://github.com/open-power/hostboot/commit/6b07d699323e>`__ PPB:New attribute
+   ATTR_PMCR_MOST_RECENT_MODE for PMCR request
+-  `2a2071cb6815 <https://github.com/open-power/hostboot/commit/2a2071cb6815>`__ HB:Cme fir
+   attribute reset fix
+-  `de2fa98fc722 <https://github.com/open-power/hostboot/commit/de2fa98fc722>`__ PM HWP: Fix bug in
+   stop clock procedure that effects mpipl
+-  `1f4d5ba3b545 <https://github.com/open-power/hostboot/commit/1f4d5ba3b545>`__ HWP:Cache stop
+   clocks complete fix
+
+Prem Shanker Jha (25):
+
+-  `0d47fa9358e2 <https://github.com/open-power/hostboot/commit/0d47fa9358e2>`__ SCOM Restore:
+   Handle case of old HB and new STOP API case.
+-  `48e7db4febee <https://github.com/open-power/hostboot/commit/48e7db4febee>`__ STOP_Recovery:
+   Added hwp changes to support error log parser.
+-  `adaf8f7d6eec <https://github.com/open-power/hostboot/commit/adaf8f7d6eec>`__ STOP Recovery:
+   Implemented STOP Recovery parser for error log.
+-  `a30c34acdf4c <https://github.com/open-power/hostboot/commit/a30c34acdf4c>`__ SCOM Restore:
+   Increased max eq scom restores entries supported to 255.
+-  `15641e1a1fae <https://github.com/open-power/hostboot/commit/15641e1a1fae>`__ UV Support: HWP
+   inits runtime wakeup mode for each functional core.
+-  `d808f52a637f <https://github.com/open-power/hostboot/commit/d808f52a637f>`__ UV Support: Updated
+   HWP to set runtime wakeup mode.
+-  `53569a27d4da <https://github.com/open-power/hostboot/commit/53569a27d4da>`__ UV Support: Fixed
+   target issue in setup runtime wakeup mode HWP.
+-  `29f9ee17713d <https://github.com/open-power/hostboot/commit/29f9ee17713d>`__ 24x7: Populated
+   Abus bits in UAV for cumulus based system.
+-  `09ab06ca2d56 <https://github.com/open-power/hostboot/commit/09ab06ca2d56>`__ UV Support :
+   Augmented STOP API and self restore for enabling ultravisor.
+-  `076c45f663b8 <https://github.com/open-power/hostboot/commit/076c45f663b8>`__ Revert “UV Support
+   : Augmented STOP API and self restore for enabling UV”
+-  `bd440419c808 <https://github.com/open-power/hostboot/commit/bd440419c808>`__ STOP API: Changes
+   for SMF and SPR self save
+-  `5baacd28d51e <https://github.com/open-power/hostboot/commit/5baacd28d51e>`__ PM Malfunction:
+   Fixed issues with user data section parser plugin.
+-  `bdd0985889a6 <https://github.com/open-power/hostboot/commit/bdd0985889a6>`__ STOP Recovery:
+   Removed OCI address with SCOM address in HWP error xml.
+-  `451a26b55f90 <https://github.com/open-power/hostboot/commit/451a26b55f90>`__ Img Build: HOMER
+   changes for SMF and SPR self save.
+-  `ad52fe4087a2 <https://github.com/open-power/hostboot/commit/ad52fe4087a2>`__ PM: Fixed handling
+   of CME LFIR mask during PM complex reset.
+-  `c826f6afcb57 <https://github.com/open-power/hostboot/commit/c826f6afcb57>`__ PM: Handled SCOM
+   failures while determining unit availability.
+-  `2740698edc8f <https://github.com/open-power/hostboot/commit/2740698edc8f>`__ SMF: Defined new
+   attribute to store unsecure HOMER’s base address.
+-  `55a180dc08f9 <https://github.com/open-power/hostboot/commit/55a180dc08f9>`__ Self Save: Fixed
+   bugs pertaining to SPR self save.
+-  `f5dd1c1283ba <https://github.com/open-power/hostboot/commit/f5dd1c1283ba>`__ SMF: Fixes to
+   enable SMF on correct DD levels of Nimbus, Cumulus and Axone.
+-  `9c147a336dfa <https://github.com/open-power/hostboot/commit/9c147a336dfa>`__ PM Malf Func: Fixed
+   bugs pertaining pm malfunction FFDC and parser.
+-  `164e4ec2af05 <https://github.com/open-power/hostboot/commit/164e4ec2af05>`__ SMF: Defined new
+   attribute containing unsecure HOMER memory’s size.
+-  `5e78ec881250 <https://github.com/open-power/hostboot/commit/5e78ec881250>`__ PRD: Fixed handling
+   PM malfunction error log plugin.
+-  `0ac318bbe2e1 <https://github.com/open-power/hostboot/commit/0ac318bbe2e1>`__ VDM(Part 1):
+   Introduced new members in CME and CPMR image headers
+-  `3de3e3bbc10f <https://github.com/open-power/hostboot/commit/3de3e3bbc10f>`__ SMF: Populates
+   unsecure HOMER with SC2 instruction.
+-  `ab41d473f8b6 <https://github.com/open-power/hostboot/commit/ab41d473f8b6>`__ PM HWP: Fixed error
+   path bug pertaining to query STOP state.
+
+Pretty Mariam Jacob (1):
+
+-  `2106cf97da7c <https://github.com/open-power/hostboot/commit/2106cf97da7c>`__ Added Alink changes
+   in attributes and initfiles
+
+Rahul Batra (9):
+
+-  `77fbc86e8ca9 <https://github.com/open-power/hostboot/commit/77fbc86e8ca9>`__ PM: Move SGPE/PGPE
+   Region and update QPMR/PPMR(2/4)
+-  `4c1c0fa70078 <https://github.com/open-power/hostboot/commit/4c1c0fa70078>`__ PM:Fill SGPE/PGPE
+   regions fields in QPMR/PPMR(3/4)
+-  `896f7a9abffa <https://github.com/open-power/hostboot/commit/896f7a9abffa>`__ PM: Checks for
+   PGPE/SGPE Region in PPMR/QPMR(4/4)
+-  `ed66faeb8524 <https://github.com/open-power/hostboot/commit/ed66faeb8524>`__ PGPE: WOV
+   Attributes (1/3)
+-  `65f81d4498e2 <https://github.com/open-power/hostboot/commit/65f81d4498e2>`__ PM: OCC<>PGPE
+   interface for P9+
+-  `2ab88987e5fe <https://github.com/open-power/hostboot/commit/2ab88987e5fe>`__ PGPE: WOV HW procs
+   and Global Parm updates (2/3)
+-  `afdc9cd94432 <https://github.com/open-power/hostboot/commit/afdc9cd94432>`__ SMF: Make
+   UNSECURE_HOMER_ADDR unwriteable on FAPI
+-  `b933c9e13a62 <https://github.com/open-power/hostboot/commit/b933c9e13a62>`__ PGPE: Write magic
+   number in HcodeOCCShared struct
+-  `23c66ccdeab0 <https://github.com/open-power/hostboot/commit/23c66ccdeab0>`__ PM: OCC<>PGPE
+   Interface for P9+
+
+Raja Das (6):
+
+-  `38834a9cad0b <https://github.com/open-power/hostboot/commit/38834a9cad0b>`__ Inverted logic of
+   hasClock bit in Clock Status register
+-  `529bf938bf0e <https://github.com/open-power/hostboot/commit/529bf938bf0e>`__ Use Attr to
+   Save/Fetch MDRT Count
+-  `9f49d11b83bf <https://github.com/open-power/hostboot/commit/9f49d11b83bf>`__ [ARCH_REG 2] Enable
+   architected register data reserve in the host
+-  `ac96eaf6e918 <https://github.com/open-power/hostboot/commit/ac96eaf6e918>`__ [OPAL-MPIPL][6]
+   Reserve the HBBL and HBB load area for OPAL fspless
+-  `812b233bc4aa <https://github.com/open-power/hostboot/commit/812b233bc4aa>`__ Re-used loader_data
+   section to pibmem repair scom data for Axone
+-  `e410bcca357c <https://github.com/open-power/hostboot/commit/e410bcca357c>`__ Axone pibmem repair
+   logic
+
+Ricardo Mata (1):
+
+-  `d8771d1fcc44 <https://github.com/open-power/hostboot/commit/d8771d1fcc44>`__ SW442214 - Turn off
+   Cache Inject for Fleetwood
+
+Richard J. Knight (15):
+
+-  `0ee708e360e9 <https://github.com/open-power/hostboot/commit/0ee708e360e9>`__ Fix for hostboot
+   not forcing a TI for PSU timeout w/SBE dead
+-  `fc9830a4a2b1 <https://github.com/open-power/hostboot/commit/fc9830a4a2b1>`__ Fix simics P9C RCD
+   timeout issues
+-  `98e6e05479d5 <https://github.com/open-power/hostboot/commit/98e6e05479d5>`__ Fix for SW438315 :
+   IPL is stuck in loop eq(n0p0c0)
+-  `e37d7f6e51e7 <https://github.com/open-power/hostboot/commit/e37d7f6e51e7>`__ Add support for
+   iterating over EC_LEVELS
+-  `7ebda794dd19 <https://github.com/open-power/hostboot/commit/7ebda794dd19>`__ Update code to
+   consolidate writes to same address in same putScom
+-  `739bcecb2371 <https://github.com/open-power/hostboot/commit/739bcecb2371>`__ Modify initCompiler
+   to use FAPI_TRY in generated procedures
+-  `945f67bed15e <https://github.com/open-power/hostboot/commit/945f67bed15e>`__ Modify initCompiler
+   to use template version of buffer insert
+-  `9398c35b5f22 <https://github.com/open-power/hostboot/commit/9398c35b5f22>`__ Updates to
+   initcompiler to support DD2 and cumulus
+-  `ffcb6f88958e <https://github.com/open-power/hostboot/commit/ffcb6f88958e>`__ Remove
+   Centaur_Register_List.csv due to mirror issues
+-  `cdc84edda8ba <https://github.com/open-power/hostboot/commit/cdc84edda8ba>`__ Restore DRAM
+   repairs function not deploying port0 spare
+-  `76a14949a1ee <https://github.com/open-power/hostboot/commit/76a14949a1ee>`__ Modify the getFfdc
+   routine to consider the SBE proc
+-  `1adef8c1c0ad <https://github.com/open-power/hostboot/commit/1adef8c1c0ad>`__ Eliminate makefile
+   warnings for duplicate targets
+-  `bb6dc0455116 <https://github.com/open-power/hostboot/commit/bb6dc0455116>`__ Add prototype for
+   releasing platform data pointer storage function
+-  `c16e0b97bd22 <https://github.com/open-power/hostboot/commit/c16e0b97bd22>`__ get FAPI_POS for
+   all valid target types passed in SBE FIFO ffdc
+-  `c9cae9d8e748 <https://github.com/open-power/hostboot/commit/c9cae9d8e748>`__ Enable PCIe slot
+   bifurcation using HX keyword
+
+Rick Ward (5):
+
+-  `b3c214b8b836 <https://github.com/open-power/hostboot/commit/b3c214b8b836>`__ Host went to kernel
+   panic after gard’ing PEC0/PHB0 (PCIFIR CS)
+-  `b265c68d057a <https://github.com/open-power/hostboot/commit/b265c68d057a>`__ OP issue:
+   processMrw.pl should error on duplicate sensor IDs #75
+-  `8351efdb3b65 <https://github.com/open-power/hostboot/commit/8351efdb3b65>`__ Inband MMIO access
+   to OCMB (skeleton)
+-  `8923b2a9a3c9 <https://github.com/open-power/hostboot/commit/8923b2a9a3c9>`__ Inband MMIO access
+   to OCMB
+-  `2d410b67952a <https://github.com/open-power/hostboot/commit/2d410b67952a>`__ Cleanup minor code
+   review nits from SW433868.
+
+Roland Veloz (9):
+
+-  `c8448c3a09ae <https://github.com/open-power/hostboot/commit/c8448c3a09ae>`__ Deconfig EC/EX/EQ
+   at runtime
+-  `a92f91459eb2 <https://github.com/open-power/hostboot/commit/a92f91459eb2>`__ Added the I2C MUX
+   attribute and target definitions
+-  `b63c84765363 <https://github.com/open-power/hostboot/commit/b63c84765363>`__ Driver changes to
+   support i2c mux
+-  `a2833876dd0d <https://github.com/open-power/hostboot/commit/a2833876dd0d>`__ HB Axone simics
+   model changes to support DDIMM SPD i2c access
+-  `fd94eaab5b2f <https://github.com/open-power/hostboot/commit/fd94eaab5b2f>`__ Replace attribute
+   I2C_MUX_INFO with attribute FAPI_I2C_CONTROL_INFO
+-  `a567fae92a16 <https://github.com/open-power/hostboot/commit/a567fae92a16>`__ Set the DIMM SPD
+   size
+-  `602885b3880d <https://github.com/open-power/hostboot/commit/602885b3880d>`__ Set the I2C MUX bus
+   selector in the i2cPresence function
+-  `cbc757100785 <https://github.com/open-power/hostboot/commit/cbc757100785>`__ Create FAPI mapping
+   function for DDIM SPD data
+-  `0a11e342c724 <https://github.com/open-power/hostboot/commit/0a11e342c724>`__ Added the HWP error
+   XML file for the DDIM SPD data mapping function
+
+Ryan Black (1):
+
+-  `c7084925a74a <https://github.com/open-power/hostboot/commit/c7084925a74a>`__ Mask ut=0 and ut=1
+   mmio bad cmd/length/align
+
+Ryan King (2):
+
+-  `44f196de4e6f <https://github.com/open-power/hostboot/commit/44f196de4e6f>`__ Add sensor cache
+   read as an explorer inband command
+-  `9a4642d1da32 <https://github.com/open-power/hostboot/commit/9a4642d1da32>`__ Add sensor cache
+   read as an explorer inband command
+
+Sachin Gupta (3):
+
+-  `f9a7b72ad608 <https://github.com/open-power/hostboot/commit/f9a7b72ad608>`__ Disable SBE HW i2c
+   reset sequence on hreset
+-  `dd91bd34b189 <https://github.com/open-power/hostboot/commit/dd91bd34b189>`__ Support
+   ATTR_LPC_CONSOLE_CNFG attribute
+-  `62feee748b72 <https://github.com/open-power/hostboot/commit/62feee748b72>`__ Customize LPC
+   console policy in SBE
+
+Sameer Veer (2):
+
+-  `55c1b84a1524 <https://github.com/open-power/hostboot/commit/55c1b84a1524>`__ Change gerrit
+   server references to reflect move from RTP to RCHLAND
+-  `5fbdd684e1b4 <https://github.com/open-power/hostboot/commit/5fbdd684e1b4>`__ Fixing copyright
+   prolog to 2018 after Gerrit server move from RTP to RCHLAND
+
+Sampa Misra (2):
+
+-  `ac53c27a467b <https://github.com/open-power/hostboot/commit/ac53c27a467b>`__ all scripts for
+   hdat pnor partition
+-  `93809c8a36ec <https://github.com/open-power/hostboot/commit/93809c8a36ec>`__ fix VINI RT HW LX
+   keyword for Phyp
+
+Samuel Mendoza-Jonas (1):
+
+-  `cd400323aa49 <https://github.com/open-power/hostboot/commit/cd400323aa49>`__ genPnorImages: Add
+   VERSION to signed partitions
+
+Santosh Balasubramanian (2):
+
+-  `04bc0be96475 <https://github.com/open-power/hostboot/commit/04bc0be96475>`__ New empty file
+-  `1a417fb578fa <https://github.com/open-power/hostboot/commit/1a417fb578fa>`__ Secure Boot:
+   Centaur Security: Initial sensitive register list
+
+Sheldon Bailey (2):
+
+-  `2efcf2186232 <https://github.com/open-power/hostboot/commit/2efcf2186232>`__ OCC reset happening
+   on OpenPower systems with more than 2 processors
+-  `8fb031bf5c6b <https://github.com/open-power/hostboot/commit/8fb031bf5c6b>`__ HTMGT: Check for
+   OCC elog action bit to force sending an error log to BMC
+
+Shelton Leung (1):
+
+-  `38c63b67d8d0 <https://github.com/open-power/hostboot/commit/38c63b67d8d0>`__ HW474117 WAT to
+   allow firmware to disable bypass on port
+
+Soma BhanuTej (6):
+
+-  `2271594fab8c <https://github.com/open-power/hostboot/commit/2271594fab8c>`__ BugFix for
+   extract_sbe_rc
+-  `ebb451d4bef5 <https://github.com/open-power/hostboot/commit/ebb451d4bef5>`__ Nimbus DD22 support
+   updates to ekb
+-  `2b11c73334dc <https://github.com/open-power/hostboot/commit/2b11c73334dc>`__ Adding p9c 1.3
+   support.
+-  `c58fe9065fd3 <https://github.com/open-power/hostboot/commit/c58fe9065fd3>`__ Axone updates to
+   p9_extract_sbe_rc
+-  `9fc690c83456 <https://github.com/open-power/hostboot/commit/9fc690c83456>`__ Remove SBE region
+   fence check - p9_extract_sbe_rc
+-  `a1c6facd1fa7 <https://github.com/open-power/hostboot/commit/a1c6facd1fa7>`__ Update p9a_10 engd
+   - spy name changes
+
+Srikantha Meesala (2):
+
+-  `5957dac24557 <https://github.com/open-power/hostboot/commit/5957dac24557>`__ HWSV - Hostboot
+   common data structure for Attn chip Id list
+-  `720ee62acd97 <https://github.com/open-power/hostboot/commit/720ee62acd97>`__ Create and allow
+   for PNOR SBE Partition to have DD2.3 Images
+
+Stephen Glancy (70):
+
+-  `a9e7978b5816 <https://github.com/open-power/hostboot/commit/a9e7978b5816>`__ Fixes Centaur chip
+   selects during RCD load
+-  `8df62cd15e91 <https://github.com/open-power/hostboot/commit/8df62cd15e91>`__ Fixes Centaur RCD
+   load sequence
+-  `5b93d4000b1c <https://github.com/open-power/hostboot/commit/5b93d4000b1c>`__ Enables RCD protect
+   for centaur systems
+-  `c8f0bbe2a227 <https://github.com/open-power/hostboot/commit/c8f0bbe2a227>`__ Fixes Centaur
+   training to skip known bad bits
+-  `ea861ac8618f <https://github.com/open-power/hostboot/commit/ea861ac8618f>`__ Disables training
+   advanced by default p9c
+-  `9eb4bc85198a <https://github.com/open-power/hostboot/commit/9eb4bc85198a>`__ Adds blank files
+   for generic code
+-  `74bdfc62ed5b <https://github.com/open-power/hostboot/commit/74bdfc62ed5b>`__ Reverts SW438645
+   fix to unblock driver release
+-  `206d83461d04 <https://github.com/open-power/hostboot/commit/206d83461d04>`__ Adds Nimbus
+   conversions blank file
+-  `982cbeab21b9 <https://github.com/open-power/hostboot/commit/982cbeab21b9>`__ Fixes Centaur
+   training advanced to unmask errors when disabled
+-  `28b83673a117 <https://github.com/open-power/hostboot/commit/28b83673a117>`__ Moves conversions
+   to be in the generic code space
+-  `f1189ec04f1f <https://github.com/open-power/hostboot/commit/f1189ec04f1f>`__ Fixes p9c’s
+   training’s swizzle of known bad bits
+-  `8cb89b7faae9 <https://github.com/open-power/hostboot/commit/8cb89b7faae9>`__ Moves generic xml
+   directories to be in generic/procedures
+-  `6a6d63736635 <https://github.com/open-power/hostboot/commit/6a6d63736635>`__ Moves CAS latency
+   algorithm to generic folder
+-  `b4a7e97c1806 <https://github.com/open-power/hostboot/commit/b4a7e97c1806>`__ Fixes an array out
+   of bounds bug in mss_freq
+-  `263f34b16742 <https://github.com/open-power/hostboot/commit/263f34b16742>`__ Creates blank files
+   for moving mss_freq to generic
+-  `4f35730b3dbe <https://github.com/open-power/hostboot/commit/4f35730b3dbe>`__ Adds endian_swap to
+   fapi2
+-  `444aeb467542 <https://github.com/open-power/hostboot/commit/444aeb467542>`__ Adds skeleton code
+   for LRDIMM
+-  `bb0c1121374c <https://github.com/open-power/hostboot/commit/bb0c1121374c>`__ Updates memory plug
+   rules
+-  `5e126f31d70e <https://github.com/open-power/hostboot/commit/5e126f31d70e>`__ Adds plug rule for
+   NVDIMM in specific DIMM slots
+-  `053fd94b4963 <https://github.com/open-power/hostboot/commit/053fd94b4963>`__ Adds MRW support
+   for x4/x8 DIMM configurations
+-  `639b6728bfdb <https://github.com/open-power/hostboot/commit/639b6728bfdb>`__ Adds skeleton code
+   for LRDIMM
+-  `11cc78395582 <https://github.com/open-power/hostboot/commit/11cc78395582>`__ Moves and renames
+   swizzle.H to generic
+-  `4f8cfb6e9c07 <https://github.com/open-power/hostboot/commit/4f8cfb6e9c07>`__ Moves sync code to
+   generic folder
+-  `99d8a2ec0d3f <https://github.com/open-power/hostboot/commit/99d8a2ec0d3f>`__ Adds insert
+   function space helpers for LRDIMM
+-  `a4e14b209192 <https://github.com/open-power/hostboot/commit/a4e14b209192>`__ Adds per-Buffer
+   addressability API for LRDIMM
+-  `07585c1409e3 <https://github.com/open-power/hostboot/commit/07585c1409e3>`__ Removes unused
+   attribute accessors
+-  `cb5a36814f64 <https://github.com/open-power/hostboot/commit/cb5a36814f64>`__ Works around LRDIMM
+   plug rules error for LRDIMM BUP
+-  `6ba203356a7c <https://github.com/open-power/hostboot/commit/6ba203356a7c>`__ Fixes VPD access
+   and eff_config for LRDIMM’s
+-  `f3a2693e80a0 <https://github.com/open-power/hostboot/commit/f3a2693e80a0>`__ Updates training
+   steps factory to be LRDIMM capable
+-  `51d1eba8c769 <https://github.com/open-power/hostboot/commit/51d1eba8c769>`__ Updates to
+   configure all four rank pair registers
+-  `0e93132bcb61 <https://github.com/open-power/hostboot/commit/0e93132bcb61>`__ Updates rank API to
+   work with LRDIMM’s
+-  `3f02abe6d443 <https://github.com/open-power/hostboot/commit/3f02abe6d443>`__ Adds explorer OMI
+   training code
+-  `a8111666cbde <https://github.com/open-power/hostboot/commit/a8111666cbde>`__ Adds blank files
+   for LRDIMM PBA
+-  `26d020f01c51 <https://github.com/open-power/hostboot/commit/26d020f01c51>`__ Adds per-Buffer
+   addressability API for LRDIMM
+-  `a2f59106caec <https://github.com/open-power/hostboot/commit/a2f59106caec>`__ Adds code to run
+   MPR writes on all ranks in a rank pair
+-  `74c643ef35c6 <https://github.com/open-power/hostboot/commit/74c643ef35c6>`__ Fixes b-side bug in
+   MPR write function
+-  `bea054feb650 <https://github.com/open-power/hostboot/commit/bea054feb650>`__ Fixes BCW load bugs
+-  `3376ac3e22bb <https://github.com/open-power/hostboot/commit/3376ac3e22bb>`__ Adds MREP training
+   for LRDIMM
+-  `211ed8c6aeeb <https://github.com/open-power/hostboot/commit/211ed8c6aeeb>`__ Adds Explorer OMI
+   setup - step 12.8a
+-  `148e9b6f92f5 <https://github.com/open-power/hostboot/commit/148e9b6f92f5>`__ Adds explorer OMI
+   training code
+-  `ba0764361587 <https://github.com/open-power/hostboot/commit/ba0764361587>`__ Adds explorer OMI
+   training code
+-  `f0bc4fed86e5 <https://github.com/open-power/hostboot/commit/f0bc4fed86e5>`__ Points exp_inband
+   to generic constants
+-  `c4b62455d609 <https://github.com/open-power/hostboot/commit/c4b62455d609>`__ Adds p9a chip
+   directory structure
+-  `40a34c94a981 <https://github.com/open-power/hostboot/commit/40a34c94a981>`__ Fixes LRDIMM
+   eff_config bugs
+-  `a690866298f5 <https://github.com/open-power/hostboot/commit/a690866298f5>`__ Updates LRDIMM code
+   to utilize board swizzling
+-  `341f4013f6ae <https://github.com/open-power/hostboot/commit/341f4013f6ae>`__ Updates PBA to use
+   RCW’s to issue BCW’s
+-  `14dbbd68d03d <https://github.com/open-power/hostboot/commit/14dbbd68d03d>`__ Fixes set_pba_mode
+   to use proper F0BC1x values
+-  `546c014e9b53 <https://github.com/open-power/hostboot/commit/546c014e9b53>`__ Adds LRDIMM DWL
+   training step
+-  `6f238688a927 <https://github.com/open-power/hostboot/commit/6f238688a927>`__ Adds CCS ODT helper
+   commands
+-  `c03fc477305e <https://github.com/open-power/hostboot/commit/c03fc477305e>`__ Adds LRDIMM helper
+   functions
+-  `cbf2ab45d919 <https://github.com/open-power/hostboot/commit/cbf2ab45d919>`__ Adds error logging
+   features to LRDIMM DWL
+-  `09524b1a8bf8 <https://github.com/open-power/hostboot/commit/09524b1a8bf8>`__ Adds LRDIMM MRD -
+   DRAM to buffer RD calibration
+-  `734cddb5e74f <https://github.com/open-power/hostboot/commit/734cddb5e74f>`__ Creates LRDIMM fine
+   calibration recorder class
+-  `c95d3d860070 <https://github.com/open-power/hostboot/commit/c95d3d860070>`__ Adds MRD coarse
+-  `b0ab4fd697a7 <https://github.com/open-power/hostboot/commit/b0ab4fd697a7>`__ Updates LRDIMM
+   flags to be HB compatible
+-  `3e681b92f8a4 <https://github.com/open-power/hostboot/commit/3e681b92f8a4>`__ Fixes LRDIMM
+   initialization attributes and timings
+-  `8d0bb9d30bd0 <https://github.com/open-power/hostboot/commit/8d0bb9d30bd0>`__ Updates MWD_COARSE
+   to run multiple patterns
+-  `a97dbdf5b265 <https://github.com/open-power/hostboot/commit/a97dbdf5b265>`__ Adds blank Explorer
+   MMIO setup files
+-  `e112cf5c675d <https://github.com/open-power/hostboot/commit/e112cf5c675d>`__ Adds Explorer OMI
+   setup - step 12.8a
+-  `610ca55e285e <https://github.com/open-power/hostboot/commit/610ca55e285e>`__ Adds explorer OMI
+   training code
+-  `b898a84dd4c2 <https://github.com/open-power/hostboot/commit/b898a84dd4c2>`__ Adds blank files
+   for EFD API
+-  `bccafb637f17 <https://github.com/open-power/hostboot/commit/bccafb637f17>`__ Fixes LRDIMM NTTM
+   mode read timing for HW bug
+-  `73bc592f980c <https://github.com/open-power/hostboot/commit/73bc592f980c>`__ Adds blank Explorer
+   MMIO setup files
+-  `8212d722bc10 <https://github.com/open-power/hostboot/commit/8212d722bc10>`__ Adds explorer OMI
+   training code
+-  `b8427c4aa072 <https://github.com/open-power/hostboot/commit/b8427c4aa072>`__ Updates MCA write
+   and read timings
+-  `944d6518debb <https://github.com/open-power/hostboot/commit/944d6518debb>`__ Adds p9a chip
+   directory structure
+-  `99f296373162 <https://github.com/open-power/hostboot/commit/99f296373162>`__ Adds blank files
+   for explorer training handler
+-  `1ea4099921c0 <https://github.com/open-power/hostboot/commit/1ea4099921c0>`__ Adds the explorer
+   training response structure
+-  `fcb319431661 <https://github.com/open-power/hostboot/commit/fcb319431661>`__ Adds blank files
+   for generic bad bits code
+-  `69c434205684 <https://github.com/open-power/hostboot/commit/69c434205684>`__ Adds DDIMM EFD
+   decoder API
+
+Sumit Kumar (11):
+
+-  `8af690ede64b <https://github.com/open-power/hostboot/commit/8af690ede64b>`__ eRepair: Fixed
+   DMI/MemBuf lanes update in vpd
+-  `923e7b0d61e1 <https://github.com/open-power/hostboot/commit/923e7b0d61e1>`__ eRepair: Fixed
+   records update for failed lanes in vpd
+-  `ce0ea22d0d9d <https://github.com/open-power/hostboot/commit/ce0ea22d0d9d>`__ eRepair: Code
+   restruct
+-  `f4aa6c672a2d <https://github.com/open-power/hostboot/commit/f4aa6c672a2d>`__ eRepair: Fix to
+   invalidate vpd records correctly
+-  `9da5e1b9a7b1 <https://github.com/open-power/hostboot/commit/9da5e1b9a7b1>`__ eRepair: Centaur
+   specific code update
+-  `7cec18ac9375 <https://github.com/open-power/hostboot/commit/7cec18ac9375>`__ eRepair: Fix to
+   handle incoming bad lanes threshold condition correctly
+-  `a6ceb537f74d <https://github.com/open-power/hostboot/commit/a6ceb537f74d>`__ eRepair: Fix to
+   check and record unique incoming failed lanes
+-  `b5704a1d3f19 <https://github.com/open-power/hostboot/commit/b5704a1d3f19>`__ eRepair: Fix to
+   update invalidate lane record correctly
+-  `6dbd41c57edf <https://github.com/open-power/hostboot/commit/6dbd41c57edf>`__ eRepair: Correctly
+   update xbus vpd records based on clock group
+-  `254192acec31 <https://github.com/open-power/hostboot/commit/254192acec31>`__ eRepair: Invalidate
+   non-matching vpd records
+-  `30e3c861cc23 <https://github.com/open-power/hostboot/commit/30e3c861cc23>`__ eRepair(Zeppelin):
+   Fix to invalidate centaur vpd records
+
+Sunil.Kumar (1):
+
+-  `166a4cb6fa7b <https://github.com/open-power/hostboot/commit/166a4cb6fa7b>`__ Level 2 Procedure -
+   p9_sbe_lpc_init
+
+Thi Tran (9):
+
+-  `4c66599e7fd3 <https://github.com/open-power/hostboot/commit/4c66599e7fd3>`__ Need to add
+   CPU_SPR_HRMOR when calculating HB reserved mem limits.
+-  `c09432de26ea <https://github.com/open-power/hostboot/commit/c09432de26ea>`__ P9 Cumulus
+   InitCompiler supportis - Part 3
+-  `bf70b2a6db71 <https://github.com/open-power/hostboot/commit/bf70b2a6db71>`__ SMP wrap mode - Run
+   host_load_io_ppe earlier in Wrap mode.
+-  `b2971fa73897 <https://github.com/open-power/hostboot/commit/b2971fa73897>`__ Create empty files
+   for OMI init procedures.
+-  `e0d09f462610 <https://github.com/open-power/hostboot/commit/e0d09f462610>`__ Create empty files
+   for OMI init procedures.
+-  `a515f16a4a30 <https://github.com/open-power/hostboot/commit/a515f16a4a30>`__ Only call PRD
+   attention handling in resetPMComplex function at runtime.
+-  `28ee0f739fe2 <https://github.com/open-power/hostboot/commit/28ee0f739fe2>`__ Adding
+   callout/deconfig/gard information on some Centaur init errors.
+-  `9f1d0e3a21a1 <https://github.com/open-power/hostboot/commit/9f1d0e3a21a1>`__ Change target types
+   to 64-bit and add P10 target types
+-  `ebd72d043f23 <https://github.com/open-power/hostboot/commit/ebd72d043f23>`__ Change
+   ATTR_MRW_ENHANCED_GROUPING_NO_MIRRORING name
+
+Tsung Yeung (11):
+
+-  `1f6ed77b32b6 <https://github.com/open-power/hostboot/commit/1f6ed77b32b6>`__ Targeting support
+   for NVDIMM-N P9 on ZZ
+-  `2c1c99f37019 <https://github.com/open-power/hostboot/commit/2c1c99f37019>`__ Adds NVDIMM IPL
+   Support on ZZ
+-  `25102e0add22 <https://github.com/open-power/hostboot/commit/25102e0add22>`__ P9: Disable Maint
+   Address Mode After Self-Refresh Exit on NVDIMM
+-  `468aed31ffbe <https://github.com/open-power/hostboot/commit/468aed31ffbe>`__ Move NVDIMM Erase
+   and Arm to Runtime
+-  `a1ec3238d820 <https://github.com/open-power/hostboot/commit/a1ec3238d820>`__ P9: NVDIMM SBE
+   Support to Trigger Catastrophic Save
+-  `719413654adb <https://github.com/open-power/hostboot/commit/719413654adb>`__ Update bbuild to
+   b0121a_1904.930
+-  `dc1efdb95ce7 <https://github.com/open-power/hostboot/commit/dc1efdb95ce7>`__ NVDIMM SBE Support
+   to Trigger CSAVE - xip_customize
+-  `b2027cd8b704 <https://github.com/open-power/hostboot/commit/b2027cd8b704>`__ Disable NVDIMM
+   Trigger Before Draminit and Deassert DDR_RESETn During MPIPL
+-  `c7b63e7f7d1d <https://github.com/open-power/hostboot/commit/c7b63e7f7d1d>`__ Adjust STR enter
+   sequence to enable immediate entry
+-  `d4c084086a47 <https://github.com/open-power/hostboot/commit/d4c084086a47>`__ Disable maint
+   address mode before rcd_load during NVDIMM post-restore
+-  `85e03b6c3d2e <https://github.com/open-power/hostboot/commit/85e03b6c3d2e>`__ Enable mss_scrub on
+   MPIPL if NVDIMM is configured
+
+Vasant Hegde (2):
+
+-  `99c1c9d7dcc2 <https://github.com/open-power/hostboot/commit/99c1c9d7dcc2>`__ hdata: Increase RHB
+   instance count
+-  `e30bf32f6960 <https://github.com/open-power/hostboot/commit/e30bf32f6960>`__ MPIPL: Update MDRT
+   count only if its valid
+
+Venkatesh Sainath (1):
+
+-  `73cad1f1ae2a <https://github.com/open-power/hostboot/commit/73cad1f1ae2a>`__ Pushing HB plugins
+   and related files for building errltool
+
+William A. Kennington III (1):
+
+-  `9a9bc342c943 <https://github.com/open-power/hostboot/commit/9a9bc342c943>`__ ipmiwatchdog:
+   Handle uninitialized errors during reset
+
+Yue Du (2):
+
+-  `b731dce860a0 <https://github.com/open-power/hostboot/commit/b731dce860a0>`__ PM: Prevent Core-L2
+   Quiesce from removing PM_EXIT upon SPWU
+-  `09f379b65821 <https://github.com/open-power/hostboot/commit/09f379b65821>`__ STOP: Disable cache
+   inject and LCO before purge L3
+
+Zane Shelley (70):
+
+-  `de5c390af3c7 <https://github.com/open-power/hostboot/commit/de5c390af3c7>`__ PRD: ignore SCOM
+   errors in rule code summary construct
+-  `5be7d802291e <https://github.com/open-power/hostboot/commit/5be7d802291e>`__ PRD: incorrect CFAM
+   register addresses used in Hostboot
+-  `1ff70a1f246d <https://github.com/open-power/hostboot/commit/1ff70a1f246d>`__ PRD: no deconfig
+   during checkstop, delayed deconfig during TI
+-  `1ba5e879f3a4 <https://github.com/open-power/hostboot/commit/1ba5e879f3a4>`__ PRD: firmware
+   assisted channel failure workaround
+-  `a908d8307ad7 <https://github.com/open-power/hostboot/commit/a908d8307ad7>`__ PRD: reorder
+   isolation for channel fail attentions
+-  `62f4b4adbd87 <https://github.com/open-power/hostboot/commit/62f4b4adbd87>`__ PRD: Manually clear
+   the Centaur interrupt status reg on chnl fail
+-  `832ce2259291 <https://github.com/open-power/hostboot/commit/832ce2259291>`__ PRD: removed
+   stubbed HWSV enums from Hostboot code
+-  `df829c02d7d5 <https://github.com/open-power/hostboot/commit/df829c02d7d5>`__ PRD: segfault in
+   PLL domain code
+-  `da9d0e7c5ed5 <https://github.com/open-power/hostboot/commit/da9d0e7c5ed5>`__ PRD: Add core
+   scratch register 3 to FFDC
+-  `45dd7d0b57af <https://github.com/open-power/hostboot/commit/45dd7d0b57af>`__ PRD: change
+   threshold for L3FIR[28] LRU parity error
+-  `86d3fc2a9d5c <https://github.com/open-power/hostboot/commit/86d3fc2a9d5c>`__ PRD: add lane
+   repair extra signatures to appropriate targets
+-  `d37ee6f5a97b <https://github.com/open-power/hostboot/commit/d37ee6f5a97b>`__ PRD: getScom()
+   retry for HBRT channel failures
+-  `6ff0b982dfd3 <https://github.com/open-power/hostboot/commit/6ff0b982dfd3>`__ PRD: Sys/PCI
+   oscillator failover thresholding
+-  `4f0f9f1534a1 <https://github.com/open-power/hostboot/commit/4f0f9f1534a1>`__ PRD: resume super
+   fast read support for Row Repair
+-  `396c1d366536 <https://github.com/open-power/hostboot/commit/396c1d366536>`__ PRD: resume command
+   support in VcmEvent for Row Repair
+-  `890ac53effd1 <https://github.com/open-power/hostboot/commit/890ac53effd1>`__ PRD: linker issue
+   with template specializations in VcmEvent class
+-  `e55c53fae43a <https://github.com/open-power/hostboot/commit/e55c53fae43a>`__ PRD: added
+   PlatServices::isRowRepairEnabled()
+-  `e748ff234b02 <https://github.com/open-power/hostboot/commit/e748ff234b02>`__ PRD: handle write
+   blocked RC when clearing chip mark on MBA
+-  `410e6cc5d93c <https://github.com/open-power/hostboot/commit/410e6cc5d93c>`__ PRD: Simplified
+   System::Analyze() interface
+-  `8034c8c2ce2c <https://github.com/open-power/hostboot/commit/8034c8c2ce2c>`__ PRD: fixed priority
+   of PreAnalysis function
+-  `5ae9d29bd4d1 <https://github.com/open-power/hostboot/commit/5ae9d29bd4d1>`__ PRD: give MC
+   chiplets priority for channel failure analysis
+-  `f9f785efd4c7 <https://github.com/open-power/hostboot/commit/f9f785efd4c7>`__ PRD: RX trgt used
+   for TX trgt in XBUS lane repair VPD write
+-  `8aacdb878830 <https://github.com/open-power/hostboot/commit/8aacdb878830>`__ PRD: fix input
+   parameters for lane repair power down HWPs
+-  `60d11f6f5f07 <https://github.com/open-power/hostboot/commit/60d11f6f5f07>`__ PRD: better
+   isolation for RCD parity errors and channel failures
+-  `4b214fb15026 <https://github.com/open-power/hostboot/commit/4b214fb15026>`__ PRD: lane repair
+   virtual registers for DMI target
+-  `32aa25ec3b49 <https://github.com/open-power/hostboot/commit/32aa25ec3b49>`__ PRD: add ‘max
+   spares exceeded’ attentions to checkstop root cause
+-  `55a1d38302ca <https://github.com/open-power/hostboot/commit/55a1d38302ca>`__ Added portable
+   shebang to applyTargetingStyle tool
+-  `dae5fa093ce7 <https://github.com/open-power/hostboot/commit/dae5fa093ce7>`__ PRD: Fix lane
+   repair FFDC for XBUS clock 1 domain
+-  `09b976dcc51f <https://github.com/open-power/hostboot/commit/09b976dcc51f>`__ RAS_XML: updates to
+   sync the XML with actual values from hardware
+-  `e68ba552bbe0 <https://github.com/open-power/hostboot/commit/e68ba552bbe0>`__ PRD: updates to
+   sync the XML with actual values from hardware
+-  `aac8421a2554 <https://github.com/open-power/hostboot/commit/aac8421a2554>`__ PRD: change
+   register used to query for active chnl fail attn
+-  `829943397a90 <https://github.com/open-power/hostboot/commit/829943397a90>`__ PRD: Capture extra
+   FFDC for current memory mirroring config
+-  `140618aff4a5 <https://github.com/open-power/hostboot/commit/140618aff4a5>`__ PRD: obus extra
+   signatures
+-  `965a9eaad536 <https://github.com/open-power/hostboot/commit/965a9eaad536>`__ PRD:
+   ATTR_EFF_DRAM_ROWS and ATTR_EFF_DRAM_COLS not used on Nimbus
+-  `524937cba951 <https://github.com/open-power/hostboot/commit/524937cba951>`__ remove deprecated
+   ATTR_EFF_DRAM_ROWS and ATTR_EFF_DRAM_COLS
+-  `e9ade5b4dbf7 <https://github.com/open-power/hostboot/commit/e9ade5b4dbf7>`__ PRD: PM error log
+   parser updates
+-  `bbd4b6cad455 <https://github.com/open-power/hostboot/commit/bbd4b6cad455>`__ PRD: removed
+   default resolution due to problems with CS filter
+-  `10915cf668b3 <https://github.com/open-power/hostboot/commit/10915cf668b3>`__ PRD: wrong target
+   used in PLL analysis code
+-  `9c247751560a <https://github.com/open-power/hostboot/commit/9c247751560a>`__ PRD: Make room for
+   Axone prf files in HBRT
+-  `68d4feee7c9a <https://github.com/open-power/hostboot/commit/68d4feee7c9a>`__ PRD: prep splitting
+   rule files by chip model
+-  `7315fb2debc3 <https://github.com/open-power/hostboot/commit/7315fb2debc3>`__ PRD: Created
+   Cumulus specific rule files
+-  `ca2ceb0720d6 <https://github.com/open-power/hostboot/commit/ca2ceb0720d6>`__ PRD: Created Nimbus
+   specific rule files
+-  `b12a2a3c601c <https://github.com/open-power/hostboot/commit/b12a2a3c601c>`__ PRD: Created
+   Centaur specific rule files
+-  `beca51100d6b <https://github.com/open-power/hostboot/commit/beca51100d6b>`__ PRD: Fixed TOD
+   register capturing
+-  `7f716fe1404d <https://github.com/open-power/hostboot/commit/7f716fe1404d>`__ PRD: Remove
+   remaining P8 code
+-  `116af97857bb <https://github.com/open-power/hostboot/commit/116af97857bb>`__ PRD: Fix compile
+   warning for Centaur extra signatures
+-  `f5096ac13faf <https://github.com/open-power/hostboot/commit/f5096ac13faf>`__ PRD: Updates from
+   the RAS XML
+-  `01399735eee7 <https://github.com/open-power/hostboot/commit/01399735eee7>`__ PRD: rule file
+   updates for XML parsing tool
+-  `40cf4bc6b06d <https://github.com/open-power/hostboot/commit/40cf4bc6b06d>`__ PRD: Make room for
+   Axone prf files in Hostboot
+-  `ba0aa772d541 <https://github.com/open-power/hostboot/commit/ba0aa772d541>`__ PRD: updates from
+   XML and XML parser
+-  `195f63624185 <https://github.com/open-power/hostboot/commit/195f63624185>`__ PRD: Rule file
+   updates for Centaur
+-  `06c7de48489f <https://github.com/open-power/hostboot/commit/06c7de48489f>`__ PRD: update filter
+   parsing in XML parser
+-  `cc7d24e732f8 <https://github.com/open-power/hostboot/commit/cc7d24e732f8>`__ PRD: Fixed XML
+   parser for summary analysis
+-  `e2e2e85b17ea <https://github.com/open-power/hostboot/commit/e2e2e85b17ea>`__ PRD: separated NPU
+   registers and actions into separate rule files
+-  `8535abf21a53 <https://github.com/open-power/hostboot/commit/8535abf21a53>`__ increase HBRT PNOR
+   size
+-  `f6bbedd9f3f3 <https://github.com/open-power/hostboot/commit/f6bbedd9f3f3>`__ PRD: Initial Axone
+   rule files
+-  `3131f27dfef2 <https://github.com/open-power/hostboot/commit/3131f27dfef2>`__ PRD: Fixed last
+   functional core function for P9
+-  `1144a49a1991 <https://github.com/open-power/hostboot/commit/1144a49a1991>`__ PRD: updates to the
+   XML parser for centaur
+-  `eb8d14930c5e <https://github.com/open-power/hostboot/commit/eb8d14930c5e>`__ PRD: rule and
+   action file support for Explorer
+-  `bf6ab8287c51 <https://github.com/open-power/hostboot/commit/bf6ab8287c51>`__ PRD: Updated
+   checkLastFuncCore() for fused core mode
+-  `c6b5971be189 <https://github.com/open-power/hostboot/commit/c6b5971be189>`__ PRD: limit OBUS
+   callouts when not in SMP mode
+-  `4e34d24e1cd6 <https://github.com/open-power/hostboot/commit/4e34d24e1cd6>`__ PRD: Fabric Sorting
+   for Axone
+-  `b711fc5353d2 <https://github.com/open-power/hostboot/commit/b711fc5353d2>`__ PRD: Enable core
+   unit checkstop analysis for Axone
+-  `25189734c7b3 <https://github.com/open-power/hostboot/commit/25189734c7b3>`__ PRD: enable line
+   delete support for Axone
+-  `96251f9d6aa9 <https://github.com/open-power/hostboot/commit/96251f9d6aa9>`__ PRD: Enable fabric
+   lane repair for Axone
+-  `229ade5d23e7 <https://github.com/open-power/hostboot/commit/229ade5d23e7>`__ PRD: PLL analysis
+   support for Axone
+-  `c517b8a501ae <https://github.com/open-power/hostboot/commit/c517b8a501ae>`__ PRD: TOD analysis
+   support for Axone
+-  `bfac98200f7e <https://github.com/open-power/hostboot/commit/bfac98200f7e>`__ PRD: OP checkstop
+   analysis support for Axone
+-  `7ef75d2c6844 <https://github.com/open-power/hostboot/commit/7ef75d2c6844>`__ PRD: Prioritize
+   centaur internal timeout over channel failure
+-  `12264bb84217 <https://github.com/open-power/hostboot/commit/12264bb84217>`__ PRD: buffer overrun
+   issue in PRD capture data
+
+aravnair-in (1):
+
+-  `6c5154f68c50 <https://github.com/open-power/hostboot/commit/6c5154f68c50>`__ Add deconfigure
+   SMPGROUP peer targets rule for SMPGROUP
+
+duchen (1):
+
+-  `a57d9746ec97 <https://github.com/open-power/hostboot/commit/a57d9746ec97>`__ Update FAPI2
+   functions to handle new template parms for multicast support
+
+shlimeng (1):
+
+-  `829034ee752e <https://github.com/open-power/hostboot/commit/829034ee752e>`__ Add new algorithm
+   for MREP and error log
+
+spashabk-in (5):
+
+-  `1a7732ad4182 <https://github.com/open-power/hostboot/commit/1a7732ad4182>`__ Introducing lpc
+   utils source file
+-  `38ef75800929 <https://github.com/open-power/hostboot/commit/38ef75800929>`__ Move lpc_rw to a
+   source file
+-  `a52846d8be94 <https://github.com/open-power/hostboot/commit/a52846d8be94>`__ Support 1byte data
+   access on LPC
+-  `0a21d54e66d2 <https://github.com/open-power/hostboot/commit/0a21d54e66d2>`__ Introducing lpc
+   utils source file
+-  `4478b63177ef <https://github.com/open-power/hostboot/commit/4478b63177ef>`__ Move lpc_rw to a
+   source file
+
+xiaozq (1):
+
+-  `888662cc151b <https://github.com/open-power/hostboot/commit/888662cc151b>`__ p9_query_mssinfo
+   for single chip mss information query.
+
+Package: occ
+------------
+
+`Repository <https://github.com/open-power/occ>`__
+
+.. _patches-2.2-6:
+
+Patches
+~~~~~~~
+
+.. _commits-2.2-6:
+
+Commits
+~~~~~~~
+
+Andres Lugo-Reyes (6):
+
+-  `63a59b2f06eb <https://github.com/open-power/occ/commit/63a59b2f06eb>`__ WOF Reset debug command
+-  `e03ec216c2a4 <https://github.com/open-power/occ/commit/e03ec216c2a4>`__ Tool to parse raw WOF
+   hex data
+-  `e66f727bf40b <https://github.com/open-power/occ/commit/e66f727bf40b>`__ Fix units in comments in
+   OPPB to match ekb and actual units.
+-  `41f0c2c5e001 <https://github.com/open-power/occ/commit/41f0c2c5e001>`__ WOF: Add Extended RC to
+   wof errors
+-  `7f75f89c885f <https://github.com/open-power/occ/commit/7f75f89c885f>`__ Update occtoolp9 to
+   handle parsing WOF Reset reason in opal-prd
+-  `c0210a3fc54d <https://github.com/open-power/occ/commit/c0210a3fc54d>`__ Add WOF parameters to
+   WOF error logs
+
+Chris Cain (7):
+
+-  `a8a2c3a4f7e8 <https://github.com/open-power/occ/commit/a8a2c3a4f7e8>`__ Fix DIMM callout on
+   temperature timeout
+-  `18583159ffc2 <https://github.com/open-power/occ/commit/18583159ffc2>`__ Fix PGPE beacon
+   detection
+-  `d7adf6c28157 <https://github.com/open-power/occ/commit/d7adf6c28157>`__ Miscellaneous update to
+   occtoolp9
+-  `b67db9d09b18 <https://github.com/open-power/occ/commit/b67db9d09b18>`__ Support for NVDIMMs
+-  `008cb0bc5f1a <https://github.com/open-power/occ/commit/008cb0bc5f1a>`__ Assert ddr_resetn during
+   EPOW on NVDIMMs
+-  `49d91f3310f2 <https://github.com/open-power/occ/commit/49d91f3310f2>`__ NVDIMM procedure update
+-  `12c8088a32c5 <https://github.com/open-power/occ/commit/12c8088a32c5>`__ Updates to occtoolp9
+
+Douglas Gilbert (2):
+
+-  `17d77ae94197 <https://github.com/open-power/occ/commit/17d77ae94197>`__
+   Memory:MPV:STC920:Zeppelin: OCC held in reset after a channel checkstop
+-  `3e23a4ef97bc <https://github.com/open-power/occ/commit/3e23a4ef97bc>`__ Write firdata to PNOR
+   over IPMI
+
+Sumit Kumar (1):
+
+-  `074010fb5fd9 <https://github.com/open-power/occ/commit/074010fb5fd9>`__ 24x7: Added Alink PMU &
+   fix for defect SW430218
+
+William Bryan (6):
+
+-  `6d556b9b95fd <https://github.com/open-power/occ/commit/6d556b9b95fd>`__ Increase GPE1 Stack Size
+-  `f284c3068077 <https://github.com/open-power/occ/commit/f284c3068077>`__ Correct centaur time
+   scaling factor
+-  `97f1483c0bd9 <https://github.com/open-power/occ/commit/97f1483c0bd9>`__ imageHdrScript fixes
+-  `07f6e35c3f82 <https://github.com/open-power/occ/commit/07f6e35c3f82>`__ Update GPE1 Binary 8/15
+-  `d84708e4e986 <https://github.com/open-power/occ/commit/d84708e4e986>`__ Only update centaur
+   sensors if data was collected
+-  `1de1be8ec36b <https://github.com/open-power/occ/commit/1de1be8ec36b>`__ Memory bandwidth sensor
+   fixes
+
+mbroyles (8):
+
+-  `bc0c2332263b <https://github.com/open-power/occ/commit/bc0c2332263b>`__ Prevent calling out
+   DIMMs and Centaurs due to GPE issues
+-  `b8a8037ca194 <https://github.com/open-power/occ/commit/b8a8037ca194>`__ Prevent calling out
+   Centaurs on clock failover CQ: SW437405
+-  `1f0ae6950bfc <https://github.com/open-power/occ/commit/1f0ae6950bfc>`__ Debug command updates
+-  `eed59077ba18 <https://github.com/open-power/occ/commit/eed59077ba18>`__ Allow N mode power cap
+   to be higher than N+1
+-  `0f604d61c285 <https://github.com/open-power/occ/commit/0f604d61c285>`__ Add WOF sensors for
+   AMESTER
+-  `b1453b6ce600 <https://github.com/open-power/occ/commit/b1453b6ce600>`__ Include oversubscription
+   in clip history
+-  `8344884b54ca <https://github.com/open-power/occ/commit/8344884b54ca>`__ Improved PGPE error
+   handling part 1
+-  `bd6800942d1d <https://github.com/open-power/occ/commit/bd6800942d1d>`__ Fix memory OT throttling
+   on Nimbus
+
+Package: op-build
+-----------------
+
+`Repository <https://github.com/open-power/op-build>`__
+
+.. _patches-2.2-7:
+
+Patches
+~~~~~~~
+
+.. _commits-2.2-7:
+
+Commits
+~~~~~~~
+
+No changes.
+
+Package: p9dsu-xml
+------------------
+
+`Repository <https://github.com/open-power/p9dsu-xml>`__
+
+.. _patches-2.2-8:
+
+Patches
+~~~~~~~
+
+.. _commits-2.2-8:
+
+Commits
+~~~~~~~
+
+No changes.
+
+Package: palmetto-xml
+---------------------
+
+`Repository <https://github.com/open-power/palmetto-xml>`__
+
+.. _patches-2.2-9:
+
+Patches
+~~~~~~~
+
+.. _commits-2.2-9:
+
+Commits
+~~~~~~~
+
+Bill Hoffa (1):
+
+-  `c3cbf2b97145 <https://github.com/open-power/palmetto-xml/commit/c3cbf2b97145>`__ Add Sys Fw Fru
+   Id
+
+Joel Stanley (1):
+
+-  `19c86eb1e5f1 <https://github.com/open-power/palmetto-xml/commit/19c86eb1e5f1>`__ Fix
+   IBSCOM_MCS_BASE_ADDR value
+
+Package: petitboot
+------------------
+
+`Repository <https://github.com/open-power/petitboot>`__
+
+.. _patches-2.2-10:
+
+Patches
+~~~~~~~
+
+.. _commits-2.2-10:
+
+Commits
+~~~~~~~
+
+Package: pnor
+-------------
+
+`Repository <https://github.com/open-power/pnor>`__
+
+.. _patches-2.2-11:
+
+Patches
+~~~~~~~
+
+.. _commits-2.2-11:
+
+Commits
+~~~~~~~
+
+No changes.
+
+Package: romulus-xml
+--------------------
+
+`Repository <https://github.com/open-power/romulus-xml>`__
+
+.. _patches-2.2-12:
+
+Patches
+~~~~~~~
+
+.. _commits-2.2-12:
+
+Commits
+~~~~~~~
+
+Adrian Barrera (1):
+
+-  `6a2b4e9c991d <https://github.com/open-power/romulus-xml/commit/6a2b4e9c991d>`__ Update default
+   PCIe G3 lane Eq for all PHBs
+
+HankChang (1):
+
+-  `3ea5832b5ccd <https://github.com/open-power/romulus-xml/commit/3ea5832b5ccd>`__ Updated
+   DECONFIG_GARDABLE ATTR for RAS
+
+Matt Raybuck (1):
+
+-  `378b84d6d93a <https://github.com/open-power/romulus-xml/commit/378b84d6d93a>`__ Corrected
+   invalid chiplet id values for MCS units
+
+Nick Gruendler (1):
+
+-  `6d169111bade <https://github.com/open-power/romulus-xml/commit/6d169111bade>`__ Set
+   X_ETHRESHOLD-REPAIR
+
+Nickolaus Gruendler (7):
+
+-  `9309ecf5eef8 <https://github.com/open-power/romulus-xml/commit/9309ecf5eef8>`__ Add DD2.2 4 and
+   8 core WOF tables
+-  `97b82bfd90db <https://github.com/open-power/romulus-xml/commit/97b82bfd90db>`__ Enable 2666
+   memory for single drop
+-  `7f925b710c48 <https://github.com/open-power/romulus-xml/commit/7f925b710c48>`__ Update dual drop
+   mem speed, stop states
+-  `7c1bfbb45ab0 <https://github.com/open-power/romulus-xml/commit/7c1bfbb45ab0>`__ Update WOF
+   tables and wof phase2 support
+-  `bcee0de48654 <https://github.com/open-power/romulus-xml/commit/bcee0de48654>`__ Update WOF
+   tables and remove unneeded ones
+-  `93456eecf038 <https://github.com/open-power/romulus-xml/commit/93456eecf038>`__ DD2.1 16c WOF
+   data
+-  `d91ade7643d6 <https://github.com/open-power/romulus-xml/commit/d91ade7643d6>`__ Update PCIE EQ
+   setting for gen3
+
+Package: sbe
+------------
+
+`Repository <https://github.com/open-power/sbe>`__
+
+.. _patches-2.2-13:
+
+Patches
+~~~~~~~
+
+.. _commits-2.2-13:
+
+Commits
+~~~~~~~
+
+Abhishek Agarwal (1):
+
+-  `1d4b3dd1656b <https://github.com/open-power/sbe/commit/1d4b3dd1656b>`__ Axone only-IPL
+   Procedures update to support SBE changes
+
+Adam Hale (2):
+
+-  `2eb270876749 <https://github.com/open-power/sbe/commit/2eb270876749>`__ Disable HW439321
+   workaround in dd1.3
+-  `68b93cc0698a <https://github.com/open-power/sbe/commit/68b93cc0698a>`__ HW467590 - WAT Solution
+   to prevent ARMWF starvation early hang
+
+Alvin Wang (1):
+
+-  `dbdcd7a7c9dc <https://github.com/open-power/sbe/commit/dbdcd7a7c9dc>`__ Update
+   setup_fw_boot_config() to read out actual values from attributes
+
+Amit Tendolkar (2):
+
+-  `d5794d13060d <https://github.com/open-power/sbe/commit/d5794d13060d>`__ Avoid spurious Malf
+   Alert (HMI) to PHYP in PM Complex Reset/Suspend
+-  `06f2b048dd60 <https://github.com/open-power/sbe/commit/06f2b048dd60>`__ Handling special wakeup
+   assert/deassert mis-match in PM Reset/Init on MALF
+
+Andre Marin (19):
+
+-  `d12c98f3bf94 <https://github.com/open-power/sbe/commit/d12c98f3bf94>`__ Add MEM_PORT target
+-  `975341f85c28 <https://github.com/open-power/sbe/commit/975341f85c28>`__ Modify spd_decoder,
+   eff_config, unit tests. Modify dependent files
+-  `cfb08bf31741 <https://github.com/open-power/sbe/commit/cfb08bf31741>`__ Add mss throttle files
+   L1
+-  `b9d5c1e0b525 <https://github.com/open-power/sbe/commit/b9d5c1e0b525>`__ Modify freq & dep.
+   files. Add cas latency & unit tests
+-  `49c63541c6ed <https://github.com/open-power/sbe/commit/49c63541c6ed>`__ Fix throttle procedure &
+   MSS attribute clean up
+-  `60f0428ecc8e <https://github.com/open-power/sbe/commit/60f0428ecc8e>`__ Add eff_config
+   functionality needed for RIT, fix cas_latency bug & attr files
+-  `7a955f623f4f <https://github.com/open-power/sbe/commit/7a955f623f4f>`__ Modify SPD blob and
+   eff-config hardcoding to match VBU
+-  `2ce64ff2a7c1 <https://github.com/open-power/sbe/commit/2ce64ff2a7c1>`__ Fix
+   p9_mss_utils_to_throttle, create throttles API, attribute cleanup
+-  `dfac7593ceb5 <https://github.com/open-power/sbe/commit/dfac7593ceb5>`__ Add LRDIMM to
+   translation register infrastructure and unit tests.
+-  `9f22ccd6654f <https://github.com/open-power/sbe/commit/9f22ccd6654f>`__ Add read cmd, precharge
+   all cmd, and read cmd CCS instruction and unit tests
+-  `c296d8d25294 <https://github.com/open-power/sbe/commit/c296d8d25294>`__ Add PHY sequencer
+   refresh settings after draminit
+-  `bf3e7649798e <https://github.com/open-power/sbe/commit/bf3e7649798e>`__ Remove ZQCAL redundant
+   CCS inst, move to draminit_training
+-  `f83a56fc20e8 <https://github.com/open-power/sbe/commit/f83a56fc20e8>`__ Add Write CRC attributes
+   to xml and eff_dimm
+-  `224f435e1760 <https://github.com/open-power/sbe/commit/224f435e1760>`__ Fix i2c doxy and update
+   i2c_access.H doxy to match fapi2_access_i2c.H
+-  `3dbbc66ec9d3 <https://github.com/open-power/sbe/commit/3dbbc66ec9d3>`__ Add empty explorer
+   “check_for_ready” procedure files
+-  `77c7728ea9e7 <https://github.com/open-power/sbe/commit/77c7728ea9e7>`__ Added I2C fields,
+   EXP_FW_STATUS API
+-  `09fc729a0e49 <https://github.com/open-power/sbe/commit/09fc729a0e49>`__ Implement
+   exp_check_for_ready
+-  `40778a92810f <https://github.com/open-power/sbe/commit/40778a92810f>`__ Initial mss_field endian
+   modification
+-  `234dbdb65dd7 <https://github.com/open-power/sbe/commit/234dbdb65dd7>`__ Add exp_draminit and fix
+   data_structs constants
+
+Anusha Reddy Rangareddygari (4):
+
+-  `aee8470bb261 <https://github.com/open-power/sbe/commit/aee8470bb261>`__ Initf procedure updates
+   for Cumulus
+-  `40409eb7a0de <https://github.com/open-power/sbe/commit/40409eb7a0de>`__ Initf procedure updates
+   for OMI rings for Axone
+-  `957a64765762 <https://github.com/open-power/sbe/commit/957a64765762>`__ Initf procedure updates
+   for Axone OMI rings
+-  `5697a351821d <https://github.com/open-power/sbe/commit/5697a351821d>`__ Axone only-Mux settings
+   for TOD refclk input
+
+Ben Gass (5):
+
+-  `c9c321873ecd <https://github.com/open-power/sbe/commit/c9c321873ecd>`__ Update p9a_10 engd from
+   o10_e9018_1_tp018_ec409_soa_sc_u261_01
+-  `656d77e999c1 <https://github.com/open-power/sbe/commit/656d77e999c1>`__ Back out p9a_10 engd
+   that breaks the initcompiler.
+-  `3fd4e84f2ab4 <https://github.com/open-power/sbe/commit/3fd4e84f2ab4>`__ Update Axone engd.
+-  `b95ca3802748 <https://github.com/open-power/sbe/commit/b95ca3802748>`__ Adding p9a_ocmb_enable
+-  `99a4816003f1 <https://github.com/open-power/sbe/commit/99a4816003f1>`__ Adding omi_init
+   procedures.
+
+Brian Silver (26):
+
+-  `c874b0234370 <https://github.com/open-power/sbe/commit/c874b0234370>`__ Initial commit of memory
+   subsystem
+-  `10b33503959b <https://github.com/open-power/sbe/commit/10b33503959b>`__ Add PHY RC class, update
+   setup cal for 2D wc/rc
+-  `cbf577233f98 <https://github.com/open-power/sbe/commit/cbf577233f98>`__ Add mcbist L2 function
+-  `4d73c7a1e85d <https://github.com/open-power/sbe/commit/4d73c7a1e85d>`__ Change DIMM_SIZE from 8
+   bits to 32 bits
+-  `82f796bbc0d2 <https://github.com/open-power/sbe/commit/82f796bbc0d2>`__ Add dp16 io tx dll/vreg
+   config
+-  `611d94b420a2 <https://github.com/open-power/sbe/commit/611d94b420a2>`__ Add L2 p9_mss_scrub
+-  `02414db1db84 <https://github.com/open-power/sbe/commit/02414db1db84>`__ Change ODT R/W to take
+   values from VPD
+-  `f4fe10e30b1f <https://github.com/open-power/sbe/commit/f4fe10e30b1f>`__ Add consumption of IBT
+   from VPD and place in RCD7x
+-  `fdd2a22a19b5 <https://github.com/open-power/sbe/commit/fdd2a22a19b5>`__ Changes related to RTT
+   VPD settings
+-  `a7bf0135fb18 <https://github.com/open-power/sbe/commit/a7bf0135fb18>`__ Implement MRW
+   attributes; dram_clks, db_util, 2n_mode
+-  `281819c9a3f6 <https://github.com/open-power/sbe/commit/281819c9a3f6>`__ Change PHY to use GPO,
+   RLO, WLO from VPD
+-  `1a9deb52ca5e <https://github.com/open-power/sbe/commit/1a9deb52ca5e>`__ Add bit field of master
+   ranks attribute for PRD
+-  `2318bae2ec82 <https://github.com/open-power/sbe/commit/2318bae2ec82>`__ Add an attribute to
+   avoid the plug rules in partial good scenarios
+-  `5857fe5e9341 <https://github.com/open-power/sbe/commit/5857fe5e9341>`__ Change
+   p9_mss_freq_system to write attributes, errors for Cronus
+-  `e61c6620ebf2 <https://github.com/open-power/sbe/commit/e61c6620ebf2>`__ Add disabled bit
+   processing for DDR PHY initial calibration
+-  `1a63e02fb8fb <https://github.com/open-power/sbe/commit/1a63e02fb8fb>`__ Add DP16 workarounds for
+   Nimbus DD1.0
+-  `14a4648821a3 <https://github.com/open-power/sbe/commit/14a4648821a3>`__ Enable read VREF
+   calibration
+-  `939b1b6dae25 <https://github.com/open-power/sbe/commit/939b1b6dae25>`__ Initial commit of memory
+   subsystem
+-  `d350afb8fe94 <https://github.com/open-power/sbe/commit/d350afb8fe94>`__ Add mcbist L2 function
+-  `33aeb4130fcd <https://github.com/open-power/sbe/commit/33aeb4130fcd>`__ Add initial FIR checking
+   for APB interface
+-  `737236237bc4 <https://github.com/open-power/sbe/commit/737236237bc4>`__ Change draminit_mc
+   mcbist subtest to perform compares rather than ECC
+-  `cadb2f99a87b <https://github.com/open-power/sbe/commit/cadb2f99a87b>`__ Add memdiags scrub
+   capability
+-  `fadf57f63054 <https://github.com/open-power/sbe/commit/fadf57f63054>`__ Update error handling
+   for IPL procedures
+-  `bba0660f44a8 <https://github.com/open-power/sbe/commit/bba0660f44a8>`__ Update memory library
+   for 1R 4gbx4 DIMM
+-  `8baf05c39b20 <https://github.com/open-power/sbe/commit/8baf05c39b20>`__ Add 3DS DIMM support
+-  `5942578dbc6c <https://github.com/open-power/sbe/commit/5942578dbc6c>`__ Changes to limit DLL cal
+   on spare DP8, stop CSS before starting
+
+Chris Steffen (1):
+
+-  `022cf9ef4eee <https://github.com/open-power/sbe/commit/022cf9ef4eee>`__ Alink Hot Repair Fix
+
+Christian Geddes (2):
+
+-  `653af7c39dce <https://github.com/open-power/sbe/commit/653af7c39dce>`__ Clear INT_CQ related
+   firs after completing sync_reset in MPIPL
+-  `da97ec320573 <https://github.com/open-power/sbe/commit/da97ec320573>`__ Add exp_i2c_scom driver
+   that will be consumed by HB/SBE platforms
+
+Christian R. Geddes (1):
+
+-  `d366d4d3fd47 <https://github.com/open-power/sbe/commit/d366d4d3fd47>`__ Revert “Clear INT_CQ
+   related firs after completing sync_reset in MPIPL”
+
+Claus Michael Olsen (2):
+
+-  `b899067de964 <https://github.com/open-power/sbe/commit/b899067de964>`__ Cleanup: Updated Mvpd
+   access function and removal of unused rings
+-  `225922537f45 <https://github.com/open-power/sbe/commit/225922537f45>`__ Infrastructure support
+   for new MC OMI rings for Axone
+
+Dan Crowell (9):
+
+-  `114eb0df447d <https://github.com/open-power/sbe/commit/114eb0df447d>`__ Remove
+   ATTR_PROC_CHIP_MEM_TO_USE
+-  `c9b485103576 <https://github.com/open-power/sbe/commit/c9b485103576>`__ Attribute cleanup
+-  `12f20f559a22 <https://github.com/open-power/sbe/commit/12f20f559a22>`__ Only save the CME FIR
+   Masks after they have been setup once
+-  `41ac7c13db4a <https://github.com/open-power/sbe/commit/41ac7c13db4a>`__ Add Axone targets to
+   fapi error utilities
+-  `29377f9ca5d2 <https://github.com/open-power/sbe/commit/29377f9ca5d2>`__ Remove whitespace that
+   breaks HB attribute compiler
+-  `0bd8a112862e <https://github.com/open-power/sbe/commit/0bd8a112862e>`__ Add override attributes
+   for memory vpd access
+-  `f2c585d70f39 <https://github.com/open-power/sbe/commit/f2c585d70f39>`__ Change
+   ATTR_MSS_WR_VREF_OFFSET to be override-only
+-  `e95bde71fdee <https://github.com/open-power/sbe/commit/e95bde71fdee>`__ Make new WOV attributes
+   override-only
+-  `2e253cebdaff <https://github.com/open-power/sbe/commit/2e253cebdaff>`__ Interface for OCMB
+   getVPD
+
+Dean Sanner (3):
+
+-  `69dedc0ffc26 <https://github.com/open-power/sbe/commit/69dedc0ffc26>`__ Add hook to setup
+   ATTR_SMF_CONFIG
+-  `ff37b7ecb360 <https://github.com/open-power/sbe/commit/ff37b7ecb360>`__ Use core target for
+   HRMOR/URMOR scoms in p9_sbe_load_bootloader
+-  `4cedc39a1cbe <https://github.com/open-power/sbe/commit/4cedc39a1cbe>`__ Leave scratch valid bits
+   alone to allow HB to query
+
+Douglas Gilbert (1):
+
+-  `ef27d8bc4244 <https://github.com/open-power/sbe/commit/ef27d8bc4244>`__ HCODE Make divide using
+   DERP/DORP atomic
+
+Greg Still (2):
+
+-  `895e0d5c76a7 <https://github.com/open-power/sbe/commit/895e0d5c76a7>`__ SMF: SBE updates for SMF
+   (URMOR set and CPMMR[Runtime Wakeup Mode] clear)
+-  `e4bd0e56146b <https://github.com/open-power/sbe/commit/e4bd0e56146b>`__ SMF: clear HRMOR[15] in
+   all modes so that secure mode won’t hang core
+
+Jacob Harvey (19):
+
+-  `b5a8ad90ae2d <https://github.com/open-power/sbe/commit/b5a8ad90ae2d>`__ Added initToZero tag for
+   all memory attributes
+-  `79dc09405f69 <https://github.com/open-power/sbe/commit/79dc09405f69>`__ Change MSS_VOLT to
+   MSS_VOLT_VDDR
+-  `b7da4b95261b <https://github.com/open-power/sbe/commit/b7da4b95261b>`__ Fix eff_config, remove
+   custom_dimm
+-  `b79b9ca39e1b <https://github.com/open-power/sbe/commit/b79b9ca39e1b>`__ Modifying ATTRs for
+   memory power thermal
+-  `50fe674d875b <https://github.com/open-power/sbe/commit/50fe674d875b>`__ Cleaned spd xml and
+   Added module manufacturer info
+-  `3e99f56e4eb2 <https://github.com/open-power/sbe/commit/3e99f56e4eb2>`__ Started implementation
+   of bulk_pwr_throttles
+-  `e08919954f75 <https://github.com/open-power/sbe/commit/e08919954f75>`__ Implement L2
+   eff_config_thermal, bulk_pwr_throttle
+-  `8198935a9b65 <https://github.com/open-power/sbe/commit/8198935a9b65>`__ Fixing
+   bulk_pwr_throttles calculations
+-  `00d7f23538f6 <https://github.com/open-power/sbe/commit/00d7f23538f6>`__ Move MRS attributes to
+   eff_config to calc LRDIMMs
+-  `fa8cd7a53397 <https://github.com/open-power/sbe/commit/fa8cd7a53397>`__ Disabling
+   temp_refresh_mode
+-  `28138fa01bdb <https://github.com/open-power/sbe/commit/28138fa01bdb>`__ Fixing raw card setting
+   for DIMMs
+-  `8c2f174a055a <https://github.com/open-power/sbe/commit/8c2f174a055a>`__ Fix up setup_cal and
+   vref attrs
+-  `3b8fd10f3017 <https://github.com/open-power/sbe/commit/3b8fd10f3017>`__ Add in L1
+   draminit_training_adv files
+-  `e3f992ac8cf6 <https://github.com/open-power/sbe/commit/e3f992ac8cf6>`__ Implementing
+   draminit_training_adv
+-  `cf118099b000 <https://github.com/open-power/sbe/commit/cf118099b000>`__ Disabled Training
+   Advance in sim
+-  `f62eba35005d <https://github.com/open-power/sbe/commit/f62eba35005d>`__ L3 RAS for
+   draminit_training, eff_config, lib
+-  `8b1f6433ef30 <https://github.com/open-power/sbe/commit/8b1f6433ef30>`__ Clean up memdiags ffdc
+   naming
+-  `847583feba87 <https://github.com/open-power/sbe/commit/847583feba87>`__ L3 draminit and mss_lib
+-  `c3d5f54e035a <https://github.com/open-power/sbe/commit/c3d5f54e035a>`__ Fix sim problems on awan
+
+Jennifer A. Stofer (2):
+
+-  `19a6cc35b628 <https://github.com/open-power/sbe/commit/19a6cc35b628>`__ Revert “lpc_init:
+   Correct LPC host controller timeout value”
+-  `ecf448158b9d <https://github.com/open-power/sbe/commit/ecf448158b9d>`__ Revert “Initf procedure
+   updates for OMI rings for Axone”
+
+Jenny Huynh (8):
+
+-  `739cb752fc4a <https://github.com/open-power/sbe/commit/739cb752fc4a>`__ Secure memory allocation
+   and setup
+-  `3163363f9b24 <https://github.com/open-power/sbe/commit/3163363f9b24>`__ Avoid enabling smf bits
+   in nmmu logic for P9
+-  `3399fd3edb81 <https://github.com/open-power/sbe/commit/3399fd3edb81>`__ SW427193 / HW461448:
+   Enable memory controller wat
+-  `9f0712eccd00 <https://github.com/open-power/sbe/commit/9f0712eccd00>`__ Mask early hang
+   indicators from nmmu/vas unit
+-  `f980f21554a3 <https://github.com/open-power/sbe/commit/f980f21554a3>`__ Mask NMMUFIR(7),
+   NMMUFIR(36:39)
+-  `96b355495608 <https://github.com/open-power/sbe/commit/96b355495608>`__ Enforce SMF size
+   requirements and correct valid bit
+-  `baa6ab8c737e <https://github.com/open-power/sbe/commit/baa6ab8c737e>`__ HW471413 Aggressive
+   Uncle: disable ERAT thread sharing
+-  `7032c3353697 <https://github.com/open-power/sbe/commit/7032c3353697>`__ Enable Nimbus DD23 risk
+   levels
+
+Joachim Fenkes (6):
+
+-  `a8686c27d27e <https://github.com/open-power/sbe/commit/a8686c27d27e>`__ p9_sbe_lpc_init: Add
+   final check for errors
+-  `c7486f7b07ab <https://github.com/open-power/sbe/commit/c7486f7b07ab>`__ p9_sbe_tp_chiplet_init3:
+   Set up oscillator error mask based on MF osc setting
+-  `4191b61e176a <https://github.com/open-power/sbe/commit/4191b61e176a>`__ p9_sbe_lpc_init: Improve
+   reset
+-  `bbce13954daa <https://github.com/open-power/sbe/commit/bbce13954daa>`__ lpc_init: Correct LPC
+   host controller timeout value
+-  `97b414635410 <https://github.com/open-power/sbe/commit/97b414635410>`__ p9_sbe_lpc_init: Skip
+   final error check for Fleetwood GA1
+-  `c3907f462c51 <https://github.com/open-power/sbe/commit/c3907f462c51>`__ test: Temporarily
+   disable testArrayAccess
+
+Joe McGill (14):
+
+-  `add228241007 <https://github.com/open-power/sbe/commit/add228241007>`__ allow option to enforce
+   mirroring of all system memory
+-  `b725244e84ae <https://github.com/open-power/sbe/commit/b725244e84ae>`__ set PEC disable store
+   thread based ordering chicken switches
+-  `8dcb329eeac4 <https://github.com/open-power/sbe/commit/8dcb329eeac4>`__ p9_sbe_check_quiesce –
+   restore call to p9_int_scrub_caches
+-  `c8fede9e612b <https://github.com/open-power/sbe/commit/c8fede9e612b>`__ p9_sbe_scominit – set
+   XSCOM BAR in secure memory with SMF enabled
+-  `0eff4a7aa441 <https://github.com/open-power/sbe/commit/0eff4a7aa441>`__ p9.pci.scan.initfile –
+   replace 62028 implementation with initfile entry
+-  `bb2581994b16 <https://github.com/open-power/sbe/commit/bb2581994b16>`__ Validate OBUS DL lane
+   failed indications during initial link training
+-  `a29e1a56702f <https://github.com/open-power/sbe/commit/a29e1a56702f>`__ apply INT ARX clock gate
+   disable to p9n DD2.0 hardware
+-  `d7508dcad439 <https://github.com/open-power/sbe/commit/d7508dcad439>`__ Updates to permit
+   synchronized SS PLL spreading via TOD
+-  `da2faf32fae4 <https://github.com/open-power/sbe/commit/da2faf32fae4>`__ nest updates for p9c
+   DD1.3 native and p9c DD1.2 compatibility modes
+-  `dcd07da310ae <https://github.com/open-power/sbe/commit/dcd07da310ae>`__ prevent NVDL recal_abort
+   to OBUS PHY during SMP usage
+-  `ed95ad23449b <https://github.com/open-power/sbe/commit/ed95ad23449b>`__ FBC ABUS TDM inject and
+   recovery HWPs
+-  `6ef77d03b31f <https://github.com/open-power/sbe/commit/6ef77d03b31f>`__ whitelist updates for
+   ABUS CCM
+-  `41e1c16c7172 <https://github.com/open-power/sbe/commit/41e1c16c7172>`__ Add MSS customization
+   support from CRP0 Lx MVPD
+-  `658b2f4ef5f3 <https://github.com/open-power/sbe/commit/658b2f4ef5f3>`__ apply HW423589 option1
+   (MCD disable) workaround for p9n DD2.1
+
+Joel Stanley (2):
+
+-  `9fcda53c50f7 <https://github.com/open-power/sbe/commit/9fcda53c50f7>`__ p9_sbe_tp_chiplet_init:
+   Fix missing semicolons
+-  `d779bc19cdeb <https://github.com/open-power/sbe/commit/d779bc19cdeb>`__ fapi2: Use correct
+   RingMode type
+
+Louis Stermole (10):
+
+-  `026d810afdde <https://github.com/open-power/sbe/commit/026d810afdde>`__ Add row repair access
+   functions and attr switches for p9c
+-  `43db7b547db5 <https://github.com/open-power/sbe/commit/43db7b547db5>`__ Adding defaults for DRAM
+   dll_reset and dll_enable
+-  `ef6b416c8749 <https://github.com/open-power/sbe/commit/ef6b416c8749>`__ Add attribute
+   ATTR_EFF_RANK_GROUP_OVERRIDE
+-  `e179917b2c46 <https://github.com/open-power/sbe/commit/e179917b2c46>`__ Disable RTT_WR during
+   WR_LEVEL cal step, and set equivalent terminations
+-  `65add1de701a <https://github.com/open-power/sbe/commit/65add1de701a>`__ Improve description of
+   ATTR_EFF_RANK_GROUP_OVERRIDE
+-  `9dc84acf3693 <https://github.com/open-power/sbe/commit/9dc84acf3693>`__ Move
+   MNFG_TEST_ALL_SPARE_DRAM_ROWS to a new encoding
+-  `ea070e563fc3 <https://github.com/open-power/sbe/commit/ea070e563fc3>`__ Fix 1R dual-drop bugs
+-  `a66ed7d25440 <https://github.com/open-power/sbe/commit/a66ed7d25440>`__ Move MSS Rosetta map
+   from lab to f/w library, add API
+-  `3a4b3bd7d357 <https://github.com/open-power/sbe/commit/3a4b3bd7d357>`__ Add API for MC to C4 DQ
+   pin index translation
+-  `7359a42e3aea <https://github.com/open-power/sbe/commit/7359a42e3aea>`__ Change mss_freq
+   algorithm to deconfigure ports to achieve common DIMM freq
+
+Matt K. Light (2):
+
+-  `bfc895ae5d9e <https://github.com/open-power/sbe/commit/bfc895ae5d9e>`__ fapi2 i2c access headers
+-  `de6a45dcdabe <https://github.com/open-power/sbe/commit/de6a45dcdabe>`__ fapi2 i2c dox update
+
+Nick Bofferding (1):
+
+-  `ab21d9215c0e <https://github.com/open-power/sbe/commit/ab21d9215c0e>`__ Secure Boot: Whitelist
+   PPE External Interface XCR and SMP lane related register
+
+Nick Klazynski (4):
+
+-  `dc6a9a0a6028 <https://github.com/open-power/sbe/commit/dc6a9a0a6028>`__ Clockgate disable
+   workaround for HW452921
+-  `2582f47596ad <https://github.com/open-power/sbe/commit/2582f47596ad>`__ Enable CDD1.3’s 4
+   risklevels (step 1)
+-  `037aa8a374c5 <https://github.com/open-power/sbe/commit/037aa8a374c5>`__ Enable Core
+   compatability Mode; Add HW443669
+-  `d78d955fd260 <https://github.com/open-power/sbe/commit/d78d955fd260>`__ Add TLBIE WAT
+
+Prasad Bg Ranganath (3):
+
+-  `6fca30900233 <https://github.com/open-power/sbe/commit/6fca30900233>`__ Marking CME sram addr
+   and cntrl register for whitelist
+-  `2bd351fbbd39 <https://github.com/open-power/sbe/commit/2bd351fbbd39>`__ PM:Some more cleanups in
+   update_ec_eq procedure for core unit xstop case
+-  `5833ebe6d677 <https://github.com/open-power/sbe/commit/5833ebe6d677>`__ STOP:Dont clear
+   pmc_pcb_intr_type0_pending in OISR1/OIMR1 register
+
+Prem Shanker Jha (7):
+
+-  `1d60e2d7700c <https://github.com/open-power/sbe/commit/1d60e2d7700c>`__ PM: Added support for
+   enable disable of 24x7 IMA.
+-  `26f2defa140d <https://github.com/open-power/sbe/commit/26f2defa140d>`__ UV Support : Augmented
+   STOP API and self restore for enabling ultravisor.
+-  `4a4cf323a8a1 <https://github.com/open-power/sbe/commit/4a4cf323a8a1>`__ Revert “UV Support :
+   Augmented STOP API and self restore for enabling UV”
+-  `090243ffb298 <https://github.com/open-power/sbe/commit/090243ffb298>`__ PM: Fixed handling of
+   CME LFIR mask during PM complex reset.
+-  `63f0f90e5883 <https://github.com/open-power/sbe/commit/63f0f90e5883>`__ Img Build: HOMER changes
+   for SMF and SPR self save.
+-  `f84706a9ed02 <https://github.com/open-power/sbe/commit/f84706a9ed02>`__ SMF: Defined new
+   attribute to store unsecure HOMER’s base address.
+-  `cc4c778333b5 <https://github.com/open-power/sbe/commit/cc4c778333b5>`__ SMF: Defined new
+   attribute to store unsecure HOMER’s base address.
+
+RAJA DAS (1):
+
+-  `3d13f0af8432 <https://github.com/open-power/sbe/commit/3d13f0af8432>`__ Revert “Self Save: Fixed
+   bugs pertaining to SPR self save.”
+
+Rahul Batra (2):
+
+-  `3b46d1735013 <https://github.com/open-power/sbe/commit/3b46d1735013>`__ PGPE: WOV Attributes
+   (1/3)
+-  `37a2ec2b1354 <https://github.com/open-power/sbe/commit/37a2ec2b1354>`__ SMF: Make
+   UNSECURE_HOMER_ADDR unwriteable on FAPI
+
+Raja Das (16):
+
+-  `432a7bb830ab <https://github.com/open-power/sbe/commit/432a7bb830ab>`__ Inverted logic of
+   hasClock bit in Clock Status register
+-  `4a2a88ff8081 <https://github.com/open-power/sbe/commit/4a2a88ff8081>`__ [SBE-ARCH2] Format
+   register dump and SBE Capturing the Data
+-  `bd5c4de63cdd <https://github.com/open-power/sbe/commit/bd5c4de63cdd>`__ [SBE-ARCH1]HRMOR
+   relocated to 4Gb for SPLess Opal system
+-  `7a091ef2465a <https://github.com/open-power/sbe/commit/7a091ef2465a>`__ Updated core stop state
+   while capturing data in MPIPL
+-  `26acfd0fd5e7 <https://github.com/open-power/sbe/commit/26acfd0fd5e7>`__ Simics check in case of
+   spless system before modifying HRMOR to 4GB
+-  `0297fe823ff6 <https://github.com/open-power/sbe/commit/0297fe823ff6>`__ Axone tp_chiplet_init
+   sequence in boot
+-  `a273362351bf <https://github.com/open-power/sbe/commit/a273362351bf>`__ Added newline
+   termination after putting in build info into Hash
+-  `74de67ab5090 <https://github.com/open-power/sbe/commit/74de67ab5090>`__ Increased l2 loader size
+   in PIBMEM
+-  `f4b6cc7a8717 <https://github.com/open-power/sbe/commit/f4b6cc7a8717>`__ Added AXONE option for
+   sbe-trace
+-  `470b106f89cc <https://github.com/open-power/sbe/commit/470b106f89cc>`__ Updated tracehash.pl
+   file to skip parsing of empty line from hash file
+-  `2992583ae8c9 <https://github.com/open-power/sbe/commit/2992583ae8c9>`__ Axone chipId support
+-  `bbeb8d0cefc7 <https://github.com/open-power/sbe/commit/bbeb8d0cefc7>`__ Instruction machine
+   check ISR updated
+-  `39be529611f3 <https://github.com/open-power/sbe/commit/39be529611f3>`__ Removed dual compilation
+   of pibmem_repair.S
+-  `8c6000a46281 <https://github.com/open-power/sbe/commit/8c6000a46281>`__ Re-used loader_data
+   section to pibmem repair scom data for Axone
+-  `c0a1b5d3de4d <https://github.com/open-power/sbe/commit/c0a1b5d3de4d>`__ Support for renaming
+   loader_data section to pibmemrepair_data section
+-  `50133b0d87d0 <https://github.com/open-power/sbe/commit/50133b0d87d0>`__ Axone pibmem only image
+   compilation
+
+Richard J. Knight (5):
+
+-  `4f7caa36ee81 <https://github.com/open-power/sbe/commit/4f7caa36ee81>`__ Add prototype for
+   releasing platform data pointer storage function
+-  `a2fae5c9cbeb <https://github.com/open-power/sbe/commit/a2fae5c9cbeb>`__ Modify the getFfdc
+   routine to consider the SBE proc
+-  `1536a9ea7882 <https://github.com/open-power/sbe/commit/1536a9ea7882>`__ get FAPI_POS for all
+   valid target types passed in SBE FIFO ffdc
+-  `4abbd808718d <https://github.com/open-power/sbe/commit/4abbd808718d>`__ FAPI2 - Enable register
+   ffdc support
+-  `147883cba7f4 <https://github.com/open-power/sbe/commit/147883cba7f4>`__ Change target types for
+   memory FFDC
+
+Sachin Gupta (9):
+
+-  `a682d4b3a60e <https://github.com/open-power/sbe/commit/a682d4b3a60e>`__ Update backing build
+-  `2c410f1b2264 <https://github.com/open-power/sbe/commit/2c410f1b2264>`__ Fix in quisce
+-  `a46943dd8677 <https://github.com/open-power/sbe/commit/a46943dd8677>`__ Updating backing build
+-  `43e1ba4a2643 <https://github.com/open-power/sbe/commit/43e1ba4a2643>`__ Remove intermediate rule
+   for C/c files
+-  `0ee0a590013e <https://github.com/open-power/sbe/commit/0ee0a590013e>`__ Only call lpc init
+   procedure on slave procs in mnfg mode
+-  `629cf0ba3bf7 <https://github.com/open-power/sbe/commit/629cf0ba3bf7>`__ Support
+   ATTR_LPC_CONSOLE_CNFG attribute
+-  `ca16ce92cfeb <https://github.com/open-power/sbe/commit/ca16ce92cfeb>`__ Put temporary file in
+   project config folder
+-  `50f39386956e <https://github.com/open-power/sbe/commit/50f39386956e>`__ Revert Only call lpc
+   init procedure on slave procs in mnfg mode
+-  `eaee47c85878 <https://github.com/open-power/sbe/commit/eaee47c85878>`__ Remove unused code from
+   SBE
+
+Santosh Puranik (1):
+
+-  `8fd3e3a6f64c <https://github.com/open-power/sbe/commit/8fd3e3a6f64c>`__ Mark OB1 and OB2 present
+   for Axone
+
+Srikantha Meesala (1):
+
+-  `0121de3404a4 <https://github.com/open-power/sbe/commit/0121de3404a4>`__ Enable DD2.3 in op build
+   and Disable DD2.0
+
+Stephen Glancy (14):
+
+-  `d103f7adad9d <https://github.com/open-power/sbe/commit/d103f7adad9d>`__ Adds endian_swap to
+   fapi2
+-  `4158d2de4415 <https://github.com/open-power/sbe/commit/4158d2de4415>`__ Removes unused attribute
+   accessors
+-  `2afef5ba1d8d <https://github.com/open-power/sbe/commit/2afef5ba1d8d>`__ Fixed eff_config attr
+   generation
+-  `f3df43fa56d1 <https://github.com/open-power/sbe/commit/f3df43fa56d1>`__ Fixed CL and timing
+   bugs, unit test augmentations
+-  `b99ae92f6e5d <https://github.com/open-power/sbe/commit/b99ae92f6e5d>`__ Updates MCBIST for
+   dual-drop systems
+-  `8e6447a0500a <https://github.com/open-power/sbe/commit/8e6447a0500a>`__ Updates WR VREF for
+   characterization results
+-  `67d2399b0593 <https://github.com/open-power/sbe/commit/67d2399b0593>`__ Updates training
+   advanced and adds custom WR CTR
+-  `8a8152b3899d <https://github.com/open-power/sbe/commit/8a8152b3899d>`__ Updates custom RD CTR
+   pattern
+-  `691b1fdd183f <https://github.com/open-power/sbe/commit/691b1fdd183f>`__ Updates the training
+   advanced algorithm
+-  `88910edf281a <https://github.com/open-power/sbe/commit/88910edf281a>`__ Removes unused attribute
+   accessors
+-  `f97b07db36ea <https://github.com/open-power/sbe/commit/f97b07db36ea>`__ Fixes LRDIMM eff_config
+   bugs
+-  `b1e13ff2022b <https://github.com/open-power/sbe/commit/b1e13ff2022b>`__ Adds explorer OMI
+   training code
+-  `b75034351145 <https://github.com/open-power/sbe/commit/b75034351145>`__ Adds PDA support
+-  `7a9f08a0a7ea <https://github.com/open-power/sbe/commit/7a9f08a0a7ea>`__ Moves sync code to
+   generic folder
+
+Sumit Kumar (1):
+
+-  `08a3b13f505d <https://github.com/open-power/sbe/commit/08a3b13f505d>`__ Updated gerrit hostname
+
+Sunil Kumar (2):
+
+-  `64cbaffb38a0 <https://github.com/open-power/sbe/commit/64cbaffb38a0>`__ Flush NVDIMM Chipop
+-  `381998929720 <https://github.com/open-power/sbe/commit/381998929720>`__ Incorporate NVDIMM HWP
+   into SBE.
+
+Thi Tran (1):
+
+-  `32acc42c886d <https://github.com/open-power/sbe/commit/32acc42c886d>`__ Change target types to
+   64-bit and add P10 target types
+
+Tsung Yeung (4):
+
+-  `1610ae1216ac <https://github.com/open-power/sbe/commit/1610ae1216ac>`__ Default DDR4-2933 to
+   2666
+-  `baa99608f3cd <https://github.com/open-power/sbe/commit/baa99608f3cd>`__ P9: NVDIMM SBE Support
+   to Trigger Catastrophic Save
+-  `a1d61a155a92 <https://github.com/open-power/sbe/commit/a1d61a155a92>`__ P9: NVDIMM SBE Support
+   to Trigger Catastrophic Save
+-  `17058c49441a <https://github.com/open-power/sbe/commit/17058c49441a>`__ P9: NVDIMM SBE Support
+   to Trigger Catastrophic Save
+
+Yue Du (3):
+
+-  `00d48c74abbd <https://github.com/open-power/sbe/commit/00d48c74abbd>`__ STOP: remove chiplet
+   enable drop in core_poweron for multicast scom
+-  `77f8505ebf78 <https://github.com/open-power/sbe/commit/77f8505ebf78>`__ PM: Prevent Core-L2
+   Quiesce from removing PM_EXIT upon SPWU
+-  `16fde70421d8 <https://github.com/open-power/sbe/commit/16fde70421d8>`__ IPL/STOP: Disable LCO
+   when only two EXes are configured
+
+Zane Shelley (1):
+
+-  `a29db3da0819 <https://github.com/open-power/sbe/commit/a29db3da0819>`__ RAS_XML: updates to sync
+   the XML with actual values from hardware
+
+manichow (1):
+
+-  `2bdc2af078a7 <https://github.com/open-power/sbe/commit/2bdc2af078a7>`__ Register 1020019 was
+   white listed
+
+spashabk-in (24):
+
+-  `8c276e4ad59b <https://github.com/open-power/sbe/commit/8c276e4ad59b>`__ Update memory address of
+   ADU testcase
+-  `5c79faf686d8 <https://github.com/open-power/sbe/commit/5c79faf686d8>`__ ppe CI memory testcase
+   failure fix
+-  `c6fdb271fa1a <https://github.com/open-power/sbe/commit/c6fdb271fa1a>`__ Optimize PSU testcases
+-  `bba0cab94144 <https://github.com/open-power/sbe/commit/bba0cab94144>`__ Protect fapi rc between
+   processor and async thread
+-  `5e3c66327088 <https://github.com/open-power/sbe/commit/5e3c66327088>`__ Skip select master EX on
+   slave SBE
+-  `ddefd501a212 <https://github.com/open-power/sbe/commit/ddefd501a212>`__ Suspend async task on
+   quiesce SBE
+-  `2567f8f47e82 <https://github.com/open-power/sbe/commit/2567f8f47e82>`__ Get capabilities spec
+   sync
+-  `a8ae4fab627a <https://github.com/open-power/sbe/commit/a8ae4fab627a>`__ Support special wakeup
+   for SRESET
+-  `e6fa24197013 <https://github.com/open-power/sbe/commit/e6fa24197013>`__ Special wakeup bit
+   correction
+-  `20a60ab17ed6 <https://github.com/open-power/sbe/commit/20a60ab17ed6>`__ Add axone config
+-  `d436cbc3c974 <https://github.com/open-power/sbe/commit/d436cbc3c974>`__ Project specific boot
+   handling
+-  `cf180c5928c4 <https://github.com/open-power/sbe/commit/cf180c5928c4>`__ Axone image suffix
+-  `ba07774edab2 <https://github.com/open-power/sbe/commit/ba07774edab2>`__ Bump up axone pibmem
+   size to 224KB
+-  `121afb0e9980 <https://github.com/open-power/sbe/commit/121afb0e9980>`__ Move all text section to
+   PIBMEM for axone
+-  `f4b7f496c8fc <https://github.com/open-power/sbe/commit/f4b7f496c8fc>`__ Introducing lpc utils
+   source file
+-  `9bb64314aad7 <https://github.com/open-power/sbe/commit/9bb64314aad7>`__ Release sbe binaries as
+   part of simics tar
+-  `6b4839f3d35e <https://github.com/open-power/sbe/commit/6b4839f3d35e>`__ Fix forced-trace command
+-  `3aa7b7c2918f <https://github.com/open-power/sbe/commit/3aa7b7c2918f>`__ Enable parallel builds
+   in SBE
+-  `eb8c94369f30 <https://github.com/open-power/sbe/commit/eb8c94369f30>`__ Move Control instruction
+   to seeprom
+-  `da99f39710df <https://github.com/open-power/sbe/commit/da99f39710df>`__ Jenkins parallel build
+-  `ff74130fcca2 <https://github.com/open-power/sbe/commit/ff74130fcca2>`__ Move lpc_rw to a source
+   file
+-  `e1a4637ad7c4 <https://github.com/open-power/sbe/commit/e1a4637ad7c4>`__ Support 1byte data
+   access on LPC
+-  `17ee7c1c6dec <https://github.com/open-power/sbe/commit/17ee7c1c6dec>`__ Enabling ipmi console
+   access
+-  `cf61dc391d03 <https://github.com/open-power/sbe/commit/cf61dc391d03>`__ SBE logs on serial
+   console
+
+whs (1):
+
+-  `984f025a3a05 <https://github.com/open-power/sbe/commit/984f025a3a05>`__ Packaging of memory vpd
+   on Nimbus, MCA->MCS
+
+Package: skiboot
+----------------
+
+`Repository <https://github.com/open-power/skiboot>`__
+
+.. _patches-2.2-14:
+
+Patches
+~~~~~~~
+
+.. _commits-2.2-14:
+
+Commits
+~~~~~~~
+
+Adriana Kobylak (1):
+
+-  `b6ebee077d91 <https://github.com/open-power/skiboot/commit/b6ebee077d91>`__ pflash: Add –skip
+   option for reading
+
+Alexey Kardashevskiy (6):
+
+-  `8a2b6d51b771 <https://github.com/open-power/skiboot/commit/8a2b6d51b771>`__ npu2: Use correct
+   kill type for TCE invalidation
+-  `003ccd577516 <https://github.com/open-power/skiboot/commit/003ccd577516>`__ npu2: Advertise
+   correct TCE page size
+-  `3e3defbf73e3 <https://github.com/open-power/skiboot/commit/3e3defbf73e3>`__ npu2: Return
+   sensible PCI error when not frozen
+-  `d8b161f4b361 <https://github.com/open-power/skiboot/commit/d8b161f4b361>`__ npu2: Allow ATSD for
+   LPAR other than 0
+-  `64627c85e648 <https://github.com/open-power/skiboot/commit/64627c85e648>`__ cpufeatures: Always
+   advertise POWER8NVL as DD2
+-  `889dba86c3c8 <https://github.com/open-power/skiboot/commit/889dba86c3c8>`__ hw/phb3/naples:
+   Disable D-states
+
+Alistair Popple (2):
+
+-  `b8702e2c6963 <https://github.com/open-power/skiboot/commit/b8702e2c6963>`__ Move
+   pb_cen_hp_mode_curr register definition to xscom-p9-reg.h
+-  `68518e542e6f <https://github.com/open-power/skiboot/commit/68518e542e6f>`__ phb4: Disable nodal
+   scoped DMA accesses when PB pump mode is enabled
+
+Andrew Donnellan (10):
+
+-  `be54c89e7e97 <https://github.com/open-power/skiboot/commit/be54c89e7e97>`__ hw/phb4: Fix unused
+   value/parameter warnings
+-  `8a8cc857fa3f <https://github.com/open-power/skiboot/commit/8a8cc857fa3f>`__ hw/npu2: Don’t
+   assert if we hit a mixed OpenCAPI/NVLink setup
+-  `34ceb75f2829 <https://github.com/open-power/skiboot/commit/34ceb75f2829>`__ hw/npu2-opencapi:
+   Fix setting of supported OpenCAPI templates
+-  `c38bdc3984a2 <https://github.com/open-power/skiboot/commit/c38bdc3984a2>`__
+   hw/npu2-hw-procedures: Enable RX auto recal on OpenCAPI links
+-  `ecc4a562b5d1 <https://github.com/open-power/skiboot/commit/ecc4a562b5d1>`__ occ: Wait if OCC GPU
+   presence status not immediately available
+-  `7ecb29651c31 <https://github.com/open-power/skiboot/commit/7ecb29651c31>`__ npu2: Split device
+   index into brick and link index
+-  `68415d5e38ef <https://github.com/open-power/skiboot/commit/68415d5e38ef>`__ hw/npu2: Common NPU2
+   init routine between NVLink and OpenCAPI
+-  `b6cc82cb39c4 <https://github.com/open-power/skiboot/commit/b6cc82cb39c4>`__ hw/npu2, platform:
+   Add NPU2 platform device detection callback
+-  `6a728afd121b <https://github.com/open-power/skiboot/commit/6a728afd121b>`__ hw/npu2, platform:
+   Restructure OpenCAPI i2c reset/presence pins
+-  `9d5b516f2870 <https://github.com/open-power/skiboot/commit/9d5b516f2870>`__
+   platforms/astbmc/witherspoon: Implement OpenCAPI support
+
+Andrew Jeffery (83):
+
+-  `5b1bc2ffe791 <https://github.com/open-power/skiboot/commit/5b1bc2ffe791>`__ ast-bmc: Move copy
+   routines to ast-sf-ctrl
+-  `467b00fdfd67 <https://github.com/open-power/skiboot/commit/467b00fdfd67>`__ core/pci-quirk:
+   Remove broken comment in quirk_astbmc_vga()
+-  `7a5af6da49b9 <https://github.com/open-power/skiboot/commit/7a5af6da49b9>`__ core/pci-quirk:
+   Clean up commented code in quirk_astbmc_vga()
+-  `8972e44f9788 <https://github.com/open-power/skiboot/commit/8972e44f9788>`__ ast-bmc: Rename LPC
+   FW cycle helpers
+-  `ebc8524a3a45 <https://github.com/open-power/skiboot/commit/ebc8524a3a45>`__ ast-io: Rework
+   setup/tear-down of communication with the BMC
+-  `1d8793c64b59 <https://github.com/open-power/skiboot/commit/1d8793c64b59>`__ lpc: Silence LPC
+   SYNC no-response error when necessary
+-  `8bb4a1cd9af4 <https://github.com/open-power/skiboot/commit/8bb4a1cd9af4>`__ ast-io: Use
+   bmc_sio_{get, put}() where required
+-  `d40484209620 <https://github.com/open-power/skiboot/commit/d40484209620>`__ ipmi: Introduce
+   registration for SEL command handlers
+-  `88579eba5fde <https://github.com/open-power/skiboot/commit/88579eba5fde>`__ core/lock: Use
+   try_lock_caller() in lock_caller() to capture owner
+-  `3aa5394f4da1 <https://github.com/open-power/skiboot/commit/3aa5394f4da1>`__ core/flash: Only
+   lock around flashes update in flash_register()
+-  `c0b84547521d <https://github.com/open-power/skiboot/commit/c0b84547521d>`__ core/flash: Unlock
+   around blocklevel calls in NVRAM accessors
+-  `35c955970af6 <https://github.com/open-power/skiboot/commit/35c955970af6>`__ libflash: Add
+   ipmi-hiomap
+-  `b5edb1692b7f <https://github.com/open-power/skiboot/commit/b5edb1692b7f>`__ astbmc: Prefer
+   ipmi-hiomap for PNOR access
+-  `1a1ff0ab2c78 <https://github.com/open-power/skiboot/commit/1a1ff0ab2c78>`__ astbmc: Remove
+   coordinated isolation support
+-  `5684204c2d0b <https://github.com/open-power/skiboot/commit/5684204c2d0b>`__ lpc: Introduce
+   generic probe capability
+-  `dd554bacd13c <https://github.com/open-power/skiboot/commit/dd554bacd13c>`__ astbmc: Use LPC
+   probe calls to determine SIO presence
+-  `9a830ee06c66 <https://github.com/open-power/skiboot/commit/9a830ee06c66>`__ platform:
+   Restructure bmc_platform type
+-  `a43e9a66aae9 <https://github.com/open-power/skiboot/commit/a43e9a66aae9>`__ astbmc: Fail SFC
+   init if SIO is unavailable
+-  `7194e92cc700 <https://github.com/open-power/skiboot/commit/7194e92cc700>`__ lpc: Clear sync
+   no-response field prior to device probe
+-  `f271f0263475 <https://github.com/open-power/skiboot/commit/f271f0263475>`__
+   libflash/ipmi-hiomap: Cleanup allocation on init failure
+-  `a07f8bb329f7 <https://github.com/open-power/skiboot/commit/a07f8bb329f7>`__ p9dsu: Add
+   HIOMAP-over-IPMI support
+-  `a6131d3a215d <https://github.com/open-power/skiboot/commit/a6131d3a215d>`__ p9dsu: Describe
+   platform BMC register configuration
+-  `34cffed2ccf3 <https://github.com/open-power/skiboot/commit/34cffed2ccf3>`__
+   libflash/ipmi-hiomap: Improve event handling
+-  `f47fbc97d421 <https://github.com/open-power/skiboot/commit/f47fbc97d421>`__
+   libflash/ipmi-hiomap: Restore window state on window/protocol reset
+-  `dbdfb0e2ea3c <https://github.com/open-power/skiboot/commit/dbdfb0e2ea3c>`__
+   libflash/ipmi-hiomap: Use error codes rather than abort()
+-  `cee7ec9eae09 <https://github.com/open-power/skiboot/commit/cee7ec9eae09>`__ core/flash: Log
+   return code when ffs_init() fails
+-  `f58be461091f <https://github.com/open-power/skiboot/commit/f58be461091f>`__ libflash/test:
+   Rewrite Makefile.check to improve scalability
+-  `97f839beffb5 <https://github.com/open-power/skiboot/commit/97f839beffb5>`__
+   libflash/ipmi-hiomap: Fix argument type warning on x86-64
+-  `1151a987ae45 <https://github.com/open-power/skiboot/commit/1151a987ae45>`__
+   libflash/ipmi-hiomap: Add support for unit tests
+-  `d49bfeea7bf2 <https://github.com/open-power/skiboot/commit/d49bfeea7bf2>`__
+   libflash/ipmi-hiomap: Respect daemon presence and flash control
+-  `5d07d064db05 <https://github.com/open-power/skiboot/commit/5d07d064db05>`__ libflash/test:
+   Generate header dependencies for tests
+-  `e3a3ba16a44a <https://github.com/open-power/skiboot/commit/e3a3ba16a44a>`__ test-ipmi-hiomap:
+   Add ability to delay some IPMI messages
+-  `3056fcd0a7c4 <https://github.com/open-power/skiboot/commit/3056fcd0a7c4>`__ test-ipmi-hiomap:
+   Dump unexpected IPMI messages
+-  `7cb5eca8d6ca <https://github.com/open-power/skiboot/commit/7cb5eca8d6ca>`__ test-ipmi-hiomap:
+   Ensure the completion code is set
+-  `272443f7687b <https://github.com/open-power/skiboot/commit/272443f7687b>`__ test-ipmi-hiomap:
+   Print some information on early scenario_exit()
+-  `7bb5ead55bdf <https://github.com/open-power/skiboot/commit/7bb5ead55bdf>`__
+   libflash/ipmi-hiomap: Fix leak of msg in callback
+-  `2e29cf8d00fb <https://github.com/open-power/skiboot/commit/2e29cf8d00fb>`__
+   libflash/ipmi-hiomap: Overhaul error handling
+-  `5c4b51a0408f <https://github.com/open-power/skiboot/commit/5c4b51a0408f>`__
+   libflash/ipmi-hiomap: Overhaul event handling
+-  `041d61e2be1d <https://github.com/open-power/skiboot/commit/041d61e2be1d>`__
+   libflash/ipmi-hiomap: Remove unused close handling
+-  `b64b3544d90b <https://github.com/open-power/skiboot/commit/b64b3544d90b>`__
+   libflash/ipmi-hiomap: Enforce message size for empty response
+-  `cca1c08ece5e <https://github.com/open-power/skiboot/commit/cca1c08ece5e>`__ test-ipmi-hiomap:
+   Add protocol-persistent-error test
+-  `a215e3e547a0 <https://github.com/open-power/skiboot/commit/a215e3e547a0>`__ test-ipmi-hiomap:
+   Add read-one-block test
+-  `96ca4e26deb6 <https://github.com/open-power/skiboot/commit/96ca4e26deb6>`__ test-ipmi-hiomap:
+   Add read-two-blocks test
+-  `ea318dbe989f <https://github.com/open-power/skiboot/commit/ea318dbe989f>`__ test-ipmi-hiomap:
+   Add event-before-read
+-  `e4e76c8d2f6c <https://github.com/open-power/skiboot/commit/e4e76c8d2f6c>`__ test-ipmi-hiomap:
+   Add event-during-read test
+-  `e3497461c93b <https://github.com/open-power/skiboot/commit/e3497461c93b>`__ test-ipmi-hiomap:
+   Add write-one-block test
+-  `bf722c0ac561 <https://github.com/open-power/skiboot/commit/bf722c0ac561>`__ test-ipmi-hiomap:
+   Add write-two-blocks test
+-  `4cc5d420eeb4 <https://github.com/open-power/skiboot/commit/4cc5d420eeb4>`__ test-ipmi-hiomap:
+   Add event-before-write test
+-  `55b284e63e7d <https://github.com/open-power/skiboot/commit/55b284e63e7d>`__ test-ipmi-hiomap:
+   Add event-during-write test
+-  `da61b9e8dc1f <https://github.com/open-power/skiboot/commit/da61b9e8dc1f>`__ test-ipmi-hiomap:
+   Add erase-one-block test
+-  `a6f3245eda74 <https://github.com/open-power/skiboot/commit/a6f3245eda74>`__ test-ipmi-hiomap:
+   Add erase-two-blocks test
+-  `6432db36f0b1 <https://github.com/open-power/skiboot/commit/6432db36f0b1>`__ test-ipmi-hiomap:
+   Add event-before-erase test
+-  `7d666e226bd9 <https://github.com/open-power/skiboot/commit/7d666e226bd9>`__ test-ipmi-hiomap:
+   Add event-during-erase
+-  `d69b6567669b <https://github.com/open-power/skiboot/commit/d69b6567669b>`__ test-ipmi-hiomap:
+   Add bad-sequence test
+-  `4f9facdacef9 <https://github.com/open-power/skiboot/commit/4f9facdacef9>`__ test-ipmi-hiomap:
+   Add action-error test
+-  `b20312eb6ee5 <https://github.com/open-power/skiboot/commit/b20312eb6ee5>`__ test-ipmi-hiomap:
+   Add get-flash-info test
+-  `852d38850654 <https://github.com/open-power/skiboot/commit/852d38850654>`__ test-ipmi-hiomap:
+   Add get-info-error test
+-  `21bed4d078d9 <https://github.com/open-power/skiboot/commit/21bed4d078d9>`__ test-ipmi-hiomap:
+   Add get-flash-info-error test
+-  `05e1dabcb97d <https://github.com/open-power/skiboot/commit/05e1dabcb97d>`__ test-ipmi-hiomap:
+   Add create-read-window-error test
+-  `1c97112ba0b9 <https://github.com/open-power/skiboot/commit/1c97112ba0b9>`__ test-ipmi-hiomap:
+   Add create-write-window-error test
+-  `14959a69eeac <https://github.com/open-power/skiboot/commit/14959a69eeac>`__ test-ipmi-hiomap:
+   Add mark-dirty-error test
+-  `4de5c234518b <https://github.com/open-power/skiboot/commit/4de5c234518b>`__ test-ipmi-hiomap:
+   Add flush-error test
+-  `c38fccd32df0 <https://github.com/open-power/skiboot/commit/c38fccd32df0>`__ test-ipmi-hiomap:
+   Add ack-error test
+-  `5e1559af3394 <https://github.com/open-power/skiboot/commit/5e1559af3394>`__ test-ipmi-hiomap:
+   Add erase-error test
+-  `66b4b2e49d46 <https://github.com/open-power/skiboot/commit/66b4b2e49d46>`__ test-ipmi-hiomap:
+   Add ack-malformed tests
+-  `90ae8a0767ce <https://github.com/open-power/skiboot/commit/90ae8a0767ce>`__ test-ipmi-hiomap:
+   Add get-info-malformed tests
+-  `7ae038042951 <https://github.com/open-power/skiboot/commit/7ae038042951>`__ test-ipmi-hiomap:
+   Add get-flash-info-malformed tests
+-  `dba42852b0de <https://github.com/open-power/skiboot/commit/dba42852b0de>`__ test-ipmi-hiomap:
+   Add create-read-window-malformed tests
+-  `564d5e4ba7e4 <https://github.com/open-power/skiboot/commit/564d5e4ba7e4>`__ test-ipmi-hiomap:
+   Add create-write-window-malformed tests
+-  `b812fa3d16ce <https://github.com/open-power/skiboot/commit/b812fa3d16ce>`__ test-ipmi-hiomap:
+   Add mark-dirty-malformed tests
+-  `0ebf921c1a0a <https://github.com/open-power/skiboot/commit/0ebf921c1a0a>`__ test-ipmi-hiomap:
+   Add flush-malformed tests
+-  `4769cb645e20 <https://github.com/open-power/skiboot/commit/4769cb645e20>`__ test-ipmi-hiomap:
+   Add erase-malformed tests
+-  `35a6cbe24717 <https://github.com/open-power/skiboot/commit/35a6cbe24717>`__ test-ipmi-hiomap:
+   Add protocol-recovery-failure-ack test
+-  `ffe09809c035 <https://github.com/open-power/skiboot/commit/ffe09809c035>`__ test-ipmi-hiomap:
+   Add protocol-recovery-failure-get-info test
+-  `0e8e03ee34ba <https://github.com/open-power/skiboot/commit/0e8e03ee34ba>`__ test-ipmi-hiomap:
+   Add protocol-recovery-get-flash-info-failure test
+-  `75622fe738cd <https://github.com/open-power/skiboot/commit/75622fe738cd>`__ test-ipmi-hiomap:
+   Add read-one-block-twice test
+-  `1a8a5c352762 <https://github.com/open-power/skiboot/commit/1a8a5c352762>`__ test-ipmi-hiomap:
+   Add write-one-block-twice test
+-  `2d8b0043aa9d <https://github.com/open-power/skiboot/commit/2d8b0043aa9d>`__ test-ipmi-hiomap:
+   Add erase-one-block-twice test
+-  `381a7e6553d7 <https://github.com/open-power/skiboot/commit/381a7e6553d7>`__ ast-io: Rework
+   ast_sio_is_enabled() test sequence
+-  `6e7145a55afc <https://github.com/open-power/skiboot/commit/6e7145a55afc>`__ astbmc: Try IPMI
+   HIOMAP for P8 (again)
+-  `4ff0e16df304 <https://github.com/open-power/skiboot/commit/4ff0e16df304>`__ p8dtu: Enable HIOMAP
+   support
+-  `137b11c77feb <https://github.com/open-power/skiboot/commit/137b11c77feb>`__ p8dtu: Configure BMC
+   graphics
+-  `b7594b26929e <https://github.com/open-power/skiboot/commit/b7594b26929e>`__ astbmc: Enable IPMI
+   HIOMAP for AMI platforms
+
+Artem Senichev (1):
+
+-  `6ea075edd7af <https://github.com/open-power/skiboot/commit/6ea075edd7af>`__
+   platforms/astbmc/vesnin: Send list of PCI devices to BMC through IPMI
+
+Benjamin Herrenschmidt (12):
+
+-  `7db7c9f65229 <https://github.com/open-power/skiboot/commit/7db7c9f65229>`__ xive: Disable block
+   tracker
+-  `f737777b3438 <https://github.com/open-power/skiboot/commit/f737777b3438>`__ i2c: Fix
+   multiple-enqueue of the same request on NACK
+-  `ef79d0370737 <https://github.com/open-power/skiboot/commit/ef79d0370737>`__ i2c: Ensure ordering
+   between i2c_request_send() and completion
+-  `d3bb756b2d98 <https://github.com/open-power/skiboot/commit/d3bb756b2d98>`__ lock: Increase
+   con_suspend before \__try_lock
+-  `2925dd08c5e3 <https://github.com/open-power/skiboot/commit/2925dd08c5e3>`__ lock: Move code
+   around
+-  `2f2e0ee95a3d <https://github.com/open-power/skiboot/commit/2f2e0ee95a3d>`__ lock: Fix
+   interactions between lock dependency checker and stack checker
+-  `b78d823faf4f <https://github.com/open-power/skiboot/commit/b78d823faf4f>`__ cpu: Better output
+   when waiting for a very long job
+-  `cfecc3960c00 <https://github.com/open-power/skiboot/commit/cfecc3960c00>`__ phb4: Don’t try to
+   access non-existent PEST entries
+-  `0a087154ca4f <https://github.com/open-power/skiboot/commit/0a087154ca4f>`__ phb4: Handle
+   allocation errors in phb4_eeh_dump_regs()
+-  `9a83ab711ea3 <https://github.com/open-power/skiboot/commit/9a83ab711ea3>`__ phb4: Workaround PHB
+   errata with CFG write UR/CA errors
+-  `95f7b3b9698b <https://github.com/open-power/skiboot/commit/95f7b3b9698b>`__ nx: Don’t abort on
+   missing NX when using a QEMU machine
+-  `784799510c45 <https://github.com/open-power/skiboot/commit/784799510c45>`__ phb4: Update &
+   cleanup register definitions
+
+Cyril Bur (1):
+
+-  `0d96d56298d5 <https://github.com/open-power/skiboot/commit/0d96d56298d5>`__ phb4: Use the return
+   value of phb4_fenced() in phb4_get_diag_data()
+
+Cédric Le Goater (2):
+
+-  `8340a9642bba <https://github.com/open-power/skiboot/commit/8340a9642bba>`__ plat/qemu: use the
+   common OpenPOWER routines to initialize
+-  `2f0b6af6e01c <https://github.com/open-power/skiboot/commit/2f0b6af6e01c>`__ plat/qemu: fix
+   platform initialization when the BT device is not present
+
+Deb McLemore (2):
+
+-  `83f06eec281d <https://github.com/open-power/skiboot/commit/83f06eec281d>`__ p9dsu: Fix p9dsu
+   default variant
+-  `c8941393f452 <https://github.com/open-power/skiboot/commit/c8941393f452>`__ p9dsu: Fix p9dsu
+   slot tables
+
+Frederic Barrat (11):
+
+-  `f385ac321e0b <https://github.com/open-power/skiboot/commit/f385ac321e0b>`__ npu2-opencapi: Don’t
+   send commands to NPU when link is down
+-  `2d339446fc77 <https://github.com/open-power/skiboot/commit/2d339446fc77>`__ opal/hmi: Catch NPU2
+   HMIs for opencapi
+-  `3b9bc869a4fe <https://github.com/open-power/skiboot/commit/3b9bc869a4fe>`__ phb4: Disable 32-bit
+   MSI in capi mode
+-  `a800fa35b822 <https://github.com/open-power/skiboot/commit/a800fa35b822>`__ hw/p8-i2c: Fix i2c
+   request timeout
+-  `a92f432eae5b <https://github.com/open-power/skiboot/commit/a92f432eae5b>`__ npu2-opencapi:
+   Enable presence detection on ZZ
+-  `4d28576dffd5 <https://github.com/open-power/skiboot/commit/4d28576dffd5>`__
+   platform/witherspoon: Avoid harmless error message
+-  `cdaa6d1b2614 <https://github.com/open-power/skiboot/commit/cdaa6d1b2614>`__
+   platform/witherspoon: Fix opencapi lane-mask used on GPU0
+-  `ff376805bde5 <https://github.com/open-power/skiboot/commit/ff376805bde5>`__ npu2-opencapi: Log
+   extra information on link training failure
+-  `64d06b1feed1 <https://github.com/open-power/skiboot/commit/64d06b1feed1>`__ npu2-opencapi:
+   Detect if link trained in degraded mode
+-  `e1a8469a208c <https://github.com/open-power/skiboot/commit/e1a8469a208c>`__ npu2-opencapi: Log
+   ODL endpoint information register
+-  `1bd34e4c60c6 <https://github.com/open-power/skiboot/commit/1bd34e4c60c6>`__ i2c: Fix i2c request
+   hang during opal init if timers are not checked
+
+Jeremy Kerr (1):
+
+-  `01089cb8b4a2 <https://github.com/open-power/skiboot/commit/01089cb8b4a2>`__ docs/platforms: Add
+   S812L and S822L
+
+Joel Stanley (17):
+
+-  `052694653f13 <https://github.com/open-power/skiboot/commit/052694653f13>`__ Makefile: Remove
+   -mno-direct-move cflag
+-  `2e55c6b88451 <https://github.com/open-power/skiboot/commit/2e55c6b88451>`__ Makefile: remove
+   try-cflags on no-altivec and no-vsx
+-  `3c54a914e54d <https://github.com/open-power/skiboot/commit/3c54a914e54d>`__ README: Update Qemu
+   instructions
+-  `a3a8f7d0cf11 <https://github.com/open-power/skiboot/commit/a3a8f7d0cf11>`__ cpu: Quieten OS
+   endian switch messages
+-  `35e735ae24eb <https://github.com/open-power/skiboot/commit/35e735ae24eb>`__ ffspart: Add toc
+   test
+-  `ad2ca201f46c <https://github.com/open-power/skiboot/commit/ad2ca201f46c>`__ ffspart: Add test
+   for eraseblock size
+-  `b211d20162c8 <https://github.com/open-power/skiboot/commit/b211d20162c8>`__ opal-ci: Use
+   ubuntu:rolling for Ubuntu latest image
+-  `42fa2c4e472f <https://github.com/open-power/skiboot/commit/42fa2c4e472f>`__ travis: Coverity
+   fixed their SSL cert
+-  `c1e65823dc08 <https://github.com/open-power/skiboot/commit/c1e65823dc08>`__ ci: Update gcov
+   comment in Fedora 28
+-  `2033a6c3ebbe <https://github.com/open-power/skiboot/commit/2033a6c3ebbe>`__ ci: Disable GCOV
+   builds in ubuntu-latest
+-  `f08ad3307b8e <https://github.com/open-power/skiboot/commit/f08ad3307b8e>`__ ci: Use Ubuntu
+   latest config for Debian unstable
+-  `ee5b02aad960 <https://github.com/open-power/skiboot/commit/ee5b02aad960>`__ ci: Update Debian
+   unstable packages
+-  `c9d5184cd1a7 <https://github.com/open-power/skiboot/commit/c9d5184cd1a7>`__ ci: Add dtc
+   dependencies for rawhide
+-  `a8e1c697ae15 <https://github.com/open-power/skiboot/commit/a8e1c697ae15>`__ ci: Drop P8 mambo
+   from Debian unstable
+-  `1a07f8b147b7 <https://github.com/open-power/skiboot/commit/1a07f8b147b7>`__ ci: Add opal-utils
+   to Debian unstable
+-  `8da47e00d153 <https://github.com/open-power/skiboot/commit/8da47e00d153>`__ test: Update qemu
+   arguments to use bmc simulator
+-  `6932a97ce37b <https://github.com/open-power/skiboot/commit/6932a97ce37b>`__ ci: Bump Qemu
+   version
+
+Madhavan Srinivasan (1):
+
+-  `ae546e0b6d97 <https://github.com/open-power/skiboot/commit/ae546e0b6d97>`__ external/mambo:
+   Check for qtrace_utils.tcl before sourcing it
+
+Mahesh Salgaonkar (2):
+
+-  `1317448ddd1a <https://github.com/open-power/skiboot/commit/1317448ddd1a>`__ opal/hmi: Ignore
+   debug trigger inject core FIR.
+-  `c884f2d0cb92 <https://github.com/open-power/skiboot/commit/c884f2d0cb92>`__ opal/hmi: Handle
+   early HMIs on thread0 when secondaries are still in OPAL.
+
+Michael Ellerman (1):
+
+-  `caf0ff13c254 <https://github.com/open-power/skiboot/commit/caf0ff13c254>`__ doc: Add
+   documentation on supported platforms and CPUs
+
+Michael Neuling (4):
+
+-  `051da83b625d <https://github.com/open-power/skiboot/commit/051da83b625d>`__ phb4: Fix typo in
+   disable lane eq code
+-  `832cac15956c <https://github.com/open-power/skiboot/commit/832cac15956c>`__ mambo: Merge
+   PMEM_DISK and PMEM_VOLATILE code
+-  `80b7b37c63a5 <https://github.com/open-power/skiboot/commit/80b7b37c63a5>`__ init: Fix starting
+   stripped kernel
+-  `7dbf80d1db45 <https://github.com/open-power/skiboot/commit/7dbf80d1db45>`__ phb4: Generate
+   checkstop on AIB ECC corr/uncorr for DD2.0 parts
+
+Nicholas Piggin (12):
+
+-  `5bf03755a972 <https://github.com/open-power/skiboot/commit/5bf03755a972>`__ cpu: add
+   cpu_queue_job_on_node()
+-  `cb835dbdf875 <https://github.com/open-power/skiboot/commit/cb835dbdf875>`__ external/mambo:
+   conditionally source qtrace script
+-  `3e3ad77c1ced <https://github.com/open-power/skiboot/commit/3e3ad77c1ced>`__ hw/chiptod: test
+   QUIRK_NO_CHIPTOD in opal_resync_timebase
+-  `129e4408f7f4 <https://github.com/open-power/skiboot/commit/129e4408f7f4>`__ core/fast-reboot:
+   print the fast reboot disable reason
+-  `20126d267812 <https://github.com/open-power/skiboot/commit/20126d267812>`__ core/mem_region:
+   mambo reserve kernel payload areas
+-  `5118fc7fb0ea <https://github.com/open-power/skiboot/commit/5118fc7fb0ea>`__ skiboot.lds.S: move
+   read-write data after the end of symbol map
+-  `2649d663ede6 <https://github.com/open-power/skiboot/commit/2649d663ede6>`__ fast-reboot: verify
+   firmware “romem” checksum
+-  `2aa227cc0e18 <https://github.com/open-power/skiboot/commit/2aa227cc0e18>`__ core/lock: fix
+   timeout warning causing a deadlock false positive
+-  `527286706ab1 <https://github.com/open-power/skiboot/commit/527286706ab1>`__ core/lock: don’t set
+   bust_locks on lock error
+-  `12b74c455bed <https://github.com/open-power/skiboot/commit/12b74c455bed>`__ core/flash: NULL
+   pointer dereference fixes
+-  `c4230046ecd5 <https://github.com/open-power/skiboot/commit/c4230046ecd5>`__ core/device: NULL
+   pointer dereference fix
+-  `c51c7a5df601 <https://github.com/open-power/skiboot/commit/c51c7a5df601>`__ core/cpu: HID update
+   race
+
+Oliver O’Halloran (27):
+
+-  `2710351f76b9 <https://github.com/open-power/skiboot/commit/2710351f76b9>`__ hw/phb4: Print the
+   PEs in the EEH dump in hex
+-  `d1ac16801a38 <https://github.com/open-power/skiboot/commit/d1ac16801a38>`__ hw/phb4: Add a
+   helper to dump the PELT-V
+-  `3e23604be0cb <https://github.com/open-power/skiboot/commit/3e23604be0cb>`__ hw/phb4: Add helpers
+   to dump the IODA tables
+-  `7a7ff2d6281f <https://github.com/open-power/skiboot/commit/7a7ff2d6281f>`__ hw/phb4: Use
+   local_alloc for phb4 structures
+-  `55cab51c74a8 <https://github.com/open-power/skiboot/commit/55cab51c74a8>`__ mem_region: Merge
+   similar allocations when dumping
+-  `b465be797e86 <https://github.com/open-power/skiboot/commit/b465be797e86>`__ hw/p8-i2c: Print the
+   set error bits
+-  `7a311b9dec27 <https://github.com/open-power/skiboot/commit/7a311b9dec27>`__ pci: Clarify power
+   down logic
+-  `6c45dc0d04fc <https://github.com/open-power/skiboot/commit/6c45dc0d04fc>`__ core/pci: Print ‘PCI
+   Summary’ at PR_NOTICE
+-  `d76e4fb2665b <https://github.com/open-power/skiboot/commit/d76e4fb2665b>`__ zaius: Add a slot
+   table
+-  `c07958783dbc <https://github.com/open-power/skiboot/commit/c07958783dbc>`__ astbmc/slots: Add
+   SW_PLUGGABLE() macro
+-  `7a9eb51051f1 <https://github.com/open-power/skiboot/commit/7a9eb51051f1>`__ astbmc/slot: Add
+   \_add_slot_info()
+-  `ea4e422f6343 <https://github.com/open-power/skiboot/commit/ea4e422f6343>`__ zaius: Add slots for
+   the Barreleye G2 HDD rack
+-  `63ea33fb8fd0 <https://github.com/open-power/skiboot/commit/63ea33fb8fd0>`__ hdata/iohub: Fix
+   Cumulus Hub ID number
+-  `eb146fac9685 <https://github.com/open-power/skiboot/commit/eb146fac9685>`__ core/i2c: Move the
+   timeout field into i2c_request
+-  `bb27c7219dc6 <https://github.com/open-power/skiboot/commit/bb27c7219dc6>`__ hw/p8-i2c: Remove
+   p8_i2c_request structure
+-  `801462feb7d6 <https://github.com/open-power/skiboot/commit/801462feb7d6>`__ core/i2c: Remove bus
+   specific alloc and free callbacks
+-  `7665748f2f2e <https://github.com/open-power/skiboot/commit/7665748f2f2e>`__ nvram: Print how
+   long we waited for nvram
+-  `c94de0277cf6 <https://github.com/open-power/skiboot/commit/c94de0277cf6>`__ nvram: Fix
+   wait-for-nvram message
+-  `57a17c2f300e <https://github.com/open-power/skiboot/commit/57a17c2f300e>`__ xscom-utils/getsram:
+   Make it work on P9
+-  `6e524662ff77 <https://github.com/open-power/skiboot/commit/6e524662ff77>`__ xscom-utils: Rework
+   getsram
+-  `30ffd4c6a528 <https://github.com/open-power/skiboot/commit/30ffd4c6a528>`__ hdata: Explain what
+   the xscom node bus-frequency is
+-  `1355c312c308 <https://github.com/open-power/skiboot/commit/1355c312c308>`__ witherspoon: Rename
+   shared slot fixup function
+-  `dfaf471eb1a7 <https://github.com/open-power/skiboot/commit/dfaf471eb1a7>`__ hdata/i2c: Add
+   whitelisting for Host I2C devices
+-  `f88e37248463 <https://github.com/open-power/skiboot/commit/f88e37248463>`__ hdata/i2c: Make SPD
+   workaround more workaroundy
+-  `9597a12ef4b3 <https://github.com/open-power/skiboot/commit/9597a12ef4b3>`__ phb4: Check for RX
+   errors after link training
+-  `324365f3aa9b <https://github.com/open-power/skiboot/commit/324365f3aa9b>`__ libstb: Pass a
+   tpm_dev to tpm_i2c_request_send()
+-  `751cc33a2cfa <https://github.com/open-power/skiboot/commit/751cc33a2cfa>`__ platform/firenze:
+   Fix branch-to-null crash
+
+Prem Shanker Jha (3):
+
+-  `1a4aa1cb0349 <https://github.com/open-power/skiboot/commit/1a4aa1cb0349>`__ STOP API: API
+   conditionally supports 255 SCOM restore entries for each quad.
+-  `9000b6b187f9 <https://github.com/open-power/skiboot/commit/9000b6b187f9>`__ SCOM Restore: Handle
+   case of old HB and new STOP API case.
+-  `6ed87dbdd66b <https://github.com/open-power/skiboot/commit/6ed87dbdd66b>`__ STOP API: Changes
+   for SMF and SPR self save
+
+Rashmica Gupta (2):
+
+-  `0fa446cc21cb <https://github.com/open-power/skiboot/commit/0fa446cc21cb>`__ Add the other 7 ATSD
+   registers to the device tree.
+-  `b2e120fa5b0e <https://github.com/open-power/skiboot/commit/b2e120fa5b0e>`__ Add purging CPU L2
+   and L3 caches into NPU hreset.
+
+Reza Arbab (9):
+
+-  `c2493fd0ce30 <https://github.com/open-power/skiboot/commit/c2493fd0ce30>`__ npu2/hw-procedures:
+   Don’t open code NPU2_NTL_MISC_CFG2_BRICK_ENABLE
+-  `041d69bb1a70 <https://github.com/open-power/skiboot/commit/041d69bb1a70>`__ npu2/hw-procedures:
+   Enable parity and credit overflow checks
+-  `167fcb20aa97 <https://github.com/open-power/skiboot/commit/167fcb20aa97>`__ pci: Move logging
+   macros to pci.h
+-  `77f26507f1ea <https://github.com/open-power/skiboot/commit/77f26507f1ea>`__ phb4: Track PEC
+   index in dt and phb4 struct
+-  `06e997009945 <https://github.com/open-power/skiboot/commit/06e997009945>`__ npu2: Add
+   NPU2_SM_REG_OFFSET()
+-  `f43465a0ac6d <https://github.com/open-power/skiboot/commit/f43465a0ac6d>`__ npu2: Don’t open
+   code NPU2_RELAXED_ORDERING_CFG2
+-  `736d8b150f86 <https://github.com/open-power/skiboot/commit/736d8b150f86>`__ npu2: Add support
+   for relaxed-ordering mode
+-  `1c62f56b3351 <https://github.com/open-power/skiboot/commit/1c62f56b3351>`__ doc/opal-api:
+   Document npu2 relaxed ordering APIs
+-  `1ab11ac8b4b9 <https://github.com/open-power/skiboot/commit/1ab11ac8b4b9>`__ core/lock: Stop
+   drop_my_locks() from always causing abort
+
+Russell Currey (1):
+
+-  `19c8d728e86e <https://github.com/open-power/skiboot/commit/19c8d728e86e>`__ errorlog: Rename
+   PHB3 to just PHB
+
+Samuel Mendoza-Jonas (5):
+
+-  `3cd749c99791 <https://github.com/open-power/skiboot/commit/3cd749c99791>`__ Recognise signed
+   VERSION partition
+-  `714be69223cc <https://github.com/open-power/skiboot/commit/714be69223cc>`__ core/flash: Emit a
+   warning if Skiboot version doesn’t match
+-  `c0375a62396d <https://github.com/open-power/skiboot/commit/c0375a62396d>`__ core/flash: Ignore
+   prefix when comparing versions.
+-  `4b92a1b80f6d <https://github.com/open-power/skiboot/commit/4b92a1b80f6d>`__ libflash: Restore
+   blocklevel tests
+-  `e24771081422 <https://github.com/open-power/skiboot/commit/e24771081422>`__ libflash: Don’t
+   merge ECC-protected ranges
+
+Shilpasri G Bhat (2):
+
+-  `05dc67bf4f3d <https://github.com/open-power/skiboot/commit/05dc67bf4f3d>`__ opal-prd: hservice:
+   Enable hservice->wakeup() in BMC
+-  `0fe8ecd59fc0 <https://github.com/open-power/skiboot/commit/0fe8ecd59fc0>`__ powercap: occ: Fix
+   the powercapping range allowed for user
+
+Stewart Smith (62):
+
+-  `06808a037d44 <https://github.com/open-power/skiboot/commit/06808a037d44>`__ fast-reboot:
+   parallel memory clearing
+-  `21f540e8e51e <https://github.com/open-power/skiboot/commit/21f540e8e51e>`__ Scan PCI and clear
+   memory simultaneously
+-  `4757519c697e <https://github.com/open-power/skiboot/commit/4757519c697e>`__ mem_region: log
+   region name on mem_alloc failure
+-  `2c30ddb93baf <https://github.com/open-power/skiboot/commit/2c30ddb93baf>`__ mem_check(): Correct
+   alignment assumptions
+-  `13e9a66a7b39 <https://github.com/open-power/skiboot/commit/13e9a66a7b39>`__ Fixup unit tests for
+   cpu_queue_job() in mem_region.c
+-  `f651e8eb56e2 <https://github.com/open-power/skiboot/commit/f651e8eb56e2>`__ Fixup pflash build
+   for ast refactor
+-  `c1d43fc84a30 <https://github.com/open-power/skiboot/commit/c1d43fc84a30>`__ skiboot 6.0.6
+   release notes
+-  `25f7266f736c <https://github.com/open-power/skiboot/commit/25f7266f736c>`__ core/cpu.c: assert
+   pir is sane before using
+-  `7e529767704b <https://github.com/open-power/skiboot/commit/7e529767704b>`__ skiboot 6.0.7
+   release notes
+-  `b6605667cf80 <https://github.com/open-power/skiboot/commit/b6605667cf80>`__ don’t fail fatally
+   if qtrace can’t be loaded
+-  `f3d801c01f97 <https://github.com/open-power/skiboot/commit/f3d801c01f97>`__ skiboot 6.0.8
+   release notes
+-  `9ff660e21834 <https://github.com/open-power/skiboot/commit/9ff660e21834>`__ Qemu: don’t print
+   PR_WARNING on qemu defining rtc/uart
+-  `084e37bab1cf <https://github.com/open-power/skiboot/commit/084e37bab1cf>`__ Use $() rather than
+   backticks in all shell
+-  `2485be65e166 <https://github.com/open-power/skiboot/commit/2485be65e166>`__ clang:
+   -Wno-error=ignored-attributes
+-  `74116e3e37cf <https://github.com/open-power/skiboot/commit/74116e3e37cf>`__
+   xscom-utils/adu_scoms.py: run 2to3 over it
+-  `f83568436527 <https://github.com/open-power/skiboot/commit/f83568436527>`__ TEMPORARY HACK:
+   Disable verifying VERSION
+-  `da773b275e62 <https://github.com/open-power/skiboot/commit/da773b275e62>`__ SBE-p8: Do all sbe
+   timer update with xscom lock held
+-  `7c8e1c6f89f3 <https://github.com/open-power/skiboot/commit/7c8e1c6f89f3>`__ Add fast-reboot
+   property to /ibm,opal DT node
+-  `aeb366970e0c <https://github.com/open-power/skiboot/commit/aeb366970e0c>`__ Actually add
+   /ibm,opal/fast-reboot property
+-  `cc4de28374c7 <https://github.com/open-power/skiboot/commit/cc4de28374c7>`__ opal-ci: Build old
+   dtc version for fedora 28
+-  `2d68e6fa5822 <https://github.com/open-power/skiboot/commit/2d68e6fa5822>`__ gcov: Fix building
+   with GCC8
+-  `8fba29a2b5e5 <https://github.com/open-power/skiboot/commit/8fba29a2b5e5>`__ core/device: Add
+   test for duplicate nodes with dt_attach_root()
+-  `8fd95036cdd8 <https://github.com/open-power/skiboot/commit/8fd95036cdd8>`__ core/device: add
+   test for dt_new() a duplicate node
+-  `51c35e372831 <https://github.com/open-power/skiboot/commit/51c35e372831>`__ core/device:
+   increase test coverage for dt_new_addr and dt_new_2addr
+-  `c5d71815288c <https://github.com/open-power/skiboot/commit/c5d71815288c>`__ core/device: Test
+   dt_new_check()
+-  `9b9be42009e1 <https://github.com/open-power/skiboot/commit/9b9be42009e1>`__ Quieten ‘warnings’
+   now that SIO is disabled
+-  `4b8cc05a9451 <https://github.com/open-power/skiboot/commit/4b8cc05a9451>`__ Revert “TEMPORARY
+   HACK: Disable verifying VERSION”
+-  `b6de35b6896a <https://github.com/open-power/skiboot/commit/b6de35b6896a>`__ hiomap: free ipmi
+   message in callback
+-  `d513609b4f48 <https://github.com/open-power/skiboot/commit/d513609b4f48>`__ travis/ci: rework
+   Dockerfiles to produce build artifacts
+-  `8d58ee17ea20 <https://github.com/open-power/skiboot/commit/8d58ee17ea20>`__ hiomap: fix missing
+   newline at end of ‘Flushing writes’ prlog()
+-  `d10862e40cd8 <https://github.com/open-power/skiboot/commit/d10862e40cd8>`__ Run pollers in
+   time_wait() when not booting
+-  `3dd480db1a69 <https://github.com/open-power/skiboot/commit/3dd480db1a69>`__ skiboot v6.0.10
+   release notes
+-  `594cfacf0e41 <https://github.com/open-power/skiboot/commit/594cfacf0e41>`__ CI: Bump the Qemu we
+   build for CI testing
+-  `52725306f495 <https://github.com/open-power/skiboot/commit/52725306f495>`__ skiboot 6.0.11
+   release notes
+-  `971a1a0a620a <https://github.com/open-power/skiboot/commit/971a1a0a620a>`__ gcov: link in
+   ctors\* as newer GCC doesn’t group them all
+-  `606a5a3d44e3 <https://github.com/open-power/skiboot/commit/606a5a3d44e3>`__ hiomap: quieten
+   warning on failing to move a window
+-  `30f8a6006de4 <https://github.com/open-power/skiboot/commit/30f8a6006de4>`__ skiboot v6.0.13
+   release notes
+-  `28bf1faf44cd <https://github.com/open-power/skiboot/commit/28bf1faf44cd>`__ ipmi: Reduce
+   ipmi_queue_msg_sync() polling loop time to 10ms
+-  `8a2f8a3c12c6 <https://github.com/open-power/skiboot/commit/8a2f8a3c12c6>`__ skiboot v6.2-rc1
+   release notes
+-  `50ea35c2d078 <https://github.com/open-power/skiboot/commit/50ea35c2d078>`__ Warn on long OPAL
+   calls
+-  `b547df61bdad <https://github.com/open-power/skiboot/commit/b547df61bdad>`__ hdata/test:
+   workaround dtc bugs
+-  `acb0f2160500 <https://github.com/open-power/skiboot/commit/acb0f2160500>`__ skiboot v6.0.14
+   release notes
+-  `87b436c32ac8 <https://github.com/open-power/skiboot/commit/87b436c32ac8>`__ libpore: Sync p8
+   files, remove erroneous “IBM Confidential”
+-  `37bce07eea2b <https://github.com/open-power/skiboot/commit/37bce07eea2b>`__ Don’t warn on “long”
+   OPAL_RESYNC_TIMEBASE calls
+-  `10497d05169f <https://github.com/open-power/skiboot/commit/10497d05169f>`__ skiboot v6.2-rc2
+   release notes
+-  `5ebb15d265bd <https://github.com/open-power/skiboot/commit/5ebb15d265bd>`__ core/cpu.c: avoid
+   container_of(NULL) in next_cpu()
+-  `88bf48a2a5de <https://github.com/open-power/skiboot/commit/88bf48a2a5de>`__ Change ifdef around
+   dump_fdt() to shut up static analysis
+-  `685f0786a935 <https://github.com/open-power/skiboot/commit/685f0786a935>`__ mem_region.c: Move
+   ifdef for MEM_POISON to shut up static analysis
+-  `0714735f0b85 <https://github.com/open-power/skiboot/commit/0714735f0b85>`__ opal_trace_entry:
+   Move ifdef around to shut up static analysis
+-  `95f587417cd9 <https://github.com/open-power/skiboot/commit/95f587417cd9>`__
+   opal_sync_host_reboot: clarify when we return OPAL_BUSY_EVENT
+-  `99fc78dbee4a <https://github.com/open-power/skiboot/commit/99fc78dbee4a>`__ vpd: Force static
+   analysis to not think about NULL term strings
+-  `babd5a27dc06 <https://github.com/open-power/skiboot/commit/babd5a27dc06>`__ hdata/iohub.c:
+   remove condition that was always true
+-  `e35f1cb63c1b <https://github.com/open-power/skiboot/commit/e35f1cb63c1b>`__ hw/bt.c: Move some
+   debug ifdef to make static analysis happy
+-  `eb0226273239 <https://github.com/open-power/skiboot/commit/eb0226273239>`__ Revert “npu2: Allow
+   ATSD for LPAR other than 0”
+-  `1534ab1dca13 <https://github.com/open-power/skiboot/commit/1534ab1dca13>`__ libflash/file:
+   greatly increase perf of file_erase()
+-  `7ac3a7793190 <https://github.com/open-power/skiboot/commit/7ac3a7793190>`__ ffspart: Increase
+   MAX_LINE to above PATH_MAX
+-  `f12bdee4d0b1 <https://github.com/open-power/skiboot/commit/f12bdee4d0b1>`__ ffspart: Support
+   flashing already ECC protected images
+-  `ce8417b8c4e0 <https://github.com/open-power/skiboot/commit/ce8417b8c4e0>`__ opal-ci: Drop
+   fedora27, add fedora29
+-  `8b9877f94428 <https://github.com/open-power/skiboot/commit/8b9877f94428>`__ skiboot v6.2 release
+   notes
+-  `6bb72e8f7b9d <https://github.com/open-power/skiboot/commit/6bb72e8f7b9d>`__ firmware-versions:
+   Add test case for parsing VERSION
+-  `0647f2a2c4eb <https://github.com/open-power/skiboot/commit/0647f2a2c4eb>`__ skiboot v6.2.1
+   release notes
+-  `428cb852e3a0 <https://github.com/open-power/skiboot/commit/428cb852e3a0>`__ qemu: bt device
+   isn’t always hanging off /
+
+Vaibhav Jain (14):
+
+-  `3754dba77ef5 <https://github.com/open-power/skiboot/commit/3754dba77ef5>`__ phb4: Reallocate
+   PEC2 DMA-Read engines to improve GPU-Direct bandwidth
+-  `5690c5a8980f <https://github.com/open-power/skiboot/commit/5690c5a8980f>`__ doc: Add a man page
+   for OPAL_PCI_SET_PHB_CAPI_MODE
+-  `ef9caad57e59 <https://github.com/open-power/skiboot/commit/ef9caad57e59>`__ phb4/capp: Update
+   DMA read engines set in APC_FSM_READ_MASK based on link-width
+-  `ec954f764efe <https://github.com/open-power/skiboot/commit/ec954f764efe>`__ capp: Fix the capp
+   recovery timeout comparison
+-  `1520d6a1e3aa <https://github.com/open-power/skiboot/commit/1520d6a1e3aa>`__ phb4: Don’t probe a
+   PHB if its garded
+-  `5f728c53d42c <https://github.com/open-power/skiboot/commit/5f728c53d42c>`__ opal: use
+   for_each_safe to iterate over opal_syncers
+-  `a6fca4819fd1 <https://github.com/open-power/skiboot/commit/a6fca4819fd1>`__ nvram: Fix a
+   possible NULL pointer de-ref in nvram_query_eq()
+-  `09fabd68f732 <https://github.com/open-power/skiboot/commit/09fabd68f732>`__ phb4: Reset pfir and
+   nfir if new errors reported during ETU reset
+-  `0f7868260709 <https://github.com/open-power/skiboot/commit/0f7868260709>`__ phb4: Re-factor
+   phb4_fenced() and introduce phb4_dump_pec_err_regs()
+-  `2d7419274dfa <https://github.com/open-power/skiboot/commit/2d7419274dfa>`__ phb4/capp: Use link
+   width to allocate STQ engines to CAPP
+-  `d5ebd5519dcd <https://github.com/open-power/skiboot/commit/d5ebd5519dcd>`__ phb4/capp: Update
+   the expected Eye-catcher for CAPP ucode lid
+-  `c8e1d61ae2c9 <https://github.com/open-power/skiboot/commit/c8e1d61ae2c9>`__ phb4: Enable PHB
+   MMIO-0/1 Bars only when mmio window exists
+-  `7cef472ed1fe <https://github.com/open-power/skiboot/commit/7cef472ed1fe>`__ opal/hmi: Wakeup the
+   cpu before reading core_fir
+-  `999246716d2d <https://github.com/open-power/skiboot/commit/999246716d2d>`__ phb4/capp: Only
+   reset FIR bits that cause capp machine check
+
+Vaidyanathan Srinivasan (1):
+
+-  `df5da053c459 <https://github.com/open-power/skiboot/commit/df5da053c459>`__ core/cpu: Fix memory
+   allocation for job array
+
+Vasant Hegde (19):
+
+-  `ff576aa8187b <https://github.com/open-power/skiboot/commit/ff576aa8187b>`__ opal-prd: Fix
+   opal-prd crash
+-  `15880d514e1f <https://github.com/open-power/skiboot/commit/15880d514e1f>`__ core/cpu: Call
+   memset with proper cpu_thread offset
+-  `dd2dacf8ee06 <https://github.com/open-power/skiboot/commit/dd2dacf8ee06>`__ hdata: Fix dtc
+   warnings
+-  `9d9395c3d542 <https://github.com/open-power/skiboot/commit/9d9395c3d542>`__ hdata: Make sure FW
+   feature name is not empty
+-  `2fba868b5380 <https://github.com/open-power/skiboot/commit/2fba868b5380>`__ fsp/surv: Improve
+   log message
+-  `70a7a3fdfa36 <https://github.com/open-power/skiboot/commit/70a7a3fdfa36>`__ hdata: Cleanup
+   get_hb_reserved_mem
+-  `50d508c3cd62 <https://github.com/open-power/skiboot/commit/50d508c3cd62>`__ hdata: Make sure
+   reserved node name starts with “ibm,”
+-  `904623dbbda4 <https://github.com/open-power/skiboot/commit/904623dbbda4>`__ FSP: Improve
+   Reset/Reload log message
+-  `c94b5a9e9c32 <https://github.com/open-power/skiboot/commit/c94b5a9e9c32>`__ hdata/i2c: Skip
+   unknown device type
+-  `ab10b2e62e58 <https://github.com/open-power/skiboot/commit/ab10b2e62e58>`__ core/ipmi: Improve
+   error message
+-  `d07a5622a9e1 <https://github.com/open-power/skiboot/commit/d07a5622a9e1>`__ core/opal: Print PIR
+   value in exit path
+-  `cadaf7c36e83 <https://github.com/open-power/skiboot/commit/cadaf7c36e83>`__ libflash/ecc: Fix
+   compilation warning
+-  `2e2bf87b42f7 <https://github.com/open-power/skiboot/commit/2e2bf87b42f7>`__ ipmi/power: Fix
+   system reboot issue
+-  `73fa7be132a4 <https://github.com/open-power/skiboot/commit/73fa7be132a4>`__ hw/bt: Fix message
+   retry handler
+-  `44f90875712f <https://github.com/open-power/skiboot/commit/44f90875712f>`__ hw/bt: Add backend
+   interface to disable ipmi message retry option
+-  `788c9ac2b926 <https://github.com/open-power/skiboot/commit/788c9ac2b926>`__ hw/bt: Introduce
+   separate list for synchronous messages
+-  `28f5fe3a6edc <https://github.com/open-power/skiboot/commit/28f5fe3a6edc>`__ core/ipmi: Add ipmi
+   sync messages to top of the list
+-  `af5c2978dbcd <https://github.com/open-power/skiboot/commit/af5c2978dbcd>`__ hw/bt: Do not
+   disable ipmi message retry during OPAL boot
+-  `5da21e2cc79d <https://github.com/open-power/skiboot/commit/5da21e2cc79d>`__ skiboot v6.2.2
+   release notes
+
+Package: vesnin-xml
+-------------------
+
+`Repository <https://github.com/open-power/vesnin-xml>`__
+
+.. _patches-2.2-15:
+
+Patches
+~~~~~~~
+
+.. _commits-2.2-15:
+
+Commits
+~~~~~~~
+
+Artem Senichev (7):
+
+-  `118e0a59c1a9 <https://github.com/open-power/vesnin-xml/commit/118e0a59c1a9>`__ Disable hidden
+   error logs in production mode
+-  `4fb3a4b928a9 <https://github.com/open-power/vesnin-xml/commit/4fb3a4b928a9>`__ Add multiple nest
+   frequencies support
+-  `58749a257a67 <https://github.com/open-power/vesnin-xml/commit/58749a257a67>`__ Human readable
+   xml (pretty formatting)
+-  `3eff045c6be2 <https://github.com/open-power/vesnin-xml/commit/3eff045c6be2>`__ Renumbering
+   membuf FRU names
+-  `bff39ab219bb <https://github.com/open-power/vesnin-xml/commit/bff39ab219bb>`__ Renumbering DIMM
+   FRU names
+-  `e56f1665ae9d <https://github.com/open-power/vesnin-xml/commit/e56f1665ae9d>`__ Remove vesnin.rpt
+   file
+-  `c994a1815bcb <https://github.com/open-power/vesnin-xml/commit/c994a1815bcb>`__ Remove unused
+   temperature sensor ID for CPU cores
+
+Package: witherspoon-xml
+------------------------
+
+`Repository <https://github.com/open-power/witherspoon-xml>`__
+
+.. _patches-2.2-16:
+
+Patches
+~~~~~~~
+
+.. _commits-2.2-16:
+
+Commits
+~~~~~~~
+
+Erich Hauptli (3):
+
+-  `c488a6234d09 <https://github.com/open-power/witherspoon-xml/commit/c488a6234d09>`__ Added value
+   to TPM FRU ID
+-  `dce824c12588 <https://github.com/open-power/witherspoon-xml/commit/dce824c12588>`__ Backing out
+   TPM FRU ID
+-  `e76c2fc5aeb5 <https://github.com/open-power/witherspoon-xml/commit/e76c2fc5aeb5>`__ Adding in
+   TPM FRU info
+
+Matt Raybuck (1):
+
+-  `f7cffdbe00f6 <https://github.com/open-power/witherspoon-xml/commit/f7cffdbe00f6>`__ Correct
+   invalid chiplet ids for MCS units (#80)
+
+sannerd (1):
+
+-  `c8bca533fcea <https://github.com/open-power/witherspoon-xml/commit/c8bca533fcea>`__ Default
+   Spectre/Meltdown HW Inits to Kernel mode (#78)
+
+Package: zaius-xml
+------------------
+
+`Repository <https://github.com/open-power/zaius-xml>`__
+
+.. _patches-2.2-17:
+
+Patches
+~~~~~~~
+
+.. _commits-2.2-17:
+
+Commits
+~~~~~~~
+
+Adrian Barrera (1):
+
+-  `40bf092f8f82 <https://github.com/open-power/zaius-xml/commit/40bf092f8f82>`__ Update GARD
+   settings per RAS testing
+
+Matt Raybuck (1):
+
+-  `6f6b5efd3279 <https://github.com/open-power/zaius-xml/commit/6f6b5efd3279>`__ Correct invalid
+   chiplet ids for MCS units
diff --git a/doc/release-notes/v2.3-rc1.rst b/doc/release-notes/v2.3-rc1.rst
new file mode 100644
index 0000000..07cd4a9
--- /dev/null
+++ b/doc/release-notes/v2.3-rc1.rst
@@ -0,0 +1,1618 @@
+Release Notes for OpenPower Firmware v2.3-rc1
+=============================================
+
+op-build v2.3-rc1 was released on Wednesday April 3rd, 2019. It will become the new stable release
+of op-build, following on from v2.2, first released on March 9th, 2019.
+
+The op-build v2.3 release cycle is a uniquely shorter one as we’ve been working on getting ready to
+have a more reliably predictable release schedule going for future releases.
+
+op-build v2.3-rc1 contains all the fixes as of op-build v2.0.15, and we expect to continue to do
+stable 2.0.y releases of v2.0 into the forseeable future.
+
+Please note that this is a RELEASE CANDIDATE and not the final v2.3 release. We expect to do a final
+v2.3 tagged release early April 2019. Please test this release candidate heavily!
+
+Known Bugs
+----------
+
+We have two known bugs that are currently release blockers for the final v2.3.
+
+-  There exists a bug where boot devices *may* not show up in petitboot until “Rescan Devices” is
+   selected.
+-  There exists a bug where Control-C behaviour in the petitboot shell has changed, which may cause
+   some test scripts to get confused.
+
+Removed platforms
+-----------------
+
+-  openpower_mambo (superseded by the generic ‘opal’ defconfig, aimed towards use with simulators)
+-  witherspoon_dev (superseded by just using the generic witherspoon defconfig)
+
+New platforms
+-------------
+
+-  opal
+
+Updated Packages
+----------------
+
++----------------+------------------+---------------+---------------------------------------------+
+| Package        | Old Version      | New Version   | Platforms                                   |
++================+==================+===============+=============================================+
+| ethtool        | 4.16             | 4.19          | witherspoon, p9dsu, zaius, habanero,        |
+|                |                  |               | firenze, garrison, barreleye, pseries,      |
+|                |                  |               | firestone, palmetto, vesnin, zz, romulus    |
++----------------+------------------+---------------+---------------------------------------------+
+| eudev          | 3.2.5            | 3.2.7         | witherspoon, p9dsu, zaius, habanero,        |
+|                |                  |               | firenze, garrison, barreleye, pseries,      |
+|                |                  |               | firestone, palmetto, vesnin, zz, romulus    |
++----------------+------------------+---------------+---------------------------------------------+
+| glibc          | 2.28-69-g1e5c530 | 2.28-94-g4aef | witherspoon, p9dsu, zaius, habanero,        |
+|                | 3                | f335          | firenze, garrison, barreleye, pseries,      |
+|                |                  |               | firestone, palmetto, vesnin, zz, romulus    |
++----------------+------------------+---------------+---------------------------------------------+
+| hcode          | hw022319a.930    | hw032919a.940 | witherspoon, p9dsu, zaius, romulus          |
++----------------+------------------+---------------+---------------------------------------------+
+| hostboot       | 37e67698be566    | ca03643dd893  | witherspoon, p9dsu, zaius, romulus          |
++----------------+------------------+---------------+---------------------------------------------+
+| hostboot-p8    | a3b0cb929cbf2    | c2074ad87972  | habanero, garrison, barreleye, firestone,   |
+|                |                  |               | palmetto, vesnin                            |
++----------------+------------------+---------------+---------------------------------------------+
+| i2c-tools      | 4.0              | 4.1           | pseries, vesnin                             |
++----------------+------------------+---------------+---------------------------------------------+
+| linux          | 4.19.26          | 4.19.30       | witherspoon, p9dsu, zaius, habanero,        |
+|                |                  |               | firenze, garrison, barreleye, pseries,      |
+|                |                  |               | firestone, palmetto, vesnin, zz, romulus    |
++----------------+------------------+---------------+---------------------------------------------+
+| linux-firmware | 44d4fca9922a     | 1baa34868b2c  | witherspoon, p9dsu, zaius, habanero,        |
+|                |                  |               | firenze, garrison, barreleye, pseries,      |
+|                |                  |               | firestone, palmetto, vesnin, zz, romulus    |
++----------------+------------------+---------------+---------------------------------------------+
+| linux-headers  | 4.19.26          | 4.19.30       | witherspoon, p9dsu, zaius, habanero,        |
+|                |                  |               | firenze, garrison, barreleye, pseries,      |
+|                |                  |               | firestone, palmetto, vesnin, zz, romulus    |
++----------------+------------------+---------------+---------------------------------------------+
+| lvm2           | 2.02.180         | 2.02.183      | witherspoon, p9dsu, zaius, habanero,        |
+|                |                  |               | firenze, garrison, barreleye, pseries,      |
+|                |                  |               | firestone, palmetto, vesnin, zz, romulus    |
++----------------+------------------+---------------+---------------------------------------------+
+| machine-xml    | c994a1815bcb     | f44f8808fc7c  | vesnin                                      |
++----------------+------------------+---------------+---------------------------------------------+
+| machine-xml    | f7cffdbe00f6     | e3e9aef82673  | witherspoon                                 |
++----------------+------------------+---------------+---------------------------------------------+
+| occ            | 12c8088a32c5     | 58e422dede59  | witherspoon, p9dsu, zaius, romulus          |
++----------------+------------------+---------------+---------------------------------------------+
+| openpower-pnor | 0aeae23bd0c6     | 2ea669b4aa57  | witherspoon, p9dsu, zaius, habanero,        |
+|                |                  |               | garrison, barreleye, firestone, palmetto,   |
+|                |                  |               | vesnin, romulus                             |
++----------------+------------------+---------------+---------------------------------------------+
+| sbe            | 2e253cebdaff     | 1410677b65e4  | witherspoon, p9dsu, zaius, romulus          |
++----------------+------------------+---------------+---------------------------------------------+
+| skiboot        | v6.2.2           | v6.3-rc1      | witherspoon, p9dsu, zaius, habanero,        |
+|                |                  |               | firenze, garrison, barreleye, pseries,      |
+|                |                  |               | firestone, palmetto, vesnin, zz, romulus    |
++----------------+------------------+---------------+---------------------------------------------+
+| util-linux     | 2.32.1           | 2.33          | witherspoon, p9dsu, zaius, habanero,        |
+|                |                  |               | firenze, garrison, barreleye, pseries,      |
+|                |                  |               | firestone, palmetto, vesnin, zz, romulus    |
++----------------+------------------+---------------+---------------------------------------------+
+
+Package: hcode
+--------------
+
+`Repository <https://github.com/open-power/hcode>`__
+
+Patches
+~~~~~~~
+
+Commits
+~~~~~~~
+
+Chris Cain (1):
+
+-  `3330dbdae60f <https://github.com/open-power/hcode/commit/3330dbdae60f>`__ Proposed structure
+   change for OCC
+
+Prasad Bg Ranganath (1):
+
+-  `0dd012c7f495 <https://github.com/open-power/hcode/commit/0dd012c7f495>`__ PPB: Refactor pstate
+   parameter block
+
+hostboot (13):
+
+-  `cc5c034aa468 <https://github.com/open-power/hcode/commit/cc5c034aa468>`__ Release tag
+   information updated for hw030819a.940
+-  `96bdad1dc08c <https://github.com/open-power/hcode/commit/96bdad1dc08c>`__ Release tag
+   information updated for hw030919a.940
+-  `b4bd4e7e0e75 <https://github.com/open-power/hcode/commit/b4bd4e7e0e75>`__ Release tag
+   information updated for hw031219a.940
+-  `b31c43a6c27e <https://github.com/open-power/hcode/commit/b31c43a6c27e>`__ Release tag
+   information updated for hw031319a.940
+-  `3d18592a7e3a <https://github.com/open-power/hcode/commit/3d18592a7e3a>`__ Release tag
+   information updated for hw031619a.940
+-  `4ffb0e57df57 <https://github.com/open-power/hcode/commit/4ffb0e57df57>`__ Release tag
+   information updated for hw031919a.940
+-  `ca318ee145bf <https://github.com/open-power/hcode/commit/ca318ee145bf>`__ Release tag
+   information updated for hw032019b.940
+-  `21fb83a0aec7 <https://github.com/open-power/hcode/commit/21fb83a0aec7>`__ Release tag
+   information updated for hw032119a.940
+-  `f722a49ec15b <https://github.com/open-power/hcode/commit/f722a49ec15b>`__ Release tag
+   information updated for hw032219a.940
+-  `b072dcdd5a9a <https://github.com/open-power/hcode/commit/b072dcdd5a9a>`__ Release tag
+   information updated for hw032319a.940
+-  `33eeb29bcbf6 <https://github.com/open-power/hcode/commit/33eeb29bcbf6>`__ Release tag
+   information updated for hw032619a.940
+-  `2c76877c7370 <https://github.com/open-power/hcode/commit/2c76877c7370>`__ Release tag
+   information updated for hw032719a.940
+-  `0dbac1b4fde0 <https://github.com/open-power/hcode/commit/0dbac1b4fde0>`__ Release tag
+   information updated for hw032919a.940
+
+Package: hostboot
+-----------------
+
+`Repository <https://github.com/open-power/hostboot>`__
+
+.. _v2.3-rc1-patches-1:
+
+Patches
+~~~~~~~
+
+-  `0001-Fix-RC09-ODT-errors-on-Nimbus-dual-drop-configs.patch <https://github.com/open-power/op-build/tree/HEAD/openpower/package/hostboot/0001-Fix-RC09-ODT-errors-on-Nimbus-dual-drop-configs.patch>`__
+-  `0007-Disable-warnings-that-crop-up-a-lot-with-GCC6.patch <https://github.com/open-power/op-build/tree/HEAD/openpower/package/hostboot/0007-Disable-warnings-that-crop-up-a-lot-with-GCC6.patch>`__
+-  `hostboot-1020-Revert-jgr17071200-Removed-pdwn-settings.patch <https://github.com/open-power/op-build/tree/HEAD/openpower/package/hostboot/hostboot-1020-Revert-jgr17071200-Removed-pdwn-settings.patch>`__
+
+.. _v2.3-rc1-commits-1:
+
+Commits
+~~~~~~~
+
+Alvin Wang (7):
+
+-  `49a169abfa3d <https://github.com/open-power/hostboot/commit/49a169abfa3d>`__ Adds mcbist empty
+   files
+-  `517ec60ee50d <https://github.com/open-power/hostboot/commit/517ec60ee50d>`__ Adds mcbist empty
+   files
+-  `f50a11628b1c <https://github.com/open-power/hostboot/commit/f50a11628b1c>`__ Change generic
+   mcbist file name
+-  `4984330e0ef9 <https://github.com/open-power/hostboot/commit/4984330e0ef9>`__ Change generic
+   mcbist file name
+-  `d7910f680f5c <https://github.com/open-power/hostboot/commit/d7910f680f5c>`__ Add exp_scrub empty
+   files
+-  `8765bcd2cc17 <https://github.com/open-power/hostboot/commit/8765bcd2cc17>`__ Add empty files for
+   power_theraml
+-  `75f8277bbc20 <https://github.com/open-power/hostboot/commit/75f8277bbc20>`__ Add empty
+   file(accessor_wrapper.H) for power_theraml
+
+Andre A. Marin (4):
+
+-  `c368037cb36e <https://github.com/open-power/hostboot/commit/c368037cb36e>`__ Update phy_pharams
+   structure, tests, and exp attrs
+-  `ee476c6abdad <https://github.com/open-power/hostboot/commit/ee476c6abdad>`__ Update phy_pharams
+   structure, tests, and exp attrs
+-  `d679e6d649ee <https://github.com/open-power/hostboot/commit/d679e6d649ee>`__ Add
+   attr_engine_traits empty files for HB to mirror
+-  `b5e9f70eb916 <https://github.com/open-power/hostboot/commit/b5e9f70eb916>`__ Update phy_pharams
+   structure, tests, and exp attrs
+
+Andre Marin (6):
+
+-  `877a032b90cd <https://github.com/open-power/hostboot/commit/877a032b90cd>`__ Fix SPD cas latency
+   assert bug
+-  `9e1906f95ba3 <https://github.com/open-power/hostboot/commit/9e1906f95ba3>`__ Add
+   std::remove_all_extends to HB STL library
+-  `2dcce4bcccc2 <https://github.com/open-power/hostboot/commit/2dcce4bcccc2>`__ Add L1 for
+   p9a_mss_bulk_pwr_throttles and p9a_mss_utils_to_throttle
+-  `1c169fc8be5a <https://github.com/open-power/hostboot/commit/1c169fc8be5a>`__ Add attribute
+   engine algorithm for eff_config and pre_eff_config
+-  `018a009896d8 <https://github.com/open-power/hostboot/commit/018a009896d8>`__ Add attribute
+   engine algorithm for eff_config and pre_eff_config
+-  `e5a493e300da <https://github.com/open-power/hostboot/commit/e5a493e300da>`__ Add attribute
+   engine algorithm for eff_config and pre_eff_config
+
+Ben Gass (6):
+
+-  `5bfda17c8018 <https://github.com/open-power/hostboot/commit/5bfda17c8018>`__ Add chip base
+   address to the OMI MMIO offset in p9a_mmio_util
+-  `d27c5e1fe431 <https://github.com/open-power/hostboot/commit/d27c5e1fe431>`__ Update ATRMISS
+   registers for Axone
+-  `71d98844bb93 <https://github.com/open-power/hostboot/commit/71d98844bb93>`__ Update p9_l2_flush
+   to check if purge is busy on anything prior to flush.
+-  `a4278d1df874 <https://github.com/open-power/hostboot/commit/a4278d1df874>`__ Add
+   ATTR_OMI_DL_GROUP_POS and ATTR_OMI_DL_NUM for OMI targets
+-  `224517ac925b <https://github.com/open-power/hostboot/commit/224517ac925b>`__ Update cmd/rsp
+   endian handling in exp_inband
+-  `5beffad6f2f2 <https://github.com/open-power/hostboot/commit/5beffad6f2f2>`__ Replace FAPI_ERR
+   with FAPI_DBG when no error in exp_omi_init
+
+Bill Hoffa (4):
+
+-  `7364f2447d18 <https://github.com/open-power/hostboot/commit/7364f2447d18>`__ Initialize and test
+   alt-master PNOR access in all boots
+-  `8b9e2d415060 <https://github.com/open-power/hostboot/commit/8b9e2d415060>`__ Fix autocitest
+   simics attempt numbering
+-  `c54069667c86 <https://github.com/open-power/hostboot/commit/c54069667c86>`__ Catch Unknown
+   Values for CONFIG_APPLY attribute
+-  `2620abc7dc62 <https://github.com/open-power/hostboot/commit/2620abc7dc62>`__ INTRP HW Workaround
+   for Clockgating Issue
+
+Caleb Palmer (10):
+
+-  `066af762a047 <https://github.com/open-power/hostboot/commit/066af762a047>`__ Add SW callout if
+   invalid proc model in call_mss_scrub
+-  `d94e5b51c9e5 <https://github.com/open-power/hostboot/commit/d94e5b51c9e5>`__ PRD: Remove old
+   domain startScrubs
+-  `0843af939876 <https://github.com/open-power/hostboot/commit/0843af939876>`__ PRD: Don’t skip ECC
+   spare when no DRAM spare
+-  `86b0576b22dc <https://github.com/open-power/hostboot/commit/86b0576b22dc>`__ PRD: NVDIMM reg
+   review updates
+-  `6d28e5b524f2 <https://github.com/open-power/hostboot/commit/6d28e5b524f2>`__ PRD: Remove EccSp
+   from errl when not avail
+-  `be07d93af71c <https://github.com/open-power/hostboot/commit/be07d93af71c>`__ PRD: MEM_PORT
+   getConnected support
+-  `4046e66acfb6 <https://github.com/open-power/hostboot/commit/4046e66acfb6>`__ Hostboot Memory HWP
+   include update
+-  `16024c9f92fa <https://github.com/open-power/hostboot/commit/16024c9f92fa>`__ PRD: Axone
+   PlatServices and Misc Updates
+-  `f2837b85611f <https://github.com/open-power/hostboot/commit/f2837b85611f>`__ PRD: Memory HWP
+   include updates
+-  `09b6e80a55d2 <https://github.com/open-power/hostboot/commit/09b6e80a55d2>`__ PRD: NVDIMM health
+   status reg errors no longer gard
+
+Chen Du (1):
+
+-  `c4031acbfb05 <https://github.com/open-power/hostboot/commit/c4031acbfb05>`__ Dropped messages at
+   shutdown
+
+Chris Cain (1):
+
+-  `ad388de1a208 <https://github.com/open-power/hostboot/commit/ad388de1a208>`__ Proposed structure
+   change for OCC
+
+Chris Steffen (1):
+
+-  `298aa306a1f4 <https://github.com/open-power/hostboot/commit/298aa306a1f4>`__ P9A OMI Dccal /
+   Scominit
+
+Christian Geddes (32):
+
+-  `8ee01af225a0 <https://github.com/open-power/hostboot/commit/8ee01af225a0>`__ Allow child/parent
+   lookups between DIMM and OCMB_CHIP targets
+-  `6cc4d5078e34 <https://github.com/open-power/hostboot/commit/6cc4d5078e34>`__ Again try to fix
+   checkpoint issue with fips930 simics
+-  `3452fbd95989 <https://github.com/open-power/hostboot/commit/3452fbd95989>`__ Allow for nullptr
+   io_buffer in eecache read
+-  `7ce2a9daac0c <https://github.com/open-power/hostboot/commit/7ce2a9daac0c>`__ Add interface to
+   look up model type of master processor on targetService
+-  `efda71702697 <https://github.com/open-power/hostboot/commit/efda71702697>`__ Set early test case
+   IPL step to be 14.7 in Axone simics
+-  `e70d216f8e2b <https://github.com/open-power/hostboot/commit/e70d216f8e2b>`__ Compile and add
+   calls to exp_scominit in istep 13.8
+-  `58b845f915ea <https://github.com/open-power/hostboot/commit/58b845f915ea>`__ Disable Mutex
+   Attribute Test Cases for now
+-  `250291d09340 <https://github.com/open-power/hostboot/commit/250291d09340>`__ Add
+   p9a_omi_training_check hwp call to istep 12.9
+-  `3b02a6aa674c <https://github.com/open-power/hostboot/commit/3b02a6aa674c>`__ Fix
+   getChildByAffinity call in mmio.C and add more traces
+-  `dafcf54942f1 <https://github.com/open-power/hostboot/commit/dafcf54942f1>`__ Remove imported
+   files that were added incorrectly
+-  `552339eb7f78 <https://github.com/open-power/hostboot/commit/552339eb7f78>`__ Create a common
+   explorer accesss module expaccess
+-  `281c7c93a463 <https://github.com/open-power/hostboot/commit/281c7c93a463>`__ Skip enabling PM
+   complex (start_stop_engine HWP) in Axone simics
+-  `63afd50c3393 <https://github.com/open-power/hostboot/commit/63afd50c3393>`__ Disable SMF tests
+   for Axone bringup
+-  `5618f2f2b432 <https://github.com/open-power/hostboot/commit/5618f2f2b432>`__ Fix issues with how
+   we were handling new .so added for Axone
+-  `9145082bb0ca <https://github.com/open-power/hostboot/commit/9145082bb0ca>`__ Disable OCMB mmio
+   communication tests until MMIO works
+-  `b397d8d630ac <https://github.com/open-power/hostboot/commit/b397d8d630ac>`__ Allow single dimm
+   configurations in Axone
+-  `dd41d6161ea9 <https://github.com/open-power/hostboot/commit/dd41d6161ea9>`__ Set
+   MAX_COMPUTE_NODES attribute so TOD code gets setup correctly
+-  `3653c5d44e88 <https://github.com/open-power/hostboot/commit/3653c5d44e88>`__ Skip establish ex
+   chiplet step (15.3) during Axone for now
+-  `0a0fe1f2857a <https://github.com/open-power/hostboot/commit/0a0fe1f2857a>`__ Compile new
+   Axone/Explorer memory libs in isteps_mss library
+-  `d09e67a0a554 <https://github.com/open-power/hostboot/commit/d09e67a0a554>`__ Update simics
+   release that Axone is using and adjust simics script
+-  `b8cfbb22598c <https://github.com/open-power/hostboot/commit/b8cfbb22598c>`__ Set MUX i2c slave
+   port to be 1
+-  `1c5f03e47872 <https://github.com/open-power/hostboot/commit/1c5f03e47872>`__ Fix bug that was
+   scrambling traces in errorlogs during HBRT
+-  `ddc7b1ec95be <https://github.com/open-power/hostboot/commit/ddc7b1ec95be>`__ Apply OBUS PG rules
+   update to Axone also
+-  `a52d45742151 <https://github.com/open-power/hostboot/commit/a52d45742151>`__ Edit
+   cxxtest.start.sh script to call runsim correctly
+-  `c6677251ee3d <https://github.com/open-power/hostboot/commit/c6677251ee3d>`__ Call p9a_mss_volt
+   if MEM_PORT targets are available in istep 7.2
+-  `994299cf3d45 <https://github.com/open-power/hostboot/commit/994299cf3d45>`__ Add code to call
+   p9a_mss_freq / p9a_mss_freq_system in istep 7.3
+-  `1564d45787ce <https://github.com/open-power/hostboot/commit/1564d45787ce>`__ Wrap exp_draminit
+   in a extern “C” to workaround name mangling
+-  `30a512e3d84d <https://github.com/open-power/hostboot/commit/30a512e3d84d>`__ Disable OCMB getVPD
+   tests until we get better SPD
+-  `33e7c6de0769 <https://github.com/open-power/hostboot/commit/33e7c6de0769>`__ Add calls to
+   available p9a_mss_eff_config HWPs in istep 7.4
+-  `85e898e7c68e <https://github.com/open-power/hostboot/commit/85e898e7c68e>`__ Edit autocitest to
+   handle hbTrace.log generated in /src/
+-  `a98d9a843a71 <https://github.com/open-power/hostboot/commit/a98d9a843a71>`__ Generate P9A
+   accessors for Axone
+-  `f55c462e587c <https://github.com/open-power/hostboot/commit/f55c462e587c>`__ Resize WOF to allow
+   AXONE test pnor to fit inside 64 MB
+
+Christian R. Geddes (1):
+
+-  `bcecb8a2a15a <https://github.com/open-power/hostboot/commit/bcecb8a2a15a>`__ Revert “Update
+   phy_pharams structure, tests, and exp attrs”
+
+Corey Swenson (1):
+
+-  `0bfacdff427f <https://github.com/open-power/hostboot/commit/0bfacdff427f>`__ Add callouts for
+   NVDIMM errors
+
+Dan Crowell (16):
+
+-  `b8720c117759 <https://github.com/open-power/hostboot/commit/b8720c117759>`__ Reset Engine E to
+   handle NVDIMMs
+-  `d505fea7f169 <https://github.com/open-power/hostboot/commit/d505fea7f169>`__ Make overrideOnly
+   fapi attributes volatile-zero
+-  `86b5d355d643 <https://github.com/open-power/hostboot/commit/86b5d355d643>`__ Delete complextype
+   fields in attributes if they have no value
+-  `e73d0c117548 <https://github.com/open-power/hostboot/commit/e73d0c117548>`__ Force reboot
+   without visible errors for core wakeup failure
+-  `386165c1c5da <https://github.com/open-power/hostboot/commit/386165c1c5da>`__ Updates to
+   testcases for Axone
+-  `ce4004d542f1 <https://github.com/open-power/hostboot/commit/ce4004d542f1>`__ Create runtime mss
+   library
+-  `4636db0ab1ec <https://github.com/open-power/hostboot/commit/4636db0ab1ec>`__ Always use original
+   defaults for attribute fields with no value
+-  `0b3f4e146b01 <https://github.com/open-power/hostboot/commit/0b3f4e146b01>`__ Use meaningful
+   values for PNOR build parms
+-  `7d86b40c30c1 <https://github.com/open-power/hostboot/commit/7d86b40c30c1>`__ Modify rank
+   variable for OCMB VPD lookup
+-  `c2c08ea15af6 <https://github.com/open-power/hostboot/commit/c2c08ea15af6>`__ Remove old fapi
+   files
+-  `63622494a0f3 <https://github.com/open-power/hostboot/commit/63622494a0f3>`__ Add PMIC target
+-  `e0f035161098 <https://github.com/open-power/hostboot/commit/e0f035161098>`__ Tweak page eviction
+   parameters to handle low mem better
+-  `2c2978d3a443 <https://github.com/open-power/hostboot/commit/2c2978d3a443>`__ Add ASSERT trace
+   buffer to task crash log
+-  `8fc37a704410 <https://github.com/open-power/hostboot/commit/8fc37a704410>`__ Create
+   p9a_disable_ocmb_i2c HWP
+-  `27d7ab8db738 <https://github.com/open-power/hostboot/commit/27d7ab8db738>`__ Moving libnvdimm
+   into a resident module
+-  `7c067d46c2f7 <https://github.com/open-power/hostboot/commit/7c067d46c2f7>`__ Make pci cache
+   injection attributes writeable
+
+Dean Sanner (2):
+
+-  `73fc80f05f07 <https://github.com/open-power/hostboot/commit/73fc80f05f07>`__ Base HWP mirroring
+   control on HB policy
+-  `610f16673641 <https://github.com/open-power/hostboot/commit/610f16673641>`__ Allow OPAL to run
+   on fused cores
+
+Glenn Miles (6):
+
+-  `0af9610f18a1 <https://github.com/open-power/hostboot/commit/0af9610f18a1>`__ Make access to
+   iv_overridePtr threadsafe
+-  `676c584aaa70 <https://github.com/open-power/hostboot/commit/676c584aaa70>`__ Make more room for
+   hbicore_extended in PNOR layout files.
+-  `814734326962 <https://github.com/open-power/hostboot/commit/814734326962>`__ Use thread_local
+   for globals that require it
+-  `373d8a5fb285 <https://github.com/open-power/hostboot/commit/373d8a5fb285>`__ Run memory training
+   in parallel across centaurs
+-  `853d251aef29 <https://github.com/open-power/hostboot/commit/853d251aef29>`__ Add 1MB to PNOR HBI
+   section
+-  `f6ddb6dc19f8 <https://github.com/open-power/hostboot/commit/f6ddb6dc19f8>`__ Add checks for
+   invalid trace data in removeDuplicateTraces
+
+Ilya Smirnov (5):
+
+-  `b1c1b2cc5e78 <https://github.com/open-power/hostboot/commit/b1c1b2cc5e78>`__ Secureboot:
+   Enhanced Multinode Comm: TPM_POISONED
+-  `ed35e3da7c26 <https://github.com/open-power/hostboot/commit/ed35e3da7c26>`__ Unit Tests For SMF
+   Secure Mem Distribution
+-  `9ece0ede203d <https://github.com/open-power/hostboot/commit/9ece0ede203d>`__ SMF: Memory
+   Distribution Logic Improvements
+-  `eeb5732a169d <https://github.com/open-power/hostboot/commit/eeb5732a169d>`__ Revert “SMF: Create
+   New UVBWLIST Partition”
+-  `c7534ed92a2d <https://github.com/open-power/hostboot/commit/c7534ed92a2d>`__ Secureboot:
+   Enhanced Nomdecomm: Quote Fix
+
+Jacob Harvey (1):
+
+-  `e7f0582196fb <https://github.com/open-power/hostboot/commit/e7f0582196fb>`__ L3 work for mss
+   xmls
+
+Jayashankar Padath (1):
+
+-  `596bde3e93f3 <https://github.com/open-power/hostboot/commit/596bde3e93f3>`__ HDAT : Support of
+   new Rugby values in P9N systems
+
+Jaymes Wilks (2):
+
+-  `f5475890894b <https://github.com/open-power/hostboot/commit/f5475890894b>`__ Support thread
+   local storage
+-  `ff62338a5699 <https://github.com/open-power/hostboot/commit/ff62338a5699>`__ Thread local
+   storage: Update unit tests for thread local storage
+
+Jenny Huynh (1):
+
+-  `1c6429e239e2 <https://github.com/open-power/hostboot/commit/1c6429e239e2>`__ HW483672: Enable
+   TLBIE WAT (version 5); fixes unintended flushing
+
+Joe McGill (1):
+
+-  `87cc9b25b008 <https://github.com/open-power/hostboot/commit/87cc9b25b008>`__ cleanup references
+   to chip-centric EC feature attributes
+
+Kahn Evans (1):
+
+-  `e45d35734d18 <https://github.com/open-power/hostboot/commit/e45d35734d18>`__ Fix doxygen
+   warnings
+
+Louis Stermole (11):
+
+-  `5fcfd69a0278 <https://github.com/open-power/hostboot/commit/5fcfd69a0278>`__ Remove MBA GARD
+   from RC_CEN_MSS_DRAMINIT_MC_INSUF_RCD_PROTECT_TIME
+-  `835d2074b6bc <https://github.com/open-power/hostboot/commit/835d2074b6bc>`__ Add empty files
+   required for mss::index, pos, and c_str templating
+-  `197507fb6e80 <https://github.com/open-power/hostboot/commit/197507fb6e80>`__ Add empty file
+   required for templating eff_memory_size
+-  `ebf6fda9958f <https://github.com/open-power/hostboot/commit/ebf6fda9958f>`__ Add empty files
+   required for p9a_mss_freq
+-  `6f660c2b98b7 <https://github.com/open-power/hostboot/commit/6f660c2b98b7>`__ Add new files
+   required for fixing mss::index, mss::pos, and mss::c_str
+-  `0f728a100a8e <https://github.com/open-power/hostboot/commit/0f728a100a8e>`__ Add empty file for
+   explorer eff_memory_size specialization
+-  `8fc0e7abffb0 <https://github.com/open-power/hostboot/commit/8fc0e7abffb0>`__ Add p9a version of
+   eff_memory_size API
+-  `ca025608c0c1 <https://github.com/open-power/hostboot/commit/ca025608c0c1>`__ Move p9a sync.C and
+   sync.H to new names to fix collisions
+-  `6bdf34b9fe0a <https://github.com/open-power/hostboot/commit/6bdf34b9fe0a>`__ Add workaround for
+   Nimbus symbol mark performance hw bug
+-  `76a4f5d86930 <https://github.com/open-power/hostboot/commit/76a4f5d86930>`__ Move explorer
+   specialization of eff_memory_size into explorer lib
+-  `a5d11b476381 <https://github.com/open-power/hostboot/commit/a5d11b476381>`__ Add empty files for
+   DEFAULT_MC_TYPE constants
+
+Luis Fernandez (2):
+
+-  `90552694307e <https://github.com/open-power/hostboot/commit/90552694307e>`__ Secure Boot: Log
+   error when attribute override attempted in secure mode
+-  `ab6efc5935dc <https://github.com/open-power/hostboot/commit/ab6efc5935dc>`__ HB Improvements:
+   Fix compiler warnings on modern compilers
+
+Mark Pizzutillo (4):
+
+-  `847ced968c58 <https://github.com/open-power/hostboot/commit/847ced968c58>`__ Add blank files for
+   axone p10 rank API
+-  `7b3c165b9c65 <https://github.com/open-power/hostboot/commit/7b3c165b9c65>`__ Add empty files for
+   gemini IPL
+-  `af6712fe5c03 <https://github.com/open-power/hostboot/commit/af6712fe5c03>`__ Remove files not
+   needed by gemini IPL
+-  `9011abf477a1 <https://github.com/open-power/hostboot/commit/9011abf477a1>`__ Add wrapper and
+   utils blank files for exp_getecid
+
+Matt Derksen (4):
+
+-  `518a05ca5136 <https://github.com/open-power/hostboot/commit/518a05ca5136>`__ Move nvdimm_update
+   call to istep 21.1
+-  `2df122342fae <https://github.com/open-power/hostboot/commit/2df122342fae>`__ Use NVDIMM lids for
+   update
+-  `a5c403221e3e <https://github.com/open-power/hostboot/commit/a5c403221e3e>`__ Fixing runtime i2c
+   operation
+-  `f5ab52ab7117 <https://github.com/open-power/hostboot/commit/f5ab52ab7117>`__ NVDIMM update code
+
+Matt K. Light (1):
+
+-  `a7c8ac4df4e1 <https://github.com/open-power/hostboot/commit/a7c8ac4df4e1>`__ move
+   ATTR_SPD_OVERRIDE[_ENABLE] to cronus only file
+
+Matt Raybuck (1):
+
+-  `4b29a1188536 <https://github.com/open-power/hostboot/commit/4b29a1188536>`__ UCD attribute and
+   targeting updates
+
+Matthew Raybuck (10):
+
+-  `d2899da82cb0 <https://github.com/open-power/hostboot/commit/d2899da82cb0>`__ Improve performance
+   of Partial Good logic
+-  `3830dc6e8fb0 <https://github.com/open-power/hostboot/commit/3830dc6e8fb0>`__ Support UCD target
+   generation for Zeppelin MRW
+-  `d47b63700d87 <https://github.com/open-power/hostboot/commit/d47b63700d87>`__ Add functions to
+   get Device Id and MFR revision from UCD
+-  `3265b62f038c <https://github.com/open-power/hostboot/commit/3265b62f038c>`__ Improve performance
+   of general PG algorithm
+-  `2cfb551c4e56 <https://github.com/open-power/hostboot/commit/2cfb551c4e56>`__ TESTCASES: Improve
+   performance of general PG algorithm
+-  `086018c231e7 <https://github.com/open-power/hostboot/commit/086018c231e7>`__ Support UCD for I2C
+   callouts
+-  `c3264eed4874 <https://github.com/open-power/hostboot/commit/c3264eed4874>`__ Add minor tweaks to
+   I2C Callouts for UCD
+-  `8684bd3d5656 <https://github.com/open-power/hostboot/commit/8684bd3d5656>`__ Add retry loop to
+   UCD deviceOps
+-  `b445b93fc21e <https://github.com/open-power/hostboot/commit/b445b93fc21e>`__ Handle bad PEC from
+   UCD device op
+-  `ac7a4f206efe <https://github.com/open-power/hostboot/commit/ac7a4f206efe>`__ Fix UCD retry loop
+   size bug
+
+Mike Baiocchi (7):
+
+-  `d74d3932d989 <https://github.com/open-power/hostboot/commit/d74d3932d989>`__ Secureboot: Enhance
+   Error Callouts For New Multinode Trustedboot Transfer
+-  `4eb72a8bf074 <https://github.com/open-power/hostboot/commit/4eb72a8bf074>`__ Adjust I2C Reset
+   for OpenPower MPIPL
+-  `656ba908c6f2 <https://github.com/open-power/hostboot/commit/656ba908c6f2>`__ Add UCD devices to
+   ATTR_I2C_BUS_SPEED_ARRAY for ZZ
+-  `08d6bc305592 <https://github.com/open-power/hostboot/commit/08d6bc305592>`__ Update UCD class
+   member variables and functions
+-  `ffdc6b255981 <https://github.com/open-power/hostboot/commit/ffdc6b255981>`__ Add check to
+   determine if a UCD’s I2C Master is functional
+-  `72fc1da005b7 <https://github.com/open-power/hostboot/commit/72fc1da005b7>`__ Invoke UCD Update
+   Algorithm on UCD Devices
+-  `571956c7f546 <https://github.com/open-power/hostboot/commit/571956c7f546>`__ Create Attribute to
+   force UCD Updates
+
+Murulidhar Nataraju (1):
+
+-  `6b7bbd62febe <https://github.com/open-power/hostboot/commit/6b7bbd62febe>`__ Enable OCC Start in
+   MPIPL path for OPAL based systems
+
+Nick Bofferding (9):
+
+-  `90b00de769e0 <https://github.com/open-power/hostboot/commit/90b00de769e0>`__ Enhance RAS for
+   case where boot firmware image is too big to load
+-  `09a3da759682 <https://github.com/open-power/hostboot/commit/09a3da759682>`__ UCD Flash Update:
+   Support I2C SMBUS operations for UCD flash update
+-  `10784ce5d02b <https://github.com/open-power/hostboot/commit/10784ce5d02b>`__ Support UCD target
+   generation for ZZ MRW
+-  `642a5f63c61b <https://github.com/open-power/hostboot/commit/642a5f63c61b>`__ Support UCD
+   discovery
+-  `5588cf81b95d <https://github.com/open-power/hostboot/commit/5588cf81b95d>`__ Fix bug where task
+   migrates away from pinned CPU unexpectedly
+-  `810394f87078 <https://github.com/open-power/hostboot/commit/810394f87078>`__ UCD flash update
+   invoker
+-  `0d9e3f2cde91 <https://github.com/open-power/hostboot/commit/0d9e3f2cde91>`__ Verify UCD update
+   success at end of store to UCD flash
+-  `de2312a44b13 <https://github.com/open-power/hostboot/commit/de2312a44b13>`__ Fix deadlock in ECC
+   error shutdown path
+-  `ca03643dd893 <https://github.com/open-power/hostboot/commit/ca03643dd893>`__ Initialize backup
+   TPM in MPIPL
+
+Prasad Bg Ranganath (1):
+
+-  `4d983e4c8bdd <https://github.com/open-power/hostboot/commit/4d983e4c8bdd>`__ PPB: Refactor
+   pstate parameter block
+
+Prem Shanker Jha (1):
+
+-  `143d03952806 <https://github.com/open-power/hostboot/commit/143d03952806>`__ Image Build: Fixed
+   handling of unsecure HOMER address field.
+
+Raja Das (2):
+
+-  `55260d579728 <https://github.com/open-power/hostboot/commit/55260d579728>`__ Security List
+   Binary Dump Chip-op Support
+-  `b8f4e5009a34 <https://github.com/open-power/hostboot/commit/b8f4e5009a34>`__ OPAL/MPIPL:
+   Processor Dump Area Table interfaces
+
+Ricardo Mata Jr (1):
+
+-  `784fe894f9ec <https://github.com/open-power/hostboot/commit/784fe894f9ec>`__ Updated
+   proc_pcie_config to support cache inject attributes
+
+Roland Veloz (3):
+
+-  `6e84cce39773 <https://github.com/open-power/hostboot/commit/6e84cce39773>`__ Force VPD IO
+   through HW (Axone) ,add plat function to get OCMB VPD
+-  `038631ba24f0 <https://github.com/open-power/hostboot/commit/038631ba24f0>`__ Updated file
+   ddimm_get_efd.C to be in sync with file ddimm_get_efd.xml
+-  `17930bb348b5 <https://github.com/open-power/hostboot/commit/17930bb348b5>`__ Unit test and
+   integration test for platGetVPD(OCMB) call
+
+Sharath Manjunath (1):
+
+-  `bdaa5b1d2af3 <https://github.com/open-power/hostboot/commit/bdaa5b1d2af3>`__ Update exp_draminit
+   to read values from attributes
+
+Stanley Zheng (1):
+
+-  `c23e99369c50 <https://github.com/open-power/hostboot/commit/c23e99369c50>`__ add address xlate
+   to initfile
+
+Stephen Glancy (8):
+
+-  `dadbba56f413 <https://github.com/open-power/hostboot/commit/dadbba56f413>`__ Adds SI setting for
+   4R and dual-drop LRDIMM configs
+-  `c050abede299 <https://github.com/open-power/hostboot/commit/c050abede299>`__ Updates the
+   explorer training response structure
+-  `6fa8d0452930 <https://github.com/open-power/hostboot/commit/6fa8d0452930>`__ Updates read to
+   write timers for LRDIMM
+-  `c96464c7d525 <https://github.com/open-power/hostboot/commit/c96464c7d525>`__ Moves set bad
+   bitmap into generic
+-  `2b943a5ba24f <https://github.com/open-power/hostboot/commit/2b943a5ba24f>`__ Fixes MPR read ODT
+   values
+-  `b850083ce640 <https://github.com/open-power/hostboot/commit/b850083ce640>`__ Fixes LRDIMM CKE
+   issue
+-  `8e0290d32802 <https://github.com/open-power/hostboot/commit/8e0290d32802>`__ Fixes LRDIMM rank
+   configuration for dual-drop
+-  `cd82f3ecbcef <https://github.com/open-power/hostboot/commit/cd82f3ecbcef>`__ Adds DDIMM EFD
+   decoder API
+
+Steven Janssen (1):
+
+-  `85942470b223 <https://github.com/open-power/hostboot/commit/85942470b223>`__ Update function
+   pointer name to correctly point to function
+
+Stewart Smith (1):
+
+-  `4470dc33a126 <https://github.com/open-power/hostboot/commit/4470dc33a126>`__ Disable warnings
+   that crop up a lot with GCC6
+
+Sumit Kumar (1):
+
+-  `395f284926ab <https://github.com/open-power/hostboot/commit/395f284926ab>`__ FAPI_Infra:Add new
+   member to structure ErrorInfoHwCallout
+
+Tsung Yeung (3):
+
+-  `8eb0494af6a1 <https://github.com/open-power/hostboot/commit/8eb0494af6a1>`__ Enforces NVDIMM
+   Pairing
+-  `da2c80997909 <https://github.com/open-power/hostboot/commit/da2c80997909>`__ Suppresses
+   maintenance error messages due to STR exit
+-  `c2a9006d0552 <https://github.com/open-power/hostboot/commit/c2a9006d0552>`__ NVDIMM RCD restore
+   fix and zqcal timing fix
+
+Package: occ
+------------
+
+`Repository <https://github.com/open-power/occ>`__
+
+.. _v2.3-rc1-patches-2:
+
+Patches
+~~~~~~~
+
+.. _v2.3-rc1-commits-2:
+
+Commits
+~~~~~~~
+
+Chris Cain (2):
+
+-  `1904821d6279 <https://github.com/open-power/occ/commit/1904821d6279>`__ Updates to wofparser
+   tool
+-  `98ccba678ad4 <https://github.com/open-power/occ/commit/98ccba678ad4>`__ Support for PGPE error
+   handling
+
+William Bryan (1):
+
+-  `6e52f56bd2cc <https://github.com/open-power/occ/commit/6e52f56bd2cc>`__ Fix memory bandwidth
+   chom averages
+
+Zane Shelley (11):
+
+-  `75f2dd306f18 <https://github.com/open-power/occ/commit/75f2dd306f18>`__ FIRDATA: fix iteration
+   bug in firData.c
+-  `d60be21fc396 <https://github.com/open-power/occ/commit/d60be21fc396>`__ FIRDATA: remove
+   Cumulus/Centaur targets and add Axone/Explorer
+-  `d85d3c5387ec <https://github.com/open-power/occ/commit/d85d3c5387ec>`__ FIRDATA: add Axone
+   memory subsystem SCOM support
+-  `18fa6f29e388 <https://github.com/open-power/occ/commit/18fa6f29e388>`__ FIRDATA: removed HOMER
+   support for Cumulus/Centaur
+-  `d2801157a080 <https://github.com/open-power/occ/commit/d2801157a080>`__ FIRDATA: Clean up HOMER
+   parsing variables in firData.c
+-  `d4e558e09c51 <https://github.com/open-power/occ/commit/d4e558e09c51>`__ FIRDATA: Simplified
+   adding targets to PNOR
+-  `29d1d67db71c <https://github.com/open-power/occ/commit/29d1d67db71c>`__ FIRDATA: Simplified
+   adding chip units to PNOR
+-  `69bac807b007 <https://github.com/open-power/occ/commit/69bac807b007>`__ FIRDATA: Simplified
+   iterating targets from HOMER in firData.c
+-  `b673f22459ca <https://github.com/open-power/occ/commit/b673f22459ca>`__ FIRDATA: Further
+   simplifying iteration variables in firData.c
+-  `6220fb3d8d7a <https://github.com/open-power/occ/commit/6220fb3d8d7a>`__ FIRDATA: Simplified
+   adding subunit targets to PNOR in firData.c
+-  `58e422dede59 <https://github.com/open-power/occ/commit/58e422dede59>`__ FIRDATA: added
+   Axone/Explorer support to firData.c
+
+Package: sbe
+------------
+
+`Repository <https://github.com/open-power/sbe>`__
+
+.. _v2.3-rc1-patches-3:
+
+Patches
+~~~~~~~
+
+.. _v2.3-rc1-commits-3:
+
+Commits
+~~~~~~~
+
+Christian Geddes (1):
+
+-  `0f9a51d0059e <https://github.com/open-power/sbe/commit/0f9a51d0059e>`__ Update i2c driver for
+   OCMB chip
+
+Christopher M Riedl (1):
+
+-  `a3b2377b7de1 <https://github.com/open-power/sbe/commit/a3b2377b7de1>`__ Implement PBA
+   Cache-Inhibited 8B Rd/Wr Access
+
+Dan Crowell (1):
+
+-  `c9b85ed2ed42 <https://github.com/open-power/sbe/commit/c9b85ed2ed42>`__ Add
+   ATTR_ENABLED_OBUS_BRICKS
+
+Jenny Huynh (6):
+
+-  `be0d09d34335 <https://github.com/open-power/sbe/commit/be0d09d34335>`__ HW477626 Dangerous Elk -
+   Applies to CDD12+
+-  `e18d802d082f <https://github.com/open-power/sbe/commit/e18d802d082f>`__ HW477626 Dangerous Elk -
+   Temporarily apply to CDD13 native only
+-  `04c534c750c6 <https://github.com/open-power/sbe/commit/04c534c750c6>`__ HW477626 Dangerous Elk -
+   Reapply for all CDD12+ risk levels
+-  `f3b4f8efe1f8 <https://github.com/open-power/sbe/commit/f3b4f8efe1f8>`__ Additional core inits
+   for Nimbus DD2.3 compatibility modes
+-  `934ccd82e22f <https://github.com/open-power/sbe/commit/934ccd82e22f>`__ Axone core initfile
+   update to match Nimbus DD23
+-  `4a5f8ddab286 <https://github.com/open-power/sbe/commit/4a5f8ddab286>`__ Adjust PVR Version for
+   Axone
+
+Joachim Fenkes (5):
+
+-  `b9b668e5916e <https://github.com/open-power/sbe/commit/b9b668e5916e>`__ FAPI2: Multicast API
+   1/2: Platform-breaking changes
+-  `8a09d58df7aa <https://github.com/open-power/sbe/commit/8a09d58df7aa>`__ FAPI2: Multicast API
+   2/2: Introduce the actual multicast functions
+-  `4529a95e14de <https://github.com/open-power/sbe/commit/4529a95e14de>`__ Add tools to help
+   measure and compare SBE image size
+-  `5786b04efe86 <https://github.com/open-power/sbe/commit/5786b04efe86>`__ p9_sbe_tp_chiplet_init3:
+   Mask TOD error bit 62 (osclite switched)
+-  `e8590a9d3a19 <https://github.com/open-power/sbe/commit/e8590a9d3a19>`__ p9_sbe_npll_setup:
+   Enable spread spectrum before starting PLL
+
+Joe McGill (1):
+
+-  `81642d21704f <https://github.com/open-power/sbe/commit/81642d21704f>`__ whitelist update for
+   ABUS CCM
+
+Prasad Bg Ranganath (3):
+
+-  `9eba57570f29 <https://github.com/open-power/sbe/commit/9eba57570f29>`__ PPB:New attribute
+   ATTR_PMCR_MOST_RECENT_MODE for PMCR request
+-  `8fd8d1401c5f <https://github.com/open-power/sbe/commit/8fd8d1401c5f>`__ HWP:Cache stop clocks
+   complete fix
+-  `1410677b65e4 <https://github.com/open-power/sbe/commit/1410677b65e4>`__ PM HWP: Fix bug in stop
+   clock procedure that effects mpipl
+
+Prem Shanker Jha (2):
+
+-  `b6b4eafa650c <https://github.com/open-power/sbe/commit/b6b4eafa650c>`__ SMF: Defined new
+   attribute containing unsecure HOMER memory’s size.
+-  `47f5faba3803 <https://github.com/open-power/sbe/commit/47f5faba3803>`__ SMF: Populates unsecure
+   HOMER with SC2 instruction.
+
+Pretty Mariam Jacob (1):
+
+-  `b2548e254811 <https://github.com/open-power/sbe/commit/b2548e254811>`__ Added Alink changes in
+   attributes and initfiles
+
+Raja Das (5):
+
+-  `0420efec88bd <https://github.com/open-power/sbe/commit/0420efec88bd>`__ White/Black/Grey List
+   Binary dump PSU Chip-op Support
+-  `0321b165dad7 <https://github.com/open-power/sbe/commit/0321b165dad7>`__ SBE scripts to update
+   pib repair data
+-  `9f9f77cec3cb <https://github.com/open-power/sbe/commit/9f9f77cec3cb>`__ L1 loader Axone Pibmem
+   repair parse
+-  `c508f8e9d96e <https://github.com/open-power/sbe/commit/c508f8e9d96e>`__ NVDIMM Flush update
+-  `57905edebf34 <https://github.com/open-power/sbe/commit/57905edebf34>`__ Axone pibmem repair
+   logic
+
+Soma BhanuTej (1):
+
+-  `1d73131d1a11 <https://github.com/open-power/sbe/commit/1d73131d1a11>`__ Update p9a_10 engd - spy
+   name changes
+
+Srikantha Meesala (1):
+
+-  `9b5f5c303ddc <https://github.com/open-power/sbe/commit/9b5f5c303ddc>`__ Befor flushNVDIMM
+   chip-op make sure all core Instructions are stopped
+
+Stephen Glancy (2):
+
+-  `953dc3134693 <https://github.com/open-power/sbe/commit/953dc3134693>`__ Updates MWD_COARSE to
+   run multiple patterns
+-  `6eb2a4c0f0d8 <https://github.com/open-power/sbe/commit/6eb2a4c0f0d8>`__ Updates MCA write and
+   read timings
+
+Tsung Yeung (1):
+
+-  `1ac3d5b9cd5f <https://github.com/open-power/sbe/commit/1ac3d5b9cd5f>`__ Adjust STR enter
+   sequence to enable immediate entry
+
+kswaroop (1):
+
+-  `81c848765857 <https://github.com/open-power/sbe/commit/81c848765857>`__ PIBMEM only image
+
+Package: skiboot
+----------------
+
+`Repository <https://github.com/open-power/skiboot>`__
+
+.. _v2.3-rc1-patches-4:
+
+Patches
+~~~~~~~
+
+.. _v2.3-rc1-commits-4:
+
+Commits
+~~~~~~~
+
+Abhishek Goel (1):
+
+-  `b821f8c2a8e3 <https://github.com/open-power/skiboot/commit/b821f8c2a8e3>`__ power-mgmt : occ :
+   Add ‘freq-domain-mask’ DT property
+
+Akshay Adiga (2):
+
+-  `40b99f58ea37 <https://github.com/open-power/skiboot/commit/40b99f58ea37>`__ SLW: Remove Idle
+   state support tor Power8 DD1
+-  `c46ab3a0509c <https://github.com/open-power/skiboot/commit/c46ab3a0509c>`__ SLW: Print verbose
+   info on errors only
+
+Alexey Kardashevskiy (8):
+
+-  `17975a6e6457 <https://github.com/open-power/skiboot/commit/17975a6e6457>`__ cpufeatures: Always
+   advertise POWER8NVL as DD2
+-  `64627c85e648 <https://github.com/open-power/skiboot/commit/64627c85e648>`__ cpufeatures: Always
+   advertise POWER8NVL as DD2
+-  `fd0950488f7f <https://github.com/open-power/skiboot/commit/fd0950488f7f>`__ opal: Deprecate
+   reading the PHB status
+-  `4824d17bb53b <https://github.com/open-power/skiboot/commit/4824d17bb53b>`__ hw/phb3/naples:
+   Disable D-states
+-  `889dba86c3c8 <https://github.com/open-power/skiboot/commit/889dba86c3c8>`__ hw/phb3/naples:
+   Disable D-states
+-  `ba1d95a1d460 <https://github.com/open-power/skiboot/commit/ba1d95a1d460>`__ npu2: Add
+   XTS_BDF_MAP wildcard refcount
+-  `c0f17caddcd8 <https://github.com/open-power/skiboot/commit/c0f17caddcd8>`__ npu2: Allow ATSD for
+   LPAR other than 0
+-  `b392d785eb49 <https://github.com/open-power/skiboot/commit/b392d785eb49>`__ witherspoon: Add
+   nvlink2 interconnect information
+
+Andrew Donnellan (9):
+
+-  `682fa68e577c <https://github.com/open-power/skiboot/commit/682fa68e577c>`__
+   platforms/witherspoon: Make PCIe shared slot error message more informative
+-  `e1c3ed8224bf <https://github.com/open-power/skiboot/commit/e1c3ed8224bf>`__ config: Get rid of
+   DEBUG_MALLOC
+-  `647dc4aff7b6 <https://github.com/open-power/skiboot/commit/647dc4aff7b6>`__ config: Get rid of
+   FAST_REBOOT_CLEARS_MEMORY
+-  `c9bc52a250a0 <https://github.com/open-power/skiboot/commit/c9bc52a250a0>`__ core/stack: Remove
+   r1 argument from \___backtrace()
+-  `b971b67ac2e1 <https://github.com/open-power/skiboot/commit/b971b67ac2e1>`__ core/stack: Define a
+   backtrace metadata struct
+-  `80a49c7022b2 <https://github.com/open-power/skiboot/commit/80a49c7022b2>`__ core/stack: Store
+   PIR in \___backtrace()
+-  `8dddd751ef43 <https://github.com/open-power/skiboot/commit/8dddd751ef43>`__ hw/fsp, hw/ipmi:
+   Convert attn code to not use backtrace wrappers
+-  `e5a7411cd74e <https://github.com/open-power/skiboot/commit/e5a7411cd74e>`__ core/stack: Convert
+   stack check code to not use backtrace wrapper
+-  `b965b9de25d2 <https://github.com/open-power/skiboot/commit/b965b9de25d2>`__ core/stack: Rename
+   backtrace functions, get rid of wrappers
+
+Andrew Jeffery (115):
+
+-  `bd9839684d48 <https://github.com/open-power/skiboot/commit/bd9839684d48>`__ astbmc: Try IPMI
+   HIOMAP for P8
+-  `71ce936ffe38 <https://github.com/open-power/skiboot/commit/71ce936ffe38>`__ p8dtu: Enable HIOMAP
+   support
+-  `9dcbd1f41d98 <https://github.com/open-power/skiboot/commit/9dcbd1f41d98>`__ p8dtu: Configure BMC
+   graphics
+-  `963629523084 <https://github.com/open-power/skiboot/commit/963629523084>`__ pflash: Don’t try
+   update RO ToC
+-  `0dec1de73e1e <https://github.com/open-power/skiboot/commit/0dec1de73e1e>`__ libflash/test:
+   Generate header dependencies for tests
+-  `3852a9460abc <https://github.com/open-power/skiboot/commit/3852a9460abc>`__ ffspart, libflash:
+   Fix stack size warnings
+-  `a7e1efe864ad <https://github.com/open-power/skiboot/commit/a7e1efe864ad>`__ pflash: Increase
+   stack frame size warning threshold
+-  `5636d390b7f0 <https://github.com/open-power/skiboot/commit/5636d390b7f0>`__ gard: Fix warnings
+   from gcc 8.2.0
+-  `96409597aa39 <https://github.com/open-power/skiboot/commit/96409597aa39>`__ Makefile: Paper over
+   gard and pflash coverage issues
+-  `43ca6a2e5b12 <https://github.com/open-power/skiboot/commit/43ca6a2e5b12>`__ test-ipmi-hiomap:
+   Add ability to delay some IPMI messages
+-  `f246cceda717 <https://github.com/open-power/skiboot/commit/f246cceda717>`__ test-ipmi-hiomap:
+   Dump unexpected IPMI messages
+-  `5293333dd1af <https://github.com/open-power/skiboot/commit/5293333dd1af>`__ test-ipmi-hiomap:
+   Ensure the completion code is set
+-  `f46ed4f7ee79 <https://github.com/open-power/skiboot/commit/f46ed4f7ee79>`__ test-ipmi-hiomap:
+   Print some information on early scenario_exit()
+-  `1b3a5dfbdf92 <https://github.com/open-power/skiboot/commit/1b3a5dfbdf92>`__
+   libflash/ipmi-hiomap: Fix leak of msg in callback
+-  `64a61885a229 <https://github.com/open-power/skiboot/commit/64a61885a229>`__
+   libflash/ipmi-hiomap: Overhaul error handling
+-  `403d527269be <https://github.com/open-power/skiboot/commit/403d527269be>`__
+   libflash/ipmi-hiomap: Overhaul event handling
+-  `6d8bd2dd9eab <https://github.com/open-power/skiboot/commit/6d8bd2dd9eab>`__
+   libflash/ipmi-hiomap: Remove unused close handling
+-  `4af122b23402 <https://github.com/open-power/skiboot/commit/4af122b23402>`__
+   libflash/ipmi-hiomap: Enforce message size for empty response
+-  `41e6e8b4acf7 <https://github.com/open-power/skiboot/commit/41e6e8b4acf7>`__ test-ipmi-hiomap:
+   Add protocol-persistent-error test
+-  `5b12dfe8dd0d <https://github.com/open-power/skiboot/commit/5b12dfe8dd0d>`__ test-ipmi-hiomap:
+   Add read-one-block test
+-  `d4b870c8524c <https://github.com/open-power/skiboot/commit/d4b870c8524c>`__ test-ipmi-hiomap:
+   Add read-two-blocks test
+-  `e1f20bfd7d91 <https://github.com/open-power/skiboot/commit/e1f20bfd7d91>`__ test-ipmi-hiomap:
+   Add event-before-read
+-  `fd271bc570d3 <https://github.com/open-power/skiboot/commit/fd271bc570d3>`__ test-ipmi-hiomap:
+   Add event-during-read test
+-  `e69b1135db38 <https://github.com/open-power/skiboot/commit/e69b1135db38>`__ test-ipmi-hiomap:
+   Add write-one-block test
+-  `eb0c85ae9868 <https://github.com/open-power/skiboot/commit/eb0c85ae9868>`__ test-ipmi-hiomap:
+   Add write-two-blocks test
+-  `7f246ff2c999 <https://github.com/open-power/skiboot/commit/7f246ff2c999>`__ test-ipmi-hiomap:
+   Add event-before-write test
+-  `9175028fc84a <https://github.com/open-power/skiboot/commit/9175028fc84a>`__ test-ipmi-hiomap:
+   Add event-during-write test
+-  `5ee7b0f70b04 <https://github.com/open-power/skiboot/commit/5ee7b0f70b04>`__ test-ipmi-hiomap:
+   Add erase-one-block test
+-  `275b3d12af39 <https://github.com/open-power/skiboot/commit/275b3d12af39>`__ test-ipmi-hiomap:
+   Add erase-two-blocks test
+-  `410b80725ad2 <https://github.com/open-power/skiboot/commit/410b80725ad2>`__ test-ipmi-hiomap:
+   Add event-before-erase test
+-  `c2a4b4988ecc <https://github.com/open-power/skiboot/commit/c2a4b4988ecc>`__ test-ipmi-hiomap:
+   Add event-during-erase
+-  `077d19d82405 <https://github.com/open-power/skiboot/commit/077d19d82405>`__ test-ipmi-hiomap:
+   Add bad-sequence test
+-  `ecf6430d1ee9 <https://github.com/open-power/skiboot/commit/ecf6430d1ee9>`__ test-ipmi-hiomap:
+   Add action-error test
+-  `f65c781eee16 <https://github.com/open-power/skiboot/commit/f65c781eee16>`__ test-ipmi-hiomap:
+   Add get-flash-info test
+-  `bcdd3f134970 <https://github.com/open-power/skiboot/commit/bcdd3f134970>`__ test-ipmi-hiomap:
+   Add get-info-error test
+-  `0bef2695055d <https://github.com/open-power/skiboot/commit/0bef2695055d>`__ test-ipmi-hiomap:
+   Add get-flash-info-error test
+-  `c4d5734fde21 <https://github.com/open-power/skiboot/commit/c4d5734fde21>`__ test-ipmi-hiomap:
+   Add create-read-window-error test
+-  `364b433adb7d <https://github.com/open-power/skiboot/commit/364b433adb7d>`__ test-ipmi-hiomap:
+   Add create-write-window-error test
+-  `a4349da67c9c <https://github.com/open-power/skiboot/commit/a4349da67c9c>`__ test-ipmi-hiomap:
+   Add mark-dirty-error test
+-  `7798ea646fb7 <https://github.com/open-power/skiboot/commit/7798ea646fb7>`__ test-ipmi-hiomap:
+   Add flush-error test
+-  `ff5153612f85 <https://github.com/open-power/skiboot/commit/ff5153612f85>`__ test-ipmi-hiomap:
+   Add ack-error test
+-  `12ca08b58e5b <https://github.com/open-power/skiboot/commit/12ca08b58e5b>`__ test-ipmi-hiomap:
+   Add erase-error test
+-  `4642a6c9a66b <https://github.com/open-power/skiboot/commit/4642a6c9a66b>`__ test-ipmi-hiomap:
+   Add ack-malformed tests
+-  `8745e91d48d1 <https://github.com/open-power/skiboot/commit/8745e91d48d1>`__ test-ipmi-hiomap:
+   Add get-info-malformed tests
+-  `5c2ada09e76d <https://github.com/open-power/skiboot/commit/5c2ada09e76d>`__ test-ipmi-hiomap:
+   Add get-flash-info-malformed tests
+-  `bd1a08ab3e12 <https://github.com/open-power/skiboot/commit/bd1a08ab3e12>`__ test-ipmi-hiomap:
+   Add create-read-window-malformed tests
+-  `ee0314d2d9d0 <https://github.com/open-power/skiboot/commit/ee0314d2d9d0>`__ test-ipmi-hiomap:
+   Add create-write-window-malformed tests
+-  `c7b8293d867a <https://github.com/open-power/skiboot/commit/c7b8293d867a>`__ test-ipmi-hiomap:
+   Add mark-dirty-malformed tests
+-  `985c7a26bcb1 <https://github.com/open-power/skiboot/commit/985c7a26bcb1>`__ test-ipmi-hiomap:
+   Add flush-malformed tests
+-  `7735cc354609 <https://github.com/open-power/skiboot/commit/7735cc354609>`__ test-ipmi-hiomap:
+   Add erase-malformed tests
+-  `d0c798252521 <https://github.com/open-power/skiboot/commit/d0c798252521>`__ test-ipmi-hiomap:
+   Add protocol-recovery-failure-ack test
+-  `ce81b9364131 <https://github.com/open-power/skiboot/commit/ce81b9364131>`__ test-ipmi-hiomap:
+   Add protocol-recovery-failure-get-info test
+-  `9398b84fad0e <https://github.com/open-power/skiboot/commit/9398b84fad0e>`__ test-ipmi-hiomap:
+   Add protocol-recovery-get-flash-info-failure test
+-  `b94bb54f6569 <https://github.com/open-power/skiboot/commit/b94bb54f6569>`__ test-ipmi-hiomap:
+   Add read-one-block-twice test
+-  `ed35a7d04bde <https://github.com/open-power/skiboot/commit/ed35a7d04bde>`__ test-ipmi-hiomap:
+   Add write-one-block-twice test
+-  `a3777e58990f <https://github.com/open-power/skiboot/commit/a3777e58990f>`__ test-ipmi-hiomap:
+   Add erase-one-block-twice test
+-  `6a4db4c249a1 <https://github.com/open-power/skiboot/commit/6a4db4c249a1>`__ ast-io: Rework
+   ast_sio_is_enabled() test sequence
+-  `c826e1ca9e5b <https://github.com/open-power/skiboot/commit/c826e1ca9e5b>`__ astbmc: Try IPMI
+   HIOMAP for P8 (again)
+-  `b9d7c9da583a <https://github.com/open-power/skiboot/commit/b9d7c9da583a>`__ astbmc: Enable IPMI
+   HIOMAP for AMI platforms
+-  `5d07d064db05 <https://github.com/open-power/skiboot/commit/5d07d064db05>`__ libflash/test:
+   Generate header dependencies for tests
+-  `e3a3ba16a44a <https://github.com/open-power/skiboot/commit/e3a3ba16a44a>`__ test-ipmi-hiomap:
+   Add ability to delay some IPMI messages
+-  `3056fcd0a7c4 <https://github.com/open-power/skiboot/commit/3056fcd0a7c4>`__ test-ipmi-hiomap:
+   Dump unexpected IPMI messages
+-  `7cb5eca8d6ca <https://github.com/open-power/skiboot/commit/7cb5eca8d6ca>`__ test-ipmi-hiomap:
+   Ensure the completion code is set
+-  `272443f7687b <https://github.com/open-power/skiboot/commit/272443f7687b>`__ test-ipmi-hiomap:
+   Print some information on early scenario_exit()
+-  `7bb5ead55bdf <https://github.com/open-power/skiboot/commit/7bb5ead55bdf>`__
+   libflash/ipmi-hiomap: Fix leak of msg in callback
+-  `2e29cf8d00fb <https://github.com/open-power/skiboot/commit/2e29cf8d00fb>`__
+   libflash/ipmi-hiomap: Overhaul error handling
+-  `5c4b51a0408f <https://github.com/open-power/skiboot/commit/5c4b51a0408f>`__
+   libflash/ipmi-hiomap: Overhaul event handling
+-  `041d61e2be1d <https://github.com/open-power/skiboot/commit/041d61e2be1d>`__
+   libflash/ipmi-hiomap: Remove unused close handling
+-  `b64b3544d90b <https://github.com/open-power/skiboot/commit/b64b3544d90b>`__
+   libflash/ipmi-hiomap: Enforce message size for empty response
+-  `cca1c08ece5e <https://github.com/open-power/skiboot/commit/cca1c08ece5e>`__ test-ipmi-hiomap:
+   Add protocol-persistent-error test
+-  `a215e3e547a0 <https://github.com/open-power/skiboot/commit/a215e3e547a0>`__ test-ipmi-hiomap:
+   Add read-one-block test
+-  `96ca4e26deb6 <https://github.com/open-power/skiboot/commit/96ca4e26deb6>`__ test-ipmi-hiomap:
+   Add read-two-blocks test
+-  `ea318dbe989f <https://github.com/open-power/skiboot/commit/ea318dbe989f>`__ test-ipmi-hiomap:
+   Add event-before-read
+-  `e4e76c8d2f6c <https://github.com/open-power/skiboot/commit/e4e76c8d2f6c>`__ test-ipmi-hiomap:
+   Add event-during-read test
+-  `e3497461c93b <https://github.com/open-power/skiboot/commit/e3497461c93b>`__ test-ipmi-hiomap:
+   Add write-one-block test
+-  `bf722c0ac561 <https://github.com/open-power/skiboot/commit/bf722c0ac561>`__ test-ipmi-hiomap:
+   Add write-two-blocks test
+-  `4cc5d420eeb4 <https://github.com/open-power/skiboot/commit/4cc5d420eeb4>`__ test-ipmi-hiomap:
+   Add event-before-write test
+-  `55b284e63e7d <https://github.com/open-power/skiboot/commit/55b284e63e7d>`__ test-ipmi-hiomap:
+   Add event-during-write test
+-  `da61b9e8dc1f <https://github.com/open-power/skiboot/commit/da61b9e8dc1f>`__ test-ipmi-hiomap:
+   Add erase-one-block test
+-  `a6f3245eda74 <https://github.com/open-power/skiboot/commit/a6f3245eda74>`__ test-ipmi-hiomap:
+   Add erase-two-blocks test
+-  `6432db36f0b1 <https://github.com/open-power/skiboot/commit/6432db36f0b1>`__ test-ipmi-hiomap:
+   Add event-before-erase test
+-  `7d666e226bd9 <https://github.com/open-power/skiboot/commit/7d666e226bd9>`__ test-ipmi-hiomap:
+   Add event-during-erase
+-  `d69b6567669b <https://github.com/open-power/skiboot/commit/d69b6567669b>`__ test-ipmi-hiomap:
+   Add bad-sequence test
+-  `4f9facdacef9 <https://github.com/open-power/skiboot/commit/4f9facdacef9>`__ test-ipmi-hiomap:
+   Add action-error test
+-  `b20312eb6ee5 <https://github.com/open-power/skiboot/commit/b20312eb6ee5>`__ test-ipmi-hiomap:
+   Add get-flash-info test
+-  `852d38850654 <https://github.com/open-power/skiboot/commit/852d38850654>`__ test-ipmi-hiomap:
+   Add get-info-error test
+-  `21bed4d078d9 <https://github.com/open-power/skiboot/commit/21bed4d078d9>`__ test-ipmi-hiomap:
+   Add get-flash-info-error test
+-  `05e1dabcb97d <https://github.com/open-power/skiboot/commit/05e1dabcb97d>`__ test-ipmi-hiomap:
+   Add create-read-window-error test
+-  `1c97112ba0b9 <https://github.com/open-power/skiboot/commit/1c97112ba0b9>`__ test-ipmi-hiomap:
+   Add create-write-window-error test
+-  `14959a69eeac <https://github.com/open-power/skiboot/commit/14959a69eeac>`__ test-ipmi-hiomap:
+   Add mark-dirty-error test
+-  `4de5c234518b <https://github.com/open-power/skiboot/commit/4de5c234518b>`__ test-ipmi-hiomap:
+   Add flush-error test
+-  `c38fccd32df0 <https://github.com/open-power/skiboot/commit/c38fccd32df0>`__ test-ipmi-hiomap:
+   Add ack-error test
+-  `5e1559af3394 <https://github.com/open-power/skiboot/commit/5e1559af3394>`__ test-ipmi-hiomap:
+   Add erase-error test
+-  `66b4b2e49d46 <https://github.com/open-power/skiboot/commit/66b4b2e49d46>`__ test-ipmi-hiomap:
+   Add ack-malformed tests
+-  `90ae8a0767ce <https://github.com/open-power/skiboot/commit/90ae8a0767ce>`__ test-ipmi-hiomap:
+   Add get-info-malformed tests
+-  `7ae038042951 <https://github.com/open-power/skiboot/commit/7ae038042951>`__ test-ipmi-hiomap:
+   Add get-flash-info-malformed tests
+-  `dba42852b0de <https://github.com/open-power/skiboot/commit/dba42852b0de>`__ test-ipmi-hiomap:
+   Add create-read-window-malformed tests
+-  `564d5e4ba7e4 <https://github.com/open-power/skiboot/commit/564d5e4ba7e4>`__ test-ipmi-hiomap:
+   Add create-write-window-malformed tests
+-  `b812fa3d16ce <https://github.com/open-power/skiboot/commit/b812fa3d16ce>`__ test-ipmi-hiomap:
+   Add mark-dirty-malformed tests
+-  `0ebf921c1a0a <https://github.com/open-power/skiboot/commit/0ebf921c1a0a>`__ test-ipmi-hiomap:
+   Add flush-malformed tests
+-  `4769cb645e20 <https://github.com/open-power/skiboot/commit/4769cb645e20>`__ test-ipmi-hiomap:
+   Add erase-malformed tests
+-  `35a6cbe24717 <https://github.com/open-power/skiboot/commit/35a6cbe24717>`__ test-ipmi-hiomap:
+   Add protocol-recovery-failure-ack test
+-  `ffe09809c035 <https://github.com/open-power/skiboot/commit/ffe09809c035>`__ test-ipmi-hiomap:
+   Add protocol-recovery-failure-get-info test
+-  `0e8e03ee34ba <https://github.com/open-power/skiboot/commit/0e8e03ee34ba>`__ test-ipmi-hiomap:
+   Add protocol-recovery-get-flash-info-failure test
+-  `75622fe738cd <https://github.com/open-power/skiboot/commit/75622fe738cd>`__ test-ipmi-hiomap:
+   Add read-one-block-twice test
+-  `1a8a5c352762 <https://github.com/open-power/skiboot/commit/1a8a5c352762>`__ test-ipmi-hiomap:
+   Add write-one-block-twice test
+-  `2d8b0043aa9d <https://github.com/open-power/skiboot/commit/2d8b0043aa9d>`__ test-ipmi-hiomap:
+   Add erase-one-block-twice test
+-  `381a7e6553d7 <https://github.com/open-power/skiboot/commit/381a7e6553d7>`__ ast-io: Rework
+   ast_sio_is_enabled() test sequence
+-  `6e7145a55afc <https://github.com/open-power/skiboot/commit/6e7145a55afc>`__ astbmc: Try IPMI
+   HIOMAP for P8 (again)
+-  `52be9b85e455 <https://github.com/open-power/skiboot/commit/52be9b85e455>`__ zaius: Add BMC
+   description
+-  `4ff0e16df304 <https://github.com/open-power/skiboot/commit/4ff0e16df304>`__ p8dtu: Enable HIOMAP
+   support
+-  `137b11c77feb <https://github.com/open-power/skiboot/commit/137b11c77feb>`__ p8dtu: Configure BMC
+   graphics
+-  `b7594b26929e <https://github.com/open-power/skiboot/commit/b7594b26929e>`__ astbmc: Enable IPMI
+   HIOMAP for AMI platforms
+-  `cccf5d79de07 <https://github.com/open-power/skiboot/commit/cccf5d79de07>`__ core/flash: Retry
+   requests as necessary in flash_load_resource()
+-  `6225d1192493 <https://github.com/open-power/skiboot/commit/6225d1192493>`__ astbmc: Handle
+   failure to initialise raw flash
+
+Anju T Sudhakar (7):
+
+-  `6d9a87cec05a <https://github.com/open-power/skiboot/commit/6d9a87cec05a>`__ doc/imc: Edit
+   imc.rst documentation to include
+-  `09e912109070 <https://github.com/open-power/skiboot/commit/09e912109070>`__ doc/device-tree:
+   Edit device tree documentation for imc to include trace-node information.
+-  `f3a0fb699040 <https://github.com/open-power/skiboot/commit/f3a0fb699040>`__ doc/opal-api: Edit
+   documentation for IMC opal call to include trace-imc
+-  `5506d8a45882 <https://github.com/open-power/skiboot/commit/5506d8a45882>`__ include/imc: Trace
+   IMC Macro definitions
+-  `fa8f3f3fcead <https://github.com/open-power/skiboot/commit/fa8f3f3fcead>`__ hw/imc: Refactor
+   opal init call for core-imc
+-  `df2a1e579aaa <https://github.com/open-power/skiboot/commit/df2a1e579aaa>`__ hw/imc: Enable opal
+   calls to init/start/stop IMC Trace mode
+-  `027d87475eff <https://github.com/open-power/skiboot/commit/027d87475eff>`__ external/mambo:
+   Mambo hack to add trace-imc nodes in the device-tree
+
+Artem Senichev (1):
+
+-  `eb83850ee1de <https://github.com/open-power/skiboot/commit/eb83850ee1de>`__ platforms/vesnin:
+   Disable PCIe port bifurcation
+
+Cédric Le Goater (1):
+
+-  `bbcbbd3e071f <https://github.com/open-power/skiboot/commit/bbcbbd3e071f>`__ xive: Add calls to
+   save/restore the queues and VPs HW state
+
+Deb McLemore (6):
+
+-  `31231ed300f2 <https://github.com/open-power/skiboot/commit/31231ed300f2>`__ p9dsu: Fix p9dsu
+   default variant
+-  `87517c8737b9 <https://github.com/open-power/skiboot/commit/87517c8737b9>`__ p9dsu: Fix p9dsu
+   slot tables
+-  `83f06eec281d <https://github.com/open-power/skiboot/commit/83f06eec281d>`__ p9dsu: Fix p9dsu
+   default variant
+-  `c8941393f452 <https://github.com/open-power/skiboot/commit/c8941393f452>`__ p9dsu: Fix p9dsu
+   slot tables
+-  `64a16ae05bb2 <https://github.com/open-power/skiboot/commit/64a16ae05bb2>`__ p9dsu: Fix slot
+   labels for p9dsu2u
+-  `c470806a2e5e <https://github.com/open-power/skiboot/commit/c470806a2e5e>`__ p9dsu: Undo slot
+   label name changes
+
+Frederic Barrat (10):
+
+-  `536c8fbf932d <https://github.com/open-power/skiboot/commit/536c8fbf932d>`__ npu2-opencapi:
+   Rework ODL register access
+-  `e621b7b67951 <https://github.com/open-power/skiboot/commit/e621b7b67951>`__ npu2-opencapi: Setup
+   perf counters to detect CRC errors
+-  `9f3cdff99656 <https://github.com/open-power/skiboot/commit/9f3cdff99656>`__ npu2-opencapi:
+   Rename functions used to reset an adapter
+-  `ce9dd46d36d0 <https://github.com/open-power/skiboot/commit/ce9dd46d36d0>`__ npu2-opencapi: Keep
+   ODL and adapter in reset at the same time
+-  `e4efac7d8c90 <https://github.com/open-power/skiboot/commit/e4efac7d8c90>`__ npu2-opencapi: ODL
+   should be in reset when enabled
+-  `d75436f0d3d0 <https://github.com/open-power/skiboot/commit/d75436f0d3d0>`__ npu2-opencapi:
+   Extend delay after releasing reset on adapter
+-  `998911498597 <https://github.com/open-power/skiboot/commit/998911498597>`__ npu2-opencapi: Fix
+   adapter reset when using 2 adapters
+-  `8cf6758e1889 <https://github.com/open-power/skiboot/commit/8cf6758e1889>`__ npu2-hw-procedures:
+   Don’t set iovalid for opencapi devices
+-  `11c5faa66aa0 <https://github.com/open-power/skiboot/commit/11c5faa66aa0>`__ npu2-hw-procedures:
+   Fix zcal in mixed opencapi and nvlink mode
+-  `14a78d5c2e85 <https://github.com/open-power/skiboot/commit/14a78d5c2e85>`__ npu2/hw-procedures:
+   Fix parallel zcal for opencapi
+
+Jeff Scheel (1):
+
+-  `abd17b24a5ae <https://github.com/open-power/skiboot/commit/abd17b24a5ae>`__ doc: Adjusting tags
+   in release notes to eliminate global conflict for singlehtml builds
+
+Joel Stanley (2):
+
+-  `23470f10d0b1 <https://github.com/open-power/skiboot/commit/23470f10d0b1>`__ Revert “astbmc: Try
+   IPMI HIOMAP for P8”
+-  `cd2b103f2488 <https://github.com/open-power/skiboot/commit/cd2b103f2488>`__ Makefile: Check
+   -Wno-stringop-truncation is supported
+
+Mahesh Salgaonkar (4):
+
+-  `017da88b2d05 <https://github.com/open-power/skiboot/commit/017da88b2d05>`__ opal/hmi: Fix double
+   unlock of hmi lock in failure path.
+-  `ca349b836d02 <https://github.com/open-power/skiboot/commit/ca349b836d02>`__ opal/hmi: Don’t
+   retry TOD recovery if it is already in failed state.
+-  `497734984231 <https://github.com/open-power/skiboot/commit/497734984231>`__ opal/hmi: set a flag
+   to inform OS that TOD/TB has failed.
+-  `2c71d7032484 <https://github.com/open-power/skiboot/commit/2c71d7032484>`__ Fix hang in
+   pnv_platform_error_reboot path due to TOD failure.
+
+Michael Neuling (1):
+
+-  `740904858586 <https://github.com/open-power/skiboot/commit/740904858586>`__ xive: Make no_sync
+   parameter affermative in \__xive_set_irq_config()
+
+Michal Suchanek (1):
+
+-  `bef1ddc40813 <https://github.com/open-power/skiboot/commit/bef1ddc40813>`__ libffs: Fix string
+   truncation gcc warning.
+
+Nicholas Piggin (20):
+
+-  `3500a606c6db <https://github.com/open-power/skiboot/commit/3500a606c6db>`__ phb4: remove POWER9N
+   DD1 creset workaround
+-  `3b4ae3a2e2a5 <https://github.com/open-power/skiboot/commit/3b4ae3a2e2a5>`__ xive: remove POWER9N
+   DD1 NVT table size workaround
+-  `0b0d15e3c170 <https://github.com/open-power/skiboot/commit/0b0d15e3c170>`__ Remove POWER9N DD1
+   support
+-  `d27180b55d77 <https://github.com/open-power/skiboot/commit/d27180b55d77>`__ core/cpu: HID update
+   race
+-  `57610a3681bc <https://github.com/open-power/skiboot/commit/57610a3681bc>`__ external/mambo:
+   allow CPU targeting for most debug utils
+-  `0d44d7f7d29d <https://github.com/open-power/skiboot/commit/0d44d7f7d29d>`__ core/init: rename
+   setup_reset_vector
+-  `9e075d75274c <https://github.com/open-power/skiboot/commit/9e075d75274c>`__ core/cpu: do not
+   inline cpu_relax
+-  `9c58bbd720b7 <https://github.com/open-power/skiboot/commit/9c58bbd720b7>`__ core/exceptions:
+   save current MSR in exception frame
+-  `e1d44e8c117f <https://github.com/open-power/skiboot/commit/e1d44e8c117f>`__ asm/head: use HSRR
+   exception registers in FIXUP_ENDIAN
+-  `02aea4c8760a <https://github.com/open-power/skiboot/commit/02aea4c8760a>`__ core/init: rearrange
+   final boot steps
+-  `d25287a167fd <https://github.com/open-power/skiboot/commit/d25287a167fd>`__ core/fast-reboot:
+   improve NMI handling during fast reset
+-  `ebb814a80369 <https://github.com/open-power/skiboot/commit/ebb814a80369>`__ core/init: enable
+   machine check on secondaries
+-  `75669cb37067 <https://github.com/open-power/skiboot/commit/75669cb37067>`__ asm/head: provide
+   asm support for interrupts to be returned from
+-  `37baa9731d0d <https://github.com/open-power/skiboot/commit/37baa9731d0d>`__ core/fast-reboot:
+   fast reboot specific sreset patch
+-  `4ebb78cffda8 <https://github.com/open-power/skiboot/commit/4ebb78cffda8>`__ asm/head: sreset
+   handler remove FIXUP_ENDIAN
+-  `8a43bf86b7d4 <https://github.com/open-power/skiboot/commit/8a43bf86b7d4>`__ core/exceptions:
+   implement an exception handler for non-powersave sresets
+-  `22524e901744 <https://github.com/open-power/skiboot/commit/22524e901744>`__ core/exceptions:
+   allow recoverable sreset exceptions
+-  `5d86cebd5368 <https://github.com/open-power/skiboot/commit/5d86cebd5368>`__ core/exceptions:
+   implement support for MCE interrupts in powersave
+-  `c51c7a5df601 <https://github.com/open-power/skiboot/commit/c51c7a5df601>`__ core/cpu: HID update
+   race
+-  `450b429feb43 <https://github.com/open-power/skiboot/commit/450b429feb43>`__ asm/head: move
+   unnecessary code out of head
+
+Oliver O’Halloran (28):
+
+-  `08981e62e1d9 <https://github.com/open-power/skiboot/commit/08981e62e1d9>`__ phb4: Rework BDFN
+   filtering in phb4_set_pe()
+-  `2f5d15f167b0 <https://github.com/open-power/skiboot/commit/2f5d15f167b0>`__ phb4: Remove
+   pointless NULL checks
+-  `e19f14e3134b <https://github.com/open-power/skiboot/commit/e19f14e3134b>`__ phb4: Eliminate
+   p->rte_cache
+-  `a3a64a4b8737 <https://github.com/open-power/skiboot/commit/a3a64a4b8737>`__ phb4: Eliminate
+   peltv_cache
+-  `639f67285c2c <https://github.com/open-power/skiboot/commit/639f67285c2c>`__ phb4: Update some
+   comments
+-  `3eadafbd35ae <https://github.com/open-power/skiboot/commit/3eadafbd35ae>`__ hdata/test: Fix up
+   linux,sml-base property
+-  `fa3dee2a63e6 <https://github.com/open-power/skiboot/commit/fa3dee2a63e6>`__ hdata/test: Add
+   OP920 HDAT test data
+-  `f35a3c376a44 <https://github.com/open-power/skiboot/commit/f35a3c376a44>`__ hdata/memory: Remove
+   find_shared()
+-  `4822a7ba9d33 <https://github.com/open-power/skiboot/commit/4822a7ba9d33>`__ hdata/memory: Add
+   NVDIMM support
+-  `9b67792c3801 <https://github.com/open-power/skiboot/commit/9b67792c3801>`__ hw/phb4: Fix
+   indentation of brdgCtl
+-  `43f11d51e601 <https://github.com/open-power/skiboot/commit/43f11d51e601>`__ platforms/zz:
+   Re-enable LXVPD slot information parsing
+-  `1941d3f26373 <https://github.com/open-power/skiboot/commit/1941d3f26373>`__ platforms/romulus:
+   Also support talos
+-  `1c3baae4f2b3 <https://github.com/open-power/skiboot/commit/1c3baae4f2b3>`__ hdata/iohub: Look
+   for IOVPD on P9
+-  `0ec1e37004da <https://github.com/open-power/skiboot/commit/0ec1e37004da>`__ hw/phb4: Look for
+   the hub-id from in the PBCQ node
+-  `14372fc9fb60 <https://github.com/open-power/skiboot/commit/14372fc9fb60>`__ core/pci: Increase
+   the max slot string size
+-  `99937b943845 <https://github.com/open-power/skiboot/commit/99937b943845>`__ core/pcie-slot: Set
+   power state from the PWRCTL flag
+-  `efc568c1e30b <https://github.com/open-power/skiboot/commit/efc568c1e30b>`__ fsp/lxvpd: Print
+   more LXVPD slot information
+-  `0c86fef7e502 <https://github.com/open-power/skiboot/commit/0c86fef7e502>`__ firenze-pci: Always
+   init slot info from LXVPD
+-  `1ef5a64b85d5 <https://github.com/open-power/skiboot/commit/1ef5a64b85d5>`__ core/pcie-slot:
+   Better explain suprise_check
+-  `84aa25921a09 <https://github.com/open-power/skiboot/commit/84aa25921a09>`__ core/pcie-slot:
+   Don’t bail early in the power on case
+-  `70edcbb4b39d <https://github.com/open-power/skiboot/commit/70edcbb4b39d>`__ hw/phb4: Skip FRESET
+   PERST when coming from CRESET
+-  `e89d3f32d216 <https://github.com/open-power/skiboot/commit/e89d3f32d216>`__ hw/phb4: Remove
+   FRESET presence check
+-  `b8b4c79d4419 <https://github.com/open-power/skiboot/commit/b8b4c79d4419>`__ hw/phb4: Factor out
+   PERST control
+-  `722cf1c2ed56 <https://github.com/open-power/skiboot/commit/722cf1c2ed56>`__ hw/phb4: Drop
+   FRESET_DEASSERT_DELAY state
+-  `a31085d7d432 <https://github.com/open-power/skiboot/commit/a31085d7d432>`__ core/i2c: Add
+   request state tracking
+-  `d290b244efbc <https://github.com/open-power/skiboot/commit/d290b244efbc>`__ core/i2c: Poll on
+   request state in i2c_request_send()
+-  `319e7d935f13 <https://github.com/open-power/skiboot/commit/319e7d935f13>`__ core/i2c: split
+   i2c_request_send()
+-  `517f088a8e39 <https://github.com/open-power/skiboot/commit/517f088a8e39>`__ platforms/firenze:
+   Rework I2C controller fixups
+
+Reza Arbab (18):
+
+-  `aa56d9a2abdb <https://github.com/open-power/skiboot/commit/aa56d9a2abdb>`__ Remove duplicate
+   npu2-common.o from $(HW_OBJS)
+-  `552cb9e371d8 <https://github.com/open-power/skiboot/commit/552cb9e371d8>`__ npu2: Remove dead
+   code from npu2_cfg_write_bar()
+-  `69ca8a8ff7a9 <https://github.com/open-power/skiboot/commit/69ca8a8ff7a9>`__ npu2: Remove unused
+   npu2::bdf2pe_cache
+-  `2d12672a812f <https://github.com/open-power/skiboot/commit/2d12672a812f>`__ npu2: Remove unused
+   npu2::lxive_cache
+-  `237882bfc84f <https://github.com/open-power/skiboot/commit/237882bfc84f>`__ npu2: Remove unused
+   npu2_dev::procedure_data
+-  `b496cab97086 <https://github.com/open-power/skiboot/commit/b496cab97086>`__ npu2: Remove unused
+   npu2_dev_nvlink::vendor_cap
+-  `cd5ddbe3b40c <https://github.com/open-power/skiboot/commit/cd5ddbe3b40c>`__ npu2: Fix missing
+   iteration in tce kill loop
+-  `3f79ab6cdb4d <https://github.com/open-power/skiboot/commit/3f79ab6cdb4d>`__ npu2: Remove
+   redundant assignment to p->phb_nvlink.scan_map
+-  `38cf215cb505 <https://github.com/open-power/skiboot/commit/38cf215cb505>`__ npu2: Replace open
+   coded dt_find_by_name_addr()
+-  `9ef153f6f013 <https://github.com/open-power/skiboot/commit/9ef153f6f013>`__ core/lock: Stop
+   drop_my_locks() from always causing abort
+-  `d3803711f8a9 <https://github.com/open-power/skiboot/commit/d3803711f8a9>`__ Add PVR_TYPE_P9P
+-  `1ab11ac8b4b9 <https://github.com/open-power/skiboot/commit/1ab11ac8b4b9>`__ core/lock: Stop
+   drop_my_locks() from always causing abort
+-  `855465aa7804 <https://github.com/open-power/skiboot/commit/855465aa7804>`__ devicetree: Fix
+   syntax error in power9-phb4.dts
+-  `85c4c823ab11 <https://github.com/open-power/skiboot/commit/85c4c823ab11>`__ devicetree: Fix typo
+   in power9-phb4.dts
+-  `eecd9083f1bd <https://github.com/open-power/skiboot/commit/eecd9083f1bd>`__ devicetree: Add nx
+   node to power9-phb4.dts
+-  `13926b45897b <https://github.com/open-power/skiboot/commit/13926b45897b>`__ devicetree: Move
+   power9-phb4.dts
+-  `50d1a089deef <https://github.com/open-power/skiboot/commit/50d1a089deef>`__ devicetree: Add
+   p9-simics.dts
+-  `9f9dd8d71de9 <https://github.com/open-power/skiboot/commit/9f9dd8d71de9>`__ devicetree: Add
+   Makefile to build dtb binaries
+
+Russell Currey (2):
+
+-  `8d8a9ca30453 <https://github.com/open-power/skiboot/commit/8d8a9ca30453>`__ external/mambo:
+   Populate kernel-base-address in the DT
+-  `edf7e841ff9d <https://github.com/open-power/skiboot/commit/edf7e841ff9d>`__ external/mambo:
+   Error out if kernel is too large
+
+Santosh Sivaraj (2):
+
+-  `3ac2db0a83e7 <https://github.com/open-power/skiboot/commit/3ac2db0a83e7>`__ flash: Add support
+   for async decompression
+-  `c86fb12c07a6 <https://github.com/open-power/skiboot/commit/c86fb12c07a6>`__ imc/catalog:
+   Decompress catalog asynchronously
+
+Shilpasri G Bhat (4):
+
+-  `a96739c6c1cd <https://github.com/open-power/skiboot/commit/a96739c6c1cd>`__ powercap: occ: Fix
+   the powercapping range allowed for user
+-  `0fe8ecd59fc0 <https://github.com/open-power/skiboot/commit/0fe8ecd59fc0>`__ powercap: occ: Fix
+   the powercapping range allowed for user
+-  `27e4943eade2 <https://github.com/open-power/skiboot/commit/27e4943eade2>`__ fast-reboot: occ:
+   Remove ‘freq-domain-mask’ from fast-reboot path
+-  `961b7128ebd8 <https://github.com/open-power/skiboot/commit/961b7128ebd8>`__ fast-reboot: occ:
+   Call occ_pstates_init() on fast-reset on all machines
+
+Stewart Smith (38):
+
+-  `44aa41061a9f <https://github.com/open-power/skiboot/commit/44aa41061a9f>`__ qemu: bt device
+   isn’t always hanging off /
+-  `59a21fc87f54 <https://github.com/open-power/skiboot/commit/59a21fc87f54>`__ sparse: Make tree
+   ‘constant is so big’ warning clean
+-  `625f9ac034f1 <https://github.com/open-power/skiboot/commit/625f9ac034f1>`__ zz: platform_ocapi
+   can be static
+-  `ec65b9ab4c4c <https://github.com/open-power/skiboot/commit/ec65b9ab4c4c>`__ zaius: zaius_ocapi
+   can be static
+-  `c2c426ef668b <https://github.com/open-power/skiboot/commit/c2c426ef668b>`__ doc: clarify
+   OPAL_RTC_READ return values
+-  `3170270be92a <https://github.com/open-power/skiboot/commit/3170270be92a>`__ firmware-versions:
+   Add test case for parsing VERSION
+-  `6bb72e8f7b9d <https://github.com/open-power/skiboot/commit/6bb72e8f7b9d>`__ firmware-versions:
+   Add test case for parsing VERSION
+-  `816a1d7bb2ef <https://github.com/open-power/skiboot/commit/816a1d7bb2ef>`__ pflash: Support
+   encoding/decoding ECC’d partitions
+-  `0647f2a2c4eb <https://github.com/open-power/skiboot/commit/0647f2a2c4eb>`__ skiboot v6.2.1
+   release notes
+-  `75382eb708c0 <https://github.com/open-power/skiboot/commit/75382eb708c0>`__ skiboot v6.2.1
+   release notes
+-  `7ac85e4517cc <https://github.com/open-power/skiboot/commit/7ac85e4517cc>`__ skiboot v6.0.17
+   release notes
+-  `40b377a01ef5 <https://github.com/open-power/skiboot/commit/40b377a01ef5>`__ hw/test: generalise
+   makefile
+-  `81847dd347ef <https://github.com/open-power/skiboot/commit/81847dd347ef>`__ doc: fix definition
+   lists in opal-imc-counters
+-  `f3ad5bb09249 <https://github.com/open-power/skiboot/commit/f3ad5bb09249>`__ sparse: symbol
+   ‘sbe_timer_lock’ was not declared. Should it be static?
+-  `96c0ec2ab78b <https://github.com/open-power/skiboot/commit/96c0ec2ab78b>`__ sparse: symbol
+   ‘xive_buddy_lock/xive_vp_buddy’ was not declared. Should it be static?
+-  `f9b79a611501 <https://github.com/open-power/skiboot/commit/f9b79a611501>`__ sparse: symbol
+   ’NPU2_PHY_*’ was not declared. Should it be static?
+-  `655e0bc6865c <https://github.com/open-power/skiboot/commit/655e0bc6865c>`__ sparse: symbol
+   ’procedure_*’ was not declared. Should it be static?
+-  `039d184dda21 <https://github.com/open-power/skiboot/commit/039d184dda21>`__ sparse: symbols in
+   imc.c weren’t declared, Should they be static?
+-  `3b8b7e8c4e78 <https://github.com/open-power/skiboot/commit/3b8b7e8c4e78>`__ sparse: symbol
+   ‘*bar*’ was not declared. Should it be static?
+-  `0eea56b06b4f <https://github.com/open-power/skiboot/commit/0eea56b06b4f>`__ Don’t use variable
+   length arrays in exception code
+-  `ee01ef4ed82a <https://github.com/open-power/skiboot/commit/ee01ef4ed82a>`__ i2c: Fix sparse
+   warnings for type assignment
+-  `428cb852e3a0 <https://github.com/open-power/skiboot/commit/428cb852e3a0>`__ qemu: bt device
+   isn’t always hanging off /
+-  `3ef409d43de9 <https://github.com/open-power/skiboot/commit/3ef409d43de9>`__ doc:
+   s/stb_init()/secureboot_init()/ to match reality
+-  `2b96407921a6 <https://github.com/open-power/skiboot/commit/2b96407921a6>`__ opal-ci: Drop
+   CentOS6 support
+-  `6c36257bf32f <https://github.com/open-power/skiboot/commit/6c36257bf32f>`__ opal-ci: Drop
+   unneded reference to ubuntu 12.04
+-  `e4a06f098c4f <https://github.com/open-power/skiboot/commit/e4a06f098c4f>`__ opal-ci: drop fedora
+   28
+-  `7cd8402c3bec <https://github.com/open-power/skiboot/commit/7cd8402c3bec>`__ Drop old Coverity
+   jobs (we build via separate .travis.yml in a branch)
+-  `043e85bf7477 <https://github.com/open-power/skiboot/commit/043e85bf7477>`__
+   hw/ipmi/test/run-fru: Fix string truncation warning, enhance test
+-  `fedb949b7179 <https://github.com/open-power/skiboot/commit/fedb949b7179>`__ Fix broken
+   opal-ci/build-fedora-rawhide.sh symlink
+-  `c0faa9232168 <https://github.com/open-power/skiboot/commit/c0faa9232168>`__ hdata: Add
+   protection against corrupt ntuples structure
+-  `a2c13f1d6119 <https://github.com/open-power/skiboot/commit/a2c13f1d6119>`__ hdata_to_dt: fail
+   “gracefully” on fatal op_display()
+-  `bee7be6ab780 <https://github.com/open-power/skiboot/commit/bee7be6ab780>`__ hdata: Prevent NULL
+   dereference on duplicate slot map info
+-  `d0e56d97d4cd <https://github.com/open-power/skiboot/commit/d0e56d97d4cd>`__ ci: Remove
+   debian-jessie boot test.
+-  `cb87cf17279b <https://github.com/open-power/skiboot/commit/cb87cf17279b>`__ ci: qemu boot tests
+   should use built skiboot
+-  `133cc8cea258 <https://github.com/open-power/skiboot/commit/133cc8cea258>`__ ci/fedora29:
+   –allowerasing to work around conflicting packages
+-  `11374f20e8f1 <https://github.com/open-power/skiboot/commit/11374f20e8f1>`__ Bump allowed stack
+   frame size for unit tests/host programs
+-  `3e0eef2e9a92 <https://github.com/open-power/skiboot/commit/3e0eef2e9a92>`__ Force noinline for
+   pci_add_(one_)device_node(s)()
+-  `050d8165ab05 <https://github.com/open-power/skiboot/commit/050d8165ab05>`__ skiboot v6.3-rc1
+   release notes
+
+Timothy Pearson (1):
+
+-  `8b26e29acbc8 <https://github.com/open-power/skiboot/commit/8b26e29acbc8>`__ Retry link training
+   at PCIe GEN1 if presence detected but training repeatedly failed
+
+Vaibhav Jain (8):
+
+-  `658c39dda366 <https://github.com/open-power/skiboot/commit/658c39dda366>`__ opal: Update
+   opal_del_host_sync_notifier() to accept ’void \*data’
+-  `9d2d0115eaca <https://github.com/open-power/skiboot/commit/9d2d0115eaca>`__ core/pci: Introduce
+   a new pci_slot_op named completed_sm_run()
+-  `763f397d5be7 <https://github.com/open-power/skiboot/commit/763f397d5be7>`__ capp/phb: Introduce
+   ‘struct capp’ to hold capp related info in ‘struct phb’
+-  `1a87f8f97175 <https://github.com/open-power/skiboot/commit/1a87f8f97175>`__ phb4/capp: Update
+   and re-factor phb4_set_capi_mode()
+-  `78ccc722c2fd <https://github.com/open-power/skiboot/commit/78ccc722c2fd>`__ capp/phb4: Force
+   CAPP to PCIe mode during kernel shutdown
+-  `52fa634e2152 <https://github.com/open-power/skiboot/commit/52fa634e2152>`__ capp/phb4: Introduce
+   PHB4 flag, PHB4_CAPP_DISABLE to disable CAPP
+-  `3dc87605be7a <https://github.com/open-power/skiboot/commit/3dc87605be7a>`__ phb4/capp: Implement
+   sequence to disable CAPP and enable fast-reset
+-  `d572d3a72fa2 <https://github.com/open-power/skiboot/commit/d572d3a72fa2>`__ capp/phb4: Prevent
+   HMI from getting triggered when disabling CAPP
+
+Vasant Hegde (30):
+
+-  `06ef9bd2d9a6 <https://github.com/open-power/skiboot/commit/06ef9bd2d9a6>`__ skiboot v6.0.15
+   release notes
+-  `7516e3827e50 <https://github.com/open-power/skiboot/commit/7516e3827e50>`__ core/ipmi: Improve
+   error message
+-  `554062d7fe5a <https://github.com/open-power/skiboot/commit/554062d7fe5a>`__ core/opal: Print PIR
+   value in exit path
+-  `67fc150c82a7 <https://github.com/open-power/skiboot/commit/67fc150c82a7>`__ skiboot v6.0.16
+   release notes
+-  `ab10b2e62e58 <https://github.com/open-power/skiboot/commit/ab10b2e62e58>`__ core/ipmi: Improve
+   error message
+-  `d07a5622a9e1 <https://github.com/open-power/skiboot/commit/d07a5622a9e1>`__ core/opal: Print PIR
+   value in exit path
+-  `b1d421875b4c <https://github.com/open-power/skiboot/commit/b1d421875b4c>`__ ipmi/power: Fix
+   system reboot issue
+-  `dd9b61cdfca7 <https://github.com/open-power/skiboot/commit/dd9b61cdfca7>`__ hdata/i2c: Reduce
+   severity of log message
+-  `b570fb646289 <https://github.com/open-power/skiboot/commit/b570fb646289>`__ libflash/ecc: Fix
+   compilation warning
+-  `cadaf7c36e83 <https://github.com/open-power/skiboot/commit/cadaf7c36e83>`__ libflash/ecc: Fix
+   compilation warning
+-  `fdd27ca27231 <https://github.com/open-power/skiboot/commit/fdd27ca27231>`__ hw/bt: Fix message
+   retry handler
+-  `01f977c33d46 <https://github.com/open-power/skiboot/commit/01f977c33d46>`__ hw/bt: Add backend
+   interface to disable ipmi message retry option
+-  `c526a280dcd1 <https://github.com/open-power/skiboot/commit/c526a280dcd1>`__ hdata/memory: Fix
+   warning message
+-  `4f0ceb63e951 <https://github.com/open-power/skiboot/commit/4f0ceb63e951>`__ hdata/memory:
+   Removed share-id property
+-  `61978c2c54d0 <https://github.com/open-power/skiboot/commit/61978c2c54d0>`__ hw/bt: Introduce
+   separate list for synchronous messages
+-  `968c30905d7a <https://github.com/open-power/skiboot/commit/968c30905d7a>`__ core/ipmi: Add ipmi
+   sync messages to top of the list
+-  `c0ab7b45db3d <https://github.com/open-power/skiboot/commit/c0ab7b45db3d>`__ hw/bt: Do not
+   disable ipmi message retry during OPAL boot
+-  `2e2bf87b42f7 <https://github.com/open-power/skiboot/commit/2e2bf87b42f7>`__ ipmi/power: Fix
+   system reboot issue
+-  `73fa7be132a4 <https://github.com/open-power/skiboot/commit/73fa7be132a4>`__ hw/bt: Fix message
+   retry handler
+-  `44f90875712f <https://github.com/open-power/skiboot/commit/44f90875712f>`__ hw/bt: Add backend
+   interface to disable ipmi message retry option
+-  `788c9ac2b926 <https://github.com/open-power/skiboot/commit/788c9ac2b926>`__ hw/bt: Introduce
+   separate list for synchronous messages
+-  `28f5fe3a6edc <https://github.com/open-power/skiboot/commit/28f5fe3a6edc>`__ core/ipmi: Add ipmi
+   sync messages to top of the list
+-  `af5c2978dbcd <https://github.com/open-power/skiboot/commit/af5c2978dbcd>`__ hw/bt: Do not
+   disable ipmi message retry during OPAL boot
+-  `5da21e2cc79d <https://github.com/open-power/skiboot/commit/5da21e2cc79d>`__ skiboot v6.2.2
+   release notes
+-  `6aa3bd8ab6ad <https://github.com/open-power/skiboot/commit/6aa3bd8ab6ad>`__ skiboot v6.0.18
+   release notes
+-  `261ca8e779e5 <https://github.com/open-power/skiboot/commit/261ca8e779e5>`__ skiboot v6.2.2
+   release notes
+-  `2ba5ce84a197 <https://github.com/open-power/skiboot/commit/2ba5ce84a197>`__ Update skiboot
+   stable tree rules
+-  `4456616272a4 <https://github.com/open-power/skiboot/commit/4456616272a4>`__ skiboot v6.0.19
+   release notes
+-  `92a5c57a14e2 <https://github.com/open-power/skiboot/commit/92a5c57a14e2>`__ skiboot v6.2.3
+   release notes
+-  `08de14aaa937 <https://github.com/open-power/skiboot/commit/08de14aaa937>`__ core/ipmi: Print
+   correct netfn value
+
+Package: vesnin-xml
+-------------------
+
+`Repository <https://github.com/open-power/vesnin-xml>`__
+
+.. _v2.3-rc1-patches-5:
+
+Patches
+~~~~~~~
+
+.. _v2.3-rc1-commits-5:
+
+Commits
+~~~~~~~
+
+Artem Senichev (2):
+
+-  `6549b6d2bf42 <https://github.com/open-power/vesnin-xml/commit/6549b6d2bf42>`__ Disable PCIe port
+   bifurcation
+-  `f44f8808fc7c <https://github.com/open-power/vesnin-xml/commit/f44f8808fc7c>`__ Fix
+   IBSCOM_MCS_BASE_ADDR formatting
+
+Package: witherspoon-xml
+------------------------
+
+`Repository <https://github.com/open-power/witherspoon-xml>`__
+
+.. _v2.3-rc1-patches-6:
+
+Patches
+~~~~~~~
+
+.. _v2.3-rc1-commits-6:
+
+Commits
+~~~~~~~
+
+Bill Hoffa (1):
+
+-  `ed1f0ebe2e2e <https://github.com/open-power/witherspoon-xml/commit/ed1f0ebe2e2e>`__ The
+   CONFIG_APPLY attribute needs a default value
+
+Erich Hauptli (2):
+
+-  `c47cddbcd13b <https://github.com/open-power/witherspoon-xml/commit/c47cddbcd13b>`__ Picked up
+   PROC_COMPAT\* attribute
+-  `00f0727053e8 <https://github.com/open-power/witherspoon-xml/commit/00f0727053e8>`__ Fixing GPU
+   I2C Addresses
diff --git a/doc/release-notes/v2.3-rc2.rst b/doc/release-notes/v2.3-rc2.rst
new file mode 100644
index 0000000..9a86657
--- /dev/null
+++ b/doc/release-notes/v2.3-rc2.rst
@@ -0,0 +1,208 @@
+Release Notes for OpenPower Firmware v2.3-rc2
+=============================================
+
+op-build v2.3-rc2 was released on Friday April 5th, 2019. It will become the new stable release of
+op-build, following on from v2.2, first released on March 9th, 2019.
+
+The op-build v2.3 release cycle is a uniquely shorter one as we’ve been working on getting ready to
+have a more reliably predictable release schedule going for future releases.
+
+op-build v2.3-rc2 contains all the fixes as of op-build v2.0.15, and we expect to continue to do
+stable 2.0.y releases of v2.0 into the forseeable future.
+
+Please note that this is a RELEASE CANDIDATE and not the final v2.3 release. We expect to do a final
+v2.3 tagged release early April 2019. Please test this release candidate heavily!
+
+Known Bugs
+----------
+
+We have one known bug (carried over from rc1) that are currently release blockers for the final
+v2.3.
+
+-  There exists a bug where Control-C behaviour in the petitboot shell has changed, which may cause
+   some test scripts to get confused.
+
+Fixed Bugs
+----------
+
+One of the two bugs listed in “known bugs” for rc1 has been fixed:
+
+-  There exists a bug where boot devices *may* not show up in petitboot until “Rescan Devices” is
+   selected.
+
+Updated Packages
+----------------
+
++----------------+------------------+---------------+---------------------------------------------+
+| Package        | Old Version      | New Version   | Platforms                                   |
++================+==================+===============+=============================================+
+| hcode          | hw032919a.940    | hw040319a.940 | witherspoon, p9dsu, zaius, romulus          |
++----------------+------------------+---------------+---------------------------------------------+
+| hostboot       | ca03643dd893     | e5622fb032dc  | witherspoon, p9dsu, zaius, romulus          |
++----------------+------------------+---------------+---------------------------------------------+
+| hostboot-p8    | c2074ad87972     | dc218d94c57b9 | habanero, garrison, barreleye, firestone,   |
+|                |                  |               | palmetto, vesnin                            |
++----------------+------------------+---------------+---------------------------------------------+
+| linux          | 4.19.30          | 5.0.5         | witherspoon, p9dsu, zaius, habanero,        |
+|                |                  |               | firenze, garrison, barreleye, pseries,      |
+|                |                  |               | opal, firestone, palmetto, vesnin, zz,      |
+|                |                  |               | romulus                                     |
++----------------+------------------+---------------+---------------------------------------------+
+| linux-headers  | 4.19.30          | 5.0.5         | witherspoon, p9dsu, zaius, habanero,        |
+|                |                  |               | firenze, garrison, barreleye, pseries,      |
+|                |                  |               | opal, firestone, palmetto, vesnin, zz,      |
+|                |                  |               | romulus                                     |
++----------------+------------------+---------------+---------------------------------------------+
+| petitboot      | v1.10.2          | v1.10.3       | witherspoon, p9dsu, zaius, habanero,        |
+|                |                  |               | firenze, garrison, barreleye, pseries,      |
+|                |                  |               | opal, firestone, palmetto, vesnin, zz,      |
+|                |                  |               | romulus                                     |
++----------------+------------------+---------------+---------------------------------------------+
+
+Package: hcode
+--------------
+
+`Repository <https://github.com/open-power/hcode>`__
+
+Patches
+~~~~~~~
+
+Commits
+~~~~~~~
+
+hostboot (2):
+
+-  `f89e3fc16469 <https://github.com/open-power/hcode/commit/f89e3fc16469>`__ Release tag
+   information updated for hw040219a.940
+-  `2e3a283588c1 <https://github.com/open-power/hcode/commit/2e3a283588c1>`__ Release tag
+   information updated for hw040319a.940
+
+Package: hostboot
+-----------------
+
+`Repository <https://github.com/open-power/hostboot>`__
+
+.. _v2.3-rc2-patches-1:
+
+Patches
+~~~~~~~
+
+.. _v2.3-rc2-commits-1:
+
+Commits
+~~~~~~~
+
+Andre A. Marin (1):
+
+-  `ee76c2ca5927 <https://github.com/open-power/hostboot/commit/ee76c2ca5927>`__ Fix c_str and pos
+   DIMM specialization
+
+Andre Marin (1):
+
+-  `8daf280f7d24 <https://github.com/open-power/hostboot/commit/8daf280f7d24>`__ Fix true_type and
+   false\_ type typdef with integral_constant
+
+Caleb Palmer (1):
+
+-  `f7937e802748 <https://github.com/open-power/hostboot/commit/f7937e802748>`__ PRD: Fix isEccSp
+   capture data check
+
+Chen Du (1):
+
+-  `5da79e14c316 <https://github.com/open-power/hostboot/commit/5da79e14c316>`__ Get ring override
+   failing
+
+Christian Geddes (4):
+
+-  `9882fe3c773b <https://github.com/open-power/hostboot/commit/9882fe3c773b>`__ Set REL_POS to 0 on
+   all DIMM target in simics Axone
+-  `215eaa2074f5 <https://github.com/open-power/hostboot/commit/215eaa2074f5>`__ Stop overwriting
+   OCMB vpd info in standalone and handle DDIMM modules
+-  `9fd0af32313c <https://github.com/open-power/hostboot/commit/9fd0af32313c>`__ Set
+   ATTR_MSS_INTERLEAVE_ENABLE to be 0xAF to allow all grouping sizes
+-  `16378af2527d <https://github.com/open-power/hostboot/commit/16378af2527d>`__ Compile Explorer
+   MSS libs in our istepsmss lib
+
+Corey Swenson (2):
+
+-  `201a39f54be6 <https://github.com/open-power/hostboot/commit/201a39f54be6>`__ Add part callout
+   for the Backup Power Module
+-  `e5622fb032dc <https://github.com/open-power/hostboot/commit/e5622fb032dc>`__ Insufficient
+   Resources check needs to handle NVDIMM logic
+
+Dan Crowell (1):
+
+-  `54178321414b <https://github.com/open-power/hostboot/commit/54178321414b>`__ Constants for
+   future DIMMs
+
+Ilya Smirnov (1):
+
+-  `25c1b412b86a <https://github.com/open-power/hostboot/commit/25c1b412b86a>`__ Process Core and EQ
+   Gard Records in MPIPL Path
+
+Jennifer A. Stofer (1):
+
+-  `12b139b58521 <https://github.com/open-power/hostboot/commit/12b139b58521>`__ Revert “P9 Xbus/DMI
+   CM Workaround”
+
+Mike Baiocchi (1):
+
+-  `1b5381224824 <https://github.com/open-power/hostboot/commit/1b5381224824>`__ Cleanup UCD Update
+   Algorithm Code
+
+Murulidhar Nataraju (1):
+
+-  `ed1208121086 <https://github.com/open-power/hostboot/commit/ed1208121086>`__ Istep 18 - MPIPL on
+   OPAL System update
+
+Nick Bofferding (1):
+
+-  `ec86a5683941 <https://github.com/open-power/hostboot/commit/ec86a5683941>`__ Decrease WOFDATA
+   partition by 1 MB until HBI space can be reduced
+
+Package: occ
+------------
+
+`Repository <https://github.com/open-power/occ>`__
+
+.. _v2.3-rc2-patches-2:
+
+Patches
+~~~~~~~
+
+.. _v2.3-rc2-commits-2:
+
+Commits
+~~~~~~~
+
+No changes.
+
+Package: petitboot
+------------------
+
+`Repository <https://github.com/open-power/petitboot>`__
+
+.. _v2.3-rc2-patches-3:
+
+Patches
+~~~~~~~
+
+.. _v2.3-rc2-commits-3:
+
+Commits
+~~~~~~~
+
+Samuel Mendoza-Jonas (6):
+
+-  `df1a234c15fb <https://github.com/open-power/petitboot/commit/df1a234c15fb>`__ lib/system: Add
+   cryptsetup utility
+-  `ba8144f917f5 <https://github.com/open-power/petitboot/commit/ba8144f917f5>`__ lib/process: Add
+   option to pipe to process stdin
+-  `5f8fa2c151b8 <https://github.com/open-power/petitboot/commit/5f8fa2c151b8>`__ lib: Add
+   AUTH_MSG_DECRYPT
+-  `f583f0cf35fc <https://github.com/open-power/petitboot/commit/f583f0cf35fc>`__ discover:
+   Recognise and open LUKS encrypted partitions
+-  `1ad18bf128c4 <https://github.com/open-power/petitboot/commit/1ad18bf128c4>`__ ui/ncurses: Add
+   prompt for LUKS device password
+-  `1cd261748c00 <https://github.com/open-power/petitboot/commit/1cd261748c00>`__ utils/pb-console:
+   Use -m to run shell in own process group
diff --git a/doc/release-notes/v2.3.rst b/doc/release-notes/v2.3.rst
new file mode 100644
index 0000000..924430c
--- /dev/null
+++ b/doc/release-notes/v2.3.rst
@@ -0,0 +1,1877 @@
+Release Notes for OpenPower Firmware v2.3
+=========================================
+
+op-build v2.3 was released on Tuesday May 21st, 2019. It is the new stable release of op-build,
+following on from v2.2, first released on March 8th, 2019.
+
+op-build v2.3 contains all the fixes as of op-build v2.0.15, and we expect to continue to do stable
+2.0.y releases of v2.0 into the forseeable future. We do not expect to do any stable releases of
+v2.2.
+
+The v2.3 release cycle has been short yet still contains some notable changes.
+
+Over op-build v2.2, this release contains the following changes:
+
+Removed platforms
+-----------------
+
+-  openpower_mambo (superseded by the generic ‘opal’ defconfig, aimed towards use with simulators)
+-  witherspoon_dev (superseded by just using the generic witherspoon defconfig)
+
+New platforms
+-------------
+
+-  opal
+
+Since v2.3-rc2: - p8dtu
+
+Updated Packages since v2.3-rc2
+-------------------------------
+
++------------+-------------------+-----------------+----------------------------------------------+
+| Package    | Old Version       | New Version     | Platforms                                    |
++============+===================+=================+==============================================+
+| hcode      | hw040319a.940     | hw041519a.opv23 | witherspoon, p9dsu, zaius, romulus           |
++------------+-------------------+-----------------+----------------------------------------------+
+| hostboot   | e5622fb032dc      | ca03643dd893    | witherspoon, p9dsu, zaius, romulus           |
++------------+-------------------+-----------------+----------------------------------------------+
+| hostboot-b | hw021419a.930     | hw041519a.opv23 | witherspoon, p9dsu, zaius, habanero,         |
+| inaries    |                   |                 | garrison, barreleye, firestone, palmetto,    |
+|            |                   |                 | vesnin, romulus                              |
++------------+-------------------+-----------------+----------------------------------------------+
+| linux      | 5.0.5             | 5.0.7           | witherspoon, p9dsu, zaius, habanero,         |
+|            |                   |                 | firenze, garrison, barreleye, pseries, opal, |
+|            |                   |                 | firestone, palmetto, vesnin, zz, romulus     |
++------------+-------------------+-----------------+----------------------------------------------+
+| linux-head | 5.0.5             | 5.0.7           | witherspoon, p9dsu, zaius, habanero,         |
+| ers        |                   |                 | firenze, garrison, barreleye, pseries, opal, |
+|            |                   |                 | firestone, palmetto, vesnin, zz, romulus     |
++------------+-------------------+-----------------+----------------------------------------------+
+| skiboot    | v6.3-rc1          | v6.3.1          | witherspoon, p9dsu, zaius, habanero,         |
+|            |                   |                 | firenze, garrison, barreleye, pseries, opal, |
+|            |                   |                 | firestone, palmetto, vesnin, zz, romulus     |
++------------+-------------------+-----------------+----------------------------------------------+
+
+Updated Packages since v2.2
+---------------------------
+
++-------------+----------------+-----------------+------------------------------------------------+
+| Package     | Old Version    | New Version     | Platforms                                      |
++=============+================+=================+================================================+
+| ethtool     | 4.16           | 4.19            | witherspoon, p9dsu, zaius, habanero, firenze,  |
+|             |                |                 | garrison, barreleye, pseries, firestone,       |
+|             |                |                 | palmetto, vesnin, zz, romulus                  |
++-------------+----------------+-----------------+------------------------------------------------+
+| eudev       | 3.2.5          | 3.2.7           | witherspoon, p9dsu, zaius, habanero, firenze,  |
+|             |                |                 | garrison, barreleye, pseries, firestone,       |
+|             |                |                 | palmetto, vesnin, zz, romulus                  |
++-------------+----------------+-----------------+------------------------------------------------+
+| glibc       | glibc-2.28-69- | glibc-2.28-94-g | witherspoon, p9dsu, zaius, habanero, firenze,  |
+|             | g1e5c5303      | 4aeff335        | garrison, barreleye, pseries, firestone,       |
+|             |                |                 | palmetto, vesnin, zz, romulus                  |
++-------------+----------------+-----------------+------------------------------------------------+
+| hcode       | hw022319a.930  | hw041519a.opv23 | witherspoon, p9dsu, zaius, romulus             |
++-------------+----------------+-----------------+------------------------------------------------+
+| hostboot    | 37e67698be56   | ca03643dd893    | witherspoon, p9dsu, zaius, romulus             |
++-------------+----------------+-----------------+------------------------------------------------+
+| hostboot-bi | hw021419a.930  | hw041519a.opv23 | witherspoon, p9dsu, zaius, habanero, garrison, |
+| naries      |                |                 | barreleye, firestone, palmetto, vesnin,        |
+|             |                |                 | romulus                                        |
++-------------+----------------+-----------------+------------------------------------------------+
+| hostboot-p8 | a3b0cb929cbf   | dc218d94c57b    | habanero, garrison, barreleye, firestone,      |
+|             |                |                 | palmetto, vesnin                               |
++-------------+----------------+-----------------+------------------------------------------------+
+| i2c-tools   | 4.0            | 4.1             | pseries, vesnin                                |
++-------------+----------------+-----------------+------------------------------------------------+
+| linux       | 4.19.26        | 5.0.7           | witherspoon, p9dsu, zaius, habanero, firenze,  |
+|             |                |                 | garrison, barreleye, pseries, firestone,       |
+|             |                |                 | palmetto, vesnin, zz, romulus                  |
++-------------+----------------+-----------------+------------------------------------------------+
+| linux-firmw | 44d4fca9922a   | 1baa34868b2c    | witherspoon, p9dsu, zaius, habanero, firenze,  |
+| are         |                |                 | garrison, barreleye, pseries, firestone,       |
+|             |                |                 | palmetto, vesnin, zz, romulus                  |
++-------------+----------------+-----------------+------------------------------------------------+
+| linux-heade | 4.19.26        | 5.0.7           | witherspoon, p9dsu, zaius, habanero, firenze,  |
+| rs          |                |                 | garrison, barreleye, pseries, firestone,       |
+|             |                |                 | palmetto, vesnin, zz, romulus                  |
++-------------+----------------+-----------------+------------------------------------------------+
+| lvm2        | 2.02.180       | 2.02.183        | witherspoon, p9dsu, zaius, habanero, firenze,  |
+|             |                |                 | garrison, barreleye, pseries, firestone,       |
+|             |                |                 | palmetto, vesnin, zz, romulus                  |
++-------------+----------------+-----------------+------------------------------------------------+
+| machine-xml | c994a1815bcb   | f44f8808fc7c8   | vesnin                                         |
++-------------+----------------+-----------------+------------------------------------------------+
+| machine-xml | f7cffdbe00f6   | e3e9aef82673b   | witherspoon                                    |
++-------------+----------------+-----------------+------------------------------------------------+
+| occ         | 12c8088a32c5   | 58e422dede59    | witherspoon, p9dsu, zaius, romulus             |
++-------------+----------------+-----------------+------------------------------------------------+
+| openpower-p | 0aeae23bd0c68  | 2ea669b4aa57    | witherspoon, p9dsu, zaius, habanero, garrison, |
+| nor         |                |                 | barreleye, firestone, palmetto, vesnin,        |
+|             |                |                 | romulus                                        |
++-------------+----------------+-----------------+------------------------------------------------+
+| petitboot   | v1.10.2        | v1.10.3         | witherspoon, p9dsu, zaius, habanero, firenze,  |
+|             |                |                 | garrison, barreleye, pseries, firestone,       |
+|             |                |                 | palmetto, vesnin, zz, romulus                  |
++-------------+----------------+-----------------+------------------------------------------------+
+| sbe         | 2e253cebdaff   | 1410677b65e4    | witherspoon, p9dsu, zaius, romulus             |
++-------------+----------------+-----------------+------------------------------------------------+
+| skiboot     | v6.2.2         | v6.3.1          | witherspoon, p9dsu, zaius, habanero, firenze,  |
+|             |                |                 | garrison, barreleye, pseries, firestone,       |
+|             |                |                 | palmetto, vesnin, zz, romulus                  |
++-------------+----------------+-----------------+------------------------------------------------+
+| util-linux  | 2.32.1         | 2.33            | witherspoon, p9dsu, zaius, habanero, firenze,  |
+|             |                |                 | garrison, barreleye, pseries, firestone,       |
+|             |                |                 | palmetto, vesnin, zz, romulus                  |
++-------------+----------------+-----------------+------------------------------------------------+
+
+Package: hcode
+--------------
+
+`Repository <https://github.com/open-power/hcode>`__
+
+Patches
+~~~~~~~
+
+Commits
+~~~~~~~
+
+Chris Cain (1):
+
+-  `3330dbdae60f <https://github.com/open-power/hcode/commit/3330dbdae60f>`__ Proposed structure
+   change for OCC
+
+Prasad Bg Ranganath (1):
+
+-  `0dd012c7f495 <https://github.com/open-power/hcode/commit/0dd012c7f495>`__ PPB: Refactor pstate
+   parameter block
+
+hostboot (14):
+
+-  `cc5c034aa468 <https://github.com/open-power/hcode/commit/cc5c034aa468>`__ Release tag
+   information updated for hw030819a.940
+-  `96bdad1dc08c <https://github.com/open-power/hcode/commit/96bdad1dc08c>`__ Release tag
+   information updated for hw030919a.940
+-  `b4bd4e7e0e75 <https://github.com/open-power/hcode/commit/b4bd4e7e0e75>`__ Release tag
+   information updated for hw031219a.940
+-  `b31c43a6c27e <https://github.com/open-power/hcode/commit/b31c43a6c27e>`__ Release tag
+   information updated for hw031319a.940
+-  `3d18592a7e3a <https://github.com/open-power/hcode/commit/3d18592a7e3a>`__ Release tag
+   information updated for hw031619a.940
+-  `4ffb0e57df57 <https://github.com/open-power/hcode/commit/4ffb0e57df57>`__ Release tag
+   information updated for hw031919a.940
+-  `ca318ee145bf <https://github.com/open-power/hcode/commit/ca318ee145bf>`__ Release tag
+   information updated for hw032019b.940
+-  `21fb83a0aec7 <https://github.com/open-power/hcode/commit/21fb83a0aec7>`__ Release tag
+   information updated for hw032119a.940
+-  `f722a49ec15b <https://github.com/open-power/hcode/commit/f722a49ec15b>`__ Release tag
+   information updated for hw032219a.940
+-  `b072dcdd5a9a <https://github.com/open-power/hcode/commit/b072dcdd5a9a>`__ Release tag
+   information updated for hw032319a.940
+-  `06fd9cb6a476 <https://github.com/open-power/hcode/commit/06fd9cb6a476>`__ Release tag
+   information updated for hw041119a.opv23
+-  `65dd1355197d <https://github.com/open-power/hcode/commit/65dd1355197d>`__ Release tag
+   information updated for hw041219a.opv23
+-  `cce430a720af <https://github.com/open-power/hcode/commit/cce430a720af>`__ Release tag
+   information updated for hw041319a.opv23
+-  `adf78f8e0538 <https://github.com/open-power/hcode/commit/adf78f8e0538>`__ Release tag
+   information updated for hw041519a.opv23
+
+Package: hostboot
+-----------------
+
+`Repository <https://github.com/open-power/hostboot>`__
+
+.. _v2.3-patches-1:
+
+Patches
+~~~~~~~
+
+.. _v2.3-commits-1:
+
+Commits
+~~~~~~~
+
+Alvin Wang (7):
+
+-  `49a169abfa3d <https://github.com/open-power/hostboot/commit/49a169abfa3d>`__ Adds mcbist empty
+   files
+-  `517ec60ee50d <https://github.com/open-power/hostboot/commit/517ec60ee50d>`__ Adds mcbist empty
+   files
+-  `f50a11628b1c <https://github.com/open-power/hostboot/commit/f50a11628b1c>`__ Change generic
+   mcbist file name
+-  `4984330e0ef9 <https://github.com/open-power/hostboot/commit/4984330e0ef9>`__ Change generic
+   mcbist file name
+-  `d7910f680f5c <https://github.com/open-power/hostboot/commit/d7910f680f5c>`__ Add exp_scrub empty
+   files
+-  `8765bcd2cc17 <https://github.com/open-power/hostboot/commit/8765bcd2cc17>`__ Add empty files for
+   power_theraml
+-  `75f8277bbc20 <https://github.com/open-power/hostboot/commit/75f8277bbc20>`__ Add empty
+   file(accessor_wrapper.H) for power_theraml
+
+Andre A. Marin (4):
+
+-  `c368037cb36e <https://github.com/open-power/hostboot/commit/c368037cb36e>`__ Update phy_pharams
+   structure, tests, and exp attrs
+-  `ee476c6abdad <https://github.com/open-power/hostboot/commit/ee476c6abdad>`__ Update phy_pharams
+   structure, tests, and exp attrs
+-  `d679e6d649ee <https://github.com/open-power/hostboot/commit/d679e6d649ee>`__ Add
+   attr_engine_traits empty files for HB to mirror
+-  `b5e9f70eb916 <https://github.com/open-power/hostboot/commit/b5e9f70eb916>`__ Update phy_pharams
+   structure, tests, and exp attrs
+
+Andre Marin (6):
+
+-  `877a032b90cd <https://github.com/open-power/hostboot/commit/877a032b90cd>`__ Fix SPD cas latency
+   assert bug
+-  `9e1906f95ba3 <https://github.com/open-power/hostboot/commit/9e1906f95ba3>`__ Add
+   std::remove_all_extends to HB STL library
+-  `2dcce4bcccc2 <https://github.com/open-power/hostboot/commit/2dcce4bcccc2>`__ Add L1 for
+   p9a_mss_bulk_pwr_throttles and p9a_mss_utils_to_throttle
+-  `1c169fc8be5a <https://github.com/open-power/hostboot/commit/1c169fc8be5a>`__ Add attribute
+   engine algorithm for eff_config and pre_eff_config
+-  `018a009896d8 <https://github.com/open-power/hostboot/commit/018a009896d8>`__ Add attribute
+   engine algorithm for eff_config and pre_eff_config
+-  `e5a493e300da <https://github.com/open-power/hostboot/commit/e5a493e300da>`__ Add attribute
+   engine algorithm for eff_config and pre_eff_config
+
+Ben Gass (6):
+
+-  `5bfda17c8018 <https://github.com/open-power/hostboot/commit/5bfda17c8018>`__ Add chip base
+   address to the OMI MMIO offset in p9a_mmio_util
+-  `d27c5e1fe431 <https://github.com/open-power/hostboot/commit/d27c5e1fe431>`__ Update ATRMISS
+   registers for Axone
+-  `71d98844bb93 <https://github.com/open-power/hostboot/commit/71d98844bb93>`__ Update p9_l2_flush
+   to check if purge is busy on anything prior to flush.
+-  `a4278d1df874 <https://github.com/open-power/hostboot/commit/a4278d1df874>`__ Add
+   ATTR_OMI_DL_GROUP_POS and ATTR_OMI_DL_NUM for OMI targets
+-  `224517ac925b <https://github.com/open-power/hostboot/commit/224517ac925b>`__ Update cmd/rsp
+   endian handling in exp_inband
+-  `5beffad6f2f2 <https://github.com/open-power/hostboot/commit/5beffad6f2f2>`__ Replace FAPI_ERR
+   with FAPI_DBG when no error in exp_omi_init
+
+Bill Hoffa (4):
+
+-  `7364f2447d18 <https://github.com/open-power/hostboot/commit/7364f2447d18>`__ Initialize and test
+   alt-master PNOR access in all boots
+-  `8b9e2d415060 <https://github.com/open-power/hostboot/commit/8b9e2d415060>`__ Fix autocitest
+   simics attempt numbering
+-  `c54069667c86 <https://github.com/open-power/hostboot/commit/c54069667c86>`__ Catch Unknown
+   Values for CONFIG_APPLY attribute
+-  `2620abc7dc62 <https://github.com/open-power/hostboot/commit/2620abc7dc62>`__ INTRP HW Workaround
+   for Clockgating Issue
+
+Caleb Palmer (10):
+
+-  `066af762a047 <https://github.com/open-power/hostboot/commit/066af762a047>`__ Add SW callout if
+   invalid proc model in call_mss_scrub
+-  `d94e5b51c9e5 <https://github.com/open-power/hostboot/commit/d94e5b51c9e5>`__ PRD: Remove old
+   domain startScrubs
+-  `0843af939876 <https://github.com/open-power/hostboot/commit/0843af939876>`__ PRD: Don’t skip ECC
+   spare when no DRAM spare
+-  `86b0576b22dc <https://github.com/open-power/hostboot/commit/86b0576b22dc>`__ PRD: NVDIMM reg
+   review updates
+-  `6d28e5b524f2 <https://github.com/open-power/hostboot/commit/6d28e5b524f2>`__ PRD: Remove EccSp
+   from errl when not avail
+-  `be07d93af71c <https://github.com/open-power/hostboot/commit/be07d93af71c>`__ PRD: MEM_PORT
+   getConnected support
+-  `4046e66acfb6 <https://github.com/open-power/hostboot/commit/4046e66acfb6>`__ Hostboot Memory HWP
+   include update
+-  `16024c9f92fa <https://github.com/open-power/hostboot/commit/16024c9f92fa>`__ PRD: Axone
+   PlatServices and Misc Updates
+-  `f2837b85611f <https://github.com/open-power/hostboot/commit/f2837b85611f>`__ PRD: Memory HWP
+   include updates
+-  `09b6e80a55d2 <https://github.com/open-power/hostboot/commit/09b6e80a55d2>`__ PRD: NVDIMM health
+   status reg errors no longer gard
+
+Chen Du (1):
+
+-  `c4031acbfb05 <https://github.com/open-power/hostboot/commit/c4031acbfb05>`__ Dropped messages at
+   shutdown
+
+Chris Cain (1):
+
+-  `ad388de1a208 <https://github.com/open-power/hostboot/commit/ad388de1a208>`__ Proposed structure
+   change for OCC
+
+Chris Steffen (1):
+
+-  `298aa306a1f4 <https://github.com/open-power/hostboot/commit/298aa306a1f4>`__ P9A OMI Dccal /
+   Scominit
+
+Christian Geddes (32):
+
+-  `8ee01af225a0 <https://github.com/open-power/hostboot/commit/8ee01af225a0>`__ Allow child/parent
+   lookups between DIMM and OCMB_CHIP targets
+-  `6cc4d5078e34 <https://github.com/open-power/hostboot/commit/6cc4d5078e34>`__ Again try to fix
+   checkpoint issue with fips930 simics
+-  `3452fbd95989 <https://github.com/open-power/hostboot/commit/3452fbd95989>`__ Allow for nullptr
+   io_buffer in eecache read
+-  `7ce2a9daac0c <https://github.com/open-power/hostboot/commit/7ce2a9daac0c>`__ Add interface to
+   look up model type of master processor on targetService
+-  `efda71702697 <https://github.com/open-power/hostboot/commit/efda71702697>`__ Set early test case
+   IPL step to be 14.7 in Axone simics
+-  `e70d216f8e2b <https://github.com/open-power/hostboot/commit/e70d216f8e2b>`__ Compile and add
+   calls to exp_scominit in istep 13.8
+-  `58b845f915ea <https://github.com/open-power/hostboot/commit/58b845f915ea>`__ Disable Mutex
+   Attribute Test Cases for now
+-  `250291d09340 <https://github.com/open-power/hostboot/commit/250291d09340>`__ Add
+   p9a_omi_training_check hwp call to istep 12.9
+-  `3b02a6aa674c <https://github.com/open-power/hostboot/commit/3b02a6aa674c>`__ Fix
+   getChildByAffinity call in mmio.C and add more traces
+-  `dafcf54942f1 <https://github.com/open-power/hostboot/commit/dafcf54942f1>`__ Remove imported
+   files that were added incorrectly
+-  `552339eb7f78 <https://github.com/open-power/hostboot/commit/552339eb7f78>`__ Create a common
+   explorer accesss module expaccess
+-  `281c7c93a463 <https://github.com/open-power/hostboot/commit/281c7c93a463>`__ Skip enabling PM
+   complex (start_stop_engine HWP) in Axone simics
+-  `63afd50c3393 <https://github.com/open-power/hostboot/commit/63afd50c3393>`__ Disable SMF tests
+   for Axone bringup
+-  `5618f2f2b432 <https://github.com/open-power/hostboot/commit/5618f2f2b432>`__ Fix issues with how
+   we were handling new .so added for Axone
+-  `9145082bb0ca <https://github.com/open-power/hostboot/commit/9145082bb0ca>`__ Disable OCMB mmio
+   communication tests until MMIO works
+-  `b397d8d630ac <https://github.com/open-power/hostboot/commit/b397d8d630ac>`__ Allow single dimm
+   configurations in Axone
+-  `dd41d6161ea9 <https://github.com/open-power/hostboot/commit/dd41d6161ea9>`__ Set
+   MAX_COMPUTE_NODES attribute so TOD code gets setup correctly
+-  `3653c5d44e88 <https://github.com/open-power/hostboot/commit/3653c5d44e88>`__ Skip establish ex
+   chiplet step (15.3) during Axone for now
+-  `0a0fe1f2857a <https://github.com/open-power/hostboot/commit/0a0fe1f2857a>`__ Compile new
+   Axone/Explorer memory libs in isteps_mss library
+-  `d09e67a0a554 <https://github.com/open-power/hostboot/commit/d09e67a0a554>`__ Update simics
+   release that Axone is using and adjust simics script
+-  `b8cfbb22598c <https://github.com/open-power/hostboot/commit/b8cfbb22598c>`__ Set MUX i2c slave
+   port to be 1
+-  `1c5f03e47872 <https://github.com/open-power/hostboot/commit/1c5f03e47872>`__ Fix bug that was
+   scrambling traces in errorlogs during HBRT
+-  `ddc7b1ec95be <https://github.com/open-power/hostboot/commit/ddc7b1ec95be>`__ Apply OBUS PG rules
+   update to Axone also
+-  `a52d45742151 <https://github.com/open-power/hostboot/commit/a52d45742151>`__ Edit
+   cxxtest.start.sh script to call runsim correctly
+-  `c6677251ee3d <https://github.com/open-power/hostboot/commit/c6677251ee3d>`__ Call p9a_mss_volt
+   if MEM_PORT targets are available in istep 7.2
+-  `994299cf3d45 <https://github.com/open-power/hostboot/commit/994299cf3d45>`__ Add code to call
+   p9a_mss_freq / p9a_mss_freq_system in istep 7.3
+-  `1564d45787ce <https://github.com/open-power/hostboot/commit/1564d45787ce>`__ Wrap exp_draminit
+   in a extern “C” to workaround name mangling
+-  `30a512e3d84d <https://github.com/open-power/hostboot/commit/30a512e3d84d>`__ Disable OCMB getVPD
+   tests until we get better SPD
+-  `33e7c6de0769 <https://github.com/open-power/hostboot/commit/33e7c6de0769>`__ Add calls to
+   available p9a_mss_eff_config HWPs in istep 7.4
+-  `85e898e7c68e <https://github.com/open-power/hostboot/commit/85e898e7c68e>`__ Edit autocitest to
+   handle hbTrace.log generated in /src/
+-  `a98d9a843a71 <https://github.com/open-power/hostboot/commit/a98d9a843a71>`__ Generate P9A
+   accessors for Axone
+-  `f55c462e587c <https://github.com/open-power/hostboot/commit/f55c462e587c>`__ Resize WOF to allow
+   AXONE test pnor to fit inside 64 MB
+
+Christian R. Geddes (1):
+
+-  `bcecb8a2a15a <https://github.com/open-power/hostboot/commit/bcecb8a2a15a>`__ Revert “Update
+   phy_pharams structure, tests, and exp attrs”
+
+Corey Swenson (1):
+
+-  `0bfacdff427f <https://github.com/open-power/hostboot/commit/0bfacdff427f>`__ Add callouts for
+   NVDIMM errors
+
+Dan Crowell (16):
+
+-  `b8720c117759 <https://github.com/open-power/hostboot/commit/b8720c117759>`__ Reset Engine E to
+   handle NVDIMMs
+-  `d505fea7f169 <https://github.com/open-power/hostboot/commit/d505fea7f169>`__ Make overrideOnly
+   fapi attributes volatile-zero
+-  `86b5d355d643 <https://github.com/open-power/hostboot/commit/86b5d355d643>`__ Delete complextype
+   fields in attributes if they have no value
+-  `e73d0c117548 <https://github.com/open-power/hostboot/commit/e73d0c117548>`__ Force reboot
+   without visible errors for core wakeup failure
+-  `386165c1c5da <https://github.com/open-power/hostboot/commit/386165c1c5da>`__ Updates to
+   testcases for Axone
+-  `ce4004d542f1 <https://github.com/open-power/hostboot/commit/ce4004d542f1>`__ Create runtime mss
+   library
+-  `4636db0ab1ec <https://github.com/open-power/hostboot/commit/4636db0ab1ec>`__ Always use original
+   defaults for attribute fields with no value
+-  `0b3f4e146b01 <https://github.com/open-power/hostboot/commit/0b3f4e146b01>`__ Use meaningful
+   values for PNOR build parms
+-  `7d86b40c30c1 <https://github.com/open-power/hostboot/commit/7d86b40c30c1>`__ Modify rank
+   variable for OCMB VPD lookup
+-  `c2c08ea15af6 <https://github.com/open-power/hostboot/commit/c2c08ea15af6>`__ Remove old fapi
+   files
+-  `63622494a0f3 <https://github.com/open-power/hostboot/commit/63622494a0f3>`__ Add PMIC target
+-  `e0f035161098 <https://github.com/open-power/hostboot/commit/e0f035161098>`__ Tweak page eviction
+   parameters to handle low mem better
+-  `2c2978d3a443 <https://github.com/open-power/hostboot/commit/2c2978d3a443>`__ Add ASSERT trace
+   buffer to task crash log
+-  `8fc37a704410 <https://github.com/open-power/hostboot/commit/8fc37a704410>`__ Create
+   p9a_disable_ocmb_i2c HWP
+-  `27d7ab8db738 <https://github.com/open-power/hostboot/commit/27d7ab8db738>`__ Moving libnvdimm
+   into a resident module
+-  `7c067d46c2f7 <https://github.com/open-power/hostboot/commit/7c067d46c2f7>`__ Make pci cache
+   injection attributes writeable
+
+Dean Sanner (2):
+
+-  `73fc80f05f07 <https://github.com/open-power/hostboot/commit/73fc80f05f07>`__ Base HWP mirroring
+   control on HB policy
+-  `610f16673641 <https://github.com/open-power/hostboot/commit/610f16673641>`__ Allow OPAL to run
+   on fused cores
+
+Glenn Miles (6):
+
+-  `0af9610f18a1 <https://github.com/open-power/hostboot/commit/0af9610f18a1>`__ Make access to
+   iv_overridePtr threadsafe
+-  `676c584aaa70 <https://github.com/open-power/hostboot/commit/676c584aaa70>`__ Make more room for
+   hbicore_extended in PNOR layout files.
+-  `814734326962 <https://github.com/open-power/hostboot/commit/814734326962>`__ Use thread_local
+   for globals that require it
+-  `373d8a5fb285 <https://github.com/open-power/hostboot/commit/373d8a5fb285>`__ Run memory training
+   in parallel across centaurs
+-  `853d251aef29 <https://github.com/open-power/hostboot/commit/853d251aef29>`__ Add 1MB to PNOR HBI
+   section
+-  `f6ddb6dc19f8 <https://github.com/open-power/hostboot/commit/f6ddb6dc19f8>`__ Add checks for
+   invalid trace data in removeDuplicateTraces
+
+Ilya Smirnov (5):
+
+-  `b1c1b2cc5e78 <https://github.com/open-power/hostboot/commit/b1c1b2cc5e78>`__ Secureboot:
+   Enhanced Multinode Comm: TPM_POISONED
+-  `ed35e3da7c26 <https://github.com/open-power/hostboot/commit/ed35e3da7c26>`__ Unit Tests For SMF
+   Secure Mem Distribution
+-  `9ece0ede203d <https://github.com/open-power/hostboot/commit/9ece0ede203d>`__ SMF: Memory
+   Distribution Logic Improvements
+-  `eeb5732a169d <https://github.com/open-power/hostboot/commit/eeb5732a169d>`__ Revert “SMF: Create
+   New UVBWLIST Partition”
+-  `c7534ed92a2d <https://github.com/open-power/hostboot/commit/c7534ed92a2d>`__ Secureboot:
+   Enhanced Nomdecomm: Quote Fix
+
+Jacob Harvey (1):
+
+-  `e7f0582196fb <https://github.com/open-power/hostboot/commit/e7f0582196fb>`__ L3 work for mss
+   xmls
+
+Jayashankar Padath (1):
+
+-  `596bde3e93f3 <https://github.com/open-power/hostboot/commit/596bde3e93f3>`__ HDAT : Support of
+   new Rugby values in P9N systems
+
+Jaymes Wilks (2):
+
+-  `f5475890894b <https://github.com/open-power/hostboot/commit/f5475890894b>`__ Support thread
+   local storage
+-  `ff62338a5699 <https://github.com/open-power/hostboot/commit/ff62338a5699>`__ Thread local
+   storage: Update unit tests for thread local storage
+
+Jenny Huynh (1):
+
+-  `1c6429e239e2 <https://github.com/open-power/hostboot/commit/1c6429e239e2>`__ HW483672: Enable
+   TLBIE WAT (version 5); fixes unintended flushing
+
+Joe McGill (1):
+
+-  `87cc9b25b008 <https://github.com/open-power/hostboot/commit/87cc9b25b008>`__ cleanup references
+   to chip-centric EC feature attributes
+
+Kahn Evans (1):
+
+-  `e45d35734d18 <https://github.com/open-power/hostboot/commit/e45d35734d18>`__ Fix doxygen
+   warnings
+
+Louis Stermole (11):
+
+-  `5fcfd69a0278 <https://github.com/open-power/hostboot/commit/5fcfd69a0278>`__ Remove MBA GARD
+   from RC_CEN_MSS_DRAMINIT_MC_INSUF_RCD_PROTECT_TIME
+-  `835d2074b6bc <https://github.com/open-power/hostboot/commit/835d2074b6bc>`__ Add empty files
+   required for mss::index, pos, and c_str templating
+-  `197507fb6e80 <https://github.com/open-power/hostboot/commit/197507fb6e80>`__ Add empty file
+   required for templating eff_memory_size
+-  `ebf6fda9958f <https://github.com/open-power/hostboot/commit/ebf6fda9958f>`__ Add empty files
+   required for p9a_mss_freq
+-  `6f660c2b98b7 <https://github.com/open-power/hostboot/commit/6f660c2b98b7>`__ Add new files
+   required for fixing mss::index, mss::pos, and mss::c_str
+-  `0f728a100a8e <https://github.com/open-power/hostboot/commit/0f728a100a8e>`__ Add empty file for
+   explorer eff_memory_size specialization
+-  `8fc0e7abffb0 <https://github.com/open-power/hostboot/commit/8fc0e7abffb0>`__ Add p9a version of
+   eff_memory_size API
+-  `ca025608c0c1 <https://github.com/open-power/hostboot/commit/ca025608c0c1>`__ Move p9a sync.C and
+   sync.H to new names to fix collisions
+-  `6bdf34b9fe0a <https://github.com/open-power/hostboot/commit/6bdf34b9fe0a>`__ Add workaround for
+   Nimbus symbol mark performance hw bug
+-  `76a4f5d86930 <https://github.com/open-power/hostboot/commit/76a4f5d86930>`__ Move explorer
+   specialization of eff_memory_size into explorer lib
+-  `a5d11b476381 <https://github.com/open-power/hostboot/commit/a5d11b476381>`__ Add empty files for
+   DEFAULT_MC_TYPE constants
+
+Luis Fernandez (2):
+
+-  `90552694307e <https://github.com/open-power/hostboot/commit/90552694307e>`__ Secure Boot: Log
+   error when attribute override attempted in secure mode
+-  `ab6efc5935dc <https://github.com/open-power/hostboot/commit/ab6efc5935dc>`__ HB Improvements:
+   Fix compiler warnings on modern compilers
+
+Mark Pizzutillo (4):
+
+-  `847ced968c58 <https://github.com/open-power/hostboot/commit/847ced968c58>`__ Add blank files for
+   axone p10 rank API
+-  `7b3c165b9c65 <https://github.com/open-power/hostboot/commit/7b3c165b9c65>`__ Add empty files for
+   gemini IPL
+-  `af6712fe5c03 <https://github.com/open-power/hostboot/commit/af6712fe5c03>`__ Remove files not
+   needed by gemini IPL
+-  `9011abf477a1 <https://github.com/open-power/hostboot/commit/9011abf477a1>`__ Add wrapper and
+   utils blank files for exp_getecid
+
+Matt Derksen (4):
+
+-  `518a05ca5136 <https://github.com/open-power/hostboot/commit/518a05ca5136>`__ Move nvdimm_update
+   call to istep 21.1
+-  `2df122342fae <https://github.com/open-power/hostboot/commit/2df122342fae>`__ Use NVDIMM lids for
+   update
+-  `a5c403221e3e <https://github.com/open-power/hostboot/commit/a5c403221e3e>`__ Fixing runtime i2c
+   operation
+-  `f5ab52ab7117 <https://github.com/open-power/hostboot/commit/f5ab52ab7117>`__ NVDIMM update code
+
+Matt K. Light (1):
+
+-  `a7c8ac4df4e1 <https://github.com/open-power/hostboot/commit/a7c8ac4df4e1>`__ move
+   ATTR_SPD_OVERRIDE[_ENABLE] to cronus only file
+
+Matt Raybuck (1):
+
+-  `4b29a1188536 <https://github.com/open-power/hostboot/commit/4b29a1188536>`__ UCD attribute and
+   targeting updates
+
+Matthew Raybuck (10):
+
+-  `d2899da82cb0 <https://github.com/open-power/hostboot/commit/d2899da82cb0>`__ Improve performance
+   of Partial Good logic
+-  `3830dc6e8fb0 <https://github.com/open-power/hostboot/commit/3830dc6e8fb0>`__ Support UCD target
+   generation for Zeppelin MRW
+-  `d47b63700d87 <https://github.com/open-power/hostboot/commit/d47b63700d87>`__ Add functions to
+   get Device Id and MFR revision from UCD
+-  `3265b62f038c <https://github.com/open-power/hostboot/commit/3265b62f038c>`__ Improve performance
+   of general PG algorithm
+-  `2cfb551c4e56 <https://github.com/open-power/hostboot/commit/2cfb551c4e56>`__ TESTCASES: Improve
+   performance of general PG algorithm
+-  `086018c231e7 <https://github.com/open-power/hostboot/commit/086018c231e7>`__ Support UCD for I2C
+   callouts
+-  `c3264eed4874 <https://github.com/open-power/hostboot/commit/c3264eed4874>`__ Add minor tweaks to
+   I2C Callouts for UCD
+-  `8684bd3d5656 <https://github.com/open-power/hostboot/commit/8684bd3d5656>`__ Add retry loop to
+   UCD deviceOps
+-  `b445b93fc21e <https://github.com/open-power/hostboot/commit/b445b93fc21e>`__ Handle bad PEC from
+   UCD device op
+-  `ac7a4f206efe <https://github.com/open-power/hostboot/commit/ac7a4f206efe>`__ Fix UCD retry loop
+   size bug
+
+Mike Baiocchi (7):
+
+-  `d74d3932d989 <https://github.com/open-power/hostboot/commit/d74d3932d989>`__ Secureboot: Enhance
+   Error Callouts For New Multinode Trustedboot Transfer
+-  `4eb72a8bf074 <https://github.com/open-power/hostboot/commit/4eb72a8bf074>`__ Adjust I2C Reset
+   for OpenPower MPIPL
+-  `656ba908c6f2 <https://github.com/open-power/hostboot/commit/656ba908c6f2>`__ Add UCD devices to
+   ATTR_I2C_BUS_SPEED_ARRAY for ZZ
+-  `08d6bc305592 <https://github.com/open-power/hostboot/commit/08d6bc305592>`__ Update UCD class
+   member variables and functions
+-  `ffdc6b255981 <https://github.com/open-power/hostboot/commit/ffdc6b255981>`__ Add check to
+   determine if a UCD’s I2C Master is functional
+-  `72fc1da005b7 <https://github.com/open-power/hostboot/commit/72fc1da005b7>`__ Invoke UCD Update
+   Algorithm on UCD Devices
+-  `571956c7f546 <https://github.com/open-power/hostboot/commit/571956c7f546>`__ Create Attribute to
+   force UCD Updates
+
+Murulidhar Nataraju (1):
+
+-  `6b7bbd62febe <https://github.com/open-power/hostboot/commit/6b7bbd62febe>`__ Enable OCC Start in
+   MPIPL path for OPAL based systems
+
+Nick Bofferding (9):
+
+-  `90b00de769e0 <https://github.com/open-power/hostboot/commit/90b00de769e0>`__ Enhance RAS for
+   case where boot firmware image is too big to load
+-  `09a3da759682 <https://github.com/open-power/hostboot/commit/09a3da759682>`__ UCD Flash Update:
+   Support I2C SMBUS operations for UCD flash update
+-  `10784ce5d02b <https://github.com/open-power/hostboot/commit/10784ce5d02b>`__ Support UCD target
+   generation for ZZ MRW
+-  `642a5f63c61b <https://github.com/open-power/hostboot/commit/642a5f63c61b>`__ Support UCD
+   discovery
+-  `5588cf81b95d <https://github.com/open-power/hostboot/commit/5588cf81b95d>`__ Fix bug where task
+   migrates away from pinned CPU unexpectedly
+-  `810394f87078 <https://github.com/open-power/hostboot/commit/810394f87078>`__ UCD flash update
+   invoker
+-  `0d9e3f2cde91 <https://github.com/open-power/hostboot/commit/0d9e3f2cde91>`__ Verify UCD update
+   success at end of store to UCD flash
+-  `de2312a44b13 <https://github.com/open-power/hostboot/commit/de2312a44b13>`__ Fix deadlock in ECC
+   error shutdown path
+-  `ca03643dd893 <https://github.com/open-power/hostboot/commit/ca03643dd893>`__ Initialize backup
+   TPM in MPIPL
+
+Prasad Bg Ranganath (1):
+
+-  `4d983e4c8bdd <https://github.com/open-power/hostboot/commit/4d983e4c8bdd>`__ PPB: Refactor
+   pstate parameter block
+
+Prem Shanker Jha (1):
+
+-  `143d03952806 <https://github.com/open-power/hostboot/commit/143d03952806>`__ Image Build: Fixed
+   handling of unsecure HOMER address field.
+
+Raja Das (2):
+
+-  `55260d579728 <https://github.com/open-power/hostboot/commit/55260d579728>`__ Security List
+   Binary Dump Chip-op Support
+-  `b8f4e5009a34 <https://github.com/open-power/hostboot/commit/b8f4e5009a34>`__ OPAL/MPIPL:
+   Processor Dump Area Table interfaces
+
+Ricardo Mata Jr (1):
+
+-  `784fe894f9ec <https://github.com/open-power/hostboot/commit/784fe894f9ec>`__ Updated
+   proc_pcie_config to support cache inject attributes
+
+Roland Veloz (3):
+
+-  `6e84cce39773 <https://github.com/open-power/hostboot/commit/6e84cce39773>`__ Force VPD IO
+   through HW (Axone) ,add plat function to get OCMB VPD
+-  `038631ba24f0 <https://github.com/open-power/hostboot/commit/038631ba24f0>`__ Updated file
+   ddimm_get_efd.C to be in sync with file ddimm_get_efd.xml
+-  `17930bb348b5 <https://github.com/open-power/hostboot/commit/17930bb348b5>`__ Unit test and
+   integration test for platGetVPD(OCMB) call
+
+Sharath Manjunath (1):
+
+-  `bdaa5b1d2af3 <https://github.com/open-power/hostboot/commit/bdaa5b1d2af3>`__ Update exp_draminit
+   to read values from attributes
+
+Stanley Zheng (1):
+
+-  `c23e99369c50 <https://github.com/open-power/hostboot/commit/c23e99369c50>`__ add address xlate
+   to initfile
+
+Stephen Glancy (8):
+
+-  `dadbba56f413 <https://github.com/open-power/hostboot/commit/dadbba56f413>`__ Adds SI setting for
+   4R and dual-drop LRDIMM configs
+-  `c050abede299 <https://github.com/open-power/hostboot/commit/c050abede299>`__ Updates the
+   explorer training response structure
+-  `6fa8d0452930 <https://github.com/open-power/hostboot/commit/6fa8d0452930>`__ Updates read to
+   write timers for LRDIMM
+-  `c96464c7d525 <https://github.com/open-power/hostboot/commit/c96464c7d525>`__ Moves set bad
+   bitmap into generic
+-  `2b943a5ba24f <https://github.com/open-power/hostboot/commit/2b943a5ba24f>`__ Fixes MPR read ODT
+   values
+-  `b850083ce640 <https://github.com/open-power/hostboot/commit/b850083ce640>`__ Fixes LRDIMM CKE
+   issue
+-  `8e0290d32802 <https://github.com/open-power/hostboot/commit/8e0290d32802>`__ Fixes LRDIMM rank
+   configuration for dual-drop
+-  `cd82f3ecbcef <https://github.com/open-power/hostboot/commit/cd82f3ecbcef>`__ Adds DDIMM EFD
+   decoder API
+
+Steven Janssen (1):
+
+-  `85942470b223 <https://github.com/open-power/hostboot/commit/85942470b223>`__ Update function
+   pointer name to correctly point to function
+
+Stewart Smith (1):
+
+-  `4470dc33a126 <https://github.com/open-power/hostboot/commit/4470dc33a126>`__ Disable warnings
+   that crop up a lot with GCC6
+
+Sumit Kumar (1):
+
+-  `395f284926ab <https://github.com/open-power/hostboot/commit/395f284926ab>`__ FAPI_Infra:Add new
+   member to structure ErrorInfoHwCallout
+
+Tsung Yeung (3):
+
+-  `8eb0494af6a1 <https://github.com/open-power/hostboot/commit/8eb0494af6a1>`__ Enforces NVDIMM
+   Pairing
+-  `da2c80997909 <https://github.com/open-power/hostboot/commit/da2c80997909>`__ Suppresses
+   maintenance error messages due to STR exit
+-  `c2a9006d0552 <https://github.com/open-power/hostboot/commit/c2a9006d0552>`__ NVDIMM RCD restore
+   fix and zqcal timing fix
+
+Package: occ
+------------
+
+`Repository <https://github.com/open-power/occ>`__
+
+.. _v2.3-patches-2:
+
+Patches
+~~~~~~~
+
+.. _v2.3-commits-2:
+
+Commits
+~~~~~~~
+
+Chris Cain (2):
+
+-  `1904821d6279 <https://github.com/open-power/occ/commit/1904821d6279>`__ Updates to wofparser
+   tool
+-  `98ccba678ad4 <https://github.com/open-power/occ/commit/98ccba678ad4>`__ Support for PGPE error
+   handling
+
+William Bryan (1):
+
+-  `6e52f56bd2cc <https://github.com/open-power/occ/commit/6e52f56bd2cc>`__ Fix memory bandwidth
+   chom averages
+
+Zane Shelley (11):
+
+-  `75f2dd306f18 <https://github.com/open-power/occ/commit/75f2dd306f18>`__ FIRDATA: fix iteration
+   bug in firData.c
+-  `d60be21fc396 <https://github.com/open-power/occ/commit/d60be21fc396>`__ FIRDATA: remove
+   Cumulus/Centaur targets and add Axone/Explorer
+-  `d85d3c5387ec <https://github.com/open-power/occ/commit/d85d3c5387ec>`__ FIRDATA: add Axone
+   memory subsystem SCOM support
+-  `18fa6f29e388 <https://github.com/open-power/occ/commit/18fa6f29e388>`__ FIRDATA: removed HOMER
+   support for Cumulus/Centaur
+-  `d2801157a080 <https://github.com/open-power/occ/commit/d2801157a080>`__ FIRDATA: Clean up HOMER
+   parsing variables in firData.c
+-  `d4e558e09c51 <https://github.com/open-power/occ/commit/d4e558e09c51>`__ FIRDATA: Simplified
+   adding targets to PNOR
+-  `29d1d67db71c <https://github.com/open-power/occ/commit/29d1d67db71c>`__ FIRDATA: Simplified
+   adding chip units to PNOR
+-  `69bac807b007 <https://github.com/open-power/occ/commit/69bac807b007>`__ FIRDATA: Simplified
+   iterating targets from HOMER in firData.c
+-  `b673f22459ca <https://github.com/open-power/occ/commit/b673f22459ca>`__ FIRDATA: Further
+   simplifying iteration variables in firData.c
+-  `6220fb3d8d7a <https://github.com/open-power/occ/commit/6220fb3d8d7a>`__ FIRDATA: Simplified
+   adding subunit targets to PNOR in firData.c
+-  `58e422dede59 <https://github.com/open-power/occ/commit/58e422dede59>`__ FIRDATA: added
+   Axone/Explorer support to firData.c
+
+Package: op-build
+-----------------
+
+`Repository <https://github.com/open-power/op-build>`__
+
+.. _v2.3-patches-3:
+
+Patches
+~~~~~~~
+
+.. _v2.3-commits-3:
+
+Commits
+~~~~~~~
+
+No changes.
+
+Package: p9dsu-xml
+------------------
+
+`Repository <https://github.com/open-power/p9dsu-xml>`__
+
+.. _v2.3-patches-4:
+
+Patches
+~~~~~~~
+
+.. _v2.3-commits-4:
+
+Commits
+~~~~~~~
+
+No changes.
+
+Package: palmetto-xml
+---------------------
+
+`Repository <https://github.com/open-power/palmetto-xml>`__
+
+.. _v2.3-patches-5:
+
+Patches
+~~~~~~~
+
+.. _v2.3-commits-5:
+
+Commits
+~~~~~~~
+
+No changes.
+
+Package: petitboot
+------------------
+
+`Repository <https://github.com/open-power/petitboot>`__
+
+.. _v2.3-patches-6:
+
+Patches
+~~~~~~~
+
+.. _v2.3-commits-6:
+
+Commits
+~~~~~~~
+
+Samuel Mendoza-Jonas (6):
+
+-  `df1a234c15fb <https://github.com/open-power/petitboot/commit/df1a234c15fb>`__ lib/system: Add
+   cryptsetup utility
+-  `ba8144f917f5 <https://github.com/open-power/petitboot/commit/ba8144f917f5>`__ lib/process: Add
+   option to pipe to process stdin
+-  `5f8fa2c151b8 <https://github.com/open-power/petitboot/commit/5f8fa2c151b8>`__ lib: Add
+   AUTH_MSG_DECRYPT
+-  `f583f0cf35fc <https://github.com/open-power/petitboot/commit/f583f0cf35fc>`__ discover:
+   Recognise and open LUKS encrypted partitions
+-  `1ad18bf128c4 <https://github.com/open-power/petitboot/commit/1ad18bf128c4>`__ ui/ncurses: Add
+   prompt for LUKS device password
+-  `1cd261748c00 <https://github.com/open-power/petitboot/commit/1cd261748c00>`__ utils/pb-console:
+   Use -m to run shell in own process group
+
+Package: pnor
+-------------
+
+`Repository <https://github.com/open-power/pnor>`__
+
+.. _v2.3-patches-7:
+
+Patches
+~~~~~~~
+
+.. _v2.3-commits-7:
+
+Commits
+~~~~~~~
+
+No changes.
+
+Package: romulus-xml
+--------------------
+
+`Repository <https://github.com/open-power/romulus-xml>`__
+
+.. _v2.3-patches-8:
+
+Patches
+~~~~~~~
+
+.. _v2.3-commits-8:
+
+Commits
+~~~~~~~
+
+No changes.
+
+Package: sbe
+------------
+
+`Repository <https://github.com/open-power/sbe>`__
+
+.. _v2.3-patches-9:
+
+Patches
+~~~~~~~
+
+.. _v2.3-commits-9:
+
+Commits
+~~~~~~~
+
+Christian Geddes (1):
+
+-  `0f9a51d0059e <https://github.com/open-power/sbe/commit/0f9a51d0059e>`__ Update i2c driver for
+   OCMB chip
+
+Christopher M Riedl (1):
+
+-  `a3b2377b7de1 <https://github.com/open-power/sbe/commit/a3b2377b7de1>`__ Implement PBA
+   Cache-Inhibited 8B Rd/Wr Access
+
+Dan Crowell (1):
+
+-  `c9b85ed2ed42 <https://github.com/open-power/sbe/commit/c9b85ed2ed42>`__ Add
+   ATTR_ENABLED_OBUS_BRICKS
+
+Jenny Huynh (6):
+
+-  `be0d09d34335 <https://github.com/open-power/sbe/commit/be0d09d34335>`__ HW477626 Dangerous Elk -
+   Applies to CDD12+
+-  `e18d802d082f <https://github.com/open-power/sbe/commit/e18d802d082f>`__ HW477626 Dangerous Elk -
+   Temporarily apply to CDD13 native only
+-  `04c534c750c6 <https://github.com/open-power/sbe/commit/04c534c750c6>`__ HW477626 Dangerous Elk -
+   Reapply for all CDD12+ risk levels
+-  `f3b4f8efe1f8 <https://github.com/open-power/sbe/commit/f3b4f8efe1f8>`__ Additional core inits
+   for Nimbus DD2.3 compatibility modes
+-  `934ccd82e22f <https://github.com/open-power/sbe/commit/934ccd82e22f>`__ Axone core initfile
+   update to match Nimbus DD23
+-  `4a5f8ddab286 <https://github.com/open-power/sbe/commit/4a5f8ddab286>`__ Adjust PVR Version for
+   Axone
+
+Joachim Fenkes (5):
+
+-  `b9b668e5916e <https://github.com/open-power/sbe/commit/b9b668e5916e>`__ FAPI2: Multicast API
+   1/2: Platform-breaking changes
+-  `8a09d58df7aa <https://github.com/open-power/sbe/commit/8a09d58df7aa>`__ FAPI2: Multicast API
+   2/2: Introduce the actual multicast functions
+-  `4529a95e14de <https://github.com/open-power/sbe/commit/4529a95e14de>`__ Add tools to help
+   measure and compare SBE image size
+-  `5786b04efe86 <https://github.com/open-power/sbe/commit/5786b04efe86>`__ p9_sbe_tp_chiplet_init3:
+   Mask TOD error bit 62 (osclite switched)
+-  `e8590a9d3a19 <https://github.com/open-power/sbe/commit/e8590a9d3a19>`__ p9_sbe_npll_setup:
+   Enable spread spectrum before starting PLL
+
+Joe McGill (1):
+
+-  `81642d21704f <https://github.com/open-power/sbe/commit/81642d21704f>`__ whitelist update for
+   ABUS CCM
+
+Prasad Bg Ranganath (3):
+
+-  `9eba57570f29 <https://github.com/open-power/sbe/commit/9eba57570f29>`__ PPB:New attribute
+   ATTR_PMCR_MOST_RECENT_MODE for PMCR request
+-  `8fd8d1401c5f <https://github.com/open-power/sbe/commit/8fd8d1401c5f>`__ HWP:Cache stop clocks
+   complete fix
+-  `1410677b65e4 <https://github.com/open-power/sbe/commit/1410677b65e4>`__ PM HWP: Fix bug in stop
+   clock procedure that effects mpipl
+
+Prem Shanker Jha (2):
+
+-  `b6b4eafa650c <https://github.com/open-power/sbe/commit/b6b4eafa650c>`__ SMF: Defined new
+   attribute containing unsecure HOMER memory’s size.
+-  `47f5faba3803 <https://github.com/open-power/sbe/commit/47f5faba3803>`__ SMF: Populates unsecure
+   HOMER with SC2 instruction.
+
+Pretty Mariam Jacob (1):
+
+-  `b2548e254811 <https://github.com/open-power/sbe/commit/b2548e254811>`__ Added Alink changes in
+   attributes and initfiles
+
+Raja Das (5):
+
+-  `0420efec88bd <https://github.com/open-power/sbe/commit/0420efec88bd>`__ White/Black/Grey List
+   Binary dump PSU Chip-op Support
+-  `0321b165dad7 <https://github.com/open-power/sbe/commit/0321b165dad7>`__ SBE scripts to update
+   pib repair data
+-  `9f9f77cec3cb <https://github.com/open-power/sbe/commit/9f9f77cec3cb>`__ L1 loader Axone Pibmem
+   repair parse
+-  `c508f8e9d96e <https://github.com/open-power/sbe/commit/c508f8e9d96e>`__ NVDIMM Flush update
+-  `57905edebf34 <https://github.com/open-power/sbe/commit/57905edebf34>`__ Axone pibmem repair
+   logic
+
+Soma BhanuTej (1):
+
+-  `1d73131d1a11 <https://github.com/open-power/sbe/commit/1d73131d1a11>`__ Update p9a_10 engd - spy
+   name changes
+
+Srikantha Meesala (1):
+
+-  `9b5f5c303ddc <https://github.com/open-power/sbe/commit/9b5f5c303ddc>`__ Befor flushNVDIMM
+   chip-op make sure all core Instructions are stopped
+
+Stephen Glancy (2):
+
+-  `953dc3134693 <https://github.com/open-power/sbe/commit/953dc3134693>`__ Updates MWD_COARSE to
+   run multiple patterns
+-  `6eb2a4c0f0d8 <https://github.com/open-power/sbe/commit/6eb2a4c0f0d8>`__ Updates MCA write and
+   read timings
+
+Tsung Yeung (1):
+
+-  `1ac3d5b9cd5f <https://github.com/open-power/sbe/commit/1ac3d5b9cd5f>`__ Adjust STR enter
+   sequence to enable immediate entry
+
+kswaroop (1):
+
+-  `81c848765857 <https://github.com/open-power/sbe/commit/81c848765857>`__ PIBMEM only image
+
+Package: skiboot
+----------------
+
+`Repository <https://github.com/open-power/skiboot>`__
+
+.. _v2.3-patches-10:
+
+Patches
+~~~~~~~
+
+.. _v2.3-commits-10:
+
+Commits
+~~~~~~~
+
+Abhishek Goel (1):
+
+-  `b821f8c2a8e3 <https://github.com/open-power/skiboot/commit/b821f8c2a8e3>`__ power-mgmt : occ :
+   Add ‘freq-domain-mask’ DT property
+
+Akshay Adiga (2):
+
+-  `40b99f58ea37 <https://github.com/open-power/skiboot/commit/40b99f58ea37>`__ SLW: Remove Idle
+   state support tor Power8 DD1
+-  `c46ab3a0509c <https://github.com/open-power/skiboot/commit/c46ab3a0509c>`__ SLW: Print verbose
+   info on errors only
+
+Alexey Kardashevskiy (9):
+
+-  `17975a6e6457 <https://github.com/open-power/skiboot/commit/17975a6e6457>`__ cpufeatures: Always
+   advertise POWER8NVL as DD2
+-  `64627c85e648 <https://github.com/open-power/skiboot/commit/64627c85e648>`__ cpufeatures: Always
+   advertise POWER8NVL as DD2
+-  `fd0950488f7f <https://github.com/open-power/skiboot/commit/fd0950488f7f>`__ opal: Deprecate
+   reading the PHB status
+-  `4824d17bb53b <https://github.com/open-power/skiboot/commit/4824d17bb53b>`__ hw/phb3/naples:
+   Disable D-states
+-  `889dba86c3c8 <https://github.com/open-power/skiboot/commit/889dba86c3c8>`__ hw/phb3/naples:
+   Disable D-states
+-  `ba1d95a1d460 <https://github.com/open-power/skiboot/commit/ba1d95a1d460>`__ npu2: Add
+   XTS_BDF_MAP wildcard refcount
+-  `c0f17caddcd8 <https://github.com/open-power/skiboot/commit/c0f17caddcd8>`__ npu2: Allow ATSD for
+   LPAR other than 0
+-  `b392d785eb49 <https://github.com/open-power/skiboot/commit/b392d785eb49>`__ witherspoon: Add
+   nvlink2 interconnect information
+-  `0f492a925908 <https://github.com/open-power/skiboot/commit/0f492a925908>`__ npu2: Disable
+   Probe-to-Invalid-Return-Modified-or-Owned snarfing by default
+
+Andrew Donnellan (11):
+
+-  `682fa68e577c <https://github.com/open-power/skiboot/commit/682fa68e577c>`__
+   platforms/witherspoon: Make PCIe shared slot error message more informative
+-  `e1c3ed8224bf <https://github.com/open-power/skiboot/commit/e1c3ed8224bf>`__ config: Get rid of
+   DEBUG_MALLOC
+-  `647dc4aff7b6 <https://github.com/open-power/skiboot/commit/647dc4aff7b6>`__ config: Get rid of
+   FAST_REBOOT_CLEARS_MEMORY
+-  `c9bc52a250a0 <https://github.com/open-power/skiboot/commit/c9bc52a250a0>`__ core/stack: Remove
+   r1 argument from \___backtrace()
+-  `b971b67ac2e1 <https://github.com/open-power/skiboot/commit/b971b67ac2e1>`__ core/stack: Define a
+   backtrace metadata struct
+-  `80a49c7022b2 <https://github.com/open-power/skiboot/commit/80a49c7022b2>`__ core/stack: Store
+   PIR in \___backtrace()
+-  `8dddd751ef43 <https://github.com/open-power/skiboot/commit/8dddd751ef43>`__ hw/fsp, hw/ipmi:
+   Convert attn code to not use backtrace wrappers
+-  `e5a7411cd74e <https://github.com/open-power/skiboot/commit/e5a7411cd74e>`__ core/stack: Convert
+   stack check code to not use backtrace wrapper
+-  `b965b9de25d2 <https://github.com/open-power/skiboot/commit/b965b9de25d2>`__ core/stack: Rename
+   backtrace functions, get rid of wrappers
+-  `73cd109ecd8f <https://github.com/open-power/skiboot/commit/73cd109ecd8f>`__ opal-api: Reserve 2
+   OPAL API calls for future OpenCAPI LPC use
+-  `b3bc840c1d85 <https://github.com/open-power/skiboot/commit/b3bc840c1d85>`__ hw/npu2: Fix
+   OpenCAPI PE assignment
+
+Andrew Jeffery (115):
+
+-  `bd9839684d48 <https://github.com/open-power/skiboot/commit/bd9839684d48>`__ astbmc: Try IPMI
+   HIOMAP for P8
+-  `71ce936ffe38 <https://github.com/open-power/skiboot/commit/71ce936ffe38>`__ p8dtu: Enable HIOMAP
+   support
+-  `9dcbd1f41d98 <https://github.com/open-power/skiboot/commit/9dcbd1f41d98>`__ p8dtu: Configure BMC
+   graphics
+-  `963629523084 <https://github.com/open-power/skiboot/commit/963629523084>`__ pflash: Don’t try
+   update RO ToC
+-  `0dec1de73e1e <https://github.com/open-power/skiboot/commit/0dec1de73e1e>`__ libflash/test:
+   Generate header dependencies for tests
+-  `3852a9460abc <https://github.com/open-power/skiboot/commit/3852a9460abc>`__ ffspart, libflash:
+   Fix stack size warnings
+-  `a7e1efe864ad <https://github.com/open-power/skiboot/commit/a7e1efe864ad>`__ pflash: Increase
+   stack frame size warning threshold
+-  `5636d390b7f0 <https://github.com/open-power/skiboot/commit/5636d390b7f0>`__ gard: Fix warnings
+   from gcc 8.2.0
+-  `96409597aa39 <https://github.com/open-power/skiboot/commit/96409597aa39>`__ Makefile: Paper over
+   gard and pflash coverage issues
+-  `43ca6a2e5b12 <https://github.com/open-power/skiboot/commit/43ca6a2e5b12>`__ test-ipmi-hiomap:
+   Add ability to delay some IPMI messages
+-  `f246cceda717 <https://github.com/open-power/skiboot/commit/f246cceda717>`__ test-ipmi-hiomap:
+   Dump unexpected IPMI messages
+-  `5293333dd1af <https://github.com/open-power/skiboot/commit/5293333dd1af>`__ test-ipmi-hiomap:
+   Ensure the completion code is set
+-  `f46ed4f7ee79 <https://github.com/open-power/skiboot/commit/f46ed4f7ee79>`__ test-ipmi-hiomap:
+   Print some information on early scenario_exit()
+-  `1b3a5dfbdf92 <https://github.com/open-power/skiboot/commit/1b3a5dfbdf92>`__
+   libflash/ipmi-hiomap: Fix leak of msg in callback
+-  `64a61885a229 <https://github.com/open-power/skiboot/commit/64a61885a229>`__
+   libflash/ipmi-hiomap: Overhaul error handling
+-  `403d527269be <https://github.com/open-power/skiboot/commit/403d527269be>`__
+   libflash/ipmi-hiomap: Overhaul event handling
+-  `6d8bd2dd9eab <https://github.com/open-power/skiboot/commit/6d8bd2dd9eab>`__
+   libflash/ipmi-hiomap: Remove unused close handling
+-  `4af122b23402 <https://github.com/open-power/skiboot/commit/4af122b23402>`__
+   libflash/ipmi-hiomap: Enforce message size for empty response
+-  `41e6e8b4acf7 <https://github.com/open-power/skiboot/commit/41e6e8b4acf7>`__ test-ipmi-hiomap:
+   Add protocol-persistent-error test
+-  `5b12dfe8dd0d <https://github.com/open-power/skiboot/commit/5b12dfe8dd0d>`__ test-ipmi-hiomap:
+   Add read-one-block test
+-  `d4b870c8524c <https://github.com/open-power/skiboot/commit/d4b870c8524c>`__ test-ipmi-hiomap:
+   Add read-two-blocks test
+-  `e1f20bfd7d91 <https://github.com/open-power/skiboot/commit/e1f20bfd7d91>`__ test-ipmi-hiomap:
+   Add event-before-read
+-  `fd271bc570d3 <https://github.com/open-power/skiboot/commit/fd271bc570d3>`__ test-ipmi-hiomap:
+   Add event-during-read test
+-  `e69b1135db38 <https://github.com/open-power/skiboot/commit/e69b1135db38>`__ test-ipmi-hiomap:
+   Add write-one-block test
+-  `eb0c85ae9868 <https://github.com/open-power/skiboot/commit/eb0c85ae9868>`__ test-ipmi-hiomap:
+   Add write-two-blocks test
+-  `7f246ff2c999 <https://github.com/open-power/skiboot/commit/7f246ff2c999>`__ test-ipmi-hiomap:
+   Add event-before-write test
+-  `9175028fc84a <https://github.com/open-power/skiboot/commit/9175028fc84a>`__ test-ipmi-hiomap:
+   Add event-during-write test
+-  `5ee7b0f70b04 <https://github.com/open-power/skiboot/commit/5ee7b0f70b04>`__ test-ipmi-hiomap:
+   Add erase-one-block test
+-  `275b3d12af39 <https://github.com/open-power/skiboot/commit/275b3d12af39>`__ test-ipmi-hiomap:
+   Add erase-two-blocks test
+-  `410b80725ad2 <https://github.com/open-power/skiboot/commit/410b80725ad2>`__ test-ipmi-hiomap:
+   Add event-before-erase test
+-  `c2a4b4988ecc <https://github.com/open-power/skiboot/commit/c2a4b4988ecc>`__ test-ipmi-hiomap:
+   Add event-during-erase
+-  `077d19d82405 <https://github.com/open-power/skiboot/commit/077d19d82405>`__ test-ipmi-hiomap:
+   Add bad-sequence test
+-  `ecf6430d1ee9 <https://github.com/open-power/skiboot/commit/ecf6430d1ee9>`__ test-ipmi-hiomap:
+   Add action-error test
+-  `f65c781eee16 <https://github.com/open-power/skiboot/commit/f65c781eee16>`__ test-ipmi-hiomap:
+   Add get-flash-info test
+-  `bcdd3f134970 <https://github.com/open-power/skiboot/commit/bcdd3f134970>`__ test-ipmi-hiomap:
+   Add get-info-error test
+-  `0bef2695055d <https://github.com/open-power/skiboot/commit/0bef2695055d>`__ test-ipmi-hiomap:
+   Add get-flash-info-error test
+-  `c4d5734fde21 <https://github.com/open-power/skiboot/commit/c4d5734fde21>`__ test-ipmi-hiomap:
+   Add create-read-window-error test
+-  `364b433adb7d <https://github.com/open-power/skiboot/commit/364b433adb7d>`__ test-ipmi-hiomap:
+   Add create-write-window-error test
+-  `a4349da67c9c <https://github.com/open-power/skiboot/commit/a4349da67c9c>`__ test-ipmi-hiomap:
+   Add mark-dirty-error test
+-  `7798ea646fb7 <https://github.com/open-power/skiboot/commit/7798ea646fb7>`__ test-ipmi-hiomap:
+   Add flush-error test
+-  `ff5153612f85 <https://github.com/open-power/skiboot/commit/ff5153612f85>`__ test-ipmi-hiomap:
+   Add ack-error test
+-  `12ca08b58e5b <https://github.com/open-power/skiboot/commit/12ca08b58e5b>`__ test-ipmi-hiomap:
+   Add erase-error test
+-  `4642a6c9a66b <https://github.com/open-power/skiboot/commit/4642a6c9a66b>`__ test-ipmi-hiomap:
+   Add ack-malformed tests
+-  `8745e91d48d1 <https://github.com/open-power/skiboot/commit/8745e91d48d1>`__ test-ipmi-hiomap:
+   Add get-info-malformed tests
+-  `5c2ada09e76d <https://github.com/open-power/skiboot/commit/5c2ada09e76d>`__ test-ipmi-hiomap:
+   Add get-flash-info-malformed tests
+-  `bd1a08ab3e12 <https://github.com/open-power/skiboot/commit/bd1a08ab3e12>`__ test-ipmi-hiomap:
+   Add create-read-window-malformed tests
+-  `ee0314d2d9d0 <https://github.com/open-power/skiboot/commit/ee0314d2d9d0>`__ test-ipmi-hiomap:
+   Add create-write-window-malformed tests
+-  `c7b8293d867a <https://github.com/open-power/skiboot/commit/c7b8293d867a>`__ test-ipmi-hiomap:
+   Add mark-dirty-malformed tests
+-  `985c7a26bcb1 <https://github.com/open-power/skiboot/commit/985c7a26bcb1>`__ test-ipmi-hiomap:
+   Add flush-malformed tests
+-  `7735cc354609 <https://github.com/open-power/skiboot/commit/7735cc354609>`__ test-ipmi-hiomap:
+   Add erase-malformed tests
+-  `d0c798252521 <https://github.com/open-power/skiboot/commit/d0c798252521>`__ test-ipmi-hiomap:
+   Add protocol-recovery-failure-ack test
+-  `ce81b9364131 <https://github.com/open-power/skiboot/commit/ce81b9364131>`__ test-ipmi-hiomap:
+   Add protocol-recovery-failure-get-info test
+-  `9398b84fad0e <https://github.com/open-power/skiboot/commit/9398b84fad0e>`__ test-ipmi-hiomap:
+   Add protocol-recovery-get-flash-info-failure test
+-  `b94bb54f6569 <https://github.com/open-power/skiboot/commit/b94bb54f6569>`__ test-ipmi-hiomap:
+   Add read-one-block-twice test
+-  `ed35a7d04bde <https://github.com/open-power/skiboot/commit/ed35a7d04bde>`__ test-ipmi-hiomap:
+   Add write-one-block-twice test
+-  `a3777e58990f <https://github.com/open-power/skiboot/commit/a3777e58990f>`__ test-ipmi-hiomap:
+   Add erase-one-block-twice test
+-  `6a4db4c249a1 <https://github.com/open-power/skiboot/commit/6a4db4c249a1>`__ ast-io: Rework
+   ast_sio_is_enabled() test sequence
+-  `c826e1ca9e5b <https://github.com/open-power/skiboot/commit/c826e1ca9e5b>`__ astbmc: Try IPMI
+   HIOMAP for P8 (again)
+-  `b9d7c9da583a <https://github.com/open-power/skiboot/commit/b9d7c9da583a>`__ astbmc: Enable IPMI
+   HIOMAP for AMI platforms
+-  `5d07d064db05 <https://github.com/open-power/skiboot/commit/5d07d064db05>`__ libflash/test:
+   Generate header dependencies for tests
+-  `e3a3ba16a44a <https://github.com/open-power/skiboot/commit/e3a3ba16a44a>`__ test-ipmi-hiomap:
+   Add ability to delay some IPMI messages
+-  `3056fcd0a7c4 <https://github.com/open-power/skiboot/commit/3056fcd0a7c4>`__ test-ipmi-hiomap:
+   Dump unexpected IPMI messages
+-  `7cb5eca8d6ca <https://github.com/open-power/skiboot/commit/7cb5eca8d6ca>`__ test-ipmi-hiomap:
+   Ensure the completion code is set
+-  `272443f7687b <https://github.com/open-power/skiboot/commit/272443f7687b>`__ test-ipmi-hiomap:
+   Print some information on early scenario_exit()
+-  `7bb5ead55bdf <https://github.com/open-power/skiboot/commit/7bb5ead55bdf>`__
+   libflash/ipmi-hiomap: Fix leak of msg in callback
+-  `2e29cf8d00fb <https://github.com/open-power/skiboot/commit/2e29cf8d00fb>`__
+   libflash/ipmi-hiomap: Overhaul error handling
+-  `5c4b51a0408f <https://github.com/open-power/skiboot/commit/5c4b51a0408f>`__
+   libflash/ipmi-hiomap: Overhaul event handling
+-  `041d61e2be1d <https://github.com/open-power/skiboot/commit/041d61e2be1d>`__
+   libflash/ipmi-hiomap: Remove unused close handling
+-  `b64b3544d90b <https://github.com/open-power/skiboot/commit/b64b3544d90b>`__
+   libflash/ipmi-hiomap: Enforce message size for empty response
+-  `cca1c08ece5e <https://github.com/open-power/skiboot/commit/cca1c08ece5e>`__ test-ipmi-hiomap:
+   Add protocol-persistent-error test
+-  `a215e3e547a0 <https://github.com/open-power/skiboot/commit/a215e3e547a0>`__ test-ipmi-hiomap:
+   Add read-one-block test
+-  `96ca4e26deb6 <https://github.com/open-power/skiboot/commit/96ca4e26deb6>`__ test-ipmi-hiomap:
+   Add read-two-blocks test
+-  `ea318dbe989f <https://github.com/open-power/skiboot/commit/ea318dbe989f>`__ test-ipmi-hiomap:
+   Add event-before-read
+-  `e4e76c8d2f6c <https://github.com/open-power/skiboot/commit/e4e76c8d2f6c>`__ test-ipmi-hiomap:
+   Add event-during-read test
+-  `e3497461c93b <https://github.com/open-power/skiboot/commit/e3497461c93b>`__ test-ipmi-hiomap:
+   Add write-one-block test
+-  `bf722c0ac561 <https://github.com/open-power/skiboot/commit/bf722c0ac561>`__ test-ipmi-hiomap:
+   Add write-two-blocks test
+-  `4cc5d420eeb4 <https://github.com/open-power/skiboot/commit/4cc5d420eeb4>`__ test-ipmi-hiomap:
+   Add event-before-write test
+-  `55b284e63e7d <https://github.com/open-power/skiboot/commit/55b284e63e7d>`__ test-ipmi-hiomap:
+   Add event-during-write test
+-  `da61b9e8dc1f <https://github.com/open-power/skiboot/commit/da61b9e8dc1f>`__ test-ipmi-hiomap:
+   Add erase-one-block test
+-  `a6f3245eda74 <https://github.com/open-power/skiboot/commit/a6f3245eda74>`__ test-ipmi-hiomap:
+   Add erase-two-blocks test
+-  `6432db36f0b1 <https://github.com/open-power/skiboot/commit/6432db36f0b1>`__ test-ipmi-hiomap:
+   Add event-before-erase test
+-  `7d666e226bd9 <https://github.com/open-power/skiboot/commit/7d666e226bd9>`__ test-ipmi-hiomap:
+   Add event-during-erase
+-  `d69b6567669b <https://github.com/open-power/skiboot/commit/d69b6567669b>`__ test-ipmi-hiomap:
+   Add bad-sequence test
+-  `4f9facdacef9 <https://github.com/open-power/skiboot/commit/4f9facdacef9>`__ test-ipmi-hiomap:
+   Add action-error test
+-  `b20312eb6ee5 <https://github.com/open-power/skiboot/commit/b20312eb6ee5>`__ test-ipmi-hiomap:
+   Add get-flash-info test
+-  `852d38850654 <https://github.com/open-power/skiboot/commit/852d38850654>`__ test-ipmi-hiomap:
+   Add get-info-error test
+-  `21bed4d078d9 <https://github.com/open-power/skiboot/commit/21bed4d078d9>`__ test-ipmi-hiomap:
+   Add get-flash-info-error test
+-  `05e1dabcb97d <https://github.com/open-power/skiboot/commit/05e1dabcb97d>`__ test-ipmi-hiomap:
+   Add create-read-window-error test
+-  `1c97112ba0b9 <https://github.com/open-power/skiboot/commit/1c97112ba0b9>`__ test-ipmi-hiomap:
+   Add create-write-window-error test
+-  `14959a69eeac <https://github.com/open-power/skiboot/commit/14959a69eeac>`__ test-ipmi-hiomap:
+   Add mark-dirty-error test
+-  `4de5c234518b <https://github.com/open-power/skiboot/commit/4de5c234518b>`__ test-ipmi-hiomap:
+   Add flush-error test
+-  `c38fccd32df0 <https://github.com/open-power/skiboot/commit/c38fccd32df0>`__ test-ipmi-hiomap:
+   Add ack-error test
+-  `5e1559af3394 <https://github.com/open-power/skiboot/commit/5e1559af3394>`__ test-ipmi-hiomap:
+   Add erase-error test
+-  `66b4b2e49d46 <https://github.com/open-power/skiboot/commit/66b4b2e49d46>`__ test-ipmi-hiomap:
+   Add ack-malformed tests
+-  `90ae8a0767ce <https://github.com/open-power/skiboot/commit/90ae8a0767ce>`__ test-ipmi-hiomap:
+   Add get-info-malformed tests
+-  `7ae038042951 <https://github.com/open-power/skiboot/commit/7ae038042951>`__ test-ipmi-hiomap:
+   Add get-flash-info-malformed tests
+-  `dba42852b0de <https://github.com/open-power/skiboot/commit/dba42852b0de>`__ test-ipmi-hiomap:
+   Add create-read-window-malformed tests
+-  `564d5e4ba7e4 <https://github.com/open-power/skiboot/commit/564d5e4ba7e4>`__ test-ipmi-hiomap:
+   Add create-write-window-malformed tests
+-  `b812fa3d16ce <https://github.com/open-power/skiboot/commit/b812fa3d16ce>`__ test-ipmi-hiomap:
+   Add mark-dirty-malformed tests
+-  `0ebf921c1a0a <https://github.com/open-power/skiboot/commit/0ebf921c1a0a>`__ test-ipmi-hiomap:
+   Add flush-malformed tests
+-  `4769cb645e20 <https://github.com/open-power/skiboot/commit/4769cb645e20>`__ test-ipmi-hiomap:
+   Add erase-malformed tests
+-  `35a6cbe24717 <https://github.com/open-power/skiboot/commit/35a6cbe24717>`__ test-ipmi-hiomap:
+   Add protocol-recovery-failure-ack test
+-  `ffe09809c035 <https://github.com/open-power/skiboot/commit/ffe09809c035>`__ test-ipmi-hiomap:
+   Add protocol-recovery-failure-get-info test
+-  `0e8e03ee34ba <https://github.com/open-power/skiboot/commit/0e8e03ee34ba>`__ test-ipmi-hiomap:
+   Add protocol-recovery-get-flash-info-failure test
+-  `75622fe738cd <https://github.com/open-power/skiboot/commit/75622fe738cd>`__ test-ipmi-hiomap:
+   Add read-one-block-twice test
+-  `1a8a5c352762 <https://github.com/open-power/skiboot/commit/1a8a5c352762>`__ test-ipmi-hiomap:
+   Add write-one-block-twice test
+-  `2d8b0043aa9d <https://github.com/open-power/skiboot/commit/2d8b0043aa9d>`__ test-ipmi-hiomap:
+   Add erase-one-block-twice test
+-  `381a7e6553d7 <https://github.com/open-power/skiboot/commit/381a7e6553d7>`__ ast-io: Rework
+   ast_sio_is_enabled() test sequence
+-  `6e7145a55afc <https://github.com/open-power/skiboot/commit/6e7145a55afc>`__ astbmc: Try IPMI
+   HIOMAP for P8 (again)
+-  `52be9b85e455 <https://github.com/open-power/skiboot/commit/52be9b85e455>`__ zaius: Add BMC
+   description
+-  `4ff0e16df304 <https://github.com/open-power/skiboot/commit/4ff0e16df304>`__ p8dtu: Enable HIOMAP
+   support
+-  `137b11c77feb <https://github.com/open-power/skiboot/commit/137b11c77feb>`__ p8dtu: Configure BMC
+   graphics
+-  `b7594b26929e <https://github.com/open-power/skiboot/commit/b7594b26929e>`__ astbmc: Enable IPMI
+   HIOMAP for AMI platforms
+-  `cccf5d79de07 <https://github.com/open-power/skiboot/commit/cccf5d79de07>`__ core/flash: Retry
+   requests as necessary in flash_load_resource()
+-  `6225d1192493 <https://github.com/open-power/skiboot/commit/6225d1192493>`__ astbmc: Handle
+   failure to initialise raw flash
+
+Anju T Sudhakar (7):
+
+-  `6d9a87cec05a <https://github.com/open-power/skiboot/commit/6d9a87cec05a>`__ doc/imc: Edit
+   imc.rst documentation to include
+-  `09e912109070 <https://github.com/open-power/skiboot/commit/09e912109070>`__ doc/device-tree:
+   Edit device tree documentation for imc to include trace-node information.
+-  `f3a0fb699040 <https://github.com/open-power/skiboot/commit/f3a0fb699040>`__ doc/opal-api: Edit
+   documentation for IMC opal call to include trace-imc
+-  `5506d8a45882 <https://github.com/open-power/skiboot/commit/5506d8a45882>`__ include/imc: Trace
+   IMC Macro definitions
+-  `fa8f3f3fcead <https://github.com/open-power/skiboot/commit/fa8f3f3fcead>`__ hw/imc: Refactor
+   opal init call for core-imc
+-  `df2a1e579aaa <https://github.com/open-power/skiboot/commit/df2a1e579aaa>`__ hw/imc: Enable opal
+   calls to init/start/stop IMC Trace mode
+-  `027d87475eff <https://github.com/open-power/skiboot/commit/027d87475eff>`__ external/mambo:
+   Mambo hack to add trace-imc nodes in the device-tree
+
+Artem Senichev (1):
+
+-  `eb83850ee1de <https://github.com/open-power/skiboot/commit/eb83850ee1de>`__ platforms/vesnin:
+   Disable PCIe port bifurcation
+
+Cédric Le Goater (1):
+
+-  `bbcbbd3e071f <https://github.com/open-power/skiboot/commit/bbcbbd3e071f>`__ xive: Add calls to
+   save/restore the queues and VPs HW state
+
+Deb McLemore (6):
+
+-  `31231ed300f2 <https://github.com/open-power/skiboot/commit/31231ed300f2>`__ p9dsu: Fix p9dsu
+   default variant
+-  `87517c8737b9 <https://github.com/open-power/skiboot/commit/87517c8737b9>`__ p9dsu: Fix p9dsu
+   slot tables
+-  `83f06eec281d <https://github.com/open-power/skiboot/commit/83f06eec281d>`__ p9dsu: Fix p9dsu
+   default variant
+-  `c8941393f452 <https://github.com/open-power/skiboot/commit/c8941393f452>`__ p9dsu: Fix p9dsu
+   slot tables
+-  `64a16ae05bb2 <https://github.com/open-power/skiboot/commit/64a16ae05bb2>`__ p9dsu: Fix slot
+   labels for p9dsu2u
+-  `c470806a2e5e <https://github.com/open-power/skiboot/commit/c470806a2e5e>`__ p9dsu: Undo slot
+   label name changes
+
+Frederic Barrat (17):
+
+-  `536c8fbf932d <https://github.com/open-power/skiboot/commit/536c8fbf932d>`__ npu2-opencapi:
+   Rework ODL register access
+-  `e621b7b67951 <https://github.com/open-power/skiboot/commit/e621b7b67951>`__ npu2-opencapi: Setup
+   perf counters to detect CRC errors
+-  `9f3cdff99656 <https://github.com/open-power/skiboot/commit/9f3cdff99656>`__ npu2-opencapi:
+   Rename functions used to reset an adapter
+-  `ce9dd46d36d0 <https://github.com/open-power/skiboot/commit/ce9dd46d36d0>`__ npu2-opencapi: Keep
+   ODL and adapter in reset at the same time
+-  `e4efac7d8c90 <https://github.com/open-power/skiboot/commit/e4efac7d8c90>`__ npu2-opencapi: ODL
+   should be in reset when enabled
+-  `d75436f0d3d0 <https://github.com/open-power/skiboot/commit/d75436f0d3d0>`__ npu2-opencapi:
+   Extend delay after releasing reset on adapter
+-  `998911498597 <https://github.com/open-power/skiboot/commit/998911498597>`__ npu2-opencapi: Fix
+   adapter reset when using 2 adapters
+-  `8cf6758e1889 <https://github.com/open-power/skiboot/commit/8cf6758e1889>`__ npu2-hw-procedures:
+   Don’t set iovalid for opencapi devices
+-  `11c5faa66aa0 <https://github.com/open-power/skiboot/commit/11c5faa66aa0>`__ npu2-hw-procedures:
+   Fix zcal in mixed opencapi and nvlink mode
+-  `14a78d5c2e85 <https://github.com/open-power/skiboot/commit/14a78d5c2e85>`__ npu2/hw-procedures:
+   Fix parallel zcal for opencapi
+-  `d3af5072cb55 <https://github.com/open-power/skiboot/commit/d3af5072cb55>`__ hw/npu2: Move npu2
+   irq setup code to common area
+-  `fa97373f3274 <https://github.com/open-power/skiboot/commit/fa97373f3274>`__ hw/npu2: Use NVLink
+   irq setup for OpenCAPI
+-  `f8dfd699f584 <https://github.com/open-power/skiboot/commit/f8dfd699f584>`__ hw/npu2: Setup an
+   error interrupt on some opencapi FIRs
+-  `7320a21e7261 <https://github.com/open-power/skiboot/commit/7320a21e7261>`__ hw/npu2: Report
+   errors to the OS if an OpenCAPI brick is fenced
+-  `d1f3e4faf9d9 <https://github.com/open-power/skiboot/commit/d1f3e4faf9d9>`__ hw/npu2: Dump (more)
+   npu2 registers on link error and HMIs
+-  `87528900ad41 <https://github.com/open-power/skiboot/commit/87528900ad41>`__ opal/hmi: Never
+   trust a cow!
+-  `c3e38ba93c5f <https://github.com/open-power/skiboot/commit/c3e38ba93c5f>`__ hw/npu2: Show name
+   of opencapi error interrupts
+
+Jeff Scheel (1):
+
+-  `abd17b24a5ae <https://github.com/open-power/skiboot/commit/abd17b24a5ae>`__ doc: Adjusting tags
+   in release notes to eliminate global conflict for singlehtml builds
+
+Joel Stanley (3):
+
+-  `23470f10d0b1 <https://github.com/open-power/skiboot/commit/23470f10d0b1>`__ Revert “astbmc: Try
+   IPMI HIOMAP for P8”
+-  `cd2b103f2488 <https://github.com/open-power/skiboot/commit/cd2b103f2488>`__ Makefile: Check
+   -Wno-stringop-truncation is supported
+-  `a7855bdd6593 <https://github.com/open-power/skiboot/commit/a7855bdd6593>`__ Makefile: Build with
+   symbols
+
+Jordan Niethe (1):
+
+-  `9fde370b03c0 <https://github.com/open-power/skiboot/commit/9fde370b03c0>`__ chiptod: Remove
+   unused prototype from header
+
+Mahesh Salgaonkar (5):
+
+-  `017da88b2d05 <https://github.com/open-power/skiboot/commit/017da88b2d05>`__ opal/hmi: Fix double
+   unlock of hmi lock in failure path.
+-  `ca349b836d02 <https://github.com/open-power/skiboot/commit/ca349b836d02>`__ opal/hmi: Don’t
+   retry TOD recovery if it is already in failed state.
+-  `497734984231 <https://github.com/open-power/skiboot/commit/497734984231>`__ opal/hmi: set a flag
+   to inform OS that TOD/TB has failed.
+-  `2c71d7032484 <https://github.com/open-power/skiboot/commit/2c71d7032484>`__ Fix hang in
+   pnv_platform_error_reboot path due to TOD failure.
+-  `5f339b4b5d80 <https://github.com/open-power/skiboot/commit/5f339b4b5d80>`__ opal/hmi: Initialize
+   the hmi event with old value of TFMR.
+
+Michael Neuling (1):
+
+-  `740904858586 <https://github.com/open-power/skiboot/commit/740904858586>`__ xive: Make no_sync
+   parameter affermative in \__xive_set_irq_config()
+
+Michal Suchanek (1):
+
+-  `bef1ddc40813 <https://github.com/open-power/skiboot/commit/bef1ddc40813>`__ libffs: Fix string
+   truncation gcc warning.
+
+Nicholas Piggin (28):
+
+-  `3500a606c6db <https://github.com/open-power/skiboot/commit/3500a606c6db>`__ phb4: remove POWER9N
+   DD1 creset workaround
+-  `3b4ae3a2e2a5 <https://github.com/open-power/skiboot/commit/3b4ae3a2e2a5>`__ xive: remove POWER9N
+   DD1 NVT table size workaround
+-  `0b0d15e3c170 <https://github.com/open-power/skiboot/commit/0b0d15e3c170>`__ Remove POWER9N DD1
+   support
+-  `d27180b55d77 <https://github.com/open-power/skiboot/commit/d27180b55d77>`__ core/cpu: HID update
+   race
+-  `57610a3681bc <https://github.com/open-power/skiboot/commit/57610a3681bc>`__ external/mambo:
+   allow CPU targeting for most debug utils
+-  `0d44d7f7d29d <https://github.com/open-power/skiboot/commit/0d44d7f7d29d>`__ core/init: rename
+   setup_reset_vector
+-  `9e075d75274c <https://github.com/open-power/skiboot/commit/9e075d75274c>`__ core/cpu: do not
+   inline cpu_relax
+-  `9c58bbd720b7 <https://github.com/open-power/skiboot/commit/9c58bbd720b7>`__ core/exceptions:
+   save current MSR in exception frame
+-  `e1d44e8c117f <https://github.com/open-power/skiboot/commit/e1d44e8c117f>`__ asm/head: use HSRR
+   exception registers in FIXUP_ENDIAN
+-  `02aea4c8760a <https://github.com/open-power/skiboot/commit/02aea4c8760a>`__ core/init: rearrange
+   final boot steps
+-  `d25287a167fd <https://github.com/open-power/skiboot/commit/d25287a167fd>`__ core/fast-reboot:
+   improve NMI handling during fast reset
+-  `ebb814a80369 <https://github.com/open-power/skiboot/commit/ebb814a80369>`__ core/init: enable
+   machine check on secondaries
+-  `75669cb37067 <https://github.com/open-power/skiboot/commit/75669cb37067>`__ asm/head: provide
+   asm support for interrupts to be returned from
+-  `37baa9731d0d <https://github.com/open-power/skiboot/commit/37baa9731d0d>`__ core/fast-reboot:
+   fast reboot specific sreset patch
+-  `4ebb78cffda8 <https://github.com/open-power/skiboot/commit/4ebb78cffda8>`__ asm/head: sreset
+   handler remove FIXUP_ENDIAN
+-  `8a43bf86b7d4 <https://github.com/open-power/skiboot/commit/8a43bf86b7d4>`__ core/exceptions:
+   implement an exception handler for non-powersave sresets
+-  `22524e901744 <https://github.com/open-power/skiboot/commit/22524e901744>`__ core/exceptions:
+   allow recoverable sreset exceptions
+-  `5d86cebd5368 <https://github.com/open-power/skiboot/commit/5d86cebd5368>`__ core/exceptions:
+   implement support for MCE interrupts in powersave
+-  `c51c7a5df601 <https://github.com/open-power/skiboot/commit/c51c7a5df601>`__ core/cpu: HID update
+   race
+-  `450b429feb43 <https://github.com/open-power/skiboot/commit/450b429feb43>`__ asm/head: move
+   unnecessary code out of head
+-  `36dca1e915da <https://github.com/open-power/skiboot/commit/36dca1e915da>`__ build:
+   -fno-asynchronous-unwind-tables
+-  `6b08928fb487 <https://github.com/open-power/skiboot/commit/6b08928fb487>`__ build/lds: place
+   debug sections according to defaults
+-  `065877fc59de <https://github.com/open-power/skiboot/commit/065877fc59de>`__ build/lds: place
+   remaining sections according to defaults
+-  `7f22e25c2b97 <https://github.com/open-power/skiboot/commit/7f22e25c2b97>`__ build: link with
+   –orphan-handling=warn
+-  `53ef0db6e2ef <https://github.com/open-power/skiboot/commit/53ef0db6e2ef>`__ asm/head.S: set
+   POWER9 radix HID bit at entry
+-  `f244f3e1b679 <https://github.com/open-power/skiboot/commit/f244f3e1b679>`__ external/mambo: also
+   invoke readline for the non-autorun case
+-  `32a23ae6b0d3 <https://github.com/open-power/skiboot/commit/32a23ae6b0d3>`__ asm/head: balance
+   branches to avoid link stack predictor mispredicts
+-  `2c8f96534a97 <https://github.com/open-power/skiboot/commit/2c8f96534a97>`__ hw/xscom: add
+   missing P9P chip name
+
+Oliver O’Halloran (35):
+
+-  `08981e62e1d9 <https://github.com/open-power/skiboot/commit/08981e62e1d9>`__ phb4: Rework BDFN
+   filtering in phb4_set_pe()
+-  `2f5d15f167b0 <https://github.com/open-power/skiboot/commit/2f5d15f167b0>`__ phb4: Remove
+   pointless NULL checks
+-  `e19f14e3134b <https://github.com/open-power/skiboot/commit/e19f14e3134b>`__ phb4: Eliminate
+   p->rte_cache
+-  `a3a64a4b8737 <https://github.com/open-power/skiboot/commit/a3a64a4b8737>`__ phb4: Eliminate
+   peltv_cache
+-  `639f67285c2c <https://github.com/open-power/skiboot/commit/639f67285c2c>`__ phb4: Update some
+   comments
+-  `3eadafbd35ae <https://github.com/open-power/skiboot/commit/3eadafbd35ae>`__ hdata/test: Fix up
+   linux,sml-base property
+-  `fa3dee2a63e6 <https://github.com/open-power/skiboot/commit/fa3dee2a63e6>`__ hdata/test: Add
+   OP920 HDAT test data
+-  `f35a3c376a44 <https://github.com/open-power/skiboot/commit/f35a3c376a44>`__ hdata/memory: Remove
+   find_shared()
+-  `4822a7ba9d33 <https://github.com/open-power/skiboot/commit/4822a7ba9d33>`__ hdata/memory: Add
+   NVDIMM support
+-  `9b67792c3801 <https://github.com/open-power/skiboot/commit/9b67792c3801>`__ hw/phb4: Fix
+   indentation of brdgCtl
+-  `43f11d51e601 <https://github.com/open-power/skiboot/commit/43f11d51e601>`__ platforms/zz:
+   Re-enable LXVPD slot information parsing
+-  `1941d3f26373 <https://github.com/open-power/skiboot/commit/1941d3f26373>`__ platforms/romulus:
+   Also support talos
+-  `1c3baae4f2b3 <https://github.com/open-power/skiboot/commit/1c3baae4f2b3>`__ hdata/iohub: Look
+   for IOVPD on P9
+-  `0ec1e37004da <https://github.com/open-power/skiboot/commit/0ec1e37004da>`__ hw/phb4: Look for
+   the hub-id from in the PBCQ node
+-  `14372fc9fb60 <https://github.com/open-power/skiboot/commit/14372fc9fb60>`__ core/pci: Increase
+   the max slot string size
+-  `99937b943845 <https://github.com/open-power/skiboot/commit/99937b943845>`__ core/pcie-slot: Set
+   power state from the PWRCTL flag
+-  `efc568c1e30b <https://github.com/open-power/skiboot/commit/efc568c1e30b>`__ fsp/lxvpd: Print
+   more LXVPD slot information
+-  `0c86fef7e502 <https://github.com/open-power/skiboot/commit/0c86fef7e502>`__ firenze-pci: Always
+   init slot info from LXVPD
+-  `1ef5a64b85d5 <https://github.com/open-power/skiboot/commit/1ef5a64b85d5>`__ core/pcie-slot:
+   Better explain suprise_check
+-  `84aa25921a09 <https://github.com/open-power/skiboot/commit/84aa25921a09>`__ core/pcie-slot:
+   Don’t bail early in the power on case
+-  `70edcbb4b39d <https://github.com/open-power/skiboot/commit/70edcbb4b39d>`__ hw/phb4: Skip FRESET
+   PERST when coming from CRESET
+-  `e89d3f32d216 <https://github.com/open-power/skiboot/commit/e89d3f32d216>`__ hw/phb4: Remove
+   FRESET presence check
+-  `b8b4c79d4419 <https://github.com/open-power/skiboot/commit/b8b4c79d4419>`__ hw/phb4: Factor out
+   PERST control
+-  `722cf1c2ed56 <https://github.com/open-power/skiboot/commit/722cf1c2ed56>`__ hw/phb4: Drop
+   FRESET_DEASSERT_DELAY state
+-  `a31085d7d432 <https://github.com/open-power/skiboot/commit/a31085d7d432>`__ core/i2c: Add
+   request state tracking
+-  `d290b244efbc <https://github.com/open-power/skiboot/commit/d290b244efbc>`__ core/i2c: Poll on
+   request state in i2c_request_send()
+-  `319e7d935f13 <https://github.com/open-power/skiboot/commit/319e7d935f13>`__ core/i2c: split
+   i2c_request_send()
+-  `517f088a8e39 <https://github.com/open-power/skiboot/commit/517f088a8e39>`__ platforms/firenze:
+   Rework I2C controller fixups
+-  `ff960a77a192 <https://github.com/open-power/skiboot/commit/ff960a77a192>`__ core/pci: Prefer
+   ibm, slot-label when finding loc codes
+-  `af5a3ee925d1 <https://github.com/open-power/skiboot/commit/af5a3ee925d1>`__ hw/xscom: Enable sw
+   xstop by default on p9
+-  `b507209d2266 <https://github.com/open-power/skiboot/commit/b507209d2266>`__ hw/phb4: Squash the
+   IO bridge window
+-  `2e2157121aa1 <https://github.com/open-power/skiboot/commit/2e2157121aa1>`__ hw/phb4: Read
+   ibm,loc-code from PBCQ node
+-  `b50406ba4878 <https://github.com/open-power/skiboot/commit/b50406ba4878>`__ core/pci: Use PHB
+   io-base-location by default for PHB slots
+-  `98a1ae107396 <https://github.com/open-power/skiboot/commit/98a1ae107396>`__ hw/phb4: Fix
+   references to PHB3
+-  `290fbf30ddc2 <https://github.com/open-power/skiboot/commit/290fbf30ddc2>`__ pci/iov: Remove
+   skiboot VF tracking
+
+Reza Arbab (19):
+
+-  `aa56d9a2abdb <https://github.com/open-power/skiboot/commit/aa56d9a2abdb>`__ Remove duplicate
+   npu2-common.o from $(HW_OBJS)
+-  `552cb9e371d8 <https://github.com/open-power/skiboot/commit/552cb9e371d8>`__ npu2: Remove dead
+   code from npu2_cfg_write_bar()
+-  `69ca8a8ff7a9 <https://github.com/open-power/skiboot/commit/69ca8a8ff7a9>`__ npu2: Remove unused
+   npu2::bdf2pe_cache
+-  `2d12672a812f <https://github.com/open-power/skiboot/commit/2d12672a812f>`__ npu2: Remove unused
+   npu2::lxive_cache
+-  `237882bfc84f <https://github.com/open-power/skiboot/commit/237882bfc84f>`__ npu2: Remove unused
+   npu2_dev::procedure_data
+-  `b496cab97086 <https://github.com/open-power/skiboot/commit/b496cab97086>`__ npu2: Remove unused
+   npu2_dev_nvlink::vendor_cap
+-  `cd5ddbe3b40c <https://github.com/open-power/skiboot/commit/cd5ddbe3b40c>`__ npu2: Fix missing
+   iteration in tce kill loop
+-  `3f79ab6cdb4d <https://github.com/open-power/skiboot/commit/3f79ab6cdb4d>`__ npu2: Remove
+   redundant assignment to p->phb_nvlink.scan_map
+-  `38cf215cb505 <https://github.com/open-power/skiboot/commit/38cf215cb505>`__ npu2: Replace open
+   coded dt_find_by_name_addr()
+-  `9ef153f6f013 <https://github.com/open-power/skiboot/commit/9ef153f6f013>`__ core/lock: Stop
+   drop_my_locks() from always causing abort
+-  `d3803711f8a9 <https://github.com/open-power/skiboot/commit/d3803711f8a9>`__ Add PVR_TYPE_P9P
+-  `1ab11ac8b4b9 <https://github.com/open-power/skiboot/commit/1ab11ac8b4b9>`__ core/lock: Stop
+   drop_my_locks() from always causing abort
+-  `855465aa7804 <https://github.com/open-power/skiboot/commit/855465aa7804>`__ devicetree: Fix
+   syntax error in power9-phb4.dts
+-  `85c4c823ab11 <https://github.com/open-power/skiboot/commit/85c4c823ab11>`__ devicetree: Fix typo
+   in power9-phb4.dts
+-  `eecd9083f1bd <https://github.com/open-power/skiboot/commit/eecd9083f1bd>`__ devicetree: Add nx
+   node to power9-phb4.dts
+-  `13926b45897b <https://github.com/open-power/skiboot/commit/13926b45897b>`__ devicetree: Move
+   power9-phb4.dts
+-  `50d1a089deef <https://github.com/open-power/skiboot/commit/50d1a089deef>`__ devicetree: Add
+   p9-simics.dts
+-  `9f9dd8d71de9 <https://github.com/open-power/skiboot/commit/9f9dd8d71de9>`__ devicetree: Add
+   Makefile to build dtb binaries
+-  `46050485f5ef <https://github.com/open-power/skiboot/commit/46050485f5ef>`__ README: Reflect
+   openpower_mambo_defconfig name change
+
+Russell Currey (2):
+
+-  `8d8a9ca30453 <https://github.com/open-power/skiboot/commit/8d8a9ca30453>`__ external/mambo:
+   Populate kernel-base-address in the DT
+-  `edf7e841ff9d <https://github.com/open-power/skiboot/commit/edf7e841ff9d>`__ external/mambo:
+   Error out if kernel is too large
+
+Samuel Mendoza-Jonas (3):
+
+-  `9834b0874af4 <https://github.com/open-power/skiboot/commit/9834b0874af4>`__ include/ipmi: Fix
+   incorrect chassis commands
+-  `757dfba75e03 <https://github.com/open-power/skiboot/commit/757dfba75e03>`__ platforms/astbmc:
+   Check for SBE validation step
+-  `6ef47971a87d <https://github.com/open-power/skiboot/commit/6ef47971a87d>`__ doc/bmc: Document
+   SBE validation on P8 platforms
+
+Santosh Sivaraj (2):
+
+-  `3ac2db0a83e7 <https://github.com/open-power/skiboot/commit/3ac2db0a83e7>`__ flash: Add support
+   for async decompression
+-  `c86fb12c07a6 <https://github.com/open-power/skiboot/commit/c86fb12c07a6>`__ imc/catalog:
+   Decompress catalog asynchronously
+
+Shilpasri G Bhat (4):
+
+-  `a96739c6c1cd <https://github.com/open-power/skiboot/commit/a96739c6c1cd>`__ powercap: occ: Fix
+   the powercapping range allowed for user
+-  `0fe8ecd59fc0 <https://github.com/open-power/skiboot/commit/0fe8ecd59fc0>`__ powercap: occ: Fix
+   the powercapping range allowed for user
+-  `27e4943eade2 <https://github.com/open-power/skiboot/commit/27e4943eade2>`__ fast-reboot: occ:
+   Remove ‘freq-domain-mask’ from fast-reboot path
+-  `961b7128ebd8 <https://github.com/open-power/skiboot/commit/961b7128ebd8>`__ fast-reboot: occ:
+   Call occ_pstates_init() on fast-reset on all machines
+
+Stewart Smith (51):
+
+-  `44aa41061a9f <https://github.com/open-power/skiboot/commit/44aa41061a9f>`__ qemu: bt device
+   isn’t always hanging off /
+-  `59a21fc87f54 <https://github.com/open-power/skiboot/commit/59a21fc87f54>`__ sparse: Make tree
+   ‘constant is so big’ warning clean
+-  `625f9ac034f1 <https://github.com/open-power/skiboot/commit/625f9ac034f1>`__ zz: platform_ocapi
+   can be static
+-  `ec65b9ab4c4c <https://github.com/open-power/skiboot/commit/ec65b9ab4c4c>`__ zaius: zaius_ocapi
+   can be static
+-  `c2c426ef668b <https://github.com/open-power/skiboot/commit/c2c426ef668b>`__ doc: clarify
+   OPAL_RTC_READ return values
+-  `3170270be92a <https://github.com/open-power/skiboot/commit/3170270be92a>`__ firmware-versions:
+   Add test case for parsing VERSION
+-  `6bb72e8f7b9d <https://github.com/open-power/skiboot/commit/6bb72e8f7b9d>`__ firmware-versions:
+   Add test case for parsing VERSION
+-  `816a1d7bb2ef <https://github.com/open-power/skiboot/commit/816a1d7bb2ef>`__ pflash: Support
+   encoding/decoding ECC’d partitions
+-  `0647f2a2c4eb <https://github.com/open-power/skiboot/commit/0647f2a2c4eb>`__ skiboot v6.2.1
+   release notes
+-  `75382eb708c0 <https://github.com/open-power/skiboot/commit/75382eb708c0>`__ skiboot v6.2.1
+   release notes
+-  `7ac85e4517cc <https://github.com/open-power/skiboot/commit/7ac85e4517cc>`__ skiboot v6.0.17
+   release notes
+-  `40b377a01ef5 <https://github.com/open-power/skiboot/commit/40b377a01ef5>`__ hw/test: generalise
+   makefile
+-  `81847dd347ef <https://github.com/open-power/skiboot/commit/81847dd347ef>`__ doc: fix definition
+   lists in opal-imc-counters
+-  `f3ad5bb09249 <https://github.com/open-power/skiboot/commit/f3ad5bb09249>`__ sparse: symbol
+   ‘sbe_timer_lock’ was not declared. Should it be static?
+-  `96c0ec2ab78b <https://github.com/open-power/skiboot/commit/96c0ec2ab78b>`__ sparse: symbol
+   ‘xive_buddy_lock/xive_vp_buddy’ was not declared. Should it be static?
+-  `f9b79a611501 <https://github.com/open-power/skiboot/commit/f9b79a611501>`__ sparse: symbol
+   ’NPU2_PHY_*’ was not declared. Should it be static?
+-  `655e0bc6865c <https://github.com/open-power/skiboot/commit/655e0bc6865c>`__ sparse: symbol
+   ’procedure_*’ was not declared. Should it be static?
+-  `039d184dda21 <https://github.com/open-power/skiboot/commit/039d184dda21>`__ sparse: symbols in
+   imc.c weren’t declared, Should they be static?
+-  `3b8b7e8c4e78 <https://github.com/open-power/skiboot/commit/3b8b7e8c4e78>`__ sparse: symbol
+   ‘*bar*’ was not declared. Should it be static?
+-  `0eea56b06b4f <https://github.com/open-power/skiboot/commit/0eea56b06b4f>`__ Don’t use variable
+   length arrays in exception code
+-  `ee01ef4ed82a <https://github.com/open-power/skiboot/commit/ee01ef4ed82a>`__ i2c: Fix sparse
+   warnings for type assignment
+-  `428cb852e3a0 <https://github.com/open-power/skiboot/commit/428cb852e3a0>`__ qemu: bt device
+   isn’t always hanging off /
+-  `3ef409d43de9 <https://github.com/open-power/skiboot/commit/3ef409d43de9>`__ doc:
+   s/stb_init()/secureboot_init()/ to match reality
+-  `2b96407921a6 <https://github.com/open-power/skiboot/commit/2b96407921a6>`__ opal-ci: Drop
+   CentOS6 support
+-  `6c36257bf32f <https://github.com/open-power/skiboot/commit/6c36257bf32f>`__ opal-ci: Drop
+   unneded reference to ubuntu 12.04
+-  `e4a06f098c4f <https://github.com/open-power/skiboot/commit/e4a06f098c4f>`__ opal-ci: drop fedora
+   28
+-  `7cd8402c3bec <https://github.com/open-power/skiboot/commit/7cd8402c3bec>`__ Drop old Coverity
+   jobs (we build via separate .travis.yml in a branch)
+-  `043e85bf7477 <https://github.com/open-power/skiboot/commit/043e85bf7477>`__
+   hw/ipmi/test/run-fru: Fix string truncation warning, enhance test
+-  `fedb949b7179 <https://github.com/open-power/skiboot/commit/fedb949b7179>`__ Fix broken
+   opal-ci/build-fedora-rawhide.sh symlink
+-  `c0faa9232168 <https://github.com/open-power/skiboot/commit/c0faa9232168>`__ hdata: Add
+   protection against corrupt ntuples structure
+-  `a2c13f1d6119 <https://github.com/open-power/skiboot/commit/a2c13f1d6119>`__ hdata_to_dt: fail
+   “gracefully” on fatal op_display()
+-  `bee7be6ab780 <https://github.com/open-power/skiboot/commit/bee7be6ab780>`__ hdata: Prevent NULL
+   dereference on duplicate slot map info
+-  `d0e56d97d4cd <https://github.com/open-power/skiboot/commit/d0e56d97d4cd>`__ ci: Remove
+   debian-jessie boot test.
+-  `cb87cf17279b <https://github.com/open-power/skiboot/commit/cb87cf17279b>`__ ci: qemu boot tests
+   should use built skiboot
+-  `133cc8cea258 <https://github.com/open-power/skiboot/commit/133cc8cea258>`__ ci/fedora29:
+   –allowerasing to work around conflicting packages
+-  `11374f20e8f1 <https://github.com/open-power/skiboot/commit/11374f20e8f1>`__ Bump allowed stack
+   frame size for unit tests/host programs
+-  `3e0eef2e9a92 <https://github.com/open-power/skiboot/commit/3e0eef2e9a92>`__ Force noinline for
+   pci_add_(one)_device_node(s)()
+-  `050d8165ab05 <https://github.com/open-power/skiboot/commit/050d8165ab05>`__ skiboot v6.3-rc1
+   release notes
+-  `24268c766206 <https://github.com/open-power/skiboot/commit/24268c766206>`__ cpufeatures: Add
+   tm-suspend-hypervisor-assist and tm-suspend-xer-so-bug node
+-  `ff79070d1c4c <https://github.com/open-power/skiboot/commit/ff79070d1c4c>`__ skiboot v6.3-rc2
+   release notes
+-  `208ca81ffd47 <https://github.com/open-power/skiboot/commit/208ca81ffd47>`__ opal-ci: Centos7
+   with latest crosstool toolchain (gcc 8.1.0)
+-  `d318cdb3863f <https://github.com/open-power/skiboot/commit/d318cdb3863f>`__ hw/xscom: P9P rather
+   than P9
+-  `cb2e148df960 <https://github.com/open-power/skiboot/commit/cb2e148df960>`__ doc: Add (most)
+   nvram debugging options
+-  `44afdc1afb1f <https://github.com/open-power/skiboot/commit/44afdc1afb1f>`__ core/init: LPC isn’t
+   just P8 (fix comment)
+-  `b877a4e8b9ea <https://github.com/open-power/skiboot/commit/b877a4e8b9ea>`__ Write boot progress
+   to LPC port 80h
+-  `0634dd410dae <https://github.com/open-power/skiboot/commit/0634dd410dae>`__ Write boot progress
+   to LPC ports 81 and 82
+-  `588c39adb1ec <https://github.com/open-power/skiboot/commit/588c39adb1ec>`__ skiboot v6.3-rc3
+   release notes
+-  `119108908e9b <https://github.com/open-power/skiboot/commit/119108908e9b>`__ pci: Try harder to
+   add meaningful ibm,loc-code
+-  `14f709b8eeda <https://github.com/open-power/skiboot/commit/14f709b8eeda>`__ Disable fast-reset
+   for POWER8
+-  `54811997b6d0 <https://github.com/open-power/skiboot/commit/54811997b6d0>`__ skiboot v6.3 release
+   notes
+-  `2cc067ede570 <https://github.com/open-power/skiboot/commit/2cc067ede570>`__ ipmi: ensure forward
+   progress on ipmi_queue_msg_sync()
+
+Timothy Pearson (5):
+
+-  `8b26e29acbc8 <https://github.com/open-power/skiboot/commit/8b26e29acbc8>`__ Retry link training
+   at PCIe GEN1 if presence detected but training repeatedly failed
+-  `23903ca69351 <https://github.com/open-power/skiboot/commit/23903ca69351>`__ Copy and convert
+   Romulus descriptors to Talos
+-  `c51914b87b48 <https://github.com/open-power/skiboot/commit/c51914b87b48>`__ Remove Talos DT
+   match from Romulus file
+-  `27fcf2fa8350 <https://github.com/open-power/skiboot/commit/27fcf2fa8350>`__ Expose PNOR Flash
+   partitions to host MTD driver via devicetree
+-  `0f42d72abdf7 <https://github.com/open-power/skiboot/commit/0f42d72abdf7>`__ Mark all partitions
+   except full PNOR and boot kernel firmware read only
+
+Vaibhav Jain (8):
+
+-  `658c39dda366 <https://github.com/open-power/skiboot/commit/658c39dda366>`__ opal: Update
+   opal_del_host_sync_notifier() to accept ’void \*data’
+-  `9d2d0115eaca <https://github.com/open-power/skiboot/commit/9d2d0115eaca>`__ core/pci: Introduce
+   a new pci_slot_op named completed_sm_run()
+-  `763f397d5be7 <https://github.com/open-power/skiboot/commit/763f397d5be7>`__ capp/phb: Introduce
+   ‘struct capp’ to hold capp related info in ‘struct phb’
+-  `1a87f8f97175 <https://github.com/open-power/skiboot/commit/1a87f8f97175>`__ phb4/capp: Update
+   and re-factor phb4_set_capi_mode()
+-  `78ccc722c2fd <https://github.com/open-power/skiboot/commit/78ccc722c2fd>`__ capp/phb4: Force
+   CAPP to PCIe mode during kernel shutdown
+-  `52fa634e2152 <https://github.com/open-power/skiboot/commit/52fa634e2152>`__ capp/phb4: Introduce
+   PHB4 flag, PHB4_CAPP_DISABLE to disable CAPP
+-  `3dc87605be7a <https://github.com/open-power/skiboot/commit/3dc87605be7a>`__ phb4/capp: Implement
+   sequence to disable CAPP and enable fast-reset
+-  `d572d3a72fa2 <https://github.com/open-power/skiboot/commit/d572d3a72fa2>`__ capp/phb4: Prevent
+   HMI from getting triggered when disabling CAPP
+
+Vasant Hegde (38):
+
+-  `06ef9bd2d9a6 <https://github.com/open-power/skiboot/commit/06ef9bd2d9a6>`__ skiboot v6.0.15
+   release notes
+-  `7516e3827e50 <https://github.com/open-power/skiboot/commit/7516e3827e50>`__ core/ipmi: Improve
+   error message
+-  `554062d7fe5a <https://github.com/open-power/skiboot/commit/554062d7fe5a>`__ core/opal: Print PIR
+   value in exit path
+-  `67fc150c82a7 <https://github.com/open-power/skiboot/commit/67fc150c82a7>`__ skiboot v6.0.16
+   release notes
+-  `ab10b2e62e58 <https://github.com/open-power/skiboot/commit/ab10b2e62e58>`__ core/ipmi: Improve
+   error message
+-  `d07a5622a9e1 <https://github.com/open-power/skiboot/commit/d07a5622a9e1>`__ core/opal: Print PIR
+   value in exit path
+-  `b1d421875b4c <https://github.com/open-power/skiboot/commit/b1d421875b4c>`__ ipmi/power: Fix
+   system reboot issue
+-  `dd9b61cdfca7 <https://github.com/open-power/skiboot/commit/dd9b61cdfca7>`__ hdata/i2c: Reduce
+   severity of log message
+-  `b570fb646289 <https://github.com/open-power/skiboot/commit/b570fb646289>`__ libflash/ecc: Fix
+   compilation warning
+-  `cadaf7c36e83 <https://github.com/open-power/skiboot/commit/cadaf7c36e83>`__ libflash/ecc: Fix
+   compilation warning
+-  `fdd27ca27231 <https://github.com/open-power/skiboot/commit/fdd27ca27231>`__ hw/bt: Fix message
+   retry handler
+-  `01f977c33d46 <https://github.com/open-power/skiboot/commit/01f977c33d46>`__ hw/bt: Add backend
+   interface to disable ipmi message retry option
+-  `c526a280dcd1 <https://github.com/open-power/skiboot/commit/c526a280dcd1>`__ hdata/memory: Fix
+   warning message
+-  `4f0ceb63e951 <https://github.com/open-power/skiboot/commit/4f0ceb63e951>`__ hdata/memory:
+   Removed share-id property
+-  `61978c2c54d0 <https://github.com/open-power/skiboot/commit/61978c2c54d0>`__ hw/bt: Introduce
+   separate list for synchronous messages
+-  `968c30905d7a <https://github.com/open-power/skiboot/commit/968c30905d7a>`__ core/ipmi: Add ipmi
+   sync messages to top of the list
+-  `c0ab7b45db3d <https://github.com/open-power/skiboot/commit/c0ab7b45db3d>`__ hw/bt: Do not
+   disable ipmi message retry during OPAL boot
+-  `2e2bf87b42f7 <https://github.com/open-power/skiboot/commit/2e2bf87b42f7>`__ ipmi/power: Fix
+   system reboot issue
+-  `73fa7be132a4 <https://github.com/open-power/skiboot/commit/73fa7be132a4>`__ hw/bt: Fix message
+   retry handler
+-  `44f90875712f <https://github.com/open-power/skiboot/commit/44f90875712f>`__ hw/bt: Add backend
+   interface to disable ipmi message retry option
+-  `788c9ac2b926 <https://github.com/open-power/skiboot/commit/788c9ac2b926>`__ hw/bt: Introduce
+   separate list for synchronous messages
+-  `28f5fe3a6edc <https://github.com/open-power/skiboot/commit/28f5fe3a6edc>`__ core/ipmi: Add ipmi
+   sync messages to top of the list
+-  `af5c2978dbcd <https://github.com/open-power/skiboot/commit/af5c2978dbcd>`__ hw/bt: Do not
+   disable ipmi message retry during OPAL boot
+-  `5da21e2cc79d <https://github.com/open-power/skiboot/commit/5da21e2cc79d>`__ skiboot v6.2.2
+   release notes
+-  `6aa3bd8ab6ad <https://github.com/open-power/skiboot/commit/6aa3bd8ab6ad>`__ skiboot v6.0.18
+   release notes
+-  `261ca8e779e5 <https://github.com/open-power/skiboot/commit/261ca8e779e5>`__ skiboot v6.2.2
+   release notes
+-  `2ba5ce84a197 <https://github.com/open-power/skiboot/commit/2ba5ce84a197>`__ Update skiboot
+   stable tree rules
+-  `4456616272a4 <https://github.com/open-power/skiboot/commit/4456616272a4>`__ skiboot v6.0.19
+   release notes
+-  `92a5c57a14e2 <https://github.com/open-power/skiboot/commit/92a5c57a14e2>`__ skiboot v6.2.3
+   release notes
+-  `08de14aaa937 <https://github.com/open-power/skiboot/commit/08de14aaa937>`__ core/ipmi: Print
+   correct netfn value
+-  `7f291166283f <https://github.com/open-power/skiboot/commit/7f291166283f>`__
+   libflash/ipmi-hiomap: Fix blocks count issue
+-  `dfa935ebaa54 <https://github.com/open-power/skiboot/commit/dfa935ebaa54>`__ test-ipmi-hiomap:
+   Assert if size is zero
+-  `9facf3336054 <https://github.com/open-power/skiboot/commit/9facf3336054>`__ test-ipmi-hiomap:
+   Add write-one-byte test
+-  `9fd1495fba7a <https://github.com/open-power/skiboot/commit/9fd1495fba7a>`__ test-ipmi-hiomap:
+   Fix lpc-read-success
+-  `857f046d3ab0 <https://github.com/open-power/skiboot/commit/857f046d3ab0>`__ test-ipmi-hiomap:
+   Add read-one-byte test
+-  `e0b8541ff8ca <https://github.com/open-power/skiboot/commit/e0b8541ff8ca>`__ opal-prd: Check
+   malloc return value
+-  `ac226d2c98ad <https://github.com/open-power/skiboot/commit/ac226d2c98ad>`__ opal-prd: Fix memory
+   leak in is-fsp-system check
+-  `990d248a61a0 <https://github.com/open-power/skiboot/commit/990d248a61a0>`__ skiboot v6.3.1
+   release notes
+
+Package: vesnin-xml
+-------------------
+
+`Repository <https://github.com/open-power/vesnin-xml>`__
+
+.. _v2.3-patches-11:
+
+Patches
+~~~~~~~
+
+.. _v2.3-commits-11:
+
+Commits
+~~~~~~~
+
+Artem Senichev (2):
+
+-  `6549b6d2bf42 <https://github.com/open-power/vesnin-xml/commit/6549b6d2bf42>`__ Disable PCIe port
+   bifurcation
+-  `f44f8808fc7c <https://github.com/open-power/vesnin-xml/commit/f44f8808fc7c>`__ Fix
+   IBSCOM_MCS_BASE_ADDR formatting
+
+Package: witherspoon-xml
+------------------------
+
+`Repository <https://github.com/open-power/witherspoon-xml>`__
+
+.. _v2.3-patches-12:
+
+Patches
+~~~~~~~
+
+.. _v2.3-commits-12:
+
+Commits
+~~~~~~~
+
+Bill Hoffa (1):
+
+-  `ed1f0ebe2e2e <https://github.com/open-power/witherspoon-xml/commit/ed1f0ebe2e2e>`__ The
+   CONFIG_APPLY attribute needs a default value
+
+Erich Hauptli (2):
+
+-  `c47cddbcd13b <https://github.com/open-power/witherspoon-xml/commit/c47cddbcd13b>`__ Picked up
+   PROC_COMPAT\* attribute
+-  `00f0727053e8 <https://github.com/open-power/witherspoon-xml/commit/00f0727053e8>`__ Fixing GPU
+   I2C Addresses
diff --git a/op-build b/op-build
new file mode 100755
index 0000000..3824671
--- /dev/null
+++ b/op-build
@@ -0,0 +1,8 @@
+#!/bin/bash
+
+script_base="$(realpath $(dirname $0))"
+cd $script_base
+
+. op-build-env
+
+op-build $@
diff --git a/openpower/configs/barreleye_defconfig b/openpower/configs/barreleye_defconfig
index cff5e43..24aa83d 100644
--- a/openpower/configs/barreleye_defconfig
+++ b/openpower/configs/barreleye_defconfig
@@ -1,6 +1,5 @@
 BR2_powerpc64le=y
 BR2_powerpc_power8=y
-BR2_PACKAGE_HOST_LINUX_HEADERS_CUSTOM_4_19=y
 BR2_BINUTILS_EXTRA_CONFIG_OPTIONS="--enable-targets=powerpc64-linux"
 BR2_GCC_VERSION_6_X=y
 BR2_EXTRA_GCC_CONFIG_OPTIONS="--enable-targets=powerpc64-linux --disable-libsanitizer"
@@ -17,17 +16,19 @@
 BR2_ROOTFS_POST_BUILD_SCRIPT="../openpower/scripts/fixup-target-var ../openpower/scripts/firmware-whitelist"
 BR2_LINUX_KERNEL=y
 BR2_LINUX_KERNEL_CUSTOM_VERSION=y
-BR2_LINUX_KERNEL_CUSTOM_VERSION_VALUE="4.19.26"
+BR2_LINUX_KERNEL_CUSTOM_VERSION_VALUE="5.1.16"
 BR2_LINUX_KERNEL_PATCH="$(BR2_EXTERNAL_OP_BUILD_PATH)/linux"
 BR2_LINUX_KERNEL_USE_CUSTOM_CONFIG=y
 BR2_LINUX_KERNEL_CUSTOM_CONFIG_FILE="$(BR2_EXTERNAL_OP_BUILD_PATH)/configs/linux/skiroot_defconfig"
 BR2_LINUX_KERNEL_ZIMAGE_EPAPR=y
 BR2_LINUX_KERNEL_XZ=y
+BR2_LINUX_KERNEL_NEEDS_HOST_OPENSSL=y
 BR2_PACKAGE_BUSYBOX_CONFIG_FRAGMENT_FILES="$(BR2_EXTERNAL_OP_BUILD_PATH)/configs/busybox.fragment"
 BR2_PACKAGE_BUSYBOX_SHOW_OTHERS=y
 BR2_PACKAGE_LINUX_FIRMWARE=y
 BR2_PACKAGE_LINUX_FIRMWARE_BNX2X=y
 BR2_PACKAGE_LINUX_FIRMWARE_CXGB4_T4=y
+BR2_PACKAGE_CRYPTSETUP=y
 BR2_PACKAGE_IPMITOOL=y
 BR2_PACKAGE_IPMITOOL_USB=y
 BR2_PACKAGE_MDADM=y
diff --git a/openpower/configs/busybox.fragment b/openpower/configs/busybox.fragment
index db084af..1bf95a2 100644
--- a/openpower/configs/busybox.fragment
+++ b/openpower/configs/busybox.fragment
@@ -9,3 +9,4 @@
 CONFIG_FEATURE_UDHCPC6_RFC4704=y
 CONFIG_FEATURE_UDHCPC6_RFC4833=y
 CONFIG_USE_BB_CRYPT_SHA=y
+CONFIG_FEATURE_WGET_HTTPS=y
diff --git a/openpower/configs/firenze_defconfig b/openpower/configs/firenze_defconfig
index 7b6e477..91e1443 100644
--- a/openpower/configs/firenze_defconfig
+++ b/openpower/configs/firenze_defconfig
@@ -1,6 +1,5 @@
 BR2_powerpc64le=y
 BR2_powerpc_power8=y
-BR2_PACKAGE_HOST_LINUX_HEADERS_CUSTOM_4_19=y
 BR2_BINUTILS_EXTRA_CONFIG_OPTIONS="--enable-targets=powerpc64-linux"
 BR2_EXTRA_GCC_CONFIG_OPTIONS="--enable-targets=powerpc64-linux --disable-libsanitizer"
 BR2_TARGET_GENERIC_HOSTNAME="skiroot"
@@ -15,17 +14,19 @@
 BR2_ROOTFS_POST_BUILD_SCRIPT="../openpower/scripts/fixup-target-var ../openpower/scripts/firmware-whitelist"
 BR2_LINUX_KERNEL=y
 BR2_LINUX_KERNEL_CUSTOM_VERSION=y
-BR2_LINUX_KERNEL_CUSTOM_VERSION_VALUE="4.19.26"
+BR2_LINUX_KERNEL_CUSTOM_VERSION_VALUE="5.1.16"
 BR2_LINUX_KERNEL_PATCH="$(BR2_EXTERNAL_OP_BUILD_PATH)/linux"
 BR2_LINUX_KERNEL_USE_CUSTOM_CONFIG=y
 BR2_LINUX_KERNEL_CUSTOM_CONFIG_FILE="$(BR2_EXTERNAL_OP_BUILD_PATH)/configs/linux/skiroot_defconfig"
 BR2_LINUX_KERNEL_ZIMAGE_EPAPR=y
 BR2_LINUX_KERNEL_XZ=y
+BR2_LINUX_KERNEL_NEEDS_HOST_OPENSSL=y
 BR2_PACKAGE_BUSYBOX_CONFIG_FRAGMENT_FILES="$(BR2_EXTERNAL_OP_BUILD_PATH)/configs/busybox.fragment"
 BR2_PACKAGE_BUSYBOX_SHOW_OTHERS=y
 BR2_PACKAGE_LINUX_FIRMWARE=y
 BR2_PACKAGE_LINUX_FIRMWARE_BNX2X=y
 BR2_PACKAGE_LINUX_FIRMWARE_CXGB4_T4=y
+BR2_PACKAGE_CRYPTSETUP=y
 BR2_PACKAGE_IPMITOOL=y
 BR2_PACKAGE_IPMITOOL_USB=y
 BR2_PACKAGE_MDADM=y
diff --git a/openpower/configs/firestone_defconfig b/openpower/configs/firestone_defconfig
index c9b4d1b..dacc175 100644
--- a/openpower/configs/firestone_defconfig
+++ b/openpower/configs/firestone_defconfig
@@ -1,6 +1,5 @@
 BR2_powerpc64le=y
 BR2_powerpc_power8=y
-BR2_PACKAGE_HOST_LINUX_HEADERS_CUSTOM_4_19=y
 BR2_BINUTILS_EXTRA_CONFIG_OPTIONS="--enable-targets=powerpc64-linux"
 BR2_GCC_VERSION_6_X=y
 BR2_EXTRA_GCC_CONFIG_OPTIONS="--enable-targets=powerpc64-linux --disable-libsanitizer"
@@ -17,17 +16,19 @@
 BR2_ROOTFS_POST_BUILD_SCRIPT="../openpower/scripts/fixup-target-var ../openpower/scripts/firmware-whitelist"
 BR2_LINUX_KERNEL=y
 BR2_LINUX_KERNEL_CUSTOM_VERSION=y
-BR2_LINUX_KERNEL_CUSTOM_VERSION_VALUE="4.19.26"
+BR2_LINUX_KERNEL_CUSTOM_VERSION_VALUE="5.1.16"
 BR2_LINUX_KERNEL_PATCH="$(BR2_EXTERNAL_OP_BUILD_PATH)/linux"
 BR2_LINUX_KERNEL_USE_CUSTOM_CONFIG=y
 BR2_LINUX_KERNEL_CUSTOM_CONFIG_FILE="$(BR2_EXTERNAL_OP_BUILD_PATH)/configs/linux/skiroot_defconfig"
 BR2_LINUX_KERNEL_ZIMAGE_EPAPR=y
 BR2_LINUX_KERNEL_XZ=y
+BR2_LINUX_KERNEL_NEEDS_HOST_OPENSSL=y
 BR2_PACKAGE_BUSYBOX_CONFIG_FRAGMENT_FILES="$(BR2_EXTERNAL_OP_BUILD_PATH)/configs/busybox.fragment"
 BR2_PACKAGE_BUSYBOX_SHOW_OTHERS=y
 BR2_PACKAGE_LINUX_FIRMWARE=y
 BR2_PACKAGE_LINUX_FIRMWARE_BNX2X=y
 BR2_PACKAGE_LINUX_FIRMWARE_CXGB4_T4=y
+BR2_PACKAGE_CRYPTSETUP=y
 BR2_PACKAGE_IPMITOOL=y
 BR2_PACKAGE_IPMITOOL_USB=y
 BR2_PACKAGE_MDADM=y
diff --git a/openpower/configs/garrison_defconfig b/openpower/configs/garrison_defconfig
index 0f6b99a..3be51a3 100644
--- a/openpower/configs/garrison_defconfig
+++ b/openpower/configs/garrison_defconfig
@@ -1,6 +1,5 @@
 BR2_powerpc64le=y
 BR2_powerpc_power8=y
-BR2_PACKAGE_HOST_LINUX_HEADERS_CUSTOM_4_19=y
 BR2_BINUTILS_EXTRA_CONFIG_OPTIONS="--enable-targets=powerpc64-linux"
 BR2_GCC_VERSION_6_X=y
 BR2_EXTRA_GCC_CONFIG_OPTIONS="--enable-targets=powerpc64-linux --disable-libsanitizer"
@@ -17,17 +16,19 @@
 BR2_ROOTFS_POST_BUILD_SCRIPT="../openpower/scripts/fixup-target-var ../openpower/scripts/firmware-whitelist"
 BR2_LINUX_KERNEL=y
 BR2_LINUX_KERNEL_CUSTOM_VERSION=y
-BR2_LINUX_KERNEL_CUSTOM_VERSION_VALUE="4.19.26"
+BR2_LINUX_KERNEL_CUSTOM_VERSION_VALUE="5.1.16"
 BR2_LINUX_KERNEL_PATCH="$(BR2_EXTERNAL_OP_BUILD_PATH)/linux"
 BR2_LINUX_KERNEL_USE_CUSTOM_CONFIG=y
 BR2_LINUX_KERNEL_CUSTOM_CONFIG_FILE="$(BR2_EXTERNAL_OP_BUILD_PATH)/configs/linux/skiroot_defconfig"
 BR2_LINUX_KERNEL_ZIMAGE_EPAPR=y
 BR2_LINUX_KERNEL_XZ=y
+BR2_LINUX_KERNEL_NEEDS_HOST_OPENSSL=y
 BR2_PACKAGE_BUSYBOX_CONFIG_FRAGMENT_FILES="$(BR2_EXTERNAL_OP_BUILD_PATH)/configs/busybox.fragment"
 BR2_PACKAGE_BUSYBOX_SHOW_OTHERS=y
 BR2_PACKAGE_LINUX_FIRMWARE=y
 BR2_PACKAGE_LINUX_FIRMWARE_BNX2X=y
 BR2_PACKAGE_LINUX_FIRMWARE_CXGB4_T4=y
+BR2_PACKAGE_CRYPTSETUP=y
 BR2_PACKAGE_IPMITOOL=y
 BR2_PACKAGE_IPMITOOL_USB=y
 BR2_PACKAGE_MDADM=y
diff --git a/openpower/configs/habanero_defconfig b/openpower/configs/habanero_defconfig
index d5dfcbd..d8510c8 100644
--- a/openpower/configs/habanero_defconfig
+++ b/openpower/configs/habanero_defconfig
@@ -1,6 +1,5 @@
 BR2_powerpc64le=y
 BR2_powerpc_power8=y
-BR2_PACKAGE_HOST_LINUX_HEADERS_CUSTOM_4_19=y
 BR2_BINUTILS_EXTRA_CONFIG_OPTIONS="--enable-targets=powerpc64-linux"
 BR2_GCC_VERSION_6_X=y
 BR2_EXTRA_GCC_CONFIG_OPTIONS="--enable-targets=powerpc64-linux --disable-libsanitizer"
@@ -17,17 +16,19 @@
 BR2_ROOTFS_POST_BUILD_SCRIPT="../openpower/scripts/fixup-target-var ../openpower/scripts/firmware-whitelist"
 BR2_LINUX_KERNEL=y
 BR2_LINUX_KERNEL_CUSTOM_VERSION=y
-BR2_LINUX_KERNEL_CUSTOM_VERSION_VALUE="4.19.26"
+BR2_LINUX_KERNEL_CUSTOM_VERSION_VALUE="5.1.16"
 BR2_LINUX_KERNEL_PATCH="$(BR2_EXTERNAL_OP_BUILD_PATH)/linux"
 BR2_LINUX_KERNEL_USE_CUSTOM_CONFIG=y
 BR2_LINUX_KERNEL_CUSTOM_CONFIG_FILE="$(BR2_EXTERNAL_OP_BUILD_PATH)/configs/linux/skiroot_defconfig"
 BR2_LINUX_KERNEL_ZIMAGE_EPAPR=y
 BR2_LINUX_KERNEL_XZ=y
+BR2_LINUX_KERNEL_NEEDS_HOST_OPENSSL=y
 BR2_PACKAGE_BUSYBOX_CONFIG_FRAGMENT_FILES="$(BR2_EXTERNAL_OP_BUILD_PATH)/configs/busybox.fragment"
 BR2_PACKAGE_BUSYBOX_SHOW_OTHERS=y
 BR2_PACKAGE_LINUX_FIRMWARE=y
 BR2_PACKAGE_LINUX_FIRMWARE_BNX2X=y
 BR2_PACKAGE_LINUX_FIRMWARE_CXGB4_T4=y
+BR2_PACKAGE_CRYPTSETUP=y
 BR2_PACKAGE_IPMITOOL=y
 BR2_PACKAGE_IPMITOOL_USB=y
 BR2_PACKAGE_MDADM=y
diff --git a/openpower/configs/hostboot/p8dtu.config b/openpower/configs/hostboot/p8dtu.config
new file mode 100644
index 0000000..7781d39
--- /dev/null
+++ b/openpower/configs/hostboot/p8dtu.config
@@ -0,0 +1,70 @@
+# The Serial Flash Controller is the AST2400 BMC.
+set   SFC_IS_AST2400
+set   PNORDD_IS_IPMI
+unset PNORDD_IS_SFC
+set   BMC_DOES_SFC_INIT
+unset SFC_IS_IBM_DPSS
+set   ALLOW_MICRON_PNOR
+set   ALLOW_MACRONIX_PNOR
+
+# VPD options.
+set MVPD_READ_FROM_HW
+set MVPD_WRITE_TO_HW
+set MVPD_READ_FROM_PNOR
+set MVPD_WRITE_TO_PNOR
+set DJVPD_READ_FROM_HW
+unset DJVPD_WRITE_TO_HW
+set DJVPD_READ_FROM_PNOR
+set DJVPD_WRITE_TO_PNOR
+set CVPD_READ_FROM_HW
+set CVPD_WRITE_TO_HW
+set CVPD_READ_FROM_PNOR
+set CVPD_WRITE_TO_PNOR
+set PVPD_READ_FROM_HW
+set PVPD_WRITE_TO_HW
+set PVPD_READ_FROM_PNOR
+set PVPD_WRITE_TO_PNOR
+set SKIP_RESTRICT_EX_UNITS
+unset CDIMM_FORMAT_FOR_CVPD
+
+# gpio config
+set GPIODD
+set PALMETTO_VDDR
+
+# Enable SBE updates
+#set SBE_UPDATE_INDEPENDENT
+set SBE_UPDATE_SIMULTANEOUS
+
+unset PCIE_HOTPLUG_CONTROLLER
+
+# turn on console output
+set CONSOLE
+set BMC_AST2400
+
+# Enable Kingston dimm voltage workaround
+unset KINGSTON_1_35_VOLT
+
+unset DISABLE_HOSTBOOT_RUNTIME
+
+# Compile in hostboot runtime PRD
+set HBRT_PRD
+set HTMGT
+set START_OCC_DURING_BOOT
+
+#PNOR flags
+unset PNOR_TWO_SIDE_SUPPORT
+set PNOR_IS_32MB
+
+set BMC_BT_LPC_IPMI
+
+unset SET_NOMINAL_PSTATE
+
+# Enable Checktop Analysis
+set ENABLE_CHECKSTOP_ANALYSIS
+set IPLTIME_CHECKSTOP_ANALYSIS
+
+# Hostboot will detect hardware changes
+set HOST_HCDB_SUPPORT
+
+# set for trace debug to console
+unset CONSOLE_OUTPUT_TRACE
diff --git a/openpower/configs/linux/pseries_skiroot_defconfig b/openpower/configs/linux/pseries_skiroot_defconfig
index 3a7df13..b39e5eb 100644
--- a/openpower/configs/linux/pseries_skiroot_defconfig
+++ b/openpower/configs/linux/pseries_skiroot_defconfig
@@ -1,8 +1,3 @@
-CONFIG_PPC64=y
-CONFIG_ALTIVEC=y
-CONFIG_VSX=y
-CONFIG_NR_CPUS=2048
-CONFIG_CPU_LITTLE_ENDIAN=y
 # CONFIG_SWAP is not set
 CONFIG_SYSVIPC=y
 CONFIG_POSIX_MQUEUE=y
@@ -26,15 +21,11 @@
 CONFIG_CC_OPTIMIZE_FOR_SIZE=y
 CONFIG_PERF_EVENTS=y
 # CONFIG_COMPAT_BRK is not set
-CONFIG_JUMP_LABEL=y
-CONFIG_MODULES=y
-CONFIG_MODULE_UNLOAD=y
-CONFIG_MODULE_SIG=y
-CONFIG_MODULE_SIG_FORCE=y
-CONFIG_MODULE_SIG_SHA512=y
-CONFIG_BLK_DEV_INTEGRITY=y
-CONFIG_PARTITION_ADVANCED=y
-# CONFIG_IOSCHED_DEADLINE is not set
+CONFIG_PPC64=y
+CONFIG_ALTIVEC=y
+CONFIG_VSX=y
+CONFIG_NR_CPUS=2048
+CONFIG_CPU_LITTLE_ENDIAN=y
 CONFIG_PPC_SPLPAR=y
 CONFIG_PPC_SMLPAR=y
 CONFIG_KVM_GUEST=y
@@ -44,14 +35,21 @@
 CONFIG_HZ_100=y
 CONFIG_KEXEC=y
 CONFIG_IRQ_ALL_CPUS=y
-# CONFIG_COMPACTION is not set
-# CONFIG_MIGRATION is not set
-# CONFIG_BOUNCE is not set
 CONFIG_PPC_64K_PAGES=y
 CONFIG_SCHED_SMT=y
 CONFIG_CMDLINE_BOOL=y
 CONFIG_CMDLINE="console=tty0 console=hvc0 quiet"
 # CONFIG_SECCOMP is not set
+CONFIG_JUMP_LABEL=y
+CONFIG_MODULES=y
+CONFIG_MODULE_UNLOAD=y
+CONFIG_MODULE_SIG=y
+CONFIG_MODULE_SIG_FORCE=y
+CONFIG_MODULE_SIG_SHA512=y
+CONFIG_BLK_DEV_INTEGRITY=y
+CONFIG_PARTITION_ADVANCED=y
+# CONFIG_COMPACTION is not set
+# CONFIG_MIGRATION is not set
 CONFIG_NET=y
 CONFIG_PACKET=y
 CONFIG_UNIX=y
@@ -140,7 +138,6 @@
 CONFIG_BNX2X=m
 CONFIG_CHELSIO_T1=y
 CONFIG_BE2NET=m
-CONFIG_S2IO=m
 CONFIG_IBMVETH=m
 CONFIG_E100=m
 CONFIG_E1000=m
@@ -148,6 +145,7 @@
 CONFIG_IXGB=m
 CONFIG_IXGBE=m
 CONFIG_MYRI10GE=m
+CONFIG_S2IO=m
 CONFIG_QLGE=m
 CONFIG_NETXEN_NIC=m
 CONFIG_SFC=m
@@ -222,6 +220,19 @@
 CONFIG_NLS_ASCII=y
 CONFIG_NLS_ISO8859_1=y
 CONFIG_NLS_UTF8=y
+CONFIG_SECURITY=y
+CONFIG_IMA=y
+CONFIG_EVM=y
+# CONFIG_CRYPTO_ECHAINIV is not set
+CONFIG_CRYPTO_ECB=y
+CONFIG_CRYPTO_XTS=m
+CONFIG_CRYPTO_CMAC=y
+CONFIG_CRYPTO_MD4=y
+CONFIG_CRYPTO_ARC4=y
+CONFIG_CRYPTO_DES=y
+CONFIG_CRYPTO_USER_API_HASH=m
+CONFIG_CRYPTO_USER_API_SKCIPHER=m
+# CONFIG_CRYPTO_HW is not set
 CONFIG_CRC16=y
 CONFIG_CRC_ITU_T=y
 CONFIG_LIBCRC32C=y
@@ -233,13 +244,3 @@
 # CONFIG_FTRACE is not set
 CONFIG_XMON=y
 CONFIG_XMON_DEFAULT=y
-CONFIG_SECURITY=y
-CONFIG_IMA=y
-CONFIG_EVM=y
-# CONFIG_CRYPTO_ECHAINIV is not set
-CONFIG_CRYPTO_ECB=y
-CONFIG_CRYPTO_CMAC=y
-CONFIG_CRYPTO_MD4=y
-CONFIG_CRYPTO_ARC4=y
-CONFIG_CRYPTO_DES=y
-# CONFIG_CRYPTO_HW is not set
diff --git a/openpower/configs/linux/skiroot_defconfig b/openpower/configs/linux/skiroot_defconfig
index 9ddb542..7c6c1a1 100644
--- a/openpower/configs/linux/skiroot_defconfig
+++ b/openpower/configs/linux/skiroot_defconfig
@@ -52,12 +52,10 @@
 CONFIG_MODULE_SIG_FORCE=y
 CONFIG_MODULE_SIG_SHA512=y
 CONFIG_PARTITION_ADVANCED=y
-# CONFIG_IOSCHED_DEADLINE is not set
 # CONFIG_MQ_IOSCHED_DEADLINE is not set
 # CONFIG_MQ_IOSCHED_KYBER is not set
 # CONFIG_COMPACTION is not set
 # CONFIG_MIGRATION is not set
-# CONFIG_BOUNCE is not set
 CONFIG_NET=y
 CONFIG_PACKET=y
 CONFIG_UNIX=y
@@ -154,6 +152,7 @@
 # CONFIG_NET_VENDOR_HP is not set
 # CONFIG_NET_VENDOR_HUAWEI is not set
 CONFIG_E1000=m
+CONFIG_E1000E=m
 CONFIG_IGB=m
 CONFIG_IXGB=m
 CONFIG_IXGBE=m
@@ -162,6 +161,8 @@
 CONFIG_MLX4_EN=m
 # CONFIG_MLX4_CORE_GEN2 is not set
 CONFIG_MLX5_CORE=m
+CONFIG_MLX5_CORE_EN=y
+# CONFIG_MLX5_EN_RXNFC is not set
 # CONFIG_NET_VENDOR_MICREL is not set
 # CONFIG_NET_VENDOR_MICROSEMI is not set
 CONFIG_MYRI10GE=m
@@ -266,6 +267,7 @@
 CONFIG_MSDOS_FS=m
 CONFIG_VFAT_FS=m
 CONFIG_PROC_KCORE=y
+CONFIG_HUGETLBFS=y
 # CONFIG_MISC_FILESYSTEMS is not set
 # CONFIG_NETWORK_FILESYSTEMS is not set
 CONFIG_NLS=y
@@ -276,6 +278,9 @@
 CONFIG_NLS_UTF8=y
 CONFIG_ENCRYPTED_KEYS=y
 # CONFIG_CRYPTO_ECHAINIV is not set
+CONFIG_CRYPTO_XTS=m
+CONFIG_CRYPTO_USER_API_HASH=m
+CONFIG_CRYPTO_USER_API_SKCIPHER=m
 # CONFIG_CRYPTO_HW is not set
 CONFIG_CRC16=y
 CONFIG_CRC_ITU_T=y
@@ -297,4 +302,3 @@
 # CONFIG_FTRACE is not set
 # CONFIG_RUNTIME_TESTING_MENU is not set
 CONFIG_XMON=y
-CONFIG_XMON_DEFAULT=y
diff --git a/openpower/configs/openpower_mambo_defconfig b/openpower/configs/opal_defconfig
similarity index 89%
rename from openpower/configs/openpower_mambo_defconfig
rename to openpower/configs/opal_defconfig
index da413fa..83f3e30 100644
--- a/openpower/configs/openpower_mambo_defconfig
+++ b/openpower/configs/opal_defconfig
@@ -1,6 +1,5 @@
 BR2_powerpc64le=y
 BR2_powerpc_power8=y
-BR2_PACKAGE_HOST_LINUX_HEADERS_CUSTOM_4_19=y
 BR2_BINUTILS_EXTRA_CONFIG_OPTIONS="--enable-targets=powerpc64-linux"
 BR2_EXTRA_GCC_CONFIG_OPTIONS="--enable-targets=powerpc64-linux --disable-libsanitizer"
 BR2_TARGET_GENERIC_HOSTNAME="skiroot"
@@ -13,17 +12,19 @@
 BR2_ROOTFS_POST_BUILD_SCRIPT="../openpower/scripts/fixup-target-var ../openpower/scripts/firmware-whitelist"
 BR2_LINUX_KERNEL=y
 BR2_LINUX_KERNEL_CUSTOM_VERSION=y
-BR2_LINUX_KERNEL_CUSTOM_VERSION_VALUE="4.19.26"
+BR2_LINUX_KERNEL_CUSTOM_VERSION_VALUE="5.1.16"
 BR2_LINUX_KERNEL_PATCH="$(BR2_EXTERNAL_OP_BUILD_PATH)/linux"
 BR2_LINUX_KERNEL_USE_CUSTOM_CONFIG=y
 BR2_LINUX_KERNEL_CUSTOM_CONFIG_FILE="$(BR2_EXTERNAL_OP_BUILD_PATH)/configs/linux/skiroot_defconfig"
 BR2_LINUX_KERNEL_ZIMAGE_EPAPR=y
 BR2_LINUX_KERNEL_XZ=y
+BR2_LINUX_KERNEL_NEEDS_HOST_OPENSSL=y
 BR2_PACKAGE_BUSYBOX_CONFIG_FRAGMENT_FILES="$(BR2_EXTERNAL_OP_BUILD_PATH)/configs/busybox.fragment"
 BR2_PACKAGE_BUSYBOX_SHOW_OTHERS=y
 BR2_PACKAGE_LINUX_FIRMWARE=y
 BR2_PACKAGE_LINUX_FIRMWARE_BNX2X=y
 BR2_PACKAGE_LINUX_FIRMWARE_CXGB4_T4=y
+BR2_PACKAGE_CRYPTSETUP=y
 BR2_PACKAGE_IPMITOOL=y
 BR2_PACKAGE_IPMITOOL_USB=y
 BR2_PACKAGE_MDADM=y
@@ -45,8 +46,11 @@
 # BR2_PACKAGE_HOSTBOOT_BINARIES is not set
 # BR2_PACKAGE_MACHINE_XML is not set
 # BR2_PACKAGE_OPENPOWER_PNOR is not set
-BR2_OPENPOWER_CONFIG_NAME="openpower-mambo"
+BR2_OPENPOWER_CONFIG_NAME="opal"
 BR2_PACKAGE_PETITBOOT=y
+BR2_PACKAGE_PETITBOOT_MTD=y
 # BR2_PACKAGE_HOST_P8_PORE_BINUTILS is not set
+# BR2_PACKAGE_OCC_P8 is not set
 # BR2_PACKAGE_CAPP_UCODE is not set
+BR2_SKIBOOT_DEVICETREE=y
 # BR2_PACKAGE_IMA_CATALOG is not set
diff --git a/openpower/configs/witherspoon_dev_defconfig b/openpower/configs/p8dtu_defconfig
similarity index 66%
rename from openpower/configs/witherspoon_dev_defconfig
rename to openpower/configs/p8dtu_defconfig
index 0d7b51d..490a8d0 100644
--- a/openpower/configs/witherspoon_dev_defconfig
+++ b/openpower/configs/p8dtu_defconfig
@@ -1,6 +1,6 @@
 BR2_powerpc64le=y
 BR2_powerpc_power8=y
-BR2_PACKAGE_HOST_LINUX_HEADERS_CUSTOM_4_19=y
+BR2_GLOBAL_PATCH_DIR="$(BR2_EXTERNAL_OP_BUILD_PATH)/patches/p8dtu-patches"
 BR2_BINUTILS_EXTRA_CONFIG_OPTIONS="--enable-targets=powerpc64-linux"
 BR2_GCC_VERSION_6_X=y
 BR2_EXTRA_GCC_CONFIG_OPTIONS="--enable-targets=powerpc64-linux --disable-libsanitizer"
@@ -17,17 +17,19 @@
 BR2_ROOTFS_POST_BUILD_SCRIPT="../openpower/scripts/fixup-target-var ../openpower/scripts/firmware-whitelist"
 BR2_LINUX_KERNEL=y
 BR2_LINUX_KERNEL_CUSTOM_VERSION=y
-BR2_LINUX_KERNEL_CUSTOM_VERSION_VALUE="4.19.26"
+BR2_LINUX_KERNEL_CUSTOM_VERSION_VALUE="5.1.16"
 BR2_LINUX_KERNEL_PATCH="$(BR2_EXTERNAL_OP_BUILD_PATH)/linux"
 BR2_LINUX_KERNEL_USE_CUSTOM_CONFIG=y
 BR2_LINUX_KERNEL_CUSTOM_CONFIG_FILE="$(BR2_EXTERNAL_OP_BUILD_PATH)/configs/linux/skiroot_defconfig"
 BR2_LINUX_KERNEL_ZIMAGE_EPAPR=y
 BR2_LINUX_KERNEL_XZ=y
+BR2_LINUX_KERNEL_NEEDS_HOST_OPENSSL=y
 BR2_PACKAGE_BUSYBOX_CONFIG_FRAGMENT_FILES="$(BR2_EXTERNAL_OP_BUILD_PATH)/configs/busybox.fragment"
 BR2_PACKAGE_BUSYBOX_SHOW_OTHERS=y
 BR2_PACKAGE_LINUX_FIRMWARE=y
 BR2_PACKAGE_LINUX_FIRMWARE_BNX2X=y
 BR2_PACKAGE_LINUX_FIRMWARE_CXGB4_T4=y
+BR2_PACKAGE_CRYPTSETUP=y
 BR2_PACKAGE_IPMITOOL=y
 BR2_PACKAGE_IPMITOOL_USB=y
 BR2_PACKAGE_MDADM=y
@@ -43,28 +45,25 @@
 BR2_TARGET_ROOTFS_CPIO_XZ=y
 BR2_TARGET_ROOTFS_INITRAMFS=y
 BR2_OPENPOWER_PLATFORM=y
-BR2_OPENPOWER_POWER9=y
-BR2_HOSTBOOT_LATEST_VERSION=y
-BR2_HOSTBOOT_CONFIG_FILE="witherspoon.config"
-BR2_OPENPOWER_MACHINE_XML_GITHUB_PROJECT_VALUE="witherspoon-xml"
-BR2_OPENPOWER_MACHINE_XML_VERSION="7cd20a6ac8fe3b693ccf50a5ab86ce55ca994fdc"
-BR2_OPENPOWER_MACHINE_XML_FILENAME="witherspoon.xml"
-BR2_OPENPOWER_SYSTEM_XML_FILENAME="WITHERSPOON_hb.system.xml"
-BR2_OPENPOWER_MRW_XML_FILENAME="WITHERSPOON_hb.mrw.xml"
-BR2_OPENPOWER_BIOS_XML_FILENAME="WITHERSPOON_bios.xml"
-BR2_OPENPOWER_PNOR_XML_LAYOUT_FILENAME="defaultPnorLayout_64.xml"
-BR2_OPENPOWER_CONFIG_NAME="witherspoon"
-BR2_OPENPOWER_PNOR_FILENAME="witherspoon.pnor"
-BR2_HOSTBOOT_BINARY_SBE_FILENAME="nimbus_sbe.img.ecc"
+BR2_OPENPOWER_POWER8=y
+BR2_HOSTBOOT_P8_CONFIG_FILE="p8dtu.config"
+BR2_OPENPOWER_MACHINE_XML_GITHUB_PROJECT_VALUE="p8dtu-xml"
+BR2_OPENPOWER_MACHINE_XML_VERSION="a44ee3e29ff143053c0d0ec65e5a255402654616"
+BR2_OPENPOWER_MACHINE_XML_FILENAME="p8dtu.xml"
+BR2_OPENPOWER_SYSTEM_XML_FILENAME="P8DTU_hb.system.xml"
+BR2_OPENPOWER_MRW_XML_FILENAME="P8DTU_hb.mrw.xml"
+BR2_OPENPOWER_BIOS_XML_FILENAME="P8DTU_bios.xml"
+BR2_OPENPOWER_PNOR_XML_LAYOUT_FILENAME="defaultPnorLayoutSingleSide.xml"
+BR2_OPENPOWER_CONFIG_NAME="p8dtu"
+BR2_OPENPOWER_PNOR_FILENAME="P8DTU.pnor"
+BR2_HOSTBOOT_BINARY_SBE_FILENAME="venice_sbe.img.ecc"
 BR2_HOSTBOOT_BINARY_SBEC_FILENAME="centaur_sbec_pad.img.ecc"
-BR2_HOSTBOOT_BINARY_WINK_FILENAME="p9n.ref_image.hdr.bin.ecc"
+BR2_HOSTBOOT_BINARY_WINK_FILENAME="p8.ref_image.hdr.bin.ecc"
 BR2_IMA_CATALOG_FILENAME="ima_catalog.bin"
-BR2_OPENPOWER_TARGETING_BIN_FILENAME="WITHERSPOON_HB.targeting.bin"
-BR2_OPENPOWER_TARGETING_ECC_FILENAME="WITHERSPOON_HB.targeting.bin.ecc"
-BR2_BUILD_PNOR_SQUASHFS=y
+BR2_OPENPOWER_TARGETING_BIN_FILENAME="P8DTU_HB.targeting.bin"
+BR2_OPENPOWER_TARGETING_ECC_FILENAME="P8DTU_HB.targeting.bin.ecc"
 BR2_PACKAGE_PETITBOOT=y
 BR2_PACKAGE_PETITBOOT_MTD=y
-BR2_OCC_GPU_BIN_BUILD=y
 BR2_CAPP_UCODE_BIN_FILENAME="cappucode.bin"
 BR2_PACKAGE_LOADKEYS=y
-BR2_IMA_CATALOG_DTS="POWER9"
+BR2_IMA_CATALOG_DTS="POWER8"
diff --git a/openpower/configs/p9dsu_defconfig b/openpower/configs/p9dsu_defconfig
index b26b4ab..ea79657 100644
--- a/openpower/configs/p9dsu_defconfig
+++ b/openpower/configs/p9dsu_defconfig
@@ -1,6 +1,5 @@
 BR2_powerpc64le=y
 BR2_powerpc_power8=y
-BR2_PACKAGE_HOST_LINUX_HEADERS_CUSTOM_4_19=y
 BR2_BINUTILS_EXTRA_CONFIG_OPTIONS="--enable-targets=powerpc64-linux"
 BR2_GCC_VERSION_6_X=y
 BR2_EXTRA_GCC_CONFIG_OPTIONS="--enable-targets=powerpc64-linux --disable-libsanitizer"
@@ -17,18 +16,20 @@
 BR2_ROOTFS_POST_BUILD_SCRIPT="../openpower/scripts/fixup-target-var ../openpower/scripts/firmware-whitelist"
 BR2_LINUX_KERNEL=y
 BR2_LINUX_KERNEL_CUSTOM_VERSION=y
-BR2_LINUX_KERNEL_CUSTOM_VERSION_VALUE="4.19.26"
+BR2_LINUX_KERNEL_CUSTOM_VERSION_VALUE="5.1.16"
 BR2_LINUX_KERNEL_PATCH="$(BR2_EXTERNAL_OP_BUILD_PATH)/linux"
 BR2_LINUX_KERNEL_USE_CUSTOM_CONFIG=y
 BR2_LINUX_KERNEL_CUSTOM_CONFIG_FILE="$(BR2_EXTERNAL_OP_BUILD_PATH)/configs/linux/skiroot_defconfig"
 BR2_LINUX_KERNEL_ZIMAGE_EPAPR=y
 BR2_LINUX_KERNEL_XZ=y
+BR2_LINUX_KERNEL_NEEDS_HOST_OPENSSL=y
 BR2_PACKAGE_BUSYBOX_CONFIG_FRAGMENT_FILES="$(BR2_EXTERNAL_OP_BUILD_PATH)/configs/busybox.fragment"
 BR2_PACKAGE_BUSYBOX_SHOW_OTHERS=y
 BR2_PACKAGE_LINUX_FIRMWARE=y
 BR2_PACKAGE_LINUX_FIRMWARE_BNX2X=y
 BR2_PACKAGE_LINUX_FIRMWARE_CXGB4_T4=y
 BR2_PACKAGE_LINUX_FIRMWARE_QLOGIC_2XXX=y
+BR2_PACKAGE_CRYPTSETUP=y
 BR2_PACKAGE_IPMITOOL=y
 BR2_PACKAGE_IPMITOOL_USB=y
 BR2_PACKAGE_MDADM=y
diff --git a/openpower/configs/palmetto_defconfig b/openpower/configs/palmetto_defconfig
index b53957d..03576b3 100644
--- a/openpower/configs/palmetto_defconfig
+++ b/openpower/configs/palmetto_defconfig
@@ -1,6 +1,5 @@
 BR2_powerpc64le=y
 BR2_powerpc_power8=y
-BR2_PACKAGE_HOST_LINUX_HEADERS_CUSTOM_4_19=y
 BR2_BINUTILS_EXTRA_CONFIG_OPTIONS="--enable-targets=powerpc64-linux"
 BR2_GCC_VERSION_6_X=y
 BR2_EXTRA_GCC_CONFIG_OPTIONS="--enable-targets=powerpc64-linux --disable-libsanitizer"
@@ -15,17 +14,19 @@
 BR2_ROOTFS_POST_BUILD_SCRIPT="../openpower/scripts/fixup-target-var ../openpower/scripts/firmware-whitelist"
 BR2_LINUX_KERNEL=y
 BR2_LINUX_KERNEL_CUSTOM_VERSION=y
-BR2_LINUX_KERNEL_CUSTOM_VERSION_VALUE="4.19.26"
+BR2_LINUX_KERNEL_CUSTOM_VERSION_VALUE="5.1.16"
 BR2_LINUX_KERNEL_PATCH="$(BR2_EXTERNAL_OP_BUILD_PATH)/linux"
 BR2_LINUX_KERNEL_USE_CUSTOM_CONFIG=y
 BR2_LINUX_KERNEL_CUSTOM_CONFIG_FILE="$(BR2_EXTERNAL_OP_BUILD_PATH)/configs/linux/skiroot_defconfig"
 BR2_LINUX_KERNEL_ZIMAGE_EPAPR=y
 BR2_LINUX_KERNEL_XZ=y
+BR2_LINUX_KERNEL_NEEDS_HOST_OPENSSL=y
 BR2_PACKAGE_BUSYBOX_CONFIG_FRAGMENT_FILES="$(BR2_EXTERNAL_OP_BUILD_PATH)/configs/busybox.fragment"
 BR2_PACKAGE_BUSYBOX_SHOW_OTHERS=y
 BR2_PACKAGE_LINUX_FIRMWARE=y
 BR2_PACKAGE_LINUX_FIRMWARE_BNX2X=y
 BR2_PACKAGE_LINUX_FIRMWARE_CXGB4_T4=y
+BR2_PACKAGE_CRYPTSETUP=y
 BR2_PACKAGE_IPMITOOL=y
 BR2_PACKAGE_IPMITOOL_USB=y
 BR2_PACKAGE_MDADM=y
diff --git a/openpower/configs/pseries_defconfig b/openpower/configs/pseries_defconfig
index fa44906..7ca9457 100644
--- a/openpower/configs/pseries_defconfig
+++ b/openpower/configs/pseries_defconfig
@@ -1,6 +1,5 @@
 BR2_powerpc64le=y
 BR2_powerpc_power8=y
-BR2_PACKAGE_HOST_LINUX_HEADERS_CUSTOM_4_19=y
 BR2_BINUTILS_EXTRA_CONFIG_OPTIONS="--enable-targets=powerpc64-linux"
 BR2_GCC_VERSION_6_X=y
 BR2_EXTRA_GCC_CONFIG_OPTIONS="--enable-targets=powerpc64-linux --disable-libsanitizer"
@@ -16,17 +15,19 @@
 BR2_ROOTFS_POST_BUILD_SCRIPT="../openpower/scripts/fixup-target-var ../openpower/scripts/firmware-whitelist"
 BR2_LINUX_KERNEL=y
 BR2_LINUX_KERNEL_CUSTOM_VERSION=y
-BR2_LINUX_KERNEL_CUSTOM_VERSION_VALUE="4.19.26"
+BR2_LINUX_KERNEL_CUSTOM_VERSION_VALUE="5.1.16"
 BR2_LINUX_KERNEL_PATCH="$(BR2_EXTERNAL_OP_BUILD_PATH)/linux"
 BR2_LINUX_KERNEL_USE_CUSTOM_CONFIG=y
 BR2_LINUX_KERNEL_CUSTOM_CONFIG_FILE="$(BR2_EXTERNAL_OP_BUILD_PATH)/configs/linux/pseries_skiroot_defconfig"
 BR2_LINUX_KERNEL_ZIMAGE_EPAPR=y
 BR2_LINUX_KERNEL_XZ=y
+BR2_LINUX_KERNEL_NEEDS_HOST_OPENSSL=y
 BR2_PACKAGE_BUSYBOX_CONFIG_FRAGMENT_FILES="$(BR2_EXTERNAL_OP_BUILD_PATH)/configs/busybox.fragment"
 BR2_PACKAGE_BUSYBOX_SHOW_OTHERS=y
 BR2_PACKAGE_LINUX_FIRMWARE=y
 BR2_PACKAGE_LINUX_FIRMWARE_BNX2X=y
 BR2_PACKAGE_LINUX_FIRMWARE_CXGB4_T4=y
+BR2_PACKAGE_CRYPTSETUP=y
 BR2_PACKAGE_I2C_TOOLS=y
 BR2_PACKAGE_IPMITOOL=y
 BR2_PACKAGE_IPMITOOL_USB=y
diff --git a/openpower/configs/romulus_defconfig b/openpower/configs/romulus_defconfig
index ebbbf06..a1b59e3 100644
--- a/openpower/configs/romulus_defconfig
+++ b/openpower/configs/romulus_defconfig
@@ -1,6 +1,5 @@
 BR2_powerpc64le=y
 BR2_powerpc_power8=y
-BR2_PACKAGE_HOST_LINUX_HEADERS_CUSTOM_4_19=y
 BR2_BINUTILS_EXTRA_CONFIG_OPTIONS="--enable-targets=powerpc64-linux"
 BR2_GCC_VERSION_6_X=y
 BR2_EXTRA_GCC_CONFIG_OPTIONS="--enable-targets=powerpc64-linux --disable-libsanitizer"
@@ -17,17 +16,19 @@
 BR2_ROOTFS_POST_BUILD_SCRIPT="../openpower/scripts/fixup-target-var ../openpower/scripts/firmware-whitelist"
 BR2_LINUX_KERNEL=y
 BR2_LINUX_KERNEL_CUSTOM_VERSION=y
-BR2_LINUX_KERNEL_CUSTOM_VERSION_VALUE="4.19.26"
+BR2_LINUX_KERNEL_CUSTOM_VERSION_VALUE="5.1.16"
 BR2_LINUX_KERNEL_PATCH="$(BR2_EXTERNAL_OP_BUILD_PATH)/linux"
 BR2_LINUX_KERNEL_USE_CUSTOM_CONFIG=y
 BR2_LINUX_KERNEL_CUSTOM_CONFIG_FILE="$(BR2_EXTERNAL_OP_BUILD_PATH)/configs/linux/skiroot_defconfig"
 BR2_LINUX_KERNEL_ZIMAGE_EPAPR=y
 BR2_LINUX_KERNEL_XZ=y
+BR2_LINUX_KERNEL_NEEDS_HOST_OPENSSL=y
 BR2_PACKAGE_BUSYBOX_CONFIG_FRAGMENT_FILES="$(BR2_EXTERNAL_OP_BUILD_PATH)/configs/busybox.fragment"
 BR2_PACKAGE_BUSYBOX_SHOW_OTHERS=y
 BR2_PACKAGE_LINUX_FIRMWARE=y
 BR2_PACKAGE_LINUX_FIRMWARE_BNX2X=y
 BR2_PACKAGE_LINUX_FIRMWARE_CXGB4_T4=y
+BR2_PACKAGE_CRYPTSETUP=y
 BR2_PACKAGE_IPMITOOL=y
 BR2_PACKAGE_IPMITOOL_USB=y
 BR2_PACKAGE_MDADM=y
@@ -46,7 +47,7 @@
 BR2_OPENPOWER_POWER9=y
 BR2_HOSTBOOT_CONFIG_FILE="romulus.config"
 BR2_OPENPOWER_MACHINE_XML_GITHUB_PROJECT_VALUE="romulus-xml"
-BR2_OPENPOWER_MACHINE_XML_VERSION="741046046ec3a6fea28c3829b451801b16f22fd0"
+BR2_OPENPOWER_MACHINE_XML_VERSION="eac9377724ba56ff4a0f2a45a45709d1c75f2615"
 BR2_OPENPOWER_MACHINE_XML_FILENAME="romulus.xml"
 BR2_OPENPOWER_SYSTEM_XML_FILENAME="ROMULUS_hb.system.xml"
 BR2_OPENPOWER_MRW_XML_FILENAME="ROMULUS_hb.mrw.xml"
diff --git a/openpower/configs/vesnin_defconfig b/openpower/configs/vesnin_defconfig
index cc1e15a..5f073eb 100644
--- a/openpower/configs/vesnin_defconfig
+++ b/openpower/configs/vesnin_defconfig
@@ -1,7 +1,6 @@
 BR2_powerpc64le=y
 BR2_powerpc_power8=y
 BR2_GLOBAL_PATCH_DIR="$(BR2_EXTERNAL_OP_BUILD_PATH)/patches/vesnin-patches"
-BR2_PACKAGE_HOST_LINUX_HEADERS_CUSTOM_4_19=y
 BR2_BINUTILS_EXTRA_CONFIG_OPTIONS="--enable-targets=powerpc64-linux"
 BR2_GCC_VERSION_6_X=y
 BR2_EXTRA_GCC_CONFIG_OPTIONS="--enable-targets=powerpc64-linux --disable-libsanitizer"
@@ -16,17 +15,19 @@
 BR2_ROOTFS_POST_BUILD_SCRIPT="../openpower/scripts/fixup-target-var ../openpower/scripts/firmware-whitelist"
 BR2_LINUX_KERNEL=y
 BR2_LINUX_KERNEL_CUSTOM_VERSION=y
-BR2_LINUX_KERNEL_CUSTOM_VERSION_VALUE="4.19.26"
+BR2_LINUX_KERNEL_CUSTOM_VERSION_VALUE="5.1.16"
 BR2_LINUX_KERNEL_PATCH="$(BR2_EXTERNAL_OP_BUILD_PATH)/linux"
 BR2_LINUX_KERNEL_USE_CUSTOM_CONFIG=y
 BR2_LINUX_KERNEL_CUSTOM_CONFIG_FILE="$(BR2_EXTERNAL_OP_BUILD_PATH)/configs/linux/skiroot_defconfig"
 BR2_LINUX_KERNEL_ZIMAGE_EPAPR=y
 BR2_LINUX_KERNEL_XZ=y
+BR2_LINUX_KERNEL_NEEDS_HOST_OPENSSL=y
 BR2_PACKAGE_BUSYBOX_CONFIG_FRAGMENT_FILES="$(BR2_EXTERNAL_OP_BUILD_PATH)/configs/busybox.fragment"
 BR2_PACKAGE_BUSYBOX_SHOW_OTHERS=y
 BR2_PACKAGE_LINUX_FIRMWARE=y
 BR2_PACKAGE_LINUX_FIRMWARE_BNX2X=y
 BR2_PACKAGE_LINUX_FIRMWARE_QLOGIC_4X=y
+BR2_PACKAGE_CRYPTSETUP=y
 BR2_PACKAGE_I2C_TOOLS=y
 BR2_PACKAGE_IPMITOOL=y
 BR2_PACKAGE_MDADM=y
@@ -44,7 +45,7 @@
 BR2_OPENPOWER_POWER8=y
 BR2_HOSTBOOT_P8_CONFIG_FILE="vesnin.config"
 BR2_OPENPOWER_MACHINE_XML_GITHUB_PROJECT_VALUE="vesnin-xml"
-BR2_OPENPOWER_MACHINE_XML_VERSION="c994a1815bcb7a95289de8e75ceeb1b7e0f165cd"
+BR2_OPENPOWER_MACHINE_XML_VERSION="deed9ba0bc6d1d68b416ed3e14853b86838897d7"
 BR2_OPENPOWER_MACHINE_XML_FILENAME="vesnin.xml"
 BR2_OPENPOWER_SYSTEM_XML_FILENAME="VESNIN_hb.system.xml"
 BR2_OPENPOWER_MRW_XML_FILENAME="VESNIN_hb.mrw.xml"
diff --git a/openpower/configs/witherspoon_defconfig b/openpower/configs/witherspoon_defconfig
index d405bd9..96a1d0c 100644
--- a/openpower/configs/witherspoon_defconfig
+++ b/openpower/configs/witherspoon_defconfig
@@ -1,6 +1,5 @@
 BR2_powerpc64le=y
 BR2_powerpc_power8=y
-BR2_PACKAGE_HOST_LINUX_HEADERS_CUSTOM_4_19=y
 BR2_BINUTILS_EXTRA_CONFIG_OPTIONS="--enable-targets=powerpc64-linux"
 BR2_GCC_VERSION_6_X=y
 BR2_EXTRA_GCC_CONFIG_OPTIONS="--enable-targets=powerpc64-linux --disable-libsanitizer"
@@ -17,17 +16,19 @@
 BR2_ROOTFS_POST_BUILD_SCRIPT="../openpower/scripts/fixup-target-var ../openpower/scripts/firmware-whitelist"
 BR2_LINUX_KERNEL=y
 BR2_LINUX_KERNEL_CUSTOM_VERSION=y
-BR2_LINUX_KERNEL_CUSTOM_VERSION_VALUE="4.19.26"
+BR2_LINUX_KERNEL_CUSTOM_VERSION_VALUE="5.1.16"
 BR2_LINUX_KERNEL_PATCH="$(BR2_EXTERNAL_OP_BUILD_PATH)/linux"
 BR2_LINUX_KERNEL_USE_CUSTOM_CONFIG=y
 BR2_LINUX_KERNEL_CUSTOM_CONFIG_FILE="$(BR2_EXTERNAL_OP_BUILD_PATH)/configs/linux/skiroot_defconfig"
 BR2_LINUX_KERNEL_ZIMAGE_EPAPR=y
 BR2_LINUX_KERNEL_XZ=y
+BR2_LINUX_KERNEL_NEEDS_HOST_OPENSSL=y
 BR2_PACKAGE_BUSYBOX_CONFIG_FRAGMENT_FILES="$(BR2_EXTERNAL_OP_BUILD_PATH)/configs/busybox.fragment"
 BR2_PACKAGE_BUSYBOX_SHOW_OTHERS=y
 BR2_PACKAGE_LINUX_FIRMWARE=y
 BR2_PACKAGE_LINUX_FIRMWARE_BNX2X=y
 BR2_PACKAGE_LINUX_FIRMWARE_CXGB4_T4=y
+BR2_PACKAGE_CRYPTSETUP=y
 BR2_PACKAGE_IPMITOOL=y
 BR2_PACKAGE_IPMITOOL_USB=y
 BR2_PACKAGE_MDADM=y
@@ -46,7 +47,7 @@
 BR2_OPENPOWER_POWER9=y
 BR2_HOSTBOOT_CONFIG_FILE="witherspoon.config"
 BR2_OPENPOWER_MACHINE_XML_GITHUB_PROJECT_VALUE="witherspoon-xml"
-BR2_OPENPOWER_MACHINE_XML_VERSION="f7cffdbe00f6a3945b36e46e77572bdd07731c37"
+BR2_OPENPOWER_MACHINE_XML_VERSION="a6f4df381b970f62ce86bd5d43e0b4fa6c90f5b3"
 BR2_OPENPOWER_MACHINE_XML_FILENAME="witherspoon.xml"
 BR2_OPENPOWER_SYSTEM_XML_FILENAME="WITHERSPOON_hb.system.xml"
 BR2_OPENPOWER_MRW_XML_FILENAME="WITHERSPOON_hb.mrw.xml"
diff --git a/openpower/configs/zaius_defconfig b/openpower/configs/zaius_defconfig
index c46fb07..e5a3961 100644
--- a/openpower/configs/zaius_defconfig
+++ b/openpower/configs/zaius_defconfig
@@ -1,6 +1,5 @@
 BR2_powerpc64le=y
 BR2_powerpc_power8=y
-BR2_PACKAGE_HOST_LINUX_HEADERS_CUSTOM_4_19=y
 BR2_BINUTILS_EXTRA_CONFIG_OPTIONS="--enable-targets=powerpc64-linux"
 BR2_GCC_VERSION_6_X=y
 BR2_EXTRA_GCC_CONFIG_OPTIONS="--enable-targets=powerpc64-linux --disable-libsanitizer"
@@ -17,17 +16,19 @@
 BR2_ROOTFS_POST_BUILD_SCRIPT="../openpower/scripts/fixup-target-var ../openpower/scripts/firmware-whitelist"
 BR2_LINUX_KERNEL=y
 BR2_LINUX_KERNEL_CUSTOM_VERSION=y
-BR2_LINUX_KERNEL_CUSTOM_VERSION_VALUE="4.19.26"
+BR2_LINUX_KERNEL_CUSTOM_VERSION_VALUE="5.1.16"
 BR2_LINUX_KERNEL_PATCH="$(BR2_EXTERNAL_OP_BUILD_PATH)/linux"
 BR2_LINUX_KERNEL_USE_CUSTOM_CONFIG=y
 BR2_LINUX_KERNEL_CUSTOM_CONFIG_FILE="$(BR2_EXTERNAL_OP_BUILD_PATH)/configs/linux/skiroot_defconfig"
 BR2_LINUX_KERNEL_ZIMAGE_EPAPR=y
 BR2_LINUX_KERNEL_XZ=y
+BR2_LINUX_KERNEL_NEEDS_HOST_OPENSSL=y
 BR2_PACKAGE_BUSYBOX_CONFIG_FRAGMENT_FILES="$(BR2_EXTERNAL)/configs/busybox.fragment"
 BR2_PACKAGE_BUSYBOX_SHOW_OTHERS=y
 BR2_PACKAGE_LINUX_FIRMWARE=y
 BR2_PACKAGE_LINUX_FIRMWARE_BNX2X=y
 BR2_PACKAGE_LINUX_FIRMWARE_CXGB4_T4=y
+BR2_PACKAGE_CRYPTSETUP=y
 BR2_PACKAGE_IPMITOOL=y
 BR2_PACKAGE_IPMITOOL_USB=y
 BR2_PACKAGE_MDADM=y
diff --git a/openpower/configs/zz_defconfig b/openpower/configs/zz_defconfig
index e3de570..f4a8b91 100644
--- a/openpower/configs/zz_defconfig
+++ b/openpower/configs/zz_defconfig
@@ -1,6 +1,5 @@
 BR2_powerpc64le=y
 BR2_powerpc_power8=y
-BR2_PACKAGE_HOST_LINUX_HEADERS_CUSTOM_4_19=y
 BR2_BINUTILS_EXTRA_CONFIG_OPTIONS="--enable-targets=powerpc64-linux"
 BR2_EXTRA_GCC_CONFIG_OPTIONS="--enable-targets=powerpc64-linux --disable-libsanitizer"
 BR2_TARGET_GENERIC_HOSTNAME="skiroot"
@@ -15,17 +14,19 @@
 BR2_ROOTFS_POST_BUILD_SCRIPT="../openpower/scripts/fixup-target-var ../openpower/scripts/firmware-whitelist"
 BR2_LINUX_KERNEL=y
 BR2_LINUX_KERNEL_CUSTOM_VERSION=y
-BR2_LINUX_KERNEL_CUSTOM_VERSION_VALUE="4.19.26"
+BR2_LINUX_KERNEL_CUSTOM_VERSION_VALUE="5.1.16"
 BR2_LINUX_KERNEL_PATCH="$(BR2_EXTERNAL_OP_BUILD_PATH)/linux"
 BR2_LINUX_KERNEL_USE_CUSTOM_CONFIG=y
 BR2_LINUX_KERNEL_CUSTOM_CONFIG_FILE="$(BR2_EXTERNAL_OP_BUILD_PATH)/configs/linux/skiroot_defconfig"
 BR2_LINUX_KERNEL_ZIMAGE_EPAPR=y
 BR2_LINUX_KERNEL_XZ=y
+BR2_LINUX_KERNEL_NEEDS_HOST_OPENSSL=y
 BR2_PACKAGE_BUSYBOX_CONFIG_FRAGMENT_FILES="$(BR2_EXTERNAL_OP_BUILD_PATH)/configs/busybox.fragment"
 BR2_PACKAGE_BUSYBOX_SHOW_OTHERS=y
 BR2_PACKAGE_LINUX_FIRMWARE=y
 BR2_PACKAGE_LINUX_FIRMWARE_BNX2X=y
 BR2_PACKAGE_LINUX_FIRMWARE_CXGB4_T4=y
+BR2_PACKAGE_CRYPTSETUP=y
 BR2_PACKAGE_IPMITOOL=y
 BR2_PACKAGE_IPMITOOL_USB=y
 BR2_PACKAGE_MDADM=y
diff --git a/openpower/linux/0001-xhci-Reset-controller-on-xhci-shutdown.patch b/openpower/linux/0001-xhci-Reset-controller-on-xhci-shutdown.patch
index 9ca189d..d25646e 100644
--- a/openpower/linux/0001-xhci-Reset-controller-on-xhci-shutdown.patch
+++ b/openpower/linux/0001-xhci-Reset-controller-on-xhci-shutdown.patch
@@ -14,10 +14,10 @@
  1 file changed, 1 insertion(+)
 
 diff --git a/drivers/usb/host/xhci.c b/drivers/usb/host/xhci.c
-index dae3be1b9c8f..bd675c5db608 100644
+index f39ca3980e48..bd7011c1ad34 100644
 --- a/drivers/usb/host/xhci.c
 +++ b/drivers/usb/host/xhci.c
-@@ -794,6 +794,7 @@ static void xhci_shutdown(struct usb_hcd *hcd)
+@@ -793,6 +793,7 @@ static void xhci_shutdown(struct usb_hcd *hcd)
  	/* Yet another workaround for spurious wakeups at shutdown with HSW */
  	if (xhci->quirks & XHCI_SPURIOUS_WAKEUP)
  		pci_set_power_state(to_pci_dev(hcd->self.sysdev), PCI_D3hot);
diff --git a/openpower/linux/0002-Release-OpenPower-kernel.patch b/openpower/linux/0002-Release-OpenPower-kernel.patch
index 695b62d..c627e66 100644
--- a/openpower/linux/0002-Release-OpenPower-kernel.patch
+++ b/openpower/linux/0002-Release-OpenPower-kernel.patch
@@ -1,6 +1,6 @@
 From 0000000000000000000000000000000000000000 Mon Sep 17 00:00:00 2001
 From: Joel Stanley <joel@jms.id.au>
-Date: Mon, 3 Dec 2018 10:10:31 +1030
+Date: Tue, 25 Jun 2019 14:32:27 +0930
 Subject: [PATCH 2/2] Release OpenPower kernel
 
 Signed-off-by: Joel Stanley <joel@jms.id.au>
@@ -9,15 +9,15 @@
  1 file changed, 1 insertion(+), 1 deletion(-)
 
 diff --git a/Makefile b/Makefile
-index b71076cecba9..0fc730790bfa 100644
+index 46a0ae537182..eb11583f17cf 100644
 --- a/Makefile
 +++ b/Makefile
 @@ -2,7 +2,7 @@
- VERSION = 4
- PATCHLEVEL = 19
- SUBLEVEL = 26
+ VERSION = 5
+ PATCHLEVEL = 1
+ SUBLEVEL = 16
 -EXTRAVERSION =
 +EXTRAVERSION = -openpower1
- NAME = "People's Front"
+ NAME = Shy Crocodile
  
  # *DOCUMENTATION*
diff --git a/openpower/package/hcode/Config.in b/openpower/package/hcode/Config.in
index 5c6cbb4..a51491c 100644
--- a/openpower/package/hcode/Config.in
+++ b/openpower/package/hcode/Config.in
@@ -31,7 +31,7 @@
 
 config BR2_HCODE_VERSION
 	string
-	default "hw022319a.930" if BR2_HCODE_LATEST_VERSION
+	default "hw070319a.940" if BR2_HCODE_LATEST_VERSION
 	default BR2_HCODE_CUSTOM_VERSION_VALUE \
 		if BR2_HCODE_CUSTOM_VERSION
 
diff --git a/openpower/package/hcode/hcode.mk b/openpower/package/hcode/hcode.mk
index f35a363..c97d54a 100644
--- a/openpower/package/hcode/hcode.mk
+++ b/openpower/package/hcode/hcode.mk
@@ -18,6 +18,9 @@
 HW_IMAGE_BIN=p9n.hw_image.bin
 HCODE_IMAGE_BIN = p9n.ref_image.bin
 
+HW_AXONE_IMAGE_BIN=p9a.hw_image.bin
+HCODE_AXONE_IMAGE_BIN = p9a.ref_image.bin
+
 CROSS_COMPILER_PATH=$(PPE42_GCC_BIN)
 PPE_TOOL_PATH ?= $(CROSS_COMPILER_PATH)
 PPE_PREFIX    ?= $(PPE_TOOL_PATH)/bin/powerpc-eabi-
@@ -33,6 +36,7 @@
 define HCODE_INSTALL_IMAGES_CMDS
 	mkdir -p $(STAGING_DIR)/hcode
 	$(INSTALL) $(@D)/$(HW_IMAGE_BIN_PATH)/$(HW_IMAGE_BIN) $(STAGING_DIR)/hcode/$(HCODE_IMAGE_BIN)
+        $(INSTALL) $(@D)/$(HW_IMAGE_BIN_PATH)/$(HW_AXONE_IMAGE_BIN) $(STAGING_DIR)/hcode/$(HCODE_AXONE_IMAGE_BIN)
 endef
 
 define HCODE_BUILD_CMDS
diff --git a/openpower/package/hostboot-binaries/Config.in b/openpower/package/hostboot-binaries/Config.in
index 94e5178..fe28868 100644
--- a/openpower/package/hostboot-binaries/Config.in
+++ b/openpower/package/hostboot-binaries/Config.in
@@ -24,7 +24,7 @@
 
 config BR2_HOSTBOOT_BINARIES_VERSION
 	string
-	default "hw021419a.930" if BR2_HOSTBOOT_BINARIES_LATEST_VERSION
+	default "hw062819a.940" if BR2_HOSTBOOT_BINARIES_LATEST_VERSION
 	default BR2_HOSTBOOT_BINARIES_CUSTOM_VERSION_VALUE \
 		if BR2_HOSTBOOT_BINARIES_CUSTOM_VERSION
 
diff --git a/openpower/package/hostboot-binaries/hostboot_binaries.mk b/openpower/package/hostboot-binaries/hostboot_binaries.mk
index aefe480..658c281 100644
--- a/openpower/package/hostboot-binaries/hostboot_binaries.mk
+++ b/openpower/package/hostboot-binaries/hostboot_binaries.mk
@@ -14,23 +14,46 @@
 HOSTBOOT_BINARIES_INSTALL_IMAGES = YES
 HOSTBOOT_BINARIES_INSTALL_TARGET = NO
 
-NIMBUS_RING_FILE=p9n.hw.rings.bin
-NIMBUS_RING_OVERLAYS_FILE=p9n.hw.overlays.bin
+# Creating Install Commands specific to P8 and P9
+# -- P8 does not need the nimbus and axone ring files
+# -- P9 does not need the SBE files ('sbe' package is used in P9)
+# -- P9 uses the 'hcode' package to build the BR2_HOSTBOOT_BINARY_WINK_FILENAME
 
-#for P9 the hw_ref image is changing to not be padded with ECC.  However
-#all the other op-build files use the end name result.  Thus replace ".hdr.bin.ecc"
-#with ".bin"
-BIN_FILENAME ?= $(if $(BR2_OPENPOWER_POWER9),$(subst hdr.bin.ecc,bin,$(BR2_HOSTBOOT_BINARY_WINK_FILENAME)),$(BR2_HOSTBOOT_BINARY_WINK_FILENAME))
-
+###################################
+# P8:
+ifeq ($(BR2_OPENPOWER_POWER8),y)
 define HOSTBOOT_BINARIES_INSTALL_IMAGES_CMDS
      $(INSTALL) -D $(@D)/cvpd.bin  $(STAGING_DIR)/hostboot_binaries/cvpd.bin
-     $(INSTALL) -D $(@D)/$(BIN_FILENAME) $(STAGING_DIR)/hostboot_binaries/
+     $(INSTALL) -D $(@D)/$(BR2_HOSTBOOT_BINARY_WINK_FILENAME) $(STAGING_DIR)/hostboot_binaries/
+     $(INSTALL) -D $(@D)/$(BR2_HOSTBOOT_BINARY_IONV_FILENAME)  $(STAGING_DIR)/hostboot_binaries/
      $(INSTALL) -D $(@D)/$(BR2_HOSTBOOT_BINARY_SBEC_FILENAME) $(STAGING_DIR)/hostboot_binaries/
      $(INSTALL) -D $(@D)/$(BR2_HOSTBOOT_BINARY_SBE_FILENAME)  $(STAGING_DIR)/hostboot_binaries/
      $(INSTALL) -D $(@D)/gpu_gpe1.bin  $(STAGING_DIR)/hostboot_binaries/gpu_gpe1.bin
+endef
+endif
+
+###################################
+# P9:
+ifeq ($(BR2_OPENPOWER_POWER9),y)
+
+NIMBUS_RING_FILE=p9n.hw.rings.bin
+NIMBUS_RING_OVERLAYS_FILE=p9n.hw.overlays.bin
+
+AXONE_RING_FILE=p9a.hw.rings.bin
+AXONE_RING_OVERLAYS_FILE=p9a.hw.overlays.bin
+
+
+define HOSTBOOT_BINARIES_INSTALL_IMAGES_CMDS
+     $(INSTALL) -D $(@D)/cvpd.bin  $(STAGING_DIR)/hostboot_binaries/cvpd.bin
+     $(INSTALL) -D $(@D)/gpu_gpe1.bin  $(STAGING_DIR)/hostboot_binaries/gpu_gpe1.bin
+     $(INSTALL) -D $(@D)/$(BR2_HOSTBOOT_BINARY_IONV_FILENAME)  $(STAGING_DIR)/hostboot_binaries/
+     $(INSTALL) -D $(@D)/$(BR2_HOSTBOOT_BINARY_SBEC_FILENAME) $(STAGING_DIR)/hostboot_binaries/
      $(INSTALL) -D $(@D)/$(NIMBUS_RING_FILE)  $(STAGING_DIR)/hostboot_binaries/
      $(INSTALL) -D $(@D)/$(NIMBUS_RING_OVERLAYS_FILE)  $(STAGING_DIR)/hostboot_binaries/
-     $(INSTALL) -D $(@D)/$(BR2_HOSTBOOT_BINARY_IONV_FILENAME)  $(STAGING_DIR)/hostboot_binaries/
+     $(INSTALL) -D $(@D)/$(AXONE_RING_FILE)  $(STAGING_DIR)/hostboot_binaries/
+     $(INSTALL) -D $(@D)/$(AXONE_RING_OVERLAYS_FILE)  $(STAGING_DIR)/hostboot_binaries/
 endef
+endif
+
 
 $(eval $(generic-package))
diff --git a/openpower/package/hostboot-p8/hostboot-p8.mk b/openpower/package/hostboot-p8/hostboot-p8.mk
index 58be71b..907bb82 100644
--- a/openpower/package/hostboot-p8/hostboot-p8.mk
+++ b/openpower/package/hostboot-p8/hostboot-p8.mk
@@ -3,7 +3,7 @@
 # hostboot for POWER8
 #
 ################################################################################
-HOSTBOOT_P8_VERSION ?= a3b0cb929cbf28bc82e54ef8787d36fd5eac4b0a
+HOSTBOOT_P8_VERSION ?= 27dda299f0adf3c2ff433b9f2820c6b663673df8
 
 HOSTBOOT_P8_SITE ?= $(call github,open-power,hostboot,$(HOSTBOOT_P8_VERSION))
 
diff --git a/openpower/package/hostboot/0007-Disable-warnings-that-crop-up-a-lot-with-GCC6.patch b/openpower/package/hostboot/0007-Disable-warnings-that-crop-up-a-lot-with-GCC6.patch
deleted file mode 100644
index e8def56..0000000
--- a/openpower/package/hostboot/0007-Disable-warnings-that-crop-up-a-lot-with-GCC6.patch
+++ /dev/null
@@ -1,47 +0,0 @@
-From 6f008e0bfdfbc9256f18ea0939dfc11d23348675 Mon Sep 17 00:00:00 2001
-From: Stewart Smith <stewart@linux.vnet.ibm.com>
-Date: Thu, 2 Mar 2017 16:15:25 +1100
-Subject: [PATCH] Disable warnings that crop up a lot with GCC6
-
-NOTE: THIS IS A TERRIBLE IDEA
-
-Instead, Hostboot developers should go and fix their code.
-
-Change-Id: I3e1da9f61ff442e49f143f51ccfc3c7c018beb1f
-Signed-off-by: Stewart Smith <stewart@linux.vnet.ibm.com>
----
- src/build/mkrules/cflags.env.mk | 8 +++++---
- 1 file changed, 5 insertions(+), 3 deletions(-)
-
-diff --git a/src/build/mkrules/cflags.env.mk b/src/build/mkrules/cflags.env.mk
-index 6bb900288388..428de9326400 100644
---- a/src/build/mkrules/cflags.env.mk
-+++ b/src/build/mkrules/cflags.env.mk
-@@ -5,7 +5,7 @@
- #
- # OpenPOWER HostBoot Project
- #
--# Contributors Listed Below - COPYRIGHT 2013,2016
-+# Contributors Listed Below - COPYRIGHT 2013,2017
- # [+] Google Inc.
- # [+] International Business Machines Corp.
- #
-@@ -40,11 +40,13 @@ endif
- 
- COMMONFLAGS += $(OPT_LEVEL) -nostdlib
- CFLAGS += $(COMMONFLAGS) -mcpu=power7 -nostdinc -g -mno-vsx -mno-altivec\
--          -Wall -Werror -mtraceback=no -pipe -mabi=elfv1 \
-+          -Wall -mtraceback=no -pipe -mabi=elfv1 \
-+          -Wno-error=sizeof-array-argument \
-+          -Wno-error=unused-function \
- 	  -ffunction-sections -fdata-sections -ffreestanding -mbig-endian
- ASMFLAGS += $(COMMONFLAGS) -mcpu=power7 -mbig-endian -ffreestanding -mabi=elfv1
- CXXFLAGS += $(CFLAGS) -nostdinc++ -fno-rtti -fno-exceptions -Wall \
--	    -fuse-cxa-atexit -std=gnu++14
-+	    -fuse-cxa-atexit -std=gnu++14 -fpermissive
- LDFLAGS += --nostdlib --sort-common -EB $(COMMONFLAGS)
- 
- INCFLAGS = $(addprefix -I, $(INCDIR) )
--- 
-2.9.4
-
diff --git a/openpower/package/hostboot/Config.in b/openpower/package/hostboot/Config.in
index 2aadf0a..9bd2395 100644
--- a/openpower/package/hostboot/Config.in
+++ b/openpower/package/hostboot/Config.in
@@ -9,14 +9,11 @@
 
 choice
 	prompt "Hostboot version"
-	default BR2_HOSTBOOT_STABLE_VERSION
+	default BR2_HOSTBOOT_LATEST_VERSION
 
 config BR2_HOSTBOOT_LATEST_VERSION
 	bool "Use latest Hostboot master"
 
-config BR2_HOSTBOOT_STABLE_VERSION
-        bool "Use stable Hostboot version"
-
 config BR2_HOSTBOOT_CUSTOM_VERSION
 	bool "Custom version"
 
@@ -28,8 +25,7 @@
 
 config BR2_HOSTBOOT_VERSION
 	string
-	default "37e67698be56632c6505990dc3375136494d2a67" if BR2_HOSTBOOT_LATEST_VERSION
-	default "37e67698be56632c6505990dc3375136494d2a67" if BR2_HOSTBOOT_STABLE_VERSION
+	default "2b061c6081d430d8aaeb88d8939a24596df59310" if BR2_HOSTBOOT_LATEST_VERSION
 	default BR2_HOSTBOOT_CUSTOM_VERSION_VALUE \
 		if BR2_HOSTBOOT_CUSTOM_VERSION
 
diff --git a/openpower/package/hostboot/hostboot-1020-Revert-jgr17071200-Removed-pdwn-settings.patch b/openpower/package/hostboot/hostboot-1020-Revert-jgr17071200-Removed-pdwn-settings.patch
deleted file mode 100644
index 1bf10aa..0000000
--- a/openpower/package/hostboot/hostboot-1020-Revert-jgr17071200-Removed-pdwn-settings.patch
+++ /dev/null
@@ -1,677 +0,0 @@
-From 73353ff38f95484714356befca6d27cbcefa1d61 Mon Sep 17 00:00:00 2001
-From: "Corey V. Swenson" <cswenson@us.ibm.com>
-Date: Fri, 9 Feb 2018 15:04:22 -0500
-Subject: [PATCH v1] Revert "jgr17071200 Removed pdwn settings"
-
-This reverts commit db4e2f31694ef29c34531fb0579d4d8b7340ca05.
-
-Change-Id: I45e61c75e5f47ef96c7f9de38d7c0184df37b9e9
----
- .../p9/procedures/hwp/initfiles/p9_obus_scom.C     | 603 +++++++++++++++++++++
- 1 file changed, 603 insertions(+)
-
-diff --git a/src/import/chips/p9/procedures/hwp/initfiles/p9_obus_scom.C b/src/import/chips/p9/procedures/hwp/initfiles/p9_obus_scom.C
-index 5c4595e..390061b 100644
---- a/src/import/chips/p9/procedures/hwp/initfiles/p9_obus_scom.C
-+++ b/src/import/chips/p9/procedures/hwp/initfiles/p9_obus_scom.C
-@@ -40,6 +40,7 @@ constexpr uint64_t literal_0b00011 = 0b00011;
- constexpr uint64_t literal_0b100 = 0b100;
- constexpr uint64_t literal_0b1100 = 0b1100;
- constexpr uint64_t literal_0b000000 = 0b000000;
-+constexpr uint64_t literal_0b000 = 0b000;
- constexpr uint64_t literal_0b01 = 0b01;
- constexpr uint64_t literal_0x0 = 0x0;
- constexpr uint64_t literal_0b010 = 0b010;
-@@ -929,6 +930,198 @@ fapi2::ReturnCode p9_obus_scom(const fapi2::Target<fapi2::TARGET_TYPE_OBUS>& TGT
-             FAPI_TRY(fapi2::putScom(TGT0, 0x8000001709010c3full, l_scom_buffer));
-         }
-         {
-+            FAPI_TRY(fapi2::getScom( TGT0, 0x8000080009010c3full, l_scom_buffer ));
-+
-+            constexpr auto l_IOO0_IOO_CPLT_RX0_RXPACKS_0_RXPACK_RD_SLICE_0_RX_DAC_REGS_RX_DAC_REGS_RX_LANE_ANA_PDWN_OFF = 0x0;
-+            l_scom_buffer.insert<54, 1, 63, uint64_t>
-+            (l_IOO0_IOO_CPLT_RX0_RXPACKS_0_RXPACK_RD_SLICE_0_RX_DAC_REGS_RX_DAC_REGS_RX_LANE_ANA_PDWN_OFF );
-+            FAPI_TRY(fapi2::putScom(TGT0, 0x8000080009010c3full, l_scom_buffer));
-+        }
-+        {
-+            FAPI_TRY(fapi2::getScom( TGT0, 0x8000080109010c3full, l_scom_buffer ));
-+
-+            constexpr auto l_IOO0_IOO_CPLT_RX0_RXPACKS_0_RXPACK_RD_SLICE_1_RX_DAC_REGS_RX_DAC_REGS_RX_LANE_ANA_PDWN_OFF = 0x0;
-+            l_scom_buffer.insert<54, 1, 63, uint64_t>
-+            (l_IOO0_IOO_CPLT_RX0_RXPACKS_0_RXPACK_RD_SLICE_1_RX_DAC_REGS_RX_DAC_REGS_RX_LANE_ANA_PDWN_OFF );
-+            FAPI_TRY(fapi2::putScom(TGT0, 0x8000080109010c3full, l_scom_buffer));
-+        }
-+        {
-+            FAPI_TRY(fapi2::getScom( TGT0, 0x8000080209010c3full, l_scom_buffer ));
-+
-+            constexpr auto l_IOO0_IOO_CPLT_RX0_RXPACKS_0_RXPACK_RD_SLICE_2_RX_DAC_REGS_RX_DAC_REGS_RX_LANE_ANA_PDWN_OFF = 0x0;
-+            l_scom_buffer.insert<54, 1, 63, uint64_t>
-+            (l_IOO0_IOO_CPLT_RX0_RXPACKS_0_RXPACK_RD_SLICE_2_RX_DAC_REGS_RX_DAC_REGS_RX_LANE_ANA_PDWN_OFF );
-+            FAPI_TRY(fapi2::putScom(TGT0, 0x8000080209010c3full, l_scom_buffer));
-+        }
-+        {
-+            FAPI_TRY(fapi2::getScom( TGT0, 0x8000080309010c3full, l_scom_buffer ));
-+
-+            constexpr auto l_IOO0_IOO_CPLT_RX0_RXPACKS_0_RXPACK_RD_SLICE_3_RX_DAC_REGS_RX_DAC_REGS_RX_LANE_ANA_PDWN_OFF = 0x0;
-+            l_scom_buffer.insert<54, 1, 63, uint64_t>
-+            (l_IOO0_IOO_CPLT_RX0_RXPACKS_0_RXPACK_RD_SLICE_3_RX_DAC_REGS_RX_DAC_REGS_RX_LANE_ANA_PDWN_OFF );
-+            FAPI_TRY(fapi2::putScom(TGT0, 0x8000080309010c3full, l_scom_buffer));
-+        }
-+        {
-+            FAPI_TRY(fapi2::getScom( TGT0, 0x8000080409010c3full, l_scom_buffer ));
-+
-+            constexpr auto l_IOO0_IOO_CPLT_RX0_RXPACKS_1_RXPACK_RD_SLICE_0_RX_DAC_REGS_RX_DAC_REGS_RX_LANE_ANA_PDWN_OFF = 0x0;
-+            l_scom_buffer.insert<54, 1, 63, uint64_t>
-+            (l_IOO0_IOO_CPLT_RX0_RXPACKS_1_RXPACK_RD_SLICE_0_RX_DAC_REGS_RX_DAC_REGS_RX_LANE_ANA_PDWN_OFF );
-+            FAPI_TRY(fapi2::putScom(TGT0, 0x8000080409010c3full, l_scom_buffer));
-+        }
-+        {
-+            FAPI_TRY(fapi2::getScom( TGT0, 0x8000080509010c3full, l_scom_buffer ));
-+
-+            constexpr auto l_IOO0_IOO_CPLT_RX0_RXPACKS_1_RXPACK_RD_SLICE_1_RX_DAC_REGS_RX_DAC_REGS_RX_LANE_ANA_PDWN_OFF = 0x0;
-+            l_scom_buffer.insert<54, 1, 63, uint64_t>
-+            (l_IOO0_IOO_CPLT_RX0_RXPACKS_1_RXPACK_RD_SLICE_1_RX_DAC_REGS_RX_DAC_REGS_RX_LANE_ANA_PDWN_OFF );
-+            FAPI_TRY(fapi2::putScom(TGT0, 0x8000080509010c3full, l_scom_buffer));
-+        }
-+        {
-+            FAPI_TRY(fapi2::getScom( TGT0, 0x8000080609010c3full, l_scom_buffer ));
-+
-+            constexpr auto l_IOO0_IOO_CPLT_RX0_RXPACKS_1_RXPACK_RD_SLICE_2_RX_DAC_REGS_RX_DAC_REGS_RX_LANE_ANA_PDWN_OFF = 0x0;
-+            l_scom_buffer.insert<54, 1, 63, uint64_t>
-+            (l_IOO0_IOO_CPLT_RX0_RXPACKS_1_RXPACK_RD_SLICE_2_RX_DAC_REGS_RX_DAC_REGS_RX_LANE_ANA_PDWN_OFF );
-+            FAPI_TRY(fapi2::putScom(TGT0, 0x8000080609010c3full, l_scom_buffer));
-+        }
-+        {
-+            FAPI_TRY(fapi2::getScom( TGT0, 0x8000080709010c3full, l_scom_buffer ));
-+
-+            constexpr auto l_IOO0_IOO_CPLT_RX0_RXPACKS_1_RXPACK_RD_SLICE_3_RX_DAC_REGS_RX_DAC_REGS_RX_LANE_ANA_PDWN_OFF = 0x0;
-+            l_scom_buffer.insert<54, 1, 63, uint64_t>
-+            (l_IOO0_IOO_CPLT_RX0_RXPACKS_1_RXPACK_RD_SLICE_3_RX_DAC_REGS_RX_DAC_REGS_RX_LANE_ANA_PDWN_OFF );
-+            FAPI_TRY(fapi2::putScom(TGT0, 0x8000080709010c3full, l_scom_buffer));
-+        }
-+        {
-+            FAPI_TRY(fapi2::getScom( TGT0, 0x8000080809010c3full, l_scom_buffer ));
-+
-+            constexpr auto l_IOO0_IOO_CPLT_RX0_RXPACKS_2_RXPACK_RD_SLICE_0_RX_DAC_REGS_RX_DAC_REGS_RX_LANE_ANA_PDWN_OFF = 0x0;
-+            l_scom_buffer.insert<54, 1, 63, uint64_t>
-+            (l_IOO0_IOO_CPLT_RX0_RXPACKS_2_RXPACK_RD_SLICE_0_RX_DAC_REGS_RX_DAC_REGS_RX_LANE_ANA_PDWN_OFF );
-+            FAPI_TRY(fapi2::putScom(TGT0, 0x8000080809010c3full, l_scom_buffer));
-+        }
-+        {
-+            FAPI_TRY(fapi2::getScom( TGT0, 0x8000080909010c3full, l_scom_buffer ));
-+
-+            constexpr auto l_IOO0_IOO_CPLT_RX0_RXPACKS_2_RXPACK_RD_SLICE_1_RX_DAC_REGS_RX_DAC_REGS_RX_LANE_ANA_PDWN_OFF = 0x0;
-+            l_scom_buffer.insert<54, 1, 63, uint64_t>
-+            (l_IOO0_IOO_CPLT_RX0_RXPACKS_2_RXPACK_RD_SLICE_1_RX_DAC_REGS_RX_DAC_REGS_RX_LANE_ANA_PDWN_OFF );
-+            FAPI_TRY(fapi2::putScom(TGT0, 0x8000080909010c3full, l_scom_buffer));
-+        }
-+        {
-+            FAPI_TRY(fapi2::getScom( TGT0, 0x8000080a09010c3full, l_scom_buffer ));
-+
-+            constexpr auto l_IOO0_IOO_CPLT_RX0_RXPACKS_2_RXPACK_RD_SLICE_2_RX_DAC_REGS_RX_DAC_REGS_RX_LANE_ANA_PDWN_OFF = 0x0;
-+            l_scom_buffer.insert<54, 1, 63, uint64_t>
-+            (l_IOO0_IOO_CPLT_RX0_RXPACKS_2_RXPACK_RD_SLICE_2_RX_DAC_REGS_RX_DAC_REGS_RX_LANE_ANA_PDWN_OFF );
-+            FAPI_TRY(fapi2::putScom(TGT0, 0x8000080a09010c3full, l_scom_buffer));
-+        }
-+        {
-+            FAPI_TRY(fapi2::getScom( TGT0, 0x8000080b09010c3full, l_scom_buffer ));
-+
-+            constexpr auto l_IOO0_IOO_CPLT_RX0_RXPACKS_2_RXPACK_RD_SLICE_3_RX_DAC_REGS_RX_DAC_REGS_RX_LANE_ANA_PDWN_OFF = 0x0;
-+            l_scom_buffer.insert<54, 1, 63, uint64_t>
-+            (l_IOO0_IOO_CPLT_RX0_RXPACKS_2_RXPACK_RD_SLICE_3_RX_DAC_REGS_RX_DAC_REGS_RX_LANE_ANA_PDWN_OFF );
-+            FAPI_TRY(fapi2::putScom(TGT0, 0x8000080b09010c3full, l_scom_buffer));
-+        }
-+        {
-+            FAPI_TRY(fapi2::getScom( TGT0, 0x8000080c09010c3full, l_scom_buffer ));
-+
-+            constexpr auto l_IOO0_IOO_CPLT_RX0_RXPACKS_3_RXPACK_RD_SLICE_0_RX_DAC_REGS_RX_DAC_REGS_RX_LANE_ANA_PDWN_OFF = 0x0;
-+            l_scom_buffer.insert<54, 1, 63, uint64_t>
-+            (l_IOO0_IOO_CPLT_RX0_RXPACKS_3_RXPACK_RD_SLICE_0_RX_DAC_REGS_RX_DAC_REGS_RX_LANE_ANA_PDWN_OFF );
-+            FAPI_TRY(fapi2::putScom(TGT0, 0x8000080c09010c3full, l_scom_buffer));
-+        }
-+        {
-+            FAPI_TRY(fapi2::getScom( TGT0, 0x8000080d09010c3full, l_scom_buffer ));
-+
-+            constexpr auto l_IOO0_IOO_CPLT_RX0_RXPACKS_3_RXPACK_RD_SLICE_1_RX_DAC_REGS_RX_DAC_REGS_RX_LANE_ANA_PDWN_OFF = 0x0;
-+            l_scom_buffer.insert<54, 1, 63, uint64_t>
-+            (l_IOO0_IOO_CPLT_RX0_RXPACKS_3_RXPACK_RD_SLICE_1_RX_DAC_REGS_RX_DAC_REGS_RX_LANE_ANA_PDWN_OFF );
-+            FAPI_TRY(fapi2::putScom(TGT0, 0x8000080d09010c3full, l_scom_buffer));
-+        }
-+        {
-+            FAPI_TRY(fapi2::getScom( TGT0, 0x8000080e09010c3full, l_scom_buffer ));
-+
-+            constexpr auto l_IOO0_IOO_CPLT_RX0_RXPACKS_3_RXPACK_RD_SLICE_2_RX_DAC_REGS_RX_DAC_REGS_RX_LANE_ANA_PDWN_OFF = 0x0;
-+            l_scom_buffer.insert<54, 1, 63, uint64_t>
-+            (l_IOO0_IOO_CPLT_RX0_RXPACKS_3_RXPACK_RD_SLICE_2_RX_DAC_REGS_RX_DAC_REGS_RX_LANE_ANA_PDWN_OFF );
-+            FAPI_TRY(fapi2::putScom(TGT0, 0x8000080e09010c3full, l_scom_buffer));
-+        }
-+        {
-+            FAPI_TRY(fapi2::getScom( TGT0, 0x8000080f09010c3full, l_scom_buffer ));
-+
-+            constexpr auto l_IOO0_IOO_CPLT_RX0_RXPACKS_3_RXPACK_RD_SLICE_3_RX_DAC_REGS_RX_DAC_REGS_RX_LANE_ANA_PDWN_OFF = 0x0;
-+            l_scom_buffer.insert<54, 1, 63, uint64_t>
-+            (l_IOO0_IOO_CPLT_RX0_RXPACKS_3_RXPACK_RD_SLICE_3_RX_DAC_REGS_RX_DAC_REGS_RX_LANE_ANA_PDWN_OFF );
-+            FAPI_TRY(fapi2::putScom(TGT0, 0x8000080f09010c3full, l_scom_buffer));
-+        }
-+        {
-+            FAPI_TRY(fapi2::getScom( TGT0, 0x8000081009010c3full, l_scom_buffer ));
-+
-+            constexpr auto l_IOO0_IOO_CPLT_RX0_RXPACKS_4_RXPACK_RD_SLICE_0_RX_DAC_REGS_RX_DAC_REGS_RX_LANE_ANA_PDWN_OFF = 0x0;
-+            l_scom_buffer.insert<54, 1, 63, uint64_t>
-+            (l_IOO0_IOO_CPLT_RX0_RXPACKS_4_RXPACK_RD_SLICE_0_RX_DAC_REGS_RX_DAC_REGS_RX_LANE_ANA_PDWN_OFF );
-+            FAPI_TRY(fapi2::putScom(TGT0, 0x8000081009010c3full, l_scom_buffer));
-+        }
-+        {
-+            FAPI_TRY(fapi2::getScom( TGT0, 0x8000081109010c3full, l_scom_buffer ));
-+
-+            constexpr auto l_IOO0_IOO_CPLT_RX0_RXPACKS_4_RXPACK_RD_SLICE_1_RX_DAC_REGS_RX_DAC_REGS_RX_LANE_ANA_PDWN_OFF = 0x0;
-+            l_scom_buffer.insert<54, 1, 63, uint64_t>
-+            (l_IOO0_IOO_CPLT_RX0_RXPACKS_4_RXPACK_RD_SLICE_1_RX_DAC_REGS_RX_DAC_REGS_RX_LANE_ANA_PDWN_OFF );
-+            FAPI_TRY(fapi2::putScom(TGT0, 0x8000081109010c3full, l_scom_buffer));
-+        }
-+        {
-+            FAPI_TRY(fapi2::getScom( TGT0, 0x8000081209010c3full, l_scom_buffer ));
-+
-+            constexpr auto l_IOO0_IOO_CPLT_RX0_RXPACKS_4_RXPACK_RD_SLICE_2_RX_DAC_REGS_RX_DAC_REGS_RX_LANE_ANA_PDWN_OFF = 0x0;
-+            l_scom_buffer.insert<54, 1, 63, uint64_t>
-+            (l_IOO0_IOO_CPLT_RX0_RXPACKS_4_RXPACK_RD_SLICE_2_RX_DAC_REGS_RX_DAC_REGS_RX_LANE_ANA_PDWN_OFF );
-+            FAPI_TRY(fapi2::putScom(TGT0, 0x8000081209010c3full, l_scom_buffer));
-+        }
-+        {
-+            FAPI_TRY(fapi2::getScom( TGT0, 0x8000081309010c3full, l_scom_buffer ));
-+
-+            constexpr auto l_IOO0_IOO_CPLT_RX0_RXPACKS_4_RXPACK_RD_SLICE_3_RX_DAC_REGS_RX_DAC_REGS_RX_LANE_ANA_PDWN_OFF = 0x0;
-+            l_scom_buffer.insert<54, 1, 63, uint64_t>
-+            (l_IOO0_IOO_CPLT_RX0_RXPACKS_4_RXPACK_RD_SLICE_3_RX_DAC_REGS_RX_DAC_REGS_RX_LANE_ANA_PDWN_OFF );
-+            FAPI_TRY(fapi2::putScom(TGT0, 0x8000081309010c3full, l_scom_buffer));
-+        }
-+        {
-+            FAPI_TRY(fapi2::getScom( TGT0, 0x8000081409010c3full, l_scom_buffer ));
-+
-+            constexpr auto l_IOO0_IOO_CPLT_RX0_RXPACKS_5_RXPACK_RD_SLICE_0_RX_DAC_REGS_RX_DAC_REGS_RX_LANE_ANA_PDWN_OFF = 0x0;
-+            l_scom_buffer.insert<54, 1, 63, uint64_t>
-+            (l_IOO0_IOO_CPLT_RX0_RXPACKS_5_RXPACK_RD_SLICE_0_RX_DAC_REGS_RX_DAC_REGS_RX_LANE_ANA_PDWN_OFF );
-+            FAPI_TRY(fapi2::putScom(TGT0, 0x8000081409010c3full, l_scom_buffer));
-+        }
-+        {
-+            FAPI_TRY(fapi2::getScom( TGT0, 0x8000081509010c3full, l_scom_buffer ));
-+
-+            constexpr auto l_IOO0_IOO_CPLT_RX0_RXPACKS_5_RXPACK_RD_SLICE_1_RX_DAC_REGS_RX_DAC_REGS_RX_LANE_ANA_PDWN_OFF = 0x0;
-+            l_scom_buffer.insert<54, 1, 63, uint64_t>
-+            (l_IOO0_IOO_CPLT_RX0_RXPACKS_5_RXPACK_RD_SLICE_1_RX_DAC_REGS_RX_DAC_REGS_RX_LANE_ANA_PDWN_OFF );
-+            FAPI_TRY(fapi2::putScom(TGT0, 0x8000081509010c3full, l_scom_buffer));
-+        }
-+        {
-+            FAPI_TRY(fapi2::getScom( TGT0, 0x8000081609010c3full, l_scom_buffer ));
-+
-+            constexpr auto l_IOO0_IOO_CPLT_RX0_RXPACKS_5_RXPACK_RD_SLICE_2_RX_DAC_REGS_RX_DAC_REGS_RX_LANE_ANA_PDWN_OFF = 0x0;
-+            l_scom_buffer.insert<54, 1, 63, uint64_t>
-+            (l_IOO0_IOO_CPLT_RX0_RXPACKS_5_RXPACK_RD_SLICE_2_RX_DAC_REGS_RX_DAC_REGS_RX_LANE_ANA_PDWN_OFF );
-+            FAPI_TRY(fapi2::putScom(TGT0, 0x8000081609010c3full, l_scom_buffer));
-+        }
-+        {
-+            FAPI_TRY(fapi2::getScom( TGT0, 0x8000081709010c3full, l_scom_buffer ));
-+
-+            constexpr auto l_IOO0_IOO_CPLT_RX0_RXPACKS_5_RXPACK_RD_SLICE_3_RX_DAC_REGS_RX_DAC_REGS_RX_LANE_ANA_PDWN_OFF = 0x0;
-+            l_scom_buffer.insert<54, 1, 63, uint64_t>
-+            (l_IOO0_IOO_CPLT_RX0_RXPACKS_5_RXPACK_RD_SLICE_3_RX_DAC_REGS_RX_DAC_REGS_RX_LANE_ANA_PDWN_OFF );
-+            FAPI_TRY(fapi2::putScom(TGT0, 0x8000081709010c3full, l_scom_buffer));
-+        }
-+        {
-             FAPI_TRY(fapi2::getScom( TGT0, 0x8000280009010c3full, l_scom_buffer ));
- 
-             l_scom_buffer.insert<52, 5, 59, uint64_t>(literal_0b10000 );
-@@ -4457,6 +4650,198 @@ fapi2::ReturnCode p9_obus_scom(const fapi2::Target<fapi2::TARGET_TYPE_OBUS>& TGT
-             FAPI_TRY(fapi2::putScom(TGT0, 0x8000c81709010c3full, l_scom_buffer));
-         }
-         {
-+            FAPI_TRY(fapi2::getScom( TGT0, 0x8002200009010c3full, l_scom_buffer ));
-+
-+            constexpr auto l_IOO0_IOO_CPLT_RX0_RXPACKS_0_RXPACK_RD_SLICE_0_RD_RX_BIT_REGS_RX_LANE_DIG_PDWN_OFF = 0x0;
-+            l_scom_buffer.insert<48, 1, 63, uint64_t>
-+            (l_IOO0_IOO_CPLT_RX0_RXPACKS_0_RXPACK_RD_SLICE_0_RD_RX_BIT_REGS_RX_LANE_DIG_PDWN_OFF );
-+            FAPI_TRY(fapi2::putScom(TGT0, 0x8002200009010c3full, l_scom_buffer));
-+        }
-+        {
-+            FAPI_TRY(fapi2::getScom( TGT0, 0x8002200109010c3full, l_scom_buffer ));
-+
-+            constexpr auto l_IOO0_IOO_CPLT_RX0_RXPACKS_0_RXPACK_RD_SLICE_1_RD_RX_BIT_REGS_RX_LANE_DIG_PDWN_OFF = 0x0;
-+            l_scom_buffer.insert<48, 1, 63, uint64_t>
-+            (l_IOO0_IOO_CPLT_RX0_RXPACKS_0_RXPACK_RD_SLICE_1_RD_RX_BIT_REGS_RX_LANE_DIG_PDWN_OFF );
-+            FAPI_TRY(fapi2::putScom(TGT0, 0x8002200109010c3full, l_scom_buffer));
-+        }
-+        {
-+            FAPI_TRY(fapi2::getScom( TGT0, 0x8002200209010c3full, l_scom_buffer ));
-+
-+            constexpr auto l_IOO0_IOO_CPLT_RX0_RXPACKS_0_RXPACK_RD_SLICE_2_RD_RX_BIT_REGS_RX_LANE_DIG_PDWN_OFF = 0x0;
-+            l_scom_buffer.insert<48, 1, 63, uint64_t>
-+            (l_IOO0_IOO_CPLT_RX0_RXPACKS_0_RXPACK_RD_SLICE_2_RD_RX_BIT_REGS_RX_LANE_DIG_PDWN_OFF );
-+            FAPI_TRY(fapi2::putScom(TGT0, 0x8002200209010c3full, l_scom_buffer));
-+        }
-+        {
-+            FAPI_TRY(fapi2::getScom( TGT0, 0x8002200309010c3full, l_scom_buffer ));
-+
-+            constexpr auto l_IOO0_IOO_CPLT_RX0_RXPACKS_0_RXPACK_RD_SLICE_3_RD_RX_BIT_REGS_RX_LANE_DIG_PDWN_OFF = 0x0;
-+            l_scom_buffer.insert<48, 1, 63, uint64_t>
-+            (l_IOO0_IOO_CPLT_RX0_RXPACKS_0_RXPACK_RD_SLICE_3_RD_RX_BIT_REGS_RX_LANE_DIG_PDWN_OFF );
-+            FAPI_TRY(fapi2::putScom(TGT0, 0x8002200309010c3full, l_scom_buffer));
-+        }
-+        {
-+            FAPI_TRY(fapi2::getScom( TGT0, 0x8002200409010c3full, l_scom_buffer ));
-+
-+            constexpr auto l_IOO0_IOO_CPLT_RX0_RXPACKS_1_RXPACK_RD_SLICE_0_RD_RX_BIT_REGS_RX_LANE_DIG_PDWN_OFF = 0x0;
-+            l_scom_buffer.insert<48, 1, 63, uint64_t>
-+            (l_IOO0_IOO_CPLT_RX0_RXPACKS_1_RXPACK_RD_SLICE_0_RD_RX_BIT_REGS_RX_LANE_DIG_PDWN_OFF );
-+            FAPI_TRY(fapi2::putScom(TGT0, 0x8002200409010c3full, l_scom_buffer));
-+        }
-+        {
-+            FAPI_TRY(fapi2::getScom( TGT0, 0x8002200509010c3full, l_scom_buffer ));
-+
-+            constexpr auto l_IOO0_IOO_CPLT_RX0_RXPACKS_1_RXPACK_RD_SLICE_1_RD_RX_BIT_REGS_RX_LANE_DIG_PDWN_OFF = 0x0;
-+            l_scom_buffer.insert<48, 1, 63, uint64_t>
-+            (l_IOO0_IOO_CPLT_RX0_RXPACKS_1_RXPACK_RD_SLICE_1_RD_RX_BIT_REGS_RX_LANE_DIG_PDWN_OFF );
-+            FAPI_TRY(fapi2::putScom(TGT0, 0x8002200509010c3full, l_scom_buffer));
-+        }
-+        {
-+            FAPI_TRY(fapi2::getScom( TGT0, 0x8002200609010c3full, l_scom_buffer ));
-+
-+            constexpr auto l_IOO0_IOO_CPLT_RX0_RXPACKS_1_RXPACK_RD_SLICE_2_RD_RX_BIT_REGS_RX_LANE_DIG_PDWN_OFF = 0x0;
-+            l_scom_buffer.insert<48, 1, 63, uint64_t>
-+            (l_IOO0_IOO_CPLT_RX0_RXPACKS_1_RXPACK_RD_SLICE_2_RD_RX_BIT_REGS_RX_LANE_DIG_PDWN_OFF );
-+            FAPI_TRY(fapi2::putScom(TGT0, 0x8002200609010c3full, l_scom_buffer));
-+        }
-+        {
-+            FAPI_TRY(fapi2::getScom( TGT0, 0x8002200709010c3full, l_scom_buffer ));
-+
-+            constexpr auto l_IOO0_IOO_CPLT_RX0_RXPACKS_1_RXPACK_RD_SLICE_3_RD_RX_BIT_REGS_RX_LANE_DIG_PDWN_OFF = 0x0;
-+            l_scom_buffer.insert<48, 1, 63, uint64_t>
-+            (l_IOO0_IOO_CPLT_RX0_RXPACKS_1_RXPACK_RD_SLICE_3_RD_RX_BIT_REGS_RX_LANE_DIG_PDWN_OFF );
-+            FAPI_TRY(fapi2::putScom(TGT0, 0x8002200709010c3full, l_scom_buffer));
-+        }
-+        {
-+            FAPI_TRY(fapi2::getScom( TGT0, 0x8002200809010c3full, l_scom_buffer ));
-+
-+            constexpr auto l_IOO0_IOO_CPLT_RX0_RXPACKS_2_RXPACK_RD_SLICE_0_RD_RX_BIT_REGS_RX_LANE_DIG_PDWN_OFF = 0x0;
-+            l_scom_buffer.insert<48, 1, 63, uint64_t>
-+            (l_IOO0_IOO_CPLT_RX0_RXPACKS_2_RXPACK_RD_SLICE_0_RD_RX_BIT_REGS_RX_LANE_DIG_PDWN_OFF );
-+            FAPI_TRY(fapi2::putScom(TGT0, 0x8002200809010c3full, l_scom_buffer));
-+        }
-+        {
-+            FAPI_TRY(fapi2::getScom( TGT0, 0x8002200909010c3full, l_scom_buffer ));
-+
-+            constexpr auto l_IOO0_IOO_CPLT_RX0_RXPACKS_2_RXPACK_RD_SLICE_1_RD_RX_BIT_REGS_RX_LANE_DIG_PDWN_OFF = 0x0;
-+            l_scom_buffer.insert<48, 1, 63, uint64_t>
-+            (l_IOO0_IOO_CPLT_RX0_RXPACKS_2_RXPACK_RD_SLICE_1_RD_RX_BIT_REGS_RX_LANE_DIG_PDWN_OFF );
-+            FAPI_TRY(fapi2::putScom(TGT0, 0x8002200909010c3full, l_scom_buffer));
-+        }
-+        {
-+            FAPI_TRY(fapi2::getScom( TGT0, 0x8002200a09010c3full, l_scom_buffer ));
-+
-+            constexpr auto l_IOO0_IOO_CPLT_RX0_RXPACKS_2_RXPACK_RD_SLICE_2_RD_RX_BIT_REGS_RX_LANE_DIG_PDWN_OFF = 0x0;
-+            l_scom_buffer.insert<48, 1, 63, uint64_t>
-+            (l_IOO0_IOO_CPLT_RX0_RXPACKS_2_RXPACK_RD_SLICE_2_RD_RX_BIT_REGS_RX_LANE_DIG_PDWN_OFF );
-+            FAPI_TRY(fapi2::putScom(TGT0, 0x8002200a09010c3full, l_scom_buffer));
-+        }
-+        {
-+            FAPI_TRY(fapi2::getScom( TGT0, 0x8002200b09010c3full, l_scom_buffer ));
-+
-+            constexpr auto l_IOO0_IOO_CPLT_RX0_RXPACKS_2_RXPACK_RD_SLICE_3_RD_RX_BIT_REGS_RX_LANE_DIG_PDWN_OFF = 0x0;
-+            l_scom_buffer.insert<48, 1, 63, uint64_t>
-+            (l_IOO0_IOO_CPLT_RX0_RXPACKS_2_RXPACK_RD_SLICE_3_RD_RX_BIT_REGS_RX_LANE_DIG_PDWN_OFF );
-+            FAPI_TRY(fapi2::putScom(TGT0, 0x8002200b09010c3full, l_scom_buffer));
-+        }
-+        {
-+            FAPI_TRY(fapi2::getScom( TGT0, 0x8002200c09010c3full, l_scom_buffer ));
-+
-+            constexpr auto l_IOO0_IOO_CPLT_RX0_RXPACKS_3_RXPACK_RD_SLICE_0_RD_RX_BIT_REGS_RX_LANE_DIG_PDWN_OFF = 0x0;
-+            l_scom_buffer.insert<48, 1, 63, uint64_t>
-+            (l_IOO0_IOO_CPLT_RX0_RXPACKS_3_RXPACK_RD_SLICE_0_RD_RX_BIT_REGS_RX_LANE_DIG_PDWN_OFF );
-+            FAPI_TRY(fapi2::putScom(TGT0, 0x8002200c09010c3full, l_scom_buffer));
-+        }
-+        {
-+            FAPI_TRY(fapi2::getScom( TGT0, 0x8002200d09010c3full, l_scom_buffer ));
-+
-+            constexpr auto l_IOO0_IOO_CPLT_RX0_RXPACKS_3_RXPACK_RD_SLICE_1_RD_RX_BIT_REGS_RX_LANE_DIG_PDWN_OFF = 0x0;
-+            l_scom_buffer.insert<48, 1, 63, uint64_t>
-+            (l_IOO0_IOO_CPLT_RX0_RXPACKS_3_RXPACK_RD_SLICE_1_RD_RX_BIT_REGS_RX_LANE_DIG_PDWN_OFF );
-+            FAPI_TRY(fapi2::putScom(TGT0, 0x8002200d09010c3full, l_scom_buffer));
-+        }
-+        {
-+            FAPI_TRY(fapi2::getScom( TGT0, 0x8002200e09010c3full, l_scom_buffer ));
-+
-+            constexpr auto l_IOO0_IOO_CPLT_RX0_RXPACKS_3_RXPACK_RD_SLICE_2_RD_RX_BIT_REGS_RX_LANE_DIG_PDWN_OFF = 0x0;
-+            l_scom_buffer.insert<48, 1, 63, uint64_t>
-+            (l_IOO0_IOO_CPLT_RX0_RXPACKS_3_RXPACK_RD_SLICE_2_RD_RX_BIT_REGS_RX_LANE_DIG_PDWN_OFF );
-+            FAPI_TRY(fapi2::putScom(TGT0, 0x8002200e09010c3full, l_scom_buffer));
-+        }
-+        {
-+            FAPI_TRY(fapi2::getScom( TGT0, 0x8002200f09010c3full, l_scom_buffer ));
-+
-+            constexpr auto l_IOO0_IOO_CPLT_RX0_RXPACKS_3_RXPACK_RD_SLICE_3_RD_RX_BIT_REGS_RX_LANE_DIG_PDWN_OFF = 0x0;
-+            l_scom_buffer.insert<48, 1, 63, uint64_t>
-+            (l_IOO0_IOO_CPLT_RX0_RXPACKS_3_RXPACK_RD_SLICE_3_RD_RX_BIT_REGS_RX_LANE_DIG_PDWN_OFF );
-+            FAPI_TRY(fapi2::putScom(TGT0, 0x8002200f09010c3full, l_scom_buffer));
-+        }
-+        {
-+            FAPI_TRY(fapi2::getScom( TGT0, 0x8002201009010c3full, l_scom_buffer ));
-+
-+            constexpr auto l_IOO0_IOO_CPLT_RX0_RXPACKS_4_RXPACK_RD_SLICE_0_RD_RX_BIT_REGS_RX_LANE_DIG_PDWN_OFF = 0x0;
-+            l_scom_buffer.insert<48, 1, 63, uint64_t>
-+            (l_IOO0_IOO_CPLT_RX0_RXPACKS_4_RXPACK_RD_SLICE_0_RD_RX_BIT_REGS_RX_LANE_DIG_PDWN_OFF );
-+            FAPI_TRY(fapi2::putScom(TGT0, 0x8002201009010c3full, l_scom_buffer));
-+        }
-+        {
-+            FAPI_TRY(fapi2::getScom( TGT0, 0x8002201109010c3full, l_scom_buffer ));
-+
-+            constexpr auto l_IOO0_IOO_CPLT_RX0_RXPACKS_4_RXPACK_RD_SLICE_1_RD_RX_BIT_REGS_RX_LANE_DIG_PDWN_OFF = 0x0;
-+            l_scom_buffer.insert<48, 1, 63, uint64_t>
-+            (l_IOO0_IOO_CPLT_RX0_RXPACKS_4_RXPACK_RD_SLICE_1_RD_RX_BIT_REGS_RX_LANE_DIG_PDWN_OFF );
-+            FAPI_TRY(fapi2::putScom(TGT0, 0x8002201109010c3full, l_scom_buffer));
-+        }
-+        {
-+            FAPI_TRY(fapi2::getScom( TGT0, 0x8002201209010c3full, l_scom_buffer ));
-+
-+            constexpr auto l_IOO0_IOO_CPLT_RX0_RXPACKS_4_RXPACK_RD_SLICE_2_RD_RX_BIT_REGS_RX_LANE_DIG_PDWN_OFF = 0x0;
-+            l_scom_buffer.insert<48, 1, 63, uint64_t>
-+            (l_IOO0_IOO_CPLT_RX0_RXPACKS_4_RXPACK_RD_SLICE_2_RD_RX_BIT_REGS_RX_LANE_DIG_PDWN_OFF );
-+            FAPI_TRY(fapi2::putScom(TGT0, 0x8002201209010c3full, l_scom_buffer));
-+        }
-+        {
-+            FAPI_TRY(fapi2::getScom( TGT0, 0x8002201309010c3full, l_scom_buffer ));
-+
-+            constexpr auto l_IOO0_IOO_CPLT_RX0_RXPACKS_4_RXPACK_RD_SLICE_3_RD_RX_BIT_REGS_RX_LANE_DIG_PDWN_OFF = 0x0;
-+            l_scom_buffer.insert<48, 1, 63, uint64_t>
-+            (l_IOO0_IOO_CPLT_RX0_RXPACKS_4_RXPACK_RD_SLICE_3_RD_RX_BIT_REGS_RX_LANE_DIG_PDWN_OFF );
-+            FAPI_TRY(fapi2::putScom(TGT0, 0x8002201309010c3full, l_scom_buffer));
-+        }
-+        {
-+            FAPI_TRY(fapi2::getScom( TGT0, 0x8002201409010c3full, l_scom_buffer ));
-+
-+            constexpr auto l_IOO0_IOO_CPLT_RX0_RXPACKS_5_RXPACK_RD_SLICE_0_RD_RX_BIT_REGS_RX_LANE_DIG_PDWN_OFF = 0x0;
-+            l_scom_buffer.insert<48, 1, 63, uint64_t>
-+            (l_IOO0_IOO_CPLT_RX0_RXPACKS_5_RXPACK_RD_SLICE_0_RD_RX_BIT_REGS_RX_LANE_DIG_PDWN_OFF );
-+            FAPI_TRY(fapi2::putScom(TGT0, 0x8002201409010c3full, l_scom_buffer));
-+        }
-+        {
-+            FAPI_TRY(fapi2::getScom( TGT0, 0x8002201509010c3full, l_scom_buffer ));
-+
-+            constexpr auto l_IOO0_IOO_CPLT_RX0_RXPACKS_5_RXPACK_RD_SLICE_1_RD_RX_BIT_REGS_RX_LANE_DIG_PDWN_OFF = 0x0;
-+            l_scom_buffer.insert<48, 1, 63, uint64_t>
-+            (l_IOO0_IOO_CPLT_RX0_RXPACKS_5_RXPACK_RD_SLICE_1_RD_RX_BIT_REGS_RX_LANE_DIG_PDWN_OFF );
-+            FAPI_TRY(fapi2::putScom(TGT0, 0x8002201509010c3full, l_scom_buffer));
-+        }
-+        {
-+            FAPI_TRY(fapi2::getScom( TGT0, 0x8002201609010c3full, l_scom_buffer ));
-+
-+            constexpr auto l_IOO0_IOO_CPLT_RX0_RXPACKS_5_RXPACK_RD_SLICE_2_RD_RX_BIT_REGS_RX_LANE_DIG_PDWN_OFF = 0x0;
-+            l_scom_buffer.insert<48, 1, 63, uint64_t>
-+            (l_IOO0_IOO_CPLT_RX0_RXPACKS_5_RXPACK_RD_SLICE_2_RD_RX_BIT_REGS_RX_LANE_DIG_PDWN_OFF );
-+            FAPI_TRY(fapi2::putScom(TGT0, 0x8002201609010c3full, l_scom_buffer));
-+        }
-+        {
-+            FAPI_TRY(fapi2::getScom( TGT0, 0x8002201709010c3full, l_scom_buffer ));
-+
-+            constexpr auto l_IOO0_IOO_CPLT_RX0_RXPACKS_5_RXPACK_RD_SLICE_3_RD_RX_BIT_REGS_RX_LANE_DIG_PDWN_OFF = 0x0;
-+            l_scom_buffer.insert<48, 1, 63, uint64_t>
-+            (l_IOO0_IOO_CPLT_RX0_RXPACKS_5_RXPACK_RD_SLICE_3_RD_RX_BIT_REGS_RX_LANE_DIG_PDWN_OFF );
-+            FAPI_TRY(fapi2::putScom(TGT0, 0x8002201709010c3full, l_scom_buffer));
-+        }
-+        {
-             FAPI_TRY(fapi2::getScom( TGT0, 0x8002280009010c3full, l_scom_buffer ));
- 
-             if (( ! l_TGT2_ATTR_CHIP_EC_FEATURE_OBUS_HW419305))
-@@ -4913,6 +5298,198 @@ fapi2::ReturnCode p9_obus_scom(const fapi2::Target<fapi2::TARGET_TYPE_OBUS>& TGT
-             FAPI_TRY(fapi2::putScom(TGT0, 0x8002281709010c3full, l_scom_buffer));
-         }
-         {
-+            FAPI_TRY(fapi2::getScom( TGT0, 0x8004040009010c3full, l_scom_buffer ));
-+
-+            constexpr auto l_IOO0_IOO_CPLT_TX0_TXPACKS_0_TXPACK_DD_SLICE_0_DD_TX_BIT_REGS_TX_LANE_PDWN_ENABLED = 0x0;
-+            l_scom_buffer.insert<48, 1, 63, uint64_t>
-+            (l_IOO0_IOO_CPLT_TX0_TXPACKS_0_TXPACK_DD_SLICE_0_DD_TX_BIT_REGS_TX_LANE_PDWN_ENABLED );
-+            FAPI_TRY(fapi2::putScom(TGT0, 0x8004040009010c3full, l_scom_buffer));
-+        }
-+        {
-+            FAPI_TRY(fapi2::getScom( TGT0, 0x8004040109010c3full, l_scom_buffer ));
-+
-+            constexpr auto l_IOO0_IOO_CPLT_TX0_TXPACKS_0_TXPACK_DD_SLICE_1_DD_TX_BIT_REGS_TX_LANE_PDWN_ENABLED = 0x0;
-+            l_scom_buffer.insert<48, 1, 63, uint64_t>
-+            (l_IOO0_IOO_CPLT_TX0_TXPACKS_0_TXPACK_DD_SLICE_1_DD_TX_BIT_REGS_TX_LANE_PDWN_ENABLED );
-+            FAPI_TRY(fapi2::putScom(TGT0, 0x8004040109010c3full, l_scom_buffer));
-+        }
-+        {
-+            FAPI_TRY(fapi2::getScom( TGT0, 0x8004040209010c3full, l_scom_buffer ));
-+
-+            constexpr auto l_IOO0_IOO_CPLT_TX0_TXPACKS_0_TXPACK_DD_SLICE_2_DD_TX_BIT_REGS_TX_LANE_PDWN_ENABLED = 0x0;
-+            l_scom_buffer.insert<48, 1, 63, uint64_t>
-+            (l_IOO0_IOO_CPLT_TX0_TXPACKS_0_TXPACK_DD_SLICE_2_DD_TX_BIT_REGS_TX_LANE_PDWN_ENABLED );
-+            FAPI_TRY(fapi2::putScom(TGT0, 0x8004040209010c3full, l_scom_buffer));
-+        }
-+        {
-+            FAPI_TRY(fapi2::getScom( TGT0, 0x8004040309010c3full, l_scom_buffer ));
-+
-+            constexpr auto l_IOO0_IOO_CPLT_TX0_TXPACKS_0_TXPACK_DD_SLICE_3_DD_TX_BIT_REGS_TX_LANE_PDWN_ENABLED = 0x0;
-+            l_scom_buffer.insert<48, 1, 63, uint64_t>
-+            (l_IOO0_IOO_CPLT_TX0_TXPACKS_0_TXPACK_DD_SLICE_3_DD_TX_BIT_REGS_TX_LANE_PDWN_ENABLED );
-+            FAPI_TRY(fapi2::putScom(TGT0, 0x8004040309010c3full, l_scom_buffer));
-+        }
-+        {
-+            FAPI_TRY(fapi2::getScom( TGT0, 0x8004040409010c3full, l_scom_buffer ));
-+
-+            constexpr auto l_IOO0_IOO_CPLT_TX0_TXPACKS_1_TXPACK_DD_SLICE_0_DD_TX_BIT_REGS_TX_LANE_PDWN_ENABLED = 0x0;
-+            l_scom_buffer.insert<48, 1, 63, uint64_t>
-+            (l_IOO0_IOO_CPLT_TX0_TXPACKS_1_TXPACK_DD_SLICE_0_DD_TX_BIT_REGS_TX_LANE_PDWN_ENABLED );
-+            FAPI_TRY(fapi2::putScom(TGT0, 0x8004040409010c3full, l_scom_buffer));
-+        }
-+        {
-+            FAPI_TRY(fapi2::getScom( TGT0, 0x8004040509010c3full, l_scom_buffer ));
-+
-+            constexpr auto l_IOO0_IOO_CPLT_TX0_TXPACKS_1_TXPACK_DD_SLICE_1_DD_TX_BIT_REGS_TX_LANE_PDWN_ENABLED = 0x0;
-+            l_scom_buffer.insert<48, 1, 63, uint64_t>
-+            (l_IOO0_IOO_CPLT_TX0_TXPACKS_1_TXPACK_DD_SLICE_1_DD_TX_BIT_REGS_TX_LANE_PDWN_ENABLED );
-+            FAPI_TRY(fapi2::putScom(TGT0, 0x8004040509010c3full, l_scom_buffer));
-+        }
-+        {
-+            FAPI_TRY(fapi2::getScom( TGT0, 0x8004040609010c3full, l_scom_buffer ));
-+
-+            constexpr auto l_IOO0_IOO_CPLT_TX0_TXPACKS_1_TXPACK_DD_SLICE_2_DD_TX_BIT_REGS_TX_LANE_PDWN_ENABLED = 0x0;
-+            l_scom_buffer.insert<48, 1, 63, uint64_t>
-+            (l_IOO0_IOO_CPLT_TX0_TXPACKS_1_TXPACK_DD_SLICE_2_DD_TX_BIT_REGS_TX_LANE_PDWN_ENABLED );
-+            FAPI_TRY(fapi2::putScom(TGT0, 0x8004040609010c3full, l_scom_buffer));
-+        }
-+        {
-+            FAPI_TRY(fapi2::getScom( TGT0, 0x8004040709010c3full, l_scom_buffer ));
-+
-+            constexpr auto l_IOO0_IOO_CPLT_TX0_TXPACKS_1_TXPACK_DD_SLICE_3_DD_TX_BIT_REGS_TX_LANE_PDWN_ENABLED = 0x0;
-+            l_scom_buffer.insert<48, 1, 63, uint64_t>
-+            (l_IOO0_IOO_CPLT_TX0_TXPACKS_1_TXPACK_DD_SLICE_3_DD_TX_BIT_REGS_TX_LANE_PDWN_ENABLED );
-+            FAPI_TRY(fapi2::putScom(TGT0, 0x8004040709010c3full, l_scom_buffer));
-+        }
-+        {
-+            FAPI_TRY(fapi2::getScom( TGT0, 0x8004040809010c3full, l_scom_buffer ));
-+
-+            constexpr auto l_IOO0_IOO_CPLT_TX0_TXPACKS_2_TXPACK_DD_SLICE_0_DD_TX_BIT_REGS_TX_LANE_PDWN_ENABLED = 0x0;
-+            l_scom_buffer.insert<48, 1, 63, uint64_t>
-+            (l_IOO0_IOO_CPLT_TX0_TXPACKS_2_TXPACK_DD_SLICE_0_DD_TX_BIT_REGS_TX_LANE_PDWN_ENABLED );
-+            FAPI_TRY(fapi2::putScom(TGT0, 0x8004040809010c3full, l_scom_buffer));
-+        }
-+        {
-+            FAPI_TRY(fapi2::getScom( TGT0, 0x8004040909010c3full, l_scom_buffer ));
-+
-+            constexpr auto l_IOO0_IOO_CPLT_TX0_TXPACKS_2_TXPACK_DD_SLICE_1_DD_TX_BIT_REGS_TX_LANE_PDWN_ENABLED = 0x0;
-+            l_scom_buffer.insert<48, 1, 63, uint64_t>
-+            (l_IOO0_IOO_CPLT_TX0_TXPACKS_2_TXPACK_DD_SLICE_1_DD_TX_BIT_REGS_TX_LANE_PDWN_ENABLED );
-+            FAPI_TRY(fapi2::putScom(TGT0, 0x8004040909010c3full, l_scom_buffer));
-+        }
-+        {
-+            FAPI_TRY(fapi2::getScom( TGT0, 0x8004040a09010c3full, l_scom_buffer ));
-+
-+            constexpr auto l_IOO0_IOO_CPLT_TX0_TXPACKS_2_TXPACK_DD_SLICE_2_DD_TX_BIT_REGS_TX_LANE_PDWN_ENABLED = 0x0;
-+            l_scom_buffer.insert<48, 1, 63, uint64_t>
-+            (l_IOO0_IOO_CPLT_TX0_TXPACKS_2_TXPACK_DD_SLICE_2_DD_TX_BIT_REGS_TX_LANE_PDWN_ENABLED );
-+            FAPI_TRY(fapi2::putScom(TGT0, 0x8004040a09010c3full, l_scom_buffer));
-+        }
-+        {
-+            FAPI_TRY(fapi2::getScom( TGT0, 0x8004040b09010c3full, l_scom_buffer ));
-+
-+            constexpr auto l_IOO0_IOO_CPLT_TX0_TXPACKS_2_TXPACK_DD_SLICE_3_DD_TX_BIT_REGS_TX_LANE_PDWN_ENABLED = 0x0;
-+            l_scom_buffer.insert<48, 1, 63, uint64_t>
-+            (l_IOO0_IOO_CPLT_TX0_TXPACKS_2_TXPACK_DD_SLICE_3_DD_TX_BIT_REGS_TX_LANE_PDWN_ENABLED );
-+            FAPI_TRY(fapi2::putScom(TGT0, 0x8004040b09010c3full, l_scom_buffer));
-+        }
-+        {
-+            FAPI_TRY(fapi2::getScom( TGT0, 0x8004040c09010c3full, l_scom_buffer ));
-+
-+            constexpr auto l_IOO0_IOO_CPLT_TX0_TXPACKS_3_TXPACK_DD_SLICE_0_DD_TX_BIT_REGS_TX_LANE_PDWN_ENABLED = 0x0;
-+            l_scom_buffer.insert<48, 1, 63, uint64_t>
-+            (l_IOO0_IOO_CPLT_TX0_TXPACKS_3_TXPACK_DD_SLICE_0_DD_TX_BIT_REGS_TX_LANE_PDWN_ENABLED );
-+            FAPI_TRY(fapi2::putScom(TGT0, 0x8004040c09010c3full, l_scom_buffer));
-+        }
-+        {
-+            FAPI_TRY(fapi2::getScom( TGT0, 0x8004040d09010c3full, l_scom_buffer ));
-+
-+            constexpr auto l_IOO0_IOO_CPLT_TX0_TXPACKS_3_TXPACK_DD_SLICE_1_DD_TX_BIT_REGS_TX_LANE_PDWN_ENABLED = 0x0;
-+            l_scom_buffer.insert<48, 1, 63, uint64_t>
-+            (l_IOO0_IOO_CPLT_TX0_TXPACKS_3_TXPACK_DD_SLICE_1_DD_TX_BIT_REGS_TX_LANE_PDWN_ENABLED );
-+            FAPI_TRY(fapi2::putScom(TGT0, 0x8004040d09010c3full, l_scom_buffer));
-+        }
-+        {
-+            FAPI_TRY(fapi2::getScom( TGT0, 0x8004040e09010c3full, l_scom_buffer ));
-+
-+            constexpr auto l_IOO0_IOO_CPLT_TX0_TXPACKS_3_TXPACK_DD_SLICE_2_DD_TX_BIT_REGS_TX_LANE_PDWN_ENABLED = 0x0;
-+            l_scom_buffer.insert<48, 1, 63, uint64_t>
-+            (l_IOO0_IOO_CPLT_TX0_TXPACKS_3_TXPACK_DD_SLICE_2_DD_TX_BIT_REGS_TX_LANE_PDWN_ENABLED );
-+            FAPI_TRY(fapi2::putScom(TGT0, 0x8004040e09010c3full, l_scom_buffer));
-+        }
-+        {
-+            FAPI_TRY(fapi2::getScom( TGT0, 0x8004040f09010c3full, l_scom_buffer ));
-+
-+            constexpr auto l_IOO0_IOO_CPLT_TX0_TXPACKS_3_TXPACK_DD_SLICE_3_DD_TX_BIT_REGS_TX_LANE_PDWN_ENABLED = 0x0;
-+            l_scom_buffer.insert<48, 1, 63, uint64_t>
-+            (l_IOO0_IOO_CPLT_TX0_TXPACKS_3_TXPACK_DD_SLICE_3_DD_TX_BIT_REGS_TX_LANE_PDWN_ENABLED );
-+            FAPI_TRY(fapi2::putScom(TGT0, 0x8004040f09010c3full, l_scom_buffer));
-+        }
-+        {
-+            FAPI_TRY(fapi2::getScom( TGT0, 0x8004041009010c3full, l_scom_buffer ));
-+
-+            constexpr auto l_IOO0_IOO_CPLT_TX0_TXPACKS_4_TXPACK_DD_SLICE_0_DD_TX_BIT_REGS_TX_LANE_PDWN_ENABLED = 0x0;
-+            l_scom_buffer.insert<48, 1, 63, uint64_t>
-+            (l_IOO0_IOO_CPLT_TX0_TXPACKS_4_TXPACK_DD_SLICE_0_DD_TX_BIT_REGS_TX_LANE_PDWN_ENABLED );
-+            FAPI_TRY(fapi2::putScom(TGT0, 0x8004041009010c3full, l_scom_buffer));
-+        }
-+        {
-+            FAPI_TRY(fapi2::getScom( TGT0, 0x8004041109010c3full, l_scom_buffer ));
-+
-+            constexpr auto l_IOO0_IOO_CPLT_TX0_TXPACKS_4_TXPACK_DD_SLICE_1_DD_TX_BIT_REGS_TX_LANE_PDWN_ENABLED = 0x0;
-+            l_scom_buffer.insert<48, 1, 63, uint64_t>
-+            (l_IOO0_IOO_CPLT_TX0_TXPACKS_4_TXPACK_DD_SLICE_1_DD_TX_BIT_REGS_TX_LANE_PDWN_ENABLED );
-+            FAPI_TRY(fapi2::putScom(TGT0, 0x8004041109010c3full, l_scom_buffer));
-+        }
-+        {
-+            FAPI_TRY(fapi2::getScom( TGT0, 0x8004041209010c3full, l_scom_buffer ));
-+
-+            constexpr auto l_IOO0_IOO_CPLT_TX0_TXPACKS_4_TXPACK_DD_SLICE_2_DD_TX_BIT_REGS_TX_LANE_PDWN_ENABLED = 0x0;
-+            l_scom_buffer.insert<48, 1, 63, uint64_t>
-+            (l_IOO0_IOO_CPLT_TX0_TXPACKS_4_TXPACK_DD_SLICE_2_DD_TX_BIT_REGS_TX_LANE_PDWN_ENABLED );
-+            FAPI_TRY(fapi2::putScom(TGT0, 0x8004041209010c3full, l_scom_buffer));
-+        }
-+        {
-+            FAPI_TRY(fapi2::getScom( TGT0, 0x8004041309010c3full, l_scom_buffer ));
-+
-+            constexpr auto l_IOO0_IOO_CPLT_TX0_TXPACKS_4_TXPACK_DD_SLICE_3_DD_TX_BIT_REGS_TX_LANE_PDWN_ENABLED = 0x0;
-+            l_scom_buffer.insert<48, 1, 63, uint64_t>
-+            (l_IOO0_IOO_CPLT_TX0_TXPACKS_4_TXPACK_DD_SLICE_3_DD_TX_BIT_REGS_TX_LANE_PDWN_ENABLED );
-+            FAPI_TRY(fapi2::putScom(TGT0, 0x8004041309010c3full, l_scom_buffer));
-+        }
-+        {
-+            FAPI_TRY(fapi2::getScom( TGT0, 0x8004041409010c3full, l_scom_buffer ));
-+
-+            constexpr auto l_IOO0_IOO_CPLT_TX0_TXPACKS_5_TXPACK_DD_SLICE_0_DD_TX_BIT_REGS_TX_LANE_PDWN_ENABLED = 0x0;
-+            l_scom_buffer.insert<48, 1, 63, uint64_t>
-+            (l_IOO0_IOO_CPLT_TX0_TXPACKS_5_TXPACK_DD_SLICE_0_DD_TX_BIT_REGS_TX_LANE_PDWN_ENABLED );
-+            FAPI_TRY(fapi2::putScom(TGT0, 0x8004041409010c3full, l_scom_buffer));
-+        }
-+        {
-+            FAPI_TRY(fapi2::getScom( TGT0, 0x8004041509010c3full, l_scom_buffer ));
-+
-+            constexpr auto l_IOO0_IOO_CPLT_TX0_TXPACKS_5_TXPACK_DD_SLICE_1_DD_TX_BIT_REGS_TX_LANE_PDWN_ENABLED = 0x0;
-+            l_scom_buffer.insert<48, 1, 63, uint64_t>
-+            (l_IOO0_IOO_CPLT_TX0_TXPACKS_5_TXPACK_DD_SLICE_1_DD_TX_BIT_REGS_TX_LANE_PDWN_ENABLED );
-+            FAPI_TRY(fapi2::putScom(TGT0, 0x8004041509010c3full, l_scom_buffer));
-+        }
-+        {
-+            FAPI_TRY(fapi2::getScom( TGT0, 0x8004041609010c3full, l_scom_buffer ));
-+
-+            constexpr auto l_IOO0_IOO_CPLT_TX0_TXPACKS_5_TXPACK_DD_SLICE_2_DD_TX_BIT_REGS_TX_LANE_PDWN_ENABLED = 0x0;
-+            l_scom_buffer.insert<48, 1, 63, uint64_t>
-+            (l_IOO0_IOO_CPLT_TX0_TXPACKS_5_TXPACK_DD_SLICE_2_DD_TX_BIT_REGS_TX_LANE_PDWN_ENABLED );
-+            FAPI_TRY(fapi2::putScom(TGT0, 0x8004041609010c3full, l_scom_buffer));
-+        }
-+        {
-+            FAPI_TRY(fapi2::getScom( TGT0, 0x8004041709010c3full, l_scom_buffer ));
-+
-+            constexpr auto l_IOO0_IOO_CPLT_TX0_TXPACKS_5_TXPACK_DD_SLICE_3_DD_TX_BIT_REGS_TX_LANE_PDWN_ENABLED = 0x0;
-+            l_scom_buffer.insert<48, 1, 63, uint64_t>
-+            (l_IOO0_IOO_CPLT_TX0_TXPACKS_5_TXPACK_DD_SLICE_3_DD_TX_BIT_REGS_TX_LANE_PDWN_ENABLED );
-+            FAPI_TRY(fapi2::putScom(TGT0, 0x8004041709010c3full, l_scom_buffer));
-+        }
-+        {
-             FAPI_TRY(fapi2::getScom( TGT0, 0x8008000009010c3full, l_scom_buffer ));
- 
-             constexpr auto l_IOO0_IOO_CPLT_RX0_RXCTL_CTL_REGS_RX_CTL_REGS_RX_PG_SPARE_MODE_4_OFF = 0x0;
-@@ -4926,6 +5503,12 @@ fapi2::ReturnCode p9_obus_scom(const fapi2::Target<fapi2::TARGET_TYPE_OBUS>& TGT
-             FAPI_TRY(fapi2::putScom(TGT0, 0x8008080009010c3full, l_scom_buffer));
-         }
-         {
-+            FAPI_TRY(fapi2::getScom( TGT0, 0x8008100009010c3full, l_scom_buffer ));
-+
-+            l_scom_buffer.insert<48, 3, 61, uint64_t>(literal_0b000 );
-+            FAPI_TRY(fapi2::putScom(TGT0, 0x8008100009010c3full, l_scom_buffer));
-+        }
-+        {
-             FAPI_TRY(fapi2::getScom( TGT0, 0x8008180009010c3full, l_scom_buffer ));
- 
-             if (((l_TGT0_ATTR_IO_O_CHANNEL_TYPE == fapi2::ENUM_ATTR_IO_O_CHANNEL_TYPE_BOARD)
-@@ -5154,6 +5737,13 @@ fapi2::ReturnCode p9_obus_scom(const fapi2::Target<fapi2::TARGET_TYPE_OBUS>& TGT
-             FAPI_TRY(fapi2::putScom(TGT0, 0x8008880009010c3full, l_scom_buffer));
-         }
-         {
-+            FAPI_TRY(fapi2::getScom( TGT0, 0x8008c00009010c3full, l_scom_buffer ));
-+
-+            constexpr auto l_IOO0_IOO_CPLT_RX0_RXCTL_CTL_REGS_RX_CTL_REGS_RX_IREF_PDWN_B_ON = 0x1;
-+            l_scom_buffer.insert<54, 1, 63, uint64_t>(l_IOO0_IOO_CPLT_RX0_RXCTL_CTL_REGS_RX_CTL_REGS_RX_IREF_PDWN_B_ON );
-+            FAPI_TRY(fapi2::putScom(TGT0, 0x8008c00009010c3full, l_scom_buffer));
-+        }
-+        {
-             FAPI_TRY(fapi2::getScom( TGT0, 0x8008d00009010c3full, l_scom_buffer ));
- 
-             if (( ! l_TGT2_ATTR_CHIP_EC_FEATURE_OBUS_HW419305))
-@@ -5224,12 +5814,25 @@ fapi2::ReturnCode p9_obus_scom(const fapi2::Target<fapi2::TARGET_TYPE_OBUS>& TGT
-             FAPI_TRY(fapi2::putScom(TGT0, 0x8009880009010c3full, l_scom_buffer));
-         }
-         {
-+            FAPI_TRY(fapi2::getScom( TGT0, 0x800b800009010c3full, l_scom_buffer ));
-+
-+            constexpr auto l_IOO0_IOO_CPLT_RX0_RXCTL_DATASM_DATASM_REGS_RX_CTL_DATASM_CLKDIST_PDWN_OFF = 0x0;
-+            l_scom_buffer.insert<60, 1, 63, uint64_t>(l_IOO0_IOO_CPLT_RX0_RXCTL_DATASM_DATASM_REGS_RX_CTL_DATASM_CLKDIST_PDWN_OFF );
-+            FAPI_TRY(fapi2::putScom(TGT0, 0x800b800009010c3full, l_scom_buffer));
-+        }
-+        {
-             FAPI_TRY(fapi2::getScom( TGT0, 0x800c0c0009010c3full, l_scom_buffer ));
- 
-             l_scom_buffer.insert<48, 6, 58, uint64_t>(literal_0b000000 );
-             FAPI_TRY(fapi2::putScom(TGT0, 0x800c0c0009010c3full, l_scom_buffer));
-         }
-         {
-+            FAPI_TRY(fapi2::getScom( TGT0, 0x800c140009010c3full, l_scom_buffer ));
-+
-+            l_scom_buffer.insert<48, 3, 61, uint64_t>(literal_0b000 );
-+            FAPI_TRY(fapi2::putScom(TGT0, 0x800c140009010c3full, l_scom_buffer));
-+        }
-+        {
-             FAPI_TRY(fapi2::getScom( TGT0, 0x800f1c0009010c3full, l_scom_buffer ));
- 
-             l_scom_buffer.insert<48, 5, 59, uint64_t>(literal_0b01110 );
--- 
-1.8.2.2
-
diff --git a/openpower/package/libflash/libflash.mk b/openpower/package/libflash/libflash.mk
index 8b9d336..bb86513 100644
--- a/openpower/package/libflash/libflash.mk
+++ b/openpower/package/libflash/libflash.mk
@@ -4,7 +4,7 @@
 #
 ################################################################################
 
-LIBFLASH_VERSION = v6.2
+LIBFLASH_VERSION = v6.3
 LIBFLASH_SITE = $(call github,open-power,skiboot,$(LIBFLASH_VERSION))
 
 LIBFLASH_INSTALL_STAGING = YES
diff --git a/openpower/package/occ/Config.in b/openpower/package/occ/Config.in
index 741cacc..77b29d7 100644
--- a/openpower/package/occ/Config.in
+++ b/openpower/package/occ/Config.in
@@ -43,7 +43,7 @@
 
 config BR2_OCC_VERSION
 	string
-	default "12c8088a32c5d62745dcce6bbd3a51e46b7667f1" if BR2_OCC_LATEST_VERSION
+	default "e5a2afd6cfb06cddf18e42d6be61366acc5616c6" if BR2_OCC_LATEST_VERSION
 	default BR2_OCC_CUSTOM_VERSION_VALUE \
 		if BR2_OCC_CUSTOM_VERSION
 
diff --git a/openpower/package/openpower-pnor-util/openpower-pnor-util.mk b/openpower/package/openpower-pnor-util/openpower-pnor-util.mk
new file mode 100644
index 0000000..b7f508a
--- /dev/null
+++ b/openpower/package/openpower-pnor-util/openpower-pnor-util.mk
@@ -0,0 +1,17 @@
+################################################################################
+#
+# openpower_pnor_util
+#
+################################################################################
+
+HOST_OPENPOWER_PNOR_UTIL_VERSION ?= e499446423d6ebe96f74e079de36a8929d47277b
+HOST_OPENPOWER_PNOR_UTIL_SITE ?= $(call github,openbmc,openpower-pnor-code-mgmt,$(HOST_OPENPOWER_PNOR_UTIL_VERSION))
+HOST_OPENPOWER_PNOR_UTIL_DEPENDENCIES = host-squashfs host-libflash
+
+define HOST_OPENPOWER_PNOR_UTIL_INSTALL_CMDS
+	$(INSTALL) -D $(@D)/generate-tar $(HOST_DIR)/usr/bin/generate-tar
+endef
+
+OPENPOWER_PNOR_UTIL_LICENSE = Apache-2.0
+
+$(eval $(host-generic-package))
diff --git a/openpower/package/openpower-pnor/Config.in b/openpower/package/openpower-pnor/Config.in
index 2fe0b9d..0f9a10d 100644
--- a/openpower/package/openpower-pnor/Config.in
+++ b/openpower/package/openpower-pnor/Config.in
@@ -154,6 +154,18 @@
         help
             String used to define name of openpower targeting binary file, ecc protected
 
+config BR2_OCMBFW_FILENAME
+        string "Name of the OCMBFW Update original file"
+        default "ocmbfw.bin"
+        help
+            String used to define name of OCBMFW Update original file (before any processing occurs)
+
+config BR2_OCMBFW_PROCESSED_FILENAME
+        string "Name of OCMBFW Update binary processed file"
+        default "ocmbfw.bin.ecc"
+        help
+            String used to define the name of the OCMBFW update binary file after processing, ecc protected
+
 config BR2_OPENPOWER_PNOR_XZ_ENABLED
         bool "Enable xz compression in PNOR payloads"
         default n
diff --git a/openpower/package/openpower-pnor/openpower-pnor.mk b/openpower/package/openpower-pnor/openpower-pnor.mk
index 274057c..917231e 100644
--- a/openpower/package/openpower-pnor/openpower-pnor.mk
+++ b/openpower/package/openpower-pnor/openpower-pnor.mk
@@ -4,12 +4,12 @@
 #
 ################################################################################
 
-OPENPOWER_PNOR_VERSION ?= 0aeae23bd0c68b0a8e2c04b259663867559bb2cb
+OPENPOWER_PNOR_VERSION ?= 43fc2ebbae0f6082520f70b021f958661ee5c994
 OPENPOWER_PNOR_SITE ?= $(call github,open-power,pnor,$(OPENPOWER_PNOR_VERSION))
 
 OPENPOWER_PNOR_LICENSE = Apache-2.0
 OPENPOWER_PNOR_LICENSE_FILES = LICENSE
-OPENPOWER_PNOR_DEPENDENCIES = hostboot-binaries machine-xml skiboot host-openpower-ffs capp-ucode
+OPENPOWER_PNOR_DEPENDENCIES = hostboot-binaries machine-xml skiboot host-openpower-ffs capp-ucode host-openpower-pnor-util
 
 ifeq ($(BR2_OPENPOWER_POWER9),y)
 OPENPOWER_PNOR_DEPENDENCIES += hcode
@@ -52,10 +52,6 @@
     OPENPOWER_RELEASE=p8
 endif
 
-ifeq ($(BR2_BUILD_PNOR_SQUASHFS),y)
-    OPENPOWER_PNOR_DEPENDENCIES += host-openpower-vpnor
-endif
-
 OPENPOWER_PNOR_INSTALL_IMAGES = YES
 OPENPOWER_PNOR_INSTALL_TARGET = NO
 
@@ -70,7 +66,7 @@
 OPENPOWER_MRW_SCRATCH_DIR = $(STAGING_DIR)/openpower_mrw_scratch
 OUTPUT_BUILD_DIR = $(STAGING_DIR)/../../../build/
 OUTPUT_IMAGES_DIR = $(STAGING_DIR)/../../../images/
-HOSTBOOT_BUILD_IMAGES_DIR = $(STAGING_DIR)/../../../staging/hostboot_build_images/
+HOSTBOOT_BUILD_IMAGES_DIR = $(STAGING_DIR)/hostboot_build_images/
 
 FILES_TO_TAR = $(HOSTBOOT_BUILD_IMAGES_DIR)/* \
                $(OUTPUT_BUILD_DIR)/skiboot-*/skiboot.elf \
@@ -133,6 +129,8 @@
             -payload_filename $(BR2_SKIBOOT_LID_XZ_NAME) \
             -binary_dir $(BINARIES_DIR) \
             -bootkernel_filename $(LINUX_IMAGE_NAME) \
+	    -ocmbfw_original_filename $(OPENPOWER_PNOR_SCRATCH_DIR)/$(BR2_OCMBFW_FILENAME) \
+	    -ocmbfw_binary_filename $(OPENPOWER_PNOR_SCRATCH_DIR)/$(BR2_OCMBFW_PROCESSED_FILENAME) \
             -pnor_layout $(@D)/"$(OPENPOWER_RELEASE)"Layouts/$(BR2_OPENPOWER_PNOR_XML_LAYOUT_FILENAME) \
             $(XZ_ARG) $(KEY_TRANSITION_ARG) $(SIGN_MODE_ARG) \
 
@@ -155,6 +153,7 @@
             -targeting_RW_binary_filename $(BR2_OPENPOWER_TARGETING_ECC_FILENAME).unprotected \
             -wofdata_binary_filename $(OPENPOWER_PNOR_SCRATCH_DIR)/$(BR2_WOFDATA_BINARY_FILENAME) \
             -memddata_binary_filename $(OPENPOWER_PNOR_SCRATCH_DIR)/$(BR2_MEMDDATA_BINARY_FILENAME) \
+            -ocmbfw_binary_filename $(OPENPOWER_PNOR_SCRATCH_DIR)/$(BR2_OCMBFW_PROCESSED_FILENAME) \
             -openpower_version_filename $(OPENPOWER_PNOR_SCRATCH_DIR)/openpower_pnor_version.bin
 
         $(INSTALL) $(STAGING_DIR)/pnor/$(BR2_OPENPOWER_PNOR_FILENAME) $(BINARIES_DIR)
@@ -166,11 +165,14 @@
             $(INSTALL) $(STAGING_DIR)/pnor/$(BR2_OPENPOWER_PNOR_UPDATE_FILENAME) $(BINARIES_DIR); \
         fi
 
-        # If this is a VPNOR system, run the generate-squashfs command and
+        # If this is a VPNOR system, run the generate-tar command and
         # create a tarball
         if [ "$(BR2_BUILD_PNOR_SQUASHFS)" == "y" ]; then \
-            PATH=$(HOST_DIR)/usr/bin:$(PATH) $(HOST_DIR)/usr/bin/generate-squashfs -f $(STAGING_DIR)/pnor/$(BR2_OPENPOWER_PNOR_FILENAME).squashfs.tar $(STAGING_DIR)/pnor/$(BR2_OPENPOWER_PNOR_FILENAME) -s; \
+            PATH=$(HOST_DIR)/usr/bin:$(PATH) $(HOST_DIR)/usr/bin/generate-tar -i squashfs -f $(STAGING_DIR)/pnor/$(BR2_OPENPOWER_PNOR_FILENAME).squashfs.tar $(STAGING_DIR)/pnor/$(BR2_OPENPOWER_PNOR_FILENAME) -s; \
             $(INSTALL) $(STAGING_DIR)/pnor/$(BR2_OPENPOWER_PNOR_FILENAME).squashfs.tar $(BINARIES_DIR); \
+        else \
+            PATH=$(HOST_DIR)/usr/bin:$(PATH) $(HOST_DIR)/usr/bin/generate-tar -i static -f $(STAGING_DIR)/pnor/$(BR2_OPENPOWER_PNOR_FILENAME).static.tar.gz $(STAGING_DIR)/pnor/$(BR2_OPENPOWER_PNOR_FILENAME) -s; \
+            $(INSTALL) $(STAGING_DIR)/pnor/$(BR2_OPENPOWER_PNOR_FILENAME).static.tar.gz $(BINARIES_DIR); \
         fi
 
 	#Create Debug Tarball
diff --git a/openpower/package/openpower-vpnor/openpower-vpnor.mk b/openpower/package/openpower-vpnor/openpower-vpnor.mk
deleted file mode 100644
index 5666617..0000000
--- a/openpower/package/openpower-vpnor/openpower-vpnor.mk
+++ /dev/null
@@ -1,15 +0,0 @@
-################################################################################
-#
-# openpower_vpnor
-#
-################################################################################
-
-HOST_OPENPOWER_VPNOR_VERSION ?= c39d923fee581533775e37be3f59f77c021718ee
-HOST_OPENPOWER_VPNOR_SITE ?= $(call github,openbmc,openpower-pnor-code-mgmt,$(HOST_OPENPOWER_VPNOR_VERSION))
-HOST_OPENPOWER_VPNOR_DEPENDENCIES = host-squashfs host-libflash
-
-define HOST_OPENPOWER_VPNOR_INSTALL_CMDS
-    $(INSTALL) -D $(@D)/generate-squashfs $(HOST_DIR)/usr/bin/generate-squashfs
-endef
-
-$(eval $(host-generic-package))
diff --git a/openpower/package/petitboot/petitboot.hash b/openpower/package/petitboot/petitboot.hash
index 799575c..9b9dd3d 100644
--- a/openpower/package/petitboot/petitboot.hash
+++ b/openpower/package/petitboot/petitboot.hash
@@ -1 +1 @@
-sha256 042463dbccc4e6f1267b3b6f30d52851e92aa8a4c59169c01aa772a7b4115715  petitboot-1.10.1.tar.gz
+sha256 8573b5c1bc22f49a5770618c99cc3e05f5bfbabd8c9474cd26754519d3175a85  petitboot-v1.10.4.tar.gz
diff --git a/openpower/package/petitboot/petitboot.mk b/openpower/package/petitboot/petitboot.mk
index 6d5c415..fdcd5ab 100644
--- a/openpower/package/petitboot/petitboot.mk
+++ b/openpower/package/petitboot/petitboot.mk
@@ -4,9 +4,9 @@
 #
 ################################################################################
 
-PETITBOOT_VERSION = 1.10.1
+PETITBOOT_VERSION = v1.10.4
 PETITBOOT_SOURCE = petitboot-$(PETITBOOT_VERSION).tar.gz
-PETITBOOT_SITE ?= https://github.com/open-power/petitboot/releases/download/v$(PETITBOOT_VERSION)
+PETITBOOT_SITE ?= https://github.com/open-power/petitboot/releases/download/$(PETITBOOT_VERSION)
 PETITBOOT_DEPENDENCIES = ncurses udev host-bison host-flex lvm2
 PETITBOOT_LICENSE = GPLv2
 PETITBOOT_LICENSE_FILES = COPYING
diff --git a/openpower/package/sb-signing-utils/sb-signing-utils.mk b/openpower/package/sb-signing-utils/sb-signing-utils.mk
index 71a04ec..cba03e3 100644
--- a/openpower/package/sb-signing-utils/sb-signing-utils.mk
+++ b/openpower/package/sb-signing-utils/sb-signing-utils.mk
@@ -8,7 +8,7 @@
 
 SB_SIGNING_UTILS_LICENSE = Apache-2.0
 SB_SIGNING_UTILS_LICENSE_FILES = LICENSE
-SB_SIGNING_UTILS_VERSION ?= v0.6
+SB_SIGNING_UTILS_VERSION ?= v0.8
 
 HOST_SB_SIGNING_UTILS_DEPENDENCIES = host-openssl
 
diff --git a/openpower/package/sbe/Config.in b/openpower/package/sbe/Config.in
index c58b5d1..a1c348f 100644
--- a/openpower/package/sbe/Config.in
+++ b/openpower/package/sbe/Config.in
@@ -26,7 +26,7 @@
 
 config BR2_SBE_VERSION
 	string
-	default "2e253cebdaffb92d67fe19999d818e327daca1fb" if BR2_SBE_LATEST_VERSION
+	default "b96edc83e949bc378c30430381d3f86dbb599294" if BR2_SBE_LATEST_VERSION
 	default BR2_SBE_CUSTOM_VERSION_VALUE \
 		if BR2_SBE_CUSTOM_VERSION
 
diff --git a/openpower/package/sbe/sbe.mk b/openpower/package/sbe/sbe.mk
index 987a9c0..121e2c4 100644
--- a/openpower/package/sbe/sbe.mk
+++ b/openpower/package/sbe/sbe.mk
@@ -22,7 +22,7 @@
 
 define SBE_INSTALL_IMAGES_CMDS
 	$(INSTALL) -D $(@D)/images/p9_ipl_build  $(HOST_DIR)/usr/bin/
-	python $(@D)/src/build/sbeOpDistribute.py --sbe_binary_dir=$(STAGING_DIR)/sbe_binaries --img_dir=$(@D)/images
+	python $(@D)/src/build/sbeOpDistribute.py --sbe_binary_dir=$(STAGING_DIR)/sbe_binaries --img_dir=$(@D)/images --sbe_binary_filename $(BR2_HOSTBOOT_BINARY_SBE_FILENAME)
 	cp $(@D)/src/build/sbeOpDistribute.py $(STAGING_DIR)/sbe_binaries/
 endef
 
diff --git a/openpower/package/skiboot/Config.in b/openpower/package/skiboot/Config.in
index 01f9374..e42cd9c 100644
--- a/openpower/package/skiboot/Config.in
+++ b/openpower/package/skiboot/Config.in
@@ -31,7 +31,7 @@
 
 config BR2_SKIBOOT_VERSION
 	string
-	default "v6.2.2" if BR2_SKIBOOT_LATEST_VERSION
+	default "v6.3-231-g0bf01d93ee39" if BR2_SKIBOOT_LATEST_VERSION
 	default BR2_SKIBOOT_CUSTOM_VERSION_VALUE \
 		if BR2_SKIBOOT_CUSTOM_VERSION
 
@@ -42,6 +42,9 @@
 	string "URL of custom repository"
 	depends on BR2_SKIBOOT_CUSTOM_GIT
 
+config BR2_SKIBOOT_DEVICETREE
+	bool "Build device trees"
+
 endif
 
 endmenu
diff --git a/openpower/package/skiboot/skiboot.mk b/openpower/package/skiboot/skiboot.mk
index 74c6623..708cef7 100644
--- a/openpower/package/skiboot/skiboot.mk
+++ b/openpower/package/skiboot/skiboot.mk
@@ -18,6 +18,10 @@
 SKIBOOT_INSTALL_IMAGES = YES
 SKIBOOT_INSTALL_TARGET = NO
 
+ifeq ($(BR2_SKIBOOT_DEVICETREE),y)
+SKIBOOT_DEPENDENCIES += host-dtc
+endif
+
 SKIBOOT_MAKE_OPTS += CC="$(TARGET_CC)" LD="$(TARGET_LD)" \
 		     AS="$(TARGET_AS)" AR="$(TARGET_AR)" NM="$(TARGET_NM)" \
 		     OBJCOPY="$(TARGET_OBJCOPY)" OBJDUMP="$(TARGET_OBJDUMP)" \
@@ -37,10 +41,17 @@
 define SKIBOOT_BUILD_CMDS
 	$(TARGET_CONFIGURE_OPTS) SKIBOOT_VERSION=`cat $(SKIBOOT_VERSION_FILE)` \
 		$(MAKE) $(SKIBOOT_MAKE_OPTS) -C $(@D) all
+
+	$(if $(BR2_SKIBOOT_DEVICETREE), \
+		$(TARGET_CONFIGURE_OPTS) $(MAKE) -C $(@D)/external/devicetree)
 endef
 
 define SKIBOOT_INSTALL_IMAGES_CMDS
 	$(INSTALL) -D -m 755 $(@D)/skiboot.lid $(BINARIES_DIR)
+
+	$(if $(BR2_SKIBOOT_DEVICETREE), \
+		$(INSTALL) -D -m 644 \
+			$(@D)/external/devicetree/*.dtb $(BINARIES_DIR))
 endef
 
 $(eval $(generic-package))
diff --git a/openpower/patches/p8dtu-patches/hostboot-p8/0001-Memory-Interleaving-Grouping-change-for-p8dtu.patch b/openpower/patches/p8dtu-patches/hostboot-p8/0001-Memory-Interleaving-Grouping-change-for-p8dtu.patch
new file mode 100644
index 0000000..acdb1c0
--- /dev/null
+++ b/openpower/patches/p8dtu-patches/hostboot-p8/0001-Memory-Interleaving-Grouping-change-for-p8dtu.patch
@@ -0,0 +1,27 @@
+From e6db702ece6f5d13c7d0b288203a0715b4a2a35b Mon Sep 17 00:00:00 2001
+From: Jim Yuan <jim.yuan@supermicro.com>
+Date: Tue, 18 Oct 2016 16:08:13 -0700
+Subject: [PATCH 01/14] Memory Interleaving Grouping change for p8dtu. Allow
+ not adjacent pair for p8dtu.
+
+Signed-off-by: Jim Yuan <jim.yuan@supermicro.com>
+---
+ src/usr/targeting/common/xmltohb/attribute_types.xml | 2 +-
+ 1 file changed, 1 insertion(+), 1 deletion(-)
+
+diff --git a/src/usr/targeting/common/xmltohb/attribute_types.xml b/src/usr/targeting/common/xmltohb/attribute_types.xml
+index 0fc5f4eac..d7fc183a4 100644
+--- a/src/usr/targeting/common/xmltohb/attribute_types.xml
++++ b/src/usr/targeting/common/xmltohb/attribute_types.xml
+@@ -13812,7 +13812,7 @@ firmware notes: Platforms should initialize this attribute to AUTO (0)</descript
+     </description>
+     <simpleType>
+         <uint8_t>
+-        <default>1</default>
++        <default>0</default>
+         </uint8_t>
+     </simpleType>
+     <persistency>non-volatile</persistency>
+-- 
+2.16.2.windows.1
+
diff --git a/openpower/patches/p8dtu-patches/hostboot-p8/0002-Support-130W-Turismo-Parts.patch b/openpower/patches/p8dtu-patches/hostboot-p8/0002-Support-130W-Turismo-Parts.patch
new file mode 100644
index 0000000..9b3c4b0
--- /dev/null
+++ b/openpower/patches/p8dtu-patches/hostboot-p8/0002-Support-130W-Turismo-Parts.patch
@@ -0,0 +1,40 @@
+From 3040a458385e82d7d9edf7b926fcdba641d0a048 Mon Sep 17 00:00:00 2001
+From: Jim Yuan <jim.yuan@supermicro.com>
+Date: Tue, 18 Oct 2016 16:12:21 -0700
+Subject: [PATCH 02/14] Support 130W Turismo Parts.
+
+Signed-off-by: Jim Yuan <jim.yuan@supermicro.com>
+---
+ src/usr/targeting/common/xmltohb/attribute_types.xml | 2 +-
+ src/usr/targeting/common/xmltohb/target_types.xml    | 2 +-
+ 2 files changed, 2 insertions(+), 2 deletions(-)
+
+diff --git a/src/usr/targeting/common/xmltohb/attribute_types.xml b/src/usr/targeting/common/xmltohb/attribute_types.xml
+index d7fc183a4..0f0e2f6a7 100644
+--- a/src/usr/targeting/common/xmltohb/attribute_types.xml
++++ b/src/usr/targeting/common/xmltohb/attribute_types.xml
+@@ -15890,7 +15890,7 @@ firmware notes: Platforms should initialize this attribute to AUTO (0)</descript
+     <simpleType>
+         <enumeration>
+             <id>MRW_NEST_CAPABLE_FREQUENCIES_SYS</id>
+-            <default>UNSUPPORTED_FREQ</default>
++            <default>2000_MHZ_OR_2400_MHZ</default>
+         </enumeration>
+     </simpleType>
+     <persistency>non-volatile</persistency>
+diff --git a/src/usr/targeting/common/xmltohb/target_types.xml b/src/usr/targeting/common/xmltohb/target_types.xml
+index b28607ca2..a150ce64d 100644
+--- a/src/usr/targeting/common/xmltohb/target_types.xml
++++ b/src/usr/targeting/common/xmltohb/target_types.xml
+@@ -681,7 +681,7 @@
+     </attribute>
+     <attribute>
+         <id>DEFAULT_PROC_MODULE_NEST_FREQ_MHZ</id>
+-        <default>2400</default>
++        <default>2000</default>
+     </attribute>
+ </targetType>
+ 
+-- 
+2.16.2.windows.1
+
diff --git a/openpower/patches/p8dtu-patches/hostboot-p8/0003-Add-support-for-memory-voltage-control-for-p8dtu.patch b/openpower/patches/p8dtu-patches/hostboot-p8/0003-Add-support-for-memory-voltage-control-for-p8dtu.patch
new file mode 100644
index 0000000..4f6b021
--- /dev/null
+++ b/openpower/patches/p8dtu-patches/hostboot-p8/0003-Add-support-for-memory-voltage-control-for-p8dtu.patch
@@ -0,0 +1,49 @@
+From 783332cc9afcf3c8581760112162b650a9e01c7e Mon Sep 17 00:00:00 2001
+From: Jim Yuan <jim.yuan@supermicro.com>
+Date: Tue, 4 Oct 2016 16:07:44 -0700
+Subject: [PATCH 03/14] Adds support for memory voltage control specific to the p8dtu platform.
+
+Signed-off-by: Jim Yuan <jim.yuan@supermicro.com>
+---
+ src/usr/hwpf/hwp/dram_training/palmetto_vddr.C | 4 ++++
+ 1 file changed, 4 insertions(+)
+
+diff --git a/src/usr/hwpf/hwp/dram_training/palmetto_vddr.C b/src/usr/hwpf/hwp/dram_training/palmetto_vddr.C
+index b0f6bed4c..95c3924b8 100644
+--- a/src/usr/hwpf/hwp/dram_training/palmetto_vddr.C
++++ b/src/usr/hwpf/hwp/dram_training/palmetto_vddr.C
+@@ -168,6 +168,7 @@ static errlHndl_t for_each_vddr_domain_with_functional_memory(
+     std::sort(l_membufTargetList.begin(), l_membufTargetList.end(),
+         compareTargetsGpioInfos);
+ 
++/*
+     // Prune out targets with non-unique GPIO info
+     std::vector<TARGETING::TargetHandle_t>::iterator
+         pInvalidEntries = std::unique(
+@@ -175,6 +176,7 @@ static errlHndl_t for_each_vddr_domain_with_functional_memory(
+             l_membufTargetList.end(),
+             areTargetsGpioInfoEqual);
+     l_membufTargetList.erase(pInvalidEntries,l_membufTargetList.end());
++*/
+ 
+     // Invoke callback for one Centaur per unique VDDR domain
+     for (TargetHandleList::iterator
+@@ -274,6 +276,7 @@ static errlHndl_t pca95xGpioWriteBit(TARGETING::Target * i_target,
+                            i_val);
+ 
+     // Configure gpio bit as output (if necessary).
++/*    
+     if(!err)
+     {
+         err = pca95xGpioSetBit(i_target,
+@@ -281,6 +284,7 @@ static errlHndl_t pca95xGpioWriteBit(TARGETING::Target * i_target,
+                                i_gpio_pin,
+                                PCA95X_GPIO_CONFIG_OUTPUT);
+     }
++*/
+ 
+     return err;
+ }
+-- 
+2.16.2.windows.1
+
diff --git a/openpower/patches/p8dtu-patches/hostboot-p8/0004-change-esel-command-netfn-to-IBM-0x3a.patch b/openpower/patches/p8dtu-patches/hostboot-p8/0004-change-esel-command-netfn-to-IBM-0x3a.patch
new file mode 100644
index 0000000..3215bc2
--- /dev/null
+++ b/openpower/patches/p8dtu-patches/hostboot-p8/0004-change-esel-command-netfn-to-IBM-0x3a.patch
@@ -0,0 +1,26 @@
+From eee0dcae475618bef686198baf28c750de9a63a5 Mon Sep 17 00:00:00 2001
+From: Jim Yuan <jim.yuan@supermicro.com>
+Date: Tue, 11 Oct 2016 10:00:15 -0700
+Subject: [PATCH 04/14] change esel command netfn to IBM 0x3a
+
+Signed-off-by: Jim Yuan <jim.yuan@supermicro.com>
+---
+ src/include/usr/ipmi/ipmiif.H | 2 +-
+ 1 file changed, 1 insertion(+), 1 deletion(-)
+
+diff --git a/src/include/usr/ipmi/ipmiif.H b/src/include/usr/ipmi/ipmiif.H
+index 5c2444f26..94fca5fb6 100644
+--- a/src/include/usr/ipmi/ipmiif.H
++++ b/src/include/usr/ipmi/ipmiif.H
+@@ -265,7 +265,7 @@ namespace IPMI
+ 
+     //AMI-specific storage messages
+     inline const command_t partial_add_esel(void)
+-    { return std::make_pair(NETFUN_AMI, 0xf0); }
++	{ return std::make_pair(NETFUN_IBM, 0xf0); }
+ 
+     // event messages
+     inline const command_t platform_event(void)
+-- 
+2.16.2.windows.1
+
diff --git a/openpower/patches/p8dtu-patches/hostboot-p8/0005-change-pnor-response-command-to-0x7.patch b/openpower/patches/p8dtu-patches/hostboot-p8/0005-change-pnor-response-command-to-0x7.patch
new file mode 100644
index 0000000..943b471
--- /dev/null
+++ b/openpower/patches/p8dtu-patches/hostboot-p8/0005-change-pnor-response-command-to-0x7.patch
@@ -0,0 +1,26 @@
+From 50ae9cf95223a5f6492e7e515ccef9d4499ef823 Mon Sep 17 00:00:00 2001
+From: Jim Yuan <jim.yuan@supermicro.com>
+Date: Tue, 11 Oct 2016 10:03:01 -0700
+Subject: [PATCH 05/14] change pnor response command to 0x7
+
+Signed-off-by: Jim Yuan <jim.yuan@supermicro.com>
+---
+ src/include/usr/ipmi/ipmiif.H | 2 +-
+ 1 file changed, 1 insertion(+), 1 deletion(-)
+
+diff --git a/src/include/usr/ipmi/ipmiif.H b/src/include/usr/ipmi/ipmiif.H
+index 94fca5fb6..4b41cb3bc 100644
+--- a/src/include/usr/ipmi/ipmiif.H
++++ b/src/include/usr/ipmi/ipmiif.H
+@@ -289,7 +289,7 @@ namespace IPMI
+     { return std::make_pair(NETFUN_IBM, 0x07); }
+ 
+     inline const command_t pnor_response(void)
+-    { return std::make_pair(NETFUN_IBM, 0x08); }
++	{ return std::make_pair(NETFUN_IBM, 0x07); }
+ 
+     inline const command_t hiomap_event(void)
+     { return std::make_pair(NETFUN_IBM, 0x0f); }
+-- 
+2.16.2.windows.1
+
diff --git a/openpower/patches/p8dtu-patches/hostboot-p8/0006-send-board-ID-to-ipmi.patch b/openpower/patches/p8dtu-patches/hostboot-p8/0006-send-board-ID-to-ipmi.patch
new file mode 100644
index 0000000..58ddb2d
--- /dev/null
+++ b/openpower/patches/p8dtu-patches/hostboot-p8/0006-send-board-ID-to-ipmi.patch
@@ -0,0 +1,108 @@
+From 73ba34b74551c5f61a1f2c93f48a7f59cb576cd6 Mon Sep 17 00:00:00 2001
+From: Jim Yuan <jim.yuan@supermicro.com>
+Date: Tue, 11 Oct 2016 10:26:14 -0700
+Subject: [PATCH 06/14] send board ID to ipmi
+
+Signed-off-by: Jim Yuan <jim.yuan@supermicro.com>
+---
+ src/include/usr/ipmi/ipmiif.H                      |  6 ++++-
+ src/include/usr/ipmi/ipmipowerstate.H              |  2 +-
+ .../initservice/istepdispatcher/istepdispatcher.C  | 11 ++++++++
+ src/usr/ipmiext/ipmipowerstate.C                   | 29 ++++++++++++++++++++++
+ 4 files changed, 46 insertions(+), 2 deletions(-)
+
+diff --git a/src/include/usr/ipmi/ipmiif.H b/src/include/usr/ipmi/ipmiif.H
+index 4b41cb3bc..8039adbf7 100644
+--- a/src/include/usr/ipmi/ipmiif.H
++++ b/src/include/usr/ipmi/ipmiif.H
+@@ -299,7 +299,11 @@ namespace IPMI
+     // user defined power limit from the BMC.
+     inline const command_t get_power_limit(void)
+     { return std::make_pair(NETFUN_GRPEXT, 0x03); }
+-
++	
++	//SMC	  
++	inline const command_t set_board_id(void)
++	{ return std::make_pair(NETFUN_NONE, 0x20); }
++	
+     // Some helper messages
+     // Used to create an empty message for reception
+     inline const command_t no_command(void)
+diff --git a/src/include/usr/ipmi/ipmipowerstate.H b/src/include/usr/ipmi/ipmipowerstate.H
+index b65275075..e943e8b66 100644
+--- a/src/include/usr/ipmi/ipmipowerstate.H
++++ b/src/include/usr/ipmi/ipmipowerstate.H
+@@ -78,7 +78,7 @@ enum ACPI_DEVICE_POWER_STATE_TO_SET
+  */
+ errlHndl_t setACPIPowerState();
+ 
+-
++errlHndl_t SmcsetBoardId();
+ } // namespace
+ 
+ #endif
+diff --git a/src/usr/initservice/istepdispatcher/istepdispatcher.C b/src/usr/initservice/istepdispatcher/istepdispatcher.C
+index 16f1c8a01..0f9731094 100644
+--- a/src/usr/initservice/istepdispatcher/istepdispatcher.C
++++ b/src/usr/initservice/istepdispatcher/istepdispatcher.C
+@@ -284,6 +284,17 @@ void IStepDispatcher::init(errlHndl_t &io_rtaskRetErrl)
+             err_ipmi->collectTrace("INITSVC", 1024);
+             errlCommit(err_ipmi, INITSVC_COMP_ID );
+         }
++		//send board ID
++		errlHndl_t err_ipmi1 = IPMI::SmcsetBoardId();
++		
++		if(err_ipmi1)
++		{
++		TRACFCOMP(g_trac_initsvc,
++						   "init: ERROR: IPMI set Board Id Failed");
++			 err_ipmi->collectTrace("INITSVC", 1024);
++			 errlCommit(err_ipmi1, INITSVC_COMP_ID );
++		 }
++		
+ #endif
+ 
+ 
+diff --git a/src/usr/ipmiext/ipmipowerstate.C b/src/usr/ipmiext/ipmipowerstate.C
+index 30c2a70ef..f8e61f82b 100644
+--- a/src/usr/ipmiext/ipmipowerstate.C
++++ b/src/usr/ipmiext/ipmipowerstate.C
+@@ -50,6 +50,35 @@ namespace IPMI
+ /******************************************************************************/
+ // Functions
+ /******************************************************************************/
++errlHndl_t SmcsetBoardId()
++{
++    errlHndl_t err_ipmi = NULL;
++
++    size_t len = 10; 
++
++    //create request data buffer
++    uint8_t* data = new uint8_t[len];
++
++    IPMI::completion_code cc = IPMI::CC_UNKBAD;
++    //P8DTU board ID 0933
++    data[0] = 0x33;
++    data[1] = 0x9;
++    memset(&data[2], 0, 8);
++    err_ipmi = IPMI::sendrecv(IPMI::set_board_id(), cc, len, data);
++
++    //cleanup buffer
++    delete[] data;
++
++    if(cc != IPMI::CC_OK)
++    {
++        IPMI_TRAC("Set board id: BMC returned not ok CC[%x]",cc);
++        // should we log error and then retry?
++        // what happens if the communication is broken
++        // reset will try and set it again.
++    }
++
++    return err_ipmi;
++}
+ 
+ errlHndl_t setACPIPowerState()
+ {
+-- 
+2.16.2.windows.1
+
diff --git a/openpower/patches/p8dtu-patches/hostboot-p8/0007-read-riser-id-from-CPLD.patch b/openpower/patches/p8dtu-patches/hostboot-p8/0007-read-riser-id-from-CPLD.patch
new file mode 100644
index 0000000..af19f74
--- /dev/null
+++ b/openpower/patches/p8dtu-patches/hostboot-p8/0007-read-riser-id-from-CPLD.patch
@@ -0,0 +1,95 @@
+From 94de2f7f944a2cabbdf699adcbc6679a091ad324 Mon Sep 17 00:00:00 2001
+From: Leoluo <leoluo@supermicro.com>
+Date: Tue, 8 Mar 2016 17:01:26 -0800
+Subject: [PATCH 07/14] read riser id from CPLD
+
+Signed-off-by: Jim Yuan <jim.yuan@supermicro.com>
+---
+ src/include/usr/ipmi/ipmiif.H                  |  3 ++
+ src/usr/hwpf/hwp/nest_chiplets/nest_chiplets.C | 42 +++++++++++++++++++++++++-
+ 2 files changed, 44 insertions(+), 1 deletion(-)
+
+diff --git a/src/include/usr/ipmi/ipmiif.H b/src/include/usr/ipmi/ipmiif.H
+index 8039adbf7..9dfd8ee63 100644
+--- a/src/include/usr/ipmi/ipmiif.H
++++ b/src/include/usr/ipmi/ipmiif.H
+@@ -238,6 +238,9 @@ namespace IPMI
+     inline const command_t get_capabilities(void)
+     { return std::make_pair(NETFUN_APP, 0x36); }
+ 
++    inline const command_t master_readwrite(void)
++    { return std::make_pair(NETFUN_APP, 0x52); }
++
+ 
+     // Chassis messages
+     inline const command_t chassis_power_off(void)
+diff --git a/src/usr/hwpf/hwp/nest_chiplets/nest_chiplets.C b/src/usr/hwpf/hwp/nest_chiplets/nest_chiplets.C
+index d122ae4de..73f1a0a3f 100644
+--- a/src/usr/hwpf/hwp/nest_chiplets/nest_chiplets.C
++++ b/src/usr/hwpf/hwp/nest_chiplets/nest_chiplets.C
+@@ -58,6 +58,8 @@
+ //  MVPD
+ #include <devicefw/userif.H>
+ #include <vpd/mvpdenums.H>
++#include <ipmi/ipmiif.H>
++
+ 
+ #include <config.h>
+ 
+@@ -1743,7 +1745,40 @@ errlHndl_t computeProcPcieConfigAttrs(
+             effectiveLaneSwap[iop] = laneSwap;
+         }
+ #endif
+-
++   uint8_t riser_id = 0 ;
++	errlHndl_t l_err = NULL;
++	
++	
++	size_t len = 4;
++	
++	//create request data buffer
++	uint8_t* data = new uint8_t[len];
++	
++	IPMI::completion_code cc = IPMI::CC_UNKBAD;
++	
++	data[0] = 0x3;  
++	data[1] = 0x70;  
++	data[2] = 0x1;  
++	data[3] = 0x1;  
++	l_err = IPMI::sendrecv(IPMI::master_readwrite(), cc, len, data);
++	
++	if( l_err == NULL )
++	{
++		if( cc == IPMI::CC_OK )
++		{
++		riser_id = data[0];
++		}
++		
++		delete[] data;
++	}
++
++
++       if((i_pProcChipTarget->getAttr<TARGETING::ATTR_HUID>()) == 0x50001 && (riser_id == 0xE) ){	   	
++		effectiveLaneMask[1][0] = 0xFFFF;
++	    effectiveLaneMask[1][1] = 0x0000;      
++          effectiveLaneSwap[1] = 0x0;
++       	}
++	   
+         i_pProcChipTarget->setAttr<
+             TARGETING::ATTR_PROC_PCIE_LANE_MASK>(effectiveLaneMask);
+ 
+@@ -1797,6 +1832,11 @@ errlHndl_t computeProcPcieConfigAttrs(
+             iopConfig = laneConfigItr->laneConfig;
+             phbActiveMask = laneConfigItr->phbActive;
+ 
++			if((i_pProcChipTarget->getAttr<TARGETING::ATTR_HUID>()) == 0x50001 && (riser_id == 0xE) ){
++	   	       iopConfig = 0 ;
++	           phbActiveMask = PHB0_MASK|PHB1_MASK;
++       	      }
++
+             // Disable applicable PHBs
+             phbActiveMask &= (~disabledPhbs);
+             (void)_deconfigPhbsBasedOnPciState(
+-- 
+2.16.2.windows.1
+
diff --git a/openpower/patches/p8dtu-patches/hostboot-p8/0008-Fill-board-mfg-time-and-date-in-FRU3.-It-is-read-fro.patch b/openpower/patches/p8dtu-patches/hostboot-p8/0008-Fill-board-mfg-time-and-date-in-FRU3.-It-is-read-fro.patch
new file mode 100644
index 0000000..41c24b3
--- /dev/null
+++ b/openpower/patches/p8dtu-patches/hostboot-p8/0008-Fill-board-mfg-time-and-date-in-FRU3.-It-is-read-fro.patch
@@ -0,0 +1,99 @@
+From ed60d5736559c4e100e5db20de942a584b58b6f0 Mon Sep 17 00:00:00 2001
+From: Jim Yuan <jim.yuan@supermicro.com>
+Date: Wed, 25 May 2016 15:24:40 -0700
+Subject: [PATCH 08/14] Fill board mfg time and date in FRU3. It is read from
+ PVPD:VNDR:IN.
+
+Signed-off-by: Jim Yuan <jim.yuan@supermicro.com>
+---
+ src/usr/ipmiext/ipmifruinv.C | 65 +++++++++++++++++++++++++++++++++-----------
+ 1 file changed, 49 insertions(+), 16 deletions(-)
+
+diff --git a/src/usr/ipmiext/ipmifruinv.C b/src/usr/ipmiext/ipmifruinv.C
+index 23aaf9b97..11fbd7677 100644
+--- a/src/usr/ipmiext/ipmifruinv.C
++++ b/src/usr/ipmiext/ipmifruinv.C
+@@ -1279,31 +1279,64 @@ errlHndl_t backplaneIpmiFruInv::buildChassisInfoArea(
+     return l_errl;
+ }
+ 
++// Quick hexdigit to binary converter.
++// Hopefull someday to replaced by strtoul
++uint8_t aschex2bin(char c)
++{
++    if(c >= 'a' && c <= 'f')
++    {
++        c = c + 10 - 'a';
++    }
++    else if (c >= 'A' && c <= 'F')
++    {
++        c = c + 10 - 'A';
++    }
++    else if (c >= '0' && c <= '9')
++    {
++       c -= '0';
++    }
++    else return 0;// else it's not a hex digit, return 0
++
++    return c;
++}
++
++
+ errlHndl_t backplaneIpmiFruInv::buildBoardInfoArea(
+                                               std::vector<uint8_t> &io_data)
+ {
+     errlHndl_t l_errl = NULL;
++	std::vector<uint8_t> oem_data; //jim052316
++	uint8_t i, data1, data2, data3;//jim052316
+ 
+     do {
+         //Set formatting data that goes at the beginning of the record
+         preFormatProcessing(io_data, true);
+ 
+-        // Set Mfg Build date
+-        // Grab VPD data into seperate data vector
+-        std::vector<uint8_t> mfgDateData;
+-        l_errl = addVpdData(mfgDateData, PVPD::OPFR, PVPD::MB, false, false);
+-        if (l_errl)
+-        {
+-            // The MB keyword was optional on older cards so just ignore
+-            //  any errors
+-            delete l_errl;
+-            l_errl = NULL;
+-        }
+-        else
+-        {
+-            // Pass that to the function that sets the Build date
+-            setMfgData(io_data, mfgDateData);
+-        }
++        l_errl = addVpdData(oem_data, PVPD::VNDR, PVPD::IN, true);
++        if (l_errl) { break; }
++
++		for (i=0; i < oem_data.size(); i++)
++		TRACFCOMP(g_trac_ipmi,"Jimdebug board VNDR:IN data is 0x%x", oem_data[i]);
++
++		data1 = (aschex2bin(oem_data[5]) << 4) | aschex2bin(oem_data[6]);//jim052416
++		data2 = (aschex2bin(oem_data[3]) << 4) | aschex2bin(oem_data[4]);
++		data3 = (aschex2bin(oem_data[1]) << 4) | aschex2bin(oem_data[2]);  
++
++		
++		TRACFCOMP(g_trac_ipmi,"Jimdebug push data1 is 0x%x", data1);
++		TRACFCOMP(g_trac_ipmi,"Jimdebug push data2 is 0x%x", data2);
++		TRACFCOMP(g_trac_ipmi,"Jimdebug push data3 is 0x%x", data3);
++
++		
++        io_data.push_back(data1); 
++        io_data.push_back(data2);
++        io_data.push_back(data3);
++
++
++        //Set MFG Date/Time - Blank
++        //io_data.push_back(0x5E); //jim52016
++        //io_data.push_back(0x9A);
++        //io_data.push_back(0xA3);
+ 
+         //Set Vendor Name - ascii formatted data
+         l_errl = addVpdData(io_data, PVPD::OPFR, PVPD::VN, true);
+-- 
+2.16.2.windows.1
+
diff --git a/openpower/patches/p8dtu-patches/hostboot-p8/0009-Hardcode-DIMM-pairing-for-RAS.-Fix-the-issue-that-MB.patch b/openpower/patches/p8dtu-patches/hostboot-p8/0009-Hardcode-DIMM-pairing-for-RAS.-Fix-the-issue-that-MB.patch
new file mode 100644
index 0000000..c6f4a1c
--- /dev/null
+++ b/openpower/patches/p8dtu-patches/hostboot-p8/0009-Hardcode-DIMM-pairing-for-RAS.-Fix-the-issue-that-MB.patch
@@ -0,0 +1,45 @@
+From 9d8e17897f398f1f750c87c4dcf58fe9e64ffed9 Mon Sep 17 00:00:00 2001
+From: Jim Yuan <jim.yuan@supermicro.com>
+Date: Thu, 7 Jul 2016 15:53:31 -0700
+Subject: [PATCH 09/14] Hardcode DIMM pairing for RAS. Fix the issue that MBA0
+ Memory UE on Cenatur Chip4 brought all dimms under Proc2 offline.
+
+Signed-off-by: Jim Yuan <jim.yuan@supermicro.com>
+---
+ src/usr/hwas/common/deconfigGard.C | 19 ++++++++++++++++++-
+ 1 file changed, 18 insertions(+), 1 deletion(-)
+
+diff --git a/src/usr/hwas/common/deconfigGard.C b/src/usr/hwas/common/deconfigGard.C
+index fa266c881..bd4e4fe4c 100644
+--- a/src/usr/hwas/common/deconfigGard.C
++++ b/src/usr/hwas/common/deconfigGard.C
+@@ -980,8 +980,25 @@ Target * findPartnerForMcs(const Target *i_startMcs)
+     // Declare partner MCS CHIP_UNIT
+     ATTR_CHIP_UNIT_type partnerMcsUnit = 0;
+ 
++	// Add temp code to handle different MCS pairing
++	if (startMcsUnit == 0)
++	{
++		partnerMcsUnit = 4;
++	}
++	else if (startMcsUnit == 1)
++	{
++		partnerMcsUnit = 5;
++	}
++	else if (startMcsUnit == 4)
++	{
++		partnerMcsUnit = 0;
++	}
++	else if (startMcsUnit == 5)
++	{
++		partnerMcsUnit = 1;
++	}
+     // If CHIP_UNIT is even, its partner will be the next MCS
+-    if (!(startMcsUnit % 2))
++    else if (!(startMcsUnit % 2))
+     {
+         partnerMcsUnit = startMcsUnit + 1;
+     }
+-- 
+2.16.2.windows.1
+
diff --git a/openpower/patches/p8dtu-patches/hostboot-p8/0010-Adjust-APSS-gain-and-offset-from-PWS-FRU-information.patch b/openpower/patches/p8dtu-patches/hostboot-p8/0010-Adjust-APSS-gain-and-offset-from-PWS-FRU-information.patch
new file mode 100644
index 0000000..172d6ac
--- /dev/null
+++ b/openpower/patches/p8dtu-patches/hostboot-p8/0010-Adjust-APSS-gain-and-offset-from-PWS-FRU-information.patch
@@ -0,0 +1,308 @@
+From bdd6ce1bbfe0ee77feefe84662e961fb253c6195 Mon Sep 17 00:00:00 2001
+From: Jim Yuan <jim.yuan@supermicro.com>
+Date: Fri, 22 Jul 2016 17:50:57 -0700
+Subject: [PATCH 10/14] Adjust APSS gain and offset from PWS FRU information.
+
+Signed-off-by: Jim Yuan <jim.yuan@supermicro.com>
+---
+ src/include/usr/ipmi/ipmiif.H                      |   4 +-
+ src/usr/htmgt/htmgt_cfgdata.C                      |   2 +
+ src/usr/hwpf/hwp/start_payload/start_payload.C     | 212 +++++++++++++++++++++
+ .../common/xmltohb/attribute_types_hb.xml          |   2 +
+ 4 files changed, 218 insertions(+), 2 deletions(-)
+
+diff --git a/src/include/usr/ipmi/ipmiif.H b/src/include/usr/ipmi/ipmiif.H
+index 9dfd8ee63..5416ddca0 100644
+--- a/src/include/usr/ipmi/ipmiif.H
++++ b/src/include/usr/ipmi/ipmiif.H
+@@ -251,8 +251,8 @@ namespace IPMI
+     inline const command_t set_sel_time(void)
+     { return std::make_pair(NETFUN_STORAGE, 0x49); }
+ 
+-    inline const command_t read_fru_data(void)
+-    { return std::make_pair(NETFUN_STORAGE, 0x11); }
++	inline const command_t read_fru_data(void)
++	{ return std::make_pair(NETFUN_STORAGE, 0x11); }	
+ 
+     inline const command_t write_fru_data(void)
+     { return std::make_pair(NETFUN_STORAGE, 0x12); }
+diff --git a/src/usr/htmgt/htmgt_cfgdata.C b/src/usr/htmgt/htmgt_cfgdata.C
+index 19e7b21bf..7c42abdb6 100644
+--- a/src/usr/htmgt/htmgt_cfgdata.C
++++ b/src/usr/htmgt/htmgt_cfgdata.C
+@@ -1025,6 +1025,8 @@ void getApssMessageData(uint8_t* o_data,
+     ATTR_ADC_CHANNEL_OFFSETS_type offset;
+     sys->tryGetAttr<ATTR_ADC_CHANNEL_OFFSETS>(offset);
+ 
++    TMGT_INF("getApssMessageData: gain is %d, offset is %d", gain[15], offset[15]); //jim
++
+     CPPASSERT(sizeof(function) == sizeof(ground));
+     CPPASSERT(sizeof(function) == sizeof(gain));
+     CPPASSERT(sizeof(function) == sizeof(offset));
+diff --git a/src/usr/hwpf/hwp/start_payload/start_payload.C b/src/usr/hwpf/hwp/start_payload/start_payload.C
+index 5d7865a12..ad155f19e 100644
+--- a/src/usr/hwpf/hwp/start_payload/start_payload.C
++++ b/src/usr/hwpf/hwp/start_payload/start_payload.C
+@@ -88,6 +88,7 @@
+ #include    <algorithm>
+ #include    <config.h>
+ #include    <ipmi/ipmiwatchdog.H>
++#include    <ipmi/ipmiif.H> //jim
+ #include    <vpd/vpd_if.H>
+ 
+ #include    <hwpf/hwpf_reasoncodes.H>
+@@ -95,6 +96,7 @@
+ //  Uncomment these files as they become available:
+ // #include    "host_start_payload/host_start_payload.H"
+ 
++
+ namespace   START_PAYLOAD
+ {
+ 
+@@ -277,6 +279,214 @@ errlHndl_t setMaxPstate ( void )
+ }
+ #endif
+ 
++//jim-start
++enum
++{
++PWS_1600 = 0,
++PWS_1000 = 1,
++PWS_1200 = 2,
++PWS_UNKNOWN = 0xFE,
++};
++
++uint8_t getPSUFRUFromIPMICommands(void)
++{
++	errlHndl_t l_err = NULL;
++	uint8_t* frudata = new uint8_t[120];
++	size_t len = 4;
++	uint8_t fru_header_version = 0;
++	uint8_t j = 0, loop_break = 0, read_offset = 0;
++	
++	//create request data buffer
++	uint8_t* data = new uint8_t[len];
++	
++	IPMI::completion_code cc = IPMI::CC_UNKBAD;
++	
++	data[0] = 60; //try to read from PWS1. 60-PWS1, 61-PWS2
++	data[1] = 0x0;  
++	data[2] = 0x0;  
++	data[3] = 8;  
++	l_err = IPMI::sendrecv(IPMI::read_fru_data(), cc, len, data);
++	
++	for (uint8_t i = 0; i <= 8; i++ )
++	fru_header_version = data[1] & 0xF; //normal should be 0x01.
++	TRACFCOMP( ISTEPS_TRACE::g_trac_isteps_trace, "fru header version is %x", fru_header_version);
++	delete[] data;	
++	
++	if((l_err == NULL) && (cc == IPMI::CC_OK) && (fru_header_version == 1))
++	{		
++		TRACFCOMP( ISTEPS_TRACE::g_trac_isteps_trace, "could get FRU from PWS1");
++
++		while ((l_err == NULL) && (loop_break == 0) && (read_offset < 100))
++		{			
++		//create request data buffer
++		len = 4; //must set len every time
++		uint8_t* data = new uint8_t[len];
++	
++		IPMI::completion_code cc = IPMI::CC_UNKBAD;
++	
++		data[0] = 60;  //read from PWS1
++		data[1] = read_offset;  
++		data[2] = 0x0;  
++		data[3] = 8;  
++		l_err = IPMI::sendrecv(IPMI::read_fru_data(), cc, len, data);
++		
++		if (cc != IPMI::CC_OK) loop_break = 1;
++		
++		read_offset += 8;
++		for (uint8_t i = 1; i <= 8; i++ )
++			{
++			frudata[j] = data[i];
++			j++;
++			}
++		delete[] data;	
++		}
++		
++
++	}
++	else	
++	{
++		TRACFCOMP( ISTEPS_TRACE::g_trac_isteps_trace, "could get FRU from PWS2");
++
++		while ((l_err == NULL) && (loop_break == 0) && (read_offset < 100))
++		{			
++		//create request data buffer
++		len = 4;//must set len every time
++		uint8_t* data = new uint8_t[len];
++	
++		IPMI::completion_code cc = IPMI::CC_UNKBAD;
++	
++		data[0] = 61;  //read from PWS2
++		data[1] = read_offset;  
++		data[2] = 0x0;  
++		data[3] = 8;  
++		l_err = IPMI::sendrecv(IPMI::read_fru_data(), cc, len, data);
++		
++		if (cc != IPMI::CC_OK) loop_break = 1;
++		
++		read_offset += 8;
++		for (uint8_t i = 1; i <= 8; i++ )
++			{
++			frudata[j] = data[i];
++			j++;
++			}	
++		delete[] data;
++		}
++		
++	}
++
++	uint8_t product_info_offset, manufacture_name_offset, manufacture_name_length, product_name_offset, product_name_length; 
++	uint8_t product_partnumber_offset, product_partnumber_length;
++	uint8_t fru_offset, powerSupplyFru = PWS_UNKNOWN;
++	uint8_t pws1600[] = {'P','W','S','-','1','K','6','2','A','-','1','R'};
++	uint8_t pws1000[] = {'P','W','S','-','1','K','0','2','A','-','1','R'};
++	uint8_t pws1200[] = {'P','W','S','-','1','K','2','2','A','-','1','R'};
++
++	//code to calculate product part number size and offset. should use structure. refer to FRU spec.		
++	product_info_offset = frudata[4] * 8;
++	manufacture_name_offset = product_info_offset + 3;
++	manufacture_name_length = frudata[manufacture_name_offset] & 0x3F;
++	product_name_offset = manufacture_name_offset + manufacture_name_length + 1;
++	product_name_length = frudata[product_name_offset] & 0x3F;
++	product_partnumber_offset = product_name_offset + product_name_length + 1;
++	product_partnumber_length = frudata[product_partnumber_offset] & 0x3F;
++	TRACFCOMP( ISTEPS_TRACE::g_trac_isteps_trace, "product_partnumber_length is %x", product_partnumber_length);
++	fru_offset = product_partnumber_offset + 1;
++	
++	if (product_partnumber_length == 12)
++	{
++		for (uint8_t i = 0; pws1600[i] == frudata[fru_offset + i] ; i ++)
++			if (i == 11)
++			powerSupplyFru = PWS_1600;
++		
++		for (uint8_t i = 0; pws1000[i] == frudata[fru_offset + i] ; i ++)
++			if (i == 11)
++			powerSupplyFru = PWS_1000;
++		
++		for (uint8_t i = 0; pws1200[i] == frudata[fru_offset + i] ; i ++)
++			if (i == 11)
++			powerSupplyFru = PWS_1200;
++	}
++	else	
++		powerSupplyFru = PWS_UNKNOWN;
++
++	TRACFCOMP( ISTEPS_TRACE::g_trac_isteps_trace, "powerSupplyFru is %x", powerSupplyFru);
++	
++	return powerSupplyFru;
++
++}
++//find apss channel number from XML.
++enum
++{
++V12_SENSE = 0,
++PROC0_POWER = 1,
++PROC1_POWER = 2,
++PCIE_PROC0_POWER = 5,
++PCIE_PROC1_POWER = 6,	
++TOTAL_SYSTEM_POWER = 15,	
++};	
++
++void setAPSSGainOffsetFromPWSInfo(void)
++{
++	TRACFCOMP( ISTEPS_TRACE::g_trac_isteps_trace, "before load OCC");
++
++	//Get Gain/Offset ATTR
++	TARGETING::Target* sys = NULL;
++	targetService().getTopLevelTarget(sys);
++
++	ATTR_ADC_CHANNEL_GAINS_type gain;
++	sys->tryGetAttr<ATTR_ADC_CHANNEL_GAINS>(gain);
++
++	ATTR_ADC_CHANNEL_OFFSETS_type offset;
++	sys->tryGetAttr<ATTR_ADC_CHANNEL_OFFSETS>(offset);
++
++	TRACFCOMP( ISTEPS_TRACE::g_trac_isteps_trace, "gain is %d, offset is %d", gain[15], offset[15]);
++
++	//Note that the function/ APSS channel ids can be indirect. I've hardcoded here, you will need to look at the XML to find the channel/function number that matches
++	//const uint8_t SYS_CHANNEL = 15; //APSS Channel 15 is sys power, ie the gain/offset we need to tweak
++
++	//Get power supply data from BMC
++	uint8_t powerSupplyFru = getPSUFRUFromIPMICommands();
++	
++	switch(powerSupplyFru)
++	{
++	case PWS_1600: //PWS-1K62A-1R (1600W):
++	gain[TOTAL_SYSTEM_POWER] = 67800;
++	offset[TOTAL_SYSTEM_POWER] = 0;
++	break;
++
++	case PWS_1000: //PWS-1K02A-1R (1000W):
++	gain[TOTAL_SYSTEM_POWER] = 41500;
++	offset[TOTAL_SYSTEM_POWER] = 0;
++	break;
++
++	case PWS_1200: //PWS-1K22A-1R (1200W):
++	gain[TOTAL_SYSTEM_POWER] = 50000; 
++	offset[TOTAL_SYSTEM_POWER] = 0;
++	break;
++
++	default:
++	//Do nothing, leave defaults
++	//Gen error for user attention?
++	break;
++	}
++
++	//Now write the attributes back so they get picked up by OCC code
++	if (!sys->trySetAttr<ATTR_ADC_CHANNEL_GAINS>(gain))
++	{
++	//unlikely, crash
++	//Emit failing trace/console data
++	TRACFCOMP( ISTEPS_TRACE::g_trac_isteps_trace, "set gain failed");
++	assert(0);
++	}
++
++	if (!sys->trySetAttr<ATTR_ADC_CHANNEL_OFFSETS>(offset))
++	{
++	//unlikely, crash
++	//Emit failing trace/console data
++	TRACFCOMP( ISTEPS_TRACE::g_trac_isteps_trace, "set offset failed");
++	assert(0);
++	}
++}
+ //
+ //  Wrapper function to call host_runtime_setup
+ //
+@@ -318,6 +528,8 @@ void*    call_host_runtime_setup( void    *io_pArgs )
+             break;
+         }
+ 
++	setAPSSGainOffsetFromPWSInfo(); //jim add code before activate OCC. START_OCC_DURING_BOOT is defined in config.
++
+         bool l_activateOCC = is_avp_load();
+ 
+ #ifdef CONFIG_START_OCC_DURING_BOOT
+diff --git a/src/usr/targeting/common/xmltohb/attribute_types_hb.xml b/src/usr/targeting/common/xmltohb/attribute_types_hb.xml
+index c4eb6603d..64a0c9bae 100644
+--- a/src/usr/targeting/common/xmltohb/attribute_types_hb.xml
++++ b/src/usr/targeting/common/xmltohb/attribute_types_hb.xml
+@@ -747,6 +747,7 @@
+     </simpleType>
+     <persistency>non-volatile</persistency>
+     <readable/>
++    <writeable/>
+ </attribute>
+ 
+ <attribute>
+@@ -758,6 +759,7 @@
+     </simpleType>
+     <persistency>non-volatile</persistency>
+     <readable/>
++    <writeable/>
+ </attribute>
+ 
+ <attribute>
+-- 
+2.16.2.windows.1
+
diff --git a/openpower/patches/p8dtu-patches/hostboot-p8/0012-Set-OPAL_MODEL-to-p8dtu1u-or-p8dtu2u-for-1U-and-2U-s.patch b/openpower/patches/p8dtu-patches/hostboot-p8/0012-Set-OPAL_MODEL-to-p8dtu1u-or-p8dtu2u-for-1U-and-2U-s.patch
new file mode 100644
index 0000000..bc4f492
--- /dev/null
+++ b/openpower/patches/p8dtu-patches/hostboot-p8/0012-Set-OPAL_MODEL-to-p8dtu1u-or-p8dtu2u-for-1U-and-2U-s.patch
@@ -0,0 +1,118 @@
+From 1e6bb450cf94fc3ade70f82703e6c57a30bbebaa Mon Sep 17 00:00:00 2001
+From: Jim Yuan <jim.yuan@supermicro.com>
+Date: Wed, 10 Aug 2016 10:41:32 -0700
+Subject: [PATCH 12/14] Set OPAL_MODEL to p8dtu1u or p8dtu2u for 1U and 2U
+ system.
+
+Signed-off-by: Jim Yuan <jim.yuan@supermicro.com>
+---
+ src/usr/hwpf/hwp/start_payload/start_payload.C     | 66 +++++++++++++++++++++-
+ .../common/xmltohb/attribute_types_hb.xml          |  1 +
+ 2 files changed, 66 insertions(+), 1 deletion(-)
+
+diff --git a/src/usr/hwpf/hwp/start_payload/start_payload.C b/src/usr/hwpf/hwp/start_payload/start_payload.C
+index ad155f19e..80e62a0b6 100644
+--- a/src/usr/hwpf/hwp/start_payload/start_payload.C
++++ b/src/usr/hwpf/hwp/start_payload/start_payload.C
+@@ -89,6 +89,8 @@
+ #include    <config.h>
+ #include    <ipmi/ipmiwatchdog.H>
+ #include    <ipmi/ipmiif.H> //jim
++#include	<string.h> //jim
++
+ #include    <vpd/vpd_if.H>
+ 
+ #include    <hwpf/hwpf_reasoncodes.H>
+@@ -487,6 +489,67 @@ void setAPSSGainOffsetFromPWSInfo(void)
+ 	assert(0);
+ 	}
+ }
++
++
++void setOpalMode (void)
++{
++
++ uint8_t riser_id = 0 ;
++ errlHndl_t l_err = NULL; 
++ size_t len = 4;
++ 
++ //create request data buffer
++ uint8_t* data = new uint8_t[len];
++ 
++ IPMI::completion_code cc = IPMI::CC_UNKBAD;
++ 
++ data[0] = 0x3;  
++ data[1] = 0x70;  
++ data[2] = 0x1;  
++ data[3] = 0x2;  //offset 0x2 for UIO info
++ l_err = IPMI::sendrecv(IPMI::master_readwrite(), cc, len, data);
++ 
++ if( l_err == NULL )
++ {
++	 if( cc == IPMI::CC_OK )
++	 {
++	 riser_id = data[0];
++	 }
++	 
++	 delete[] data;
++ }
++
++ATTR_OPAL_MODEL_type l_model = {0};
++
++TARGETING::Target* sys = NULL;
++targetService().getTopLevelTarget(sys);
++
++sys->tryGetAttr<TARGETING::ATTR_OPAL_MODEL>(l_model);
++TRACFCOMP( ISTEPS_TRACE::g_trac_isteps_trace, "OPAL Mode is %s", l_model);
++TRACFCOMP( ISTEPS_TRACE::g_trac_isteps_trace, "Riser ID is %d", riser_id);
++
++if (riser_id == 0x9)
++	{
++	TRACFCOMP( ISTEPS_TRACE::g_trac_isteps_trace, "1U OPAL Mode");
++	strcpy (l_model, "supermicro,p8dtu1u");
++
++	}
++else  //(riser_id == 0x19)
++	{
++	TRACFCOMP( ISTEPS_TRACE::g_trac_isteps_trace, "2U OPAL Mode");
++	strcpy (l_model, "supermicro,p8dtu2u");
++	}
++
++if (!sys->trySetAttr<TARGETING::ATTR_OPAL_MODEL>(l_model))
++	{
++	TRACFCOMP( ISTEPS_TRACE::g_trac_isteps_trace, "set OPAL Mode failed");
++	assert(0);
++	}
++
++sys->tryGetAttr<TARGETING::ATTR_OPAL_MODEL>(l_model);
++TRACFCOMP( ISTEPS_TRACE::g_trac_isteps_trace, "after set, OPAL Mode is %s", l_model);
++
++}
+ //
+ //  Wrapper function to call host_runtime_setup
+ //
+@@ -529,7 +592,8 @@ void*    call_host_runtime_setup( void    *io_pArgs )
+         }
+ 
+ 	setAPSSGainOffsetFromPWSInfo(); //jim add code before activate OCC. START_OCC_DURING_BOOT is defined in config.
+-
++	setOpalMode(); //jim
++	
+         bool l_activateOCC = is_avp_load();
+ 
+ #ifdef CONFIG_START_OCC_DURING_BOOT
+diff --git a/src/usr/targeting/common/xmltohb/attribute_types_hb.xml b/src/usr/targeting/common/xmltohb/attribute_types_hb.xml
+index 64a0c9bae..3cfdb9aa0 100644
+--- a/src/usr/targeting/common/xmltohb/attribute_types_hb.xml
++++ b/src/usr/targeting/common/xmltohb/attribute_types_hb.xml
+@@ -966,6 +966,7 @@
+     </simpleType>
+     <persistency>non-volatile</persistency>
+     <readable/>
++    <writeable/>
+ </attribute>
+ 
+ <attribute>
+-- 
+2.16.2.windows.1
+
diff --git a/openpower/patches/p8dtu-patches/hostboot-p8/0013-enable-TPM-required-sensor.patch b/openpower/patches/p8dtu-patches/hostboot-p8/0013-enable-TPM-required-sensor.patch
new file mode 100644
index 0000000..64709c0
--- /dev/null
+++ b/openpower/patches/p8dtu-patches/hostboot-p8/0013-enable-TPM-required-sensor.patch
@@ -0,0 +1,26 @@
+From db0d855457974d520d829259f56488e6c896be0e Mon Sep 17 00:00:00 2001
+From: Jim Yuan <jim.yuan@supermicro.com>
+Date: Thu, 27 Oct 2016 10:42:48 -0700
+Subject: [PATCH 13/14] enable TPM required sensor.
+
+Signed-off-by: Jim Yuan <jim.yuan@supermicro.com>
+---
+ src/usr/targeting/common/xmltohb/attribute_types_hb.xml | 2 +-
+ 1 file changed, 1 insertion(+), 1 deletion(-)
+
+diff --git a/src/usr/targeting/common/xmltohb/attribute_types_hb.xml b/src/usr/targeting/common/xmltohb/attribute_types_hb.xml
+index 3cfdb9aa0..84536fbb4 100644
+--- a/src/usr/targeting/common/xmltohb/attribute_types_hb.xml
++++ b/src/usr/targeting/common/xmltohb/attribute_types_hb.xml
+@@ -1200,7 +1200,7 @@
+     </enumerator>
+     <enumerator>
+         <name>TPM_REQUIRED</name>
+-        <value>0xFFFF</value>
++        <value>0xCC03</value>
+     </enumerator>
+ </enumerationType>
+ 
+-- 
+2.16.2.windows.1
+
diff --git a/openpower/patches/p8dtu-patches/hostboot-p8/0014-add-gain-and-offset-for-1300w-48V-DC-power-supply.patch b/openpower/patches/p8dtu-patches/hostboot-p8/0014-add-gain-and-offset-for-1300w-48V-DC-power-supply.patch
new file mode 100644
index 0000000..fe5d816
--- /dev/null
+++ b/openpower/patches/p8dtu-patches/hostboot-p8/0014-add-gain-and-offset-for-1300w-48V-DC-power-supply.patch
@@ -0,0 +1,56 @@
+From a3283c6922dee8ebfb3ea9ac7d22047e6e7bca00 Mon Sep 17 00:00:00 2001
+From: Jim Yuan <jim.yuan@supermicro.com>
+Date: Tue, 9 May 2017 14:34:56 -0700
+Subject: [PATCH 14/14] add gain and offset for 1300w 48V DC power supply.
+
+Signed-off-by: Jim Yuan <jim.yuan@supermicro.com>
+---
+ src/usr/hwpf/hwp/start_payload/start_payload.C | 11 +++++++++++
+ 1 file changed, 11 insertions(+)
+
+diff --git a/src/usr/hwpf/hwp/start_payload/start_payload.C b/src/usr/hwpf/hwp/start_payload/start_payload.C
+index 80e62a0b6..309122785 100644
+--- a/src/usr/hwpf/hwp/start_payload/start_payload.C
++++ b/src/usr/hwpf/hwp/start_payload/start_payload.C
+@@ -287,6 +287,7 @@ enum
+ PWS_1600 = 0,
+ PWS_1000 = 1,
+ PWS_1200 = 2,
++PWS_1300 = 3,
+ PWS_UNKNOWN = 0xFE,
+ };
+ 
+@@ -382,6 +383,7 @@ uint8_t getPSUFRUFromIPMICommands(void)
+ 	uint8_t pws1600[] = {'P','W','S','-','1','K','6','2','A','-','1','R'};
+ 	uint8_t pws1000[] = {'P','W','S','-','1','K','0','2','A','-','1','R'};
+ 	uint8_t pws1200[] = {'P','W','S','-','1','K','2','2','A','-','1','R'};
++	uint8_t pws1300[] = {'P','W','S','-','1','K','3','0','D','-','1','R'};
+ 
+ 	//code to calculate product part number size and offset. should use structure. refer to FRU spec.		
+ 	product_info_offset = frudata[4] * 8;
+@@ -407,6 +409,10 @@ uint8_t getPSUFRUFromIPMICommands(void)
+ 		for (uint8_t i = 0; pws1200[i] == frudata[fru_offset + i] ; i ++)
+ 			if (i == 11)
+ 			powerSupplyFru = PWS_1200;
++
++		for (uint8_t i = 0; pws1300[i] == frudata[fru_offset + i] ; i ++)
++			if (i == 11)
++			powerSupplyFru = PWS_1300;
+ 	}
+ 	else	
+ 		powerSupplyFru = PWS_UNKNOWN;
+@@ -466,6 +472,11 @@ void setAPSSGainOffsetFromPWSInfo(void)
+ 	offset[TOTAL_SYSTEM_POWER] = 0;
+ 	break;
+ 
++	case PWS_1300: //PWS-1K30D-1R (1300W 48V AC):
++	gain[TOTAL_SYSTEM_POWER] = 51900; 
++	offset[TOTAL_SYSTEM_POWER] = 0;
++	break;
++
+ 	default:
+ 	//Do nothing, leave defaults
+ 	//Gen error for user attention?
+-- 
+2.16.2.windows.1
+
diff --git a/openpower/scripts/release-notes b/openpower/scripts/release-notes
index 6cc966e..27c6bcb 100755
--- a/openpower/scripts/release-notes
+++ b/openpower/scripts/release-notes
@@ -142,6 +142,7 @@
     next if $p =~ /firenze/;
     next if $p =~ /^zz$/;
     next if $p =~ /mambo/;
+    next if $p =~ /opal/;
     next if $p =~ /redbud/;
     next if $p =~ /pseries/;
     next if $p =~ /witherspoon-redbud/;