Kconfig.gpu 1.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354
  1. # SPDX-License-Identifier: Apache-2.0
  2. menu "GPU"
  3. config LV_USE_GPU_ACTS
  4. bool "Use Actions GPU"
  5. depends on ACTIONS_FRAMEWORK_DISPLAY
  6. if LV_USE_GPU_ACTS
  7. config LV_USE_GPU_ACTS_DMA2D
  8. bool "Use Actions DMA2D GPU"
  9. depends on DMA2D_HAL
  10. default y
  11. help
  12. Must enable DMA2D on Actions platform.
  13. config LV_GPU_ACTS_DMA2D_SIZE_LIMIT
  14. int "Minimum area (in pixels) for DMA2D processing."
  15. depends on LV_USE_GPU_ACTS_DMA2D
  16. default 32
  17. config LV_USE_GPU_ACTS_VG_LITE
  18. bool "Use Actions VG-Lite GPU"
  19. depends on VG_LITE
  20. default y
  21. help
  22. Must enable Verisilicon VG-Lite on Actions platform.
  23. config LV_GPU_ACTS_VG_LITE_SIZE_LIMIT
  24. int "Minimum area (in pixels) for VG-Lite processing."
  25. depends on LV_USE_GPU_ACTS_VG_LITE
  26. default 32
  27. config LV_GPU_ACTS_VG_LITE_COMMAND_BUFFER_SIZE
  28. int "Command buffer size in kilobytes for VG-Lite processing."
  29. depends on LV_USE_GPU_ACTS_VG_LITE
  30. default 32
  31. config LV_USE_GPU_ACTS_JPG
  32. bool "Use Actions JPG Hardware Decoder"
  33. depends on JPEG_HAL
  34. help
  35. Must enable JPEG Hardware Decoder Actions platform.
  36. config LV_USE_GPU_ACTS_SW_DECODER
  37. bool "Use Actions Software Decoder"
  38. depends on ACTIONS_FRAMEWORK_DISPLAY
  39. help
  40. Must enable Software Decoder Actions platform.
  41. endif # LV_USE_GPU_ACTS
  42. endmenu