ir_data_hal.h 4.9 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277
  1. #ifndef __IR_DATA_HAL_H__
  2. #define __IR_DATA_HAL_H__
  3. #include <errno.h>
  4. #include <zephyr/types.h>
  5. #include <device.h>
  6. #define CAPTURE_DEVICE_NAME "capture"
  7. /* IR mode */
  8. #define IR_REPEAT_MODE (0 << 8)
  9. #define IR_CYCLE_MODE (1 << 8)
  10. #define IR_MASK (0xff)
  11. #define incode_mask (0xff)
  12. typedef void (*capture_notify_cb)(struct device *dev, struct input_value *val);
  13. typedef struct {
  14. u8_t ucode_offset;
  15. u32_t ucode_mask;
  16. u8_t dcode_offset;
  17. u32_t dcode_mask;
  18. u8_t inucode_offset;
  19. u8_t indcode_offset;
  20. u32_t user_code;
  21. u8_t code_endian;
  22. }ir_data_format_t;
  23. enum protocol_kind {
  24. IR_uPD6121,
  25. IR_uPD6121_repeat,
  26. IR_9012,
  27. IR_9012_repeat,
  28. IR_RC6_dat1,
  29. IR_RC6_dat2,
  30. IR_50462,
  31. IR_M50560_dat1,
  32. IR_M50560_dat2,
  33. IR_RC5,
  34. IR_7461,
  35. IR_7461_repeat,
  36. IR_3004,
  37. IR_RCA,
  38. IR_sharp,
  39. };
  40. struct ir_tranfer_param {
  41. u32_t data;
  42. u16_t protocol;
  43. u32_t key_on_off;
  44. };
  45. struct capture_handle
  46. {
  47. struct device *input_dev;
  48. capture_notify_cb capture_notify;
  49. };
  50. struct capture_data_handle
  51. {
  52. struct capture_handle * handle;
  53. capture_notify_cb capture_notify;
  54. };
  55. struct capture_protocol
  56. {
  57. uint16_t mode;/* protocol kind */
  58. uint32_t *data;/*!< ir data */
  59. uint16_t carry_rate;/* carry rate */
  60. };
  61. typedef struct /* remove user code and leave data */
  62. {
  63. uint32_t data1_mask;
  64. uint32_t data0_mask;
  65. uint8_t data_offset;
  66. uint32_t addr1_mask;
  67. uint32_t addr0_mask;
  68. uint8_t addr_offset;
  69. uint8_t endian;
  70. }capture_data_mask;
  71. enum PWM_IR_KEY_VAL {
  72. IR_KEY_OFF,
  73. IR_KEY_ON,
  74. };
  75. enum endian_define {
  76. Big_Endian = 0,
  77. Little_Endian,
  78. };
  79. #ifdef capture_param_init
  80. ir_data_format_t d_format[] = {
  81. {
  82. .ucode_offset = 16,
  83. .ucode_mask = 0xffff,
  84. .dcode_offset = 8,
  85. .dcode_mask = 0xff,
  86. .inucode_offset = incode_mask,
  87. .indcode_offset = 0,
  88. .user_code = 0x55aa,
  89. .code_endian = Little_Endian,
  90. },//nec
  91. {
  92. .ucode_offset = incode_mask,
  93. .ucode_mask = 0xffff,
  94. .dcode_offset = incode_mask,
  95. .dcode_mask = 0xff,
  96. .inucode_offset = incode_mask,
  97. .indcode_offset = incode_mask,
  98. .user_code = 0x55aa,
  99. .code_endian = Little_Endian,
  100. },//nec_repeat
  101. {
  102. .ucode_offset = 16,
  103. .ucode_mask = 0xffff,
  104. .dcode_offset = 8,
  105. .dcode_mask = 0xff,
  106. .inucode_offset = incode_mask,
  107. .indcode_offset = 0,
  108. .user_code = 0x55aa,
  109. .code_endian = Little_Endian,
  110. },//9012
  111. {
  112. .ucode_offset = incode_mask,
  113. .ucode_mask = 0xffff,
  114. .dcode_offset = incode_mask,
  115. .dcode_mask = 0xff,
  116. .inucode_offset = incode_mask,
  117. .indcode_offset = incode_mask,
  118. .user_code = 0x55aa,
  119. .code_endian = Little_Endian,
  120. },//9012_repeat
  121. {
  122. .ucode_offset = 0,
  123. .ucode_mask = 0xf,
  124. .dcode_offset = incode_mask,
  125. .inucode_offset = incode_mask,
  126. .indcode_offset = incode_mask,
  127. .user_code = 0x55,
  128. .code_endian = Big_Endian,
  129. },//RC-6_dat1
  130. {
  131. .ucode_offset = 8,
  132. .ucode_mask = 0xff,
  133. .dcode_offset = 0,
  134. .dcode_mask = 0xff,
  135. .inucode_offset = incode_mask,
  136. .indcode_offset = incode_mask,
  137. .user_code = 0x55,
  138. .code_endian = Big_Endian,
  139. },//RC-6_dat2
  140. {
  141. .ucode_offset = 8,
  142. .ucode_mask = 0xff,
  143. .dcode_offset = 0,
  144. .dcode_mask = 0xff,
  145. .inucode_offset = incode_mask,
  146. .indcode_offset = incode_mask,
  147. .user_code = 0x15,
  148. .code_endian = Little_Endian,
  149. },//50642
  150. {
  151. .ucode_offset = 0,
  152. .ucode_mask = 0xff,
  153. .dcode_offset = incode_mask,
  154. .dcode_mask = 0xff,
  155. .inucode_offset = incode_mask,
  156. .indcode_offset = incode_mask,
  157. .user_code = 0x55,
  158. .code_endian = Little_Endian,
  159. },//50560_dat1
  160. {
  161. .ucode_offset = incode_mask,
  162. .ucode_mask = 0xff,
  163. .dcode_offset = 0,
  164. .dcode_mask = 0xff,
  165. .inucode_offset = incode_mask,
  166. .indcode_offset = incode_mask,
  167. .user_code = 0x55,
  168. .code_endian = Little_Endian,
  169. },//50560_dat2
  170. {
  171. .ucode_offset = 6,
  172. .ucode_mask = 0x3f,
  173. .dcode_offset = 0,
  174. .dcode_mask = 0x3f,
  175. .inucode_offset = incode_mask,
  176. .indcode_offset = incode_mask,
  177. .user_code = 0x15,
  178. .code_endian = Big_Endian,
  179. },//RC-5
  180. {
  181. .ucode_offset = 29,
  182. .ucode_mask = 0x1fff,
  183. .dcode_offset = 8,
  184. .dcode_mask = 0xff,
  185. .inucode_offset = 16,
  186. .indcode_offset = 0,
  187. .user_code = 0x15ff,
  188. .code_endian = Little_Endian,
  189. },//7461
  190. {
  191. .ucode_offset = incode_mask,
  192. .ucode_mask = 0x1fff,
  193. .dcode_offset = incode_mask,
  194. .dcode_mask = 0xff,
  195. .inucode_offset = incode_mask,
  196. .indcode_offset = incode_mask,
  197. .user_code = 0x15,
  198. .code_endian = Little_Endian,
  199. },//7461_repeat
  200. {
  201. .ucode_offset = 6,
  202. .ucode_mask = 0xf,
  203. .dcode_offset = 0,
  204. .dcode_mask = 0x3f,
  205. .inucode_offset = incode_mask,
  206. .indcode_offset = incode_mask,
  207. .user_code = 0x6,
  208. .code_endian = Big_Endian,
  209. },//3004
  210. {
  211. .ucode_offset = 20,
  212. .ucode_mask = 0xf,
  213. .dcode_offset = 12,
  214. .dcode_mask = 0xff,
  215. .inucode_offset = 8,
  216. .indcode_offset = 0,
  217. .user_code = 0x55,
  218. .code_endian = Big_Endian,
  219. },//rca
  220. {
  221. .ucode_offset = 10,
  222. .ucode_mask = 0x1f,
  223. .dcode_offset = 0,
  224. .dcode_mask = 0x3ff,
  225. .inucode_offset = incode_mask,
  226. .indcode_offset = incode_mask,
  227. .user_code = 0x6,
  228. .code_endian = Little_Endian,
  229. },//sharp
  230. };
  231. #else
  232. extern ir_data_format_t d_format[];
  233. #endif
  234. void capture_ir_init(capture_notify_cb cb);
  235. int ir_dev_init();
  236. int ir_dev_send(struct ir_tranfer_param *param);
  237. #endif //__IR_DATA_HAL_H__