0001-Allow-applications-to-set-next-resource-handle.patch 13 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207
  1. From 8a734f44beea9b10548ba696eaea1f5a76148fd5 Mon Sep 17 00:00:00 2001
  2. From: Dom Cobley <dc4@broadcom.com>
  3. Date: Tue, 9 Jul 2013 09:26:26 -0400
  4. Subject: [PATCH] Allow applications to set next resource handle
  5. This patch adds provisions in userland to
  6. let apps callers set the next rendereing dispmanx resource.
  7. It's useful for implementing, say, a buffer carousel.
  8. ---
  9. Upstream-Status: Pending
  10. interface/khronos/common/khrn_client_rpc.h | 2 ++
  11. interface/khronos/common/khrn_int_ids.h | 2 ++
  12. interface/khronos/egl/egl_client.c | 30 +++++++++++++++++++---
  13. interface/khronos/egl/egl_client_surface.c | 24 ++++++++++++++++-
  14. interface/khronos/egl/egl_client_surface.h | 3 ++-
  15. interface/khronos/egl/egl_int_impl.h | 5 ++--
  16. 6 files changed, 59 insertions(+), 7 deletions(-)
  17. diff --git a/interface/khronos/common/khrn_client_rpc.h b/interface/khronos/common/khrn_client_rpc.h
  18. index dc4351d..10ea060 100644
  19. --- a/interface/khronos/common/khrn_client_rpc.h
  20. +++ b/interface/khronos/common/khrn_client_rpc.h
  21. @@ -685,6 +685,7 @@ static INLINE void rpc_call12_out_ctrl(CLIENT_THREAD_STATE_T *thread,uint32_t id
  22. static INLINE void rpc_call13_out_ctrl(CLIENT_THREAD_STATE_T *thread,uint32_t id, uint32_t p0, uint32_t p1, uint32_t p2, uint32_t p3, uint32_t p4, uint32_t p5, uint32_t p6, uint32_t p7, uint32_t p8, uint32_t p9, uint32_t p10, uint32_t p11, void *out) { rpc_begin(thread); RPC_CALL(thread, id, p0, p1, p2, p3, p4, p5, p6, p7, p8, p9, p10, p11); rpc_recv(thread, out, NULL, (RPC_RECV_FLAG_T)(RPC_RECV_FLAG_CTRL | RPC_RECV_FLAG_LEN)); rpc_end(thread); }
  23. static INLINE void rpc_call14_out_ctrl(CLIENT_THREAD_STATE_T *thread,uint32_t id, uint32_t p0, uint32_t p1, uint32_t p2, uint32_t p3, uint32_t p4, uint32_t p5, uint32_t p6, uint32_t p7, uint32_t p8, uint32_t p9, uint32_t p10, uint32_t p11, uint32_t p12, void *out) { rpc_begin(thread); RPC_CALL(thread, id, p0, p1, p2, p3, p4, p5, p6, p7, p8, p9, p10, p11, p12); rpc_recv(thread, out, NULL, (RPC_RECV_FLAG_T)(RPC_RECV_FLAG_CTRL | RPC_RECV_FLAG_LEN)); rpc_end(thread); }
  24. static INLINE void rpc_call15_out_ctrl(CLIENT_THREAD_STATE_T *thread,uint32_t id, uint32_t p0, uint32_t p1, uint32_t p2, uint32_t p3, uint32_t p4, uint32_t p5, uint32_t p6, uint32_t p7, uint32_t p8, uint32_t p9, uint32_t p10, uint32_t p11, uint32_t p12, uint32_t p13, void *out) { rpc_begin(thread); RPC_CALL(thread, id, p0, p1, p2, p3, p4, p5, p6, p7, p8, p9, p10, p11, p12, p13); rpc_recv(thread, out, NULL, (RPC_RECV_FLAG_T)(RPC_RECV_FLAG_CTRL | RPC_RECV_FLAG_LEN)); rpc_end(thread); }
  25. +static INLINE void rpc_call16_out_ctrl(CLIENT_THREAD_STATE_T *thread,uint32_t id, uint32_t p0, uint32_t p1, uint32_t p2, uint32_t p3, uint32_t p4, uint32_t p5, uint32_t p6, uint32_t p7, uint32_t p8, uint32_t p9, uint32_t p10, uint32_t p11, uint32_t p12, uint32_t p13, uint32_t p14, void *out) { rpc_begin(thread); RPC_CALL(thread, id, p0, p1, p2, p3, p4, p5, p6, p7, p8, p9, p10, p11, p12, p13, p14); rpc_recv(thread, out, NULL, (RPC_RECV_FLAG_T)(RPC_RECV_FLAG_CTRL | RPC_RECV_FLAG_LEN)); rpc_end(thread); }
  26. #endif
  27. #define RPC_CALL1_OUT_CTRL(fn, thread, id, out) rpc_call1_out_ctrl(thread, id, out)
  28. @@ -702,6 +703,7 @@ static INLINE void rpc_call15_out_ctrl(CLIENT_THREAD_STATE_T *thread,uint32_t id
  29. #define RPC_CALL13_OUT_CTRL(fn, thread, id, p0, p1, p2, p3, p4, p5, p6, p7, p8, p9, p10, p11, out) rpc_call13_out_ctrl(thread, id, p0, p1, p2, p3, p4, p5, p6, p7, p8, p9, p10, p11, out)
  30. #define RPC_CALL14_OUT_CTRL(fn, thread, id, p0, p1, p2, p3, p4, p5, p6, p7, p8, p9, p10, p11, p12, out) rpc_call14_out_ctrl(thread, id, p0, p1, p2, p3, p4, p5, p6, p7, p8, p9, p10, p11, p12, out)
  31. #define RPC_CALL15_OUT_CTRL(fn, thread, id, p0, p1, p2, p3, p4, p5, p6, p7, p8, p9, p10, p11, p12, p13, out) rpc_call15_out_ctrl(thread, id, p0, p1, p2, p3, p4, p5, p6, p7, p8, p9, p10, p11, p12, p13, out)
  32. +#define RPC_CALL16_OUT_CTRL(fn, thread, id, p0, p1, p2, p3, p4, p5, p6, p7, p8, p9, p10, p11, p12, p13, p14, out) rpc_call16_out_ctrl(thread, id, p0, p1, p2, p3, p4, p5, p6, p7, p8, p9, p10, p11, p12, p13, p14, out)
  33. # if !defined(__SYMBIAN32__) //use functions defined in khrpc.cpp
  34. static INLINE uint32_t rpc_call1_out_ctrl_res(CLIENT_THREAD_STATE_T *thread,uint32_t id, void *out) { uint32_t res; rpc_begin(thread); RPC_CALL(thread, id); res = rpc_recv(thread, out, NULL, (RPC_RECV_FLAG_T)(RPC_RECV_FLAG_RES | RPC_RECV_FLAG_CTRL | RPC_RECV_FLAG_LEN)); rpc_end(thread); return res; }
  35. diff --git a/interface/khronos/common/khrn_int_ids.h b/interface/khronos/common/khrn_int_ids.h
  36. index 8378f4a..ec961e0 100644
  37. --- a/interface/khronos/common/khrn_int_ids.h
  38. +++ b/interface/khronos/common/khrn_int_ids.h
  39. @@ -367,6 +367,7 @@ SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
  40. */
  41. #define EGLINTCREATESURFACE_ID 0x4000
  42. +#define EGLINTCREATESURFACE_ID_V2 0x4100
  43. #define EGLINTCREATEGLES11_ID 0x4001
  44. #define EGLINTCREATEGLES20_ID 0x4002
  45. #define EGLINTCREATEVG_ID 0x4003
  46. @@ -377,6 +378,7 @@ SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
  47. #define EGLINTMAKECURRENT_ID 0x4008
  48. #define EGLINTFLUSHANDWAIT_ID 0x4009
  49. #define EGLINTSWAPBUFFERS_ID 0x400a
  50. +#define EGLINTSWAPBUFFERS_ID_V2 0x410a
  51. #define EGLINTSELECTMIPMAP_ID 0x400b
  52. #define EGLINTFLUSH_ID 0x400c
  53. #define EGLINTGETCOLORDATA_ID 0x400d
  54. diff --git a/interface/khronos/egl/egl_client.c b/interface/khronos/egl/egl_client.c
  55. index 9d617c8..b8bb374 100644
  56. --- a/interface/khronos/egl/egl_client.c
  57. +++ b/interface/khronos/egl/egl_client.c
  58. @@ -162,6 +162,17 @@ static void egl_current_release(CLIENT_PROCESS_STATE_T *process, EGL_CURRENT_T *
  59. void egl_gl_flush_callback(bool wait);
  60. void egl_vg_flush_callback(bool wait);
  61. +#include "interface/vmcs_host/vc_dispmanx_types.h"
  62. +/**HACKHACK - give us the ability to inject a DispmanX
  63. + * resource handle into the CreateWindowSurface and
  64. + * SwapBuffers calls */
  65. +static DISPMANX_RESOURCE_HANDLE_T next_resource_handle;
  66. +
  67. +EGLAPI EGLBoolean EGLAPIENTRY eglSetNextResourceHandle(DISPMANX_RESOURCE_HANDLE_T handle)
  68. +{
  69. + next_resource_handle = handle;
  70. +}
  71. +
  72. /*
  73. TODO: do an RPC call to make sure the Khronos vll is loaded (and that it stays loaded until eglTerminate)
  74. Also affects global image (and possibly others?)
  75. @@ -644,7 +655,8 @@ EGLAPI EGLSurface EGLAPIENTRY eglCreateWindowSurface(EGLDisplay dpy, EGLConfig c
  76. false,
  77. EGL_NO_TEXTURE,
  78. EGL_NO_TEXTURE,
  79. - 0, 0);
  80. + 0, 0,
  81. + next_resource_handle);
  82. if (surface) {
  83. if (khrn_pointer_map_insert(&process->surfaces, process->next_surface, surface)) {
  84. @@ -889,7 +901,7 @@ EGLAPI EGLSurface EGLAPIENTRY eglCreatePbufferSurface(EGLDisplay dpy, EGLConfig
  85. mipmap_texture,
  86. texture_format,
  87. texture_target,
  88. - 0, 0);
  89. + 0, 0, 0);
  90. if (surface) {
  91. if (khrn_pointer_map_insert(&process->surfaces, process->next_surface, surface)) {
  92. @@ -1031,7 +1043,7 @@ EGLAPI EGLSurface EGLAPIENTRY eglCreatePixmapSurface(EGLDisplay dpy, EGLConfig c
  93. false,
  94. EGL_NO_TEXTURE,
  95. EGL_NO_TEXTURE,
  96. - pixmap, ((server_handle[0] == 0) && (server_handle[1] == (uint32_t)(-1))) ? NULL : server_handle);
  97. + pixmap, ((server_handle[0] == 0) && (server_handle[1] == (uint32_t)(-1))) ? NULL : server_handle, 0);
  98. if (surface) {
  99. if (khrn_pointer_map_insert(&process->surfaces, process->next_surface, surface)) {
  100. @@ -2303,6 +2315,18 @@ EGLAPI EGLBoolean EGLAPIENTRY eglSwapBuffers(EGLDisplay dpy, EGLSurface surf)
  101. vcos_log_trace("eglSwapBuffers server call");
  102. + if (next_resource_handle)
  103. + RPC_CALL7(eglIntSwapBuffers_impl,
  104. + thread,
  105. + EGLINTSWAPBUFFERS_ID_V2,
  106. + RPC_UINT(surface->serverbuffer),
  107. + RPC_UINT(surface->width),
  108. + RPC_UINT(surface->height),
  109. + RPC_UINT(surface->internal_handle),
  110. + RPC_UINT(surface->swap_behavior == EGL_BUFFER_PRESERVED ? 1 : 0),
  111. + RPC_UINT(khrn_platform_get_window_position(surface->win)),
  112. + RPC_INT(next_resource_handle));
  113. + else
  114. RPC_CALL6(eglIntSwapBuffers_impl,
  115. thread,
  116. EGLINTSWAPBUFFERS_ID,
  117. diff --git a/interface/khronos/egl/egl_client_surface.c b/interface/khronos/egl/egl_client_surface.c
  118. index 6846dfa..128325e 100644
  119. --- a/interface/khronos/egl/egl_client_surface.c
  120. +++ b/interface/khronos/egl/egl_client_surface.c
  121. @@ -314,7 +314,8 @@ EGL_SURFACE_T *egl_surface_create(
  122. EGLenum texture_format,
  123. EGLenum texture_target,
  124. EGLNativePixmapType pixmap,
  125. - const uint32_t *pixmap_server_handle)
  126. + const uint32_t *pixmap_server_handle,
  127. + DISPMANX_RESOURCE_HANDLE_T next_resource_handle)
  128. {
  129. KHRN_IMAGE_FORMAT_T color;
  130. KHRN_IMAGE_FORMAT_T depth;
  131. @@ -473,6 +474,27 @@ EGL_SURFACE_T *egl_surface_create(
  132. #endif
  133. uint32_t results[3];
  134. + if (next_resource_handle)
  135. + RPC_CALL16_OUT_CTRL(eglIntCreateSurface_impl,
  136. + thread,
  137. + EGLINTCREATESURFACE_ID_V2,
  138. + RPC_UINT(serverwin),
  139. + RPC_UINT(buffers),
  140. + RPC_UINT(width),
  141. + RPC_UINT(height),
  142. + RPC_UINT(color),
  143. + RPC_UINT(depth),
  144. + RPC_UINT(mask),
  145. + RPC_UINT(multi),
  146. + RPC_UINT(largest_pbuffer),
  147. + RPC_UINT(mipmap_texture),
  148. + RPC_UINT(config_depth_bits),
  149. + RPC_UINT(config_stencil_bits),
  150. + RPC_UINT(sem_name),
  151. + RPC_UINT(type),
  152. + RPC_INT(next_resource_handle),
  153. + results);
  154. + else
  155. RPC_CALL15_OUT_CTRL(eglIntCreateSurface_impl,
  156. thread,
  157. EGLINTCREATESURFACE_ID,
  158. diff --git a/interface/khronos/egl/egl_client_surface.h b/interface/khronos/egl/egl_client_surface.h
  159. index c99d44c..b5bf70a 100644
  160. --- a/interface/khronos/egl/egl_client_surface.h
  161. +++ b/interface/khronos/egl/egl_client_surface.h
  162. @@ -322,7 +322,8 @@ extern EGL_SURFACE_T *egl_surface_create(
  163. EGLenum texture_format,
  164. EGLenum texture_target,
  165. EGLNativePixmapType pixmap,
  166. - const uint32_t *pixmap_server_handle);
  167. + const uint32_t *pixmap_server_handle,
  168. + DISPMANX_RESOURCE_HANDLE_T next_resource_handle);
  169. extern EGL_SURFACE_T *egl_surface_from_vg_image(
  170. VGImage vg_handle,
  171. EGLSurface name,
  172. diff --git a/interface/khronos/egl/egl_int_impl.h b/interface/khronos/egl/egl_int_impl.h
  173. index 8a5734c..51b3580 100644
  174. --- a/interface/khronos/egl/egl_int_impl.h
  175. +++ b/interface/khronos/egl/egl_int_impl.h
  176. @@ -56,7 +56,8 @@ FN(int, eglIntCreateSurface_impl, (
  177. uint32_t config_stencil_bits,
  178. uint32_t sem,
  179. uint32_t type,
  180. - uint32_t *results))
  181. + uint32_t *results,
  182. + DISPMANX_RESOURCE_HANDLE_T next_resource_handle))
  183. FN(int, eglIntCreatePbufferFromVGImage_impl, (
  184. VGImage vg_handle,
  185. @@ -110,7 +111,7 @@ FN(void, eglIntMakeCurrent_impl, (uint32_t pid_0, uint32_t pid_1, uint32_t glver
  186. FN(int, eglIntFlushAndWait_impl, (uint32_t flushgl, uint32_t flushvg))
  187. FN(void, eglIntFlush_impl, (uint32_t flushgl, uint32_t flushvg))
  188. -FN(void, eglIntSwapBuffers_impl, (EGL_SURFACE_ID_T s, uint32_t width, uint32_t height, uint32_t handle, uint32_t preserve, uint32_t position))
  189. +FN(void, eglIntSwapBuffers_impl, (EGL_SURFACE_ID_T s, uint32_t width, uint32_t height, uint32_t handle, uint32_t preserve, uint32_t position, DISPMANX_RESOURCE_HANDLE_T new_back_buffer))
  190. FN(void, eglIntSelectMipmap_impl, (EGL_SURFACE_ID_T s, int level))
  191. FN(void, eglIntGetColorData_impl, (EGL_SURFACE_ID_T s, KHRN_IMAGE_FORMAT_T format, uint32_t width, uint32_t height, int32_t stride, uint32_t y_offset, void *data))