adckey_acts.c 12 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502
  1. /*
  2. * Copyright (c) 2017 Actions Semiconductor Co., Ltd
  3. *
  4. * SPDX-License-Identifier: Apache-2.0
  5. */
  6. /**
  7. * @file
  8. * @brief ADC Keyboard driver for Actions SoC
  9. */
  10. #include <errno.h>
  11. #include <kernel.h>
  12. #include <string.h>
  13. #include <init.h>
  14. #include <irq.h>
  15. #include <drivers/adc.h>
  16. #include <drivers/input/input_dev.h>
  17. #include <sys/util.h>
  18. #include <sys/byteorder.h>
  19. #include <board.h>
  20. #include <board_cfg.h>
  21. #include <soc_pmu.h>
  22. #include <logging/log.h>
  23. #ifdef CONFIG_CFG_DRV
  24. #include <config.h>
  25. #include <drivers/cfg_drv/driver_config.h>
  26. #endif
  27. LOG_MODULE_REGISTER(keyadc, CONFIG_SYS_LOG_INPUT_DEV_LEVEL);
  28. #ifdef CONFIG_CFG_DRV
  29. struct adckey_map {
  30. uint16_t key_code;
  31. uint16_t adc_min;
  32. uint16_t adc_max;
  33. };
  34. #else
  35. struct adckey_map {
  36. uint16_t key_code;
  37. uint16_t adc_val;
  38. };
  39. #endif
  40. struct acts_adckey_data {
  41. const struct device *adc_dev;
  42. const struct device *this_dev;
  43. #ifdef CONFIG_ADCKEY_POLL_TIMER
  44. struct k_timer timer;
  45. #else
  46. struct k_delayed_work timer;
  47. #endif
  48. struct adc_sequence sequence;
  49. uint8_t adc_buf[4];
  50. int scan_count;
  51. uint16_t prev_keycode;
  52. uint16_t prev_stable_keycode;
  53. input_notify_t notify;
  54. uint32_t timestamp;
  55. uint8_t state; /* if 1 indicates the polling delay worker is runing */
  56. #ifdef CONFIG_CFG_DRV
  57. struct adckey_map adckey_keymaps[CFG_MAX_LRADC_KEYS];
  58. #endif
  59. };
  60. struct acts_adckey_config {
  61. char *adc_name;
  62. uint16_t adc_chan;
  63. uint16_t poll_interval_ms;
  64. uint16_t sample_filter_dep;
  65. uint32_t poll_total_ms;
  66. #ifndef CONFIG_CFG_DRV
  67. uint16_t key_cnt;
  68. const struct adckey_map *key_maps;
  69. #endif
  70. };
  71. static void adckey_pmu_notify(void *cb_data, int state);
  72. static void __adckey_acts_disable(const struct device *dev, int is_stop);
  73. static void adckey_acts_disable(const struct device *dev);
  74. /* adc_val -> key_code */
  75. static uint16_t adckey_acts_get_keycode(const struct acts_adckey_config *cfg,
  76. struct acts_adckey_data *adckey,
  77. int adc_val)
  78. {
  79. #ifdef CONFIG_CFG_DRV
  80. struct adckey_map *map = adckey->adckey_keymaps;
  81. int i;
  82. if (!map)
  83. goto out;
  84. for (i = 0; i < CFG_MAX_LRADC_KEYS; i++) {
  85. if ((adc_val < map->adc_max) && (adc_val > map->adc_min))
  86. return map->key_code;
  87. map++;
  88. }
  89. out:
  90. return KEY_RESERVED;
  91. #else
  92. const struct adckey_map *map = cfg->key_maps;
  93. int i;
  94. if (!map)
  95. goto out;
  96. for (i = 0; i < cfg->key_cnt; i++) {
  97. if (adc_val < map->adc_val)
  98. return map->key_code;
  99. map++;
  100. }
  101. out:
  102. return KEY_RESERVED;
  103. #endif
  104. }
  105. static void adckey_acts_report_key(struct acts_adckey_data *adckey,
  106. int key_code, int value)
  107. {
  108. struct input_value val;
  109. if (adckey->notify) {
  110. val.keypad.type = EV_KEY;
  111. val.keypad.code = key_code;
  112. val.keypad.value = value;
  113. LOG_DBG("report key_code %d value %d",
  114. key_code, value);
  115. adckey->notify(NULL, &val);
  116. }
  117. }
  118. void adckey_acts_inquiry(const struct device *dev, struct input_value *val)
  119. {
  120. struct acts_adckey_data *adckey = dev->data;
  121. const struct device *adckeydev = adckey->this_dev;
  122. const struct acts_adckey_config *cfg = adckeydev->config;
  123. uint16_t keycode, adcval;
  124. int ret;
  125. /* get adc value */
  126. ret = adc_read(adckey->adc_dev, &adckey->sequence);
  127. if (ret) {
  128. LOG_ERR("ADC read error %d", ret);
  129. return ;
  130. }
  131. adcval = sys_get_le16(adckey->sequence.buffer);
  132. LOG_DBG("adc value: %d\n", adcval);
  133. /* get keycode */
  134. keycode = adckey_acts_get_keycode(cfg, adckey, adcval);
  135. LOG_DBG("adcval %d, keycode %d\n", adcval, keycode);
  136. if (keycode != KEY_RESERVED && val->keypad.code == keycode)
  137. {
  138. val->keypad.type = EV_KEY;
  139. val->keypad.value = 1;
  140. }
  141. }
  142. #ifdef CONFIG_ADCKEY_POLL_TIMER
  143. static void adckey_acts_poll(struct k_timer *timer)
  144. #else
  145. static void adckey_acts_poll(struct k_work *work)
  146. #endif
  147. {
  148. #ifdef CONFIG_ADCKEY_POLL_TIMER
  149. struct device *dev = k_timer_user_data_get(timer);
  150. struct acts_adckey_data *adckey = dev->data;
  151. #else
  152. struct acts_adckey_data *adckey =
  153. CONTAINER_OF(work, struct acts_adckey_data, timer);
  154. const struct device *dev = adckey->this_dev;
  155. #endif
  156. const struct acts_adckey_config *cfg = dev->config;
  157. uint16_t keycode, adcval;
  158. int ret;
  159. bool key_release = false;
  160. struct detect_param_t detect_param =
  161. {PMU_DETECT_DEV_REMOTE, adckey_pmu_notify, (void *)dev};
  162. /* get adc value */
  163. ret = adc_read(adckey->adc_dev, &adckey->sequence);
  164. if (ret) {
  165. LOG_ERR("ADC read error %d", ret);
  166. return ;
  167. }
  168. adcval = sys_get_le16(adckey->sequence.buffer);
  169. /* get keycode */
  170. keycode = adckey_acts_get_keycode(cfg, adckey, adcval);
  171. LOG_DBG("adcval 0x%x, keycode %d", adcval, keycode);
  172. /* no key is pressed or releasing */
  173. if (keycode == KEY_RESERVED &&
  174. adckey->prev_stable_keycode == KEY_RESERVED){
  175. key_release = true;
  176. goto out;
  177. }
  178. key_release = false;
  179. if (keycode == adckey->prev_keycode) {
  180. adckey->scan_count++;
  181. if (adckey->scan_count == cfg->sample_filter_dep) {
  182. /* previous key is released? */
  183. if (adckey->prev_stable_keycode != KEY_RESERVED
  184. && keycode != adckey->prev_stable_keycode)
  185. adckey_acts_report_key(adckey,
  186. adckey->prev_stable_keycode, 0);
  187. /* a new key press? */
  188. if (keycode != KEY_RESERVED)
  189. adckey_acts_report_key(adckey, keycode, 1);
  190. /* clear counter for new checking */
  191. adckey->prev_stable_keycode = keycode;
  192. adckey->scan_count = 0;
  193. }
  194. } else {
  195. /* new key pressed? */
  196. adckey->prev_keycode = keycode;
  197. adckey->scan_count = 0;
  198. }
  199. out:
  200. /* Only LRADC1 can trigger PMU interrupt */
  201. if (cfg->adc_chan != PMUADC_ID_LRADC1) {
  202. k_delayed_work_submit(&adckey->timer, K_MSEC(cfg->poll_interval_ms));
  203. } else {
  204. if (((k_uptime_get_32() - adckey->timestamp) > cfg->poll_total_ms) && key_release) {
  205. __adckey_acts_disable(dev, 0);
  206. if (soc_pmu_register_notify(&detect_param))
  207. LOG_ERR("failed to register pmu notify");
  208. } else {
  209. #ifdef CONFIG_ADCKEY_POLL_TIMER
  210. k_timer_start(&adckey->timer, K_MSEC(cfg->poll_interval_ms), K_NO_WAIT);
  211. #else
  212. k_delayed_work_submit(&adckey->timer, K_MSEC(cfg->poll_interval_ms));
  213. #endif
  214. }
  215. }
  216. }
  217. static void adckey_acts_enable(const struct device *dev)
  218. {
  219. struct acts_adckey_data *adckey = dev->data;
  220. uint32_t key;
  221. LOG_DBG("enable adckey");
  222. key = irq_lock();
  223. if (adckey->state) {
  224. irq_unlock(key);
  225. return ;
  226. }
  227. adckey->state = 1;
  228. irq_unlock(key);
  229. adckey->timestamp = k_uptime_get_32();
  230. #ifdef CONFIG_ADCKEY_POLL_TIMER
  231. const struct acts_adckey_config *cfg = dev->config;
  232. k_timer_start(&adckey->timer, K_MSEC(cfg->poll_interval_ms), K_NO_WAIT);
  233. #else
  234. k_delayed_work_submit(&adckey->timer, K_NO_WAIT);
  235. #endif
  236. }
  237. static void __adckey_acts_disable(const struct device *dev, int is_stop)
  238. {
  239. struct acts_adckey_data *adckey = dev->data;
  240. uint32_t key;
  241. LOG_DBG("disable adckey");
  242. key = irq_lock();
  243. if (!adckey->state) {
  244. irq_unlock(key);
  245. return ;
  246. }
  247. adckey->state = 0;
  248. irq_unlock(key);
  249. adckey->timestamp = 0;
  250. if(is_stop){
  251. #ifdef CONFIG_ADCKEY_POLL_TIMER
  252. k_timer_stop(&adckey->timer);
  253. #else
  254. k_delayed_work_cancel(&adckey->timer);
  255. #endif
  256. }
  257. }
  258. static void adckey_acts_disable(const struct device *dev)
  259. {
  260. __adckey_acts_disable(dev, 1);
  261. }
  262. static void adckey_acts_register_notify(const struct device *dev, input_notify_t notify)
  263. {
  264. struct acts_adckey_data *adckey = dev->data;
  265. LOG_DBG("register notify 0x%x", (uint32_t)notify);
  266. adckey->notify = notify;
  267. }
  268. static void adckey_acts_unregister_notify(const struct device *dev, input_notify_t notify)
  269. {
  270. struct acts_adckey_data *adckey = dev->data;
  271. LOG_DBG("unregister notify 0x%x", (uint32_t)notify);
  272. adckey->notify = NULL;
  273. }
  274. const struct input_dev_driver_api adckey_acts_driver_api = {
  275. .enable = adckey_acts_enable,
  276. .disable = adckey_acts_disable,
  277. .inquiry = adckey_acts_inquiry,
  278. .register_notify = adckey_acts_register_notify,
  279. .unregister_notify = adckey_acts_unregister_notify,
  280. };
  281. static void adckey_pmu_notify(void *cb_data, int state)
  282. {
  283. struct device *dev = (struct device *)cb_data;
  284. LOG_INF("PMU notify state:%d", state);
  285. adckey_acts_enable(dev);
  286. }
  287. #ifdef CONFIG_CFG_DRV
  288. static int adckey_acts_config_init(const struct device *dev, uint8_t *channel_id)
  289. {
  290. struct acts_adckey_data *adckey = dev->data;
  291. int ret;
  292. CFG_Type_LRADC_Key Key[CFG_MAX_LRADC_KEYS];
  293. uint32_t LRADC_Ctrl;
  294. uint8_t i;
  295. ret = cfg_get_by_key(ITEM_LRADC_KEY, Key, sizeof(Key));
  296. if (!ret) {
  297. LOG_ERR("failed to get ITEM_LRADC_KEY");
  298. return -ESRCH;
  299. }
  300. for (i = 0; i < CFG_MAX_LRADC_KEYS; i++) {
  301. adckey->adckey_keymaps[i].key_code = Key[i].Key_Value;
  302. adckey->adckey_keymaps[i].adc_max = Key[i].ADC_Max;
  303. adckey->adckey_keymaps[i].adc_min = Key[i].ADC_Min;
  304. }
  305. ret = cfg_get_by_key(ITEM_LRADC_CTRL, &LRADC_Ctrl, sizeof(LRADC_Ctrl));
  306. if (!ret) {
  307. LOG_ERR("failed to get ITEM_LRADC_CTRL");
  308. return -ESRCH;
  309. }
  310. if (ret > 0) {
  311. uint8_t channel_no = LRADC_Ctrl & 0xff;
  312. uint8_t gpio_no = (LRADC_Ctrl & 0xff00) >> 8;
  313. uint32_t mfp_sel = (LRADC_Ctrl & 0xff0000) >> 16;
  314. /* remap channel number to LRADC index */
  315. channel_no += 5;
  316. if (channel_no < GPIO_MAX_PIN_NUM)
  317. sys_write32(mfp_sel, GPIO_REG_BASE + (1 + gpio_no)*4);
  318. else if (gpio_no < (GPIO_MAX_PIN_NUM + 4))
  319. sys_write32(mfp_sel, WIO0_CTL + (gpio_no - GPIO_MAX_PIN_NUM) * 4);
  320. *channel_id = channel_no;
  321. }
  322. return 0;
  323. }
  324. #endif
  325. int adckey_acts_init(const struct device *dev)
  326. {
  327. const struct acts_adckey_config *cfg = dev->config;
  328. struct acts_adckey_data *adckey = dev->data;
  329. struct adc_channel_cfg channel_cfg = {0};
  330. struct detect_param_t detect_param = {PMU_DETECT_DEV_REMOTE, adckey_pmu_notify, (void *)dev};
  331. adckey->adc_dev = device_get_binding(cfg->adc_name);
  332. if (!adckey->adc_dev) {
  333. LOG_ERR("cannot found adc dev %s\n", cfg->adc_name);
  334. return -ENODEV;
  335. }
  336. channel_cfg.channel_id = cfg->adc_chan;
  337. #ifdef CONFIG_CFG_DRV
  338. uint8_t channel_cfg_id;
  339. if (adckey_acts_config_init(dev, &channel_cfg_id))
  340. return -ENXIO;
  341. channel_cfg.channel_id = channel_cfg_id;
  342. #endif
  343. if (adc_channel_setup(adckey->adc_dev, &channel_cfg)) {
  344. LOG_ERR("setup channel_id %d error", channel_cfg.channel_id);
  345. return -EFAULT;
  346. }
  347. adckey->sequence.channels = BIT(cfg->adc_chan);
  348. adckey->sequence.buffer = &adckey->adc_buf[0];
  349. adckey->sequence.buffer_size = sizeof(adckey->adc_buf);
  350. adckey->this_dev = dev;
  351. if (soc_pmu_register_notify(&detect_param)) {
  352. LOG_ERR("failed to register pmu notify");
  353. return -ENXIO;
  354. }
  355. #ifdef CONFIG_ADCKEY_POLL_TIMER
  356. k_timer_init(&adckey->timer, adckey_acts_poll, NULL);
  357. k_timer_user_data_set(&adckey->timer, (void *)dev);
  358. #else
  359. k_delayed_work_init(&adckey->timer, adckey_acts_poll);
  360. #endif
  361. return 0;
  362. }
  363. static struct acts_adckey_data adckey_acts_ddata;
  364. #ifndef CONFIG_CFG_DRV
  365. static const struct adckey_map adckey_acts_keymaps[] = {
  366. #ifdef BOARD_ADCKEY_KEY_MAPPINGS
  367. BOARD_ADCKEY_KEY_MAPPINGS
  368. #endif
  369. };
  370. #endif
  371. static const struct acts_adckey_config adckey_acts_cdata = {
  372. .adc_name = CONFIG_PMUADC_NAME,
  373. .adc_chan = CONFIG_ADCKEY_LRADC_CHAN,
  374. .poll_interval_ms = CONFIG_ADCKEY_POLL_INTERVAL_MS,
  375. .poll_total_ms = CONFIG_ADCKEY_POLL_TOTAL_MS,
  376. .sample_filter_dep = CONFIG_ADCKEY_SAMPLE_FILTER_CNT,
  377. #ifndef CONFIG_CFG_DRV
  378. .key_cnt = ARRAY_SIZE(adckey_acts_keymaps),
  379. .key_maps = &adckey_acts_keymaps[0],
  380. #endif
  381. };
  382. #ifdef CONFIG_PM_DEVICE
  383. int adckey_pm_control(const struct device *dev, enum pm_device_action action)
  384. {
  385. struct acts_adckey_data *adckey = dev->data;
  386. switch (action)
  387. {
  388. case PM_DEVICE_ACTION_RESUME:
  389. break;
  390. case PM_DEVICE_ACTION_SUSPEND:
  391. if(adckey->state)
  392. {
  393. LOG_ERR("adckey busy, cannot suspend");
  394. return -1;
  395. }
  396. break;
  397. default:
  398. return 0;
  399. }
  400. return 0;
  401. }
  402. #else
  403. #define adckey_pm_control NULL
  404. #endif
  405. #if IS_ENABLED(CONFIG_ADCKEY)
  406. DEVICE_DEFINE(adckey_acts, CONFIG_INPUT_DEV_ACTS_ADCKEY_NAME,
  407. adckey_acts_init, adckey_pm_control,
  408. &adckey_acts_ddata, &adckey_acts_cdata,
  409. PRE_KERNEL_2, CONFIG_KERNEL_INIT_PRIORITY_DEVICE,
  410. &adckey_acts_driver_api);
  411. #endif