diff options
| author | Patrick Williams <iawillia@us.ibm.com> | 2013-01-09 13:37:48 -0600 |
|---|---|---|
| committer | A. Patrick Williams III <iawillia@us.ibm.com> | 2013-01-10 11:30:02 -0600 |
| commit | e64a4688e267b52a4bdd28da7566a20a0f7af1f0 (patch) | |
| tree | 5a6b3de0130239200fee999b1907e7c17fc263b6 /src/kernel/exception.C | |
| parent | 7c09df4e22f2e05289e0efbb3a3b7d0ad564c9ed (diff) | |
| download | blackbird-hostboot-e64a4688e267b52a4bdd28da7566a20a0f7af1f0.tar.gz blackbird-hostboot-e64a4688e267b52a4bdd28da7566a20a0f7af1f0.zip | |
Remove support for P7.
Change-Id: I9186f42f85d6f6864b51b6935f5d4e5ca510ceb4
RTC: 39872
Reviewed-on: http://gfw160.austin.ibm.com:8080/gerrit/2901
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/kernel/exception.C')
| -rw-r--r-- | src/kernel/exception.C | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/src/kernel/exception.C b/src/kernel/exception.C index d1b365535..80e04fc34 100644 --- a/src/kernel/exception.C +++ b/src/kernel/exception.C @@ -5,7 +5,7 @@ /* */ /* IBM CONFIDENTIAL */ /* */ -/* COPYRIGHT International Business Machines Corp. 2010,2012 */ +/* COPYRIGHT International Business Machines Corp. 2010,2013 */ /* */ /* p1 */ /* */ @@ -207,7 +207,7 @@ void kernel_execute_fp_unavail() const uint64_t EXCEPTION_HSRR1_SOFTPATCH_MASK = 0x0000000000100000; const uint64_t EXCEPTION_HSRR1_SOFTPATCH_DENORM = 0x0000000000100000; -extern "C" void p7_softpatch_denorm_assist(context_fp_t*); +extern "C" void p8_softpatch_denorm_assist(context_fp_t*); extern "C" void kernel_execute_softpatch() @@ -225,10 +225,10 @@ void kernel_execute_softpatch() switch (CpuID::getCpuType()) { - case CORE_POWER8_MURANO: // @TODO: Verify same procedure. - case CORE_POWER8_VENICE: // @TODO: Verify same procedure. + case CORE_POWER8_MURANO: + case CORE_POWER8_VENICE: case CORE_UNKNOWN: - p7_softpatch_denorm_assist(t->fp_context); + p8_softpatch_denorm_assist(t->fp_context); break; } } |

