blob: 46359151e0b4427c071f4b5ecb90ea52b9726be6 [file] [log] [blame]
Matt Spinler015e3ad2017-08-01 11:20:47 -05001#pragma once
2
Brandon Wyman9c7897c2019-03-28 17:42:34 -05003#include <filesystem>
Matt Spinler015e3ad2017-08-01 11:20:47 -05004#include <string>
5#include <vector>
6
Lei YUab093322019-10-09 16:43:22 +08007namespace phosphor
Matt Spinler015e3ad2017-08-01 11:20:47 -05008{
9namespace pmbus
10{
11
Brandon Wyman9c7897c2019-03-28 17:42:34 -050012namespace fs = std::filesystem;
Brandon Wymanff5f3392017-08-11 17:43:22 -050013
Brandon Wyman10295542017-08-09 18:20:44 -050014// The file name Linux uses to capture the STATUS_WORD from pmbus.
Matt Spinlere7e432b2017-08-21 15:01:40 -050015constexpr auto STATUS_WORD = "status0";
Brandon Wyman10295542017-08-09 18:20:44 -050016
Brandon Wyman253dc9b2017-08-12 13:45:52 -050017// The file name Linux uses to capture the STATUS_INPUT from pmbus.
18constexpr auto STATUS_INPUT = "status0_input";
Matt Spinlere7e432b2017-08-21 15:01:40 -050019
Brandon Wyman764c7972017-08-22 17:05:36 -050020// Voltage out status.
21// Overvoltage fault or warning, Undervoltage fault or warning, maximum or
22// minimum warning, ....
Matt Spinlere7e432b2017-08-21 15:01:40 -050023// Uses Page substitution
24constexpr auto STATUS_VOUT = "statusP_vout";
25
Matt Spinlerde16d052017-12-13 13:22:14 -060026namespace status_vout
27{
28// Mask of bits that are only warnings
29constexpr auto WARNING_MASK = 0x6A;
Matt Spinlerf0f02b92018-10-25 16:12:43 -050030} // namespace status_vout
Matt Spinlerde16d052017-12-13 13:22:14 -060031
Brandon Wyman764c7972017-08-22 17:05:36 -050032// Current output status bits.
33constexpr auto STATUS_IOUT = "status0_iout";
34
35// Manufacturing specific status bits
36constexpr auto STATUS_MFR = "status0_mfr";
37
Brandon Wyman12661f12017-08-31 15:28:21 -050038// Reports on the status of any fans installed in position 1 and 2.
39constexpr auto STATUS_FANS_1_2 = "status0_fans12";
40
41// Reports on temperature faults or warnings. Overtemperature fault,
42// overtemperature warning, undertemperature warning, undertemperature fault.
43constexpr auto STATUS_TEMPERATURE = "status0_temp";
44
Matt Spinlere7e432b2017-08-21 15:01:40 -050045namespace status_word
46{
47constexpr auto VOUT_FAULT = 0x8000;
Brandon Wyman764c7972017-08-22 17:05:36 -050048
49// The IBM CFF power supply driver does map this bit to power1_alarm in the
50// hwmon space, but since the other bits that need to be checked do not have
51// a similar mapping, the code will just read STATUS_WORD and use bit masking
52// to see if the INPUT FAULT OR WARNING bit is on.
53constexpr auto INPUT_FAULT_WARN = 0x2000;
54
55// The bit mask representing the POWER_GOOD Negated bit of the STATUS_WORD.
56constexpr auto POWER_GOOD_NEGATED = 0x0800;
57
Brandon Wyman12661f12017-08-31 15:28:21 -050058// The bit mask representing the FAN FAULT or WARNING bit of the STATUS_WORD.
59// Bit 2 of the high byte of STATUS_WORD.
60constexpr auto FAN_FAULT = 0x0400;
61
Brandon Wyman764c7972017-08-22 17:05:36 -050062// The bit mask representing the UNITI_IS_OFF bit of the STATUS_WORD.
63constexpr auto UNIT_IS_OFF = 0x0040;
64
Brandon Wymanab05c072017-08-30 18:26:41 -050065// Bit 5 of the STATUS_BYTE, or lower byte of STATUS_WORD is used to indicate
66// an output overvoltage fault.
67constexpr auto VOUT_OV_FAULT = 0x0020;
68
Brandon Wymanb165c252017-08-25 18:59:54 -050069// The bit mask representing that an output overcurrent fault has occurred.
70constexpr auto IOUT_OC_FAULT = 0x0010;
71
Brandon Wyman764c7972017-08-22 17:05:36 -050072// The IBM CFF power supply driver does map this bit to in1_alarm, however,
73// since a number of the other bits are not mapped that way for STATUS_WORD,
74// this code will just read the entire STATUS_WORD and use bit masking to find
75// out if that fault is on.
76constexpr auto VIN_UV_FAULT = 0x0008;
77
Brandon Wyman875b3632017-09-13 18:46:03 -050078// The bit mask representing the TEMPERATURE FAULT or WARNING bit of the
79// STATUS_WORD. Bit 2 of the low byte (STATUS_BYTE).
80constexpr auto TEMPERATURE_FAULT_WARN = 0x0004;
81
Matt Spinlerf0f02b92018-10-25 16:12:43 -050082} // namespace status_word
Brandon Wyman875b3632017-09-13 18:46:03 -050083
Lei YUe8c9cd62019-11-04 14:24:41 +080084namespace status_vout
85{
86// The IBM CFF power supply driver maps MFR's OV_FAULT and VAUX_FAULT to this
87// bit.
88constexpr auto OV_FAULT = 0x80;
89
90// The IBM CFF power supply driver maps MFR's UV_FAULT to this bit.
91constexpr auto UV_FAULT = 0x10;
92} // namespace status_vout
93
Brandon Wyman875b3632017-09-13 18:46:03 -050094namespace status_temperature
95{
96// Overtemperature Fault
97constexpr auto OT_FAULT = 0x80;
Matt Spinlerf0f02b92018-10-25 16:12:43 -050098} // namespace status_temperature
Matt Spinlere7e432b2017-08-21 15:01:40 -050099
Matt Spinler015e3ad2017-08-01 11:20:47 -0500100/**
Matt Spinler4dc46782018-01-04 14:29:16 -0600101 * Where the access should be done
Matt Spinler57868bc2017-08-03 10:07:41 -0500102 */
103enum class Type
104{
Matt Spinlerf0f02b92018-10-25 16:12:43 -0500105 Base, // base device directory
106 Hwmon, // hwmon directory
107 Debug, // pmbus debug directory
108 DeviceDebug, // device debug directory
109 HwmonDeviceDebug // hwmon device debug directory
Matt Spinler57868bc2017-08-03 10:07:41 -0500110};
111
112/**
Matt Spinler015e3ad2017-08-01 11:20:47 -0500113 * @class PMBus
114 *
115 * This class is an interface to communicating with PMBus devices
116 * by reading and writing sysfs files.
Matt Spinler57868bc2017-08-03 10:07:41 -0500117 *
118 * Based on the Type parameter, the accesses can either be done
119 * in the base device directory (the one passed into the constructor),
120 * or in the hwmon directory for the device.
Matt Spinler015e3ad2017-08-01 11:20:47 -0500121 */
122class PMBus
123{
Matt Spinlerf0f02b92018-10-25 16:12:43 -0500124 public:
125 PMBus() = delete;
126 ~PMBus() = default;
127 PMBus(const PMBus&) = default;
128 PMBus& operator=(const PMBus&) = default;
129 PMBus(PMBus&&) = default;
130 PMBus& operator=(PMBus&&) = default;
Matt Spinler015e3ad2017-08-01 11:20:47 -0500131
Matt Spinlerf0f02b92018-10-25 16:12:43 -0500132 /**
133 * Constructor
134 *
135 * @param[in] path - path to the sysfs directory
136 */
137 PMBus(const std::string& path) : basePath(path)
138 {
139 findHwmonDir();
140 }
Matt Spinler015e3ad2017-08-01 11:20:47 -0500141
Matt Spinlerf0f02b92018-10-25 16:12:43 -0500142 /**
143 * Constructor
144 *
145 * This version is required when DeviceDebug
146 * access will be used.
147 *
148 * @param[in] path - path to the sysfs directory
149 * @param[in] driverName - the device driver name
150 * @param[in] instance - chip instance number
151 */
152 PMBus(const std::string& path, const std::string& driverName,
153 size_t instance) :
154 basePath(path),
155 driverName(driverName), instance(instance)
156 {
157 findHwmonDir();
158 }
Matt Spinler015e3ad2017-08-01 11:20:47 -0500159
Matt Spinlerf0f02b92018-10-25 16:12:43 -0500160 /**
161 * Reads a file in sysfs that represents a single bit,
162 * therefore doing a PMBus read.
163 *
164 * @param[in] name - path concatenated to
165 * basePath to read
166 * @param[in] type - Path type
167 *
168 * @return bool - false if result was 0, else true
169 */
170 bool readBit(const std::string& name, Type type);
Matt Spinler8f0d9532017-08-21 11:22:37 -0500171
Matt Spinlerf0f02b92018-10-25 16:12:43 -0500172 /**
173 * Reads a file in sysfs that represents a single bit,
174 * where the page number passed in is substituted
175 * into the name in place of the 'P' character in it.
176 *
177 * @param[in] name - path concatenated to
178 * basePath to read
179 * @param[in] page - page number
180 * @param[in] type - Path type
181 *
182 * @return bool - false if result was 0, else true
183 */
184 bool readBitInPage(const std::string& name, size_t page, Type type);
185 /**
186 * Checks if the file for the given name and type exists.
187 *
188 * @param[in] name - path concatenated to basePath to read
189 * @param[in] type - Path type
190 *
191 * @return bool - True if file exists, false if it does not.
192 */
193 bool exists(const std::string& name, Type type);
Matt Spinler015e3ad2017-08-01 11:20:47 -0500194
Matt Spinlerf0f02b92018-10-25 16:12:43 -0500195 /**
196 * Read byte(s) from file in sysfs.
197 *
198 * @param[in] name - path concatenated to basePath to read
199 * @param[in] type - Path type
200 *
201 * @return uint64_t - Up to 8 bytes of data read from file.
202 */
203 uint64_t read(const std::string& name, Type type);
Brandon Wyman3b7b38b2017-09-25 16:43:45 -0500204
Matt Spinlerf0f02b92018-10-25 16:12:43 -0500205 /**
206 * Read a string from file in sysfs.
207 *
208 * @param[in] name - path concatenated to basePath to read
209 * @param[in] type - Path type
210 *
211 * @return string - The data read from the file.
212 */
213 std::string readString(const std::string& name, Type type);
Matt Spinler015e3ad2017-08-01 11:20:47 -0500214
Matt Spinlerf0f02b92018-10-25 16:12:43 -0500215 /**
216 * Read data from a binary file in sysfs.
217 *
218 * @param[in] name - path concatenated to basePath to read
219 * @param[in] type - Path type
220 * @param[in] length - length of data to read, in bytes
221 *
222 * @return vector<uint8_t> - The data read from the file.
223 */
224 std::vector<uint8_t> readBinary(const std::string& name, Type type,
225 size_t length);
Matt Spinlerfbae7b62018-01-04 14:33:13 -0600226
Matt Spinlerf0f02b92018-10-25 16:12:43 -0500227 /**
228 * Writes an integer value to the file, therefore doing
229 * a PMBus write.
230 *
231 * @param[in] name - path concatenated to
232 * basePath to write
233 * @param[in] value - the value to write
234 * @param[in] type - Path type
235 */
236 void write(const std::string& name, int value, Type type);
Matt Spinlerfa23e332018-01-18 11:24:58 -0600237
Matt Spinlerf0f02b92018-10-25 16:12:43 -0500238 /**
239 * Returns the sysfs base path of this device
240 */
241 inline const auto& path() const
242 {
243 return basePath;
244 }
Matt Spinler015e3ad2017-08-01 11:20:47 -0500245
Matt Spinlerf0f02b92018-10-25 16:12:43 -0500246 /**
247 * Replaces the 'P' in the string passed in with
248 * the page number passed in.
249 *
250 * For example:
251 * insertPageNum("inP_enable", 42)
252 * returns "in42_enable"
253 *
254 * @param[in] templateName - the name string, with a 'P' in it
255 * @param[in] page - the page number to insert where the P was
256 *
257 * @return string - the new string with the page number in it
258 */
259 static std::string insertPageNum(const std::string& templateName,
260 size_t page);
Matt Spinler015e3ad2017-08-01 11:20:47 -0500261
Matt Spinlerf0f02b92018-10-25 16:12:43 -0500262 /**
263 * Finds the path relative to basePath to the hwmon directory
264 * for the device and stores it in hwmonRelPath.
265 */
266 void findHwmonDir();
Matt Spinler015e3ad2017-08-01 11:20:47 -0500267
Matt Spinlerf0f02b92018-10-25 16:12:43 -0500268 /**
269 * Returns the path to use for the passed in type.
270 *
271 * @param[in] type - Path type
272 *
273 * @return fs::path - the full path
274 */
275 fs::path getPath(Type type);
Brandon Wymanff5f3392017-08-11 17:43:22 -0500276
Matt Spinlerf0f02b92018-10-25 16:12:43 -0500277 private:
278 /**
279 * Returns the device name
280 *
281 * This is found in the 'name' file in basePath.
282 *
283 * @return string - the device name
284 */
285 std::string getDeviceName();
Matt Spinler57868bc2017-08-03 10:07:41 -0500286
Matt Spinlerf0f02b92018-10-25 16:12:43 -0500287 /**
288 * The sysfs device path
289 */
290 fs::path basePath;
Matt Spinler015e3ad2017-08-01 11:20:47 -0500291
Matt Spinlerf0f02b92018-10-25 16:12:43 -0500292 /**
293 * The directory name under the basePath hwmon directory
294 */
295 fs::path hwmonDir;
Matt Spinlerba053482018-01-04 14:26:05 -0600296
Matt Spinlerf0f02b92018-10-25 16:12:43 -0500297 /**
298 * The device driver name. Used for finding the device
299 * debug directory. Not required if that directory
300 * isn't used.
301 */
302 std::string driverName;
Matt Spinler015e3ad2017-08-01 11:20:47 -0500303
Matt Spinlerf0f02b92018-10-25 16:12:43 -0500304 /**
305 * The device instance number.
306 *
307 * Used in conjunction with the driver name for finding
308 * the debug directory. Not required if that directory
309 * isn't used.
310 */
311 size_t instance = 0;
Brandon Wymanff5f3392017-08-11 17:43:22 -0500312
Matt Spinlerf0f02b92018-10-25 16:12:43 -0500313 /**
314 * The pmbus debug path with status files
315 */
316 const fs::path debugPath = "/sys/kernel/debug/";
Matt Spinler015e3ad2017-08-01 11:20:47 -0500317};
318
Matt Spinlerf0f02b92018-10-25 16:12:43 -0500319} // namespace pmbus
Lei YUab093322019-10-09 16:43:22 +0800320} // namespace phosphor