gem.c 6.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229
  1. /*
  2. * psb GEM interface
  3. *
  4. * Copyright (c) 2011, Intel Corporation.
  5. *
  6. * This program is free software; you can redistribute it and/or modify it
  7. * under the terms and conditions of the GNU General Public License,
  8. * version 2, as published by the Free Software Foundation.
  9. *
  10. * This program is distributed in the hope it will be useful, but WITHOUT
  11. * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
  12. * FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for
  13. * more details.
  14. *
  15. * You should have received a copy of the GNU General Public License along with
  16. * this program; if not, write to the Free Software Foundation, Inc.,
  17. * 51 Franklin St - Fifth Floor, Boston, MA 02110-1301 USA.
  18. *
  19. * Authors: Alan Cox
  20. *
  21. * TODO:
  22. * - we need to work out if the MMU is relevant (eg for
  23. * accelerated operations on a GEM object)
  24. */
  25. #include <drm/drmP.h>
  26. #include <drm/drm.h>
  27. #include <drm/gma_drm.h>
  28. #include <drm/drm_vma_manager.h>
  29. #include "psb_drv.h"
  30. void psb_gem_free_object(struct drm_gem_object *obj)
  31. {
  32. struct gtt_range *gtt = container_of(obj, struct gtt_range, gem);
  33. /* Remove the list map if one is present */
  34. drm_gem_free_mmap_offset(obj);
  35. drm_gem_object_release(obj);
  36. /* This must occur last as it frees up the memory of the GEM object */
  37. psb_gtt_free_range(obj->dev, gtt);
  38. }
  39. int psb_gem_get_aperture(struct drm_device *dev, void *data,
  40. struct drm_file *file)
  41. {
  42. return -EINVAL;
  43. }
  44. /**
  45. * psb_gem_dumb_map_gtt - buffer mapping for dumb interface
  46. * @file: our drm client file
  47. * @dev: drm device
  48. * @handle: GEM handle to the object (from dumb_create)
  49. *
  50. * Do the necessary setup to allow the mapping of the frame buffer
  51. * into user memory. We don't have to do much here at the moment.
  52. */
  53. int psb_gem_dumb_map_gtt(struct drm_file *file, struct drm_device *dev,
  54. uint32_t handle, uint64_t *offset)
  55. {
  56. int ret = 0;
  57. struct drm_gem_object *obj;
  58. mutex_lock(&dev->struct_mutex);
  59. /* GEM does all our handle to object mapping */
  60. obj = drm_gem_object_lookup(dev, file, handle);
  61. if (obj == NULL) {
  62. ret = -ENOENT;
  63. goto unlock;
  64. }
  65. /* What validation is needed here ? */
  66. /* Make it mmapable */
  67. ret = drm_gem_create_mmap_offset(obj);
  68. if (ret)
  69. goto out;
  70. *offset = drm_vma_node_offset_addr(&obj->vma_node);
  71. out:
  72. drm_gem_object_unreference(obj);
  73. unlock:
  74. mutex_unlock(&dev->struct_mutex);
  75. return ret;
  76. }
  77. /**
  78. * psb_gem_create - create a mappable object
  79. * @file: the DRM file of the client
  80. * @dev: our device
  81. * @size: the size requested
  82. * @handlep: returned handle (opaque number)
  83. *
  84. * Create a GEM object, fill in the boilerplate and attach a handle to
  85. * it so that userspace can speak about it. This does the core work
  86. * for the various methods that do/will create GEM objects for things
  87. */
  88. int psb_gem_create(struct drm_file *file, struct drm_device *dev, u64 size,
  89. u32 *handlep, int stolen, u32 align)
  90. {
  91. struct gtt_range *r;
  92. int ret;
  93. u32 handle;
  94. size = roundup(size, PAGE_SIZE);
  95. /* Allocate our object - for now a direct gtt range which is not
  96. stolen memory backed */
  97. r = psb_gtt_alloc_range(dev, size, "gem", 0, PAGE_SIZE);
  98. if (r == NULL) {
  99. dev_err(dev->dev, "no memory for %lld byte GEM object\n", size);
  100. return -ENOSPC;
  101. }
  102. /* Initialize the extra goodies GEM needs to do all the hard work */
  103. if (drm_gem_object_init(dev, &r->gem, size) != 0) {
  104. psb_gtt_free_range(dev, r);
  105. /* GEM doesn't give an error code so use -ENOMEM */
  106. dev_err(dev->dev, "GEM init failed for %lld\n", size);
  107. return -ENOMEM;
  108. }
  109. /* Limit the object to 32bit mappings */
  110. mapping_set_gfp_mask(r->gem.filp->f_mapping, GFP_KERNEL | __GFP_DMA32);
  111. /* Give the object a handle so we can carry it more easily */
  112. ret = drm_gem_handle_create(file, &r->gem, &handle);
  113. if (ret) {
  114. dev_err(dev->dev, "GEM handle failed for %p, %lld\n",
  115. &r->gem, size);
  116. drm_gem_object_release(&r->gem);
  117. psb_gtt_free_range(dev, r);
  118. return ret;
  119. }
  120. /* We have the initial and handle reference but need only one now */
  121. drm_gem_object_unreference_unlocked(&r->gem);
  122. *handlep = handle;
  123. return 0;
  124. }
  125. /**
  126. * psb_gem_dumb_create - create a dumb buffer
  127. * @drm_file: our client file
  128. * @dev: our device
  129. * @args: the requested arguments copied from userspace
  130. *
  131. * Allocate a buffer suitable for use for a frame buffer of the
  132. * form described by user space. Give userspace a handle by which
  133. * to reference it.
  134. */
  135. int psb_gem_dumb_create(struct drm_file *file, struct drm_device *dev,
  136. struct drm_mode_create_dumb *args)
  137. {
  138. args->pitch = ALIGN(args->width * ((args->bpp + 7) / 8), 64);
  139. args->size = args->pitch * args->height;
  140. return psb_gem_create(file, dev, args->size, &args->handle, 0,
  141. PAGE_SIZE);
  142. }
  143. /**
  144. * psb_gem_fault - pagefault handler for GEM objects
  145. * @vma: the VMA of the GEM object
  146. * @vmf: fault detail
  147. *
  148. * Invoked when a fault occurs on an mmap of a GEM managed area. GEM
  149. * does most of the work for us including the actual map/unmap calls
  150. * but we need to do the actual page work.
  151. *
  152. * This code eventually needs to handle faulting objects in and out
  153. * of the GTT and repacking it when we run out of space. We can put
  154. * that off for now and for our simple uses
  155. *
  156. * The VMA was set up by GEM. In doing so it also ensured that the
  157. * vma->vm_private_data points to the GEM object that is backing this
  158. * mapping.
  159. */
  160. int psb_gem_fault(struct vm_area_struct *vma, struct vm_fault *vmf)
  161. {
  162. struct drm_gem_object *obj;
  163. struct gtt_range *r;
  164. int ret;
  165. unsigned long pfn;
  166. pgoff_t page_offset;
  167. struct drm_device *dev;
  168. struct drm_psb_private *dev_priv;
  169. obj = vma->vm_private_data; /* GEM object */
  170. dev = obj->dev;
  171. dev_priv = dev->dev_private;
  172. r = container_of(obj, struct gtt_range, gem); /* Get the gtt range */
  173. /* Make sure we don't parallel update on a fault, nor move or remove
  174. something from beneath our feet */
  175. mutex_lock(&dev->struct_mutex);
  176. /* For now the mmap pins the object and it stays pinned. As things
  177. stand that will do us no harm */
  178. if (r->mmapping == 0) {
  179. ret = psb_gtt_pin(r);
  180. if (ret < 0) {
  181. dev_err(dev->dev, "gma500: pin failed: %d\n", ret);
  182. goto fail;
  183. }
  184. r->mmapping = 1;
  185. }
  186. /* Page relative to the VMA start - we must calculate this ourselves
  187. because vmf->pgoff is the fake GEM offset */
  188. page_offset = ((unsigned long) vmf->virtual_address - vma->vm_start)
  189. >> PAGE_SHIFT;
  190. /* CPU view of the page, don't go via the GART for CPU writes */
  191. if (r->stolen)
  192. pfn = (dev_priv->stolen_base + r->offset) >> PAGE_SHIFT;
  193. else
  194. pfn = page_to_pfn(r->pages[page_offset]);
  195. ret = vm_insert_pfn(vma, (unsigned long)vmf->virtual_address, pfn);
  196. fail:
  197. mutex_unlock(&dev->struct_mutex);
  198. switch (ret) {
  199. case 0:
  200. case -ERESTARTSYS:
  201. case -EINTR:
  202. return VM_FAULT_NOPAGE;
  203. case -ENOMEM:
  204. return VM_FAULT_OOM;
  205. default:
  206. return VM_FAULT_SIGBUS;
  207. }
  208. }