Kconfig 1.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354
  1. # Configuration options for Actions Display Accelerator
  2. # Copyright (c) 2020 Actions Technology Co., Ltd
  3. # SPDX-License-Identifier: Apache-2.0
  4. menuconfig DISPLAY_ENGINE
  5. bool "Display Engine"
  6. help
  7. Enable display engine
  8. if DISPLAY_ENGINE
  9. config DISPLAY_ENGINE_LARK
  10. bool
  11. default y if SOC_SERIES_LARK
  12. help
  13. Display Engine for Lark SoC Series.
  14. config DISPLAY_ENGINE_LEOPARD
  15. bool
  16. default y if SOC_SERIES_LEOPARD
  17. help
  18. Display Engine for Leopard SoC Series.
  19. config DISPLAY_ENGINE_INSTANCE_NUM
  20. int "Display Engine Instance Number"
  21. default 3
  22. help
  23. Set display engine maximum instances to support
  24. config DISPLAY_ENGINE_HIHG_PRIO_INSTANCE
  25. bool
  26. help
  27. Enable display engine high priority instance
  28. config DISPLAY_ENGINE_DRAW_COMMAND_NUM
  29. int "Display Engine Command Number Per Instance"
  30. default 10
  31. help
  32. Set display engine maximum instances commands to support
  33. config DISPLAY_ENGINE_POST_COMMAND_NUM
  34. int "Display Engine Command Number Per Instance"
  35. default 3
  36. help
  37. Set display engine maximum instances commands to support
  38. config DISPLAY_ENGINE_COMMAND_TIMEOUT_MS
  39. int "Display Engine Command Timeout in Milliseconds"
  40. default 500
  41. help
  42. Set display engine command timeout in milliseconds
  43. endif # DISPLAY_ENGINE