Kconfig 1.2 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455
  1. # Kconfig - Actions memory manager
  2. #
  3. # Copyright (c) 2016 Actions Corporation
  4. #
  5. # SPDX-License-Identifier: Apache-2.0
  6. #
  7. menuconfig UI_MEMORY_MANAGER
  8. bool "ui memory manager"
  9. help
  10. This option enables ui memory manager
  11. if UI_MEMORY_MANAGER
  12. config UI_MEM_BLOCK_SIZE
  13. int "Block size (in bytes)"
  14. default 32
  15. help
  16. This option specifies the size of block in bytes.
  17. config UI_MEM_NUMBER_BLOCKS
  18. int "Number of Blocks"
  19. default 0
  20. help
  21. This option specifies the block number. A value of zero
  22. means that no framebuffer block is defined.
  23. config UI_GUI_MEM_POOL_SIZE
  24. int "GUI memory pool size (in bytes)"
  25. default 0
  26. help
  27. This option specifies the size of the GUI memory pool. A size of zero
  28. means that no GUI memory pool is defined.
  29. config UI_RES_MEM_POOL_SIZE
  30. int "Resource memory pool size (in bytes)"
  31. default 0
  32. help
  33. This option specifies the size of the resource memory pool. A size of
  34. zero means that no resource memory pool is defined.
  35. config UI_MEM_VDB_SHARE_SURFACE_BUFFER
  36. bool "vdb buffer share with sram suface buffer"
  37. default n
  38. help
  39. This option specifies vdb share with sram surface buffer.
  40. config UI_MEMORY_DEBUG
  41. bool "ui memory debug"
  42. depends on MEM_GUARD
  43. help
  44. This option enables ui memory debug
  45. endif # UI_MEMORY_MANAGER