blob: 6a5578a8cd77097c34df133a2d5f2a54d14d8c36 [file] [log] [blame]
Jia, Chunhuia835eaa2018-09-05 09:00:41 +08001/*
2// Copyright (c) 2018 Intel Corporation
3//
4// Licensed under the Apache License, Version 2.0 (the "License");
5// you may not use this file except in compliance with the License.
6// You may obtain a copy of the License at
7//
8// http://www.apache.org/licenses/LICENSE-2.0
9//
10// Unless required by applicable law or agreed to in writing, software
11// distributed under the License is distributed on an "AS IS" BASIS,
12// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13// See the License for the specific language governing permissions and
14// limitations under the License.
15*/
16
17#pragma once
18
Vernon Mauery98bbf692019-09-16 11:14:59 -070019#include <ipmid/api-types.hpp>
Suryakanth Sekard509eb92018-11-15 17:44:11 +053020#include <user_channel/user_layer.hpp>
Vernon Mauery98bbf692019-09-16 11:14:59 -070021namespace ipmi
Jia, Chunhuia835eaa2018-09-05 09:00:41 +080022{
Vernon Mauery98bbf692019-09-16 11:14:59 -070023namespace intel
Yong Li23737fe2019-02-19 08:49:55 +080024{
Yong Li23737fe2019-02-19 08:49:55 +080025
Vernon Mauery98bbf692019-09-16 11:14:59 -070026static constexpr NetFn netFnGeneral = netFnOemOne;
27static constexpr NetFn netFnPlatform = netFnOemTwo;
28static constexpr NetFn netFnApp = netFnOemEight;
29
30namespace general
31{
32static constexpr Cmd cmdRestoreConfiguration = 0x02;
33static constexpr Cmd cmdGetSmSignal = 0x14;
34static constexpr Cmd cmdSetSmSignal = 0x15;
35static constexpr Cmd cmdSetBIOSID = 0x26;
36static constexpr Cmd cmdGetOEMDeviceInfo = 0x27;
37static constexpr Cmd cmdSetColdRedundancyConfig = 0x2d;
38static constexpr Cmd cmdGetColdRedundancyConfig = 0x2e;
39static constexpr Cmd cmdGetAICSlotFRUIDSlotPosRecords = 0x31;
40static constexpr Cmd cmdGetMultiNodeRole = 0x33;
41static constexpr Cmd cmdGetMultiNodeId = 0x36;
42static constexpr Cmd cmdSetSystemGUID = 0x41;
43static constexpr Cmd cmdDisableBMCSystemReset = 0x42;
44static constexpr Cmd cmdGetBMCResetDisables = 0x43;
45static constexpr Cmd cmdSendEmbeddedFWUpdStatus = 0x44;
46static constexpr Cmd cmdSlotI2CMasterWriteRead = 0x52;
47static constexpr Cmd cmdSetPowerRestoreDelay = 0x54;
48static constexpr Cmd cmdGetPowerRestoreDelay = 0x55;
49static constexpr Cmd cmdSetFaultIndication = 0x57;
50static constexpr Cmd cmdSetOEMUser2Activation = 0x5A;
51static constexpr Cmd cmdSetSpecialUserPassword = 0x5F;
52static constexpr Cmd cmdSetShutdownPolicy = 0x60;
53static constexpr Cmd cmdGetShutdownPolicy = 0x62;
54static constexpr Cmd cmdGetMultiNodePresence = 0x63;
AppaRao Puli28972062019-11-11 02:04:45 +053055static constexpr Cmd cmdGetBufferSize = 0x66;
Vernon Mauery98bbf692019-09-16 11:14:59 -070056static constexpr Cmd cmdSetFanConfig = 0x89;
57static constexpr Cmd cmdGetFanConfig = 0x8a;
58static constexpr Cmd cmdSetFanSpeedOffset = 0x8c;
59static constexpr Cmd cmdGetFanSpeedOffset = 0x8d;
60static constexpr Cmd cmdSetDimmOffset = 0x8e;
61static constexpr Cmd cmdGetDimmOffset = 0x8f;
62static constexpr Cmd cmdSetFscParameter = 0x90;
63static constexpr Cmd cmdGetFscParameter = 0x91;
64static constexpr Cmd cmdGetChassisIdentifier = 0x92;
65static constexpr Cmd cmdReadBaseBoardProductId = 0x93;
66static constexpr Cmd cmdGetProcessorErrConfig = 0x9A;
67static constexpr Cmd cmdSetProcessorErrConfig = 0x9B;
68static constexpr Cmd cmdSetManufacturingData = 0xA1;
69static constexpr Cmd cmdGetManufacturingData = 0xA2;
Vernon Mauery27d23562021-08-12 10:43:39 -070070static constexpr Cmd cmdSetFITcLayout = 0xA3;
Arun P. Mohanan06584cd2021-08-13 20:56:01 +053071static constexpr Cmd cmdMTMBMCFeatureControl = 0xA4;
Vernon Mauery98bbf692019-09-16 11:14:59 -070072static constexpr Cmd cmdGetLEDStatus = 0xB0;
73static constexpr Cmd cmdControlBmcServices = 0xB1;
74static constexpr Cmd cmdGetBmcServiceStatus = 0xB2;
75static constexpr Cmd cmdGetSecurityMode = 0xB3;
76static constexpr Cmd cmdSetSecurityMode = 0xB4;
77static constexpr Cmd cmdMtmKeepAlive = 0xB5;
srikanta mondal2030d7c2020-05-03 17:25:25 +000078static constexpr Cmd cmdOEMGetReading = 0xE2;
Kuiying Wang6d6dc7a2020-04-02 10:15:19 +080079static constexpr Cmd cmdSetBIOSCap = 0xD3;
80static constexpr Cmd cmdGetBIOSCap = 0xD4;
81static constexpr Cmd cmdSetPayload = 0xD5;
82static constexpr Cmd cmdGetPayload = 0xD6;
83static constexpr Cmd cmdSetBIOSPwdHashInfo = 0xD7;
84static constexpr Cmd cmdGetBIOSPwdHash = 0xD8;
Vernon Mauery98bbf692019-09-16 11:14:59 -070085static constexpr Cmd cmdGetNmiStatus = 0xE5;
86static constexpr Cmd cmdSetEfiBootOptions = 0xEA;
87static constexpr Cmd cmdGetEfiBootOptions = 0xEB;
88static constexpr Cmd cmdSetNmiStatus = 0xED;
Cheng C Yang4e6ee152019-09-25 10:27:44 +080089static constexpr Cmd cmdGetPSUVersion = 0xEF;
Vernon Mauery98bbf692019-09-16 11:14:59 -070090} // namespace general
91
92namespace platform
93{
94static constexpr Cmd cmdCfgHostSerialPortSpeed = 0x90;
Yong Li068b4f22019-09-17 16:32:18 +080095static constexpr Cmd cmdClearCMOS = 0x91;
Vernon Mauery98bbf692019-09-16 11:14:59 -070096} // namespace platform
97
98namespace app
99{
100static constexpr Cmd cmdMdrStatus = 0x20;
101static constexpr Cmd cmdMdrComplete = 0x21;
102static constexpr Cmd cmdMdrEvent = 0x22;
103static constexpr Cmd cmdMdrRead = 0x23;
104static constexpr Cmd cmdMdrWrite = 0x24;
105static constexpr Cmd cmdMdrLock = 0x25;
106static constexpr Cmd cmdMdrIIAgentStatus = 0x30;
107static constexpr Cmd cmdMdrIIGetDir = 0x31;
108static constexpr Cmd cmdMdrIIGetDataInfo = 0x32;
109static constexpr Cmd cmdMdrIILockData = 0x33;
110static constexpr Cmd cmdMdrIIUnlockData = 0X34;
111static constexpr Cmd cmdMdrIIGetDataBlock = 0x35;
112static constexpr Cmd cmdMdrIISendDir = 0x38;
113static constexpr Cmd cmdMdrIISendDataInfoOffer = 0x39;
114static constexpr Cmd cmdMdrIISendDataInfo = 0x3a;
115static constexpr Cmd cmdMdrIIDataStart = 0x3b;
116static constexpr Cmd cmdMdrIIDataDone = 0x3c;
117static constexpr Cmd cmdMdrIISendDataBlock = 0x3d;
Rajashekar Gade Reddy2b664d52020-03-23 22:09:00 +0530118static constexpr Cmd cmdSlotIpmb = 0x51;
Vernon Mauery98bbf692019-09-16 11:14:59 -0700119} // namespace app
120
121} // namespace intel
122
123} // namespace ipmi
124
125// FIXME: put these in the cpp files that use them
Jason M. Bills64796042018-10-03 16:51:55 -0700126enum class IPMIIntelOEMReturnCodes
Jia, Chunhuia835eaa2018-09-05 09:00:41 +0800127{
128 ipmiCCPayloadActive = 0x80,
129 ipmiCCInvalidPCIESlotID = 0x80,
130 ipmiCCParameterNotSupported = 0x80,
131 ipmiCCPayloadAlreadyDeactivated = 0x80,
132 ipmiCCSetInProcess = 0x81,
133 ipmiCCPayloadDisable = 0x81,
134 ipmiCCLostArbitration = 0x81,
135 ipmiCCInvalidCablePortIndex = 0x81,
136 ipmiCCHealthStatusNotAvailable = 0x81,
137 ipmiCCBusError = 0x82,
138 ipmiCCReadOnly = 0x82,
139 ipmiCCWriteOnly = 0x82,
140 ipmiCCNoCablePresent = 0x82,
141 ipmiCCDataCollectionInProgress = 0x82,
142 ipmiCCPayloadActivationLimitReached = 0x82,
143 ipmiCCNACKOnWrite = 0x83,
144 ipmiCCDataCollectionFailed = 0x83,
145 ipmiCCCanNotActivateWithEncrption = 0x83,
146 ipmiCCCanNotActivateWithoutEncryption = 0x84,
147 ipmiCCInvalidChecksum = 0x85,
148 ipmiCCNoCabledPCIEPortsAvailable = 0xC2,
149
150};
151
Jason M. Bills64796042018-10-03 16:51:55 -0700152enum class IPMIReturnCodeExt
Jia, Chunhuia835eaa2018-09-05 09:00:41 +0800153{
154 ipmiCCInvalidLUN = 0xC2,
155 ipmiCCTimeout = 0xC3,
156 ipmiCCStorageLeak = 0xC4,
157 ipmiCCRequestDataTruncated = 0xC6,
158 ipmiCCRequestDataFieldLengthLimitExceeded = 0xC8,
159 ipmiCCCanNotReturnNumberOfRequestedDataBytes = 0xCA,
160 ipmiCCRequestSensorDataRecordNotFound = 0xCB,
161 ipmiCCDestinationUnavailable = 0xD3,
162 ipmiCCParamterNotSupportInPresentState = 0xD5,
163};
164
Jason M. Bills64796042018-10-03 16:51:55 -0700165static constexpr const uint8_t maxBIOSIDLength = 0xFF;
166static constexpr const uint8_t maxCPUNum = 4;
Chalapathi899bfd12020-04-15 15:07:02 +0000167static constexpr const char* biosActiveObjPath =
168 "/xyz/openbmc_project/software/bios_active";
Yong Li2742b852019-12-16 14:55:11 +0800169static constexpr const char* biosVersionIntf =
170 "xyz.openbmc_project.Software.Version";
171static constexpr const char* biosVersionProp = "Version";
Jia, Chunhuia835eaa2018-09-05 09:00:41 +0800172
Jason M. Bills64796042018-10-03 16:51:55 -0700173static constexpr const char* powerRestoreDelayObjPath =
174 "/xyz/openbmc_project/control/power_restore_delay";
175static constexpr const char* powerRestoreDelayIntf =
176 "xyz.openbmc_project.Control.Power.RestoreDelay";
177static constexpr const char* powerRestoreDelayProp = "PowerRestoreDelay";
178static constexpr const char* processorErrConfigObjPath =
179 "/xyz/openbmc_project/control/processor_error_config";
180static constexpr const char* processorErrConfigIntf =
181 "xyz.openbmc_project.Control.Processor.ErrConfig";
Jason M. Billsb02bf092019-08-15 13:01:56 -0700182static constexpr const char* bmcResetDisablesPath =
183 "/xyz/openbmc_project/control/bmc_reset_disables";
184static constexpr const char* bmcResetDisablesIntf =
185 "xyz.openbmc_project.Control.ResetDisables";
Jason M. Bills64796042018-10-03 16:51:55 -0700186
Kuiying Wang45f04982018-12-26 09:23:08 +0800187static constexpr const char* identifyLEDObjPath =
188 "/xyz/openbmc_project/led/physical/identify";
189static constexpr const char* ledIntf = "xyz.openbmc_project.Led.Physical";
190static constexpr const char* statusAmberObjPath =
191 "/xyz/openbmc_project/led/physical/status_amber";
192static constexpr const char* statusGreenObjPath =
193 "/xyz/openbmc_project/led/physical/status_green";
194
Yong Li703922d2018-11-06 13:25:31 +0800195static constexpr const uint8_t noShutdownOnOCOT = 0;
196static constexpr const uint8_t shutdownOnOCOT = 1;
197static constexpr const uint8_t noShutdownPolicySupported = 0;
198static constexpr const uint8_t shutdownPolicySupported = 1;
199static constexpr const char* oemShutdownPolicyIntf =
Yong Li0669d192019-05-06 14:01:46 +0800200 "com.intel.Control.OCOTShutdownPolicy";
Yong Li703922d2018-11-06 13:25:31 +0800201static constexpr const char* oemShutdownPolicyObjPath =
Yong Li0669d192019-05-06 14:01:46 +0800202 "/com/intel/control/ocotshutdown_policy_config";
203static constexpr const char* oemShutdownPolicyObjPathProp = "OCOTPolicy";
Yong Li703922d2018-11-06 13:25:31 +0800204
Yong Li23737fe2019-02-19 08:49:55 +0800205static constexpr const char* fwGetEnvCmd = "/sbin/fw_printenv";
206static constexpr const char* fwSetEnvCmd = "/sbin/fw_setenv";
207static constexpr const char* fwHostSerailCfgEnvName = "hostserialcfg";
208
James Feist91244a62019-02-19 15:04:54 -0800209constexpr const char* settingsBusName = "xyz.openbmc_project.Settings";
210
Yong Li23737fe2019-02-19 08:49:55 +0800211static constexpr const uint8_t getHostSerialCfgCmd = 0;
212static constexpr const uint8_t setHostSerialCfgCmd = 1;
213
214// parameters:
215// 0: host serial port 1 and 2 normal speed
216// 1: host serial port 1 high spend, port 2 normal speed
217// 2: host serial port 1 normal spend, port 2 high speed
218// 3: host serial port 1 and 2 high speed
219static constexpr const uint8_t HostSerialCfgParamMax = 3;
Suryakanth Sekard509eb92018-11-15 17:44:11 +0530220static constexpr uint8_t ipmiDefaultUserId = 2;
Yong Li23737fe2019-02-19 08:49:55 +0800221
Jia, Chunhuicc49b542019-03-20 15:41:07 +0800222static constexpr const uint8_t selEvtTargetMask = 0xF0;
223static constexpr const uint8_t selEvtTargetShift = 4;
224
225static constexpr const uint8_t targetInstanceMask = 0x0E;
226static constexpr const uint8_t targetInstanceShift = 1;
227
Jason M. Bills64796042018-10-03 16:51:55 -0700228enum class IPMINetfnIntelOEMAppCmd
Jia, Chunhuia835eaa2018-09-05 09:00:41 +0800229{
230 mdrStatus = 0x20,
231 mdrComplete = 0x21,
232 mdrEvent = 0x22,
233 mdrRead = 0x23,
234 mdrWrite = 0x24,
235 mdrLock = 0x25,
236 mdr2AgentStatus = 0x30,
237 mdr2GetDir = 0x31,
238 mdr2GetDataInfo = 0x32,
239 mdr2LockData = 0x33,
240 mdr2UnlockData = 0x34,
241 mdr2GetDataBlock = 0x35,
242 mdr2SendDir = 0x38,
243 mdr2SendDataInfoOffer = 0x39,
244 mdr2SendDataInfo = 0x3a,
245 mdr2DataStart = 0x3b,
246 mdr2DataDone = 0x3c,
247 mdr2SendDataBlock = 0x3d,
248};
249
Jason M. Bills64796042018-10-03 16:51:55 -0700250enum class OEMDevEntityType
Jia, Chunhuia835eaa2018-09-05 09:00:41 +0800251{
252 biosId,
253 devVer,
254 sdrVer,
Jason M. Bills64796042018-10-03 16:51:55 -0700255};
Jia, Chunhuia835eaa2018-09-05 09:00:41 +0800256
Jia, Chunhuicc49b542019-03-20 15:41:07 +0800257enum class FWUpdateTarget : uint8_t
258{
259 targetBMC = 0x0,
260 targetBIOS = 0x1,
261 targetME = 0x2,
262 targetOEMEWS = 0x4,
263};
264
Jason M. Bills42bd9c82019-06-28 16:39:34 -0700265enum class CPUStatus
266{
267 disabled = 0x0,
268 enabled = 0x1,
269 notPresent = 0x3,
270};
271
Jason M. Bills64796042018-10-03 16:51:55 -0700272#pragma pack(push, 1)
273struct GUIDData
Jia, Chunhuia835eaa2018-09-05 09:00:41 +0800274{
275 uint8_t node1;
276 uint8_t node2;
277 uint8_t node3;
278 uint8_t node4;
279 uint8_t node5;
280 uint8_t node6;
281 uint8_t clock1;
282 uint8_t clock2;
283 uint8_t timeHigh1;
284 uint8_t timeHigh2;
285 uint8_t timeMid1;
286 uint8_t timeMid2;
287 uint8_t timeLow1;
288 uint8_t timeLow2;
289 uint8_t timeLow3;
290 uint8_t timeLow4;
Jason M. Bills64796042018-10-03 16:51:55 -0700291};
Jia, Chunhuia835eaa2018-09-05 09:00:41 +0800292
Jason M. Bills64796042018-10-03 16:51:55 -0700293struct DeviceInfo
Jia, Chunhuia835eaa2018-09-05 09:00:41 +0800294{
Jason M. Bills64796042018-10-03 16:51:55 -0700295 uint8_t biosIDLength;
296 uint8_t biosId[maxBIOSIDLength];
297};
Jia, Chunhuia835eaa2018-09-05 09:00:41 +0800298
Jason M. Bills64796042018-10-03 16:51:55 -0700299struct SetPowerRestoreDelayReq
300{
301 uint8_t byteMSB;
302 uint8_t byteLSB;
303};
304
305struct GetPowerRestoreDelayRes
306{
307 uint8_t byteMSB;
308 uint8_t byteLSB;
309};
310
Jason M. Bills64796042018-10-03 16:51:55 -0700311struct GetOemDeviceInfoRes
Jia, Chunhuia835eaa2018-09-05 09:00:41 +0800312{
313 uint8_t resDatalen;
Jason M. Bills64796042018-10-03 16:51:55 -0700314 uint8_t data[maxBIOSIDLength];
315};
316
Yong Li703922d2018-11-06 13:25:31 +0800317struct GetOEMShutdownPolicyRes
318{
319 uint8_t policy;
320 uint8_t policySupport;
321};
Kuiying Wang45f04982018-12-26 09:23:08 +0800322
Yong Li23737fe2019-02-19 08:49:55 +0800323struct CfgHostSerialReq
324{
325 uint8_t command;
326 uint8_t parameter;
327};
Kuiying Wang45f04982018-12-26 09:23:08 +0800328#pragma pack(pop)
James Feist91244a62019-02-19 15:04:54 -0800329
Zhu, Yungebe560b02019-04-21 21:19:21 -0400330//
331// Fault type enumeration
332//
333enum class RemoteFaultType
334{
335 fan, // 0
336 temperature, // 1
337 power, // 2
338 driveslot, // 3
339 software, // 4
340 memory, // 5
341 max = 6 // 6
342};
343
344// Enumeration for remote fault states as required by the HSC
345//
346enum class RemoteFaultState
347{
348 // fault indicators
349 fanLEDs,
350 cpu1DimmLeds,
351 cpu2DimmLeds,
352 cpu3DimmLeds,
353 cpu4DimmLeds,
354 maxFaultState,
355};
356
357enum class DimmFaultType
358{
359 cpu1cpu2Dimm,
360 cpu3cpu4Dimm,
361 maxFaultGroup,
362};
363
James Feist5f957ca2019-03-14 15:33:55 -0700364enum class setFscParamFlags : uint8_t
365{
366 tcontrol = 0x1,
367 pwmOffset = 0x2,
368 maxPwm = 0x3,
369 cfm = 0x4
Jia, Chunhuicc49b542019-03-20 15:41:07 +0800370};
Vernon Mauerya3702c12019-05-22 13:20:59 -0700371
James Feist63efafa2019-07-24 12:39:21 -0700372enum class dimmOffsetTypes : uint8_t
373{
374 staticCltt = 0x0,
375 dimmPower = 0x2
376};
377
Vernon Mauerya3702c12019-05-22 13:20:59 -0700378// FIXME: this stuff needs to be rewritten
379enum IPMI_INTEL_OEM_RETURN_CODES
380{
381 IPMI_CC_OEM_PAYLOAD_ACTIVE = 0x80,
382 IPMI_CC_OEM_INVALID_PCIE_SLOTID = 0x80,
383 IPMI_CC_OEM_PARAMETER_NOT_SUPPORTED = 0x80,
384 IPMI_CC_OEM_PAYLOAD_ALREADY_DEACTIVATED = 0x80,
385 IPMI_CC_OEM_SET_IN_PROCESS = 0x81,
386 IPMI_CC_OEM_PAYLOAD_DISABLE = 0x81,
387 IPMI_CC_OEM_LOST_ARBITRATION = 0x81,
388 IPMI_CC_OEM_INVALID_CABLE_PORT_INDEX = 0x81,
389 IPMI_CC_OEM_HEALTH_STATUS_NOT_AVAILABLE = 0x81,
390 IPMI_CC_OEM_BUS_ERROR = 0x82,
391 IPMI_CC_OEM_READ_ONLY = 0x82,
392 IPMI_CC_OEM_WRITE_ONLY = 0x82,
393 IPMI_CC_OEM_NO_CABLE_PRESENT = 0x82,
394 IPMI_CC_OEM_DATA_COLLECTION_IN_PROGRESS = 0x82,
395 IPMI_CC_OEM_PAYLOAD_ACTIVATION_LIMIT_REACH = 0x82,
396 IPMI_CC_OEM_NACK_ON_WRITE = 0x83,
397 IPMI_CC_OEM_DATA_COLLECTION_FAILED = 0x83,
398 IPMI_CC_OEM_CAN_NOT_ACTIVATE_WITH_ENCRYPTION = 0x83,
399 IPMI_CC_OEM_CAN_NOT_ACTIVATE_WITHOUT_ENCRYPTION = 0x84,
400 IPMI_CC_OEM_INVALID_CHECKSUM = 0x85,
401 IPMI_CC_OEM_NO_CABLED_PCIE_PORTS_AVAILABLE = 0xC2,
402};
403
404enum IPMI_RETURN_CODE_EXT
405{
406 IPMI_CC_INVALID_LUN = 0xC2,
407 IPMI_CC_STORGE_LEAK = 0xC4,
408 IPMI_CC_REQUEST_DATA_TRUNCATED = 0xC6,
409 IPMI_CC_REQUEST_DATA_FIELD_LENGTH_LIMIT_EXCEEDED = 0xC8,
410 IPMI_CC_CANNOT_RETURN_NUMBER_OF_REQUESTED_DATA_BYTES = 0xCA,
411 IPMI_CC_REQUEST_SENSOR_DATA_RECORD_NOT_FOUND = 0xCB,
412 IPMI_CC_DESTINATION_UNAVAILABLE = 0xD3,
413 IPMI_CC_PARAMETER_NOT_SUPPORT_IN_PRESENT_STATE = 0xD5,
414};