diff options
author | CamVan Nguyen <ctnguyen@us.ibm.com> | 2012-06-19 00:51:48 -0500 |
---|---|---|
committer | A. Patrick Williams III <iawillia@us.ibm.com> | 2012-06-26 13:53:55 -0500 |
commit | 2ca475148bef81d13f6d4bdfda376691c3a0f9d1 (patch) | |
tree | 328c58898b03b480d1670a1ff7682e7473d9a3e2 /src/include/usr/hwpf/hwp/fapiHwpInitFileInclude.H | |
parent | 280e4323aaed2d4d58ea738f9bd004281b606067 (diff) | |
download | blackbird-hostboot-2ca475148bef81d13f6d4bdfda376691c3a0f9d1.tar.gz blackbird-hostboot-2ca475148bef81d13f6d4bdfda376691c3a0f9d1.zip |
SCOM Initfile: Ability to do bitwise OR and AND operations
Change-Id: Ie3836bc2e3ca580761c71ea810cd9c6c55da54b6
RTC: 43757
Reviewed-on: http://gfw160.austin.ibm.com:8080/gerrit/1220
Tested-by: Jenkins Server
Reviewed-by: Douglas R. Gilbert <dgilbert@us.ibm.com>
Reviewed-by: Andrew J. Geissler <andrewg@us.ibm.com>
Reviewed-by: A. Patrick Williams III <iawillia@us.ibm.com>
Diffstat (limited to 'src/include/usr/hwpf/hwp/fapiHwpInitFileInclude.H')
-rw-r--r-- | src/include/usr/hwpf/hwp/fapiHwpInitFileInclude.H | 52 |
1 files changed, 28 insertions, 24 deletions
diff --git a/src/include/usr/hwpf/hwp/fapiHwpInitFileInclude.H b/src/include/usr/hwpf/hwp/fapiHwpInitFileInclude.H index e726c59bb..182c1f505 100644 --- a/src/include/usr/hwpf/hwp/fapiHwpInitFileInclude.H +++ b/src/include/usr/hwpf/hwp/fapiHwpInitFileInclude.H @@ -1,25 +1,26 @@ -// IBM_PROLOG_BEGIN_TAG -// This is an automatically generated prolog. -// -// $Source: src/include/usr/hwpf/hwp/fapiHwpInitFileInclude.H $ -// -// IBM CONFIDENTIAL -// -// COPYRIGHT International Business Machines Corp. 2011 -// -// p1 -// -// Object Code Only (OCO) source materials -// Licensed Internal Code Source Materials -// IBM HostBoot Licensed Internal Code -// -// The source code for this program is not published or other- -// wise divested of its trade secrets, irrespective of what has -// been deposited with the U.S. Copyright Office. -// -// Origin: 30 -// -// IBM_PROLOG_END +/* IBM_PROLOG_BEGIN_TAG + * This is an automatically generated prolog. + * + * $Source: src/include/usr/hwpf/hwp/fapiHwpInitFileInclude.H $ + * + * IBM CONFIDENTIAL + * + * COPYRIGHT International Business Machines Corp. 2011-2012 + * + * p1 + * + * Object Code Only (OCO) source materials + * Licensed Internal Code Source Materials + * IBM HostBoot Licensed Internal Code + * + * The source code for this program is not published or other- + * wise divested of its trade secrets, irrespective of what has + * been deposited with the U.S. Copyright Office. + * + * Origin: 30 + * + * IBM_PROLOG_END_TAG + */ /** * @file fapiHwpInitFileInclude.H * @@ -35,7 +36,8 @@ * attributes * camvanng 05/07/2012 Support for associated * target attributes - * + * camvanng 06/15/2012 Ability to do bitwise OR and + * AND operations */ #ifndef FAPIHWPINITFILEINCLUDE_H_ @@ -65,7 +67,9 @@ enum IfRpnOp SHIFTRIGHT = 0x00000011, FALSE_OP = 0x00000012, TRUE_OP = 0x00000013, - LAST_OP = 0x00000014, + BITWISEAND = 0x00000014, + BITWISEOR = 0x00000015, + LAST_OP = 0x00000016, PUSH_MASK = 0x000000C0, OP_MASK = 0x000000FF }; |