blob: 123e4fd1e7151e93ed6ea88c58e5a29595aec1db [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
Brandon Wyman3f1242f2020-01-28 13:11:25 -060055// The bit mask representing the MFRSPECIFIC fault, bit 4 of STATUS_WORD high
56// byte. A manufacturer specific fault or warning has occurred.
57constexpr auto MFR_SPECIFIC_FAULT = 0x1000;
58
Brandon Wyman764c7972017-08-22 17:05:36 -050059// The bit mask representing the POWER_GOOD Negated bit of the STATUS_WORD.
60constexpr auto POWER_GOOD_NEGATED = 0x0800;
61
Brandon Wyman12661f12017-08-31 15:28:21 -050062// The bit mask representing the FAN FAULT or WARNING bit of the STATUS_WORD.
63// Bit 2 of the high byte of STATUS_WORD.
64constexpr auto FAN_FAULT = 0x0400;
65
Brandon Wyman764c7972017-08-22 17:05:36 -050066// The bit mask representing the UNITI_IS_OFF bit of the STATUS_WORD.
67constexpr auto UNIT_IS_OFF = 0x0040;
68
Brandon Wymanab05c072017-08-30 18:26:41 -050069// Bit 5 of the STATUS_BYTE, or lower byte of STATUS_WORD is used to indicate
70// an output overvoltage fault.
71constexpr auto VOUT_OV_FAULT = 0x0020;
72
Brandon Wymanb165c252017-08-25 18:59:54 -050073// The bit mask representing that an output overcurrent fault has occurred.
74constexpr auto IOUT_OC_FAULT = 0x0010;
75
Brandon Wyman764c7972017-08-22 17:05:36 -050076// The IBM CFF power supply driver does map this bit to in1_alarm, however,
77// since a number of the other bits are not mapped that way for STATUS_WORD,
78// this code will just read the entire STATUS_WORD and use bit masking to find
79// out if that fault is on.
80constexpr auto VIN_UV_FAULT = 0x0008;
81
Brandon Wyman875b3632017-09-13 18:46:03 -050082// The bit mask representing the TEMPERATURE FAULT or WARNING bit of the
83// STATUS_WORD. Bit 2 of the low byte (STATUS_BYTE).
84constexpr auto TEMPERATURE_FAULT_WARN = 0x0004;
85
Matt Spinlerf0f02b92018-10-25 16:12:43 -050086} // namespace status_word
Brandon Wyman875b3632017-09-13 18:46:03 -050087
Lei YUe8c9cd62019-11-04 14:24:41 +080088namespace status_vout
89{
90// The IBM CFF power supply driver maps MFR's OV_FAULT and VAUX_FAULT to this
91// bit.
92constexpr auto OV_FAULT = 0x80;
93
94// The IBM CFF power supply driver maps MFR's UV_FAULT to this bit.
95constexpr auto UV_FAULT = 0x10;
96} // namespace status_vout
97
Brandon Wyman875b3632017-09-13 18:46:03 -050098namespace status_temperature
99{
100// Overtemperature Fault
101constexpr auto OT_FAULT = 0x80;
Matt Spinlerf0f02b92018-10-25 16:12:43 -0500102} // namespace status_temperature
Matt Spinlere7e432b2017-08-21 15:01:40 -0500103
Brandon Wyman59a35792020-06-04 12:37:40 -0500104constexpr auto ON_OFF_CONFIG = "on_off_config";
105
106// From PMBus Specification Part II Revsion 1.2:
107// The ON_OFF_CONFIG command configures the combination of CONTROL pin input
108// and serial bus commands needed to turn the unit on and off. This includes how
109// the unit responds when power is applied.
110// Bits [7:5] - 000 - Reserved
111// Bit 4 - 1 - Unit does not power up until commanded by the CONTROL pin and
112// OPERATION command (as programmed in bits [3:0]).
113// Bit 3 - 0 - Unit ignores the on/off portion of the OPERATION command from
114// serial bus.
115// Bit 2 - 1 - Unit requires the CONTROL pin to be asserted to start the unit.
116// Bit 1 - 0 - Polarity of the CONTROL pin. Active low (Pull pin low to start
117// the unit).
118// Bit 0 - 1 - Turn off the output and stop transferring energy to the output as
119// fast as possible.
120constexpr auto ON_OFF_CONFIG_CONTROL_PIN_ONLY = 0x15;
121
Matt Spinler015e3ad2017-08-01 11:20:47 -0500122/**
Matt Spinler4dc46782018-01-04 14:29:16 -0600123 * Where the access should be done
Matt Spinler57868bc2017-08-03 10:07:41 -0500124 */
125enum class Type
126{
Matt Spinlerf0f02b92018-10-25 16:12:43 -0500127 Base, // base device directory
128 Hwmon, // hwmon directory
129 Debug, // pmbus debug directory
130 DeviceDebug, // device debug directory
131 HwmonDeviceDebug // hwmon device debug directory
Matt Spinler57868bc2017-08-03 10:07:41 -0500132};
133
134/**
Brandon Wyman8d195772020-01-27 15:03:51 -0600135 * @class PMBusBase
136 *
137 * This is a base class for PMBus to assist with unit testing via mocking.
138 */
139class PMBusBase
140{
141 public:
142 virtual ~PMBusBase() = default;
Brandon Wyman3f1242f2020-01-28 13:11:25 -0600143
144 virtual uint64_t read(const std::string& name, Type type) = 0;
Brandon Wyman59a35792020-06-04 12:37:40 -0500145 virtual void writeBinary(const std::string& name, std::vector<uint8_t> data,
146 Type type) = 0;
Brandon Wyman8d195772020-01-27 15:03:51 -0600147};
148
149/**
150 * Wrapper function for PMBus
151 *
152 * @param[in] bus - I2C bus
153 * @param[in] address - I2C address (as a 2-byte string, e.g. 0069)
154 *
155 * @return PMBusBase pointer
156 */
157std::unique_ptr<PMBusBase> createPMBus(std::uint8_t bus,
158 const std::string& address);
159
160/**
Matt Spinler015e3ad2017-08-01 11:20:47 -0500161 * @class PMBus
162 *
163 * This class is an interface to communicating with PMBus devices
164 * by reading and writing sysfs files.
Matt Spinler57868bc2017-08-03 10:07:41 -0500165 *
166 * Based on the Type parameter, the accesses can either be done
167 * in the base device directory (the one passed into the constructor),
168 * or in the hwmon directory for the device.
Matt Spinler015e3ad2017-08-01 11:20:47 -0500169 */
Brandon Wyman8d195772020-01-27 15:03:51 -0600170class PMBus : public PMBusBase
Matt Spinler015e3ad2017-08-01 11:20:47 -0500171{
Matt Spinlerf0f02b92018-10-25 16:12:43 -0500172 public:
173 PMBus() = delete;
Brandon Wyman8d195772020-01-27 15:03:51 -0600174 virtual ~PMBus() = default;
Matt Spinlerf0f02b92018-10-25 16:12:43 -0500175 PMBus(const PMBus&) = default;
176 PMBus& operator=(const PMBus&) = default;
177 PMBus(PMBus&&) = default;
178 PMBus& operator=(PMBus&&) = default;
Matt Spinler015e3ad2017-08-01 11:20:47 -0500179
Matt Spinlerf0f02b92018-10-25 16:12:43 -0500180 /**
181 * Constructor
182 *
183 * @param[in] path - path to the sysfs directory
184 */
185 PMBus(const std::string& path) : basePath(path)
186 {
187 findHwmonDir();
188 }
Matt Spinler015e3ad2017-08-01 11:20:47 -0500189
Matt Spinlerf0f02b92018-10-25 16:12:43 -0500190 /**
191 * Constructor
192 *
193 * This version is required when DeviceDebug
194 * access will be used.
195 *
196 * @param[in] path - path to the sysfs directory
197 * @param[in] driverName - the device driver name
198 * @param[in] instance - chip instance number
199 */
200 PMBus(const std::string& path, const std::string& driverName,
201 size_t instance) :
202 basePath(path),
203 driverName(driverName), instance(instance)
204 {
205 findHwmonDir();
206 }
Matt Spinler015e3ad2017-08-01 11:20:47 -0500207
Matt Spinlerf0f02b92018-10-25 16:12:43 -0500208 /**
Brandon Wyman8d195772020-01-27 15:03:51 -0600209 * Wrapper function for PMBus
210 *
211 * @param[in] bus - I2C bus
212 * @param[in] address - I2C address (as a 2-byte string, e.g. 0069)
213 *
214 * @return PMBusBase pointer
215 */
216 static std::unique_ptr<PMBusBase> createPMBus(std::uint8_t bus,
217 const std::string& address);
218
219 /**
Matt Spinlerf0f02b92018-10-25 16:12:43 -0500220 * Reads a file in sysfs that represents a single bit,
221 * therefore doing a PMBus read.
222 *
223 * @param[in] name - path concatenated to
224 * basePath to read
225 * @param[in] type - Path type
226 *
227 * @return bool - false if result was 0, else true
228 */
229 bool readBit(const std::string& name, Type type);
Matt Spinler8f0d9532017-08-21 11:22:37 -0500230
Matt Spinlerf0f02b92018-10-25 16:12:43 -0500231 /**
232 * Reads a file in sysfs that represents a single bit,
233 * where the page number passed in is substituted
234 * into the name in place of the 'P' character in it.
235 *
236 * @param[in] name - path concatenated to
237 * basePath to read
238 * @param[in] page - page number
239 * @param[in] type - Path type
240 *
241 * @return bool - false if result was 0, else true
242 */
243 bool readBitInPage(const std::string& name, size_t page, Type type);
244 /**
245 * Checks if the file for the given name and type exists.
246 *
247 * @param[in] name - path concatenated to basePath to read
248 * @param[in] type - Path type
249 *
250 * @return bool - True if file exists, false if it does not.
251 */
252 bool exists(const std::string& name, Type type);
Matt Spinler015e3ad2017-08-01 11:20:47 -0500253
Matt Spinlerf0f02b92018-10-25 16:12:43 -0500254 /**
255 * Read byte(s) from file in sysfs.
256 *
257 * @param[in] name - path concatenated to basePath to read
258 * @param[in] type - Path type
259 *
260 * @return uint64_t - Up to 8 bytes of data read from file.
261 */
Brandon Wyman3f1242f2020-01-28 13:11:25 -0600262 uint64_t read(const std::string& name, Type type) override;
Brandon Wyman3b7b38b2017-09-25 16:43:45 -0500263
Matt Spinlerf0f02b92018-10-25 16:12:43 -0500264 /**
265 * Read a string from file in sysfs.
266 *
267 * @param[in] name - path concatenated to basePath to read
268 * @param[in] type - Path type
269 *
270 * @return string - The data read from the file.
271 */
272 std::string readString(const std::string& name, Type type);
Matt Spinler015e3ad2017-08-01 11:20:47 -0500273
Matt Spinlerf0f02b92018-10-25 16:12:43 -0500274 /**
275 * Read data from a binary file in sysfs.
276 *
277 * @param[in] name - path concatenated to basePath to read
278 * @param[in] type - Path type
279 * @param[in] length - length of data to read, in bytes
280 *
281 * @return vector<uint8_t> - The data read from the file.
282 */
283 std::vector<uint8_t> readBinary(const std::string& name, Type type,
284 size_t length);
Matt Spinlerfbae7b62018-01-04 14:33:13 -0600285
Matt Spinlerf0f02b92018-10-25 16:12:43 -0500286 /**
287 * Writes an integer value to the file, therefore doing
288 * a PMBus write.
289 *
290 * @param[in] name - path concatenated to
291 * basePath to write
292 * @param[in] value - the value to write
293 * @param[in] type - Path type
294 */
295 void write(const std::string& name, int value, Type type);
Matt Spinlerfa23e332018-01-18 11:24:58 -0600296
Matt Spinlerf0f02b92018-10-25 16:12:43 -0500297 /**
Brandon Wyman59a35792020-06-04 12:37:40 -0500298 * Writes binary data to a file in sysfs.
299 *
300 * @param[in] name - path concatenated to basePath to write
301 * @param[in] data - The data to write to the file
302 * @param[in] type - Path type
303 */
304 void writeBinary(const std::string& name, std::vector<uint8_t> data,
305 Type type) override;
306
307 /**
Matt Spinlerf0f02b92018-10-25 16:12:43 -0500308 * Returns the sysfs base path of this device
309 */
310 inline const auto& path() const
311 {
312 return basePath;
313 }
Matt Spinler015e3ad2017-08-01 11:20:47 -0500314
Matt Spinlerf0f02b92018-10-25 16:12:43 -0500315 /**
316 * Replaces the 'P' in the string passed in with
317 * the page number passed in.
318 *
319 * For example:
320 * insertPageNum("inP_enable", 42)
321 * returns "in42_enable"
322 *
323 * @param[in] templateName - the name string, with a 'P' in it
324 * @param[in] page - the page number to insert where the P was
325 *
326 * @return string - the new string with the page number in it
327 */
328 static std::string insertPageNum(const std::string& templateName,
329 size_t page);
Matt Spinler015e3ad2017-08-01 11:20:47 -0500330
Matt Spinlerf0f02b92018-10-25 16:12:43 -0500331 /**
332 * Finds the path relative to basePath to the hwmon directory
333 * for the device and stores it in hwmonRelPath.
334 */
335 void findHwmonDir();
Matt Spinler015e3ad2017-08-01 11:20:47 -0500336
Matt Spinlerf0f02b92018-10-25 16:12:43 -0500337 /**
338 * Returns the path to use for the passed in type.
339 *
340 * @param[in] type - Path type
341 *
342 * @return fs::path - the full path
343 */
344 fs::path getPath(Type type);
Brandon Wymanff5f3392017-08-11 17:43:22 -0500345
Matt Spinlerf0f02b92018-10-25 16:12:43 -0500346 private:
347 /**
348 * Returns the device name
349 *
350 * This is found in the 'name' file in basePath.
351 *
352 * @return string - the device name
353 */
354 std::string getDeviceName();
Matt Spinler57868bc2017-08-03 10:07:41 -0500355
Matt Spinlerf0f02b92018-10-25 16:12:43 -0500356 /**
357 * The sysfs device path
358 */
359 fs::path basePath;
Matt Spinler015e3ad2017-08-01 11:20:47 -0500360
Matt Spinlerf0f02b92018-10-25 16:12:43 -0500361 /**
362 * The directory name under the basePath hwmon directory
363 */
364 fs::path hwmonDir;
Matt Spinlerba053482018-01-04 14:26:05 -0600365
Matt Spinlerf0f02b92018-10-25 16:12:43 -0500366 /**
367 * The device driver name. Used for finding the device
368 * debug directory. Not required if that directory
369 * isn't used.
370 */
371 std::string driverName;
Matt Spinler015e3ad2017-08-01 11:20:47 -0500372
Matt Spinlerf0f02b92018-10-25 16:12:43 -0500373 /**
374 * The device instance number.
375 *
376 * Used in conjunction with the driver name for finding
377 * the debug directory. Not required if that directory
378 * isn't used.
379 */
380 size_t instance = 0;
Brandon Wymanff5f3392017-08-11 17:43:22 -0500381
Matt Spinlerf0f02b92018-10-25 16:12:43 -0500382 /**
383 * The pmbus debug path with status files
384 */
385 const fs::path debugPath = "/sys/kernel/debug/";
Matt Spinler015e3ad2017-08-01 11:20:47 -0500386};
387
Matt Spinlerf0f02b92018-10-25 16:12:43 -0500388} // namespace pmbus
Lei YUab093322019-10-09 16:43:22 +0800389} // namespace phosphor