Kconfig 3.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125
  1. # Kconfig - Input device configuration options
  2. #
  3. #
  4. # Copyright (c) 2021 Actions Semiconductor Co., Ltd
  5. #
  6. # SPDX-License-Identifier: Apache-2.0
  7. #
  8. menuconfig INPUT_DEV
  9. bool
  10. prompt "Input device drivers"
  11. default n
  12. help
  13. Enable input device driver configuration
  14. if INPUT_DEV
  15. source "drivers/input/tpkey/Kconfig"
  16. config SYS_LOG_INPUT_DEV_LEVEL
  17. int
  18. prompt "INPUT Device drivers log level"
  19. range 0 4
  20. default 0
  21. help
  22. Sets log level for INPUT Device driver.
  23. Levels are:
  24. - 0 OFF, do not write
  25. - 1 ERROR, only write SYS_LOG_ERR
  26. - 2 WARNING, write SYS_LOG_WRN in addition to previous level
  27. - 3 INFO, write SYS_LOG_INF in addition to previous levels
  28. - 4 DEBUG, write SYS_LOG_DBG in addition to previous levels
  29. config INPUT_DEV_ACTS_ADCKEY
  30. bool "Actions SoC adc keypad driver"
  31. depends on SOC_FAMILY_ACTS
  32. default n
  33. help
  34. Enable support for Actions SoC adc keypad driver.
  35. config ADCKEY_POLL_TIMER
  36. bool "Actions Soc ADC key polling status by timer"
  37. depends on INPUT_DEV_ACTS_ADCKEY
  38. default n
  39. help
  40. If you say Y here, you will get support ADC polling status by timer.
  41. config INPUT_DEV_ACTS_GPIOKEY
  42. bool "Actions SoC gpio keypad driver"
  43. depends on SOC_FAMILY_ACTS
  44. default n
  45. help
  46. Enable support for Actions SoC gpio keypad driver.
  47. config GPIO_KEY_POLL_TIMER
  48. bool "Actions Soc GPIO key polling status by timer"
  49. depends on INPUT_DEV_ACTS_GPIOKEY
  50. default n
  51. help
  52. If you say Y here, you will get support GPIO key polling status by timer.
  53. config INPUT_DEV_ACTS_ONOFF_KEY
  54. bool "Actions SoC On/Off key driver"
  55. depends on SOC_FAMILY_ACTS
  56. default n
  57. help
  58. Enable support for Actions SoC On/Off key driver.
  59. config ONOFF_KEY_POLL_TIMER
  60. bool "Actions Soc On/Off key polling status by timer"
  61. depends on INPUT_DEV_ACTS_ONOFF_KEY
  62. default n
  63. help
  64. If you say Y here, you will get support On/Off key polling status by timer.
  65. config INPUT_DEV_ACTS_TP_KEY
  66. bool "Actions SoC On/Off key driver"
  67. depends on SOC_FAMILY_ACTS
  68. default n
  69. help
  70. Enable support for Actions SoC TP key driver.
  71. config INPUT_DEV_ACTS_KEY_PAD
  72. bool "Actions SoC mx key pad driver"
  73. depends on SOC_FAMILY_ACTS
  74. default n
  75. help
  76. Enable support for Actions SoC mx key pad driver.
  77. config INPUT_DEV_ACTS_QUAD_DECODER
  78. bool "Actions SoC QD driver"
  79. depends on SOC_FAMILY_ACTS
  80. default n
  81. help
  82. Enable support for Actions SoC QD driver.
  83. config INPUT_DEV_ACTS_IR_CAPTURE
  84. bool "Actions SoC IR capture driver"
  85. depends on SOC_FAMILY_ACTS
  86. default n
  87. help
  88. Enable support for Actions SoC IR capture driver.
  89. config INPUT_DEV_ACTS_KNOB
  90. bool "Actions SoC mx knob encoder driver"
  91. depends on SOC_FAMILY_ACTS
  92. default n
  93. help
  94. Enable support for Actions SoC mx knob encoder driver.
  95. config INPUT_DEV_ACTS_SD8563_TIMER
  96. bool "Actions SoC Timer driver"
  97. depends on SOC_FAMILY_ACTS
  98. default n
  99. help
  100. Enable support for Actions SoC timer driver.
  101. config INPUT_DEV_ACTS_SGM832A
  102. bool "Actions SoC Sgm832a driver"
  103. depends on SOC_FAMILY_ACTS
  104. default n
  105. help
  106. Enable support for Actions SoC sgm832a driver.
  107. endif # INPUT_DEV