mxkeypad_acts.c 7.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296
  1. /*
  2. * Copyright (c) 2017 Actions Semiconductor Co., Ltd
  3. *
  4. * SPDX-License-Identifier: Apache-2.0
  5. */
  6. /**
  7. * @file
  8. * @brief TP 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 <soc_pmu.h>
  21. #include <logging/log.h>
  22. #include <device.h>
  23. #include <drivers/gpio.h>
  24. #include <soc.h>
  25. #include <string.h>
  26. #include <drivers/i2c.h>
  27. LOG_MODULE_REGISTER(mxkeypad, CONFIG_SYS_LOG_INPUT_DEV_LEVEL);
  28. #define DT_DRV_COMPAT actions_mxkeypad
  29. /*key ctrl0 reg*/
  30. #define KEY_CTRL0_IRP (0x1 << 31)
  31. #define KEY_CTRL0_IREN (0x1 << 30)
  32. #define KEY_CTRL0_KOD (0x1 << 24)
  33. #define KEY_CTRL0_KPDEN (0x1 << 23)
  34. #define KEY_CTRL0_KPUEN (0x1 << 22)
  35. #define KEY_CTRL0_KIE (0x1 << 21)
  36. #define KEY_CTRL0_KOE (0x1 << 20)
  37. #define KEY_CTRL0_PENM(X) (X << 4)
  38. #define KEY_CTRL0_KRS(X) (X << 2)
  39. #define KEY_CTRL0_KMS (1 << 1)
  40. #define KEY_CTRL0_KEN (1 << 0)
  41. /*key ctrl1 reg*/
  42. #define KEY_CTRL0_KST(X) (X << 16)
  43. #define KEY_CTRL0_DTS(X) (X << 0)
  44. /* mxkeypad controller */
  45. struct mxkeypad_acts_controller {
  46. volatile uint32_t ctl0;
  47. volatile uint32_t ctl1;
  48. volatile uint32_t info0;
  49. volatile uint32_t info1;
  50. volatile uint32_t info2;
  51. volatile uint32_t info3;
  52. volatile uint32_t info4;
  53. volatile uint32_t info5;
  54. volatile uint32_t info6;
  55. };
  56. struct acts_mxkeypad_data {
  57. input_notify_t notify;
  58. u32_t key_bit_map[2];
  59. };
  60. struct acts_mxkeypad_config {
  61. struct mxkeypad_acts_controller *base;
  62. void (*irq_config_func)(void);
  63. uint8_t clock_id;
  64. uint8_t reset_id;
  65. uint16_t penm;
  66. uint8_t pinmux_size;
  67. const struct acts_pin_config *pinmux;
  68. };
  69. static struct acts_mxkeypad_data mxkeypad_acts_ddata;
  70. static const struct acts_pin_config pins_mxkeypad[] = {FOREACH_PIN_MFP(0)};
  71. static void mxkeypad_acts_irq_config(void);
  72. static const struct acts_mxkeypad_config mxkeypad_acts_cdata = {
  73. .base = (struct mxkeypad_acts_controller *)DT_INST_REG_ADDR(0),
  74. .irq_config_func = mxkeypad_acts_irq_config,
  75. .pinmux = pins_mxkeypad,
  76. .pinmux_size = ARRAY_SIZE(pins_mxkeypad),
  77. .penm = DT_INST_PROP(0, penm),
  78. .clock_id = DT_INST_PROP(0, clkid),
  79. .reset_id = DT_INST_PROP(0, rstid),
  80. };
  81. static void mxkeypad_acts_report_key( struct acts_mxkeypad_data *keypad,
  82. int key_code, int value)
  83. {
  84. struct input_value val;
  85. if (keypad->notify) {
  86. val.keypad.type = EV_KEY;
  87. val.keypad.code = key_code;
  88. val.keypad.value = value;
  89. LOG_DBG("type:0x%x, code:0x%x, value:)0x%x\n", val.keypad.type, val.keypad.code, val.keypad.value);
  90. if(keypad->notify)
  91. keypad->notify(NULL, &val);
  92. }
  93. }
  94. static void mxkeypad_acts_scan_key(const struct acts_mxkeypad_config *cfg,
  95. struct acts_mxkeypad_data *keypad)
  96. {
  97. struct mxkeypad_acts_controller *keyctrl = cfg->base;
  98. u32_t key_modify_map;
  99. key_modify_map = keypad->key_bit_map[0] ^ keyctrl->info2;
  100. for(int i = 0; i < 32; i++) {
  101. if((1 << i) & (key_modify_map)) {
  102. if((1 << i) & keypad->key_bit_map[0])
  103. mxkeypad_acts_report_key(keypad, i, 0);
  104. else
  105. mxkeypad_acts_report_key(keypad, i, 1);
  106. }
  107. }
  108. key_modify_map = keypad->key_bit_map[1] ^ keyctrl->info3;
  109. for(int i = 0; i < 32; i++) {
  110. if((1 << i) & (key_modify_map)) {
  111. if((1 << i) & keypad->key_bit_map[1])
  112. mxkeypad_acts_report_key(keypad, i + 32, 0);
  113. else
  114. mxkeypad_acts_report_key(keypad, i + 32, 1);
  115. }
  116. }
  117. keypad->key_bit_map[0] = keyctrl->info2;
  118. keypad->key_bit_map[1] = keyctrl->info3;
  119. LOG_DBG("key_bit_map[0]:0x%x, keypad->key_bit_map[1]:0x%x\n", keypad->key_bit_map[0], keypad->key_bit_map[1]);
  120. }
  121. void mxkeypad_acts_isr(void *arg)
  122. {
  123. struct device *dev = (struct device *)arg;
  124. struct acts_mxkeypad_data *mxkeypad = dev->data;
  125. const struct acts_mxkeypad_config *cfg = dev->config;
  126. struct mxkeypad_acts_controller *keyctrl = cfg->base;
  127. /* disable irq */
  128. keyctrl->ctl0 &= ~KEY_CTRL0_IREN;
  129. /* scan key */
  130. mxkeypad_acts_scan_key(cfg, mxkeypad);
  131. keyctrl->ctl0 |= KEY_CTRL0_IREN | KEY_CTRL0_IRP;
  132. }
  133. static void mxkeypad_acts_set_clk(const struct acts_mxkeypad_config *cfg, uint32_t freq_khz)
  134. {
  135. #if 1
  136. clk_set_rate(cfg->clock_id, freq_khz);
  137. k_busy_wait(100);
  138. #endif
  139. }
  140. static void mxkeypad_acts_enable(struct device *dev)
  141. {
  142. const struct acts_mxkeypad_config *cfg = dev->config;
  143. struct mxkeypad_acts_controller *keyctrl = cfg->base;
  144. keyctrl->ctl1 = KEY_CTRL0_KST(0x140) | KEY_CTRL0_DTS(0x280);//time=ClockTime*count 1/32K*0x280=19.5ms
  145. keyctrl->ctl0 = KEY_CTRL0_IREN | KEY_CTRL0_KPDEN | KEY_CTRL0_KOE | KEY_CTRL0_PENM(cfg->penm) | KEY_CTRL0_KRS(0x3) | KEY_CTRL0_KEN;
  146. LOG_DBG("enable mxkeypad");
  147. }
  148. static void mxkeypad_acts_disable(struct device *dev)
  149. {
  150. const struct acts_mxkeypad_config *cfg = dev->config;
  151. struct mxkeypad_acts_controller *keyctrl = cfg->base;
  152. keyctrl->ctl1 = 0;
  153. keyctrl->ctl0 = 0;
  154. LOG_DBG("disable mxkeypad");
  155. }
  156. static void mxkeypad_acts_inquiry(struct device *dev, struct input_value *val)
  157. {
  158. struct acts_mxkeypad_data *mxkeypad = dev->data;
  159. LOG_DBG("inquiry mxkeypad");
  160. }
  161. static void mxkeypad_acts_register_notify(struct device *dev, input_notify_t notify)
  162. {
  163. struct acts_mxkeypad_data *mxkeypad = dev->data;
  164. LOG_DBG("register notify 0x%x", (uint32_t)notify);
  165. mxkeypad->notify = notify;
  166. }
  167. static void mxkeypad_acts_unregister_notify(struct device *dev, input_notify_t notify)
  168. {
  169. struct acts_mxkeypad_data *mxkeypad = dev->data;
  170. LOG_DBG("unregister notify 0x%x", (uint32_t)notify);
  171. mxkeypad->notify = NULL;
  172. }
  173. const struct input_dev_driver_api mxkeypad_acts_driver_api = {
  174. .enable = mxkeypad_acts_enable,
  175. .disable = mxkeypad_acts_disable,
  176. .inquiry = mxkeypad_acts_inquiry,
  177. .register_notify = mxkeypad_acts_register_notify,
  178. .unregister_notify = mxkeypad_acts_unregister_notify,
  179. };
  180. static void notify(struct device *dev, struct input_value *val)
  181. {
  182. printk("the key change: key[%d]:%d\n", val->keypad.code, val->keypad.value);
  183. }
  184. static void mxkeypad_test(const struct device *dev)
  185. {
  186. mxkeypad_acts_register_notify(dev, notify);
  187. mxkeypad_acts_enable(dev);
  188. while(1);
  189. }
  190. int mxkeypad_acts_init(const struct device *dev)
  191. {
  192. struct acts_mxkeypad_data *mxkeypad = dev->data;
  193. const struct acts_mxkeypad_config *cfg = dev->config;
  194. const struct acts_pin_config *pinconf = cfg->pinmux;
  195. acts_pinmux_setup_pins(cfg->pinmux, cfg->pinmux_size);
  196. mxkeypad->key_bit_map[1] = mxkeypad->key_bit_map[0] = 0;
  197. mxkeypad_acts_set_clk(cfg, 32);
  198. /* enable key controller clock */
  199. acts_clock_peripheral_enable(cfg->clock_id);
  200. /* reset key controller */
  201. acts_reset_peripheral(cfg->reset_id);
  202. cfg->irq_config_func();
  203. // mxkeypad_test(dev);
  204. return 0;
  205. }
  206. #if DT_NODE_HAS_STATUS(DT_DRV_INST(0), okay)
  207. DEVICE_DEFINE(mxkeypad, DT_INST_LABEL(0),
  208. mxkeypad_acts_init, NULL,
  209. &mxkeypad_acts_ddata, &mxkeypad_acts_cdata,
  210. POST_KERNEL, 60,
  211. &mxkeypad_acts_driver_api);
  212. static void mxkeypad_acts_irq_config(void)
  213. {
  214. IRQ_CONNECT(DT_INST_IRQN(0), DT_INST_IRQ(0, priority),
  215. mxkeypad_acts_isr,
  216. DEVICE_GET(mxkeypad), 0);
  217. irq_enable(DT_INST_IRQN(0));
  218. //IRQ_CONNECT(IRQ_ID_KEY_WAKEUP, 1,
  219. // mxkeypad_acts_wakeup_isr, DEVICE_GET(mxkeypad_acts), 0);
  220. }
  221. #endif // DT_NODE_HAS_STATUS