Lei YU | ab1327c | 2019-11-04 16:53:39 +0800 | [diff] [blame] | 1 | #pragma once |
| 2 | |
| 3 | #include <cstdint> |
| 4 | #include <cstring> |
| 5 | #include <exception> |
| 6 | #include <iostream> |
| 7 | #include <memory> |
| 8 | #include <sstream> |
| 9 | #include <string> |
| 10 | #include <vector> |
| 11 | |
| 12 | namespace i2c |
| 13 | { |
| 14 | |
| 15 | class I2CException : public std::exception |
| 16 | { |
| 17 | public: |
| 18 | explicit I2CException(const std::string& info, const std::string& bus, |
| 19 | uint8_t addr, int errorCode = 0) : |
Patrick Williams | f540219 | 2024-08-16 15:20:53 -0400 | [diff] [blame] | 20 | bus(bus), addr(addr), errorCode(errorCode) |
Lei YU | ab1327c | 2019-11-04 16:53:39 +0800 | [diff] [blame] | 21 | { |
| 22 | std::stringstream ss; |
| 23 | ss << "I2CException: " << info << ": bus " << bus << ", addr 0x" |
| 24 | << std::hex << static_cast<int>(addr); |
| 25 | if (errorCode != 0) |
| 26 | { |
| 27 | ss << std::dec << ", errno " << errorCode << ": " |
| 28 | << strerror(errorCode); |
| 29 | } |
| 30 | errStr = ss.str(); |
| 31 | } |
| 32 | virtual ~I2CException() = default; |
| 33 | |
| 34 | const char* what() const noexcept override |
| 35 | { |
| 36 | return errStr.c_str(); |
| 37 | } |
| 38 | std::string bus; |
| 39 | uint8_t addr; |
| 40 | int errorCode; |
| 41 | std::string errStr; |
| 42 | }; |
| 43 | |
| 44 | class I2CInterface |
| 45 | { |
| 46 | public: |
Shawn McCarney | d45a9a6 | 2019-12-10 18:35:44 -0600 | [diff] [blame] | 47 | /** @brief Destructor |
| 48 | * |
| 49 | * Closes the I2C interface to the device if necessary. |
| 50 | */ |
Lei YU | ab1327c | 2019-11-04 16:53:39 +0800 | [diff] [blame] | 51 | virtual ~I2CInterface() = default; |
| 52 | |
Shawn McCarney | d45a9a6 | 2019-12-10 18:35:44 -0600 | [diff] [blame] | 53 | /** @brief Initial state when an I2CInterface object is created */ |
| 54 | enum class InitialState |
| 55 | { |
| 56 | OPEN, |
| 57 | CLOSED |
| 58 | }; |
| 59 | |
Lei YU | 1d10342 | 2019-11-29 14:00:02 +0800 | [diff] [blame] | 60 | /** @brief The block transaction mode */ |
| 61 | enum class Mode |
| 62 | { |
| 63 | SMBUS, |
| 64 | I2C, |
| 65 | }; |
| 66 | |
Shawn McCarney | d45a9a6 | 2019-12-10 18:35:44 -0600 | [diff] [blame] | 67 | /** @brief Open the I2C interface to the device |
| 68 | * |
| 69 | * Throws an I2CException if the interface is already open. See isOpen(). |
| 70 | * |
| 71 | * @throw I2CException on error |
| 72 | */ |
| 73 | virtual void open() = 0; |
| 74 | |
| 75 | /** @brief Indicates whether the I2C interface to the device is open |
| 76 | * |
| 77 | * @return true if interface is open, false otherwise |
| 78 | */ |
| 79 | virtual bool isOpen() const = 0; |
| 80 | |
| 81 | /** @brief Close the I2C interface to the device |
| 82 | * |
| 83 | * The interface can later be re-opened by calling open(). |
| 84 | * |
| 85 | * Note that the destructor will automatically close the I2C interface if |
| 86 | * necessary. |
| 87 | * |
| 88 | * Throws an I2CException if the interface is not open. See isOpen(). |
| 89 | * |
| 90 | * @throw I2CException on error |
| 91 | */ |
| 92 | virtual void close() = 0; |
| 93 | |
Lei YU | ab1327c | 2019-11-04 16:53:39 +0800 | [diff] [blame] | 94 | /** @brief Read byte data from i2c |
| 95 | * |
| 96 | * @param[out] data - The data read from the i2c device |
| 97 | * |
| 98 | * @throw I2CException on error |
| 99 | */ |
| 100 | virtual void read(uint8_t& data) = 0; |
| 101 | |
| 102 | /** @brief Read byte data from i2c |
| 103 | * |
| 104 | * @param[in] addr - The register address of the i2c device |
| 105 | * @param[out] data - The data read from the i2c device |
| 106 | * |
| 107 | * @throw I2CException on error |
| 108 | */ |
| 109 | virtual void read(uint8_t addr, uint8_t& data) = 0; |
| 110 | |
| 111 | /** @brief Read word data from i2c |
| 112 | * |
Shawn McCarney | e632e14 | 2020-02-29 11:49:48 -0600 | [diff] [blame] | 113 | * Uses the SMBus Read Word protocol. Reads two bytes from the device, and |
| 114 | * the first byte read is the low-order byte. |
| 115 | * |
Lei YU | ab1327c | 2019-11-04 16:53:39 +0800 | [diff] [blame] | 116 | * @param[in] addr - The register address of the i2c device |
| 117 | * @param[out] data - The data read from the i2c device |
| 118 | * |
| 119 | * @throw I2CException on error |
| 120 | */ |
| 121 | virtual void read(uint8_t addr, uint16_t& data) = 0; |
| 122 | |
| 123 | /** @brief Read block data from i2c |
| 124 | * |
| 125 | * @param[in] addr - The register address of the i2c device |
Lei YU | 1d10342 | 2019-11-29 14:00:02 +0800 | [diff] [blame] | 126 | * @param[in,out] size - The out parameter to indicate the size of data read |
| 127 | * from i2c device; when mode is I2C, it is also the |
| 128 | * input parameter to indicate how many bytes to read |
Lei YU | ab1327c | 2019-11-04 16:53:39 +0800 | [diff] [blame] | 129 | * @param[out] data - The pointer to buffer to read from the i2c device, |
| 130 | * the buffer shall be big enough to hold the data |
| 131 | * returned by the device. SMBus allows at most 32 |
| 132 | * bytes. |
Lei YU | 1d10342 | 2019-11-29 14:00:02 +0800 | [diff] [blame] | 133 | * @param[in] mode - The block read mode, either SMBus or I2C. |
| 134 | * Internally, it invokes functions from libi2c: |
| 135 | * * For SMBus: i2c_smbus_read_block_data() |
| 136 | * * For I2C: i2c_smbus_read_i2c_block_data() |
Lei YU | ab1327c | 2019-11-04 16:53:39 +0800 | [diff] [blame] | 137 | * |
| 138 | * @throw I2CException on error |
| 139 | */ |
Lei YU | 1d10342 | 2019-11-29 14:00:02 +0800 | [diff] [blame] | 140 | virtual void read(uint8_t addr, uint8_t& size, uint8_t* data, |
| 141 | Mode mode = Mode::SMBUS) = 0; |
Lei YU | ab1327c | 2019-11-04 16:53:39 +0800 | [diff] [blame] | 142 | |
| 143 | /** @brief Write byte data to i2c |
| 144 | * |
| 145 | * @param[in] data - The data to write to the i2c device |
| 146 | * |
| 147 | * @throw I2CException on error |
| 148 | */ |
| 149 | virtual void write(uint8_t data) = 0; |
| 150 | |
| 151 | /** @brief Write byte data to i2c |
| 152 | * |
| 153 | * @param[in] addr - The register address of the i2c device |
| 154 | * @param[in] data - The data to write to the i2c device |
| 155 | * |
| 156 | * @throw I2CException on error |
| 157 | */ |
| 158 | virtual void write(uint8_t addr, uint8_t data) = 0; |
| 159 | |
| 160 | /** @brief Write word data to i2c |
| 161 | * |
Shawn McCarney | e632e14 | 2020-02-29 11:49:48 -0600 | [diff] [blame] | 162 | * Uses the SMBus Write Word protocol. Writes two bytes to the device, and |
| 163 | * the first byte written is the low-order byte. |
| 164 | * |
Lei YU | ab1327c | 2019-11-04 16:53:39 +0800 | [diff] [blame] | 165 | * @param[in] addr - The register address of the i2c device |
| 166 | * @param[in] data - The data to write to the i2c device |
| 167 | * |
| 168 | * @throw I2CException on error |
| 169 | */ |
| 170 | virtual void write(uint8_t addr, uint16_t data) = 0; |
| 171 | |
| 172 | /** @brief Write block data to i2c |
| 173 | * |
| 174 | * @param[in] addr - The register address of the i2c device |
| 175 | * @param[in] size - The size of data to write, SMBus allows at most 32 |
| 176 | * bytes |
| 177 | * @param[in] data - The data to write to the i2c device |
Lei YU | 1d10342 | 2019-11-29 14:00:02 +0800 | [diff] [blame] | 178 | * @param[in] mode - The block write mode, either SMBus or I2C. |
| 179 | * Internally, it invokes functions from libi2c: |
| 180 | * * For SMBus: i2c_smbus_write_block_data() |
| 181 | * * For I2C: i2c_smbus_write_i2c_block_data() |
Lei YU | ab1327c | 2019-11-04 16:53:39 +0800 | [diff] [blame] | 182 | * |
| 183 | * @throw I2CException on error |
| 184 | */ |
Lei YU | 1d10342 | 2019-11-29 14:00:02 +0800 | [diff] [blame] | 185 | virtual void write(uint8_t addr, uint8_t size, const uint8_t* data, |
| 186 | Mode mode = Mode::SMBUS) = 0; |
Lei YU | ab1327c | 2019-11-04 16:53:39 +0800 | [diff] [blame] | 187 | }; |
| 188 | |
| 189 | /** @brief Create an I2CInterface instance |
| 190 | * |
Shawn McCarney | d45a9a6 | 2019-12-10 18:35:44 -0600 | [diff] [blame] | 191 | * Automatically opens the I2CInterface if initialState is OPEN. |
| 192 | * |
Lei YU | ab1327c | 2019-11-04 16:53:39 +0800 | [diff] [blame] | 193 | * @param[in] busId - The i2c bus ID |
| 194 | * @param[in] devAddr - The device address of the i2c |
Shawn McCarney | d45a9a6 | 2019-12-10 18:35:44 -0600 | [diff] [blame] | 195 | * @param[in] initialState - Initial state of the I2CInterface object |
Shawn McCarney | 770de58 | 2021-11-05 02:28:35 -0500 | [diff] [blame] | 196 | * @param[in] maxRetries - Maximum number of times to retry an I2C operation |
Lei YU | ab1327c | 2019-11-04 16:53:39 +0800 | [diff] [blame] | 197 | * |
| 198 | * @return The unique_ptr holding the I2CInterface |
| 199 | */ |
Shawn McCarney | d45a9a6 | 2019-12-10 18:35:44 -0600 | [diff] [blame] | 200 | std::unique_ptr<I2CInterface> create( |
| 201 | uint8_t busId, uint8_t devAddr, |
Shawn McCarney | 770de58 | 2021-11-05 02:28:35 -0500 | [diff] [blame] | 202 | I2CInterface::InitialState initialState = I2CInterface::InitialState::OPEN, |
| 203 | int maxRetries = 0); |
Lei YU | ab1327c | 2019-11-04 16:53:39 +0800 | [diff] [blame] | 204 | |
| 205 | } // namespace i2c |