op-build update 3-24-2020

Modified hostboot_binaries make to include 3 additional P10_RING_FA files

Changes Included for package hcode, branch master-p10:
aa2e80e - hostboot - 2020-03-23 - Release tag & head commit information updated for hw032320a.opmst10
96b5c50 - hostboot - 2020-03-20 - Release tag & head commit information updated for hw032020a.opmst10
b8272a0 - Prem Shanker Jha - 2020-03-20 - STOP API: Removed some debug code to avoid compilation issue in PHYP.
5aa3341 - Rahul Batra - 2020-03-20 - PGPE: Fix PGPE Header
285f73f - Prem Shanker Jha - 2020-03-20 - STOP API: Removed some debug code to avoid compilation issue in PHYP.
d8ddbaf - Rahul Batra - 2020-03-20 - PGPE: Fix PGPE Header
e852bad - Prem Shanker Jha - 2020-03-20 - STOP API: P10 version of STOP API.
a020f37 - Rahul Batra - 2020-03-20 - PGPE: Basic Pstates for P10
1dd90a9 - hostboot - 2020-03-20 - Fix auto-mirror
69f4dce - Rahul Batra - 2020-03-20 - PGPE: Safe Mode Updates
977ae20 - hostboot - 2020-03-20 - Release tag & head commit information updated for hw031920a.opmst10
c2714f0 - Deb McLemore - 2020-03-20 - infra: Update p10 SEEPROM sizes
2a8f5c8 - Ben Gass - 2020-03-20 - Register header file update from e1027-ritb2
f739f50 - Prem Shanker Jha - 2020-03-20 - PM: Added a new section in XIP image of QME, XGPE, PGPE.
2eeef39 - Prem Shanker Jha - 2020-03-20 - QME Hcode: Fixed block copy of repair ring by QME.
cf63226 - Sumit Kumar - 2020-03-20 - Removed source for generation of Fastarray rings
b208117 - Sumit Kumar - 2020-03-19 - Removed binary file as per EKB commit 93288

Signed-off-by: hostboot <hostboot@us.ibm.com>
diff --git a/openpower/package/hcode-p10/Config.in b/openpower/package/hcode-p10/Config.in
index 7f12d0a..b8e1a78 100644
--- a/openpower/package/hcode-p10/Config.in
+++ b/openpower/package/hcode-p10/Config.in
@@ -31,7 +31,7 @@
 
 config BR2_HCODE_P10_VERSION
 	string
-	default "hw031620b.opmst10" if BR2_HCODE_P10_LATEST_VERSION
+	default "hw032320a.opmst10" if BR2_HCODE_P10_LATEST_VERSION
 	default BR2_HCODE_P10_CUSTOM_VERSION_VALUE \
 		if BR2_HCODE_P10_CUSTOM_VERSION
 
diff --git a/openpower/package/hostboot-binaries/hostboot_binaries.mk b/openpower/package/hostboot-binaries/hostboot_binaries.mk
index 5402076..bc9d927 100644
--- a/openpower/package/hostboot-binaries/hostboot_binaries.mk
+++ b/openpower/package/hostboot-binaries/hostboot_binaries.mk
@@ -66,6 +66,9 @@
 P10_RING_OVERLAYS_FILE=p10.hw.overlays.bin
 P10_RING_QME_FILE=p10.hw.qme.rings.bin
 P10_RING_SBE_FILE=p10.hw.sbe.rings.bin
+P10_RING_FA_EC_CL2_FILE=p10.hw.fa_ec_cl2_far.bin
+P10_RING_FA_EC_MMA_FILE=p10.hw.fa_ec_mma_far.bin
+P10_RING_FA_OVRD_FILE=p10.hw.fa_ring_ovrd.bin
 
 define HOSTBOOT_BINARIES_INSTALL_IMAGES_CMDS
      $(INSTALL) -D $(@D)/gpu_gpe1.bin  $(STAGING_DIR)/hostboot_binaries/gpu_gpe1.bin
@@ -75,6 +78,9 @@
      $(INSTALL) -D $(@D)/$(P10_RING_OVERLAYS_FILE)  $(STAGING_DIR)/hostboot_binaries/
      $(INSTALL) -D $(@D)/$(P10_RING_QME_FILE)  $(STAGING_DIR)/hostboot_binaries/
      $(INSTALL) -D $(@D)/$(P10_RING_SBE_FILE)  $(STAGING_DIR)/hostboot_binaries/
+     $(INSTALL) -D $(@D)/$(P10_RING_FA_EC_CL2_FILE)  $(STAGING_DIR)/hostboot_binaries/
+     $(INSTALL) -D $(@D)/$(P10_RING_FA_EC_MMA_FILE)  $(STAGING_DIR)/hostboot_binaries/
+     $(INSTALL) -D $(@D)/$(P10_RING_FA_OVRD_FILE)  $(STAGING_DIR)/hostboot_binaries/
 endef
 endif