radeon_bo_gem.h 1.9 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748
  1. /*
  2. * Copyright © 2008 Dave Airlie
  3. * Copyright © 2008 Jérôme Glisse
  4. * All Rights Reserved.
  5. *
  6. * Permission is hereby granted, free of charge, to any person obtaining
  7. * a copy of this software and associated documentation files (the
  8. * "Software"), to deal in the Software without restriction, including
  9. * without limitation the rights to use, copy, modify, merge, publish,
  10. * distribute, sub license, and/or sell copies of the Software, and to
  11. * permit persons to whom the Software is furnished to do so, subject to
  12. * the following conditions:
  13. *
  14. * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
  15. * EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES
  16. * OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
  17. * NON-INFRINGEMENT. IN NO EVENT SHALL THE COPYRIGHT HOLDERS, AUTHORS
  18. * AND/OR ITS SUPPLIERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
  19. * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE,
  20. * ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE
  21. * USE OR OTHER DEALINGS IN THE SOFTWARE.
  22. *
  23. * The above copyright notice and this permission notice (including the
  24. * next paragraph) shall be included in all copies or substantial portions
  25. * of the Software.
  26. */
  27. /*
  28. * Authors:
  29. * Dave Airlie
  30. * Jérôme Glisse <glisse@freedesktop.org>
  31. */
  32. #ifndef RADEON_BO_GEM_H
  33. #define RADEON_BO_GEM_H
  34. #include "radeon_bo.h"
  35. struct radeon_bo_manager *radeon_bo_manager_gem_ctor(int fd);
  36. void radeon_bo_manager_gem_dtor(struct radeon_bo_manager *bom);
  37. uint32_t radeon_gem_name_bo(struct radeon_bo *bo);
  38. void *radeon_gem_get_reloc_in_cs(struct radeon_bo *bo);
  39. int radeon_gem_set_domain(struct radeon_bo *bo, uint32_t read_domains, uint32_t write_domain);
  40. int radeon_gem_get_kernel_name(struct radeon_bo *bo, uint32_t *name);
  41. int radeon_gem_prime_share_bo(struct radeon_bo *bo, int *handle);
  42. struct radeon_bo *radeon_gem_bo_open_prime(struct radeon_bo_manager *bom,
  43. int fd_handle,
  44. uint32_t size);
  45. #endif