diff options
| author | Christian Geddes <crgeddes@us.ibm.com> | 2019-02-12 17:12:47 -0600 |
|---|---|---|
| committer | Daniel M. Crowell <dcrowell@us.ibm.com> | 2019-02-15 19:31:33 -0600 |
| commit | e2b54b9aeeb83db822c4ea5f6b16e043e7ae0ace (patch) | |
| tree | 72796fd16e9954be2431d8440441cfb6eedbe206 /src/usr/isteps/istep10/makefile | |
| parent | 8b0719770221f73ec984ad47f7d98ff47df60dd8 (diff) | |
| download | talos-hostboot-e2b54b9aeeb83db822c4ea5f6b16e043e7ae0ace.tar.gz talos-hostboot-e2b54b9aeeb83db822c4ea5f6b16e043e7ae0ace.zip | |
Add call to exp_check_for_ready to istep 10.4
As per P9 Axone IPL flow doc, this HWP needs to be called on every
functional OCMB targets. This is called after the p9a_ocmb_enable
hwp is called in this istep.
Change-Id: I5bab233545769f396ba35b6d61c0733a9afd9087
RTC: 195553
Reviewed-on: http://rchgit01.rchland.ibm.com/gerrit1/71787
Tested-by: Jenkins Server <pfd-jenkins+hostboot@us.ibm.com>
Tested-by: Jenkins OP Build CI <op-jenkins+hostboot@us.ibm.com>
Tested-by: Jenkins OP HW <op-hw-jenkins+hostboot@us.ibm.com>
Tested-by: FSP CI Jenkins <fsp-CI-jenkins+hostboot@us.ibm.com>
Reviewed-by: Matt Derksen <mderkse1@us.ibm.com>
Reviewed-by: Corey V. Swenson <cswenson@us.ibm.com>
Reviewed-by: Roland Veloz <rveloz@us.ibm.com>
Reviewed-by: Daniel M. Crowell <dcrowell@us.ibm.com>
Diffstat (limited to 'src/usr/isteps/istep10/makefile')
| -rw-r--r-- | src/usr/isteps/istep10/makefile | 10 |
1 files changed, 8 insertions, 2 deletions
diff --git a/src/usr/isteps/istep10/makefile b/src/usr/isteps/istep10/makefile index b95a64925..aed17749f 100644 --- a/src/usr/isteps/istep10/makefile +++ b/src/usr/isteps/istep10/makefile @@ -31,7 +31,7 @@ PERV_HWP_PATH += ${ROOTPATH}/src/import/chips/p9/procedures/hwp/perv PROCEDURES_PATH += ${ROOTPATH}/src/import/chips/p9/procedures XIP_CUSTOMIZE_PATH = ${PROCEDURES_PATH}/hwp/customize HWP_ACC_PATH += ${PROCEDURES_PATH}/hwp/accessors - +OCMB_HWP_PATH += ${ROOTPATH}/src/import/chips/ocmb/explorer/procedures/hwp/memory/ EXTRAINCDIR += ${HWP_ACC_PATH} EXTRAINCDIR += ${XIP_CUSTOMIZE_PATH} @@ -49,6 +49,8 @@ EXTRAINCDIR += ${ROOTPATH}/src/import/chips/p9/xip EXTRAINCDIR += ${NEST_HWP_PATH} EXTRAINCDIR += ${INITFILES_HWP_PATH} EXTRAINCDIR += ${PERV_HWP_PATH} +EXTRAINCDIR += ${OCMB_HWP_PATH} +EXTRAINCDIR += ${ROOTPATH}/src/import/ OBJS += call_proc_build_smp.o @@ -86,7 +88,8 @@ VPATH += ${PERV_HWP_PATH} VPATH += ${PROCEDURES_PATH}/hwp/io VPATH += ${PROCEDURES_PATH}/hwp/pm VPATH += ${PROCEDURES_PATH}/hwp/lib -VPATH+= ${HWP_ACC_PATH} +VPATH += ${HWP_ACC_PATH} +VPATH += ${OCMB_HWP_PATH} #Required include before all the procedure.mk are included include ${ROOTPATH}/procedure.rules.mk @@ -120,6 +123,9 @@ include $(PERV_HWP_PATH)/p9_cen_ref_clk_enable.mk # p9a_ocmb_enable include ${PERV_HWP_PATH}/p9a_ocmb_enable.mk +# exp_check_for_ready +OBJS+=exp_check_for_ready.o + # p9_avsbus_lib.mk sets MODULE, reset here to istep10 MODULE = istep10 |

