blob: 1212a39feb07da29665541474907ca603bac276c [file] [log] [blame]
Christopher Meis7e446a42024-10-22 09:36:41 +02001#pragma once
2
3#include <sdbusplus/async.hpp>
4
5#include <cstdint>
6#include <memory>
7#include <string>
8
9namespace phosphor::software::VR
10{
11
12enum class VRType
13{
14 XDPE1X2XX,
Christopher Meisf00ce802025-04-08 08:07:31 +020015 ISL69269,
Christopher Meis7e446a42024-10-22 09:36:41 +020016};
17
18class VoltageRegulator
19{
20 public:
21 explicit VoltageRegulator(sdbusplus::async::context& ctx) : ctx(ctx) {}
22 virtual ~VoltageRegulator() = default;
23
24 VoltageRegulator(VoltageRegulator& vr) = delete;
25 VoltageRegulator& operator=(VoltageRegulator other) = delete;
26 VoltageRegulator(VoltageRegulator&& other) = delete;
27 VoltageRegulator& operator=(VoltageRegulator&& other) = delete;
28
29 // @brief Parses the firmware image into the configuration structure
30 // and verifies its correctness.
31 // @return sdbusplus::async::task<bool> true indicates success.
32 virtual sdbusplus::async::task<bool> verifyImage(const uint8_t* image,
33 size_t imageSize) = 0;
34
35 // @brief Applies update to the voltage regulator
36 // @return sdbusplus::async::task<bool> true indicates success.
37 virtual sdbusplus::async::task<bool> updateFirmware(bool force) = 0;
38
Christopher Meis7e446a42024-10-22 09:36:41 +020039 // @brief Requests the CRC value of the voltage regulator over I2C.
40 // @param pointer to write the result to.
41 // @returns < 0 on error
42 virtual sdbusplus::async::task<bool> getCRC(uint32_t* checksum) = 0;
43
44 // @brief This function returns true if the voltage regulator supports
45 // force of updates.
46 virtual bool forcedUpdateAllowed() = 0;
47
48 protected:
49 sdbusplus::async::context& ctx;
50};
51
52std::unique_ptr<VoltageRegulator> create(sdbusplus::async::context& ctx,
53 enum VRType vrType, uint16_t bus,
54 uint16_t address);
55
56bool stringToEnum(std::string& vrStr, VRType& vrType);
57
58} // namespace phosphor::software::VR