Matt Spinler | b54357f | 2017-08-21 14:38:54 -0500 | [diff] [blame] | 1 | #pragma once |
| 2 | |
| 3 | #include <algorithm> |
Matt Spinler | 110b284 | 2017-08-21 15:23:27 -0500 | [diff] [blame] | 4 | #include <experimental/filesystem> |
Matt Spinler | b54357f | 2017-08-21 14:38:54 -0500 | [diff] [blame] | 5 | #include <map> |
| 6 | #include <vector> |
| 7 | #include "device.hpp" |
Matt Spinler | d998b73 | 2017-08-21 15:35:54 -0500 | [diff] [blame] | 8 | #include "gpio.hpp" |
Matt Spinler | b54357f | 2017-08-21 14:38:54 -0500 | [diff] [blame] | 9 | #include "pmbus.hpp" |
| 10 | #include "types.hpp" |
| 11 | |
| 12 | namespace witherspoon |
| 13 | { |
| 14 | namespace power |
| 15 | { |
| 16 | |
Matt Spinler | 8bc1283 | 2017-09-19 11:17:54 -0500 | [diff] [blame^] | 17 | //Error type, callout |
| 18 | using PartCallout = |
| 19 | std::tuple<ucd90160::extraAnalysisType, std::string>; |
| 20 | |
Matt Spinler | b54357f | 2017-08-21 14:38:54 -0500 | [diff] [blame] | 21 | /** |
| 22 | * @class UCD90160 |
| 23 | * |
| 24 | * This class implements fault analysis for the UCD90160 |
| 25 | * power sequencer device. |
| 26 | * |
| 27 | */ |
| 28 | class UCD90160 : public Device |
| 29 | { |
| 30 | public: |
| 31 | |
| 32 | UCD90160() = delete; |
| 33 | ~UCD90160() = default; |
| 34 | UCD90160(const UCD90160&) = delete; |
| 35 | UCD90160& operator=(const UCD90160&) = delete; |
| 36 | UCD90160(UCD90160&&) = default; |
| 37 | UCD90160& operator=(UCD90160&&) = default; |
| 38 | |
| 39 | /** |
| 40 | * Constructor |
| 41 | * |
| 42 | * @param[in] instance - the device instance number |
| 43 | */ |
| 44 | UCD90160(size_t instance); |
| 45 | |
| 46 | /** |
| 47 | * Analyzes the device for errors when the device is |
| 48 | * known to be in an error state. A log will be created. |
| 49 | */ |
| 50 | void onFailure() override; |
| 51 | |
| 52 | /** |
| 53 | * Checks the device for errors and only creates a log |
| 54 | * if one is found. |
| 55 | */ |
| 56 | void analyze() override; |
| 57 | |
| 58 | /** |
| 59 | * Clears faults in the device |
| 60 | */ |
Matt Spinler | 81be00b | 2017-09-07 15:28:38 -0500 | [diff] [blame] | 61 | void clearFaults() override |
| 62 | { |
| 63 | } |
Matt Spinler | b54357f | 2017-08-21 14:38:54 -0500 | [diff] [blame] | 64 | |
| 65 | private: |
| 66 | |
| 67 | /** |
Matt Spinler | 7b14db2 | 2017-09-19 10:57:54 -0500 | [diff] [blame] | 68 | * Reports an error for a GPU PGOOD failure |
| 69 | * |
| 70 | * @param[in] callout - the GPU callout string |
| 71 | */ |
| 72 | void gpuPGOODError(const std::string& callout); |
| 73 | |
| 74 | /** |
| 75 | * Reports an error for a GPU OverTemp failure |
| 76 | * |
| 77 | * @param[in] callout - the GPU callout string |
| 78 | */ |
| 79 | void gpuOverTempError(const std::string& callout); |
| 80 | |
| 81 | /** |
Matt Spinler | fcd4a71 | 2017-09-19 10:45:07 -0500 | [diff] [blame] | 82 | * Given the device path for a chip, find its gpiochip |
| 83 | * path |
| 84 | * |
| 85 | * @param[in] path - device path, like |
| 86 | * /sys/devices/.../i2c-11/11-0064 |
| 87 | * |
| 88 | * @return fs::path - The gpiochip path, like |
| 89 | * /dev/gpiochip1 |
Matt Spinler | 110b284 | 2017-08-21 15:23:27 -0500 | [diff] [blame] | 90 | */ |
Matt Spinler | fcd4a71 | 2017-09-19 10:45:07 -0500 | [diff] [blame] | 91 | static std::experimental::filesystem::path findGPIODevice( |
| 92 | const std::experimental::filesystem::path& path); |
Matt Spinler | 110b284 | 2017-08-21 15:23:27 -0500 | [diff] [blame] | 93 | |
| 94 | /** |
Matt Spinler | b54357f | 2017-08-21 14:38:54 -0500 | [diff] [blame] | 95 | * Checks for VOUT faults on the device. |
| 96 | * |
| 97 | * This device can monitor voltages of its dependent |
| 98 | * devices, and VOUT faults are voltage faults |
| 99 | * on these devices. |
| 100 | * |
| 101 | * @return bool - true if an error log was created |
| 102 | */ |
| 103 | bool checkVOUTFaults(); |
| 104 | |
| 105 | /** |
| 106 | * Checks for PGOOD faults on the device. |
| 107 | * |
| 108 | * This device can monitor the PGOOD signals of its dependent |
| 109 | * devices, and this check will look for faults of |
| 110 | * those PGOODs. |
| 111 | * |
| 112 | * @param[in] polling - If this is running while polling for errors, |
| 113 | * as opposing to analyzing a fail condition. |
| 114 | * |
| 115 | * @return bool - true if an error log was created |
| 116 | */ |
| 117 | bool checkPGOODFaults(bool polling); |
| 118 | |
| 119 | /** |
| 120 | * Creates an error log when the device has an error |
| 121 | * but it isn't a PGOOD or voltage failure. |
| 122 | */ |
| 123 | void createPowerFaultLog(); |
| 124 | |
| 125 | /** |
Matt Spinler | e7e432b | 2017-08-21 15:01:40 -0500 | [diff] [blame] | 126 | * Reads the status_word register |
| 127 | * |
| 128 | * @return uint16_t - the register contents |
| 129 | */ |
| 130 | uint16_t readStatusWord(); |
| 131 | |
| 132 | /** |
| 133 | * Reads the mfr_status register |
| 134 | * |
| 135 | * @return uint32_t - the register contents |
| 136 | */ |
| 137 | uint32_t readMFRStatus(); |
| 138 | |
| 139 | /** |
Matt Spinler | 8bc1283 | 2017-09-19 11:17:54 -0500 | [diff] [blame^] | 140 | * Does any additional fault analysis based on the |
| 141 | * value of the extraAnalysisType field in the GPIOConfig |
| 142 | * entry. |
| 143 | * |
| 144 | * Used to get better callouts. |
| 145 | * |
| 146 | * @param[in] config - the GPIOConfig entry to use |
| 147 | * |
| 148 | * @return bool - true if a HW error was found, false else |
| 149 | */ |
| 150 | bool doExtraAnalysis(const ucd90160::GPIConfig& config); |
| 151 | |
| 152 | /** |
| 153 | * Does additional fault analysis using GPIOs to |
| 154 | * specifically identify the failing part. |
| 155 | * |
| 156 | * Used when there are too many PGOOD inputs for |
| 157 | * the UCD90160 to handle, so just a summary bit |
| 158 | * is wired into the chip, and then the specific |
| 159 | * fault GPIOs are off of a different GPIO device, |
| 160 | * like an IO expander. |
| 161 | * |
| 162 | * @param[in] type - the type of analysis to do |
| 163 | * |
| 164 | * @return bool - true if a HW error was found, false else |
| 165 | */ |
| 166 | bool doGPIOAnalysis(ucd90160::extraAnalysisType type); |
| 167 | |
| 168 | /** |
Matt Spinler | e7e432b | 2017-08-21 15:01:40 -0500 | [diff] [blame] | 169 | * Says if we've already logged a Vout fault |
| 170 | * |
| 171 | * The policy is only 1 of the same error will |
| 172 | * be logged for the duration of a class instance. |
| 173 | * |
| 174 | * @param[in] page - the page to check |
| 175 | * |
| 176 | * @return bool - if we've already logged a fault against |
| 177 | * this page |
| 178 | */ |
| 179 | inline bool isVoutFaultLogged(uint32_t page) const |
| 180 | { |
| 181 | return std::find(voutErrors.begin(), |
| 182 | voutErrors.end(), |
| 183 | page) != voutErrors.end(); |
| 184 | } |
| 185 | |
| 186 | /** |
| 187 | * Saves that a Vout fault has been logged |
| 188 | * |
| 189 | * @param[in] page - the page the error was logged against |
| 190 | */ |
| 191 | inline void setVoutFaultLogged(uint32_t page) |
| 192 | { |
| 193 | voutErrors.push_back(page); |
| 194 | } |
| 195 | |
| 196 | /** |
Matt Spinler | d998b73 | 2017-08-21 15:35:54 -0500 | [diff] [blame] | 197 | * Says if we've already logged a PGOOD fault |
| 198 | * |
| 199 | * The policy is only 1 of the same errors will |
| 200 | * be logged for the duration of a class instance. |
| 201 | * |
| 202 | * @param[in] input - the input to check |
| 203 | * |
| 204 | * @return bool - if we've already logged a fault against |
| 205 | * this input |
| 206 | */ |
| 207 | inline bool isPGOODFaultLogged(uint32_t input) const |
| 208 | { |
| 209 | return std::find(pgoodErrors.begin(), |
| 210 | pgoodErrors.end(), |
| 211 | input) != pgoodErrors.end(); |
| 212 | } |
| 213 | |
| 214 | /** |
Matt Spinler | 8bc1283 | 2017-09-19 11:17:54 -0500 | [diff] [blame^] | 215 | * Says if we've already logged a specific fault |
| 216 | * against a specific part |
| 217 | * |
| 218 | * @param[in] callout - error type and name tuple |
| 219 | * |
| 220 | * @return bool - if we've already logged this fault |
| 221 | * against this part |
| 222 | */ |
| 223 | inline bool isPartCalledOut(const PartCallout& callout) const |
| 224 | { |
| 225 | return std::find(callouts.begin(), |
| 226 | callouts.end(), |
| 227 | callout) != callouts.end(); |
| 228 | } |
| 229 | |
| 230 | /** |
Matt Spinler | d998b73 | 2017-08-21 15:35:54 -0500 | [diff] [blame] | 231 | * Saves that a PGOOD fault has been logged |
| 232 | * |
| 233 | * @param[in] input - the input the error was logged against |
| 234 | */ |
| 235 | inline void setPGOODFaultLogged(uint32_t input) |
| 236 | { |
| 237 | pgoodErrors.push_back(input); |
| 238 | } |
| 239 | |
| 240 | /** |
Matt Spinler | 8bc1283 | 2017-09-19 11:17:54 -0500 | [diff] [blame^] | 241 | * Saves that a specific fault on a specific part has been done |
| 242 | * |
| 243 | * @param[in] callout - error type and name tuple |
| 244 | */ |
| 245 | inline void setPartCallout(const PartCallout& callout) |
| 246 | { |
| 247 | callouts.push_back(callout); |
| 248 | } |
| 249 | |
| 250 | /** |
Matt Spinler | e7e432b | 2017-08-21 15:01:40 -0500 | [diff] [blame] | 251 | * List of pages that Vout errors have |
| 252 | * already been logged against |
| 253 | */ |
| 254 | std::vector<uint32_t> voutErrors; |
| 255 | |
| 256 | /** |
Matt Spinler | d998b73 | 2017-08-21 15:35:54 -0500 | [diff] [blame] | 257 | * List of inputs that PGOOD errors have |
| 258 | * already been logged against |
| 259 | */ |
| 260 | std::vector<uint32_t> pgoodErrors; |
| 261 | |
| 262 | /** |
Matt Spinler | 8bc1283 | 2017-09-19 11:17:54 -0500 | [diff] [blame^] | 263 | * List of callouts that already been done |
| 264 | */ |
| 265 | std::vector<PartCallout> callouts; |
| 266 | |
| 267 | /** |
Matt Spinler | b54357f | 2017-08-21 14:38:54 -0500 | [diff] [blame] | 268 | * The read/write interface to this hardware |
| 269 | */ |
| 270 | pmbus::PMBus interface; |
| 271 | |
| 272 | /** |
Matt Spinler | d998b73 | 2017-08-21 15:35:54 -0500 | [diff] [blame] | 273 | * A map of GPI pin IDs to the GPIO object |
| 274 | * used to access them |
| 275 | */ |
| 276 | std::map<size_t, std::unique_ptr<gpio::GPIO>> gpios; |
| 277 | |
| 278 | /** |
Matt Spinler | b54357f | 2017-08-21 14:38:54 -0500 | [diff] [blame] | 279 | * Keeps track of device access errors to avoid repeatedly |
| 280 | * logging errors for bad hardware |
| 281 | */ |
| 282 | bool accessError = false; |
| 283 | |
| 284 | /** |
Matt Spinler | 8bc1283 | 2017-09-19 11:17:54 -0500 | [diff] [blame^] | 285 | * Keeps track of GPIO access errors when doing the in depth |
| 286 | * PGOOD fault analysis to avoid repeatedly logging errors |
| 287 | * for bad hardware |
| 288 | */ |
| 289 | bool gpioAccessError = false; |
| 290 | |
| 291 | /** |
Matt Spinler | 110b284 | 2017-08-21 15:23:27 -0500 | [diff] [blame] | 292 | * The path to the GPIO device used to read |
| 293 | * the GPI (PGOOD) status |
| 294 | */ |
| 295 | std::experimental::filesystem::path gpioDevice; |
| 296 | |
| 297 | /** |
Matt Spinler | b54357f | 2017-08-21 14:38:54 -0500 | [diff] [blame] | 298 | * Map of device instance to the instance specific data |
| 299 | */ |
| 300 | static const ucd90160::DeviceMap deviceMap; |
| 301 | }; |
| 302 | |
| 303 | } |
| 304 | } |