i2c.h 37 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245
  1. /**
  2. * @file
  3. *
  4. * @brief Public APIs for the I2C drivers.
  5. */
  6. /*
  7. * Copyright (c) 2015 Intel Corporation
  8. *
  9. * SPDX-License-Identifier: Apache-2.0
  10. */
  11. #ifndef ZEPHYR_INCLUDE_DRIVERS_I2C_H_
  12. #define ZEPHYR_INCLUDE_DRIVERS_I2C_H_
  13. /**
  14. * @brief I2C Interface
  15. * @defgroup i2c_interface I2C Interface
  16. * @ingroup io_interfaces
  17. * @{
  18. */
  19. #include <zephyr/types.h>
  20. #include <device.h>
  21. #ifdef __cplusplus
  22. extern "C" {
  23. #endif
  24. /*
  25. * The following #defines are used to configure the I2C controller.
  26. */
  27. /** I2C Standard Speed: 100 kHz */
  28. #define I2C_SPEED_STANDARD (0x1U)
  29. /** I2C Fast Speed: 400 kHz */
  30. #define I2C_SPEED_FAST (0x2U)
  31. /** I2C Fast Plus Speed: 1 MHz */
  32. #define I2C_SPEED_FAST_PLUS (0x3U)
  33. /** I2C High Speed: 3.4 MHz */
  34. #define I2C_SPEED_HIGH (0x4U)
  35. /** I2C Ultra Fast Speed: 5 MHz */
  36. #define I2C_SPEED_ULTRA (0x5U)
  37. #define I2C_SPEED_SHIFT (1U)
  38. #define I2C_SPEED_SET(speed) (((speed) << I2C_SPEED_SHIFT) \
  39. & I2C_SPEED_MASK)
  40. #define I2C_SPEED_MASK (0x7U << I2C_SPEED_SHIFT) /* 3 bits */
  41. #define I2C_SPEED_GET(cfg) (((cfg) & I2C_SPEED_MASK) \
  42. >> I2C_SPEED_SHIFT)
  43. /** Use 10-bit addressing. DEPRECATED - Use I2C_MSG_ADDR_10_BITS instead. */
  44. #define I2C_ADDR_10_BITS BIT(0)
  45. /** Controller to act as Master. */
  46. #define I2C_MODE_MASTER BIT(4)
  47. /**
  48. * @brief Complete I2C DT information
  49. *
  50. * @param bus is the I2C bus
  51. * @param addr is the slave address
  52. */
  53. struct i2c_dt_spec {
  54. const struct device *bus;
  55. uint16_t addr;
  56. };
  57. /**
  58. * @brief Structure initializer for i2c_dt_spec from devicetree
  59. *
  60. * This helper macro expands to a static initializer for a <tt>struct
  61. * i2c_dt_spec</tt> by reading the relevant bus and address data from
  62. * the devicetree.
  63. *
  64. * @param node_id Devicetree node identifier for the I2C device whose
  65. * struct i2c_dt_spec to create an initializer for
  66. */
  67. #define I2C_DT_SPEC_GET(node_id) \
  68. { \
  69. .bus = DEVICE_DT_GET(DT_BUS(node_id)), \
  70. .addr = DT_REG_ADDR(node_id) \
  71. }
  72. /**
  73. * @brief Structure initializer for i2c_dt_spec from devicetree instance
  74. *
  75. * This is equivalent to
  76. * <tt>I2C_DT_SPEC_GET(DT_DRV_INST(inst))</tt>.
  77. *
  78. * @param inst Devicetree instance number
  79. */
  80. #define I2C_DT_SPEC_INST_GET(inst) \
  81. I2C_DT_SPEC_GET(DT_DRV_INST(inst))
  82. /*
  83. * I2C_MSG_* are I2C Message flags.
  84. */
  85. /** Write message to I2C bus. */
  86. #define I2C_MSG_WRITE (0U << 0U)
  87. /** Read message from I2C bus. */
  88. #define I2C_MSG_READ BIT(0)
  89. /** @cond INTERNAL_HIDDEN */
  90. #define I2C_MSG_RW_MASK BIT(0)
  91. /** @endcond */
  92. /** Send STOP after this message. */
  93. #define I2C_MSG_STOP BIT(1)
  94. /** RESTART I2C transaction for this message.
  95. *
  96. * @note Not all I2C drivers have or require explicit support for this
  97. * feature. Some drivers require this be present on a read message
  98. * that follows a write, or vice-versa. Some drivers will merge
  99. * adjacent fragments into a single transaction using this flag; some
  100. * will not. */
  101. #define I2C_MSG_RESTART BIT(2)
  102. /** Use 10-bit addressing for this message.
  103. *
  104. * @note Not all SoC I2C implementations support this feature. */
  105. #define I2C_MSG_ADDR_10_BITS BIT(3)
  106. /**
  107. * @brief One I2C Message.
  108. *
  109. * This defines one I2C message to transact on the I2C bus.
  110. *
  111. * @note Some of the configurations supported by this API may not be
  112. * supported by specific SoC I2C hardware implementations, in
  113. * particular features related to bus transactions intended to read or
  114. * write data from different buffers within a single transaction.
  115. * Invocations of i2c_transfer() may not indicate an error when an
  116. * unsupported configuration is encountered. In some cases drivers
  117. * will generate separate transactions for each message fragment, with
  118. * or without presence of @ref I2C_MSG_RESTART in #flags.
  119. */
  120. struct i2c_msg {
  121. /** Data buffer in bytes */
  122. uint8_t *buf;
  123. /** Length of buffer in bytes */
  124. uint32_t len;
  125. /** Flags for this message */
  126. uint8_t flags;
  127. };
  128. /**
  129. * @cond INTERNAL_HIDDEN
  130. *
  131. * These are for internal use only, so skip these in
  132. * public documentation.
  133. */
  134. struct i2c_slave_config;
  135. typedef int (*i2c_api_configure_t)(const struct device *dev,
  136. uint32_t dev_config);
  137. typedef int (*i2c_api_full_io_t)(const struct device *dev,
  138. struct i2c_msg *msgs,
  139. uint8_t num_msgs,
  140. uint16_t addr);
  141. typedef int (*i2c_api_slave_register_t)(const struct device *dev,
  142. struct i2c_slave_config *cfg);
  143. typedef int (*i2c_api_slave_unregister_t)(const struct device *dev,
  144. struct i2c_slave_config *cfg);
  145. typedef int (*i2c_api_recover_bus_t)(const struct device *dev);
  146. #ifdef CONFIG_I2C_ASYNC
  147. typedef int (*i2c_async_func_t)(void *cb_data, struct i2c_msg *msgs,
  148. uint8_t num_msgs, bool is_err);
  149. #ifdef CONFIG_I2C_ASYNC_MSG_INTERNAL_BUFFER
  150. #define I2C_MSG_ASYNC_RX_MAX_BUF (12)
  151. #define I2C_MSG_ASYNC_TX_MAX_BUF (4)
  152. #endif
  153. /* i2c message queue item used in async mode */
  154. struct i2c_msg_async {
  155. struct i2c_msg msg[2];
  156. uint8_t num_msgs;
  157. uint16_t addr;
  158. i2c_async_func_t async_func;
  159. void *cb_data;
  160. #ifdef CONFIG_I2C_ASYNC_MSG_INTERNAL_BUFFER
  161. uint8_t rx_buf[I2C_MSG_ASYNC_RX_MAX_BUF];
  162. uint8_t tx_buf[I2C_MSG_ASYNC_TX_MAX_BUF];
  163. #endif
  164. };
  165. typedef int (*i2c_api_full_io_async_t)(const struct device *dev,
  166. struct i2c_msg_async *msg_async);
  167. #endif
  168. __subsystem struct i2c_driver_api {
  169. i2c_api_configure_t configure;
  170. i2c_api_full_io_t transfer;
  171. #ifdef CONFIG_I2C_ASYNC
  172. i2c_api_full_io_async_t transfer_async;
  173. #endif
  174. i2c_api_slave_register_t slave_register;
  175. i2c_api_slave_unregister_t slave_unregister;
  176. i2c_api_recover_bus_t recover_bus;
  177. };
  178. typedef int (*i2c_slave_api_register_t)(const struct device *dev);
  179. typedef int (*i2c_slave_api_unregister_t)(const struct device *dev);
  180. struct i2c_slave_driver_api {
  181. i2c_slave_api_register_t driver_register;
  182. i2c_slave_api_unregister_t driver_unregister;
  183. };
  184. /**
  185. * @endcond
  186. */
  187. /** Slave device responds to 10-bit addressing. */
  188. #define I2C_SLAVE_FLAGS_ADDR_10_BITS BIT(0)
  189. /** @brief Function called when a write to the device is initiated.
  190. *
  191. * This function is invoked by the controller when the bus completes a
  192. * start condition for a write operation to the address associated
  193. * with a particular device.
  194. *
  195. * A success return shall cause the controller to ACK the next byte
  196. * received. An error return shall cause the controller to NACK the
  197. * next byte received.
  198. *
  199. * @param config the configuration structure associated with the
  200. * device to which the operation is addressed.
  201. *
  202. * @return 0 if the write is accepted, or a negative error code.
  203. */
  204. typedef int (*i2c_slave_write_requested_cb_t)(
  205. struct i2c_slave_config *config);
  206. /** @brief Function called when a write to the device is continued.
  207. *
  208. * This function is invoked by the controller when it completes
  209. * reception of a byte of data in an ongoing write operation to the
  210. * device.
  211. *
  212. * A success return shall cause the controller to ACK the next byte
  213. * received. An error return shall cause the controller to NACK the
  214. * next byte received.
  215. *
  216. * @param config the configuration structure associated with the
  217. * device to which the operation is addressed.
  218. *
  219. * @param val the byte received by the controller.
  220. *
  221. * @return 0 if more data can be accepted, or a negative error
  222. * code.
  223. */
  224. typedef int (*i2c_slave_write_received_cb_t)(
  225. struct i2c_slave_config *config, uint8_t val);
  226. /** @brief Function called when a read from the device is initiated.
  227. *
  228. * This function is invoked by the controller when the bus completes a
  229. * start condition for a read operation from the address associated
  230. * with a particular device.
  231. *
  232. * The value returned in @p *val will be transmitted. A success
  233. * return shall cause the controller to react to additional read
  234. * operations. An error return shall cause the controller to ignore
  235. * bus operations until a new start condition is received.
  236. *
  237. * @param config the configuration structure associated with the
  238. * device to which the operation is addressed.
  239. *
  240. * @param val pointer to storage for the first byte of data to return
  241. * for the read request.
  242. *
  243. * @return 0 if more data can be requested, or a negative error code.
  244. */
  245. typedef int (*i2c_slave_read_requested_cb_t)(
  246. struct i2c_slave_config *config, uint8_t *val);
  247. /** @brief Function called when a read from the device is continued.
  248. *
  249. * This function is invoked by the controller when the bus is ready to
  250. * provide additional data for a read operation from the address
  251. * associated with the device device.
  252. *
  253. * The value returned in @p *val will be transmitted. A success
  254. * return shall cause the controller to react to additional read
  255. * operations. An error return shall cause the controller to ignore
  256. * bus operations until a new start condition is received.
  257. *
  258. * @param config the configuration structure associated with the
  259. * device to which the operation is addressed.
  260. *
  261. * @param val pointer to storage for the next byte of data to return
  262. * for the read request.
  263. *
  264. * @return 0 if data has been provided, or a negative error code.
  265. */
  266. typedef int (*i2c_slave_read_processed_cb_t)(
  267. struct i2c_slave_config *config, uint8_t *val);
  268. /** @brief Function called when a stop condition is observed after a
  269. * start condition addressed to a particular device.
  270. *
  271. * This function is invoked by the controller when the bus is ready to
  272. * provide additional data for a read operation from the address
  273. * associated with the device device. After the function returns the
  274. * controller shall enter a state where it is ready to react to new
  275. * start conditions.
  276. *
  277. * @param config the configuration structure associated with the
  278. * device to which the operation is addressed.
  279. *
  280. * @return Ignored.
  281. */
  282. typedef int (*i2c_slave_stop_cb_t)(struct i2c_slave_config *config);
  283. /** @brief Structure providing callbacks to be implemented for devices
  284. * that supports the I2C slave API.
  285. *
  286. * This structure may be shared by multiple devices that implement the
  287. * same API at different addresses on the bus.
  288. */
  289. struct i2c_slave_callbacks {
  290. i2c_slave_write_requested_cb_t write_requested;
  291. i2c_slave_read_requested_cb_t read_requested;
  292. i2c_slave_write_received_cb_t write_received;
  293. i2c_slave_read_processed_cb_t read_processed;
  294. i2c_slave_stop_cb_t stop;
  295. };
  296. /** @brief Structure describing a device that supports the I2C
  297. * slave API.
  298. *
  299. * Instances of this are passed to the i2c_slave_register() and
  300. * i2c_slave_unregister() functions to indicate addition and removal
  301. * of a slave device, respective.
  302. *
  303. * Fields other than @c node must be initialized by the module that
  304. * implements the device behavior prior to passing the object
  305. * reference to i2c_slave_register().
  306. */
  307. struct i2c_slave_config {
  308. /** Private, do not modify */
  309. sys_snode_t node;
  310. /** Flags for the slave device defined by I2C_SLAVE_FLAGS_* constants */
  311. uint8_t flags;
  312. /** Address for this slave device */
  313. uint16_t address;
  314. /** Callback functions */
  315. const struct i2c_slave_callbacks *callbacks;
  316. };
  317. /**
  318. * @brief Configure operation of a host controller.
  319. *
  320. * @param dev Pointer to the device structure for the driver instance.
  321. * @param dev_config Bit-packed 32-bit value to the device runtime configuration
  322. * for the I2C controller.
  323. *
  324. * @retval 0 If successful.
  325. * @retval -EIO General input / output error, failed to configure device.
  326. */
  327. __syscall int i2c_configure(const struct device *dev, uint32_t dev_config);
  328. static inline int z_impl_i2c_configure(const struct device *dev,
  329. uint32_t dev_config)
  330. {
  331. const struct i2c_driver_api *api =
  332. (const struct i2c_driver_api *)dev->api;
  333. return api->configure(dev, dev_config);
  334. }
  335. /**
  336. * @brief Perform data transfer to another I2C device in master mode.
  337. *
  338. * This routine provides a generic interface to perform data transfer
  339. * to another I2C device synchronously. Use i2c_read()/i2c_write()
  340. * for simple read or write.
  341. *
  342. * The array of message @a msgs must not be NULL. The number of
  343. * message @a num_msgs may be zero,in which case no transfer occurs.
  344. *
  345. * @note Not all scatter/gather transactions can be supported by all
  346. * drivers. As an example, a gather write (multiple consecutive
  347. * `i2c_msg` buffers all configured for `I2C_MSG_WRITE`) may be packed
  348. * into a single transaction by some drivers, but others may emit each
  349. * fragment as a distinct write transaction, which will not produce
  350. * the same behavior. See the documentation of `struct i2c_msg` for
  351. * limitations on support for multi-message bus transactions.
  352. *
  353. * @param dev Pointer to the device structure for an I2C controller
  354. * driver configured in master mode.
  355. * @param msgs Array of messages to transfer.
  356. * @param num_msgs Number of messages to transfer.
  357. * @param addr Address of the I2C target device.
  358. *
  359. * @retval 0 If successful.
  360. * @retval -EIO General input / output error.
  361. */
  362. __syscall int i2c_transfer(const struct device *dev,
  363. struct i2c_msg *msgs, uint8_t num_msgs,
  364. uint16_t addr);
  365. static inline int z_impl_i2c_transfer(const struct device *dev,
  366. struct i2c_msg *msgs, uint8_t num_msgs,
  367. uint16_t addr)
  368. {
  369. const struct i2c_driver_api *api =
  370. (const struct i2c_driver_api *)dev->api;
  371. return api->transfer(dev, msgs, num_msgs, addr);
  372. }
  373. /**
  374. * @brief Perform data transfer to another I2C device in master mode.
  375. *
  376. * This is equivalent to:
  377. *
  378. * i2c_transfer(spec->bus, msgs, num_msgs, spec->addr);
  379. *
  380. * @param spec I2C specification from devicetree.
  381. * @param msgs Array of messages to transfer.
  382. * @param num_msgs Number of messages to transfer.
  383. *
  384. * @return a value from i2c_transfer()
  385. */
  386. static inline int i2c_transfer_dt(const struct i2c_dt_spec *spec,
  387. struct i2c_msg *msgs, uint8_t num_msgs)
  388. {
  389. return i2c_transfer(spec->bus, msgs, num_msgs, spec->addr);
  390. }
  391. /**
  392. * @brief Recover the I2C bus
  393. *
  394. * Attempt to recover the I2C bus.
  395. *
  396. * @param dev Pointer to the device structure for an I2C controller
  397. * driver configured in master mode.
  398. * @retval 0 If successful
  399. * @retval -EBUSY If bus is not clear after recovery attempt.
  400. * @retval -EIO General input / output error.
  401. * @retval -ENOSYS If bus recovery is not implemented
  402. */
  403. __syscall int i2c_recover_bus(const struct device *dev);
  404. static inline int z_impl_i2c_recover_bus(const struct device *dev)
  405. {
  406. const struct i2c_driver_api *api =
  407. (const struct i2c_driver_api *)dev->api;
  408. if (api->recover_bus == NULL) {
  409. return -ENOSYS;
  410. }
  411. return api->recover_bus(dev);
  412. }
  413. /**
  414. * @brief Registers the provided config as Slave device of a controller.
  415. *
  416. * Enable I2C slave mode for the 'dev' I2C bus driver using the provided
  417. * 'config' struct containing the functions and parameters to send bus
  418. * events. The I2C slave will be registered at the address provided as 'address'
  419. * struct member. Addressing mode - 7 or 10 bit - depends on the 'flags'
  420. * struct member. Any I2C bus events related to the slave mode will be passed
  421. * onto I2C slave device driver via a set of callback functions provided in
  422. * the 'callbacks' struct member.
  423. *
  424. * Most of the existing hardware allows simultaneous support for master
  425. * and slave mode. This is however not guaranteed.
  426. *
  427. * @param dev Pointer to the device structure for an I2C controller
  428. * driver configured in slave mode.
  429. * @param cfg Config struct with functions and parameters used by the I2C driver
  430. * to send bus events
  431. *
  432. * @retval 0 Is successful
  433. * @retval -EINVAL If parameters are invalid
  434. * @retval -EIO General input / output error.
  435. * @retval -ENOSYS If slave mode is not implemented
  436. */
  437. static inline int i2c_slave_register(const struct device *dev,
  438. struct i2c_slave_config *cfg)
  439. {
  440. const struct i2c_driver_api *api =
  441. (const struct i2c_driver_api *)dev->api;
  442. if (api->slave_register == NULL) {
  443. return -ENOSYS;
  444. }
  445. return api->slave_register(dev, cfg);
  446. }
  447. /**
  448. * @brief Unregisters the provided config as Slave device
  449. *
  450. * This routine disables I2C slave mode for the 'dev' I2C bus driver using
  451. * the provided 'config' struct containing the functions and parameters
  452. * to send bus events.
  453. *
  454. * @param dev Pointer to the device structure for an I2C controller
  455. * driver configured in slave mode.
  456. * @param cfg Config struct with functions and parameters used by the I2C driver
  457. * to send bus events
  458. *
  459. * @retval 0 Is successful
  460. * @retval -EINVAL If parameters are invalid
  461. * @retval -ENOSYS If slave mode is not implemented
  462. */
  463. static inline int i2c_slave_unregister(const struct device *dev,
  464. struct i2c_slave_config *cfg)
  465. {
  466. const struct i2c_driver_api *api =
  467. (const struct i2c_driver_api *)dev->api;
  468. if (api->slave_unregister == NULL) {
  469. return -ENOSYS;
  470. }
  471. return api->slave_unregister(dev, cfg);
  472. }
  473. /**
  474. * @brief Instructs the I2C Slave device to register itself to the I2C Controller
  475. *
  476. * This routine instructs the I2C Slave device to register itself to the I2C
  477. * Controller via its parent controller's i2c_slave_register() API.
  478. *
  479. * @param dev Pointer to the device structure for the I2C slave
  480. * device (not itself an I2C controller).
  481. *
  482. * @retval 0 Is successful
  483. * @retval -EINVAL If parameters are invalid
  484. * @retval -EIO General input / output error.
  485. */
  486. __syscall int i2c_slave_driver_register(const struct device *dev);
  487. static inline int z_impl_i2c_slave_driver_register(const struct device *dev)
  488. {
  489. const struct i2c_slave_driver_api *api =
  490. (const struct i2c_slave_driver_api *)dev->api;
  491. return api->driver_register(dev);
  492. }
  493. /**
  494. * @brief Instructs the I2C Slave device to unregister itself from the I2C
  495. * Controller
  496. *
  497. * This routine instructs the I2C Slave device to unregister itself from the I2C
  498. * Controller via its parent controller's i2c_slave_register() API.
  499. *
  500. * @param dev Pointer to the device structure for the I2C slave
  501. * device (not itself an I2C controller).
  502. *
  503. * @retval 0 Is successful
  504. * @retval -EINVAL If parameters are invalid
  505. */
  506. __syscall int i2c_slave_driver_unregister(const struct device *dev);
  507. static inline int z_impl_i2c_slave_driver_unregister(const struct device *dev)
  508. {
  509. const struct i2c_slave_driver_api *api =
  510. (const struct i2c_slave_driver_api *)dev->api;
  511. return api->driver_unregister(dev);
  512. }
  513. /*
  514. * Derived i2c APIs -- all implemented in terms of i2c_transfer()
  515. */
  516. /**
  517. * @brief Write a set amount of data to an I2C device.
  518. *
  519. * This routine writes a set amount of data synchronously.
  520. *
  521. * @param dev Pointer to the device structure for an I2C controller
  522. * driver configured in master mode.
  523. * @param buf Memory pool from which the data is transferred.
  524. * @param num_bytes Number of bytes to write.
  525. * @param addr Address to the target I2C device for writing.
  526. *
  527. * @retval 0 If successful.
  528. * @retval -EIO General input / output error.
  529. */
  530. static inline int i2c_write(const struct device *dev, const uint8_t *buf,
  531. uint32_t num_bytes, uint16_t addr)
  532. {
  533. struct i2c_msg msg;
  534. #if defined(CONFIG_I2C_ASYNC) && defined(CONFIG_I2C_ASYNC_MSG_INTERNAL_BUFFER)
  535. if ((num_bytes > I2C_MSG_ASYNC_TX_MAX_BUF) || (!num_bytes)) {
  536. printk("invalid num_bytes:%d max:%d\n",
  537. num_bytes, I2C_MSG_ASYNC_TX_MAX_BUF);
  538. return -EINVAL;
  539. }
  540. #endif
  541. msg.buf = (uint8_t *)buf;
  542. msg.len = num_bytes;
  543. msg.flags = I2C_MSG_WRITE | I2C_MSG_STOP;
  544. return i2c_transfer(dev, &msg, 1, addr);
  545. }
  546. /**
  547. * @brief Write a set amount of data to an I2C device.
  548. *
  549. * This is equivalent to:
  550. *
  551. * i2c_write(spec->bus, buf, num_bytes, spec->addr);
  552. *
  553. * @param spec I2C specification from devicetree.
  554. * @param buf Memory pool from which the data is transferred.
  555. * @param num_bytes Number of bytes to write.
  556. *
  557. * @return a value from i2c_write()
  558. */
  559. static inline int i2c_write_dt(const struct i2c_dt_spec *spec,
  560. const uint8_t *buf, uint32_t num_bytes)
  561. {
  562. return i2c_write(spec->bus, buf, num_bytes, spec->addr);
  563. }
  564. /**
  565. * @brief Read a set amount of data from an I2C device.
  566. *
  567. * This routine reads a set amount of data synchronously.
  568. *
  569. * @param dev Pointer to the device structure for an I2C controller
  570. * driver configured in master mode.
  571. * @param buf Memory pool that stores the retrieved data.
  572. * @param num_bytes Number of bytes to read.
  573. * @param addr Address of the I2C device being read.
  574. *
  575. * @retval 0 If successful.
  576. * @retval -EIO General input / output error.
  577. */
  578. static inline int i2c_read(const struct device *dev, uint8_t *buf,
  579. uint32_t num_bytes, uint16_t addr)
  580. {
  581. struct i2c_msg msg;
  582. #if defined(CONFIG_I2C_ASYNC) && defined(CONFIG_I2C_ASYNC_MSG_INTERNAL_BUFFER)
  583. if ((num_bytes > I2C_MSG_ASYNC_RX_MAX_BUF) || (!num_bytes)) {
  584. printk("invalid num_bytes:%d max:%d\n",
  585. num_bytes, I2C_MSG_ASYNC_RX_MAX_BUF);
  586. return -EINVAL;
  587. }
  588. #endif
  589. msg.buf = buf;
  590. msg.len = num_bytes;
  591. msg.flags = I2C_MSG_READ | I2C_MSG_STOP;
  592. return i2c_transfer(dev, &msg, 1, addr);
  593. }
  594. /**
  595. * @brief Read a set amount of data from an I2C device.
  596. *
  597. * This is equivalent to:
  598. *
  599. * i2c_read(spec->bus, buf, num_bytes, spec->addr);
  600. *
  601. * @param spec I2C specification from devicetree.
  602. * @param buf Memory pool that stores the retrieved data.
  603. * @param num_bytes Number of bytes to read.
  604. *
  605. * @return a value from i2c_read()
  606. */
  607. static inline int i2c_read_dt(const struct i2c_dt_spec *spec,
  608. uint8_t *buf, uint32_t num_bytes)
  609. {
  610. return i2c_read(spec->bus, buf, num_bytes, spec->addr);
  611. }
  612. /**
  613. * @brief Write then read data from an I2C device.
  614. *
  615. * This supports the common operation "this is what I want", "now give
  616. * it to me" transaction pair through a combined write-then-read bus
  617. * transaction.
  618. *
  619. * @param dev Pointer to the device structure for an I2C controller
  620. * driver configured in master mode.
  621. * @param addr Address of the I2C device
  622. * @param write_buf Pointer to the data to be written
  623. * @param num_write Number of bytes to write
  624. * @param read_buf Pointer to storage for read data
  625. * @param num_read Number of bytes to read
  626. *
  627. * @retval 0 if successful
  628. * @retval negative on error.
  629. */
  630. static inline int i2c_write_read(const struct device *dev, uint16_t addr,
  631. const void *write_buf, size_t num_write,
  632. void *read_buf, size_t num_read)
  633. {
  634. struct i2c_msg msg[2];
  635. #if defined(CONFIG_I2C_ASYNC) && defined(CONFIG_I2C_ASYNC_MSG_INTERNAL_BUFFER)
  636. if ((num_write > I2C_MSG_ASYNC_TX_MAX_BUF) || (!num_write)) {
  637. printk("invalid num_write:%d max:%d\n",
  638. num_write, I2C_MSG_ASYNC_TX_MAX_BUF);
  639. return -EINVAL;
  640. }
  641. if ((num_read > I2C_MSG_ASYNC_RX_MAX_BUF) || (!num_read)) {
  642. printk("invalid num_read:%d max:%d\n",
  643. num_read, I2C_MSG_ASYNC_RX_MAX_BUF);
  644. return -EINVAL;
  645. }
  646. #endif
  647. msg[0].buf = (uint8_t *)write_buf;
  648. msg[0].len = num_write;
  649. msg[0].flags = I2C_MSG_WRITE;
  650. msg[1].buf = (uint8_t *)read_buf;
  651. msg[1].len = num_read;
  652. msg[1].flags = I2C_MSG_RESTART | I2C_MSG_READ | I2C_MSG_STOP;
  653. return i2c_transfer(dev, msg, 2, addr);
  654. }
  655. #ifdef CONFIG_I2C_ASYNC
  656. /*
  657. * Derived i2c APIs -- all implemented in terms of i2c_transfer()
  658. */
  659. /**
  660. * @brief Write a set amount of data to an I2C device in async mode.
  661. *
  662. * This routine writes a set amount of data synchronously.
  663. *
  664. * @param dev Pointer to the device structure for an I2C controller
  665. * driver configured in master mode.
  666. * @param buf Memory pool from which the data is transferred.
  667. * @param num_bytes Number of bytes to write.
  668. * @param addr Address to the target I2C device for writing.
  669. *
  670. * @retval 0 If successful.
  671. * @retval -EIO General input / output error.
  672. *
  673. * @note In case of not define CONFIG_I2C_ASYNC_MSG_INTERNAL_BUFFER, the parameter @a buf
  674. * shall be a global address.
  675. */
  676. static inline int i2c_write_async(const struct device *dev, const uint8_t *buf,
  677. uint32_t num_bytes, uint16_t addr,
  678. i2c_async_func_t async_func, void *cb_data)
  679. {
  680. struct i2c_msg_async msg_async = {0};
  681. const struct i2c_driver_api *api =
  682. (const struct i2c_driver_api *)dev->api;
  683. #ifdef CONFIG_I2C_ASYNC_MSG_INTERNAL_BUFFER
  684. if ((num_bytes > I2C_MSG_ASYNC_TX_MAX_BUF) || (!num_bytes)) {
  685. printk("invalid num_bytes:%d max:%d\n",
  686. num_bytes, I2C_MSG_ASYNC_TX_MAX_BUF);
  687. return -EINVAL;
  688. }
  689. #endif
  690. msg_async.msg[0].buf = (uint8_t *)buf;
  691. msg_async.msg[0].len = num_bytes;
  692. msg_async.msg[0].flags = I2C_MSG_WRITE | I2C_MSG_STOP;
  693. msg_async.addr = addr;
  694. msg_async.num_msgs = 1;
  695. msg_async.async_func = async_func;
  696. msg_async.cb_data = cb_data;
  697. return api->transfer_async(dev, &msg_async);
  698. }
  699. /**
  700. * @brief Read a set amount of data from an I2C device in async mode.
  701. *
  702. * This routine reads a set amount of data synchronously.
  703. *
  704. * @param dev Pointer to the device structure for an I2C controller
  705. * driver configured in master mode.
  706. * @param buf Memory pool that stores the retrieved data.
  707. * @param num_bytes Number of bytes to read.
  708. * @param addr Address of the I2C device being read.
  709. *
  710. * @retval 0 If successful.
  711. * @retval -EIO General input / output error.
  712. *
  713. * @note In case of not define CONFIG_I2C_ASYNC_MSG_INTERNAL_BUFFER, the parameter @a buf
  714. * shall be a global address.
  715. */
  716. static inline int i2c_read_async(const struct device *dev, uint8_t *buf,
  717. uint32_t num_bytes, uint16_t addr,
  718. i2c_async_func_t async_func, void *cb_data)
  719. {
  720. struct i2c_msg_async msg_async = {0};
  721. const struct i2c_driver_api *api =
  722. (const struct i2c_driver_api *)dev->api;
  723. #ifdef CONFIG_I2C_ASYNC_MSG_INTERNAL_BUFFER
  724. if ((num_bytes > I2C_MSG_ASYNC_RX_MAX_BUF) || (!num_bytes)) {
  725. printk("invalid num_bytes:%d max:%d\n",
  726. num_bytes, I2C_MSG_ASYNC_RX_MAX_BUF);
  727. return -EINVAL;
  728. }
  729. #endif
  730. msg_async.msg[0].buf = buf;
  731. msg_async.msg[0].len = num_bytes;
  732. msg_async.msg[0].flags = I2C_MSG_READ | I2C_MSG_STOP;
  733. msg_async.addr = addr;
  734. msg_async.num_msgs = 1;
  735. msg_async.async_func = async_func;
  736. msg_async.cb_data = cb_data;
  737. return api->transfer_async(dev, &msg_async);
  738. }
  739. /**
  740. * @brief Write then read data from an I2C device in async mode.
  741. *
  742. * This supports the common operation "this is what I want", "now give
  743. * it to me" transaction pair through a combined write-then-read bus
  744. * transaction.
  745. *
  746. * @param dev Pointer to the device structure for an I2C controller
  747. * driver configured in master mode.
  748. * @param addr Address of the I2C device
  749. * @param write_buf Pointer to the data to be written
  750. * @param num_write Number of bytes to write
  751. * @param read_buf Pointer to storage for read data
  752. * @param num_read Number of bytes to read
  753. *
  754. * @retval 0 if successful
  755. * @retval negative on error.
  756. *
  757. * @note In case of not define CONFIG_I2C_ASYNC_MSG_INTERNAL_BUFFER, the parameter
  758. * @a write_buf and read_buf shall be a global address.
  759. */
  760. static inline int i2c_write_read_async(const struct device *dev, uint16_t addr,
  761. const void *write_buf, size_t num_write,
  762. void *read_buf, size_t num_read,
  763. i2c_async_func_t async_func, void *cb_data)
  764. {
  765. struct i2c_msg_async msg_async = {0};
  766. const struct i2c_driver_api *api =
  767. (const struct i2c_driver_api *)dev->api;
  768. #ifdef CONFIG_I2C_ASYNC_MSG_INTERNAL_BUFFER
  769. if ((num_write > I2C_MSG_ASYNC_TX_MAX_BUF) || (!num_write)) {
  770. printk("invalid num_write:%d max:%d\n",
  771. num_write, I2C_MSG_ASYNC_TX_MAX_BUF);
  772. return -EINVAL;
  773. }
  774. if ((num_read > I2C_MSG_ASYNC_RX_MAX_BUF) || (!num_read)) {
  775. printk("invalid num_read:%d max:%d\n",
  776. num_read, I2C_MSG_ASYNC_RX_MAX_BUF);
  777. return -EINVAL;
  778. }
  779. #endif
  780. msg_async.msg[0].buf = (uint8_t *)write_buf;
  781. msg_async.msg[0].len = num_write;
  782. msg_async.msg[0].flags = I2C_MSG_WRITE;
  783. msg_async.msg[1].buf = (uint8_t *)read_buf;
  784. msg_async.msg[1].len = num_read;
  785. msg_async.msg[1].flags = I2C_MSG_RESTART | I2C_MSG_READ | I2C_MSG_STOP;
  786. msg_async.addr = addr;
  787. msg_async.num_msgs = 2;
  788. msg_async.async_func = async_func;
  789. msg_async.cb_data = cb_data;
  790. return api->transfer_async(dev, &msg_async);
  791. }
  792. #endif
  793. /**
  794. * @brief Write then read data from an I2C device.
  795. *
  796. * This is equivalent to:
  797. *
  798. * i2c_write_read(spec->bus, spec->addr,
  799. * write_buf, num_write,
  800. * read_buf, num_read);
  801. *
  802. * @param spec I2C specification from devicetree.
  803. * @param write_buf Pointer to the data to be written
  804. * @param num_write Number of bytes to write
  805. * @param read_buf Pointer to storage for read data
  806. * @param num_read Number of bytes to read
  807. *
  808. * @return a value from i2c_write_read()
  809. */
  810. static inline int i2c_write_read_dt(const struct i2c_dt_spec *spec,
  811. const void *write_buf, size_t num_write,
  812. void *read_buf, size_t num_read)
  813. {
  814. return i2c_write_read(spec->bus, spec->addr,
  815. write_buf, num_write,
  816. read_buf, num_read);
  817. }
  818. /**
  819. * @brief Read multiple bytes from an internal address of an I2C device.
  820. *
  821. * This routine reads multiple bytes from an internal address of an
  822. * I2C device synchronously.
  823. *
  824. * Instances of this may be replaced by i2c_write_read().
  825. *
  826. * @param dev Pointer to the device structure for an I2C controller
  827. * driver configured in master mode.
  828. * @param dev_addr Address of the I2C device for reading.
  829. * @param start_addr Internal address from which the data is being read.
  830. * @param buf Memory pool that stores the retrieved data.
  831. * @param num_bytes Number of bytes being read.
  832. *
  833. * @retval 0 If successful.
  834. * @retval -EIO General input / output error.
  835. */
  836. static inline int i2c_burst_read(const struct device *dev,
  837. uint16_t dev_addr,
  838. uint8_t start_addr,
  839. uint8_t *buf,
  840. uint32_t num_bytes)
  841. {
  842. return i2c_write_read(dev, dev_addr,
  843. &start_addr, sizeof(start_addr),
  844. buf, num_bytes);
  845. }
  846. /**
  847. * @brief Read multiple bytes from an internal address of an I2C device.
  848. *
  849. * This is equivalent to:
  850. *
  851. * i2c_burst_read(spec->bus, spec->addr, start_addr, buf, num_bytes);
  852. *
  853. * @param spec I2C specification from devicetree.
  854. * @param start_addr Internal address from which the data is being read.
  855. * @param buf Memory pool that stores the retrieved data.
  856. * @param num_bytes Number of bytes to read.
  857. *
  858. * @return a value from i2c_burst_read()
  859. */
  860. static inline int i2c_burst_read_dt(const struct i2c_dt_spec *spec,
  861. uint8_t start_addr,
  862. uint8_t *buf,
  863. uint32_t num_bytes)
  864. {
  865. return i2c_burst_read(spec->bus, spec->addr,
  866. start_addr, buf, num_bytes);
  867. }
  868. /**
  869. * @brief Write multiple bytes to an internal address of an I2C device.
  870. *
  871. * This routine writes multiple bytes to an internal address of an
  872. * I2C device synchronously.
  873. *
  874. * @warning The combined write synthesized by this API may not be
  875. * supported on all I2C devices. Uses of this API may be made more
  876. * portable by replacing them with calls to i2c_write() passing a
  877. * buffer containing the combined address and data.
  878. *
  879. * @param dev Pointer to the device structure for an I2C controller
  880. * driver configured in master mode.
  881. * @param dev_addr Address of the I2C device for writing.
  882. * @param start_addr Internal address to which the data is being written.
  883. * @param buf Memory pool from which the data is transferred.
  884. * @param num_bytes Number of bytes being written.
  885. *
  886. * @retval 0 If successful.
  887. * @retval -EIO General input / output error.
  888. */
  889. static inline int i2c_burst_write(const struct device *dev,
  890. uint16_t dev_addr,
  891. uint8_t start_addr,
  892. const uint8_t *buf,
  893. uint32_t num_bytes)
  894. {
  895. struct i2c_msg msg[2];
  896. msg[0].buf = &start_addr;
  897. msg[0].len = 1U;
  898. msg[0].flags = I2C_MSG_WRITE;
  899. msg[1].buf = (uint8_t *)buf;
  900. msg[1].len = num_bytes;
  901. msg[1].flags = I2C_MSG_WRITE | I2C_MSG_STOP;
  902. return i2c_transfer(dev, msg, 2, dev_addr);
  903. }
  904. /**
  905. * @brief Write multiple bytes to an internal address of an I2C device.
  906. *
  907. * This is equivalent to:
  908. *
  909. * i2c_burst_write(spec->bus, spec->addr, start_addr, buf, num_bytes);
  910. *
  911. * @param spec I2C specification from devicetree.
  912. * @param start_addr Internal address to which the data is being written.
  913. * @param buf Memory pool from which the data is transferred.
  914. * @param num_bytes Number of bytes being written.
  915. *
  916. * @return a value from i2c_burst_write()
  917. */
  918. static inline int i2c_burst_write_dt(const struct i2c_dt_spec *spec,
  919. uint8_t start_addr,
  920. const uint8_t *buf,
  921. uint32_t num_bytes)
  922. {
  923. return i2c_burst_write(spec->bus, spec->addr,
  924. start_addr, buf, num_bytes);
  925. }
  926. /**
  927. * @brief Read internal register of an I2C device.
  928. *
  929. * This routine reads the value of an 8-bit internal register of an I2C
  930. * device synchronously.
  931. *
  932. * @param dev Pointer to the device structure for an I2C controller
  933. * driver configured in master mode.
  934. * @param dev_addr Address of the I2C device for reading.
  935. * @param reg_addr Address of the internal register being read.
  936. * @param value Memory pool that stores the retrieved register value.
  937. *
  938. * @retval 0 If successful.
  939. * @retval -EIO General input / output error.
  940. */
  941. static inline int i2c_reg_read_byte(const struct device *dev,
  942. uint16_t dev_addr,
  943. uint8_t reg_addr, uint8_t *value)
  944. {
  945. return i2c_write_read(dev, dev_addr,
  946. &reg_addr, sizeof(reg_addr),
  947. value, sizeof(*value));
  948. }
  949. /**
  950. * @brief Read internal register of an I2C device.
  951. *
  952. * This is equivalent to:
  953. *
  954. * i2c_reg_read_byte(spec->bus, spec->addr, reg_addr, value);
  955. *
  956. * @param spec I2C specification from devicetree.
  957. * @param reg_addr Address of the internal register being read.
  958. * @param value Memory pool that stores the retrieved register value.
  959. *
  960. * @return a value from i2c_reg_read_byte()
  961. */
  962. static inline int i2c_reg_read_byte_dt(const struct i2c_dt_spec *spec,
  963. uint8_t reg_addr, uint8_t *value)
  964. {
  965. return i2c_reg_read_byte(spec->bus, spec->addr, reg_addr, value);
  966. }
  967. /**
  968. * @brief Write internal register of an I2C device.
  969. *
  970. * This routine writes a value to an 8-bit internal register of an I2C
  971. * device synchronously.
  972. *
  973. * @note This function internally combines the register and value into
  974. * a single bus transaction.
  975. *
  976. * @param dev Pointer to the device structure for an I2C controller
  977. * driver configured in master mode.
  978. * @param dev_addr Address of the I2C device for writing.
  979. * @param reg_addr Address of the internal register being written.
  980. * @param value Value to be written to internal register.
  981. *
  982. * @retval 0 If successful.
  983. * @retval -EIO General input / output error.
  984. */
  985. static inline int i2c_reg_write_byte(const struct device *dev,
  986. uint16_t dev_addr,
  987. uint8_t reg_addr, uint8_t value)
  988. {
  989. uint8_t tx_buf[2] = {reg_addr, value};
  990. return i2c_write(dev, tx_buf, 2, dev_addr);
  991. }
  992. /**
  993. * @brief Write internal register of an I2C device.
  994. *
  995. * This is equivalent to:
  996. *
  997. * i2c_reg_write_byte(spec->bus, spec->addr, reg_addr, value);
  998. *
  999. * @param spec I2C specification from devicetree.
  1000. * @param reg_addr Address of the internal register being written.
  1001. * @param value Value to be written to internal register.
  1002. *
  1003. * @return a value from i2c_reg_write_byte()
  1004. */
  1005. static inline int i2c_reg_write_byte_dt(const struct i2c_dt_spec *spec,
  1006. uint8_t reg_addr, uint8_t value)
  1007. {
  1008. return i2c_reg_write_byte(spec->bus, spec->addr, reg_addr, value);
  1009. }
  1010. /**
  1011. * @brief Update internal register of an I2C device.
  1012. *
  1013. * This routine updates the value of a set of bits from an 8-bit internal
  1014. * register of an I2C device synchronously.
  1015. *
  1016. * @note If the calculated new register value matches the value that
  1017. * was read this function will not generate a write operation.
  1018. *
  1019. * @param dev Pointer to the device structure for an I2C controller
  1020. * driver configured in master mode.
  1021. * @param dev_addr Address of the I2C device for updating.
  1022. * @param reg_addr Address of the internal register being updated.
  1023. * @param mask Bitmask for updating internal register.
  1024. * @param value Value for updating internal register.
  1025. *
  1026. * @retval 0 If successful.
  1027. * @retval -EIO General input / output error.
  1028. */
  1029. static inline int i2c_reg_update_byte(const struct device *dev,
  1030. uint8_t dev_addr,
  1031. uint8_t reg_addr, uint8_t mask,
  1032. uint8_t value)
  1033. {
  1034. uint8_t old_value, new_value;
  1035. int rc;
  1036. rc = i2c_reg_read_byte(dev, dev_addr, reg_addr, &old_value);
  1037. if (rc != 0) {
  1038. return rc;
  1039. }
  1040. new_value = (old_value & ~mask) | (value & mask);
  1041. if (new_value == old_value) {
  1042. return 0;
  1043. }
  1044. return i2c_reg_write_byte(dev, dev_addr, reg_addr, new_value);
  1045. }
  1046. /**
  1047. * @brief Update internal register of an I2C device.
  1048. *
  1049. * This is equivalent to:
  1050. *
  1051. * i2c_reg_update_byte(spec->bus, spec->addr, reg_addr, mask, value);
  1052. *
  1053. * @param spec I2C specification from devicetree.
  1054. * @param reg_addr Address of the internal register being updated.
  1055. * @param mask Bitmask for updating internal register.
  1056. * @param value Value for updating internal register.
  1057. *
  1058. * @return a value from i2c_reg_update_byte()
  1059. */
  1060. static inline int i2c_reg_update_byte_dt(const struct i2c_dt_spec *spec,
  1061. uint8_t reg_addr, uint8_t mask,
  1062. uint8_t value)
  1063. {
  1064. return i2c_reg_update_byte(spec->bus, spec->addr,
  1065. reg_addr, mask, value);
  1066. }
  1067. /**
  1068. * @brief Dump out an I2C message
  1069. *
  1070. * Dumps out a list of I2C messages. For any that are writes (W), the data is
  1071. * displayed in hex.
  1072. *
  1073. * It looks something like this (with name "testing"):
  1074. *
  1075. * D: I2C msg: testing, addr=56
  1076. * D: W len=01:
  1077. * D: contents:
  1078. * D: 06 |.
  1079. * D: W len=0e:
  1080. * D: contents:
  1081. * D: 00 01 02 03 04 05 06 07 |........
  1082. * D: 08 09 0a 0b 0c 0d |......
  1083. *
  1084. * @param name Name of this dump, displayed at the top.
  1085. * @param msgs Array of messages to dump.
  1086. * @param num_msgs Number of messages to dump.
  1087. * @param addr Address of the I2C target device.
  1088. */
  1089. void i2c_dump_msgs(const char *name, const struct i2c_msg *msgs,
  1090. uint8_t num_msgs, uint16_t addr);
  1091. struct i2c_client_config {
  1092. char *i2c_master;
  1093. uint16_t i2c_addr;
  1094. };
  1095. #define I2C_DECLARE_CLIENT_CONFIG struct i2c_client_config i2c_client
  1096. #define I2C_CLIENT(_master, _addr) \
  1097. .i2c_client = { \
  1098. .i2c_master = (_master), \
  1099. .i2c_addr = (_addr), \
  1100. }
  1101. #define I2C_GET_MASTER(_conf) ((_conf)->i2c_client.i2c_master)
  1102. #define I2C_GET_ADDR(_conf) ((_conf)->i2c_client.i2c_addr)
  1103. #ifdef __cplusplus
  1104. }
  1105. #endif
  1106. /**
  1107. * @}
  1108. */
  1109. #include <syscalls/i2c.h>
  1110. #endif /* ZEPHYR_INCLUDE_DRIVERS_I2C_H_ */