summaryrefslogtreecommitdiffstats
path: root/src/import
diff options
context:
space:
mode:
Diffstat (limited to 'src/import')
-rw-r--r--src/import/chips/p9/xip/p9_xip_image.C27
-rw-r--r--src/import/chips/p9/xip/p9_xip_image.h4
2 files changed, 20 insertions, 11 deletions
diff --git a/src/import/chips/p9/xip/p9_xip_image.C b/src/import/chips/p9/xip/p9_xip_image.C
index 50393442..277e2a57 100644
--- a/src/import/chips/p9/xip/p9_xip_image.C
+++ b/src/import/chips/p9/xip/p9_xip_image.C
@@ -44,9 +44,9 @@
#else
#include <stdint.h>
#include <endian.h>
- #ifndef __PPE__
- #include "p9_dd_container.h"
- #endif
+#endif
+#ifndef __PPE__
+ #include "p9_dd_container.h"
#endif
#include <stdlib.h>
#include <string.h>
@@ -2025,7 +2025,7 @@ p9_xip_image_size(void* io_image, uint32_t* o_size)
}
-#if defined(__PPE__) || defined(WIN32)
+#if defined(__PPE__)
int
p9_xip_get_section(const void* i_image,
const int i_sectionId,
@@ -2091,15 +2091,15 @@ p9_xip_get_section(const void* i_image,
{
switch (rc)
{
- case P9_DD_FAILURE_NOT_FOUND:
+ case DDCO_DDLEVEL_NOT_FOUND:
rc = P9_XIP_DDLEVEL_NOT_FOUND;
break;
- case P9_DD_FAILURE_DOES_NOT_EXIST:
+ case DDCO_DDCO_DOES_NOT_EXIST:
rc = P9_XIP_NULL_BUFFER;
break;
- case P9_DD_FAILURE_BROKEN:
+ case DDCO_FAILURE_MAGIC_NOT_FOUND:
rc = P9_XIP_NO_DDLEVEL_SUPPORT;
break;
@@ -3257,7 +3257,7 @@ p9_xip_map_toc(void* io_image,
}
-#if !defined(__PPE__) && !defined(WIN32)
+#if !defined(__PPE__)
//
// Inform caller if specified sectionId has DD support
//
@@ -3272,7 +3272,16 @@ int p9_xip_dd_section_support(const void* i_image,
if (!rc)
{
- o_bDdSupport = (bool)section.iv_ddSupport;
+ if (section.iv_ddSupport == 0 || section.iv_ddSupport == 1)
+ {
+ o_bDdSupport = (bool)section.iv_ddSupport;
+ }
+ else
+ {
+ // iv_ddSupport is uninitialized or corrupted
+ o_bDdSupport = false;
+ rc = P9_XIP_IMAGE_ERROR;
+ }
}
return rc;
diff --git a/src/import/chips/p9/xip/p9_xip_image.h b/src/import/chips/p9/xip/p9_xip_image.h
index d1a1e08f..aa04b729 100644
--- a/src/import/chips/p9/xip/p9_xip_image.h
+++ b/src/import/chips/p9/xip/p9_xip_image.h
@@ -699,7 +699,7 @@ p9_xip_image_size(void* i_image, uint32_t* o_size);
int
p9_xip_get_section(const void* i_image,
const int i_sectionId,
-#if defined(__PPE__) || defined(WIN32)
+#if defined(__PPE__)
P9XipSection* o_hostSection);
#else
P9XipSection* o_hostSection,
@@ -1380,7 +1380,7 @@ p9_xip_get_toc(void* i_image,
/// \retval 0 Success
///
/// \retval non-0 See \ref p9_xip_image_errors
-#if !defined(__PPE__) && !defined(WIN32)
+#if !defined(__PPE__)
int
p9_xip_dd_section_support(const void* i_image,
const int i_sectionId,
OpenPOWER on IntegriCloud