ec_host_cmd.h 7.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207
  1. /*
  2. * Copyright (c) 2020 Google LLC
  3. *
  4. * SPDX-License-Identifier: Apache-2.0
  5. */
  6. #ifndef ZEPHYR_INCLUDE_MGMT_EC_HOST_CMD_H_
  7. #define ZEPHYR_INCLUDE_MGMT_EC_HOST_CMD_H_
  8. /**
  9. * @brief EC Host Command Interface
  10. * @defgroup ec_host_cmd_periph_interface EC Host Command Interface
  11. * @ingroup io_interfaces
  12. * @{
  13. */
  14. #include <stdint.h>
  15. /**
  16. * @brief Arguments passed into every installed host command handler
  17. */
  18. struct ec_host_cmd_handler_args {
  19. /** The incoming data that can be cast to the handlers request type. */
  20. const void *const input_buf;
  21. /** The number of valid bytes that can be read from @a input_buf. */
  22. const uint16_t input_buf_size;
  23. /** The data written to this buffer will be send to the host. */
  24. void *const output_buf;
  25. /** [in/out] Upon entry, this is the maximum number of bytes that can
  26. * be written to the @a output_buf. Upon exit, this should be
  27. * the number of bytes of @a output_buf to send to the host.
  28. */
  29. uint16_t output_buf_size;
  30. /** The version of the host command that is being requested. This will
  31. * be a value that has been static registered as valid for the handler.
  32. */
  33. const uint8_t version;
  34. };
  35. typedef enum ec_host_cmd_status (*ec_host_cmd_handler_cb)(
  36. struct ec_host_cmd_handler_args *args);
  37. /**
  38. * @brief Structure use for statically registering host command handlers
  39. */
  40. struct ec_host_cmd_handler {
  41. /** Callback routine to process commands that match @a id. */
  42. ec_host_cmd_handler_cb handler;
  43. /** The numberical command id used as the lookup for commands. */
  44. uint16_t id;
  45. /** The bitfield of all versions that the @a handler supports, where
  46. * each bit value represents that the @a handler supports that version.
  47. * E.g. BIT(0) corresponse to version 0.
  48. */
  49. uint16_t version_mask;
  50. /** The minimum @a input_buf_size enforced by the framework before
  51. * passing to the handler.
  52. */
  53. uint16_t min_rqt_size;
  54. /** The minimum @a output_buf_size enforced by the framework before
  55. * passing to the handler.
  56. */
  57. uint16_t min_rsp_size;
  58. };
  59. /**
  60. * @def EC_HOST_CMD_HANDLER
  61. * @brief Statically define and register a host command handler.
  62. *
  63. * Helper macro to statically define and register a host command handler that
  64. * has a compile-time-fixed sizes for its both request and response structures.
  65. *
  66. * @param _function Name of handler function.
  67. * @param _id Id of host command to handle request for.
  68. * @param _version_mask The bitfield of all versions that the @a _function
  69. * supports. E.g. BIT(0) corresponse to version 0.
  70. * @param _request_type The datatype of the request parameters for @a _function.
  71. * @param _response_type The datatype of the response parameters for
  72. * @a _function.
  73. */
  74. #define EC_HOST_CMD_HANDLER(_function, _id, _version_mask, _request_type, \
  75. _response_type) \
  76. const STRUCT_SECTION_ITERABLE(ec_host_cmd_handler, __cmd##_id) = { \
  77. .id = _id, \
  78. .handler = _function, \
  79. .version_mask = _version_mask, \
  80. .min_rqt_size = sizeof(_request_type), \
  81. .min_rsp_size = sizeof(_response_type), \
  82. }
  83. /**
  84. * @def EC_HOST_CMD_HANDLER_UNBOUND
  85. * @brief Statically define and register a host command handler without sizes.
  86. *
  87. * Helper macro to statically define and register a host command handler whose
  88. * request or response structure size is not known as compile time.
  89. *
  90. * @param _function Name of handler function.
  91. * @param _id Id of host command to handle request for.
  92. * @param _version_mask The bitfield of all versions that the @a _function
  93. * supports. E.g. BIT(0) corresponse to version 0.
  94. */
  95. #define EC_HOST_CMD_HANDLER_UNBOUND(_function, _id, _version_mask) \
  96. const STRUCT_SECTION_ITERABLE(ec_host_cmd_handler, __cmd##_id) = { \
  97. .id = _id, \
  98. .handler = _function, \
  99. .version_mask = _version_mask, \
  100. .min_rqt_size = 0, \
  101. .min_rsp_size = 0, \
  102. }
  103. /**
  104. * @brief Header for requests from host to embedded controller
  105. *
  106. * Represent the over-the-wire header in LE format for host command requests.
  107. * This represent version 3 of the host command header. The requests are always
  108. * sent from host to embedded controller.
  109. */
  110. struct ec_host_cmd_request_header {
  111. /** Should be 3. The EC will return EC_HOST_CMD_INVALID_HEADER if it
  112. * receives a header with a version it doesn't know how to parse.
  113. */
  114. uint8_t prtcl_ver;
  115. /** Checksum of response and data; sum of all bytes including checksum.
  116. * Should total to 0.
  117. */
  118. uint8_t checksum;
  119. /** Id of command that is being sent. */
  120. uint16_t cmd_id;
  121. /** Version of the specific @a cmd_id being requested. Valid
  122. * versions start at 0.
  123. */
  124. uint8_t cmd_ver;
  125. /** Unused byte in current protocol version; set to 0. */
  126. uint8_t reserved;
  127. /** Length of data which follows this header. */
  128. uint16_t data_len;
  129. } __packed;
  130. /**
  131. * @brief Header for responses from embedded controller to host
  132. *
  133. * Represent the over-the-wire header in LE format for host command responses.
  134. * This represent version 3 of the host command header. Responses are always
  135. * sent from embedded controller to host.
  136. */
  137. struct ec_host_cmd_response_header {
  138. /** Should be 3. */
  139. uint8_t prtcl_ver;
  140. /** Checksum of response and data; sum of all bytes including checksum.
  141. * Should total to 0.
  142. */
  143. uint8_t checksum;
  144. /** A @a ec_host_cmd_status response code for specific command. */
  145. uint16_t result;
  146. /** Length of data which follows this header. */
  147. uint16_t data_len;
  148. /** Unused bytes in current protocol version; set to 0. */
  149. uint16_t reserved;
  150. } __packed;
  151. /*
  152. * Host command response codes (16-bit).
  153. */
  154. enum ec_host_cmd_status {
  155. /** Host command was successful. */
  156. EC_HOST_CMD_SUCCESS = 0,
  157. /** The specified command id is not recognized or supported. */
  158. EC_HOST_CMD_INVALID_COMMAND = 1,
  159. /** Generic Error. */
  160. EC_HOST_CMD_ERROR = 2,
  161. /** One of more of the input request parameters is invalid. */
  162. EC_HOST_CMD_INVALID_PARAM = 3,
  163. /** Host command is not permitted. */
  164. EC_HOST_CMD_ACCESS_DENIED = 4,
  165. /** Response was invalid (e.g. not version 3 of header). */
  166. EC_HOST_CMD_INVALID_RESPONSE = 5,
  167. /** Host command id version unsupported. */
  168. EC_HOST_CMD_INVALID_VERSION = 6,
  169. /** Checksum did not match */
  170. EC_HOST_CMD_INVALID_CHECKSUM = 7,
  171. /** A host command is currently being processed. */
  172. EC_HOST_CMD_IN_PROGRESS = 8,
  173. /** Requested information is currently unavailable. */
  174. EC_HOST_CMD_UNAVAILABLE = 9,
  175. /** Timeout during processing. */
  176. EC_HOST_CMD_TIMEOUT = 10,
  177. /** Data or table overflow. */
  178. EC_HOST_CMD_OVERFLOW = 11,
  179. /** Header is invalid or unsupported (e.g. not version 3 of header). */
  180. EC_HOST_CMD_INVALID_HEADER = 12,
  181. /** Did not receive all expected request data. */
  182. EC_HOST_CMD_REQUEST_TRUNCATED = 13,
  183. /** Response was too big to send within one response packet. */
  184. EC_HOST_CMD_RESPONSE_TOO_BIG = 14,
  185. /** Error on underlying communication bus. */
  186. EC_HOST_CMD_BUS_ERROR = 15,
  187. /** System busy. Should retry later. */
  188. EC_HOST_CMD_BUSY = 16,
  189. EC_HOST_CMD_MAX = UINT16_MAX /* Force enum to be 16 bits */
  190. } __packed;
  191. /**
  192. * @}
  193. */
  194. #endif /* ZEPHYR_INCLUDE_MGMT_EC_HOST_CMD_H_ */