Kconfig 3.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159
  1. # Kconfig - Actions system manager
  2. #
  3. # Copyright (c) 2016 Actions Corporation
  4. #
  5. # SPDX-License-Identifier: Apache-2.0
  6. #
  7. menuconfig ACTIONS_FRAMEWORK_DISPLAY
  8. bool "Display Support"
  9. depends on ACTIONS_FRAMEWORK
  10. help
  11. This option enables actions system manager.
  12. if ACTIONS_FRAMEWORK_DISPLAY
  13. config LED_MANAGER
  14. bool "LED Manager Support"
  15. # depends on LED
  16. help
  17. This option enables actions led manager.
  18. config SEG_LED_MANAGER
  19. bool "SEG LED Manager Support"
  20. depends on SEG_LED
  21. help
  22. This option enables actions seg led manager.
  23. config UI_MANAGER
  24. bool "Ui Manager Support"
  25. help
  26. This option enables actions app manager.
  27. config UI_SERVICE
  28. bool "UI Service"
  29. depends on UI_MANAGER
  30. depends on UI_MEMORY_MANAGER
  31. depends on ACTS_RING_BUFFER
  32. select DISPLAY_COMPOSER
  33. help
  34. This option enables actions UI service.
  35. if UI_SERVICE
  36. config UISRV_PRIORITY
  37. int "UI Service Thread Priority"
  38. default 3
  39. help
  40. This option set ui service thread priority
  41. config UISRV_STACKSIZE
  42. int "UI Service Thread Stack Size"
  43. default 2536
  44. help
  45. This option set stack size for ui service thread
  46. config UI_VIEW_OVERLAY_OPA
  47. int "UI View Overlay Opacity"
  48. range 0 255
  49. default 128
  50. help
  51. This option sets the blend opacity for the views' intersection area.
  52. Set 255 to disable the blending.
  53. config UI_SWITCH_EFFECT
  54. bool "UI switch effects"
  55. help
  56. Enable special effects between ui switch.
  57. config UI_SCROLL_EFFECT
  58. bool "UI scroll effects"
  59. help
  60. Enable special effects when view scroll.
  61. config UI_EFFECT_TRANSFORM_BUFFER_COUNT
  62. int "UI transform buffer count for effects"
  63. range 1 2
  64. default 2
  65. help
  66. Set UI transform buffer count for both swith and scroll effects.
  67. This will affect the UI effect performance if select 1.
  68. choice
  69. prompt "View Cache Scroll Buffer Mode"
  70. default VIEW_SCROLL_MEM_DEFAULT
  71. config VIEW_SCROLL_MEM_DEFAULT
  72. bool "Scrolled View has Surface Buffer"
  73. config VIEW_SCROLL_MEM_SAVE
  74. bool "Scrolled View has no Surface Buffer"
  75. config VIEW_SCROLL_MEM_LOWEST
  76. bool "Scrolled View has no Surface Buffer and no Refresh"
  77. endchoice
  78. config VIEW_SCROLL_TRACKING_FINGER
  79. bool "UI View Scrolling Tracking Finger"
  80. help
  81. This option enable view scrolling always tracking finger.
  82. config VIEW_CACHE_LEVEL
  83. int "cache level for view cache"
  84. default 1
  85. help
  86. This option set cache level for view cache
  87. config VIEW_STACK_LEVEL
  88. int "maximum number of elements in view stack"
  89. default 5
  90. help
  91. This option set maximum number of elements in view stack
  92. config NUM_MSGBOX_POPUPS
  93. int "Maximum number of in-flight msgbox popups"
  94. default 3
  95. help
  96. Set maximum number of in-flight msgbox popups.
  97. config TRANSITION_ANIM
  98. bool "support transition animation"
  99. default n
  100. help
  101. This option set support transition animation.
  102. endif # UI_SERVICE
  103. choice
  104. prompt "Surface Buffer Swap Mode"
  105. default SURFACE_DOUBLE_BUFFER
  106. depends on UI_MEMORY_MANAGER
  107. config SURFACE_DOUBLE_BUFFER
  108. bool "Double Buffer"
  109. config SURFACE_SINGLE_BUFFER
  110. bool "Single Buffer"
  111. config SURFACE_ZERO_BUFFER
  112. bool "Zero Buffer"
  113. endchoice
  114. config SURFACE_TRANSFORM_UPDATE
  115. bool "Surface update with transformation"
  116. depends on UI_MEMORY_MANAGER && DMA2D_HAL
  117. help
  118. Enable surface update with 90/180/270 rotation transform
  119. rsource "compression/Kconfig"
  120. rsource "font/Kconfig"
  121. rsource "lvgl/Kconfig"
  122. rsource "memory/Kconfig"
  123. rsource "res_manager/Kconfig"
  124. orsource "libdisplay/Kconfig"
  125. orsource "vg_lite/Kconfig"
  126. endif # ACTIONS_FRAMEWORK_DISPLAY