ec_host_cmd_periph.h 3.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133
  1. /*
  2. * Copyright (c) 2020 Google LLC.
  3. *
  4. * SPDX-License-Identifier: Apache-2.0
  5. */
  6. /**
  7. * @file
  8. * @brief Public APIs for Host Command Peripherals that respond to host commands
  9. */
  10. #ifndef ZEPHYR_INCLUDE_DRIVERS_HOST_CMD_PERIPH_H_
  11. #define ZEPHYR_INCLUDE_DRIVERS_HOST_CMD_PERIPH_H_
  12. #include <sys/__assert.h>
  13. #include <zephyr/types.h>
  14. #include <device.h>
  15. #ifdef __cplusplus
  16. extern "C" {
  17. #endif
  18. /**
  19. * @brief Host Command Peripherals API
  20. * @defgroup ec_host_cmd_periph Host Command Peripherals API
  21. * @ingroup io_interfaces
  22. * @{
  23. */
  24. /**
  25. * @brief Context for host command peripheral and framework to pass rx data
  26. */
  27. struct ec_host_cmd_periph_rx_ctx {
  28. /** Buffer written to by device (when dev_owns) and read from by
  29. * command framework and handler (when handler_owns). Buffer is owned
  30. * by devices and lives as long as device is valid. Device will never
  31. * read from this buffer (for security reasons).
  32. */
  33. uint8_t *buf;
  34. /** Number of bytes written to @a buf by device (when dev_owns). */
  35. size_t *len;
  36. /** Device will take when it needs to write to @a buf and @a size. */
  37. struct k_sem *dev_owns;
  38. /** Handler will take so it can read @a buf and @a size */
  39. struct k_sem *handler_owns;
  40. };
  41. /**
  42. * @brief Context for host command peripheral and framework to pass tx data
  43. */
  44. struct ec_host_cmd_periph_tx_buf {
  45. /** Data to write to the host */
  46. void *buf;
  47. /** Number of bytes to write from @a buf */
  48. size_t len;
  49. };
  50. typedef int (*ec_host_cmd_periph_api_init)(
  51. const struct device *dev, struct ec_host_cmd_periph_rx_ctx *rx_ctx);
  52. typedef int (*ec_host_cmd_periph_api_send)(
  53. const struct device *dev,
  54. const struct ec_host_cmd_periph_tx_buf *tx_buf);
  55. __subsystem struct ec_host_cmd_periph_api {
  56. ec_host_cmd_periph_api_init init;
  57. ec_host_cmd_periph_api_send send;
  58. };
  59. /**
  60. * @brief Initialize a host command device
  61. *
  62. * This routine initializes a host command device, prior to its first use. The
  63. * receive context object are an output of this function and are valid
  64. * for the lifetime of this device. The RX context is used by the client to
  65. * receive data from the host.
  66. *
  67. * @param dev Pointer to the device structure for the driver instance.
  68. * @param rx_ctx [out] The receiving context object that are valid for the
  69. * lifetime of the device. These objects are used to receive data
  70. * from the driver when the host send data.
  71. *
  72. * @retval 0 if successful
  73. */
  74. __syscall int ec_host_cmd_periph_init(const struct device *dev,
  75. struct ec_host_cmd_periph_rx_ctx *rx_ctx);
  76. static inline int
  77. z_impl_ec_host_cmd_periph_init(const struct device *dev,
  78. struct ec_host_cmd_periph_rx_ctx *rx_ctx)
  79. {
  80. const struct ec_host_cmd_periph_api *api =
  81. (const struct ec_host_cmd_periph_api *)dev->api;
  82. return api->init(dev, rx_ctx);
  83. }
  84. /**
  85. * @brief Sends the specified data to the host
  86. *
  87. * Sends the data specified in @a tx_buf to the host over the host communication
  88. * bus.
  89. *
  90. * @param dev Pointer to the device structure for the driver instance.
  91. * @param tx_buf The data to transmit to the host.
  92. *
  93. * @retval 0 if successful
  94. */
  95. __syscall int ec_host_cmd_periph_send(
  96. const struct device *dev,
  97. const struct ec_host_cmd_periph_tx_buf *tx_buf);
  98. static inline int z_impl_ec_host_cmd_periph_send(
  99. const struct device *dev,
  100. const struct ec_host_cmd_periph_tx_buf *tx_buf)
  101. {
  102. const struct ec_host_cmd_periph_api *api =
  103. (const struct ec_host_cmd_periph_api *)dev->api;
  104. return api->send(dev, tx_buf);
  105. }
  106. /**
  107. * @}
  108. */
  109. #ifdef __cplusplus
  110. }
  111. #endif
  112. #include <syscalls/ec_host_cmd_periph.h>
  113. #endif /* ZEPHYR_INCLUDE_DRIVERS_HOST_CMD_PERIPH_H_ */