osdp.h 6.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244
  1. /*
  2. * Copyright (c) 2020 Siddharth Chandrasekaran <siddharth@embedjournal.com>
  3. *
  4. * SPDX-License-Identifier: Apache-2.0
  5. */
  6. #ifndef _OSDP_H_
  7. #define _OSDP_H_
  8. #include <zephyr.h>
  9. #include <stdint.h>
  10. #include <sys/slist.h>
  11. #ifdef __cplusplus
  12. extern "C" {
  13. #endif
  14. #define OSDP_CMD_TEXT_MAX_LEN 32
  15. #define OSDP_CMD_KEYSET_KEY_MAX_LEN 32
  16. /**
  17. * @brief Various card formats that a PD can support. This is sent to CP
  18. * when a PD must report a card read.
  19. */
  20. enum osdp_card_formats_e {
  21. OSDP_CARD_FMT_RAW_UNSPECIFIED,
  22. OSDP_CARD_FMT_RAW_WIEGAND,
  23. OSDP_CARD_FMT_ASCII,
  24. OSDP_CARD_FMT_SENTINEL
  25. };
  26. /**
  27. * @brief Command sent from CP to Control digital output of PD.
  28. *
  29. * @param output_no 0 = First Output, 1 = Second Output, etc.
  30. * @param control_code One of the following:
  31. * 0 - NOP – do not alter this output
  32. * 1 - set the permanent state to OFF, abort timed operation (if any)
  33. * 2 - set the permanent state to ON, abort timed operation (if any)
  34. * 3 - set the permanent state to OFF, allow timed operation to complete
  35. * 4 - set the permanent state to ON, allow timed operation to complete
  36. * 5 - set the temporary state to ON, resume perm state on timeout
  37. * 6 - set the temporary state to OFF, resume permanent state on timeout
  38. * @param timer_count Time in units of 100 ms
  39. */
  40. struct osdp_cmd_output {
  41. uint8_t output_no;
  42. uint8_t control_code;
  43. uint16_t timer_count;
  44. };
  45. /**
  46. * @brief LED Colors as specified in OSDP for the on_color/off_color parameters.
  47. */
  48. enum osdp_led_color_e {
  49. OSDP_LED_COLOR_NONE,
  50. OSDP_LED_COLOR_RED,
  51. OSDP_LED_COLOR_GREEN,
  52. OSDP_LED_COLOR_AMBER,
  53. OSDP_LED_COLOR_BLUE,
  54. OSDP_LED_COLOR_SENTINEL
  55. };
  56. /**
  57. * @brief LED params sub-structure. Part of LED command. See struct osdp_cmd_led
  58. *
  59. * @param control_code One of the following:
  60. * Temporary Control Code:
  61. * 0 - NOP - do not alter this LED's temporary settings
  62. * 1 - Cancel any temporary operation and display this LED's permanent state
  63. * immediately
  64. * 2 - Set the temporary state as given and start timer immediately
  65. * Permanent Control Code:
  66. * 0 - NOP - do not alter this LED's permanent settings
  67. * 1 - Set the permanent state as given
  68. * @param on_count The ON duration of the flash, in units of 100 ms
  69. * @param off_count The OFF duration of the flash, in units of 100 ms
  70. * @param on_color Color to set during the ON timer (enum osdp_led_color_e)
  71. * @param off_color Color to set during the OFF timer (enum osdp_led_color_e)
  72. * @param timer_count Time in units of 100 ms (only for temporary mode)
  73. */
  74. struct osdp_cmd_led_params {
  75. uint8_t control_code;
  76. uint8_t on_count;
  77. uint8_t off_count;
  78. uint8_t on_color;
  79. uint8_t off_color;
  80. uint16_t timer_count;
  81. };
  82. /**
  83. * @brief Sent from CP to PD to control the behaviour of it's on-board LEDs
  84. *
  85. * @param reader 0 = First Reader, 1 = Second Reader, etc.
  86. * @param led_number 0 = first LED, 1 = second LED, etc.
  87. * @param temporary ephemeral LED status descriptor
  88. * @param permanent permanent LED status descriptor
  89. */
  90. struct osdp_cmd_led {
  91. uint8_t reader;
  92. uint8_t led_number;
  93. struct osdp_cmd_led_params temporary;
  94. struct osdp_cmd_led_params permanent;
  95. };
  96. /**
  97. * @brief Sent from CP to control the behaviour of a buzzer in the PD.
  98. *
  99. * @param reader 0 = First Reader, 1 = Second Reader, etc.
  100. * @param control_code 0: no tone, 1: off, 2: default tone, 3+ is TBD.
  101. * @param on_count The ON duration of the flash, in units of 100 ms
  102. * @param off_count The OFF duration of the flash, in units of 100 ms
  103. * @param rep_count The number of times to repeat the ON/OFF cycle; 0: forever
  104. */
  105. struct osdp_cmd_buzzer {
  106. uint8_t reader;
  107. uint8_t control_code;
  108. uint8_t on_count;
  109. uint8_t off_count;
  110. uint8_t rep_count;
  111. };
  112. /**
  113. * @brief Command to manuplate any display units that the PD supports.
  114. *
  115. * @param reader 0 = First Reader, 1 = Second Reader, etc.
  116. * @param control_code One of the following:
  117. * 1 - permanent text, no wrap
  118. * 2 - permanent text, with wrap
  119. * 3 - temp text, no wrap
  120. * 4 - temp text, with wrap
  121. * @param temp_time duration to display temporary text, in seconds
  122. * @param offset_row row to display the first character (1 indexed)
  123. * @param offset_col column to display the first character (1 indexed)
  124. * @param length Number of characters in the string
  125. * @param data The string to display
  126. */
  127. struct osdp_cmd_text {
  128. uint8_t reader;
  129. uint8_t control_code;
  130. uint8_t temp_time;
  131. uint8_t offset_row;
  132. uint8_t offset_col;
  133. uint8_t length;
  134. uint8_t data[OSDP_CMD_TEXT_MAX_LEN];
  135. };
  136. /**
  137. * @brief Sent in response to a COMSET command. Set communication parameters to
  138. * PD. Must be stored in PD non-volatile memory.
  139. *
  140. * @param address Unit ID to which this PD will respond after the change takes
  141. * effect.
  142. * @param baud_rate baud rate value 9600/38400/115200
  143. */
  144. struct osdp_cmd_comset {
  145. uint8_t address;
  146. uint32_t baud_rate;
  147. };
  148. /**
  149. * @brief This command transfers an encryption key from the CP to a PD.
  150. *
  151. * @param type Type of keys:
  152. * - 0x01 – Secure Channel Base Key
  153. * @param length Number of bytes of key data - (Key Length in bits + 7) / 8
  154. * @param data Key data
  155. */
  156. struct osdp_cmd_keyset {
  157. uint8_t type;
  158. uint8_t length;
  159. uint8_t data[OSDP_CMD_KEYSET_KEY_MAX_LEN];
  160. };
  161. /**
  162. * @brief OSDP application exposed commands
  163. */
  164. enum osdp_cmd_e {
  165. OSDP_CMD_OUTPUT = 1,
  166. OSDP_CMD_LED,
  167. OSDP_CMD_BUZZER,
  168. OSDP_CMD_TEXT,
  169. OSDP_CMD_KEYSET,
  170. OSDP_CMD_COMSET,
  171. OSDP_CMD_SENTINEL
  172. };
  173. /**
  174. * @brief OSDP Command Structure. This is a wrapper for all individual OSDP
  175. * commands.
  176. *
  177. * @param id used to select specific commands in union. Type: enum osdp_cmd_e
  178. * @param led LED command structure
  179. * @param buzzer buzzer command structure
  180. * @param text text command structure
  181. * @param output output command structure
  182. * @param comset comset command structure
  183. * @param keyset keyset command structure
  184. */
  185. struct osdp_cmd {
  186. sys_snode_t node;
  187. enum osdp_cmd_e id;
  188. union {
  189. struct osdp_cmd_led led;
  190. struct osdp_cmd_buzzer buzzer;
  191. struct osdp_cmd_text text;
  192. struct osdp_cmd_output output;
  193. struct osdp_cmd_comset comset;
  194. struct osdp_cmd_keyset keyset;
  195. };
  196. };
  197. #ifdef CONFIG_OSDP_MODE_PD
  198. /**
  199. * @param cmd pointer to a command structure that was received by the driver.
  200. *
  201. * @retval 0 on success.
  202. * @retval -1 on failure.
  203. */
  204. int osdp_pd_get_cmd(struct osdp_cmd *cmd);
  205. #else /* CONFIG_OSDP_MODE_PD */
  206. int osdp_cp_set_callback_key_press(
  207. int (*cb)(int address, uint8_t key));
  208. int osdp_cp_set_callback_card_read(
  209. int (*cb)(int address, int format, uint8_t *data, int len));
  210. int osdp_cp_send_command(int pd, struct osdp_cmd *cmd);
  211. #endif /* CONFIG_OSDP_MODE_PD */
  212. #ifdef CONFIG_OSDP_SC_ENABLED
  213. uint32_t osdp_get_sc_status_mask(void);
  214. #endif
  215. #ifdef __cplusplus
  216. }
  217. #endif
  218. #endif /* _OSDP_H_ */