1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
|
/* IBM_PROLOG_BEGIN_TAG */
/* This is an automatically generated prolog. */
/* */
/* $Source: src/occ_405/cmdh/cmdh_mnfg_intf.h $ */
/* */
/* OpenPOWER OnChipController Project */
/* */
/* Contributors Listed Below - COPYRIGHT 2011,2015 */
/* [+] 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 */
#ifndef CMDH_MNFG_INTF_H
#define CMDH_MNFG_INTF_H
#include "cmdh_fsp.h"
#include "sensor.h"
typedef enum {
MNFG_RUN_STOP_SLEW = 0x02,
MNFG_LIST_SENSORS = 0x05,
MNFG_GET_SENSOR = 0x06,
MNFG_OVERSUB_EMULATION = 0x07,
MNFG_RETRIEVE_EAR = 0x08,
MNFG_MEMORY_SLEW = 0x09,
MNFG_SET_FMINMAX = 0x0A,
MNFG_CPM_STRESS_CALI = 0x0D,
MNFG_UV_CONTROL = 0x0E,
MNFG_FCHECK_CONTROL = 0x0F,
} MNFG_CMD;
#define MNFG_INTF_SLEW_START 0x00
#define MNFG_INTF_SLEW_STOP 0x01
#define MNFG_INTF_SINGLE_STEP 0x00
#define MNFG_INTF_FULL_SLEW 0x01
#define MNFG_INTF_RUN_STOP_SLEW_RSP_SIZE 6
// Used by OCC to get mnfg run/stop slew command
typedef struct __attribute__ ((packed))
{
struct cmdh_fsp_cmd_header;
uint8_t sub_cmd;
uint8_t version;
uint8_t action;
uint8_t bottom_mode;
int8_t bottom_percent;
uint8_t high_mode;
int8_t high_percent;
uint8_t step_mode;
uint8_t step_delay;
}mnfg_run_stop_slew_cmd_t;
// Used by OCC firmware to respond to mnfg run/stop slew command
typedef struct __attribute__ ((packed))
{
struct cmdh_fsp_rsp_header;
uint16_t slew_count;
uint16_t fstart;
uint16_t fstop;
uint16_t checksum;
}mnfg_run_stop_slew_rsp_t;
// Used by OCC to get mnfg memory slew command
typedef struct __attribute__ ((packed))
{
struct cmdh_fsp_cmd_header;
uint8_t sub_cmd;
uint8_t version;
uint8_t action;
}mnfg_mem_slew_cmd_t;
#define MNFG_INTF_MEM_SLEW_RSP_SIZE 2
// Used by OCC firmware to respond to mnfg memory slew command
typedef struct __attribute__ ((packed))
{
struct cmdh_fsp_rsp_header;
uint16_t slew_count;
uint16_t checksum;
}mnfg_mem_slew_rsp_t;
// Used by OCC to get mnfg emulate oversubscription command
typedef struct __attribute__ ((packed))
{
struct cmdh_fsp_cmd_header;
uint8_t sub_cmd;
uint8_t version;
uint8_t action;
uint8_t reserved;
}mnfg_emul_oversub_cmd_t;
// Used by OCC firmware to respond to mnfg emulate oversubscription command
typedef struct __attribute__ ((packed))
{
struct cmdh_fsp_rsp_header;
uint8_t state;
uint16_t checksum;
}mnfg_emul_oversub_rsp_t;
#define MFG_LIST_SENSOR_VERSION 0
#define MFG_MAX_NUM_SENSORS 50 // 20 bytes per sensor, 4k response packet (4k stack is limiting factor here).
// Used by mfg to get sensor data
typedef struct __attribute__ ((packed))
{
struct cmdh_fsp_cmd_header;
uint8_t sub_cmd;
uint8_t version;
uint16_t start_gsid;
uint8_t present;
uint16_t location;
uint16_t type;
}cmdh_mfg_list_sensors_query_t;
typedef struct __attribute__ ((packed))
{
uint16_t gsid;
char name[MAX_SENSOR_NAME_SZ]; //16 bytes
uint16_t sample;
}cmdh_mfg_sensor_rec_t;
// Used by OCC firmware to respond to the "MFG_LIST_SENSORS" mfg command. Follows the TMGT/OCC specification.
typedef struct __attribute__ ((packed))
{
struct cmdh_fsp_rsp_header;
uint8_t truncated;
uint8_t num_sensors;
cmdh_mfg_sensor_rec_t sensor[MFG_MAX_NUM_SENSORS];
uint16_t checksum;
}cmdh_mfg_list_sensors_resp_t;
#define MFG_GET_SENSOR_VERSION 0
// Used by mfg to get sensor data
typedef struct __attribute__ ((packed))
{
struct cmdh_fsp_cmd_header;
uint8_t sub_cmd;
uint8_t version;
uint16_t gsid;
}cmdh_mfg_get_sensor_query_t;
// Used by OCC firmware to respond to the "MFG_GET_SENSOR" mfg command. Follows the TMGT/OCC specification.
typedef struct __attribute__ ((packed))
{
struct cmdh_fsp_rsp_header;
uint16_t gsid;
uint16_t sample;
uint8_t status;
uint32_t accumulator;
uint16_t min;
uint16_t max;
char name[MAX_SENSOR_NAME_SZ];
char units[MAX_SENSOR_UNIT_SZ];
uint32_t freq;
uint32_t scalefactor;
uint16_t location;
uint16_t type;
uint16_t checksum;
}cmdh_mfg_get_sensor_resp_t;
void cmdh_mnfg_test_parse (const cmdh_fsp_cmd_t * i_cmd_ptr,
cmdh_fsp_rsp_t * o_rsp_ptr);
uint8_t cmdh_mnfg_emulate_oversub(const cmdh_fsp_cmd_t * i_cmd_ptr,
cmdh_fsp_rsp_t * o_rsp_ptr);
uint8_t cmdh_mnfg_list_sensors(const cmdh_fsp_cmd_t * i_cmd_ptr,
cmdh_fsp_rsp_t * o_rsp_ptr);
uint8_t cmdh_mnfg_get_sensor(const cmdh_fsp_cmd_t * i_cmd_ptr,
cmdh_fsp_rsp_t * o_rsp_ptr);
uint8_t cmdh_mnfg_run_stop_slew(const cmdh_fsp_cmd_t * i_cmd_ptr,
cmdh_fsp_rsp_t * o_rsp_ptr);
#endif
|