diff options
| author | Sachin Gupta <sgupta2m@in.ibm.com> | 2018-09-20 23:08:25 -0500 |
|---|---|---|
| committer | Sachin Gupta <sgupta2m@in.ibm.com> | 2018-09-24 01:30:21 -0500 |
| commit | 0ee0a590013ec72b7eb5bc96e2c8d18d307cbca0 (patch) | |
| tree | 0e70ddf9dc1f786fc25491622e62305658f532ef /src/sbefw/core | |
| parent | c9b485103576156aba29c2d32e6fc9e1f0948304 (diff) | |
| download | talos-sbe-0ee0a590013ec72b7eb5bc96e2c8d18d307cbca0.tar.gz talos-sbe-0ee0a590013ec72b7eb5bc96e2c8d18d307cbca0.zip | |
Only call lpc init procedure on slave procs in mnfg mode
Change-Id: Ifb4ecc7e86721359fc4e3d513c8abf160da4fca8
Reviewed-on: http://rchgit01.rchland.ibm.com/gerrit1/66449
Tested-by: Jenkins Server <pfd-jenkins+hostboot@us.ibm.com>
Tested-by: FSP CI Jenkins <fsp-CI-jenkins+hostboot@us.ibm.com>
Reviewed-by: MURULIDHAR NATARAJU <murulidhar@in.ibm.com>
Reviewed-by: RAJA DAS <rajadas2@in.ibm.com>
Reviewed-by: Sachin Gupta <sgupta2m@in.ibm.com>
(cherry picked from commit c108818dacc005336883abd1bbe971607d84328d)
Reviewed-on: http://rchgit01.rchland.ibm.com/gerrit1/66503
Diffstat (limited to 'src/sbefw/core')
| -rw-r--r-- | src/sbefw/core/sberegaccess.H | 14 |
1 files changed, 13 insertions, 1 deletions
diff --git a/src/sbefw/core/sberegaccess.H b/src/sbefw/core/sberegaccess.H index b2d7e1d7..56f4775f 100644 --- a/src/sbefw/core/sberegaccess.H +++ b/src/sbefw/core/sberegaccess.H @@ -146,6 +146,17 @@ class SbeRegAccess } /** + * @brief Check if we are in mnfg mode + * + * @return true if in mnfg mode, false otherwise + * + */ + inline bool isMnfgMode() const + { + return iv_mnfgMode; + } + + /** * @brief Check if SBE should directly go to runtime state * * @return true if SBE should go directly to runtime state, @@ -296,7 +307,8 @@ class SbeRegAccess uint64_t iv_mbx3DontCare1 : 5; uint64_t iv_disableScomFiltering : 1; uint64_t iv_disableInvalidScomAddrCheck : 1; - uint64_t iv_mbx3DontCare2 : 19; + uint64_t iv_mnfgMode : 1; + uint64_t iv_mbx3DontCare2 : 18; uint64_t iv_mbx3Unused : 32; }; uint64_t iv_mbx3; |

