diff options
Diffstat (limited to 'src/common/gpe_24x7_structs.h')
-rw-r--r-- | src/common/gpe_24x7_structs.h | 46 |
1 files changed, 46 insertions, 0 deletions
diff --git a/src/common/gpe_24x7_structs.h b/src/common/gpe_24x7_structs.h new file mode 100644 index 0000000..9b8716a --- /dev/null +++ b/src/common/gpe_24x7_structs.h @@ -0,0 +1,46 @@ +/* IBM_PROLOG_BEGIN_TAG */ +/* This is an automatically generated prolog. */ +/* */ +/* $Source: src/common/gpe_24x7_structs.h $ */ +/* */ +/* OpenPOWER OnChipController Project */ +/* */ +/* Contributors Listed Below - COPYRIGHT 2016,2017 */ +/* [+] International Business Machines Corp. */ +/* */ +/* */ +/* Licensed under the Apache License, Version 2.0 (the "License"); */ +/* you may not use this file except in compliance with the License. */ +/* You may obtain a copy of the License at */ +/* */ +/* http://www.apache.org/licenses/LICENSE-2.0 */ +/* */ +/* Unless required by applicable law or agreed to in writing, software */ +/* distributed under the License is distributed on an "AS IS" BASIS, */ +/* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or */ +/* implied. See the License for the specific language governing */ +/* permissions and limitations under the License. */ +/* */ +/* IBM_PROLOG_END_TAG */ + +/* This header file is used by both occ_405 and occ_gpe1. */ +/* Contains common structures and globals. */ + +#ifndef _GPE_24X7_STRUCTS_H +#define _GPE_24X7_STRUCTS_H + +#include <gpe_export.h> +#include "gpe_err.h" + + +// 24x7 collection arguments (GPE1) +typedef struct +{ + GpeErrorStruct error; + uint8_t numTicksPassed; +} gpe_24x7_args_t; + +// Number of "states" 24x7 collection code is broken up into +#define MAX_24x7_STATES 16 + +#endif // _GPE_24X7_STRUCTS_H |