diff options
author | Dean Sanner <dsanner@us.ibm.com> | 2012-06-25 10:25:17 -0500 |
---|---|---|
committer | A. Patrick Williams III <iawillia@us.ibm.com> | 2012-06-26 14:46:03 -0500 |
commit | 694eaf8e9650916433b8eb6b067725f4730501a5 (patch) | |
tree | d08ab3e0e48d3e112a9812d1e0c4e4ed9c5bebf9 /src/include/sys/mmio.h | |
parent | 2ca475148bef81d13f6d4bdfda376691c3a0f9d1 (diff) | |
download | talos-hostboot-694eaf8e9650916433b8eb6b067725f4730501a5.tar.gz talos-hostboot-694eaf8e9650916433b8eb6b067725f4730501a5.zip |
Switch to using PNOR in Simics
Switch to use manual PNOR images in simics
Provided method for VPO to override
Change-Id: I18195b645053f1ce90b4322ae2e09b6b08844331
Reviewed-on: http://gfw160.austin.ibm.com:8080/gerrit/1241
Reviewed-by: ADAM R. MUHLE <armuhle@us.ibm.com>
Reviewed-by: Thi N. Tran <thi@us.ibm.com>
Reviewed-by: A. Patrick Williams III <iawillia@us.ibm.com>
Reviewed-by: Daniel M. Crowell <dcrowell@us.ibm.com>
Tested-by: Jenkins Server
Diffstat (limited to 'src/include/sys/mmio.h')
-rw-r--r-- | src/include/sys/mmio.h | 67 |
1 files changed, 37 insertions, 30 deletions
diff --git a/src/include/sys/mmio.h b/src/include/sys/mmio.h index aca9286a5..6eacdcb49 100644 --- a/src/include/sys/mmio.h +++ b/src/include/sys/mmio.h @@ -1,25 +1,26 @@ -// IBM_PROLOG_BEGIN_TAG -// This is an automatically generated prolog. -// -// $Source: src/include/sys/mmio.h $ -// -// IBM CONFIDENTIAL -// -// COPYRIGHT International Business Machines Corp. 2010 - 2011 -// -// p1 -// -// Object Code Only (OCO) source materials -// Licensed Internal Code Source Materials -// IBM HostBoot Licensed Internal Code -// -// The source code for this program is not published or other- -// wise divested of its trade secrets, irrespective of what has -// been deposited with the U.S. Copyright Office. -// -// Origin: 30 -// -// IBM_PROLOG_END +/* IBM_PROLOG_BEGIN_TAG + * This is an automatically generated prolog. + * + * $Source: src/include/sys/mmio.h $ + * + * IBM CONFIDENTIAL + * + * COPYRIGHT International Business Machines Corp. 2010-2012 + * + * p1 + * + * Object Code Only (OCO) source materials + * Licensed Internal Code Source Materials + * IBM HostBoot Licensed Internal Code + * + * The source code for this program is not published or other- + * wise divested of its trade secrets, irrespective of what has + * been deposited with the U.S. Copyright Office. + * + * Origin: 30 + * + * IBM_PROLOG_END_TAG + */ #ifndef __SYS_MMIO_H #define __SYS_MMIO_H @@ -84,14 +85,20 @@ enum MMIO_Scratch_Register { /** Thread0 Scratch Register - Progress Code / Status. */ MMIO_SCRATCH_PROGRESS_CODE = 0x0, - /** Thread1 Scratch Register - IPL Step Command Register. */ - MMIO_SCRATCH_IPLSTEP_COMMAND = 0x8, - /** Thread2 Scratch Register - IPL Step Status Register. */ - MMIO_SCRATCH_IPLSTEP_STATUS = 0x10, - /** Thread3 Scratch Register - IPL Step Config Register. */ - MMIO_SCRATCH_IPLSTEP_CONFIG = 0x18, // TODO: This one is temporary until - // IPL by steps in configurable in - // PNOR. + /** Thread1 Scratch Register - PNOR mode control*/ + MMIO_SCRATCH_PNOR_MODE = 0x8, + /** Thread2 Scratch Register - Unused */ + MMIO_SCRATCH_RSVD_T2 = 0x10, + /** Thread3 Scratch Register - Unused */ + MMIO_SCRATCH_RSVD_T3 = 0x18, + /** Thread4 Scratch Register - Unused */ + MMIO_SCRATCH_RSVD_T4 = 0x20, + /** Thread5 Scratch Register - Unused */ + MMIO_SCRATCH_RSVD_T5 = 0x28, + /** Thread6 Scratch Register - Unused */ + MMIO_SCRATCH_RSVD_T6 = 0x30, + /** Thread7 Scratch Register - Unused */ + MMIO_SCRATCH_RSVD_T7 = 0x38, }; /** @fn mmio_scratch_read() |