diff options
author | Adam Muhle <armuhle@us.ibm.com> | 2013-01-23 09:55:12 -0600 |
---|---|---|
committer | A. Patrick Williams III <iawillia@us.ibm.com> | 2013-01-24 11:58:18 -0600 |
commit | e663eb9fa7ee3f118530de3906b1894a012a92a3 (patch) | |
tree | 2d4d91a184a69cd39c8977a0be50b9f8f3472517 /src/usr/pnor | |
parent | 616ef03e240ec37cf161ad1e9c0e721de5fb3f5d (diff) | |
download | talos-hostboot-e663eb9fa7ee3f118530de3906b1894a012a92a3.tar.gz talos-hostboot-e663eb9fa7ee3f118530de3906b1894a012a92a3.zip |
Update fake-pnor to utilize 4MB of L3 Cache
Updating the fake-pnor to utilize 4MB of L3 Cache since the SLW
work has been moved to real memory. In the process I added the
Centaur VPD partition, and added more space to the HBI partition.
Since we have a little breathing room, I also devoted 16K to a
GUARD partition. There is still 100k unallocated to allow for
yet another emergency one-time fix the next time HBI partition
gets filled up.
Change-Id: If6d8783a34724971700f324d277c3fc7c1379d88
RTC: 44009
Reviewed-on: http://gfw160.austin.ibm.com:8080/gerrit/2999
Tested-by: Jenkins Server
Reviewed-by: A. Patrick Williams III <iawillia@us.ibm.com>
Diffstat (limited to 'src/usr/pnor')
-rw-r--r-- | src/usr/pnor/pnordd.C | 11 |
1 files changed, 5 insertions, 6 deletions
diff --git a/src/usr/pnor/pnordd.C b/src/usr/pnor/pnordd.C index b108fc0f3..30571dcb5 100644 --- a/src/usr/pnor/pnordd.C +++ b/src/usr/pnor/pnordd.C @@ -337,13 +337,12 @@ mutex_t PnorDD::cv_mutex = MUTEX_INITIALIZER; uint64_t PnorDD::iv_vpoMode = 0; // -// @note fake pnor is moved up and shrunk by 1/2 meg to make room for -// the SLW image, it must be at a 1 M boundary. -// See build_winkle_images for more info. +// @note fake pnor no longer needs to allow from for SLW +// image so it is now 4MB. // -#define FAKE_PNOR_START 4*MEGABYTE+512*KILOBYTE -#define FAKE_PNOR_END 8*MEGABYTE -#define FAKE_PNOR_SIZE 3*MEGABYTE+512*KILOBYTE +#define FAKE_PNOR_START (4*MEGABYTE) +#define FAKE_PNOR_END (8*MEGABYTE) +#define FAKE_PNOR_SIZE (FAKE_PNOR_END-FAKE_PNOR_START) /** * @brief Constructor |