diff options
| author | Mike Baiocchi <baiocchi@us.ibm.com> | 2013-09-20 14:47:15 -0500 |
|---|---|---|
| committer | A. Patrick Williams III <iawillia@us.ibm.com> | 2013-10-28 12:21:53 -0500 |
| commit | a094332bbe8807c8f24aeb79f34be063845cea10 (patch) | |
| tree | 7b05b516287bd27d971ee8404a980bfad311ac2b /src/include/usr/vmmconst.h | |
| parent | 7b8d4a482ca2d110f3bf67b7a8e1bed758318420 (diff) | |
| download | blackbird-hostboot-a094332bbe8807c8f24aeb79f34be063845cea10.tar.gz blackbird-hostboot-a094332bbe8807c8f24aeb79f34be063845cea10.zip | |
Initial Support for Updating SBE SEEPROM
This initial commit will be used to create the new SBE
directories and files. It also supports the usr functions
to find and copy SBE PNOR images. NOTE: It will not enable
Updating SBE SEEPROMs in the IPL.
Change-Id: I3f545a134493c7595ce50fd885478bbe606de472
RTC: 47032
Reviewed-on: http://gfw160.austin.ibm.com:8080/gerrit/6311
Tested-by: Jenkins Server
Reviewed-by: ADAM R. MUHLE <armuhle@us.ibm.com>
Reviewed-by: Daniel M. Crowell <dcrowell@us.ibm.com>
Reviewed-by: A. Patrick Williams III <iawillia@us.ibm.com>
Diffstat (limited to 'src/include/usr/vmmconst.h')
| -rw-r--r-- | src/include/usr/vmmconst.h | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/src/include/usr/vmmconst.h b/src/include/usr/vmmconst.h index fbb787ea1..d1d0d38a8 100644 --- a/src/include/usr/vmmconst.h +++ b/src/include/usr/vmmconst.h @@ -80,6 +80,11 @@ /** PNOR Resource Provider is at 2GB */ #define VMM_VADDR_PNOR_RP (2 * GIGABYTE) +/** SBE Update process is at 3GB, uses 256KB */ +#define VMM_VADDR_SBE_UPDATE (3 * GIGABYTE) +#define VMM_SBE_UPDATE_SIZE (256*KILOBYTE) +#define VMM_VADDR_SBE_UPDATE_END (VMM_VADDR_SBE_UPDATE + VMM_SBE_UPDATE_SIZE) + /** Attribute Resource Provider */ // Note: Not simplified to make it easier to extract with the PNOR targeting // image generator script |

