ir_protocol_hal.h 9.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501
  1. #ifndef __IR_PROTOCOL_HAL_H__
  2. #define __IR_PROTOCOL_HAL_H__
  3. #include <errno.h>
  4. #include <zephyr/types.h>
  5. #include <device.h>
  6. #define IR_PWM_DEVICE_NAME "PWM"
  7. #define IR_PWM_DEVICE_CHANS 15
  8. #define pwm_clk_rate (12000000)
  9. enum protocol_map {
  10. PWM_IR_6122 = 0,
  11. PWM_IR_6122_REPEAT,
  12. PWM_IR_9012,
  13. PWM_IR_9012_REPEAT,
  14. PWM_IR_RC6,
  15. PWM_IR_50462,
  16. PWM_IR_M50560,
  17. PWM_IR_RC5X,
  18. PWM_IR_7461,
  19. PWM_IR_7461_REPEAT,
  20. PWM_IR_3004,
  21. PWM_IR_RCA,
  22. PWM_IR_sharp,
  23. // PWM_IR_261,
  24. };
  25. struct capture_data
  26. {
  27. u32_t *capture_data;
  28. u32_t carrier_rate;//khz
  29. };
  30. typedef struct {
  31. volatile bool ir_lc_check_en;//leader code check enable
  32. volatile u32_t ir_lc_bit_length;//us
  33. volatile u32_t ir_lc_code;
  34. volatile u32_t ir_max_code;//us
  35. volatile bool ir_cv_check_en;//code value check enable
  36. volatile u32_t ir_stop_bit;
  37. volatile u32_t ir_dc_length;//data code length check
  38. volatile u32_t code_bit_length;
  39. volatile u32_t ir_0_code;
  40. volatile u32_t ir_1_code;
  41. volatile u32_t ir_tr0_code;
  42. volatile u32_t ir_tr1_code;
  43. volatile u32_t ir_trc_loc;
  44. volatile bool ir_cr_check_en;//carrier wave rate check enable
  45. volatile u8_t ir_cr_rate;//khz
  46. volatile bool ir_Tf_check_en;//ir Tf check enable(Tf:Minimum cycle length)
  47. volatile u32_t ir_Tf_length;//us/10(108ms -> 10800)
  48. volatile bool ir_ic_check_en;//ir inverse code check enable
  49. volatile u32_t ir_ic_mask;
  50. volatile u8_t ir_ic_co;//ir code offset
  51. volatile u8_t ir_ic_ico;//ir inverse code offset
  52. volatile u8_t ir_asc;//cycle times
  53. volatile u8_t ir_threshold_val;//The threshold value:ir_threshold_val/100
  54. } ir_receive_param_t;
  55. struct ir_protocol_handle
  56. {
  57. struct device *input_dev;
  58. uint32_t chans;
  59. };
  60. typedef struct {
  61. u32_t ll;
  62. u16_t ld;
  63. } pwm_ld_t;
  64. struct ir_protocol_value {
  65. u32_t *data;
  66. u16_t mode;
  67. u32_t buf_num;
  68. pwm_ld_t *lead;
  69. };
  70. struct acts_pwm_ir_protocol_param {
  71. u32_t buf_num;
  72. u32_t *data;
  73. u16_t mode;
  74. pwm_ld_t *lead;
  75. };
  76. /* IR mode */
  77. #define PWM_IR_REPEAT_MODE (0 << 8)
  78. #define PWM_IR_CYCLE_MODE (1 << 8)
  79. #define PWM_IR_MASK (0xff)
  80. typedef struct {
  81. volatile u32_t ir_period;
  82. volatile u32_t ir_duty;
  83. volatile u32_t ir_lc;
  84. volatile u32_t ir_pl0_pre;
  85. volatile u32_t ir_pl0_post;
  86. volatile u32_t ir_pl1_pre;
  87. volatile u32_t ir_pl1_post;
  88. volatile u32_t ir_ll;
  89. volatile u32_t ir_ld;//01b
  90. volatile u32_t ir_pl;
  91. volatile u32_t ir_stop_bit;
  92. volatile u32_t ir_asc;
  93. volatile u32_t ir_Tf;
  94. } pwm_ir_mode_param_t;
  95. #define Protocols_MAX 12
  96. #ifdef ir_protocol_param_init
  97. ir_receive_param_t ir_protocol_param[Protocols_MAX] = {
  98. {
  99. .ir_lc_check_en = true,
  100. .ir_lc_bit_length = 2250,
  101. .ir_lc_code = 60,
  102. .ir_max_code = 6000,
  103. .ir_cv_check_en = true,
  104. .ir_dc_length = 32,//32*2 + 1
  105. .ir_stop_bit = 1,
  106. .code_bit_length = 560,
  107. .ir_0_code = 0x8101,
  108. .ir_1_code = 0x8103,
  109. .ir_trc_loc = 0,
  110. .ir_cr_check_en = true,
  111. .ir_cr_rate = 38,
  112. .ir_Tf_check_en = true,
  113. .ir_Tf_length = 10800,
  114. .ir_ic_check_en = true,
  115. .ir_ic_mask = 0xff,
  116. .ir_ic_co = 8,
  117. .ir_ic_ico = 0,
  118. .ir_threshold_val = 10,
  119. .ir_asc = 1,
  120. },//nec
  121. {
  122. .ir_lc_check_en = true,
  123. .ir_lc_bit_length = 2250,
  124. .ir_lc_code = 30,
  125. .ir_max_code = 6000,
  126. .ir_cv_check_en = true,
  127. .ir_dc_length = 0,//32*2 + 1
  128. .ir_stop_bit = 1,
  129. .code_bit_length = 560,
  130. .ir_0_code = 0x8101,
  131. .ir_1_code = 0x8103,
  132. .ir_trc_loc = 0,
  133. .ir_cr_check_en = true,
  134. .ir_cr_rate = 38,
  135. .ir_Tf_check_en = true,
  136. .ir_Tf_length = 10800,
  137. .ir_ic_check_en = false,
  138. .ir_ic_mask = 0xff,
  139. .ir_ic_co = 8,
  140. .ir_ic_ico = 0,
  141. .ir_threshold_val = 10,
  142. .ir_asc = 1,
  143. },//nec_repeat
  144. {
  145. .ir_lc_check_en = true,
  146. .ir_lc_bit_length = 4500,
  147. .ir_lc_code = 2,
  148. .ir_max_code = 6000,
  149. .ir_cv_check_en = true,
  150. .ir_dc_length = 32,//32*2 + 1
  151. .ir_stop_bit = 1,
  152. .code_bit_length = 560,
  153. .ir_0_code = 0x8101,
  154. .ir_1_code = 0x8103,
  155. .ir_trc_loc = 0,
  156. .ir_cr_check_en = true,
  157. .ir_cr_rate = 38,
  158. .ir_Tf_check_en = true,
  159. .ir_Tf_length = 10800,
  160. .ir_ic_check_en = true,
  161. .ir_ic_mask = 0xff,
  162. .ir_ic_co = 8,
  163. .ir_ic_ico = 0,
  164. .ir_threshold_val = 10,
  165. .ir_asc = 1,
  166. },//9012
  167. {
  168. .ir_lc_check_en = true,
  169. .ir_lc_bit_length = 4500,
  170. .ir_lc_code = 2,
  171. .ir_max_code = 6000,
  172. .ir_cv_check_en = true,
  173. .ir_dc_length = 1,//32*2 + 1
  174. .ir_stop_bit = 1,
  175. .code_bit_length = 560,
  176. .ir_0_code = 0x8101,
  177. .ir_1_code = 0x8103,
  178. .ir_trc_loc = 0,
  179. .ir_cr_check_en = true,
  180. .ir_cr_rate = 38,
  181. .ir_Tf_check_en = true,
  182. .ir_Tf_length = 10800,
  183. .ir_ic_check_en = false,
  184. .ir_ic_mask = 0xff,
  185. .ir_ic_co = 8,
  186. .ir_ic_ico = 0,
  187. .ir_threshold_val = 10,
  188. .ir_asc = 1,
  189. },//9012_repeat
  190. {
  191. .ir_lc_check_en = true,
  192. .ir_lc_bit_length = 889,
  193. .ir_lc_code = 14,
  194. .ir_max_code = 6000,
  195. .ir_cv_check_en = true,
  196. .ir_dc_length = 21,
  197. .ir_stop_bit = 0,
  198. .code_bit_length = 444,
  199. .ir_0_code = 0x181,
  200. .ir_1_code = 0x8101,
  201. .ir_tr0_code = 0x282,
  202. .ir_tr1_code = 0x8202,
  203. .ir_trc_loc = 0x10000,
  204. .ir_cr_check_en = true,
  205. .ir_cr_rate = 36,
  206. .ir_Tf_check_en = true,
  207. .ir_Tf_length = 2600,
  208. .ir_ic_check_en = false,//rc6 does not have inverse code
  209. .ir_threshold_val = 10,
  210. .ir_asc = 1,
  211. },//rc6
  212. {
  213. .ir_lc_check_en = true,
  214. .ir_lc_bit_length = 4000,
  215. .ir_lc_code = 0,
  216. .ir_max_code = 6000,
  217. .ir_cv_check_en = true,
  218. .ir_dc_length = 16,
  219. .ir_stop_bit = 1,
  220. .code_bit_length = 260,
  221. .ir_0_code = 0x8103,
  222. .ir_1_code = 0x8107,
  223. .ir_trc_loc = 0,
  224. .ir_cr_check_en = true,
  225. .ir_cr_rate = 38,
  226. .ir_Tf_check_en = true,
  227. .ir_Tf_length = 4640,
  228. .ir_ic_check_en = false,//rc6 does not have inverse code
  229. .ir_threshold_val = 10,
  230. .ir_asc = 1,
  231. },//50642
  232. {
  233. .ir_lc_check_en = true,
  234. .ir_lc_bit_length = 4220,
  235. .ir_lc_code = 6,
  236. .ir_max_code = 6000,
  237. .ir_cv_check_en = true,
  238. .ir_dc_length = 17,
  239. .ir_stop_bit = 1,
  240. .code_bit_length = 528,
  241. .ir_0_code = 0x8101,
  242. .ir_1_code = 0x8103,
  243. .ir_tr0_code = 0x8108,
  244. .ir_tr1_code = 0,
  245. .ir_trc_loc = 0x100,
  246. .ir_cr_check_en = true,
  247. .ir_cr_rate = 38,
  248. .ir_Tf_check_en = true,
  249. .ir_Tf_length = 6340,
  250. .ir_ic_check_en = false,//rc6 does not have inverse code
  251. .ir_threshold_val = 15,
  252. .ir_asc = 1,
  253. },//50560
  254. {
  255. .ir_lc_check_en = true,
  256. .ir_lc_bit_length = 889,
  257. .ir_lc_code = 6,
  258. .ir_max_code = 6000,
  259. .ir_cv_check_en = true,
  260. .ir_dc_length = 12,
  261. .ir_stop_bit = 0,
  262. .code_bit_length = 889,
  263. .ir_0_code = 0x8101,
  264. .ir_1_code = 0x181,
  265. .ir_trc_loc = 0,
  266. .ir_cr_check_en = true,
  267. .ir_cr_rate = 36,
  268. .ir_Tf_check_en = true,
  269. .ir_Tf_length = 11400,
  270. .ir_ic_check_en = false,//rc6 does not have inverse code
  271. .ir_threshold_val = 15,
  272. .ir_asc = 1,
  273. },//rc5x
  274. {
  275. .ir_lc_check_en = true,
  276. .ir_lc_bit_length = 4500,
  277. .ir_lc_code = 6,
  278. .ir_max_code = 6000,
  279. .ir_cv_check_en = true,
  280. .ir_dc_length = 42,
  281. .ir_stop_bit = 1,
  282. .code_bit_length = 560,
  283. .ir_0_code = 0x8101,
  284. .ir_1_code = 0x8103,
  285. .ir_trc_loc = 0,
  286. .ir_cr_check_en = true,
  287. .ir_cr_rate = 38,
  288. .ir_Tf_check_en = true,
  289. .ir_Tf_length = 10800,
  290. .ir_ic_check_en = true,//rc6 does not have inverse code
  291. .ir_ic_mask = 0xff,
  292. .ir_ic_co = 8,
  293. .ir_ic_ico = 0,
  294. .ir_threshold_val = 10,
  295. .ir_asc = 1,
  296. },//7461
  297. {
  298. .ir_lc_check_en = true,
  299. .ir_lc_bit_length = 4500,
  300. .ir_lc_code = 6,
  301. .ir_max_code = 6000,
  302. .ir_cv_check_en = true,
  303. .ir_dc_length = 0,
  304. .ir_stop_bit = 1,
  305. .code_bit_length = 560,
  306. .ir_0_code = 0x8101,
  307. .ir_1_code = 0x8103,
  308. .ir_trc_loc = 0,
  309. .ir_cr_check_en = true,
  310. .ir_cr_rate = 38,
  311. .ir_Tf_check_en = true,
  312. .ir_Tf_length = 10800,
  313. .ir_ic_check_en = false,//rc6 does not have inverse code
  314. .ir_ic_mask = 0xff,
  315. .ir_ic_co = 8,
  316. .ir_ic_ico = 0,
  317. .ir_threshold_val = 10,
  318. .ir_asc = 1,
  319. },//7461_repeat
  320. {
  321. .ir_lc_check_en = true,
  322. .ir_lc_bit_length = 100000,
  323. .ir_lc_code = 0,
  324. .ir_max_code = 150000,
  325. .ir_cv_check_en = true,
  326. .ir_dc_length = 11,
  327. .ir_stop_bit = 1,
  328. .code_bit_length = 140,
  329. .ir_0_code = 0x8123,
  330. .ir_1_code = 0x8134,
  331. .ir_trc_loc = 0,
  332. .ir_cr_check_en = true,
  333. .ir_cr_rate = 38,
  334. .ir_Tf_check_en = true,
  335. .ir_Tf_length = 12100,
  336. .ir_ic_check_en = false,//rc6 does not have inverse code
  337. .ir_ic_mask = 0xff,
  338. .ir_ic_co = 8,
  339. .ir_ic_ico = 0,
  340. .ir_threshold_val = 20,
  341. .ir_asc = 1,
  342. },//3004
  343. {
  344. .ir_lc_check_en = true,
  345. .ir_lc_bit_length = 4000,
  346. .ir_lc_code = 2,
  347. .ir_max_code = 6000,
  348. .ir_cv_check_en = true,
  349. .ir_dc_length = 24,//24*2 + 1
  350. .ir_stop_bit = 1,
  351. .code_bit_length = 500,
  352. .ir_0_code = 0x8102,
  353. .ir_1_code = 0x8104,
  354. .ir_trc_loc = 0,
  355. .ir_cr_check_en = true,
  356. .ir_cr_rate = 38,
  357. .ir_Tf_check_en = true,
  358. .ir_Tf_length = 6400,
  359. .ir_ic_check_en = true,
  360. .ir_ic_mask = 0xff,
  361. .ir_ic_co = 12,
  362. .ir_ic_ico = 0,
  363. .ir_threshold_val = 10,
  364. .ir_asc = 1,
  365. },//rca
  366. // {
  367. // .ir_lc_check_en = true,
  368. // .ir_lc_bit_length = 4000,
  369. // .ir_lc_code = 2,
  370. // .ir_cv_check_en = true,
  371. // .ir_dc_length = 49,//24*2 + 1
  372. // .code_bit_length = 500,
  373. // .ir_0_code = 0x92,
  374. // .ir_1_code = 0x94,
  375. // .ir_trc_loc = 0,
  376. // .ir_cr_check_en = true,
  377. // .ir_cr_rate = 56,
  378. // .ir_Tf_check_en = true,
  379. // .ir_Tf_length = 6400,
  380. // .ir_ic_check_en = true,
  381. // .ir_ic_mask = 0xff,
  382. // .ir_ic_co = 12,
  383. // .ir_ic_ico = 0,
  384. // .ir_threshold_val = 10,
  385. // },//261
  386. };
  387. #else
  388. extern ir_receive_param_t ir_protocol_param[Protocols_MAX];
  389. #endif
  390. void capture_device_close(void * handle);
  391. void capture_device_abort_cb(void * handle);
  392. void capture_device_enable_cb(void * handle);
  393. int pwm_ir_protocol_init(char * dev_name);
  394. int pwm_ir_protocol_transfer(struct ir_protocol_value *val);
  395. #endif //__IR_PROTOCOL_HAL_H__