blob: 707a745c0e39c131398d9713928c10da0d1d886f [file] [log] [blame]
Brandon Wymana0f33ce2019-10-17 18:32:29 -05001#pragma once
2
Brandon Wyman8d195772020-01-27 15:03:51 -06003#include "pmbus.hpp"
Brandon Wymanaed1f752019-11-25 18:10:52 -06004#include "types.hpp"
Brandon Wyman3f1242f2020-01-28 13:11:25 -06005#include "utility.hpp"
Brandon Wymanaed1f752019-11-25 18:10:52 -06006
7#include <sdbusplus/bus/match.hpp>
8
Brandon Wymana0f33ce2019-10-17 18:32:29 -05009namespace phosphor::power::psu
10{
Brandon Wyman3f1242f2020-01-28 13:11:25 -060011
Brandon Wymana0f33ce2019-10-17 18:32:29 -050012/**
13 * @class PowerSupply
14 * Represents a PMBus power supply device.
15 */
16class PowerSupply
17{
18 public:
Brandon Wymanaed1f752019-11-25 18:10:52 -060019 PowerSupply() = delete;
Brandon Wymana0f33ce2019-10-17 18:32:29 -050020 PowerSupply(const PowerSupply&) = delete;
21 PowerSupply(PowerSupply&&) = delete;
22 PowerSupply& operator=(const PowerSupply&) = delete;
23 PowerSupply& operator=(PowerSupply&&) = delete;
24 ~PowerSupply() = default;
25
26 /**
Brandon Wymanc63941c2020-01-27 16:49:33 -060027 * @param[in] invpath - String for inventory path to use
28 * @param[in] i2cbus - The bus number this power supply is on
29 * @param[in] i2caddr - The 16-bit I2C address of the power supply
Brandon Wymanaed1f752019-11-25 18:10:52 -060030 */
Brandon Wymanc63941c2020-01-27 16:49:33 -060031 PowerSupply(sdbusplus::bus::bus& bus, const std::string& invpath,
32 std::uint8_t i2cbus, const std::string& i2caddr) :
33 bus(bus),
Brandon Wyman8d195772020-01-27 15:03:51 -060034 inventoryPath(invpath),
35 pmbusIntf(phosphor::pmbus::createPMBus(i2cbus, i2caddr))
Brandon Wymanaed1f752019-11-25 18:10:52 -060036 {
37 // Setup the functions to call when the D-Bus inventory path for the
38 // Present property changes.
39 presentMatch = std::make_unique<sdbusplus::bus::match_t>(
40 bus,
41 sdbusplus::bus::match::rules::propertiesChanged(inventoryPath,
42 INVENTORY_IFACE),
43 [this](auto& msg) { this->inventoryChanged(msg); });
44 presentAddedMatch = std::make_unique<sdbusplus::bus::match_t>(
45 bus,
46 sdbusplus::bus::match::rules::interfacesAdded() +
47 sdbusplus::bus::match::rules::path_namespace(inventoryPath),
48 [this](auto& msg) { this->inventoryChanged(msg); });
49 // Get the current state of the Present property.
50 updatePresence();
51 }
52
Brandon Wyman3f1242f2020-01-28 13:11:25 -060053 phosphor::pmbus::PMBusBase& getPMBus()
54 {
55 return *pmbusIntf;
56 }
57
Brandon Wymanaed1f752019-11-25 18:10:52 -060058 /**
Brandon Wymana0f33ce2019-10-17 18:32:29 -050059 * Power supply specific function to analyze for faults/errors.
60 *
61 * Various PMBus status bits will be checked for fault conditions.
62 * If a certain fault bits are on, the appropriate error will be
63 * committed.
64 */
Brandon Wyman3f1242f2020-01-28 13:11:25 -060065 void analyze();
Brandon Wymana0f33ce2019-10-17 18:32:29 -050066
67 /**
68 * Write PMBus CLEAR_FAULTS
69 *
70 * This function will be called in various situations in order to clear
71 * any fault status bits that may have been set, in order to start over
72 * with a clean state. Presence changes and power state changes will
73 * want to clear any faults logged.
74 */
Brandon Wyman3c208462020-05-13 16:25:58 -050075 void clearFaults();
Brandon Wymana0f33ce2019-10-17 18:32:29 -050076
77 /**
78 * @brief Adds properties to the inventory.
79 *
80 * Reads the values from the device and writes them to the
81 * associated power supply D-Bus inventory object.
82 *
83 * This needs to be done on startup, and each time the presence
84 * state changes.
85 *
86 * Properties added:
87 * - Serial Number
88 * - Part Number
89 * - CCIN (Customer Card Identification Number) - added as the Model
90 * - Firmware version
91 */
92 void updateInventory()
93 {
94 }
95
Brandon Wymanaed1f752019-11-25 18:10:52 -060096 /**
97 * @brief Accessor function to indicate present status
98 */
99 bool isPresent() const
100 {
101 return present;
102 }
103
Brandon Wyman3f1242f2020-01-28 13:11:25 -0600104 /**
105 * @brief Returns true if a fault was found.
106 */
107 bool isFaulted() const
108 {
109 return faultFound;
110 }
111
112 /**
113 * @brief Returns true if INPUT fault occurred.
114 */
115 bool hasInputFault() const
116 {
117 return inputFault;
118 }
119
120 /**
121 * @brief Returns true if MFRSPECIFIC occurred.
122 */
123 bool hasMFRFault() const
124 {
125 return mfrFault;
126 }
127
128 /**
129 * @brief Returns true if VIN_UV_FAULT occurred.
130 */
131 bool hasVINUVFault() const
132 {
133 return vinUVFault;
134 }
135
Brandon Wymana0f33ce2019-10-17 18:32:29 -0500136 private:
Brandon Wymanaed1f752019-11-25 18:10:52 -0600137 /** @brief systemd bus member */
138 sdbusplus::bus::bus& bus;
139
Brandon Wymana0f33ce2019-10-17 18:32:29 -0500140 /** @brief True if a fault has already been found and not cleared */
141 bool faultFound = false;
Brandon Wymanaed1f752019-11-25 18:10:52 -0600142
Brandon Wyman3f1242f2020-01-28 13:11:25 -0600143 /** @brief True if bit 5 of STATUS_WORD high byte is on. */
144 bool inputFault = false;
145
146 /** @brief True if bit 4 of STATUS_WORD high byte is on. */
147 bool mfrFault = false;
148
149 /** @brief True if bit 3 of STATUS_WORD low byte is on. */
150 bool vinUVFault = false;
151
Brandon Wymanaed1f752019-11-25 18:10:52 -0600152 /**
153 * @brief D-Bus path to use for this power supply's inventory status.
154 **/
155 std::string inventoryPath;
156
157 /** @brief True if the power supply is present. */
158 bool present = false;
159
160 /** @brief D-Bus match variable used to subscribe to Present property
161 * changes.
162 **/
163 std::unique_ptr<sdbusplus::bus::match_t> presentMatch;
164
165 /** @brief D-Bus match variable used to subscribe for Present property
166 * interface added.
167 */
168 std::unique_ptr<sdbusplus::bus::match_t> presentAddedMatch;
169
170 /**
Brandon Wyman8d195772020-01-27 15:03:51 -0600171 * @brief Pointer to the PMBus interface
172 *
173 * Used to read or write to/from PMBus power supply devices.
174 */
175 std::unique_ptr<phosphor::pmbus::PMBusBase> pmbusIntf;
176
177 /**
Brandon Wymanaed1f752019-11-25 18:10:52 -0600178 * @brief Updates the presence status by querying D-Bus
179 *
180 * The D-Bus inventory properties for this power supply will be read to
181 * determine if the power supply is present or not and update this
182 * object's present member variable to reflect current status.
183 **/
184 void updatePresence();
185
186 /**
187 * @brief Callback for inventory property changes
188 *
189 * Process change of Present property for power supply.
190 *
191 * @param[in] msg - Data associated with Present change signal
192 **/
193 void inventoryChanged(sdbusplus::message::message& msg);
Brandon Wymana0f33ce2019-10-17 18:32:29 -0500194};
195
196} // namespace phosphor::power::psu