sd8563_timer_acts.c 12 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516
  1. /*
  2. * Copyright (c) 2024 Wingcool Technology Co., Ltd
  3. *
  4. * SPDX-License-Identifier: Apache-2.0
  5. */
  6. /**
  7. * @file
  8. * @brief SD8563 Timer driver for Actions SoC
  9. */
  10. #include <errno.h>
  11. #include <kernel.h>
  12. #include <string.h>
  13. //#include <stdbool.h>
  14. #include <init.h>
  15. #include <irq.h>
  16. #include <drivers/adc.h>
  17. #include <drivers/input/input_dev.h>
  18. #include <sys/util.h>
  19. #include <sys/byteorder.h>
  20. #include <board.h>
  21. #include <soc_pmu.h>
  22. #include <logging/log.h>
  23. #include <device.h>
  24. #include <drivers/gpio.h>
  25. #include <soc.h>
  26. #include <string.h>
  27. #include <drivers/i2c.h>
  28. //#include <board_cfg.h>
  29. #include <drivers/uart.h>
  30. LOG_MODULE_REGISTER(sd8563, CONFIG_SYS_LOG_INPUT_DEV_LEVEL);
  31. #define rtc_slaver_addr (0xA2 >> 1)// 0x51
  32. //#ifndef CONFIG_MERGE_WORK_Q
  33. //#define CONFIG_USED_TP_WORK_QUEUE 0
  34. //#endif
  35. #ifdef CONFIG_USED_TP_WORK_QUEUE
  36. #define CONFIG_TIMER_WORK_Q_STACK_SIZE 1280
  37. struct k_work_q timer_drv_q;
  38. K_THREAD_STACK_DEFINE(timer_work_q_stack, CONFIG_TIMER_WORK_Q_STACK_SIZE);
  39. #endif
  40. struct acts_timer_data {
  41. input_notify_t notify;
  42. const struct device *i2c_dev;
  43. const struct device *gpio_dev;
  44. const struct device *this_dev;
  45. struct gpio_callback key_gpio_cb;
  46. struct k_work init_timer;
  47. bool inited;
  48. #ifdef CONFIG_PM_DEVICE
  49. uint32_t pm_state;
  50. #endif
  51. };
  52. uint16_t timer_crc[2] __attribute((used)) = {0};
  53. static struct acts_timer_data timer_acts_ddata;
  54. static void _sd8563_read_time(const struct device *i2c_dev);
  55. extern void uart2_poll_out_ch(int c);
  56. #include <drivers/hrtimer.h>
  57. #if 1
  58. static struct hrtimer g_rtc_ht_read;
  59. static void timer_acts_handler(struct k_work *work)
  60. {
  61. static struct acts_timer_data *external_rtc = &timer_acts_ddata;
  62. _sd8563_read_time(external_rtc->i2c_dev); //不在ISR中完成,防止中断嵌套
  63. }
  64. K_WORK_DEFINE(timer_acts, timer_acts_handler);
  65. static void htimer_fun(struct hrtimer *ttimer, void *expiry_fn_arg)
  66. {
  67. //static int t;
  68. //static struct acts_timer_data *external_rtc = &timer_acts_ddata;
  69. //printk("%d ---htimer--\n", t++);
  70. //_sd8563_read_time(external_rtc->i2c_dev);
  71. k_work_submit(&timer_acts); //向系统工作队列提交一个工作项,让工作队列的线程将执行该工作
  72. }
  73. static void htimer_read(unsigned int ms)
  74. {
  75. hrtimer_init(&g_rtc_ht_read, htimer_fun, NULL);
  76. hrtimer_start(&g_rtc_ht_read, 1000*ms, 1000*ms);
  77. }
  78. #endif
  79. static void _sd8563_open_write_protection(const struct device *i2c_dev)
  80. {
  81. #if 1
  82. static uint8_t write_cmd[2] = {0};
  83. static uint8_t read_cmd[7] = {0};
  84. int ret = 0;
  85. printk("_sd8563_read_write_protection\n");
  86. ret = i2c_write_read(i2c_dev, rtc_slaver_addr, write_cmd, 1, read_cmd, 1);
  87. if (ret != 0)
  88. {
  89. printk("i2c_write_read ERR\n");
  90. }
  91. printk("CTR1 = %d\n", read_cmd[0]);
  92. if (read_cmd[0] & 0x40) //bit6:WRTC=1,write_protection has been opened
  93. {
  94. printk("write_protection has been opened\n");
  95. return;
  96. }
  97. //open_write_protection: 0E寄存器的bit6~bit2依次写入b0000、b10101、b01010、b10111
  98. write_cmd[0] = 0x0E;
  99. ret = i2c_write_read(i2c_dev, rtc_slaver_addr, write_cmd, 1, read_cmd, 1);
  100. if (ret != 0)
  101. {
  102. printk("i2c_write_read ERR\n");
  103. }
  104. read_cmd[0] = (read_cmd[0] & 0x83);
  105. //bit6~bit2 write b0000
  106. write_cmd[1] = read_cmd[0];
  107. ret = i2c_write(i2c_dev, write_cmd, 2, rtc_slaver_addr);
  108. if (ret != 0)
  109. {
  110. printk("step1 i2c write ERR\n");
  111. return;
  112. }
  113. //bit6~bit2 write b10101
  114. write_cmd[1] = read_cmd[0] | 0x54;
  115. ret = i2c_write(i2c_dev, write_cmd, 2, rtc_slaver_addr);
  116. if (ret != 0)
  117. {
  118. printk("step2 i2c write ERR\n");
  119. return;
  120. }
  121. //bit6~bit2 write b01010
  122. write_cmd[1] = read_cmd[0] | 0x28;
  123. ret = i2c_write(i2c_dev, write_cmd, 2, rtc_slaver_addr);
  124. if (ret != 0)
  125. {
  126. printk("step3 i2c write ERR\n");
  127. return;
  128. }
  129. //bit6~bit2 write b10111
  130. write_cmd[1] = read_cmd[0] | 0x5C;
  131. ret = i2c_write(i2c_dev, write_cmd, 2, rtc_slaver_addr);
  132. if (ret != 0)
  133. {
  134. printk("step4 i2c write ERR\n");
  135. return;
  136. }
  137. k_msleep(1);
  138. write_cmd[0] = 0; //CTR1
  139. ret = i2c_write_read(i2c_dev, rtc_slaver_addr, write_cmd, 1, read_cmd, 1);
  140. if (ret != 0)
  141. {
  142. printk("i2c_write_read ERR\n");
  143. }
  144. printk("CTR1 = %d\n", read_cmd[0]);
  145. if (read_cmd[0] & 0x40) //bit6:WRTC=1,write_protection has been opened
  146. {
  147. printk("write_protection has been opened\n");
  148. }
  149. printk("_sd8563_open_write_protection exit\n");
  150. #endif
  151. }
  152. static int _sd8563_close_write_protection(const struct device *i2c_dev)
  153. {
  154. #if 1
  155. static uint8_t write_cmd[2] = {0};
  156. static uint8_t read_cmd[7] = {0};
  157. int ret = 0;
  158. printk("_sd8563_read_write_protection\n");
  159. ret = i2c_write_read(i2c_dev, rtc_slaver_addr, write_cmd, 1, read_cmd, 1);
  160. if (ret != 0)
  161. {
  162. printk("i2c_write_read ERR\n");
  163. return 0;
  164. }
  165. printk("CTR1 = %d\n", read_cmd[0]);
  166. if ((read_cmd[0] & 0x40) == 0) //bit6:WRTC = 0,write_protection has been closed
  167. {
  168. printk("write_protection has been closed\n");
  169. return 1;
  170. }
  171. //close_write_protection: 0E寄存器的bit6~bit2依次写入b0000、b11100、b00011、b01110
  172. write_cmd[0] = 0x0E;
  173. ret = i2c_write_read(i2c_dev, rtc_slaver_addr, write_cmd, 1, read_cmd, 1);
  174. if (ret != 0)
  175. {
  176. printk("i2c_write_read ERR\n");
  177. return 0;
  178. }
  179. read_cmd[0] = (read_cmd[0] & 0x83);
  180. //bit6~bit2 write b0000
  181. write_cmd[1] = read_cmd[0];
  182. ret = i2c_write(i2c_dev, write_cmd, 2, rtc_slaver_addr);
  183. if (ret != 0)
  184. {
  185. printk("step1 i2c write ERR\n");
  186. return 0;
  187. }
  188. //bit6~bit2 write b11100
  189. write_cmd[1] = read_cmd[0] | 0x70;
  190. ret = i2c_write(i2c_dev, write_cmd, 2, rtc_slaver_addr);
  191. if (ret != 0)
  192. {
  193. printk("step2 i2c write ERR\n");
  194. return 0;
  195. }
  196. //bit6~bit2 write b00011
  197. write_cmd[1] = read_cmd[0] | 0x0C;
  198. ret = i2c_write(i2c_dev, write_cmd, 2, rtc_slaver_addr);
  199. if (ret != 0)
  200. {
  201. printk("step3 i2c write ERR\n");
  202. return 0;
  203. }
  204. //bit6~bit2 write b01110
  205. write_cmd[1] = read_cmd[0] | 0x38;
  206. ret = i2c_write(i2c_dev, write_cmd, 2, rtc_slaver_addr);
  207. if (ret != 0)
  208. {
  209. printk("step4 i2c write ERR\n");
  210. return 0;
  211. }
  212. k_msleep(1);
  213. write_cmd[0] = 0; //CTR1
  214. ret = i2c_write_read(i2c_dev, rtc_slaver_addr, write_cmd, 1, read_cmd, 1);
  215. if (ret != 0)
  216. {
  217. printk("i2c_write_read ERR\n");
  218. return 0;
  219. }
  220. printk("CTR1 = %d\n", read_cmd[0]);
  221. if ((read_cmd[0] & 0x40) == 0) //bit6:WRTC = 0,write_protection has been closed
  222. {
  223. printk("write_protection has been closed\n");
  224. return 1;
  225. }
  226. printk("_sd8563_close_write_protection exit\n");
  227. return 0;
  228. #else
  229. return 1;
  230. #endif
  231. }
  232. static void _sd8563_set_time(const struct device *i2c_dev)
  233. {
  234. #if 1
  235. static uint8_t write_cmd[8] = {0};
  236. static uint8_t read_cmd[7] = {0};
  237. int ret = 0;
  238. printk("_sd8563_set_time start\n");
  239. write_cmd[0] = 0x02; //sec
  240. ret = i2c_write_read(i2c_dev, rtc_slaver_addr, write_cmd, 1, read_cmd, 1);
  241. if (ret != 0)
  242. {
  243. printk("i2c_write_read ERR\n");
  244. return;
  245. }
  246. printk("read_cmd[0] = %d\n", read_cmd[0]);
  247. if ((read_cmd[0] & 0x80) == 0) //bit7:0SF/
  248. {
  249. printk("bit7:0SF is 0,The time has been set\n");
  250. return;
  251. }
  252. //BCD code
  253. write_cmd[1] = 0; //sec
  254. write_cmd[2] = 0x35; //min
  255. write_cmd[3] = 0x11; //hour
  256. write_cmd[4] = 0x12; //day
  257. write_cmd[5] = 0x06; //week
  258. write_cmd[6] = 0x10; //mon
  259. write_cmd[7] = 0x24; //year
  260. ret = i2c_write(i2c_dev, write_cmd, 8, rtc_slaver_addr);
  261. if (ret != 0)
  262. {
  263. printk("i2c write ERR\n");
  264. return;
  265. }
  266. k_msleep(1);
  267. ret = i2c_write_read(i2c_dev, rtc_slaver_addr, write_cmd, 1, read_cmd, 7);
  268. if (ret != 0)
  269. {
  270. printk("i2c_write_read ERR\n");
  271. return;
  272. }
  273. printk("y:20%d, mon:%d, week:%d, d:%d, h:%d, min:%d, sec:%d\n",
  274. read_cmd[6], read_cmd[5], read_cmd[4], read_cmd[3], read_cmd[2], read_cmd[1], read_cmd[0]);
  275. printk("_sd8563_set_time exit\n");
  276. #endif
  277. }
  278. uint8_t read_time_data[7] = {0};
  279. static void _sd8563_read_time(const struct device *i2c_dev)
  280. {
  281. #if 1
  282. uint8_t i, check_sum = 0x52;
  283. static uint8_t write_cmd[1] = {0x02};
  284. //static uint8_t read_time_data[7] = {0};
  285. int ret = 0;
  286. //printk("_sd8563_read_time\n");
  287. ret = i2c_write_read(i2c_dev, rtc_slaver_addr, write_cmd, 1, read_time_data, 7);
  288. //ret = i2c_burst_read(i2c_dev, rtc_slaver_addr, 0x02, read_cmd, 3);
  289. //ret = i2c_read(i2c_dev, read_time_data, 7, rtc_slaver_addr);
  290. if (ret != 0)
  291. {
  292. printk("i2c_write_read ERR\n");
  293. }
  294. read_time_data[0] = read_time_data[0] & 0x7F; //bit7:0SF/
  295. read_time_data[5] = read_time_data[5] & 0x7F; //bit7:C/century
  296. //uart2 send data start ==============================================//
  297. uart2_poll_out_ch(0x5A); //报文表头
  298. uart2_poll_out_ch(0x54);
  299. for (i = 0; i < 7; i++)
  300. {
  301. read_time_data[i] = (read_time_data[i] / 16) * 10 + read_time_data[i] % 16; //DEC TO BCD CODE
  302. check_sum += read_time_data[i];
  303. uart2_poll_out_ch(read_time_data[i]);
  304. }
  305. uart2_poll_out_ch(check_sum); //checksum
  306. //uart2 send data end ==============================================//
  307. //printk("y:20%d, mon:%d, week:%d, d:%d, h:%d, min:%d, sec:%d\n",
  308. // read_time_data[6], read_time_data[5], read_time_data[4], read_time_data[3], read_time_data[2], read_time_data[1], read_time_data[0]);
  309. #endif
  310. }
  311. static void _sd8563_init_work(struct k_work *work)
  312. {
  313. struct acts_timer_data *external_rtc = &timer_acts_ddata;
  314. printk("sd8563 init work\n");
  315. external_rtc->inited = true;
  316. if (_sd8563_close_write_protection(external_rtc->i2c_dev) == 1)
  317. {
  318. //k_msleep(2);
  319. _sd8563_set_time(external_rtc->i2c_dev);
  320. //k_msleep(2);
  321. _sd8563_open_write_protection(external_rtc->i2c_dev);
  322. }
  323. #if 0
  324. uint8_t i;
  325. for (i=0; i < 20; i++)
  326. {
  327. k_msleep(1000);
  328. _sd8563_read_time(external_rtc->i2c_dev);
  329. }
  330. #endif
  331. htimer_read(1000); //1000ms = 1s
  332. printk("sd8563 init work exit\n");
  333. }
  334. static int _sd8563_acts_init(const struct device *dev)
  335. {
  336. struct acts_timer_data *external_rtc = dev->data;
  337. printk("sd8563 acts init\n");
  338. #if 1
  339. external_rtc->this_dev = (struct device *)dev;
  340. external_rtc->i2c_dev = (struct device *)device_get_binding(CONFIG_SD8563_I2C_NAME);
  341. if (!external_rtc->i2c_dev) {
  342. printk("can not access right i2c device\n");
  343. return -1;
  344. }
  345. external_rtc->inited = false;
  346. k_work_init(&external_rtc->init_timer, _sd8563_init_work);
  347. #ifdef CONFIG_USED_TP_WORK_QUEUE
  348. k_work_queue_start(&timer_drv_q, timer_work_q_stack, K_THREAD_STACK_SIZEOF(timer_work_q_stack), 7, NULL);
  349. k_work_submit_to_queue(&timer_drv_q, &external_rtc->init_timer);
  350. #else
  351. k_work_submit(&external_rtc->init_timer);
  352. #endif
  353. #endif
  354. printk("sd8563 acts init exit\n");
  355. return 0;
  356. }
  357. #ifdef CONFIG_PM_DEVICE
  358. static void _sd8563_suspend(const struct device *dev)
  359. {
  360. //struct acts_timer_data *external_rtc = (struct acts_timer_data *)dev->data;
  361. printk("sd8563 suspend\n");
  362. hrtimer_stop(&g_rtc_ht_read);
  363. }
  364. static void _sd8563_resume(const struct device *dev)
  365. {
  366. struct acts_timer_data *external_rtc = (struct acts_timer_data *)dev->data;
  367. external_rtc->i2c_dev = (struct device *)device_get_binding(CONFIG_SD8563_I2C_NAME);
  368. if (!external_rtc->i2c_dev) {
  369. printk("can not access right i2c device\n");
  370. return;
  371. }
  372. external_rtc->inited = false;
  373. k_work_init(&external_rtc->init_timer, _sd8563_init_work);
  374. printk("sd8563 resume\n");
  375. #ifdef CONFIG_USED_TP_WORK_QUEUE
  376. k_work_submit_to_queue(&tp_drv_q, &external_rtc->init_timer);
  377. #else
  378. k_work_submit(&external_rtc->init_timer);
  379. #endif
  380. }
  381. static int _sd8563_pm_control(const struct device *dev, enum pm_device_action action)
  382. {
  383. int ret = 0;
  384. //printk("sd8563 pm control\n");
  385. switch (action) {
  386. case PM_DEVICE_ACTION_SUSPEND:
  387. break;
  388. case PM_DEVICE_ACTION_RESUME:
  389. break;
  390. case PM_DEVICE_ACTION_EARLY_SUSPEND:
  391. _sd8563_suspend(dev);
  392. break;
  393. case PM_DEVICE_ACTION_LATE_RESUME:
  394. _sd8563_resume(dev);
  395. break;
  396. default:
  397. break;
  398. }
  399. return ret;
  400. }
  401. #else /* CONFIG_PM_DEVICE */
  402. static int _sd8563_pm_control(const struct device *dev, uint32_t ctrl_command,
  403. void *context, device_pm_cb cb, void *arg)
  404. {
  405. }
  406. #endif
  407. #if IS_ENABLED(CONFIG_SD8563)
  408. DEVICE_DEFINE(sd8563, CONFIG_SD8563_DEV_NAME, _sd8563_acts_init,
  409. _sd8563_pm_control, &timer_acts_ddata, NULL, POST_KERNEL,
  410. 50, NULL);
  411. #endif