kgsl_sync.h 2.8 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113
  1. /* Copyright (c) 2012-2013, The Linux Foundation. All rights reserved.
  2. *
  3. * This program is free software; you can redistribute it and/or modify
  4. * it under the terms of the GNU General Public License version 2 and
  5. * only version 2 as published by the Free Software Foundation.
  6. *
  7. * This program is distributed in the hope that it will be useful,
  8. * but WITHOUT ANY WARRANTY; without even the implied warranty of
  9. * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
  10. * GNU General Public License for more details.
  11. *
  12. */
  13. #ifndef __KGSL_SYNC_H
  14. #define __KGSL_SYNC_H
  15. #include <linux/sync.h>
  16. #include "kgsl_device.h"
  17. struct kgsl_sync_timeline {
  18. struct sync_timeline timeline;
  19. unsigned int last_timestamp;
  20. struct kgsl_device *device;
  21. u32 context_id;
  22. };
  23. struct kgsl_sync_pt {
  24. struct sync_pt pt;
  25. struct kgsl_context *context;
  26. unsigned int timestamp;
  27. };
  28. struct kgsl_sync_fence_waiter {
  29. struct sync_fence_waiter waiter;
  30. struct sync_fence *fence;
  31. char name[32];
  32. void (*func)(void *priv);
  33. void *priv;
  34. };
  35. #if defined(CONFIG_SYNC)
  36. struct sync_pt *kgsl_sync_pt_create(struct sync_timeline *timeline,
  37. struct kgsl_context *context, unsigned int timestamp);
  38. void kgsl_sync_pt_destroy(struct sync_pt *pt);
  39. int kgsl_add_fence_event(struct kgsl_device *device,
  40. u32 context_id, u32 timestamp, void __user *data, int len,
  41. struct kgsl_device_private *owner);
  42. int kgsl_sync_timeline_create(struct kgsl_context *context);
  43. void kgsl_sync_timeline_signal(struct sync_timeline *timeline,
  44. unsigned int timestamp);
  45. void kgsl_sync_timeline_destroy(struct kgsl_context *context);
  46. struct kgsl_sync_fence_waiter *kgsl_sync_fence_async_wait(int fd,
  47. void (*func)(void *priv), void *priv);
  48. int kgsl_sync_fence_async_cancel(struct kgsl_sync_fence_waiter *waiter);
  49. static inline void kgsl_sync_fence_log(struct sync_fence *fence)
  50. {
  51. sync_fence_log(fence);
  52. }
  53. #else
  54. static inline struct sync_pt
  55. *kgsl_sync_pt_create(struct sync_timeline *timeline,
  56. struct kgsl_context *context, unsigned int timestamp)
  57. {
  58. return NULL;
  59. }
  60. static inline void kgsl_sync_pt_destroy(struct sync_pt *pt)
  61. {
  62. }
  63. static inline int kgsl_add_fence_event(struct kgsl_device *device,
  64. u32 context_id, u32 timestamp, void __user *data, int len,
  65. struct kgsl_device_private *owner)
  66. {
  67. return -EINVAL;
  68. }
  69. static int kgsl_sync_timeline_create(struct kgsl_context *context)
  70. {
  71. context->timeline = NULL;
  72. return 0;
  73. }
  74. static inline void
  75. kgsl_sync_timeline_signal(struct sync_timeline *timeline,
  76. unsigned int timestamp)
  77. {
  78. }
  79. static inline void kgsl_sync_timeline_destroy(struct kgsl_context *context)
  80. {
  81. }
  82. static inline struct
  83. kgsl_sync_fence_waiter *kgsl_sync_fence_async_wait(int fd,
  84. void (*func)(void *priv), void *priv)
  85. {
  86. return NULL;
  87. }
  88. static inline int
  89. kgsl_sync_fence_async_cancel(struct kgsl_sync_fence_waiter *waiter)
  90. {
  91. return 1;
  92. }
  93. static inline void kgsl_sync_fence_log(struct sync_fence *fence)
  94. {
  95. }
  96. #endif
  97. #endif /* __KGSL_SYNC_H */