xref: /openbmc/phosphor-power/phosphor-regulators/src/actions/i2c_compare_bytes_action.hpp (revision f54021972b91be5058b50e9046bb0dd5a3b22a80)
1 /**
2  * Copyright © 2020 IBM Corporation
3  *
4  * Licensed under the Apache License, Version 2.0 (the "License");
5  * you may not use this file except in compliance with the License.
6  * You may obtain a copy of the License at
7  *
8  *     http://www.apache.org/licenses/LICENSE-2.0
9  *
10  * Unless required by applicable law or agreed to in writing, software
11  * distributed under the License is distributed on an "AS IS" BASIS,
12  * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13  * See the License for the specific language governing permissions and
14  * limitations under the License.
15  */
16 #pragma once
17 
18 #include "action_environment.hpp"
19 #include "i2c_action.hpp"
20 
21 #include <cstdint>
22 #include <stdexcept>
23 #include <string>
24 #include <vector>
25 
26 namespace phosphor::power::regulators
27 {
28 
29 /**
30  * @class I2CCompareBytesAction
31  *
32  * Compares device register bytes to a list of expected values.  Communicates
33  * with the device directly using the I2C interface.
34  *
35  * Implements the i2c_compare_bytes action in the JSON config file.
36  */
37 class I2CCompareBytesAction : public I2CAction
38 {
39   public:
40     // Specify which compiler-generated methods we want
41     I2CCompareBytesAction() = delete;
42     I2CCompareBytesAction(const I2CCompareBytesAction&) = delete;
43     I2CCompareBytesAction(I2CCompareBytesAction&&) = delete;
44     I2CCompareBytesAction& operator=(const I2CCompareBytesAction&) = delete;
45     I2CCompareBytesAction& operator=(I2CCompareBytesAction&&) = delete;
46     virtual ~I2CCompareBytesAction() = default;
47 
48     /**
49      * Constructor.
50      *
51      * Throws an exception if any of the input parameters are invalid.
52      *
53      * @param reg Device register address.  Note: named 'reg' because 'register'
54      *            is a reserved keyword.
55      * @param values One or more expected byte values.  The bytes must be
56      *               specified in the same order as they will be received from
57      *               the device (e.g. in little-endian order).
58      */
I2CCompareBytesAction(uint8_t reg,const std::vector<uint8_t> & values)59     explicit I2CCompareBytesAction(uint8_t reg,
60                                    const std::vector<uint8_t>& values) :
61         I2CCompareBytesAction(reg, values,
62                               std::vector<uint8_t>(values.size(), 0xFF))
63     {}
64 
65     /**
66      * Constructor.
67      *
68      * Throws an exception if any of the input parameters are invalid.
69      *
70      * @param reg Device register address.  Note: named 'reg' because 'register'
71      *            is a reserved keyword.
72      * @param values One or more expected byte values.  The bytes must be
73      *               specified in the same order as they will be received from
74      *               the device (e.g. in little-endian order).
75      * @param masks One or more bit masks.  The number of bit masks must match
76      *              the number of expected byte values.  Each mask specifies
77      *              which bits should be compared within the corresponding byte
78      *              value.  Only the bits with a value of 1 in the mask will be
79      *              compared.
80      */
I2CCompareBytesAction(uint8_t reg,const std::vector<uint8_t> & values,const std::vector<uint8_t> & masks)81     explicit I2CCompareBytesAction(uint8_t reg,
82                                    const std::vector<uint8_t>& values,
83                                    const std::vector<uint8_t>& masks) :
84         reg{reg}, values{values}, masks{masks}
85     {
86         // Values vector must not be empty
87         if (values.size() < 1)
88         {
89             throw std::invalid_argument{"Values vector is empty"};
90         }
91 
92         // Masks vector must have same size as values vector
93         if (masks.size() != values.size())
94         {
95             throw std::invalid_argument{"Masks vector has invalid size"};
96         }
97     }
98 
99     /**
100      * Executes this action.
101      *
102      * Compares device register bytes to a list of expected values using the
103      * I2C interface.
104      *
105      * All of the bytes will be read in a single I2C operation.
106      *
107      * The device register, byte values, and bit masks (if any) were specified
108      * in the constructor.
109      *
110      * The device is obtained from the specified action environment.
111      *
112      * Throws an exception if an error occurs.
113      *
114      * @param environment action execution environment
115      * @return true if the register bytes contained the expected values,
116      *         otherwise returns false.
117      */
118     virtual bool execute(ActionEnvironment& environment) override;
119 
120     /**
121      * Returns the device register address.
122      *
123      * @return register address
124      */
getRegister() const125     uint8_t getRegister() const
126     {
127         return reg;
128     }
129 
130     /**
131      * Returns the expected byte values.
132      *
133      * @return expected values
134      */
getValues() const135     const std::vector<uint8_t>& getValues() const
136     {
137         return values;
138     }
139 
140     /**
141      * Returns the bit masks.
142      *
143      * Each mask specifies which bits should be compared within the
144      * corresponding byte value.  Only the bits with a value of 1 in the mask
145      * will be compared.
146      *
147      * @return bit masks
148      */
getMasks() const149     const std::vector<uint8_t>& getMasks() const
150     {
151         return masks;
152     }
153 
154     /**
155      * Returns a string description of this action.
156      *
157      * @return description of action
158      */
159     virtual std::string toString() const override;
160 
161   private:
162     /**
163      * Device register address.  Note: named 'reg' because 'register' is a
164      * reserved keyword.
165      */
166     const uint8_t reg{0x00};
167 
168     /**
169      * Expected byte values.
170      */
171     const std::vector<uint8_t> values{};
172 
173     /**
174      * Bit masks.  Each mask specifies which bits should be compared within the
175      * corresponding byte value.  Only the bits with a value of 1 in the mask
176      * will be compared.
177      */
178     const std::vector<uint8_t> masks{};
179 };
180 
181 } // namespace phosphor::power::regulators
182