cec.h 2.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100
  1. /**
  2. * @file
  3. *
  4. * @brief Public APIs for the CEC drivers.
  5. * Copyright (c) 2020 Actions Semiconductor Co., Ltd
  6. * SPDX-License-Identifier: Apache-2.0
  7. */
  8. #ifndef __CEC_H__
  9. #define __CEC_H__
  10. /**
  11. * @brief HDMI CEC Interface
  12. * @defgroup cec_interface CEC Interface
  13. * @ingroup io_interfaces
  14. * @{
  15. */
  16. #ifdef __cplusplus
  17. extern "C" {
  18. #endif
  19. #include <zephyr/types.h>
  20. #include <device.h>
  21. /*
  22. * The following #defines are used to configure the CEC controller.
  23. */
  24. /** CEC transfer MAX size */
  25. #define CEC_TRANSFER_MAX_SIZE (16)
  26. /**
  27. * @brief One CEC Message.
  28. *
  29. * This defines one CEC message to transact on the CEC bus.
  30. */
  31. struct cec_msg {
  32. uint8_t buf[CEC_TRANSFER_MAX_SIZE]; /* Data buffer in bytes */
  33. uint8_t len; /* Valid length of buffer in bytes */
  34. uint8_t initiator : 4; /* The initiator address */
  35. uint8_t destination : 4; /* The destination address */
  36. };
  37. struct cec_driver_api {
  38. int (*config)(const struct device *dev, uint8_t local_addr);
  39. int (*write)(const struct device *dev, const struct cec_msg *msg, uint32_t timeout_ms);
  40. int (*read)(const struct device *dev, struct cec_msg *msg, uint32_t timeout_ms);
  41. };
  42. /**
  43. * @brief Configure the local address of CEC device.
  44. *
  45. * @param local_addr The CEC local address.
  46. *
  47. * @retval 0 If successful.
  48. * @retval -EIO General input / output error, failed to configure device.
  49. */
  50. static inline int cec_config_local_addr(const struct device *dev, uint8_t local_addr)
  51. {
  52. const struct cec_driver_api *api = dev->api;
  53. return api->config(dev, local_addr);
  54. }
  55. /**
  56. * @brief Write a set amount of data to an CEC device.
  57. *
  58. * This routine writes a set amount of data synchronously.
  59. *
  60. * @param msg Pointer to the device structure for a CEC message.
  61. *
  62. * @retval 0 If successful.
  63. * @retval -EIO General input / output error.
  64. */
  65. static inline int cec_write(const struct device *dev, const struct cec_msg *msg, uint32_t timeout_ms)
  66. {
  67. const struct cec_driver_api *api = dev->api;
  68. return api->write(dev, msg, timeout_ms);
  69. }
  70. /**
  71. * @brief Read a set amount of data from an CEC device.
  72. *
  73. * This routine reads a set amount of data synchronously.
  74. *
  75. * @param msg Pointer to the device structure for a CEC message.
  76. *
  77. * @retval 0 If successful.
  78. * @retval -EIO General input / output error.
  79. */
  80. static inline int cec_read(const struct device *dev, struct cec_msg *msg, uint32_t timeout_ms)
  81. {
  82. const struct cec_driver_api *api = dev->api;
  83. return api->read(dev, msg, timeout_ms);
  84. }
  85. #ifdef __cplusplus
  86. }
  87. #endif
  88. #endif /* __CEC_H__ */