de_common.h 2.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124
  1. /*
  2. * Copyright (c) 2020 Actions Technology Co., Ltd
  3. *
  4. * SPDX-License-Identifier: Apache-2.0
  5. */
  6. #ifndef ZEPHYR_DRIVERS_DISPLAY_ENGINE_DE_COMMON_H_
  7. #define ZEPHYR_DRIVERS_DISPLAY_ENGINE_DE_COMMON_H_
  8. #include <kernel.h>
  9. #include <sys/slist.h>
  10. #include <drivers/display/display_engine.h>
  11. #include <linker/linker-defs.h>
  12. enum de_command_id {
  13. /* overlay commands */
  14. DE_CMD_COMPOSE = 0,
  15. DE_CMD_COMPOSE_WB, /* compose to local buffer */
  16. DE_CMD_FILL,
  17. DE_CMD_BLIT,
  18. DE_CMD_BLEND,
  19. DE_CMD_BLEND_FG,
  20. DE_CMD_SET_CLUT,
  21. /* rotate commands */
  22. DE_CMD_ROTATE_FILL,
  23. DE_CMD_ROTATE_RECT,
  24. DE_CMD_ROTATE_CIRCLE,
  25. };
  26. struct de_command_entry {
  27. uint8_t inst;
  28. uint8_t cmd;
  29. uint16_t seq; /* large enough ? */
  30. #if defined(CONFIG_DISPLAY_ENGINE_LARK)
  31. uint32_t cfg[30];
  32. #elif defined(CONFIG_DISPLAY_ENGINE_LEOPARD)
  33. uint32_t cfg[38];
  34. #endif
  35. sys_snode_t node;
  36. };
  37. /**
  38. * @brief Allocate new instance id
  39. *
  40. * @param flags Instance flags
  41. *
  42. * @retval Instance id
  43. */
  44. int de_alloc_instance(uint32_t flags);
  45. /**
  46. * @brief Free new instance id
  47. *
  48. * @param inst Instance id
  49. * @retval N/A
  50. */
  51. int de_free_instance(int inst);
  52. /**
  53. * @brief Query instance flag
  54. *
  55. * @param inst Instance id
  56. * @param flag
  57. *
  58. * @retval query result
  59. */
  60. bool de_instance_has_flag(int inst, uint32_t flag);
  61. /**
  62. * @brief Alloc a command entry of specific instance
  63. *
  64. * @param inst Instance id
  65. * @retval Pointer to a command entry
  66. */
  67. struct de_command_entry *de_instance_alloc_entry(int inst);
  68. /**
  69. * @brief Free a command entry of specific instance
  70. *
  71. * @param entry Pointer to a command entry
  72. * @retval 0 on success else negative errno code.
  73. */
  74. int de_instance_free_entry(struct de_command_entry *entry);
  75. /**
  76. * @brief Poll for all commands of specific instance
  77. *
  78. * @param inst Instance id
  79. * @param timeout Time out in milliseconds
  80. * @retval 0 on success else negative errno code.
  81. */
  82. int de_instance_poll(int inst, int timeout);
  83. /**
  84. * @brief Regiter callback of specific instance
  85. *
  86. * @param inst Instance id
  87. * @param callback Callback function
  88. * @param User defined parameter of callback function
  89. * @retval 0 on success else negative errno code.
  90. */
  91. int de_instance_register_callback(int inst, display_engine_instance_callback_t callback, void *user_data);
  92. /**
  93. * @brief Notify command execution status of specific instance
  94. *
  95. * @param entry Pointer to a command entry
  96. * @param status Command execution status
  97. * @retval 0 on success else negative errno code.
  98. */
  99. int de_instance_notify(struct de_command_entry *entry, int status);
  100. /**
  101. * @brief Initialize the command pool
  102. *
  103. * @retval N/A.
  104. */
  105. void de_command_pools_init(void);
  106. #endif /* ZEPHYR_DRIVERS_DISPLAY_ENGINE_DE_COMMON_H_ */