Lines Matching full:pmbus
9 namespace pmbus namespace
14 // The file name Linux uses to capture the READ_VIN from pmbus.
17 // The file name Linux uses to capture the MFR_POUT_MAX from pmbus.
37 // The file name Linux uses to capture the STATUS_WORD from pmbus.
40 // The file name Linux uses to capture the STATUS_INPUT from pmbus.
135 // From PMBus Specification Part II Revsion 1.2:
158 Debug, // pmbus debug directory
166 * This is a base class for PMBus to assist with unit testing via mocking.
188 * Wrapper function for PMBus
199 * @class PMBus
201 * This class is an interface to communicating with PMBus devices
208 class PMBus : public PMBusBase class
211 PMBus() = delete;
212 virtual ~PMBus() = default;
213 PMBus(const PMBus&) = default;
214 PMBus& operator=(const PMBus&) = default;
215 PMBus(PMBus&&) = default;
216 PMBus& operator=(PMBus&&) = default;
223 PMBus(const std::string& path) : basePath(path) in PMBus() function in phosphor::pmbus::PMBus
238 PMBus(const std::string& path, const std::string& driverName, in PMBus() function in phosphor::pmbus::PMBus
246 * Wrapper function for PMBus
258 * therefore doing a PMBus read.
327 * a PMBus write.
422 * The pmbus debug path with status files
427 } // namespace pmbus