Kconfig 1.0 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455
  1. # Kconfig - PWM configuration options
  2. #
  3. # Copyright (c) 2015 Intel Corporation
  4. #
  5. # SPDX-License-Identifier: Apache-2.0
  6. #
  7. menuconfig PWM
  8. bool
  9. prompt "PWM device drivers"
  10. default n
  11. help
  12. Enable input device driver configuration
  13. if PWM
  14. config LOG_PWM_DEV_LEVEL
  15. int
  16. prompt "INPUT Device drivers log level"
  17. range 0 4
  18. default 0
  19. help
  20. Sets log level for PWM Device driver.
  21. Levels are:
  22. - 0 OFF, do not write
  23. - 1 ERROR, only write SYS_LOG_ERR
  24. - 2 WARNING, write SYS_LOG_WRN in addition to previous level
  25. - 3 INFO, write SYS_LOG_INF in addition to previous levels
  26. - 4 DEBUG, write SYS_LOG_DBG in addition to previous levels
  27. config PWM_ACTS
  28. bool "Actions SoC PWM driver"
  29. default n
  30. help
  31. Enable support for Actions PWM driver.
  32. menuconfig VIBRATOR
  33. bool
  34. prompt "Vibrator device drivers"
  35. default n
  36. help
  37. Enable input device driver configuration
  38. if VIBRATOR
  39. config VIBRATOR_ACTS
  40. bool "Actions vibration motor driver"
  41. default n
  42. help
  43. Enable support for Actions vibration motor driver.
  44. endif # VIBRATOR
  45. endif # PWM