Skip to content

Commit cedbd4f

Browse files
Martin Peschkedcrowell77
authored andcommitted
IOPPE image build flow
Defines IOPPE XIP image sections, creates build flow for IOPPE sub image, and makes the HW Image build flow pick up the latter. Change-Id: I4ff43a3fe556741c584cf929c86479034c4a516a Reviewed-on: http://ralgit01.raleigh.ibm.com/gerrit1/28320 Tested-by: Jenkins Server <pfd-jenkins+hostboot@us.ibm.com> Tested-by: PPE CI <ppe-ci+hostboot@us.ibm.com> Tested-by: Hostboot CI <hostboot-ci+hostboot@us.ibm.com> Reviewed-by: Richard J. Knight <rjknight@us.ibm.com> Reviewed-by: Claus M. Olsen <cmolsen@us.ibm.com> Reviewed-by: Martin Peschke <mpeschke@de.ibm.com> Reviewed-on: http://ralgit01.raleigh.ibm.com/gerrit1/35378 Reviewed-by: Hostboot Team <hostboot@us.ibm.com> Tested-by: FSP CI Jenkins <fsp-CI-jenkins+hostboot@us.ibm.com> Tested-by: Jenkins OP Build CI <op-jenkins+hostboot@us.ibm.com> Reviewed-by: Daniel M. Crowell <dcrowell@us.ibm.com>
1 parent ca9ec67 commit cedbd4f

File tree

1 file changed

+10
-4
lines changed

1 file changed

+10
-4
lines changed

src/import/chips/p9/xip/p9_xip_image.h

Lines changed: 10 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
/* */
66
/* OpenPOWER HostBoot Project */
77
/* */
8-
/* Contributors Listed Below - COPYRIGHT 2015,2016 */
8+
/* Contributors Listed Below - COPYRIGHT 2015,2017 */
99
/* [+] International Business Machines Corp. */
1010
/* */
1111
/* */
@@ -1901,11 +1901,17 @@ typedef enum
19011901

19021902
typedef enum
19031903
{
1904-
P9_XIP_SECTIONS_IOPPE = P9_XIP_SECTIONS_PLUS(0) // # sections
1904+
P9_XIP_SECTION_IOPPE_IOF = P9_XIP_SECTIONS_PLUS(0),
1905+
P9_XIP_SECTION_IOPPE_IOO_ABUS = P9_XIP_SECTIONS_PLUS(1),
1906+
P9_XIP_SECTION_IOPPE_IOO_NV = P9_XIP_SECTIONS_PLUS(2),
1907+
P9_XIP_SECTIONS_IOPPE = P9_XIP_SECTIONS_PLUS(3) // # sections
19051908
} p9_xip_section_ioppe_t;
19061909

1907-
#define P9_XIP_SECTION_NAMES_IOPPE(var) \
1908-
P9_XIP_SECTION_NAMES(var)
1910+
#define P9_XIP_SECTION_NAMES_IOPPE(var) \
1911+
P9_XIP_SECTION_NAMES(var, \
1912+
".iof", \
1913+
".ioo_abus", \
1914+
".ioo_nv")
19091915

19101916
/**************************************************************************/
19111917
/* FPPE Image */

0 commit comments

Comments
 (0)