| Jim Wright | 7945dd2 | 2021-04-06 16:55:15 -0500 | [diff] [blame] | 1 | #pragma once | 
|  | 2 |  | 
|  | 3 | #include "pmbus.hpp" | 
|  | 4 | #include "power_sequencer_monitor.hpp" | 
|  | 5 |  | 
| Jim Wright | d8fc068 | 2022-01-11 15:36:00 -0600 | [diff] [blame] | 6 | #include <gpiod.hpp> | 
| Jim Wright | 7945dd2 | 2021-04-06 16:55:15 -0500 | [diff] [blame] | 7 | #include <sdbusplus/bus.hpp> | 
| Jim Wright | 56ae78e | 2021-12-01 14:46:15 -0600 | [diff] [blame] | 8 | #include <sdbusplus/bus/match.hpp> | 
| Jim Wright | 7945dd2 | 2021-04-06 16:55:15 -0500 | [diff] [blame] | 9 |  | 
| Jim Wright | d8a8617 | 2021-12-08 11:38:26 -0600 | [diff] [blame] | 10 | #include <filesystem> | 
|  | 11 | #include <vector> | 
|  | 12 |  | 
| Jim Wright | 7945dd2 | 2021-04-06 16:55:15 -0500 | [diff] [blame] | 13 | namespace phosphor::power::sequencer | 
|  | 14 | { | 
|  | 15 |  | 
| Jim Wright | d8a8617 | 2021-12-08 11:38:26 -0600 | [diff] [blame] | 16 | struct Pin | 
|  | 17 | { | 
|  | 18 | std::string name; | 
| Jim Wright | d8fc068 | 2022-01-11 15:36:00 -0600 | [diff] [blame] | 19 | unsigned int line; | 
| Jim Wright | d8a8617 | 2021-12-08 11:38:26 -0600 | [diff] [blame] | 20 | }; | 
|  | 21 |  | 
| Jim Wright | 7945dd2 | 2021-04-06 16:55:15 -0500 | [diff] [blame] | 22 | /** | 
|  | 23 | * @class UCD90320Monitor | 
|  | 24 | * This class implements fault analysis for the UCD90320 | 
|  | 25 | * power sequencer device. | 
|  | 26 | */ | 
|  | 27 | class UCD90320Monitor : public PowerSequencerMonitor | 
|  | 28 | { | 
|  | 29 | public: | 
|  | 30 | UCD90320Monitor() = delete; | 
|  | 31 | UCD90320Monitor(const UCD90320Monitor&) = delete; | 
|  | 32 | UCD90320Monitor& operator=(const UCD90320Monitor&) = delete; | 
|  | 33 | UCD90320Monitor(UCD90320Monitor&&) = delete; | 
|  | 34 | UCD90320Monitor& operator=(UCD90320Monitor&&) = delete; | 
|  | 35 | virtual ~UCD90320Monitor() = default; | 
|  | 36 |  | 
|  | 37 | /** | 
|  | 38 | * Create a device object for UCD90320 monitoring. | 
| Jim Wright | 3accffe | 2022-03-10 17:19:42 -0600 | [diff] [blame] | 39 | * @param bus D-Bus bus object | 
|  | 40 | * @param i2cBus The bus number of the power sequencer device | 
|  | 41 | * @param i2cAddress The I2C address of the power sequencer device | 
| Jim Wright | 7945dd2 | 2021-04-06 16:55:15 -0500 | [diff] [blame] | 42 | */ | 
|  | 43 | UCD90320Monitor(sdbusplus::bus::bus& bus, std::uint8_t i2cBus, | 
| Jim Wright | d8fc068 | 2022-01-11 15:36:00 -0600 | [diff] [blame] | 44 | std::uint16_t i2cAddress); | 
| Jim Wright | 7945dd2 | 2021-04-06 16:55:15 -0500 | [diff] [blame] | 45 |  | 
| Jim Wright | 56ae78e | 2021-12-01 14:46:15 -0600 | [diff] [blame] | 46 | /** | 
|  | 47 | * Callback function to handle interfacesAdded D-Bus signals | 
|  | 48 | * @param msg Expanded sdbusplus message data | 
|  | 49 | */ | 
|  | 50 | void interfacesAddedHandler(sdbusplus::message::message& msg); | 
|  | 51 |  | 
| Jim Wright | 71a1413 | 2022-01-28 09:46:46 -0600 | [diff] [blame] | 52 | /** @copydoc PowerSequencerMonitor::onFailure() */ | 
|  | 53 | void onFailure(bool timeout, const std::string& powerSupplyError) override; | 
|  | 54 |  | 
| Jim Wright | 7945dd2 | 2021-04-06 16:55:15 -0500 | [diff] [blame] | 55 | private: | 
|  | 56 | /** | 
| Jim Wright | 56ae78e | 2021-12-01 14:46:15 -0600 | [diff] [blame] | 57 | * The match to Entity Manager interfaces added. | 
|  | 58 | */ | 
|  | 59 | sdbusplus::bus::match_t match; | 
|  | 60 |  | 
|  | 61 | /** | 
| Jim Wright | d8a8617 | 2021-12-08 11:38:26 -0600 | [diff] [blame] | 62 | * List of pins | 
|  | 63 | */ | 
|  | 64 | std::vector<Pin> pins; | 
|  | 65 |  | 
|  | 66 | /** | 
| Jim Wright | 7945dd2 | 2021-04-06 16:55:15 -0500 | [diff] [blame] | 67 | * The read/write interface to this hardware | 
|  | 68 | */ | 
| Jim Wright | 56ae78e | 2021-12-01 14:46:15 -0600 | [diff] [blame] | 69 | pmbus::PMBus pmbusInterface; | 
|  | 70 |  | 
|  | 71 | /** | 
| Jim Wright | d8a8617 | 2021-12-08 11:38:26 -0600 | [diff] [blame] | 72 | * List of rail names | 
|  | 73 | */ | 
|  | 74 | std::vector<std::string> rails; | 
|  | 75 |  | 
|  | 76 | /** | 
| Jim Wright | 56ae78e | 2021-12-01 14:46:15 -0600 | [diff] [blame] | 77 | * Finds the list of compatible system types using D-Bus methods. | 
|  | 78 | * This list is used to find the correct JSON configuration file for the | 
|  | 79 | * current system. | 
|  | 80 | */ | 
|  | 81 | void findCompatibleSystemTypes(); | 
| Jim Wright | d8a8617 | 2021-12-08 11:38:26 -0600 | [diff] [blame] | 82 |  | 
|  | 83 | /** | 
|  | 84 | * Finds the JSON configuration file. | 
|  | 85 | * Looks for a configuration file based on the list of compatible system | 
|  | 86 | * types. | 
|  | 87 | * Throws an exception if an operating system error occurs while checking | 
|  | 88 | * for the existance of a file. | 
| Jim Wright | 3accffe | 2022-03-10 17:19:42 -0600 | [diff] [blame] | 89 | * @param compatibleSystemTypes List of compatible system types | 
| Jim Wright | d8a8617 | 2021-12-08 11:38:26 -0600 | [diff] [blame] | 90 | */ | 
|  | 91 | void findConfigFile(const std::vector<std::string>& compatibleSystemTypes); | 
|  | 92 |  | 
|  | 93 | /** | 
| Jim Wright | 3accffe | 2022-03-10 17:19:42 -0600 | [diff] [blame] | 94 | * Analyzes the device pins for errors when the device is known to be in an | 
|  | 95 | * error state. | 
|  | 96 | * @param message Message property of the error log entry | 
|  | 97 | * @param additionalData AdditionalData property of the error log entry | 
|  | 98 | */ | 
|  | 99 | void onFailureCheckPins(std::string& message, | 
|  | 100 | std::map<std::string, std::string>& additionalData); | 
|  | 101 |  | 
|  | 102 | /** | 
|  | 103 | * Analyzes the device rails for errors when the device is known to be in an | 
|  | 104 | * error state. | 
|  | 105 | * @param message Message property of the error log entry | 
|  | 106 | * @param additionalData AdditionalData property of the error log entry | 
|  | 107 | * @param powerSupplyError The power supply error to log. A default | 
|  | 108 | * std:string, i.e. empty string (""), is passed when there is no power | 
|  | 109 | * supply error to log. | 
|  | 110 | */ | 
|  | 111 | void onFailureCheckRails(std::string& message, | 
|  | 112 | std::map<std::string, std::string>& additionalData, | 
|  | 113 | const std::string& powerSupplyError); | 
|  | 114 |  | 
|  | 115 | /** | 
| Jim Wright | d8a8617 | 2021-12-08 11:38:26 -0600 | [diff] [blame] | 116 | * Parse the JSON configuration file. | 
| Jim Wright | 3accffe | 2022-03-10 17:19:42 -0600 | [diff] [blame] | 117 | * @param pathName the path name | 
| Jim Wright | d8a8617 | 2021-12-08 11:38:26 -0600 | [diff] [blame] | 118 | */ | 
|  | 119 | void parseConfigFile(const std::filesystem::path& pathName); | 
| Jim Wright | d8fc068 | 2022-01-11 15:36:00 -0600 | [diff] [blame] | 120 |  | 
|  | 121 | /** | 
| Jim Wright | 71a1413 | 2022-01-28 09:46:46 -0600 | [diff] [blame] | 122 | * Reads the mfr_status register | 
| Jim Wright | f6f0da9 | 2022-02-28 21:08:33 -0600 | [diff] [blame] | 123 | * @return the register contents | 
| Jim Wright | 71a1413 | 2022-01-28 09:46:46 -0600 | [diff] [blame] | 124 | */ | 
|  | 125 | uint32_t readMFRStatus(); | 
|  | 126 |  | 
|  | 127 | /** | 
|  | 128 | * Reads the status_word register | 
| Jim Wright | f6f0da9 | 2022-02-28 21:08:33 -0600 | [diff] [blame] | 129 | * @return the register contents | 
| Jim Wright | 71a1413 | 2022-01-28 09:46:46 -0600 | [diff] [blame] | 130 | */ | 
|  | 131 | uint16_t readStatusWord(); | 
| Jim Wright | 7945dd2 | 2021-04-06 16:55:15 -0500 | [diff] [blame] | 132 | }; | 
|  | 133 |  | 
|  | 134 | } // namespace phosphor::power::sequencer |