blob: 2055bd0eda2058356e9af53429c0b2e56ae2ab2d [file] [log] [blame]
Jason M. Bills3f7c5e42018-10-03 14:00:41 -07001/*
2// Copyright (c) 2017 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#include <cstdint>
19#include <phosphor-ipmi-host/sensorhandler.hpp>
20
21static constexpr uint8_t ipmiSdrVersion = 0x51;
22
Jason M. Billsc04e2e72018-11-28 15:15:56 -080023namespace intel_oem::ipmi::sel
24{
Jason M. Billsc04e2e72018-11-28 15:15:56 -080025static constexpr uint8_t selOperationSupport = 0x02;
26static constexpr uint8_t systemEvent = 0x02;
27static constexpr size_t systemEventSize = 3;
28static constexpr uint8_t oemTsEventFirst = 0xC0;
29static constexpr uint8_t oemTsEventLast = 0xDF;
30static constexpr size_t oemTsEventSize = 9;
31static constexpr uint8_t oemEventFirst = 0xE0;
32static constexpr uint8_t oemEventLast = 0xFF;
33static constexpr size_t oemEventSize = 13;
34static constexpr uint8_t eventMsgRev = 0x04;
35} // namespace intel_oem::ipmi::sel
36
Jason M. Bills3f7c5e42018-10-03 14:00:41 -070037#pragma pack(push, 1)
Jason M. Bills3f7c5e42018-10-03 14:00:41 -070038struct GetSDRReq
39{
40 uint16_t reservationID;
41 uint16_t recordID;
42 uint8_t offset;
43 uint8_t bytesToRead;
44};
45#pragma pack(pop)
46
47enum class SdrRepositoryInfoOps : uint8_t
48{
49 allocCommandSupported = 0x1,
50 reserveSDRRepositoryCommandSupported = 0x2,
51 partialAddSDRSupported = 0x4,
52 deleteSDRSupported = 0x8,
53 reserved = 0x10,
54 modalLSB = 0x20,
55 modalMSB = 0x40,
56 overflow = 0x80
57};
58
Jason M. Billse2d1aee2018-10-03 15:57:18 -070059enum class GetFRUAreaAccessType : uint8_t
60{
61 byte = 0x0,
62 words = 0x1
63};
64
Jason M. Bills3f7c5e42018-10-03 14:00:41 -070065enum class SensorUnits : uint8_t
66{
67 unspecified = 0x0,
68 degreesC = 0x1,
69 volts = 0x4,
70 amps = 0x5,
71 watts = 0x6,
72 rpm = 0x12,
73};
74
75enum class IPMINetfnStorageCmds : ipmi_cmd_t
76{
Jason M. Bills3f7c5e42018-10-03 14:00:41 -070077 ipmiCmdGetRepositoryInfo = 0x20,
78 ipmiCmdGetSDRAllocationInfo = 0x21,
79 ipmiCmdReserveSDR = 0x22,
80 ipmiCmdGetSDR = 0x23,
Jason M. Bills3f7c5e42018-10-03 14:00:41 -070081};
82
Jason M. Billse2d1aee2018-10-03 15:57:18 -070083#pragma pack(push, 1)
84struct FRUHeader
85{
86 uint8_t commonHeaderFormat;
87 uint8_t internalOffset;
88 uint8_t chassisOffset;
89 uint8_t boardOffset;
90 uint8_t productOffset;
91 uint8_t multiRecordOffset;
92 uint8_t pad;
93 uint8_t checksum;
94};
95#pragma pack(pop)
96
James Feist74c50c62019-08-14 14:18:41 -070097#pragma pack(push, 1)
98struct Type12Record
99{
100 get_sdr::SensorDataRecordHeader header;
101 uint8_t slaveAddress;
102 uint8_t channelNumber;
103 uint8_t powerStateNotification;
104 uint8_t deviceCapabilities;
105 uint24_t reserved;
106 uint8_t entityID;
107 uint8_t entityInstance;
108 uint8_t oem;
109 uint8_t typeLengthCode;
110 char name[16];
111};
112#pragma pack(pop)
113
Yong Lifee5e4c2020-01-17 19:36:29 +0800114#pragma pack(push, 1)
115struct NMDiscoveryRecord
116{
117 get_sdr::SensorDataRecordHeader header;
118 uint8_t oemID0;
119 uint8_t oemID1;
120 uint8_t oemID2;
121 uint8_t subType;
122 uint8_t version;
123 uint8_t slaveAddress;
124 uint8_t channelNumber;
125 uint8_t healthEventSensor;
126 uint8_t exceptionEventSensor;
127 uint8_t operationalCapSensor;
128 uint8_t thresholdExceededSensor;
129};
130#pragma pack(pop)
131
Jason M. Bills3f7c5e42018-10-03 14:00:41 -0700132namespace ipmi
133{
134namespace storage
135{
James Feist74c50c62019-08-14 14:18:41 -0700136
Yong Lifee5e4c2020-01-17 19:36:29 +0800137constexpr const size_t nmDiscoverySDRCount = 1;
James Feist74c50c62019-08-14 14:18:41 -0700138constexpr const size_t type12Count = 2;
James Feist25690252019-12-23 12:25:49 -0800139ipmi_ret_t getFruSdrs(ipmi::Context::ptr ctx, size_t index,
140 get_sdr::SensorDataFruRecord& resp);
Jason M. Bills3f7c5e42018-10-03 14:00:41 -0700141
James Feist25690252019-12-23 12:25:49 -0800142ipmi_ret_t getFruSdrCount(ipmi::Context::ptr ctx, size_t& count);
James Feist74c50c62019-08-14 14:18:41 -0700143
144std::vector<uint8_t> getType12SDRs(uint16_t index, uint16_t recordId);
Yong Lifee5e4c2020-01-17 19:36:29 +0800145std::vector<uint8_t> getNMDiscoverySDR(uint16_t index, uint16_t recordId);
Jason M. Bills3f7c5e42018-10-03 14:00:41 -0700146} // namespace storage
147} // namespace ipmi