blob: ff8347bbe89a173a15ceb0d87cc9443f2e61e74a [file] [log] [blame]
Chris Caina8857c52021-01-27 11:53:05 -06001#pragma once
2
3#include "occ_errors.hpp"
George Liuf3b75142021-06-10 11:22:50 +08004#include "utils.hpp"
Chris Caina8857c52021-01-27 11:53:05 -06005
6#include <org/open_power/OCC/PassThrough/server.hpp>
7#include <sdbusplus/bus.hpp>
8#include <sdbusplus/server/object.hpp>
George Liub5ca1012021-09-10 12:53:11 +08009
Chris Caina8857c52021-01-27 11:53:05 -060010#include <string>
11
12namespace open_power
13{
14namespace occ
15{
16
17// For waiting on signals
18namespace sdbusRule = sdbusplus::bus::match::rules;
19
Chris Cain78e86012021-03-04 16:15:31 -060020enum class CmdType
21{
22 POLL = 0x00,
23 CLEAR_ERROR_LOG = 0x12,
24 SET_MODE_AND_STATE = 0x20,
25 SET_CONFIG_DATA = 0x21,
26 SET_USER_PCAP = 0x22,
27 RESET_PREP = 0x25,
Chris Cain17257672021-10-22 13:41:03 -050028 SEND_AMBIENT = 0x30,
Chris Cain78e86012021-03-04 16:15:31 -060029 DEBUG_PASS_THROUGH = 0x40,
30 AME_PASS_THROUGH = 0x41,
31 GET_FIELD_DEBUG_DATA = 0x42,
32 MFG_TEST = 0x53
33};
34
35enum class OccState
36{
37 NO_CHANGE = 0x00,
38 STANDBY = 0x01,
39 OBSERVATION = 0x02,
40 ACTIVE = 0x03,
41 SAFE = 0x04,
42 CHARACTERIZATION = 0x05,
43};
44
45enum class SysPwrMode
46{
47 NO_CHANGE = 0,
48 DISABLE = 0x01, // Disable / Static Base Frequencey
49 SFP = 0x03, // Static Frequency Point (requires freqPt)
50 SAFE = 0x04, // reported when system is in SAFE mode (not settable)
51 POWER_SAVING = 0x05, // Static Power Saving
52 DYNAMIC_PERF = 0x0A, // Dynamic / Balanced Performance
53 FFO = 0x0B, // Fixed Frequency Override (requires freqPt)
54 MAX_PERF = 0x0C // Maximum Performance
55};
56
57// Only some of the SysPwrModes are currently supported and allowed to be set
58#define VALID_POWER_MODE_SETTING(mode) \
59 ((mode == SysPwrMode::DISABLE) || (mode == SysPwrMode::POWER_SAVING) || \
60 (mode == SysPwrMode::DYNAMIC_PERF) || (mode == SysPwrMode::MAX_PERF))
61
62enum class RspStatus
63{
64 SUCCESS = 0x00,
65 CONDITIONAL_SUCCESS = 0x01,
66 INVALID_COMMAND = 0x11,
67 INVALID_COMMAND_LENGTH = 0x12,
68 INVALID_DATA_FIELD = 0x13,
69 CHECKSUM_FAILURE = 0x14,
70 INTERNAL_ERROR = 0x15,
71 PRESENT_STATE_PROHIBITS = 0x16,
72 COMMAND_IN_PROGRESS = 0xFF
73};
74
Chris Caina8857c52021-01-27 11:53:05 -060075enum class CmdStatus
76{
77 SUCCESS,
78 OPEN_FAILURE,
79 FAILURE,
80 INVALID_CHECKSUM
81};
82
83/** @brief Trace block of data in hex with log<level:INFO>
84 *
85 * @param[in] data - vector containing data to trace
86 * @param[in] data_len - optional number of bytes to trace
87 * If 0, entire vector will be traced.
88 */
89void dump_hex(const std::vector<std::uint8_t>& data,
90 const unsigned int data_len = 0);
91
92/** @class OccCommand
93 * @brief Send commands and process respsonses from the OCC
94 */
95class OccCommand
96{
97 public:
98 OccCommand() = delete;
99 OccCommand(const OccCommand&) = delete;
100 OccCommand& operator=(const OccCommand&) = delete;
101 OccCommand(OccCommand&&) = default;
102 OccCommand& operator=(OccCommand&&) = default;
103
104 /** @brief Ctor to set up which OCC the command will go to
105 *
106 * @param[in] instance - OCC instance
Chris Caina8857c52021-01-27 11:53:05 -0600107 * @param[in] path - Path to attach at
108 */
George Liuf3b75142021-06-10 11:22:50 +0800109 OccCommand(uint8_t instance, const char* path);
Chris Caina8857c52021-01-27 11:53:05 -0600110
111 /** @brief Dtor to clean up and close device */
112 ~OccCommand()
113 {
114 closeDevice();
115 }
116
117 /** @brief Send the command to the OCC and collect the response.
118 * The checksum will be validated and removed from the response.
119 *
120 * @param[in] command - command to pass-through
121 * @param[out] response - response
122 * returns SUCCESS if response was received
123 */
124 CmdStatus send(const std::vector<std::uint8_t>& command,
125 std::vector<std::uint8_t>& response);
126
127 private:
128 /** @brief Instance number of the target OCC */
129 uint8_t occInstance;
130
131 /** @brief OCC path on the bus */
132 std::string path;
133
134 /** @brief OCC device path
135 * For now, here is the hard-coded mapping until
136 * the udev rule is in.
137 * occ0 --> /dev/occ1
138 * occ1 --> /dev/occ2
139 * ...
140 */
141 std::string devicePath;
142
143 /** @brief Indicates whether or not the OCC is currently active */
144 bool occActive = false;
145
146 /** brief file descriptor associated with occ device */
147 int fd = -1;
148
149 /** @brief Subscribe to OCC Status signal
150 *
151 * Once the OCC status gets to active, only then we will get /dev/occ2
152 * populated and hence need to wait on that before opening that
153 */
154 sdbusplus::bus::match_t activeStatusSignal;
155
156 /** Opens devicePath and populates file descriptor */
157 void openDevice();
158
159 /** Closed the fd associated with opened device */
160 void closeDevice();
161
162 /** @brief Callback function on OCC Status change signals
163 *
164 * @param[in] msg - Data associated with subscribed signal
165 */
166 void activeStatusEvent(sdbusplus::message::message& msg);
167};
168
169} // namespace occ
170} // namespace open_power