etnaviv_pipe.c 2.2 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879
  1. /*
  2. * Copyright (C) 2014-2015 Etnaviv Project
  3. *
  4. * Permission is hereby granted, free of charge, to any person obtaining a
  5. * copy of this software and associated documentation files (the "Software"),
  6. * to deal in the Software without restriction, including without limitation
  7. * the rights to use, copy, modify, merge, publish, distribute, sublicense,
  8. * and/or sell copies of the Software, and to permit persons to whom the
  9. * Software is furnished to do so, subject to the following conditions:
  10. *
  11. * The above copyright notice and this permission notice (including the next
  12. * paragraph) shall be included in all copies or substantial portions of the
  13. * Software.
  14. *
  15. * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
  16. * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
  17. * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL
  18. * THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
  19. * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
  20. * OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
  21. * SOFTWARE.
  22. *
  23. * Authors:
  24. * Christian Gmeiner <christian.gmeiner@gmail.com>
  25. */
  26. #include "etnaviv_priv.h"
  27. drm_public int etna_pipe_wait(struct etna_pipe *pipe, uint32_t timestamp, uint32_t ms)
  28. {
  29. return etna_pipe_wait_ns(pipe, timestamp, ms * 1000000);
  30. }
  31. drm_public int etna_pipe_wait_ns(struct etna_pipe *pipe, uint32_t timestamp, uint64_t ns)
  32. {
  33. struct etna_device *dev = pipe->gpu->dev;
  34. int ret;
  35. struct drm_etnaviv_wait_fence req = {
  36. .pipe = pipe->gpu->core,
  37. .fence = timestamp,
  38. };
  39. if (ns == 0)
  40. req.flags |= ETNA_WAIT_NONBLOCK;
  41. get_abs_timeout(&req.timeout, ns);
  42. ret = drmCommandWrite(dev->fd, DRM_ETNAVIV_WAIT_FENCE, &req, sizeof(req));
  43. if (ret) {
  44. ERROR_MSG("wait-fence failed! %d (%s)", ret, strerror(errno));
  45. return ret;
  46. }
  47. return 0;
  48. }
  49. drm_public void etna_pipe_del(struct etna_pipe *pipe)
  50. {
  51. free(pipe);
  52. }
  53. drm_public struct etna_pipe *etna_pipe_new(struct etna_gpu *gpu, enum etna_pipe_id id)
  54. {
  55. struct etna_pipe *pipe;
  56. pipe = calloc(1, sizeof(*pipe));
  57. if (!pipe) {
  58. ERROR_MSG("allocation failed");
  59. goto fail;
  60. }
  61. pipe->id = id;
  62. pipe->gpu = gpu;
  63. return pipe;
  64. fail:
  65. return NULL;
  66. }