freedreno_drmif.h 4.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132
  1. /* -*- mode: C; c-file-style: "k&r"; tab-width 4; indent-tabs-mode: t; -*- */
  2. /*
  3. * Copyright (C) 2012 Rob Clark <robclark@freedesktop.org>
  4. *
  5. * Permission is hereby granted, free of charge, to any person obtaining a
  6. * copy of this software and associated documentation files (the "Software"),
  7. * to deal in the Software without restriction, including without limitation
  8. * the rights to use, copy, modify, merge, publish, distribute, sublicense,
  9. * and/or sell copies of the Software, and to permit persons to whom the
  10. * Software is furnished to do so, subject to the following conditions:
  11. *
  12. * The above copyright notice and this permission notice (including the next
  13. * paragraph) shall be included in all copies or substantial portions of the
  14. * Software.
  15. *
  16. * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
  17. * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
  18. * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL
  19. * THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
  20. * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
  21. * OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
  22. * SOFTWARE.
  23. *
  24. * Authors:
  25. * Rob Clark <robclark@freedesktop.org>
  26. */
  27. #ifndef FREEDRENO_DRMIF_H_
  28. #define FREEDRENO_DRMIF_H_
  29. #include <xf86drm.h>
  30. #include <stdint.h>
  31. #if defined(__GNUC__)
  32. # define drm_deprecated __attribute__((__deprecated__))
  33. #else
  34. # define drm_deprecated
  35. #endif
  36. /* an empty marker for things that will be deprecated in the future: */
  37. #define will_be_deprecated
  38. struct fd_bo;
  39. struct fd_pipe;
  40. struct fd_device;
  41. enum fd_pipe_id {
  42. FD_PIPE_3D = 1,
  43. FD_PIPE_2D = 2,
  44. /* some devices have two 2d blocks.. not really sure how to
  45. * use that yet, so just ignoring the 2nd 2d pipe for now
  46. */
  47. FD_PIPE_MAX
  48. };
  49. enum fd_param_id {
  50. FD_DEVICE_ID,
  51. FD_GMEM_SIZE,
  52. FD_GPU_ID,
  53. FD_CHIP_ID,
  54. FD_MAX_FREQ,
  55. FD_TIMESTAMP,
  56. };
  57. /* bo flags: */
  58. #define DRM_FREEDRENO_GEM_TYPE_SMI 0x00000001
  59. #define DRM_FREEDRENO_GEM_TYPE_KMEM 0x00000002
  60. #define DRM_FREEDRENO_GEM_TYPE_MEM_MASK 0x0000000f
  61. #define DRM_FREEDRENO_GEM_CACHE_NONE 0x00000000
  62. #define DRM_FREEDRENO_GEM_CACHE_WCOMBINE 0x00100000
  63. #define DRM_FREEDRENO_GEM_CACHE_WTHROUGH 0x00200000
  64. #define DRM_FREEDRENO_GEM_CACHE_WBACK 0x00400000
  65. #define DRM_FREEDRENO_GEM_CACHE_WBACKWA 0x00800000
  66. #define DRM_FREEDRENO_GEM_CACHE_MASK 0x00f00000
  67. #define DRM_FREEDRENO_GEM_GPUREADONLY 0x01000000
  68. /* bo access flags: (keep aligned to MSM_PREP_x) */
  69. #define DRM_FREEDRENO_PREP_READ 0x01
  70. #define DRM_FREEDRENO_PREP_WRITE 0x02
  71. #define DRM_FREEDRENO_PREP_NOSYNC 0x04
  72. /* device functions:
  73. */
  74. struct fd_device * fd_device_new(int fd);
  75. struct fd_device * fd_device_new_dup(int fd);
  76. struct fd_device * fd_device_ref(struct fd_device *dev);
  77. void fd_device_del(struct fd_device *dev);
  78. int fd_device_fd(struct fd_device *dev);
  79. enum fd_version {
  80. FD_VERSION_MADVISE = 1, /* kernel supports madvise */
  81. FD_VERSION_UNLIMITED_CMDS = 1, /* submits w/ >4 cmd buffers (growable ringbuffer) */
  82. };
  83. enum fd_version fd_device_version(struct fd_device *dev);
  84. /* pipe functions:
  85. */
  86. struct fd_pipe * fd_pipe_new(struct fd_device *dev, enum fd_pipe_id id);
  87. void fd_pipe_del(struct fd_pipe *pipe);
  88. int fd_pipe_get_param(struct fd_pipe *pipe, enum fd_param_id param,
  89. uint64_t *value);
  90. int fd_pipe_wait(struct fd_pipe *pipe, uint32_t timestamp);
  91. /* timeout in nanosec */
  92. int fd_pipe_wait_timeout(struct fd_pipe *pipe, uint32_t timestamp,
  93. uint64_t timeout);
  94. /* buffer-object functions:
  95. */
  96. struct fd_bo * fd_bo_new(struct fd_device *dev,
  97. uint32_t size, uint32_t flags);
  98. struct fd_bo * fd_bo_from_fbdev(struct fd_pipe *pipe,
  99. int fbfd, uint32_t size);
  100. struct fd_bo *fd_bo_from_handle(struct fd_device *dev,
  101. uint32_t handle, uint32_t size);
  102. struct fd_bo * fd_bo_from_name(struct fd_device *dev, uint32_t name);
  103. struct fd_bo * fd_bo_from_dmabuf(struct fd_device *dev, int fd);
  104. struct fd_bo * fd_bo_ref(struct fd_bo *bo);
  105. void fd_bo_del(struct fd_bo *bo);
  106. int fd_bo_get_name(struct fd_bo *bo, uint32_t *name);
  107. uint32_t fd_bo_handle(struct fd_bo *bo);
  108. int fd_bo_dmabuf(struct fd_bo *bo);
  109. uint32_t fd_bo_size(struct fd_bo *bo);
  110. void * fd_bo_map(struct fd_bo *bo);
  111. int fd_bo_cpu_prep(struct fd_bo *bo, struct fd_pipe *pipe, uint32_t op);
  112. void fd_bo_cpu_fini(struct fd_bo *bo);
  113. #endif /* FREEDRENO_DRMIF_H_ */